[FFmpeg-soc] [soc]: r2927 - aac/aac.c
superdump
subversion at mplayerhq.hu
Wed Jul 30 17:24:27 CEST 2008
Author: superdump
Date: Wed Jul 30 17:24:27 2008
New Revision: 2927
Log:
Rename excluded_channels() as decode_drc_channel_exclusions()
Modified:
aac/aac.c
Modified: aac/aac.c
==============================================================================
--- aac/aac.c (original)
+++ aac/aac.c Wed Jul 30 17:24:27 2008
@@ -1606,7 +1606,7 @@ static int decode_sbr_extension(AACConte
*
* @return Returns number of bytes consumed.
*/
-static int excluded_channels(AACContext * ac, GetBitContext * gb) {
+static int decode_drc_channel_exclusions(AACContext * ac, GetBitContext * gb) {
int i;
int n = 1;
int num_excl_chan = 7;
@@ -1644,7 +1644,7 @@ static int dynamic_range_info(AACContext
/* excluded_chns_present? */
if(get_bits1(gb)) {
- n += excluded_channels(ac, gb);
+ n += decode_drc_channel_exclusions(ac, gb);
}
/* drc_bands_present? */
More information about the FFmpeg-soc
mailing list