[FFmpeg-soc] [soc]: r2071 - aac/aac.c
andoma
subversion at mplayerhq.hu
Thu Apr 3 08:38:34 CEST 2008
Author: andoma
Date: Thu Apr 3 08:38:34 2008
New Revision: 2071
Log:
use sizeof(var) instead of sizeof(type)
Modified:
aac/aac.c
Modified: aac/aac.c
==============================================================================
--- aac/aac.c (original)
+++ aac/aac.c Thu Apr 3 08:38:34 2008
@@ -643,7 +643,7 @@ static int program_config_element(AACCon
program_config_struct pcs;
int i, num_front, num_side, num_back, num_lfe, num_assoc_data, num_cc;
- memset(&pcs, 0, sizeof(program_config_struct));
+ memset(&pcs, 0, sizeof(pcs));
skip_bits(gb, 2); // object_type
More information about the FFmpeg-soc
mailing list