[FFmpeg-soc] [soc]: r2456 - wmapro/wma3dec.c

faust3 subversion at mplayerhq.hu
Sun Jun 15 16:58:00 CEST 2008


Author: faust3
Date: Sun Jun 15 16:58:00 2008
New Revision: 2456

Log:
removed broken assert

Modified:
   wmapro/wma3dec.c

Modified: wmapro/wma3dec.c
==============================================================================
--- wmapro/wma3dec.c	(original)
+++ wmapro/wma3dec.c	Sun Jun 15 16:58:00 2008
@@ -168,13 +168,11 @@ static av_cold int wma3_decode_init(AVCo
 static int wma_decode_frame(WMA3DecodeContext *s,GetBitContext* gb){
     int more_frames = 0;
     /* get frame length */
-    int len = s->log2_frame_size;
+    int len = 0;
 
     if(s->len_prefix)
         len = get_bits(gb,s->log2_frame_size);
 
-    assert(len == s->log2_frame_size);
-
     av_log(s->avctx,AV_LOG_INFO,"decoding frame with len %x\n",len);
 
     /* decode frame data */



More information about the FFmpeg-soc mailing list