summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2008-02-01 15:58:47 +0000
committerMichael Niedermayer <michaelni@gmx.at>2008-02-01 15:58:47 +0000
commit67d9ca0c00f0e00b928c29c7c78c760aa91eb844 (patch)
tree2ad898bcaeffe913f1c302563dd7b9f5ae7a2f1a
parent6fd4315ee2e2a0cf52014afca3b1f1e6ed6c45dd (diff)
const
Originally committed as revision 11781 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavcodec/tta.c2
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;