lavf: Constify the probe function argument.

Reviewed-by: Lauri Kasanen
Reviewed-by: Tomas Härdin
This commit is contained in:
Carl Eugen Hoyos
2019-03-21 01:18:37 +01:00
parent 6dc1da416e
commit 4d8875ec23
214 changed files with 256 additions and 256 deletions

View File

@@ -64,7 +64,7 @@ static int check_pack_header(const uint8_t *buf)
return (buf[1] & 0xC0) == 0x40 || (buf[1] & 0xF0) == 0x20;
}
static int mpegps_probe(AVProbeData *p)
static int mpegps_probe(const AVProbeData *p)
{
uint32_t code = -1;
int i;
@@ -703,7 +703,7 @@ AVInputFormat ff_mpegps_demuxer = {
#define REF_STRING "# VobSub index file,"
#define MAX_LINE_SIZE 2048
static int vobsub_probe(AVProbeData *p)
static int vobsub_probe(const AVProbeData *p)
{
if (!strncmp(p->buf, REF_STRING, sizeof(REF_STRING) - 1))
return AVPROBE_SCORE_MAX;