Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Backport [27356] from trunk to 0.24-fixes
Fix the response time repositioning when exiting FF/Rew.  It was
broken in [26483] when a called to DoJumpToFrame() was added and
overwrote the repositioning that was still pending.  This change
accounts for the repositioning when calling DoJumpToFrame().


git-svn-id: http://svn.mythtv.org/svn/branches/release-0-24-fixes@27357 7dbf422c-18fa-0310-86e9-fd20926502f2
  • Loading branch information
gigem committed Nov 27, 2010
1 parent f70abbe commit 473ffae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythtv/mythplayer.cpp
Expand Up @@ -3185,7 +3185,7 @@ void MythPlayer::ChangeSpeed(void)
videoOutput->SetPrebuffering(ffrew_skip == 1);
decoder->setExactSeeks(exactseeks && ffrew_skip == 1);
if (play_speed != 0.0f && !(last_speed == 0.0f && ffrew_skip == 1))
DoJumpToFrame(framesPlayed);
DoJumpToFrame(framesPlayed + fftime - rewindtime);
}

VERBOSE(VB_PLAYBACK, LOC + "Play speed: " +
Expand Down

0 comments on commit 473ffae

Please sign in to comment.