From 4b920d7b4a588f0625ac73649729ba5229e9449f Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Mon, 29 Jun 2015 16:29:07 +0200 Subject: [PATCH] lavf/msnwc: Return 0 if the probe function does not detect msnwc-tcp. Reduces console spamming on debug level. --- libavformat/msnwc_tcp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/msnwc_tcp.c b/libavformat/msnwc_tcp.c index 60225af61c..2ec18fb554 100644 --- a/libavformat/msnwc_tcp.c +++ b/libavformat/msnwc_tcp.c @@ -67,7 +67,7 @@ static int msnwc_tcp_probe(AVProbeData *p) } } - return -1; + return 0; } static int msnwc_tcp_read_header(AVFormatContext *ctx)