mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-25 15:35:23 +00:00
Videoplayer: only pause previous sounds if there is an audio stream
This commit is contained in:
parent
5562c78ac4
commit
23f4bbc5b0
@ -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…
x
Reference in New Issue
Block a user