diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2011-11-05 19:48:39 +0100 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2011-11-05 23:25:20 +0100 |
commit | 371e1654434f5934ca1665df22387024a82e6e27 (patch) | |
tree | 83f51e22bd76e8145b88691697755e93f2da3ae4 /libavcodec/kmvc.c | |
parent | fb2288834ba8a51e8934cfe8b82ac468144a34df (diff) | |
download | ffmpeg-371e1654434f5934ca1665df22387024a82e6e27.tar.gz |
Try to set AVFrame.reference to correct values.
I am not sure these new values are correct, not am I sure
the semantics are a good idea since we do not seem to make any
use of them but they caused a lot of confusion, but this
seems to make things closer to matching the documentation.
Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
Diffstat (limited to 'libavcodec/kmvc.c')
-rw-r--r-- | libavcodec/kmvc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/kmvc.c b/libavcodec/kmvc.c index 7ac4c01fba..32d9a34a2d 100644 --- a/libavcodec/kmvc.c +++ b/libavcodec/kmvc.c @@ -238,7 +238,7 @@ static int decode_frame(AVCodecContext * avctx, void *data, int *data_size, AVPa if (ctx->pic.data[0]) avctx->release_buffer(avctx, &ctx->pic); - ctx->pic.reference = 1; + ctx->pic.reference = 3; ctx->pic.buffer_hints = FF_BUFFER_HINTS_VALID; if (avctx->get_buffer(avctx, &ctx->pic) < 0) { av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n"); |