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

faust3 subversion at mplayerhq.hu
Wed Jun 24 19:27:23 CEST 2009


Author: faust3
Date: Wed Jun 24 19:27:23 2009
New Revision: 4517

Log:
Merge declaration and init

Modified:
   wmapro/wma3dec.c

Modified: wmapro/wma3dec.c
==============================================================================
--- wmapro/wma3dec.c	Wed Jun 24 19:11:23 2009	(r4516)
+++ wmapro/wma3dec.c	Wed Jun 24 19:27:23 2009	(r4517)
@@ -1101,10 +1101,9 @@ static void window(WMA3DecodeContext *s)
     int i;
     for (i=0;i<s->channels_for_cur_subframe;i++) {
         int c = s->channel_indexes_for_cur_subframe[i];
-        float* start;
         float* window;
         int winlen = s->channel[c].prev_block_len;
-        start = s->channel[c].coeffs - (winlen >> 1);
+        float* start = s->channel[c].coeffs - (winlen >> 1);
 
         if (s->subframe_len < winlen) {
             start += (winlen - s->subframe_len)>>1;


More information about the FFmpeg-soc mailing list