summaryrefslogtreecommitdiff
path: root/libavcodec/iff.c
diff options
context:
space:
mode:
authorPeter Ross <pross@xvid.org>2010-03-03 09:38:09 +0000
committerPeter Ross <pross@xvid.org>2010-03-03 09:38:09 +0000
commitf0878812074f995e4e69ad6c9c352ad29d38dd5c (patch)
tree56acc30e4afa74296306b5ca591a2bf73a6841d2 /libavcodec/iff.c
parentd5963ee64aa07295d5058f6400b8f1794123122a (diff)
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.c2
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; \