From c2f3715cb3fce093137591e3005de3e831b1f9fd Mon Sep 17 00:00:00 2001 From: Hendrik Leppkes Date: Tue, 22 Oct 2013 17:57:56 +0200 Subject: [PATCH] vp9: always consume the full input packet Reviewed-by: "Ronald S. Bultje" Signed-off-by: Michael Niedermayer --- libavcodec/vp9.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/vp9.c b/libavcodec/vp9.c index 1d0646023d..cb14ec4e72 100644 --- a/libavcodec/vp9.c +++ b/libavcodec/vp9.c @@ -3495,14 +3495,14 @@ static int vp9_decode_packet(AVCodecContext *avctx, void *out_pic, case_n(3, AV_RL24(idx)); case_n(4, AV_RL32(idx)); } - return size; + return avpkt->size; } } // if we get here, there was no valid superframe index, i.e. this is just // one whole single frame - decode it as such from the complete input buf if ((res = vp9_decode_frame(avctx, out_pic, got_frame, data, size)) < 0) return res; - return size; + return avpkt->size; } static void vp9_decode_flush(AVCodecContext *ctx)