[FFmpeg-devel] [PATCH] vp9: always consume the full input packet

Hendrik Leppkes h.leppkes at gmail.com
Tue Oct 22 17:57:56 CEST 2013


---
 libavcodec/vp9.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavcodec/vp9.c b/libavcodec/vp9.c
index 1d06460..cb14ec4 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)
-- 
1.8.4.msysgit.0



More information about the ffmpeg-devel mailing list