From 5cbbbf378f2b25e633e0044b81a21cf513ef36f7 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Fri, 1 Feb 2008 14:36:44 +0000 Subject: [PATCH] const Originally committed as revision 11751 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/g726.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/g726.c b/libavcodec/g726.c index 9a2dbdd..912c38f 100644 --- a/libavcodec/g726.c +++ b/libavcodec/g726.c @@ -373,7 +373,7 @@ static int g726_encode_frame(AVCodecContext *avctx, static int g726_decode_frame(AVCodecContext *avctx, void *data, int *data_size, - uint8_t *buf, int buf_size) + const uint8_t *buf, int buf_size) { AVG726Context *c = avctx->priv_data; short *samples = data; -- 2.7.4