2010-01-30 22:26:47 +00:00
|
|
|
/*
|
2015-04-13 07:36:54 +00:00
|
|
|
* This file is part of mpv.
|
2010-01-30 22:26:47 +00:00
|
|
|
*
|
2017-06-16 14:27:57 +00:00
|
|
|
* mpv is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2010-01-30 22:26:47 +00:00
|
|
|
*
|
2015-04-13 07:36:54 +00:00
|
|
|
* mpv is distributed in the hope that it will be useful,
|
2010-01-30 22:26:47 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2017-06-16 14:27:57 +00:00
|
|
|
* GNU Lesser General Public License for more details.
|
2010-01-30 22:26:47 +00:00
|
|
|
*
|
2017-06-16 14:27:57 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with mpv. If not, see <http://www.gnu.org/licenses/>.
|
2010-01-30 22:26:47 +00:00
|
|
|
*/
|
|
|
|
|
2012-12-10 00:28:20 +00:00
|
|
|
#include <libavformat/avformat.h>
|
|
|
|
#include <libavformat/avio.h>
|
|
|
|
#include <libavutil/opt.h>
|
2009-11-17 16:09:17 +00:00
|
|
|
|
2013-12-22 12:28:55 +00:00
|
|
|
#include "options/path.h"
|
2016-09-06 18:09:56 +00:00
|
|
|
#include "common/common.h"
|
2013-12-17 01:39:45 +00:00
|
|
|
#include "common/msg.h"
|
2014-07-05 14:45:56 +00:00
|
|
|
#include "common/tags.h"
|
2014-07-29 23:15:42 +00:00
|
|
|
#include "common/av_common.h"
|
2018-05-17 18:58:49 +00:00
|
|
|
#include "misc/thread_tools.h"
|
2009-11-17 16:09:17 +00:00
|
|
|
#include "stream.h"
|
2016-09-06 18:09:56 +00:00
|
|
|
#include "options/m_config.h"
|
2013-12-17 01:02:25 +00:00
|
|
|
#include "options/m_option.h"
|
2009-11-17 16:09:17 +00:00
|
|
|
|
2013-01-24 15:05:52 +00:00
|
|
|
#include "cookies.h"
|
|
|
|
|
2014-08-29 10:09:04 +00:00
|
|
|
#include "misc/bstr.h"
|
2016-01-11 18:03:40 +00:00
|
|
|
#include "mpv_talloc.h"
|
2013-07-02 10:18:54 +00:00
|
|
|
|
2014-07-29 23:15:42 +00:00
|
|
|
#define OPT_BASE_STRUCT struct stream_lavf_params
|
|
|
|
struct stream_lavf_params {
|
|
|
|
char **avopts;
|
2023-02-20 03:32:50 +00:00
|
|
|
bool cookies_enabled;
|
2016-09-06 18:09:56 +00:00
|
|
|
char *cookies_file;
|
|
|
|
char *useragent;
|
|
|
|
char *referrer;
|
|
|
|
char **http_header_fields;
|
2023-02-20 03:32:50 +00:00
|
|
|
bool tls_verify;
|
2016-09-06 18:09:56 +00:00
|
|
|
char *tls_ca_file;
|
|
|
|
char *tls_cert_file;
|
|
|
|
char *tls_key_file;
|
|
|
|
double timeout;
|
2018-05-22 16:59:59 +00:00
|
|
|
char *http_proxy;
|
2014-07-29 23:15:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const struct m_sub_options stream_lavf_conf = {
|
|
|
|
.opts = (const m_option_t[]) {
|
options: change option macros and all option declarations
Change all OPT_* macros such that they don't define the entire m_option
initializer, and instead expand only to a part of it, which sets certain
fields. This requires changing almost every option declaration, because
they all use these macros. A declaration now always starts with
{"name", ...
followed by designated initializers only (possibly wrapped in macros).
The OPT_* macros now initialize the .offset and .type fields only,
sometimes also .priv and others.
I think this change makes the option macros less tricky. The old code
had to stuff everything into macro arguments (and attempted to allow
setting arbitrary fields by letting the user pass designated
initializers in the vararg parts). Some of this was made messy due to
C99 and C11 not allowing 0-sized varargs with ',' removal. It's also
possible that this change is pointless, other than cosmetic preferences.
Not too happy about some things. For example, the OPT_CHOICE()
indentation I applied looks a bit ugly.
Much of this change was done with regex search&replace, but some places
required manual editing. In particular, code in "obscure" areas (which I
didn't include in compilation) might be broken now.
In wayland_common.c the author of some option declarations confused the
flags parameter with the default value (though the default value was
also properly set below). I fixed this with this change.
2020-03-14 20:28:01 +00:00
|
|
|
{"stream-lavf-o", OPT_KEYVALUELIST(avopts)},
|
|
|
|
{"http-header-fields", OPT_STRINGLIST(http_header_fields)},
|
|
|
|
{"user-agent", OPT_STRING(useragent)},
|
|
|
|
{"referrer", OPT_STRING(referrer)},
|
2023-02-20 03:32:50 +00:00
|
|
|
{"cookies", OPT_BOOL(cookies_enabled)},
|
options: change option macros and all option declarations
Change all OPT_* macros such that they don't define the entire m_option
initializer, and instead expand only to a part of it, which sets certain
fields. This requires changing almost every option declaration, because
they all use these macros. A declaration now always starts with
{"name", ...
followed by designated initializers only (possibly wrapped in macros).
The OPT_* macros now initialize the .offset and .type fields only,
sometimes also .priv and others.
I think this change makes the option macros less tricky. The old code
had to stuff everything into macro arguments (and attempted to allow
setting arbitrary fields by letting the user pass designated
initializers in the vararg parts). Some of this was made messy due to
C99 and C11 not allowing 0-sized varargs with ',' removal. It's also
possible that this change is pointless, other than cosmetic preferences.
Not too happy about some things. For example, the OPT_CHOICE()
indentation I applied looks a bit ugly.
Much of this change was done with regex search&replace, but some places
required manual editing. In particular, code in "obscure" areas (which I
didn't include in compilation) might be broken now.
In wayland_common.c the author of some option declarations confused the
flags parameter with the default value (though the default value was
also properly set below). I fixed this with this change.
2020-03-14 20:28:01 +00:00
|
|
|
{"cookies-file", OPT_STRING(cookies_file), .flags = M_OPT_FILE},
|
2023-02-20 03:32:50 +00:00
|
|
|
{"tls-verify", OPT_BOOL(tls_verify)},
|
options: change option macros and all option declarations
Change all OPT_* macros such that they don't define the entire m_option
initializer, and instead expand only to a part of it, which sets certain
fields. This requires changing almost every option declaration, because
they all use these macros. A declaration now always starts with
{"name", ...
followed by designated initializers only (possibly wrapped in macros).
The OPT_* macros now initialize the .offset and .type fields only,
sometimes also .priv and others.
I think this change makes the option macros less tricky. The old code
had to stuff everything into macro arguments (and attempted to allow
setting arbitrary fields by letting the user pass designated
initializers in the vararg parts). Some of this was made messy due to
C99 and C11 not allowing 0-sized varargs with ',' removal. It's also
possible that this change is pointless, other than cosmetic preferences.
Not too happy about some things. For example, the OPT_CHOICE()
indentation I applied looks a bit ugly.
Much of this change was done with regex search&replace, but some places
required manual editing. In particular, code in "obscure" areas (which I
didn't include in compilation) might be broken now.
In wayland_common.c the author of some option declarations confused the
flags parameter with the default value (though the default value was
also properly set below). I fixed this with this change.
2020-03-14 20:28:01 +00:00
|
|
|
{"tls-ca-file", OPT_STRING(tls_ca_file), .flags = M_OPT_FILE},
|
|
|
|
{"tls-cert-file", OPT_STRING(tls_cert_file), .flags = M_OPT_FILE},
|
|
|
|
{"tls-key-file", OPT_STRING(tls_key_file), .flags = M_OPT_FILE},
|
|
|
|
{"network-timeout", OPT_DOUBLE(timeout), M_RANGE(0, DBL_MAX)},
|
|
|
|
{"http-proxy", OPT_STRING(http_proxy)},
|
2014-07-29 23:15:42 +00:00
|
|
|
{0}
|
|
|
|
},
|
|
|
|
.size = sizeof(struct stream_lavf_params),
|
2016-09-06 18:09:56 +00:00
|
|
|
.defaults = &(const struct stream_lavf_params){
|
2020-01-26 13:24:47 +00:00
|
|
|
.useragent = "libmpv",
|
2019-11-14 12:46:03 +00:00
|
|
|
.timeout = 60,
|
2016-09-06 18:09:56 +00:00
|
|
|
},
|
2014-07-29 23:15:42 +00:00
|
|
|
};
|
|
|
|
|
2021-05-18 18:20:10 +00:00
|
|
|
static const char *const http_like[] =
|
|
|
|
{"http", "https", "mmsh", "mmshttp", "httproxy", NULL};
|
2015-01-21 11:10:45 +00:00
|
|
|
|
2014-05-24 12:06:13 +00:00
|
|
|
static int open_f(stream_t *stream);
|
2014-07-05 14:45:56 +00:00
|
|
|
static struct mp_tags *read_icy(stream_t *stream);
|
2013-01-24 17:45:24 +00:00
|
|
|
|
2019-11-07 14:28:50 +00:00
|
|
|
static int fill_buffer(stream_t *s, void *buffer, int max_len)
|
2009-11-17 16:09:17 +00:00
|
|
|
{
|
2011-12-24 23:20:12 +00:00
|
|
|
AVIOContext *avio = s->priv;
|
2017-09-01 15:59:03 +00:00
|
|
|
int r = avio_read_partial(avio, buffer, max_len);
|
2009-11-17 16:09:17 +00:00
|
|
|
return (r <= 0) ? -1 : r;
|
|
|
|
}
|
|
|
|
|
2019-11-07 14:28:50 +00:00
|
|
|
static int write_buffer(stream_t *s, void *buffer, int len)
|
2009-11-17 16:09:17 +00:00
|
|
|
{
|
2011-12-24 23:20:12 +00:00
|
|
|
AVIOContext *avio = s->priv;
|
|
|
|
avio_write(avio, buffer, len);
|
|
|
|
avio_flush(avio);
|
|
|
|
if (avio->error)
|
|
|
|
return -1;
|
|
|
|
return len;
|
2009-11-17 16:09:17 +00:00
|
|
|
}
|
|
|
|
|
2012-11-18 19:46:12 +00:00
|
|
|
static int seek(stream_t *s, int64_t newpos)
|
2009-11-17 16:09:17 +00:00
|
|
|
{
|
2011-12-24 23:20:12 +00:00
|
|
|
AVIOContext *avio = s->priv;
|
2013-08-22 16:23:33 +00:00
|
|
|
if (avio_seek(avio, newpos, SEEK_SET) < 0) {
|
2009-11-17 16:09:17 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-11-07 14:54:34 +00:00
|
|
|
static int64_t get_size(stream_t *s)
|
|
|
|
{
|
|
|
|
AVIOContext *avio = s->priv;
|
|
|
|
return avio_size(avio);
|
|
|
|
}
|
|
|
|
|
2013-01-24 17:45:24 +00:00
|
|
|
static void close_f(stream_t *stream)
|
|
|
|
{
|
|
|
|
AVIOContext *avio = stream->priv;
|
|
|
|
/* NOTE: As of 2011 write streams must be manually flushed before close.
|
|
|
|
* Currently write_buffer() always flushes them after writing.
|
|
|
|
* avio_close() could return an error, but we have no way to return that
|
|
|
|
* with the current stream API.
|
|
|
|
*/
|
|
|
|
if (avio)
|
|
|
|
avio_close(avio);
|
|
|
|
}
|
|
|
|
|
2009-11-17 16:09:17 +00:00
|
|
|
static int control(stream_t *s, int cmd, void *arg)
|
|
|
|
{
|
2012-04-17 22:27:55 +00:00
|
|
|
AVIOContext *avio = s->priv;
|
2009-11-17 16:09:17 +00:00
|
|
|
switch(cmd) {
|
2014-07-30 00:21:35 +00:00
|
|
|
case STREAM_CTRL_AVSEEK: {
|
|
|
|
struct stream_avseek *c = arg;
|
|
|
|
int64_t r = avio_seek_time(avio, c->stream_index, c->timestamp, c->flags);
|
2014-10-30 21:50:44 +00:00
|
|
|
if (r >= 0) {
|
|
|
|
stream_drop_buffers(s);
|
2010-04-23 20:50:34 +00:00
|
|
|
return 1;
|
2014-10-30 21:50:44 +00:00
|
|
|
}
|
2010-04-23 20:50:34 +00:00
|
|
|
break;
|
2014-07-30 00:21:35 +00:00
|
|
|
}
|
2016-09-26 12:45:55 +00:00
|
|
|
case STREAM_CTRL_HAS_AVSEEK: {
|
|
|
|
// Starting at some point, read_seek is always available, and runtime
|
|
|
|
// behavior decides whether it exists or not. FFmpeg's API doesn't
|
|
|
|
// return anything helpful to determine seekability upfront, so here's
|
|
|
|
// a hardcoded whitelist. Not our fault.
|
|
|
|
// In addition we also have to jump through ridiculous hoops just to
|
|
|
|
// get the fucking protocol name.
|
|
|
|
const char *proto = NULL;
|
|
|
|
if (avio->av_class && avio->av_class->child_next) {
|
|
|
|
// This usually yields the URLContext (why does it even exist?),
|
|
|
|
// which holds the name of the actual protocol implementation.
|
|
|
|
void *child = avio->av_class->child_next(avio, NULL);
|
|
|
|
AVClass *cl = *(AVClass **)child;
|
|
|
|
if (cl && cl->item_name)
|
|
|
|
proto = cl->item_name(child);
|
|
|
|
}
|
|
|
|
static const char *const has_read_seek[] = {
|
|
|
|
"rtmp", "rtmpt", "rtmpe", "rtmpte", "rtmps", "rtmpts", "mmsh", 0};
|
|
|
|
for (int n = 0; has_read_seek[n]; n++) {
|
|
|
|
if (avio->read_seek && proto && strcmp(proto, has_read_seek[n]) == 0)
|
|
|
|
return 1;
|
|
|
|
}
|
2014-10-30 21:46:25 +00:00
|
|
|
break;
|
2016-09-26 12:45:55 +00:00
|
|
|
}
|
2013-07-02 10:18:54 +00:00
|
|
|
case STREAM_CTRL_GET_METADATA: {
|
2014-07-05 14:45:56 +00:00
|
|
|
*(struct mp_tags **)arg = read_icy(s);
|
|
|
|
if (!*(struct mp_tags **)arg)
|
2013-07-02 10:18:54 +00:00
|
|
|
break;
|
|
|
|
return 1;
|
|
|
|
}
|
2009-11-17 16:09:17 +00:00
|
|
|
}
|
|
|
|
return STREAM_UNSUPPORTED;
|
|
|
|
}
|
|
|
|
|
2014-04-25 17:13:12 +00:00
|
|
|
static int interrupt_cb(void *ctx)
|
|
|
|
{
|
|
|
|
struct stream *stream = ctx;
|
stream: redo playback abort handling
This mechanism originates from MPlayer's way of dealing with blocking
network, but it's still useful. On opening and closing, mpv waits for
network synchronously, and also some obscure commands and use-cases can
lead to such blocking. In these situations, the stream is asynchronously
forced to stop by "interrupting" it.
The old design interrupting I/O was a bit broken: polling with a
callback, instead of actively interrupting it. Change the direction of
this. There is no callback anymore, and the player calls
mp_cancel_trigger() to force the stream to return.
libavformat (via stream_lavf.c) has the old broken design, and fixing it
would require fixing libavformat, which won't happen so quickly. So we
have to keep that part. But everything above the stream layer is
prepared for a better design, and more sophisticated methods than
mp_cancel_test() could be easily introduced.
There's still one problem: commands are still run in the central
playback loop, which we assume can block on I/O in the worst case.
That's not a problem yet, because we simply mark some commands as being
able to stop playback of the current file ("quit" etc.), so input.c
could abort playback as soon as such a command is queued. But there are
also commands abort playback only conditionally, and the logic for that
is in the playback core and thus "unreachable". For example,
"playlist_next" aborts playback only if there's a next file. We don't
want it to always abort playback.
As a quite ugly hack, abort playback only if at least 2 abort commands
are queued - this pretty much happens only if the core is frozen and
doesn't react to input.
2014-09-13 12:23:08 +00:00
|
|
|
return mp_cancel_test(stream->cancel);
|
2014-04-25 17:13:12 +00:00
|
|
|
}
|
|
|
|
|
2012-09-07 16:39:46 +00:00
|
|
|
static const char * const prefix[] = { "lavf://", "ffmpeg://" };
|
2009-11-17 16:09:17 +00:00
|
|
|
|
2019-11-14 12:46:03 +00:00
|
|
|
void mp_setup_av_network_options(AVDictionary **dict, const char *target_fmt,
|
|
|
|
struct mpv_global *global, struct mp_log *log)
|
2014-10-14 19:01:30 +00:00
|
|
|
{
|
|
|
|
void *temp = talloc_new(NULL);
|
2016-09-06 18:09:56 +00:00
|
|
|
struct stream_lavf_params *opts =
|
|
|
|
mp_get_config_group(temp, global, &stream_lavf_conf);
|
2014-10-14 19:01:30 +00:00
|
|
|
|
|
|
|
// HTTP specific options (other protocols ignore them)
|
2016-09-06 18:09:56 +00:00
|
|
|
if (opts->useragent)
|
2016-09-18 02:19:01 +00:00
|
|
|
av_dict_set(dict, "user_agent", opts->useragent, 0);
|
2016-09-06 18:09:56 +00:00
|
|
|
if (opts->cookies_enabled) {
|
|
|
|
char *file = opts->cookies_file;
|
2014-10-14 19:01:30 +00:00
|
|
|
if (file && file[0])
|
|
|
|
file = mp_get_user_path(temp, global, file);
|
2023-01-09 20:31:20 +00:00
|
|
|
char *cookies = cookies_lavf(temp, global, log, file);
|
2014-10-14 19:01:30 +00:00
|
|
|
if (cookies && cookies[0])
|
|
|
|
av_dict_set(dict, "cookies", cookies, 0);
|
|
|
|
}
|
2016-09-06 18:09:56 +00:00
|
|
|
av_dict_set(dict, "tls_verify", opts->tls_verify ? "1" : "0", 0);
|
|
|
|
if (opts->tls_ca_file)
|
|
|
|
av_dict_set(dict, "ca_file", opts->tls_ca_file, 0);
|
|
|
|
if (opts->tls_cert_file)
|
|
|
|
av_dict_set(dict, "cert_file", opts->tls_cert_file, 0);
|
|
|
|
if (opts->tls_key_file)
|
|
|
|
av_dict_set(dict, "key_file", opts->tls_key_file, 0);
|
2014-10-14 19:01:30 +00:00
|
|
|
char *cust_headers = talloc_strdup(temp, "");
|
2016-09-06 18:09:56 +00:00
|
|
|
if (opts->referrer) {
|
2014-10-14 19:01:30 +00:00
|
|
|
cust_headers = talloc_asprintf_append(cust_headers, "Referer: %s\r\n",
|
2016-09-06 18:09:56 +00:00
|
|
|
opts->referrer);
|
2014-10-14 19:01:30 +00:00
|
|
|
}
|
2016-09-06 18:09:56 +00:00
|
|
|
if (opts->http_header_fields) {
|
|
|
|
for (int n = 0; opts->http_header_fields[n]; n++) {
|
2014-10-14 19:01:30 +00:00
|
|
|
cust_headers = talloc_asprintf_append(cust_headers, "%s\r\n",
|
2016-09-06 18:09:56 +00:00
|
|
|
opts->http_header_fields[n]);
|
2014-10-14 19:01:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (strlen(cust_headers))
|
|
|
|
av_dict_set(dict, "headers", cust_headers, 0);
|
|
|
|
av_dict_set(dict, "icy", "1", 0);
|
2015-02-06 16:01:35 +00:00
|
|
|
// So far, every known protocol uses microseconds for this
|
2019-11-14 12:46:03 +00:00
|
|
|
// Except rtsp.
|
2016-09-06 18:09:56 +00:00
|
|
|
if (opts->timeout > 0) {
|
2019-11-14 12:46:03 +00:00
|
|
|
if (target_fmt && strcmp(target_fmt, "rtsp") == 0) {
|
|
|
|
mp_verbose(log, "Broken FFmpeg RTSP API => not setting timeout.\n");
|
|
|
|
} else {
|
|
|
|
char buf[80];
|
|
|
|
snprintf(buf, sizeof(buf), "%lld", (long long)(opts->timeout * 1e6));
|
|
|
|
av_dict_set(dict, "timeout", buf, 0);
|
|
|
|
}
|
2015-02-06 17:02:37 +00:00
|
|
|
}
|
2018-05-22 16:59:59 +00:00
|
|
|
if (opts->http_proxy && opts->http_proxy[0])
|
|
|
|
av_dict_set(dict, "http_proxy", opts->http_proxy, 0);
|
2014-10-14 19:01:30 +00:00
|
|
|
|
2016-09-06 18:09:56 +00:00
|
|
|
mp_set_avdict(dict, opts->avopts);
|
2014-10-14 19:01:30 +00:00
|
|
|
|
|
|
|
talloc_free(temp);
|
|
|
|
}
|
|
|
|
|
2015-01-21 11:10:45 +00:00
|
|
|
// Escape http URLs with unescaped, invalid characters in them.
|
|
|
|
// libavformat's http protocol does not do this, and a patch to add this
|
|
|
|
// in a 100% safe case (spaces only) was rejected.
|
|
|
|
static char *normalize_url(void *ta_parent, const char *filename)
|
|
|
|
{
|
|
|
|
bstr proto = mp_split_proto(bstr0(filename), NULL);
|
|
|
|
for (int n = 0; http_like[n]; n++) {
|
|
|
|
if (bstr_equals0(proto, http_like[n]))
|
|
|
|
// Escape everything but reserved characters.
|
|
|
|
// Also don't double-scape, so include '%'.
|
|
|
|
return mp_url_escape(ta_parent, filename, ":/?#[]@!$&'()*+,;=%");
|
|
|
|
}
|
|
|
|
return (char *)filename;
|
|
|
|
}
|
|
|
|
|
2014-05-24 12:06:13 +00:00
|
|
|
static int open_f(stream_t *stream)
|
2009-11-17 16:09:17 +00:00
|
|
|
{
|
2011-12-24 23:20:12 +00:00
|
|
|
AVIOContext *avio = NULL;
|
2009-11-17 16:09:17 +00:00
|
|
|
int res = STREAM_ERROR;
|
2013-01-24 15:05:52 +00:00
|
|
|
AVDictionary *dict = NULL;
|
2012-12-08 14:41:03 +00:00
|
|
|
void *temp = talloc_new(NULL);
|
2009-11-17 16:09:17 +00:00
|
|
|
|
2014-05-24 12:04:09 +00:00
|
|
|
stream->seek = NULL;
|
|
|
|
stream->seekable = false;
|
|
|
|
|
2014-05-24 12:06:13 +00:00
|
|
|
int flags = stream->mode == STREAM_WRITE ? AVIO_FLAG_WRITE : AVIO_FLAG_READ;
|
2009-11-17 16:09:17 +00:00
|
|
|
|
2012-12-08 14:41:03 +00:00
|
|
|
const char *filename = stream->url;
|
|
|
|
if (!filename) {
|
2014-05-24 12:06:09 +00:00
|
|
|
MP_ERR(stream, "No URL\n");
|
2009-11-17 16:09:17 +00:00
|
|
|
goto out;
|
|
|
|
}
|
2012-09-07 16:39:46 +00:00
|
|
|
for (int i = 0; i < sizeof(prefix) / sizeof(prefix[0]); i++)
|
|
|
|
if (!strncmp(filename, prefix[i], strlen(prefix[i])))
|
|
|
|
filename += strlen(prefix[i]);
|
2021-01-18 13:43:01 +00:00
|
|
|
if (!strncmp(filename, "rtsp:", 5) || !strncmp(filename, "rtsps:", 6)) {
|
2012-09-07 16:39:46 +00:00
|
|
|
/* This is handled as a special demuxer, without a separate
|
2013-11-21 15:08:09 +00:00
|
|
|
* stream layer. demux_lavf will do all the real work. Note
|
|
|
|
* that libavformat doesn't even provide a protocol entry for
|
|
|
|
* this (the rtsp demuxer's probe function checks for a "rtsp:"
|
|
|
|
* filename prefix), so it has to be handled specially here.
|
2012-09-07 16:39:46 +00:00
|
|
|
*/
|
2013-07-11 19:10:42 +00:00
|
|
|
stream->demuxer = "lavf";
|
2012-09-07 16:39:46 +00:00
|
|
|
stream->lavf_type = "rtsp";
|
2013-11-21 15:08:09 +00:00
|
|
|
talloc_free(temp);
|
2012-09-07 16:39:46 +00:00
|
|
|
return STREAM_OK;
|
|
|
|
}
|
2009-11-17 16:09:17 +00:00
|
|
|
|
2012-12-08 14:41:03 +00:00
|
|
|
// Replace "mms://" with "mmsh://", so that most mms:// URLs just work.
|
2023-06-18 14:47:26 +00:00
|
|
|
// Replace "dav://" or "webdav://" with "http://" and "davs://" or "webdavs://" with "https://"
|
2012-12-08 14:41:03 +00:00
|
|
|
bstr b_filename = bstr0(filename);
|
|
|
|
if (bstr_eatstart0(&b_filename, "mms://") ||
|
|
|
|
bstr_eatstart0(&b_filename, "mmshttp://"))
|
|
|
|
{
|
|
|
|
filename = talloc_asprintf(temp, "mmsh://%.*s", BSTR_P(b_filename));
|
2023-06-18 14:47:26 +00:00
|
|
|
} else if (bstr_eatstart0(&b_filename, "dav://") || bstr_eatstart0(&b_filename, "webdav://"))
|
2023-01-02 21:53:53 +00:00
|
|
|
{
|
|
|
|
filename = talloc_asprintf(temp, "http://%.*s", BSTR_P(b_filename));
|
2023-06-18 14:47:26 +00:00
|
|
|
} else if (bstr_eatstart0(&b_filename, "davs://") || bstr_eatstart0(&b_filename, "webdavs://"))
|
2023-01-02 21:53:53 +00:00
|
|
|
{
|
|
|
|
filename = talloc_asprintf(temp, "https://%.*s", BSTR_P(b_filename));
|
2012-12-08 14:41:03 +00:00
|
|
|
}
|
|
|
|
|
2018-01-04 14:20:19 +00:00
|
|
|
av_dict_set(&dict, "reconnect", "1", 0);
|
|
|
|
av_dict_set(&dict, "reconnect_delay_max", "7", 0);
|
|
|
|
|
2019-11-14 12:46:03 +00:00
|
|
|
mp_setup_av_network_options(&dict, NULL, stream->global, stream->log);
|
2013-01-24 15:05:52 +00:00
|
|
|
|
2014-04-25 17:13:12 +00:00
|
|
|
AVIOInterruptCB cb = {
|
|
|
|
.callback = interrupt_cb,
|
|
|
|
.opaque = stream,
|
|
|
|
};
|
|
|
|
|
2015-01-21 11:10:45 +00:00
|
|
|
filename = normalize_url(stream, filename);
|
|
|
|
|
2015-03-19 15:41:48 +00:00
|
|
|
if (strncmp(filename, "rtmp", 4) == 0) {
|
|
|
|
stream->demuxer = "lavf";
|
|
|
|
stream->lavf_type = "flv";
|
|
|
|
// Setting timeout enables listen mode - force it to disabled.
|
|
|
|
av_dict_set(&dict, "timeout", "0", 0);
|
|
|
|
}
|
|
|
|
|
2014-04-25 17:13:12 +00:00
|
|
|
int err = avio_open2(&avio, filename, flags, &cb, &dict);
|
2012-12-27 20:19:33 +00:00
|
|
|
if (err < 0) {
|
|
|
|
if (err == AVERROR_PROTOCOL_NOT_FOUND)
|
2014-05-24 12:06:09 +00:00
|
|
|
MP_ERR(stream, "Protocol not found. Make sure"
|
2012-12-27 20:19:33 +00:00
|
|
|
" ffmpeg/Libav is compiled with networking support.\n");
|
2009-11-17 16:09:17 +00:00
|
|
|
goto out;
|
2012-12-27 20:19:33 +00:00
|
|
|
}
|
2009-11-17 16:09:17 +00:00
|
|
|
|
2014-08-02 01:12:09 +00:00
|
|
|
mp_avdict_print_unset(stream->log, MSGL_V, dict);
|
2013-09-22 00:20:18 +00:00
|
|
|
|
2014-03-16 09:04:46 +00:00
|
|
|
if (avio->av_class) {
|
2012-12-10 00:28:20 +00:00
|
|
|
uint8_t *mt = NULL;
|
2013-07-02 10:18:54 +00:00
|
|
|
if (av_opt_get(avio, "mime_type", AV_OPT_SEARCH_CHILDREN, &mt) >= 0) {
|
2012-12-10 00:28:20 +00:00
|
|
|
stream->mime_type = talloc_strdup(stream, mt);
|
2013-07-02 10:18:54 +00:00
|
|
|
av_free(mt);
|
|
|
|
}
|
2012-12-10 00:28:20 +00:00
|
|
|
}
|
|
|
|
|
2011-12-24 23:20:12 +00:00
|
|
|
stream->priv = avio;
|
2016-09-27 13:51:34 +00:00
|
|
|
stream->seekable = avio->seekable & AVIO_SEEKABLE_NORMAL;
|
2014-05-24 12:04:09 +00:00
|
|
|
stream->seek = stream->seekable ? seek : NULL;
|
2012-09-07 16:39:46 +00:00
|
|
|
stream->fill_buffer = fill_buffer;
|
|
|
|
stream->write_buffer = write_buffer;
|
2019-11-07 14:54:34 +00:00
|
|
|
stream->get_size = get_size;
|
2012-09-07 16:39:46 +00:00
|
|
|
stream->control = control;
|
|
|
|
stream->close = close_f;
|
2012-12-01 22:52:04 +00:00
|
|
|
// enable cache (should be avoided for files, but no way to detect this)
|
|
|
|
stream->streaming = true;
|
stream, demux: redo origin policy thing
mpv has a very weak and very annoying policy that determines whether a
playlist should be used or not. For example, if you play a remote
playlist, you usually don't want it to be able to read local filesystem
entries. (Although for a media player the impact is small I guess.)
It's weak and annoying as in that it does not prevent certain cases
which could be interpreted as bad in some cases, such as allowing
playlists on the local filesystem to reference remote URLs. It probably
barely makes sense, but we just want to exclude some other "definitely
not a good idea" things, all while playlists generally just work, so
whatever.
The policy is:
- from the command line anything is played
- local playlists can reference anything except "unsafe" streams
("unsafe" means special stream inputs like libavfilter graphs)
- remote playlists can reference only remote URLs
- things like "memory://" and archives are "transparent" to this
This commit does... something. It replaces the weird stream flags with a
slightly clearer "origin" value, which is now consequently passed down
and used everywhere. It fixes some deviations from the described policy.
I wanted to force archives to reference only content within them, but
this would probably have been more complicated (or required different
abstractions), and I'm too lazy to figure it out, so archives are now
"transparent" (playlists within archives behave the same outside).
There may be a lot of bugs in this.
This is unfortunately a very noisy commit because:
- every stream open call now needs to pass the origin
- so does every demuxer open call (=> params param. gets mandatory)
- most stream were changed to provide the "origin" value
- the origin value needed to be passed along in a lot of places
- I was too lazy to split the commit
Fixes: #7274
2019-12-20 08:41:42 +00:00
|
|
|
if (stream->info->stream_origin == STREAM_ORIGIN_NET)
|
|
|
|
stream->is_network = true;
|
2009-11-17 16:09:17 +00:00
|
|
|
res = STREAM_OK;
|
|
|
|
|
|
|
|
out:
|
2013-01-24 15:05:52 +00:00
|
|
|
av_dict_free(&dict);
|
2012-12-08 14:41:03 +00:00
|
|
|
talloc_free(temp);
|
2009-11-17 16:09:17 +00:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2014-07-05 14:45:56 +00:00
|
|
|
static struct mp_tags *read_icy(stream_t *s)
|
2013-07-02 10:18:54 +00:00
|
|
|
{
|
|
|
|
AVIOContext *avio = s->priv;
|
|
|
|
|
2014-03-16 09:04:46 +00:00
|
|
|
if (!avio->av_class)
|
2013-07-02 10:18:54 +00:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
uint8_t *icy_header = NULL;
|
|
|
|
if (av_opt_get(avio, "icy_metadata_headers", AV_OPT_SEARCH_CHILDREN,
|
|
|
|
&icy_header) < 0)
|
|
|
|
icy_header = NULL;
|
|
|
|
|
|
|
|
uint8_t *icy_packet;
|
|
|
|
if (av_opt_get(avio, "icy_metadata_packet", AV_OPT_SEARCH_CHILDREN,
|
|
|
|
&icy_packet) < 0)
|
|
|
|
icy_packet = NULL;
|
|
|
|
|
2014-07-05 14:45:56 +00:00
|
|
|
// Send a metadata update only 1. on start, and 2. on a new metadata packet.
|
|
|
|
// To detect new packages, set the icy_metadata_packet to "-" once we've
|
|
|
|
// read it (a bit hacky, but works).
|
2013-07-02 10:18:54 +00:00
|
|
|
|
2014-07-05 14:45:56 +00:00
|
|
|
struct mp_tags *res = NULL;
|
2013-07-02 10:18:54 +00:00
|
|
|
if ((!icy_header || !icy_header[0]) && (!icy_packet || !icy_packet[0]))
|
|
|
|
goto done;
|
|
|
|
|
2014-07-05 14:45:56 +00:00
|
|
|
bstr packet = bstr0(icy_packet);
|
|
|
|
if (bstr_equals0(packet, "-"))
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
res = talloc_zero(NULL, struct mp_tags);
|
|
|
|
|
2013-07-02 10:18:54 +00:00
|
|
|
bstr header = bstr0(icy_header);
|
|
|
|
while (header.len) {
|
|
|
|
bstr line = bstr_strip_linebreaks(bstr_getline(header, &header));
|
|
|
|
bstr name, val;
|
2014-07-05 14:45:56 +00:00
|
|
|
if (bstr_split_tok(line, ": ", &name, &val))
|
|
|
|
mp_tags_set_bstr(res, name, val);
|
2013-07-02 10:18:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bstr head = bstr0("StreamTitle='");
|
|
|
|
int i = bstr_find(packet, head);
|
|
|
|
if (i >= 0) {
|
|
|
|
packet = bstr_cut(packet, i + head.len);
|
2014-09-06 11:46:17 +00:00
|
|
|
int end = bstr_find(packet, bstr0("\';"));
|
2013-07-02 10:18:54 +00:00
|
|
|
packet = bstr_splice(packet, 0, end);
|
2014-07-05 14:45:56 +00:00
|
|
|
mp_tags_set_bstr(res, bstr0("icy-title"), packet);
|
2013-07-02 10:18:54 +00:00
|
|
|
}
|
|
|
|
|
2014-07-05 14:45:56 +00:00
|
|
|
av_opt_set(avio, "icy_metadata_packet", "-", AV_OPT_SEARCH_CHILDREN);
|
2013-07-02 10:18:54 +00:00
|
|
|
|
|
|
|
done:
|
|
|
|
av_free(icy_header);
|
|
|
|
av_free(icy_packet);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2009-11-17 16:09:17 +00:00
|
|
|
const stream_info_t stream_info_ffmpeg = {
|
stream: fix url_options field, make protocols field not fixed length
The way the url_options field was handled was not entirely sane: it's
actually a flexible array member, so it points to garbage for streams
which do not initialize this member (it just points to the data right
after the struct, which is garbage in theory and practice). This was
not actually a problem, since the field is only used if priv_size is
set (due to how this stuff is used). But it doesn't allow setting
priv_size only, which might be useful in some cases.
Also, make the protocols array not a fixed size array. Most stream
implementations have only 1 protocol prefix, but stream_lavf.c has
over 10 (whitelists ffmpeg protocols). The high size of the fixed
size protocol array wastes space, and it is _still_ annoying to
add new prefixes to stream_lavf (have to bump the maximum length),
so make it arbitrary length.
The two changes (plus some more cosmetic changes) arte conflated into
one, because it was annoying going over all the stream implementations.
2013-08-25 20:49:27 +00:00
|
|
|
.name = "ffmpeg",
|
|
|
|
.open = open_f,
|
2014-06-10 21:56:05 +00:00
|
|
|
.protocols = (const char *const[]){
|
2021-01-18 13:43:01 +00:00
|
|
|
"rtmp", "rtsp", "rtsps", "http", "https", "mms", "mmst", "mmsh", "mmshttp",
|
|
|
|
"rtp", "httpproxy", "rtmpe", "rtmps", "rtmpt", "rtmpte", "rtmpts", "srt",
|
2023-06-18 14:47:26 +00:00
|
|
|
"rist", "srtp", "gopher", "gophers", "data", "ipfs", "ipns", "dav",
|
|
|
|
"davs", "webdav", "webdavs",
|
stream: fix url_options field, make protocols field not fixed length
The way the url_options field was handled was not entirely sane: it's
actually a flexible array member, so it points to garbage for streams
which do not initialize this member (it just points to the data right
after the struct, which is garbage in theory and practice). This was
not actually a problem, since the field is only used if priv_size is
set (due to how this stuff is used). But it doesn't allow setting
priv_size only, which might be useful in some cases.
Also, make the protocols array not a fixed size array. Most stream
implementations have only 1 protocol prefix, but stream_lavf.c has
over 10 (whitelists ffmpeg protocols). The high size of the fixed
size protocol array wastes space, and it is _still_ annoying to
add new prefixes to stream_lavf (have to bump the maximum length),
so make it arbitrary length.
The two changes (plus some more cosmetic changes) arte conflated into
one, because it was annoying going over all the stream implementations.
2013-08-25 20:49:27 +00:00
|
|
|
NULL },
|
2014-05-24 12:06:13 +00:00
|
|
|
.can_write = true,
|
stream, demux: redo origin policy thing
mpv has a very weak and very annoying policy that determines whether a
playlist should be used or not. For example, if you play a remote
playlist, you usually don't want it to be able to read local filesystem
entries. (Although for a media player the impact is small I guess.)
It's weak and annoying as in that it does not prevent certain cases
which could be interpreted as bad in some cases, such as allowing
playlists on the local filesystem to reference remote URLs. It probably
barely makes sense, but we just want to exclude some other "definitely
not a good idea" things, all while playlists generally just work, so
whatever.
The policy is:
- from the command line anything is played
- local playlists can reference anything except "unsafe" streams
("unsafe" means special stream inputs like libavfilter graphs)
- remote playlists can reference only remote URLs
- things like "memory://" and archives are "transparent" to this
This commit does... something. It replaces the weird stream flags with a
slightly clearer "origin" value, which is now consequently passed down
and used everywhere. It fixes some deviations from the described policy.
I wanted to force archives to reference only content within them, but
this would probably have been more complicated (or required different
abstractions), and I'm too lazy to figure it out, so archives are now
"transparent" (playlists within archives behave the same outside).
There may be a lot of bugs in this.
This is unfortunately a very noisy commit because:
- every stream open call now needs to pass the origin
- so does every demuxer open call (=> params param. gets mandatory)
- most stream were changed to provide the "origin" value
- the origin value needed to be passed along in a lot of places
- I was too lazy to split the commit
Fixes: #7274
2019-12-20 08:41:42 +00:00
|
|
|
.stream_origin = STREAM_ORIGIN_NET,
|
2009-11-17 16:09:17 +00:00
|
|
|
};
|
2014-08-31 17:49:39 +00:00
|
|
|
|
|
|
|
// Unlike above, this is not marked as safe, and can contain protocols which
|
|
|
|
// may do insecure things. (Such as "ffmpeg", which can access the "lavfi"
|
|
|
|
// pseudo-demuxer, which in turn gives access to filters that can access the
|
|
|
|
// local filesystem.)
|
|
|
|
const stream_info_t stream_info_ffmpeg_unsafe = {
|
|
|
|
.name = "ffmpeg",
|
|
|
|
.open = open_f,
|
|
|
|
.protocols = (const char *const[]){
|
2014-08-31 22:12:47 +00:00
|
|
|
"lavf", "ffmpeg", "udp", "ftp", "tcp", "tls", "unix", "sftp", "md5",
|
2020-03-07 12:55:20 +00:00
|
|
|
"concat", "smb",
|
2014-08-31 17:49:39 +00:00
|
|
|
NULL },
|
stream, demux: redo origin policy thing
mpv has a very weak and very annoying policy that determines whether a
playlist should be used or not. For example, if you play a remote
playlist, you usually don't want it to be able to read local filesystem
entries. (Although for a media player the impact is small I guess.)
It's weak and annoying as in that it does not prevent certain cases
which could be interpreted as bad in some cases, such as allowing
playlists on the local filesystem to reference remote URLs. It probably
barely makes sense, but we just want to exclude some other "definitely
not a good idea" things, all while playlists generally just work, so
whatever.
The policy is:
- from the command line anything is played
- local playlists can reference anything except "unsafe" streams
("unsafe" means special stream inputs like libavfilter graphs)
- remote playlists can reference only remote URLs
- things like "memory://" and archives are "transparent" to this
This commit does... something. It replaces the weird stream flags with a
slightly clearer "origin" value, which is now consequently passed down
and used everywhere. It fixes some deviations from the described policy.
I wanted to force archives to reference only content within them, but
this would probably have been more complicated (or required different
abstractions), and I'm too lazy to figure it out, so archives are now
"transparent" (playlists within archives behave the same outside).
There may be a lot of bugs in this.
This is unfortunately a very noisy commit because:
- every stream open call now needs to pass the origin
- so does every demuxer open call (=> params param. gets mandatory)
- most stream were changed to provide the "origin" value
- the origin value needed to be passed along in a lot of places
- I was too lazy to split the commit
Fixes: #7274
2019-12-20 08:41:42 +00:00
|
|
|
.stream_origin = STREAM_ORIGIN_UNSAFE,
|
2014-08-31 17:49:39 +00:00
|
|
|
.can_write = true,
|
|
|
|
};
|
|
|
|
|