diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-02-01 14:50:36 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-02-01 14:50:36 +0000 |
commit | 48670d4740f97eec85431f5b9585b16368f70889 (patch) | |
tree | c1030a6077dc0758741e93ff539bb22b207939b6 /libavcodec/cscd.c | |
parent | cd5a654ed54a0ce771a790865ddb5e48d8df28d2 (diff) | |
download | ffmpeg-48670d4740f97eec85431f5b9585b16368f70889.tar.gz |
const
Originally committed as revision 11753 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/cscd.c')
-rw-r--r-- | libavcodec/cscd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/cscd.c b/libavcodec/cscd.c index 36005a17b8..4d99d960a7 100644 --- a/libavcodec/cscd.c +++ b/libavcodec/cscd.c @@ -135,7 +135,7 @@ static void add_frame_32(AVFrame *f, uint8_t *src, #endif static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, - uint8_t *buf, int buf_size) { + const uint8_t *buf, int buf_size) { CamStudioContext *c = avctx->priv_data; AVFrame *picture = data; |