[FFmpeg-soc] [soc]: r2926 - aac/aac.c
superdump
subversion at mplayerhq.hu
Wed Jul 30 17:23:15 CEST 2008
Author: superdump
Date: Wed Jul 30 17:23:15 2008
New Revision: 2926
Log:
Rename sbr_extension_data() as decode_sbr_extension()
Modified:
aac/aac.c
Modified: aac/aac.c
==============================================================================
--- aac/aac.c (original)
+++ aac/aac.c Wed Jul 30 17:23:15 2008
@@ -1594,7 +1594,7 @@ static int decode_cce(AACContext * ac, G
* @param cnt length of ID_FIL syntactic element in bytes
* @return Returns number of bytes consumed from the ID_FIL element.
*/
-static int sbr_extension_data(AACContext * ac, GetBitContext * gb, int crc, int cnt) {
+static int decode_sbr_extension(AACContext * ac, GetBitContext * gb, int crc, int cnt) {
// TODO : sbr_extension implementation
av_log(ac->avccontext, AV_LOG_DEBUG, "aac: SBR not yet supported.\n");
skip_bits_long(gb, 8*cnt - 4); // -4 due to reading extension type
@@ -1687,7 +1687,7 @@ static int extension_payload(AACContext
case EXT_SBR_DATA_CRC:
crc_flag++;
case EXT_SBR_DATA:
- res = sbr_extension_data(ac, gb, crc_flag, cnt);
+ res = decode_sbr_extension(ac, gb, crc_flag, cnt);
break;
case EXT_DYNAMIC_RANGE:
res = dynamic_range_info(ac, gb, cnt);
More information about the FFmpeg-soc
mailing list