[FFmpeg-soc] [soc]: r2924 - aac/aac.c
superdump
subversion at mplayerhq.hu
Wed Jul 30 17:19:24 CEST 2008
Author: superdump
Date: Wed Jul 30 17:19:24 2008
New Revision: 2924
Log:
Rename data_stream_element() as skip_data_stream_element()
Modified:
aac/aac.c
Modified: aac/aac.c
==============================================================================
--- aac/aac.c (original)
+++ aac/aac.c Wed Jul 30 17:19:24 2008
@@ -933,7 +933,7 @@ static av_cold int aac_decode_init(AVCod
/**
* Decode a data_stream_element; reference: table 4.10.
*/
-static void data_stream_element(AACContext * ac, GetBitContext * gb) {
+static void skip_data_stream_element(AACContext * ac, GetBitContext * gb) {
int byte_align = get_bits1(gb);
int count = get_bits(gb, 8);
if (count == 255)
@@ -2289,7 +2289,7 @@ static int aac_decode_frame(AVCodecConte
}
case ID_DSE:
- data_stream_element(ac, &gb);
+ skip_data_stream_element(ac, &gb);
err = 0;
break;
More information about the FFmpeg-soc
mailing list