From be63b4ba22a3b1961599fb8cfe4a513693023e13 Mon Sep 17 00:00:00 2001 From: Janne Grunau Date: Tue, 2 Nov 2010 08:28:55 +0000 Subject: aacdec: return consumed bits in decode_audio_specific_config Originally committed as revision 25639 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/aacdec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/aacdec.c') diff --git a/libavcodec/aacdec.c b/libavcodec/aacdec.c index 7aaa87d5f1..61affd6f6e 100644 --- a/libavcodec/aacdec.c +++ b/libavcodec/aacdec.c @@ -439,7 +439,7 @@ static int decode_ga_specific_config(AACContext *ac, GetBitContext *gb, * @param data pointer to AVCodecContext extradata * @param data_size size of AVCCodecContext extradata * - * @return Returns error status. 0 - OK, !0 - error + * @return Returns error status or number of consumed bits. <0 - error */ static int decode_audio_specific_config(AACContext *ac, MPEG4AudioConfig *m4ac, void *data, @@ -473,7 +473,7 @@ static int decode_audio_specific_config(AACContext *ac, return -1; } - return 0; + return get_bits_count(&gb); } /** -- cgit v1.2.3