[FFmpeg-cvslog] r10244 - trunk/ffplay.c
benoit
subversion
Mon Aug 27 10:06:49 CEST 2007
Author: benoit
Date: Mon Aug 27 10:06:48 2007
New Revision: 10244
Log:
Corrected pause handling when using the 's' step by frame key.
patch by Craig Nicol: [craig nicol /\ ed ac uk]
original thread:[FFmpeg-devel] [PATCH] FFplay speedup if stepping whilst paused
date: 08/02/2007 12:39 PM
Modified:
trunk/ffplay.c
Modified: trunk/ffplay.c
==============================================================================
--- trunk/ffplay.c (original)
+++ trunk/ffplay.c Mon Aug 27 10:06:48 2007
@@ -2196,9 +2196,9 @@ static void toggle_pause(void)
static void step_to_next_frame(void)
{
if (cur_stream) {
+ /* if the stream is paused unpause it, then step */
if (cur_stream->paused)
- cur_stream->paused=0;
- cur_stream->video_current_pts = get_video_clock(cur_stream);
+ stream_pause(cur_stream);
}
step = 1;
}
More information about the ffmpeg-cvslog
mailing list