diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2015-06-29 16:29:07 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2015-06-29 16:29:07 +0200 |
commit | 4b920d7b4a588f0625ac73649729ba5229e9449f (patch) | |
tree | c66984a19738e346cac4ad7c07ecae10af69570b | |
parent | 77c0b149be120ab6b0a0a536b309aba0d4bc8261 (diff) | |
download | ffmpeg-4b920d7b4a588f0625ac73649729ba5229e9449f.tar.gz |
lavf/msnwc: Return 0 if the probe function does not detect msnwc-tcp.
Reduces console spamming on debug level.
-rw-r--r-- | libavformat/msnwc_tcp.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) |