Skip to content

Commit

Permalink
VIDEO: Ensure audio paused status remains after a QuickTime seek
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Hoops committed Oct 7, 2011
1 parent c0dcfc8 commit 5fab8cb
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions video/qt_decoder.cpp
Expand Up @@ -176,6 +176,10 @@ void QuickTimeDecoder::seekToFrame(uint32 frame) {

// Restart the audio
startAudio();

// Pause the audio again if we're still paused
if (isPaused() && _audStream)
g_system->getMixer()->pauseHandle(_audHandle, true);
}
}

Expand Down

0 comments on commit 5fab8cb

Please sign in to comment.