1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-24 13:56:33 +02:00

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) static int msnwc_tcp_read_header(AVFormatContext *ctx)