[FFmpeg-soc] [soc]: r2077 - aac/aac.c

andoma subversion at mplayerhq.hu
Thu Apr 3 08:53:21 CEST 2008


Author: andoma
Date: Thu Apr  3 08:53:21 2008
New Revision: 2077

Log:
Merge declaration and initialization.



Modified:
   aac/aac.c

Modified: aac/aac.c
==============================================================================
--- aac/aac.c	(original)
+++ aac/aac.c	Thu Apr  3 08:53:21 2008
@@ -966,10 +966,8 @@ static int aac_decode_init(AVCodecContex
  * reference: Table 4.10
  */
 static int data_stream_element(AACContext * ac, GetBitContext * gb, int id) {
-    int byte_align;
-    int count;
-    byte_align = get_bits1(gb);
-    count = get_bits(gb, 8);
+    int byte_align = get_bits1(gb);
+    int count = get_bits(gb, 8);
     if (count == 255)
         count += get_bits(gb, 8);
     if (byte_align)



More information about the FFmpeg-soc mailing list