Skip to content

Commit

Permalink
temp: don't reset codec when running behind
Browse files Browse the repository at this point in the history
  • Loading branch information
popcornmix committed May 27, 2015
1 parent 4b0263a commit 1a92423
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/cores/dvdplayer/DVDPlayer.cpp
Expand Up @@ -1835,7 +1835,7 @@ void CDVDPlayer::HandlePlaySpeed()
{
// due to i.e. discontinuities of pts the stream may have drifted away
// from clock too far for audio to sync back.
if (m_CurrentAudio.id >= 0 && m_CurrentAudio.inited &&
if (0 && m_CurrentAudio.id >= 0 && m_CurrentAudio.inited &&
m_dvdPlayerAudio->IsStalled() && m_dvdPlayerAudio->GetLevel() == 0)
{
CLog::Log(LOGDEBUG,"CDVDPlayer::HandlePlaySpeed - audio stream stalled, triggering re-sync");
Expand Down

0 comments on commit 1a92423

Please sign in to comment.