diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-02-01 14:03:56 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-02-01 14:03:56 +0000 |
commit | da2036c54ef26fb54eb2760be92f767170c9b17f (patch) | |
tree | 2b3ed9bc56bd558b97d699893ed3550eb410f9c1 /libavcodec/rawdec.c | |
parent | 3cd7c7fb1b210348b67337671b0661b80fcd1f42 (diff) | |
download | ffmpeg-da2036c54ef26fb54eb2760be92f767170c9b17f.tar.gz |
const
Originally committed as revision 11738 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/rawdec.c')
-rw-r--r-- | libavcodec/rawdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/rawdec.c b/libavcodec/rawdec.c index a92168e6e7..746840a31b 100644 --- a/libavcodec/rawdec.c +++ b/libavcodec/rawdec.c @@ -96,7 +96,7 @@ static void flip(AVCodecContext *avctx, AVPicture * picture){ static int raw_decode(AVCodecContext *avctx, void *data, int *data_size, - uint8_t *buf, int buf_size) + const uint8_t *buf, int buf_size) { RawVideoContext *context = avctx->priv_data; |