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

bcoudurier subversion at mplayerhq.hu
Sat Jun 2 14:09:31 CEST 2007


Author: bcoudurier
Date: Sat Jun  2 14:09:31 2007
New Revision: 216

Log:
init pulse to 0 to avoid gcc warning about uninitialized

Modified:
   aac/aac.c

Modified: aac/aac.c
==============================================================================
--- aac/aac.c	(original)
+++ aac/aac.c	Sat Jun  2 14:09:31 2007
@@ -968,7 +968,7 @@ static int individual_channel_stream(aac
     float * out = sce->coeffs;
 
     //memset(sf, 0, sizeof(sf));
-
+    memset(&pulse, 0, sizeof(pulse));
     sce->global_gain = get_bits(gb, 8);
 
     if (!common_window && !scale_flag) {



More information about the FFmpeg-soc mailing list