Browse Source

use intended const syntax

Originally committed as revision 22165 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Peter Ross 15 years ago
parent
commit
f087881207
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/iff.c

+ 1
- 1
libavcodec/iff.c View File

@@ -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; \


Loading…
Cancel
Save