diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-02-01 14:36:44 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-02-01 14:36:44 +0000 |
commit | 5cbbbf378f2b25e633e0044b81a21cf513ef36f7 (patch) | |
tree | 036013797ae86de0938f90604d111698b8c11190 /libavcodec/g726.c | |
parent | 81ef51e669ca221395657f2b817b4fd162f2d9a7 (diff) | |
download | ffmpeg-5cbbbf378f2b25e633e0044b81a21cf513ef36f7.tar.gz |
const
Originally committed as revision 11751 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/g726.c')
-rw-r--r-- | libavcodec/g726.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/g726.c b/libavcodec/g726.c index 9a2dbdd351..912c38f7fc 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; |