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

faust3 subversion at mplayerhq.hu
Thu Jun 11 11:00:59 CEST 2009


Author: faust3
Date: Thu Jun 11 11:00:59 2009
New Revision: 4416

Log:
use int values for temporary variables in the scale factor decoding code

Modified:
   wmapro/wma3dec.c

Modified: wmapro/wma3dec.c
==============================================================================
--- wmapro/wma3dec.c	Thu Jun 11 10:34:07 2009	(r4415)
+++ wmapro/wma3dec.c	Thu Jun 11 11:00:59 2009	(r4416)
@@ -962,9 +962,9 @@ static int wma_decode_scale_factors(WMA3
 
                 for (i=0;i<s->num_bands;i++) {
                     int idx;
-                    short skip;
-                    short val;
-                    short sign;
+                    int skip;
+                    int val;
+                    int sign;
 
                     idx = get_vlc2(&s->gb, sf_rl_vlc.table, VLCBITS, SCALERLMAXDEPTH);
 


More information about the FFmpeg-soc mailing list