Commit 1be8d0fb authored by Michael Niedermayer's avatar Michael Niedermayer

srt_probe: make buffer pointer const

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 9cb887ed
......@@ -31,7 +31,7 @@ typedef struct {
static int srt_probe(AVProbeData *p)
{
unsigned char *ptr = p->buf;
const unsigned char *ptr = p->buf;
int i, v, num = 0;
if (AV_RB24(ptr) == 0xEFBBBF)
......
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