str_probe: make buffer related pointers const

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer
2012-12-25 01:55:22 +01:00
parent 28b9099ac1
commit f89f3d4a98

View File

@@ -69,8 +69,8 @@ static const uint8_t sync_header[12] = {0x00,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
static int str_probe(AVProbeData *p) static int str_probe(AVProbeData *p)
{ {
uint8_t *sector= p->buf; const uint8_t *sector= p->buf;
uint8_t *end= sector + p->buf_size; const uint8_t *end= sector + p->buf_size;
int aud=0, vid=0; int aud=0, vid=0;
if (p->buf_size < RAW_CD_SECTOR_SIZE) if (p->buf_size < RAW_CD_SECTOR_SIZE)