diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-02-01 16:07:11 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-02-01 16:07:11 +0000 |
commit | 8c4bd28bec321c1bfa2f3c6d2e11bef7c13aa08c (patch) | |
tree | 83d50cc5c7b6c0da1cd311f5ac1ec7a7f7cc6926 /libavcodec | |
parent | e37e53350ebd95618b7ff1a949c9ee32020e79b9 (diff) | |
download | ffmpeg-8c4bd28bec321c1bfa2f3c6d2e11bef7c13aa08c.tar.gz |
const
Originally committed as revision 11786 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/vorbis_dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vorbis_dec.c b/libavcodec/vorbis_dec.c index a47cbc77ef..3ef56dc169 100644 --- a/libavcodec/vorbis_dec.c +++ b/libavcodec/vorbis_dec.c @@ -1579,7 +1579,7 @@ static int vorbis_parse_audio_packet(vorbis_context *vc) { static int vorbis_decode_frame(AVCodecContext *avccontext, void *data, int *data_size, - uint8_t *buf, int buf_size) + const uint8_t *buf, int buf_size) { vorbis_context *vc = avccontext->priv_data ; GetBitContext *gb = &(vc->gb); |