[Ffmpeg-cvslog] r8451 - trunk/libavcodec/wavpack.c

kostya subversion
Tue Mar 20 06:44:42 CET 2007


Author: kostya
Date: Tue Mar 20 06:44:42 2007
New Revision: 8451

Modified:
   trunk/libavcodec/wavpack.c

Log:
Correctly handle data_size on decoding

Modified: trunk/libavcodec/wavpack.c
==============================================================================
--- trunk/libavcodec/wavpack.c	(original)
+++ trunk/libavcodec/wavpack.c	Tue Mar 20 06:44:42 2007
@@ -383,14 +383,20 @@ static int wavpack_decode_frame(AVCodecC
     uint8_t* buf_end = buf + buf_size;
     int i, j, id, size, ssize, weights, t;
 
-    if (buf_size == 0) return 0;
+    if (buf_size == 0){
+        *data_size = 0;
+        return 0;
+    }
 
     memset(s->decorr, 0, MAX_TERMS * sizeof(Decorr));
 
     s->samples = AV_RL32(buf); buf += 4;
-    if(!s->samples) return buf_size;
+    if(!s->samples){
+        *data_size = 0;
+        return buf_size;
+    }
     /* should not happen but who knows */
-    if(s->samples * 2 * avctx->channels > AVCODEC_MAX_AUDIO_FRAME_SIZE){
+    if(s->samples * 2 * avctx->channels > *data_size){
         av_log(avctx, AV_LOG_ERROR, "Packet size is too big to be handled in lavc!\n");
         return -1;
     }




More information about the ffmpeg-cvslog mailing list