summaryrefslogtreecommitdiffstats
path: root/stream/stream.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2019-11-14 13:46:03 +0100
committerwm4 <wm4@nowhere>2019-11-14 13:46:03 +0100
commit5a99015acf184a2989ea7ebf50ab2c990be41125 (patch)
tree08448e6073228a7c2eb3fe5790e1f6389d7ca329 /stream/stream.h
parentac7f67b3f23a63e463fb881d960bc8f31a230292 (diff)
downloadmpv-5a99015acf184a2989ea7ebf50ab2c990be41125.tar.bz2
mpv-5a99015acf184a2989ea7ebf50ab2c990be41125.tar.xz
stream_lavf: set --network-timeout to 60 seconds by default
Until now, we've made FFmpeg use the default network timeout - which is apparently infinite. I don't know if this was changed at some point, although it seems likely, as I was sure there was a more useful default. For most use cases, a smaller timeout is more useful (for example recording something in the background), so force a timeout of 1 minute. See: #5793
Diffstat (limited to 'stream/stream.h')
-rw-r--r--stream/stream.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/stream/stream.h b/stream/stream.h
index d054e54914..aa764818b7 100644
--- a/stream/stream.h
+++ b/stream/stream.h
@@ -243,6 +243,7 @@ char *mp_file_get_path(void *talloc_ctx, bstr url);
// stream_lavf.c
struct AVDictionary;
void mp_setup_av_network_options(struct AVDictionary **dict,
+ const char *target_fmt,
struct mpv_global *global,
struct mp_log *log);