summaryrefslogtreecommitdiff
path: root/libavcodec/vorbis_dec.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2008-02-01 16:07:11 +0000
committerMichael Niedermayer <michaelni@gmx.at>2008-02-01 16:07:11 +0000
commit8c4bd28bec321c1bfa2f3c6d2e11bef7c13aa08c (patch)
tree83d50cc5c7b6c0da1cd311f5ac1ec7a7f7cc6926 /libavcodec/vorbis_dec.c
parente37e53350ebd95618b7ff1a949c9ee32020e79b9 (diff)
const
Originally committed as revision 11786 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vorbis_dec.c')
-rw-r--r--libavcodec/vorbis_dec.c2
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);