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:
parent
5562c78ac4
commit
23f4bbc5b0
1 changed files with 3 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue