[FFmpeg-devel] [PATCH 3/3] ffplay: only do early frame drop if video queue is not empty
Marton Balint
cus at passwd.hu
Tue Apr 16 23:30:45 CEST 2013
Fixes ticket #2446.
Signed-off-by: Marton Balint <cus at passwd.hu>
---
ffplay.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/ffplay.c b/ffplay.c
index 4568bd4..9ca2ad9 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -1694,7 +1694,8 @@ static int get_video_frame(VideoState *is, AVFrame *frame, AVPacket *pkt, int *s
double ptsdiff = dpts - is->frame_last_pts;
if (!isnan(clockdiff) && fabs(clockdiff) < AV_NOSYNC_THRESHOLD &&
!isnan(ptsdiff) && ptsdiff > 0 && ptsdiff < AV_NOSYNC_THRESHOLD &&
- clockdiff + ptsdiff - is->frame_last_filter_delay < 0) {
+ clockdiff + ptsdiff - is->frame_last_filter_delay < 0 &&
+ is->videoq.nb_packets) {
is->frame_last_dropped_pos = pkt->pos;
is->frame_last_dropped_pts = dpts;
is->frame_last_dropped_serial = *serial;
--
1.8.1.4
More information about the ffmpeg-devel
mailing list