[FFmpeg-soc] [soc]: r2171 - aac/aac.c
superdump
subversion at mplayerhq.hu
Tue May 20 18:29:27 CEST 2008
Author: superdump
Date: Tue May 20 18:29:26 2008
New Revision: 2171
Log:
decode_ms_data() always returns 0 so make void
Modified:
aac/aac.c
Modified: aac/aac.c
==============================================================================
--- aac/aac.c (original)
+++ aac/aac.c Tue May 20 18:29:26 2008
@@ -1203,7 +1203,7 @@ static int decode_gain_control_data(AACC
}
#endif /* AAC_SSR */
-static int decode_ms_data(AACContext * ac, GetBitContext * gb, cpe_struct * cpe) {
+static void decode_ms_data(AACContext * ac, GetBitContext * gb, cpe_struct * cpe) {
ms_struct * ms = &cpe->ms;
int g, i;
ms->present = get_bits(gb, 2);
@@ -1215,7 +1215,6 @@ static int decode_ms_data(AACContext * a
for (g = 0; g < cpe->ch[0].ics.num_window_groups; g++)
memset(ms->mask[g], 1, cpe->ch[0].ics.max_sfb);
}
- return 0;
}
/**
More information about the FFmpeg-soc
mailing list