diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-02-01 15:58:47 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-02-01 15:58:47 +0000 |
commit | 67d9ca0c00f0e00b928c29c7c78c760aa91eb844 (patch) | |
tree | 2ad898bcaeffe913f1c302563dd7b9f5ae7a2f1a | |
parent | 6fd4315ee2e2a0cf52014afca3b1f1e6ed6c45dd (diff) | |
download | ffmpeg-67d9ca0c00f0e00b928c29c7c78c760aa91eb844.tar.gz |
const
Originally committed as revision 11781 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/tta.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/tta.c b/libavcodec/tta.c index 1ab207961e..f08b12d90b 100644 --- a/libavcodec/tta.c +++ b/libavcodec/tta.c @@ -287,7 +287,7 @@ static int tta_decode_init(AVCodecContext * avctx) static int tta_decode_frame(AVCodecContext *avctx, void *data, int *data_size, - uint8_t *buf, int buf_size) + const uint8_t *buf, int buf_size) { TTAContext *s = avctx->priv_data; int i; |