summaryrefslogtreecommitdiff
path: root/libavcodec/mdec.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2008-02-01 03:34:43 +0000
committerMichael Niedermayer <michaelni@gmx.at>2008-02-01 03:34:43 +0000
commite68c7a4abe9c259af44e3cc1414674743e76cc32 (patch)
treed3796e2c30323590190eb80fc14473d50196da8a /libavcodec/mdec.c
parent0431d3b12131bb6f8eb9c46336efbef494f203da (diff)
const
Originally committed as revision 11710 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mdec.c')
-rw-r--r--libavcodec/mdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mdec.c b/libavcodec/mdec.c
index e91d5b7858..ed2476213d 100644
--- a/libavcodec/mdec.c
+++ b/libavcodec/mdec.c
@@ -158,7 +158,7 @@ static inline void idct_put(MDECContext *a, int mb_x, int mb_y){
static int decode_frame(AVCodecContext *avctx,
void *data, int *data_size,
- uint8_t *buf, int buf_size)
+ const uint8_t *buf, int buf_size)
{
MDECContext * const a = avctx->priv_data;
AVFrame *picture = data;