From 94c78709470eb67585db52b46f2eb7a69dea5cff Mon Sep 17 00:00:00 2001 From: Janne Grunau Date: Tue, 2 Nov 2010 08:33:10 +0000 Subject: [PATCH] aacdec: change type of data in decode_audio_specific_config parameters AVCodecContext.extradata is uint8_t*, silence a warning Originally committed as revision 25644 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/aacdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/aacdec.c b/libavcodec/aacdec.c index f3073c6023b..607b906e268 100644 --- a/libavcodec/aacdec.c +++ b/libavcodec/aacdec.c @@ -456,7 +456,7 @@ static int decode_ga_specific_config(AACContext *ac, AVCodecContext *avctx, static int decode_audio_specific_config(AACContext *ac, AVCodecContext *avctx, MPEG4AudioConfig *m4ac, - void *data, int data_size) + const uint8_t *data, int data_size) { GetBitContext gb; int i; -- 2.39.2