Commit 5e6514e2 authored by Michael Niedermayer's avatar Michael Niedermayer

h264 Fix: "warning: assigning to 'uint8_t *' (aka 'unsigned char *') from...

h264 Fix: "warning: assigning to 'uint8_t *' (aka 'unsigned char *') from 'const uint8_t *' (aka 'const unsigned char *') discards qualifiers"
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 902bdf70
......@@ -3791,7 +3791,7 @@ static int decode_nal_units(H264Context *h, const uint8_t *buf, int buf_size){
int consumed;
int dst_length;
int bit_length;
uint8_t *ptr;
const uint8_t *ptr;
int i, nalsize = 0;
int err;
......
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