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

faust3 subversion at mplayerhq.hu
Wed Jun 24 19:45:16 CEST 2009


Author: faust3
Date: Wed Jun 24 19:45:15 2009
New Revision: 4519

Log:
Move variable descriptions next to the variables

Modified:
   wmapro/wma3dec.c

Modified: wmapro/wma3dec.c
==============================================================================
--- wmapro/wma3dec.c	Wed Jun 24 19:32:41 2009	(r4518)
+++ wmapro/wma3dec.c	Wed Jun 24 19:45:15 2009	(r4519)
@@ -503,12 +503,9 @@ static int decode_tilehdr(WMA3DecodeCont
             s->channel[c].subframe_len[0] = s->samples_per_frame;
         }
     } else { /** subframe length and number of subframes is not constant */
-        /** bits needed for the subframe length */
-        int subframe_len_bits = 0;
-        /** first bit indicates if length is zero */
-        int subframe_len_zero_bit = 0;
-        /** all channels have the same subframe layout */
-        int fixed_channel_layout;
+        int subframe_len_bits = 0;     /** bits needed for the subframe length */
+        int subframe_len_zero_bit = 0; /** first bit indicates if length is zero */
+        int fixed_channel_layout;      /** all channels have the same subframe layout */
 
         fixed_channel_layout = get_bits1(&s->gb);
 


More information about the FFmpeg-soc mailing list