You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
avcodec/dxv: Don't cast const away unnecessarily
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
@@ -432,7 +432,7 @@ static int get_opcodes(GetByteContext *gb, uint32_t *table, uint8_t *dst, int op
|
|||||||
int64_t size_in_bits;
|
int64_t size_in_bits;
|
||||||
unsigned endoffset, newoffset, offset;
|
unsigned endoffset, newoffset, offset;
|
||||||
unsigned next;
|
unsigned next;
|
||||||
uint8_t *src = (uint8_t *)gb->buffer;
|
const uint8_t *src = gb->buffer;
|
||||||
|
|
||||||
ret = fill_optable(table, optable, nb_elements);
|
ret = fill_optable(table, optable, nb_elements);
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
|
Reference in New Issue
Block a user