X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavformat%2Fvivo.c;h=9a07c43849f1288bca560df753a113e8f2f155fc;hb=d49d7d238f15021350c54e9c681e250464057cc3;hp=c9e9c37f37dfbede0a94504c8fe025cc5c135984;hpb=f8377ffce35251bba043aeda5d81df0d411a0595;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; }