From f3ae845fd294c0f8c08473e4a1245d643b4477ff Mon Sep 17 00:00:00 2001 From: wm4 Date: Fri, 6 Feb 2015 17:01:35 +0100 Subject: options: add --network-timeout Not quite sure if this actually works as intended. Fixes #1566. --- stream/stream_lavf.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'stream/stream_lavf.c') diff --git a/stream/stream_lavf.c b/stream/stream_lavf.c index fd83202632..a121cd5af4 100644 --- a/stream/stream_lavf.c +++ b/stream/stream_lavf.c @@ -181,6 +181,9 @@ void mp_setup_av_network_options(AVDictionary **dict, struct mpv_global *global, if (strlen(cust_headers)) av_dict_set(dict, "headers", cust_headers, 0); av_dict_set(dict, "icy", "1", 0); + // So far, every known protocol uses microseconds for this + if (opts->network_timeout > 0) + av_dict_set_int(dict, "timeout", opts->network_timeout * 1e6, 0); mp_set_avdict(dict, opts->stream_lavf_opts->avopts); -- cgit v1.2.3