From 87ac0c0a39268654c8a6ae4b3acb7a01f9d942bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Reimar=20D=C3=B6ffinger?= Date: Sat, 23 Jan 2010 15:22:48 +0000 Subject: [PATCH] Use AVPALETTE_COUNT instead of hard-coding 256. This is consistent with other codecs and will also avoid a crash on the memcpy to data[1] if AVPALETTE_SIZE ever increases. Originally committed as revision 21399 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/vb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/vb.c b/libavcodec/vb.c index 155ccebbc4..4dfac435ac 100644 --- a/libavcodec/vb.c +++ b/libavcodec/vb.c @@ -43,7 +43,7 @@ typedef struct VBDecContext { AVFrame pic; uint8_t *frame, *prev_frame; - uint32_t pal[256]; + uint32_t pal[AVPALETTE_COUNT]; const uint8_t *stream; } VBDecContext;