Commit 42b669a1 authored by pross's avatar pross

use intended const syntax


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@22165 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 64f7a8a8
......@@ -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; \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment