summaryrefslogtreecommitdiff
path: root/ffplay.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2010-05-27 00:31:45 +0000
committerMichael Niedermayer <michaelni@gmx.at>2010-05-27 00:31:45 +0000
commit867ab7fb0a7010559dca4e122130b5198bad06e0 (patch)
treed3046d3a241c5623f98d364ece26a7a15b701bdc /ffplay.c
parentab8f6009026b9d2e9ee72ee3524c34356bbb1523 (diff)
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
Diffstat (limited to 'ffplay.c')
-rw-r--r--ffplay.c1
1 files changed, 1 insertions, 0 deletions
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;
}