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

loas_probe: make buffer pointers const

parent 29397c99
No related branches found
No related tags found
No related merge requests found
......@@ -29,10 +29,10 @@ static int loas_probe(AVProbeData *p)
{
int max_frames = 0, first_frames = 0;
int fsize, frames;
uint8_t *buf0 = p->buf;
uint8_t *buf2;
uint8_t *buf;
uint8_t *end = buf0 + p->buf_size - 3;
const uint8_t *buf0 = p->buf;
const uint8_t *buf2;
const uint8_t *buf;
const uint8_t *end = buf0 + p->buf_size - 3;
buf = buf0;
for(; buf < end; buf= buf2+1) {
......
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