Commit d7e050b1 authored by Michael Niedermayer's avatar Michael Niedermayer

adts_aac_probe: mark buffer pointers as const

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent ec40d15d
......@@ -31,10 +31,10 @@ static int adts_aac_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 - 7;
const uint8_t *buf0 = p->buf;
const uint8_t *buf2;
const uint8_t *buf;
const uint8_t *end = buf0 + p->buf_size - 7;
buf = buf0;
......
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