lavf/msnwc: Return 0 if the probe function does not detect msnwc-tcp.

Reduces console spamming on debug level.
This commit is contained in:
Carl Eugen Hoyos 2015-06-29 16:29:07 +02:00
parent 77c0b149be
commit 4b920d7b4a

View File

@ -67,7 +67,7 @@ static int msnwc_tcp_probe(AVProbeData *p)
}
}
return -1;
return 0;
}
static int msnwc_tcp_read_header(AVFormatContext *ctx)