Skip to content
Snippets Groups Projects
Commit 29397c99 authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

lmlm4_probe: make buffer pointers const

parent 23348647
No related branches found
No related tags found
No related merge requests found
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
#define LMLM4_MAX_PACKET_SIZE 1024 * 1024 #define LMLM4_MAX_PACKET_SIZE 1024 * 1024
static int lmlm4_probe(AVProbeData * pd) { static int lmlm4_probe(AVProbeData * pd) {
unsigned char *buf = pd->buf; const unsigned char *buf = pd->buf;
unsigned int frame_type, packet_size; unsigned int frame_type, packet_size;
frame_type = AV_RB16(buf+2); frame_type = AV_RB16(buf+2);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment