forked from FFmpeg/FFmpeg
avcodec/smc: Mark pixel pointer as const
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
25482d5c42
commit
52623ef785
1 changed files with 1 additions and 1 deletions
|
@ -92,7 +92,7 @@ static void smc_decode_stream(SmcContext *s)
|
|||
unsigned int color_flags_b;
|
||||
unsigned int flag_mask;
|
||||
|
||||
unsigned char *pixels = s->frame->data[0];
|
||||
unsigned char * const pixels = s->frame->data[0];
|
||||
|
||||
int image_size = height * s->frame->linesize[0];
|
||||
int row_ptr = 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue