diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-05-27 00:31:45 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-05-27 00:31:45 +0000 |
commit | 867ab7fb0a7010559dca4e122130b5198bad06e0 (patch) | |
tree | d3046d3a241c5623f98d364ece26a7a15b701bdc | |
parent | ab8f6009026b9d2e9ee72ee3524c34356bbb1523 (diff) | |
download | ffmpeg-867ab7fb0a7010559dca4e122130b5198bad06e0.tar.gz |
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
-rw-r--r-- | ffplay.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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; } |