[FFmpeg-soc] [soc]: r2738 - aac/aac.c
superdump
subversion at mplayerhq.hu
Tue Jul 8 07:19:39 CEST 2008
Author: superdump
Date: Tue Jul 8 07:19:38 2008
New Revision: 2738
Log:
Rename function
Modified:
aac/aac.c
Modified: aac/aac.c
==============================================================================
--- aac/aac.c (original)
+++ aac/aac.c Tue Jul 8 07:19:38 2008
@@ -1174,7 +1174,7 @@ static int decode_scale_factor_data(AACC
/**
* Decode pulse data; reference: table 4.7.
*/
-static void decode_pulse_data(AACContext * ac, GetBitContext * gb, Pulse * pulse) {
+static void decode_pulses(AACContext * ac, GetBitContext * gb, Pulse * pulse) {
int i;
pulse->num_pulse = get_bits(gb, 2) + 1;
pulse->start = get_bits(gb, 6);
@@ -1406,7 +1406,7 @@ static int decode_ics(AACContext * ac, G
av_log(ac->avccontext, AV_LOG_ERROR, "Pulse tool not allowed in eight short sequence.\n");
return -1;
}
- decode_pulse_data(ac, gb, &pulse);
+ decode_pulses(ac, gb, &pulse);
}
if ((tns->present = get_bits1(gb)))
decode_tns_data(ac, gb, ics, tns);
More information about the FFmpeg-soc
mailing list