comparison ulti.c @ 2834:fd5d7c732c6b libavcodec

kill a bunch of compiler warnings
author mru
date Sun, 14 Aug 2005 15:42:40 +0000
parents e65877799a09
children ef2149182f1c
comparison
equal deleted inserted replaced
2833:1f117208d20f 2834:fd5d7c732c6b
35 35
36 typedef struct UltimotionDecodeContext { 36 typedef struct UltimotionDecodeContext {
37 AVCodecContext *avctx; 37 AVCodecContext *avctx;
38 int width, height, blocks; 38 int width, height, blocks;
39 AVFrame frame; 39 AVFrame frame;
40 uint8_t *ulti_codebook; 40 const uint8_t *ulti_codebook;
41 } UltimotionDecodeContext; 41 } UltimotionDecodeContext;
42 42
43 static int ulti_decode_init(AVCodecContext *avctx) 43 static int ulti_decode_init(AVCodecContext *avctx)
44 { 44 {
45 UltimotionDecodeContext *s = avctx->priv_data; 45 UltimotionDecodeContext *s = avctx->priv_data;