1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-02-01 00:45:32 +00:00

Videoplayer: only pause previous sounds if there is an audio stream

This commit is contained in:
scrawl 2014-03-26 21:36:57 +01:00
parent 5562c78ac4
commit 23f4bbc5b0

View file

@ -994,6 +994,9 @@ void VideoState::init(const std::string& resourceName)
audio_index = i;
}
if (audio_index != -1)
MWBase::Environment::get().getSoundManager()->pauseSounds();
this->external_clock_base = av_gettime();
if(audio_index >= 0)
this->stream_open(audio_index, this->format_ctx);
@ -1164,8 +1167,6 @@ void VideoPlayer::playVideo(const std::string &resourceName, bool allowSkipping)
}
mSceneMgr->setSpecialCaseRenderQueueMode(Ogre::SceneManager::SCRQM_EXCLUDE);
MWBase::Environment::get().getSoundManager()->pauseSounds();
try {
mState = new VideoState;
mState->init(resourceName);