diff --git a/stream/stream_lavf.c b/stream/stream_lavf.c index 27a948d5e5..2269bfba2c 100644 --- a/stream/stream_lavf.c +++ b/stream/stream_lavf.c @@ -73,7 +73,8 @@ const struct m_sub_options stream_lavf_conf = { }, }; -static const char *const http_like[]; +static const char *const http_like[] = + {"http", "https", "mmsh", "mmshttp", "httproxy", NULL}; static int open_f(stream_t *stream); static struct mp_tags *read_icy(stream_t *stream); @@ -404,9 +405,6 @@ done: return res; } -static const char *const http_like[] = - {"http", "https", "mmsh", "mmshttp", "httproxy", NULL}; - const stream_info_t stream_info_ffmpeg = { .name = "ffmpeg", .open = open_f,