diff options
author | Peter Ross <pross@xvid.org> | 2010-03-03 09:38:09 +0000 |
---|---|---|
committer | Peter Ross <pross@xvid.org> | 2010-03-03 09:38:09 +0000 |
commit | f0878812074f995e4e69ad6c9c352ad29d38dd5c (patch) | |
tree | 56acc30e4afa74296306b5ca591a2bf73a6841d2 /libavcodec/iff.c | |
parent | d5963ee64aa07295d5058f6400b8f1794123122a (diff) | |
download | ffmpeg-f0878812074f995e4e69ad6c9c352ad29d38dd5c.tar.gz |
use intended const syntax
Originally committed as revision 22165 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/iff.c')
-rw-r--r-- | libavcodec/iff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/iff.c b/libavcodec/iff.c index 47f491b4e8..a8e64268ee 100644 --- a/libavcodec/iff.c +++ b/libavcodec/iff.c @@ -93,7 +93,7 @@ static av_cold int decode_init(AVCodecContext *avctx) * @param plane plane number to decode as */ #define DECLARE_DECODEPLANE(suffix, type) \ -static void decodeplane##suffix(void *dst, const uint8_t const *buf, int buf_size, int bps, int plane) \ +static void decodeplane##suffix(void *dst, const uint8_t *const buf, int buf_size, int bps, int plane) \ { \ GetBitContext gb; \ int i, b; \ |