X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavformat%2Fvivo.c;h=9a07c43849f1288bca560df753a113e8f2f155fc;hb=49cfbedb9d5a35d4701b37e9908172807eb67100;hp=c9e9c37f37dfbede0a94504c8fe025cc5c135984;hpb=50ae1f7e0ff1fa00236622415039f7e28d919a25;p=ffmpeg diff --git a/libavformat/vivo.c b/libavformat/vivo.c index c9e9c37f37d..9a07c43849f 100644 --- a/libavformat/vivo.c +++ b/libavformat/vivo.c @@ -40,7 +40,7 @@ typedef struct VivoContext { uint8_t text[1024 + 1]; } VivoContext; -static int vivo_probe(AVProbeData *p) +static int vivo_probe(const AVProbeData *p) { const unsigned char *buf = p->buf; unsigned c, length = 0; @@ -166,7 +166,7 @@ static int vivo_read_header(AVFormatContext *s) value = strchr(key, ':'); if (!value) { av_log(s, AV_LOG_WARNING, "missing colon in key:value pair '%s'\n", - value); + key); continue; }