Commit f5b2e900 authored by Michael Niedermayer's avatar Michael Niedermayer

const

Originally committed as revision 11748 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 08e50529
...@@ -43,10 +43,10 @@ typedef struct TrueMotion1Context { ...@@ -43,10 +43,10 @@ typedef struct TrueMotion1Context {
AVCodecContext *avctx; AVCodecContext *avctx;
AVFrame frame; AVFrame frame;
uint8_t *buf; const uint8_t *buf;
int size; int size;
uint8_t *mb_change_bits; const uint8_t *mb_change_bits;
int mb_change_bits_row_size; int mb_change_bits_row_size;
uint8_t *index_stream; uint8_t *index_stream;
int index_stream_size; int index_stream_size;
...@@ -846,7 +846,7 @@ static void truemotion1_decode_24bit(TrueMotion1Context *s) ...@@ -846,7 +846,7 @@ static void truemotion1_decode_24bit(TrueMotion1Context *s)
static int truemotion1_decode_frame(AVCodecContext *avctx, static int truemotion1_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)
{ {
TrueMotion1Context *s = avctx->priv_data; TrueMotion1Context *s = avctx->priv_data;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment