1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

use intended const syntax

Originally committed as revision 22165 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Peter Ross 2010-03-03 09:38:09 +00:00
parent d5963ee64a
commit f087881207

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