Commit 29397c99 authored by Michael Niedermayer's avatar Michael Niedermayer

lmlm4_probe: make buffer pointers const

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 23348647
......@@ -35,7 +35,7 @@
#define LMLM4_MAX_PACKET_SIZE 1024 * 1024
static int lmlm4_probe(AVProbeData * pd) {
unsigned char *buf = pd->buf;
const unsigned char *buf = pd->buf;
unsigned int frame_type, packet_size;
frame_type = AV_RB16(buf+2);
......
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