[FFmpeg-soc] [soc]: r2720 - aac/aac.c
superdump
subversion at mplayerhq.hu
Tue Jul 8 00:02:51 CEST 2008
Author: superdump
Date: Tue Jul 8 00:02:51 2008
New Revision: 2720
Log:
Remove unused variable
Modified:
aac/aac.c
Modified: aac/aac.c
==============================================================================
--- aac/aac.c (original)
+++ aac/aac.c Tue Jul 8 00:02:51 2008
@@ -895,7 +895,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, int id) {
+static void data_stream_element(AACContext * ac, GetBitContext * gb) {
int byte_align = get_bits1(gb);
int count = get_bits(gb, 8);
if (count == 255)
@@ -2133,7 +2133,7 @@ static int aac_decode_frame(AVCodecConte
break;
case ID_DSE:
- data_stream_element(ac, &gb, tag);
+ data_stream_element(ac, &gb);
err = 0;
break;
More information about the FFmpeg-soc
mailing list