dont forget table_size in the decode_frame return value
authorMichael Niedermayer <michaelni@gmx.at>
Thu, 30 Mar 2006 14:13:03 +0000 (14:13 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Thu, 30 Mar 2006 14:13:03 +0000 (14:13 +0000)
Originally committed as revision 5246 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/huffyuv.c

index 39b0534..81fa685 100644 (file)
@@ -1015,7 +1015,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, uint8
     *picture= *p;
     *data_size = sizeof(AVFrame);
 
-    return (get_bits_count(&s->gb)+31)/32*4;
+    return (get_bits_count(&s->gb)+31)/32*4 + table_size;
 }
 
 static int common_end(HYuvContext *s){