Browse Source

const

Originally committed as revision 11789 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer 17 years ago
parent
commit
473dde1700
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      libavcodec/vqavideo.c

+ 3
- 3
libavcodec/vqavideo.c View File

@@ -104,7 +104,7 @@ typedef struct VqaContext {
DSPContext dsp; DSPContext dsp;
AVFrame frame; AVFrame frame;


unsigned char *buf;
const unsigned char *buf;
int size; int size;


uint32_t palette[PALETTE_COUNT]; uint32_t palette[PALETTE_COUNT];
@@ -202,7 +202,7 @@ static int vqa_decode_init(AVCodecContext *avctx)
return; \ return; \
} }


static void decode_format80(unsigned char *src, int src_size,
static void decode_format80(const unsigned char *src, int src_size,
unsigned char *dest, int dest_size, int check_size) { unsigned char *dest, int dest_size, int check_size) {


int src_index = 0; int src_index = 0;
@@ -567,7 +567,7 @@ static void vqa_decode_chunk(VqaContext *s)


static int vqa_decode_frame(AVCodecContext *avctx, static int vqa_decode_frame(AVCodecContext *avctx,
void *data, int *data_size, void *data, int *data_size,
uint8_t *buf, int buf_size)
const uint8_t *buf, int buf_size)
{ {
VqaContext *s = avctx->priv_data; VqaContext *s = avctx->priv_data;




Loading…
Cancel
Save