Reset frame_last_delay to 0.

This avoids a few ms delay for the first frame after a seek in theory.

Originally committed as revision 21592 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2010-02-01 12:31:28 +00:00
parent acf24b870f
commit f7119e42e1
1 changed files with 1 additions and 1 deletions

View File

@ -1363,7 +1363,7 @@ static int video_thread(void *arg)
is->last_dts_for_fault_detection=
is->last_pts_for_fault_detection= INT64_MIN;
is->frame_last_pts= AV_NOPTS_VALUE;
is->frame_last_delay = 40e-3;
is->frame_last_delay = 0;
continue;
}