From 867ab7fb0a7010559dca4e122130b5198bad06e0 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 27 May 2010 00:31:45 +0000 Subject: [PATCH] Fix pts reordering code. This fixes a regression introduced when libavfilter support was added to ffplay. Originally committed as revision 23343 to svn://svn.ffmpeg.org/ffmpeg/trunk --- ffplay.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ffplay.c b/ffplay.c index 86040bec3f..129cd28871 100644 --- a/ffplay.c +++ b/ffplay.c @@ -1600,6 +1600,7 @@ static int input_get_buffer(AVCodecContext *codec, AVFrame *pic) pic->opaque = ref; pic->age = INT_MAX; pic->type = FF_BUFFER_TYPE_USER; + pic->reordered_opaque = codec->reordered_opaque; return 0; }