[FFmpeg-cvslog] r22165 - trunk/libavcodec/iff.c

pross subversion
Wed Mar 3 10:38:10 CET 2010


Author: pross
Date: Wed Mar  3 10:38:09 2010
New Revision: 22165

Log:
use intended const syntax

Modified:
   trunk/libavcodec/iff.c

Modified: trunk/libavcodec/iff.c
==============================================================================
--- trunk/libavcodec/iff.c	Wed Mar  3 10:16:45 2010	(r22164)
+++ trunk/libavcodec/iff.c	Wed Mar  3 10:38:09 2010	(r22165)
@@ -93,7 +93,7 @@ static av_cold int decode_init(AVCodecCo
  * @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; \



More information about the ffmpeg-cvslog mailing list