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

superdump subversion at mplayerhq.hu
Sun Jun 22 12:32:25 CEST 2008


Author: superdump
Date: Sun Jun 22 12:32:25 2008
New Revision: 2531

Log:
Remove no-longer needed variables


Modified:
   aac/aac.c

Modified: aac/aac.c
==============================================================================
--- aac/aac.c	(original)
+++ aac/aac.c	Sun Jun 22 12:32:25 2008
@@ -861,9 +861,7 @@ static int aac_decode_init(AVCodecContex
         static const int mod_cb[11] = { 3, 3, 3, 3, 9, 9, 8, 8, 13, 13, 17 };
         static const int off_cb[11] = { 1, 1, 0, 0, 4, 4, 0, 0,  0,  0,  0 };
 
-        int a_bits_size = sizeof(tmp[i].a_bits[0]);
-        int a_code_size = sizeof(tmp[i].a_code[0]);
-        int j, k, values = tmp[i].s/a_code_size;
+        int j, k, values = tmp[i].s/sizeof(tmp[i].a_code[0]);
         int dim = (i >= 4 ? 2 : 4);
         int mod = mod_cb[i], off = off_cb[i], index = 0;
 



More information about the FFmpeg-soc mailing list