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

microdvd_probe: make buffer pointers const

parent c3cb3389
No related branches found
No related tags found
No related merge requests found
...@@ -35,7 +35,8 @@ typedef struct { ...@@ -35,7 +35,8 @@ typedef struct {
static int microdvd_probe(AVProbeData *p) static int microdvd_probe(AVProbeData *p)
{ {
unsigned char c, *ptr = p->buf; unsigned char c;
const uint8_t *ptr = p->buf;
int i; int i;
if (AV_RB24(ptr) == 0xEFBBBF) if (AV_RB24(ptr) == 0xEFBBBF)
......
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