diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-02-01 04:14:46 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-02-01 04:14:46 +0000 |
commit | 1545c5e5350a1926febdfc9a58d2d86758a582a6 (patch) | |
tree | 7e92189b9b2f8136bfe6a79f439910976916b026 | |
parent | fb2cf1bcf0f97cf3110a4e88098db1b7aa87fda0 (diff) | |
download | ffmpeg-1545c5e5350a1926febdfc9a58d2d86758a582a6.tar.gz |
const
Originally committed as revision 11725 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/flac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/flac.c b/libavcodec/flac.c index 2c003b099d..475c343e69 100644 --- a/libavcodec/flac.c +++ b/libavcodec/flac.c @@ -590,7 +590,7 @@ static int decode_frame(FLACContext *s, int alloc_data_size) static int flac_decode_frame(AVCodecContext *avctx, void *data, int *data_size, - uint8_t *buf, int buf_size) + const uint8_t *buf, int buf_size) { FLACContext *s = avctx->priv_data; int tmp = 0, i, j = 0, input_buf_size = 0; |