summaryrefslogtreecommitdiff
path: root/libavcodec/vqavideo.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2006-09-30 23:49:09 +0000
committerMichael Niedermayer <michaelni@gmx.at>2006-09-30 23:49:09 +0000
commit3129f3bd0f03f561589e5aa7a86027f8bb8c2c73 (patch)
treeda67734d6fb576a6bdc31558b06da6453bc16234 /libavcodec/vqavideo.c
parentcc0ba5a58f69f879b73154ab87ca39a493a02523 (diff)
palette (if we memcpy it into AVFrame) must be uint32_t
Originally committed as revision 6399 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vqavideo.c')
-rw-r--r--libavcodec/vqavideo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vqavideo.c b/libavcodec/vqavideo.c
index 7f0c952067..d0e0adf9a0 100644
--- a/libavcodec/vqavideo.c
+++ b/libavcodec/vqavideo.c
@@ -107,7 +107,7 @@ typedef struct VqaContext {
unsigned char *buf;
int size;
- unsigned int palette[PALETTE_COUNT];
+ uint32_t palette[PALETTE_COUNT];
int width; /* width of a frame */
int height; /* height of a frame */