1 Sep 2007 01:59
r10276 - trunk/ffplay.c
michael <subversion <at> mplayerhq.hu>
2007-08-31 23:59:46 GMT
2007-08-31 23:59:46 GMT
Author: michael
Date: Sat Sep 1 01:59:45 2007
New Revision: 10276
Log:
fix 1fps videos
Modified:
trunk/ffplay.c
Modified: trunk/ffplay.c
==============================================================================
--- trunk/ffplay.c (original)
+++ trunk/ffplay.c Sat Sep 1 01:59:45 2007
<at> <at> -1012,7 +1012,7 <at> <at> static void video_refresh_timer(void *op
/* compute nominal delay */
delay = vp->pts - is->frame_last_pts;
- if (delay <= 0 || delay >= 1.0) {
+ if (delay <= 0 || delay >= 2.0) {
/* if incorrect delay, use previous one */
delay = is->frame_last_delay;
}
RSS Feed