Commit f0878812 authored by Peter Ross's avatar Peter Ross

use intended const syntax

Originally committed as revision 22165 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent d5963ee6
......@@ -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