mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-29 22:00:58 +02:00
const
Originally committed as revision 11748 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
08e5052930
commit
f5b2e90010
@ -43,10 +43,10 @@ typedef struct TrueMotion1Context {
|
||||
AVCodecContext *avctx;
|
||||
AVFrame frame;
|
||||
|
||||
uint8_t *buf;
|
||||
const uint8_t *buf;
|
||||
int size;
|
||||
|
||||
uint8_t *mb_change_bits;
|
||||
const uint8_t *mb_change_bits;
|
||||
int mb_change_bits_row_size;
|
||||
uint8_t *index_stream;
|
||||
int index_stream_size;
|
||||
@ -846,7 +846,7 @@ static void truemotion1_decode_24bit(TrueMotion1Context *s)
|
||||
|
||||
static int truemotion1_decode_frame(AVCodecContext *avctx,
|
||||
void *data, int *data_size,
|
||||
uint8_t *buf, int buf_size)
|
||||
const uint8_t *buf, int buf_size)
|
||||
{
|
||||
TrueMotion1Context *s = avctx->priv_data;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user