diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-02-01 02:26:19 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-02-01 02:26:19 +0000 |
commit | 6ddaa63cf4556d4f8e232bbcb15353c86ee0b4c1 (patch) | |
tree | 7e60d9e5cbad344a37164d8b07b993fc5ad62208 /libavcodec/avcodec.h | |
parent | a9f87158549b6d8dc6d32c1c10e0d115a90c1819 (diff) | |
download | ffmpeg-streaming-6ddaa63cf4556d4f8e232bbcb15353c86ee0b4c1.zip ffmpeg-streaming-6ddaa63cf4556d4f8e232bbcb15353c86ee0b4c1.tar.gz |
The buffer passed into the decoder should be const.
Originally committed as revision 11704 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 77f42ef..a1365e7 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 *); |