From 6ddaa63cf4556d4f8e232bbcb15353c86ee0b4c1 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Fri, 1 Feb 2008 02:26:19 +0000 Subject: [PATCH] The buffer passed into the decoder should be const. Originally committed as revision 11704 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/avcodec.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 77f42efaf0..a1365e7a4a 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -2200,7 +2200,7 @@ typedef struct AVCodec { int (*encode)(AVCodecContext *, uint8_t *buf, int buf_size, void *data); int (*close)(AVCodecContext *); int (*decode)(AVCodecContext *, void *outdata, int *outdata_size, - uint8_t *buf, int buf_size); + const uint8_t *buf, int buf_size); int capabilities; struct AVCodec *next; void (*flush)(AVCodecContext *);