summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2008-02-01 14:15:10 +0000
committerMichael Niedermayer <michaelni@gmx.at>2008-02-01 14:15:10 +0000
commit0e03ed2eede1690ad1fe92ade1e948b5ec68473c (patch)
tree9e2672021422f72a9a21dd3432db89c5a1c6f2fb
parent2b57b46313b3524f80e3b6f6cc6e6cf31dd95866 (diff)
const
Originally committed as revision 11744 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavcodec/sonic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/sonic.c b/libavcodec/sonic.c
index bff21eb8d2..9e193d469d 100644
--- a/libavcodec/sonic.c
+++ b/libavcodec/sonic.c
@@ -851,7 +851,7 @@ static int sonic_decode_close(AVCodecContext *avctx)
static int sonic_decode_frame(AVCodecContext *avctx,
void *data, int *data_size,
- uint8_t *buf, int buf_size)
+ const uint8_t *buf, int buf_size)
{
SonicContext *s = avctx->priv_data;
GetBitContext gb;