2010-01-30 22:26:47 +00:00
|
|
|
/*
|
|
|
|
* This file is part of MPlayer.
|
|
|
|
*
|
|
|
|
* MPlayer is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* MPlayer is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with MPlayer; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
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
|
|
|
|
2012-12-10 00:28:20 +00:00
|
|
|
#include "config.h"
|
2013-08-06 20:41:30 +00:00
|
|
|
#include "mpvcore/options.h"
|
|
|
|
#include "mpvcore/mp_msg.h"
|
2009-11-17 16:09:17 +00:00
|
|
|
#include "stream.h"
|
2013-08-06 20:41:30 +00:00
|
|
|
#include "mpvcore/m_option.h"
|
2009-11-17 16:09:17 +00:00
|
|
|
|
2013-01-24 15:05:52 +00:00
|
|
|
#include "cookies.h"
|
|
|
|
|
2013-08-06 20:41:30 +00:00
|
|
|
#include "mpvcore/bstr.h"
|
|
|
|
#include "mpvcore/mp_talloc.h"
|
2013-07-02 10:18:54 +00:00
|
|
|
|
2013-08-02 15:02:34 +00:00
|
|
|
static int open_f(stream_t *stream, int mode);
|
2013-07-02 10:18:54 +00:00
|
|
|
static char **read_icy(stream_t *stream);
|
2013-01-24 17:45:24 +00:00
|
|
|
|
2009-11-17 16:09:17 +00:00
|
|
|
static int fill_buffer(stream_t *s, char *buffer, int max_len)
|
|
|
|
{
|
2011-12-24 23:20:12 +00:00
|
|
|
AVIOContext *avio = s->priv;
|
2013-01-24 17:45:24 +00:00
|
|
|
if (!avio)
|
|
|
|
return -1;
|
2011-12-24 23:20:12 +00:00
|
|
|
int r = avio_read(avio, buffer, max_len);
|
2009-11-17 16:09:17 +00:00
|
|
|
return (r <= 0) ? -1 : r;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int write_buffer(stream_t *s, char *buffer, int len)
|
|
|
|
{
|
2011-12-24 23:20:12 +00:00
|
|
|
AVIOContext *avio = s->priv;
|
2013-01-24 17:45:24 +00:00
|
|
|
if (!avio)
|
|
|
|
return -1;
|
2011-12-24 23:20:12 +00:00
|
|
|
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-01-24 17:45:24 +00:00
|
|
|
if (!avio)
|
|
|
|
return -1;
|
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;
|
|
|
|
}
|
|
|
|
|
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;
|
2013-01-24 17:45:24 +00:00
|
|
|
if (!avio && cmd != STREAM_CTRL_RECONNECT)
|
|
|
|
return -1;
|
2010-04-23 20:50:34 +00:00
|
|
|
int64_t size, ts;
|
|
|
|
double pts;
|
2009-11-17 16:09:17 +00:00
|
|
|
switch(cmd) {
|
|
|
|
case STREAM_CTRL_GET_SIZE:
|
2011-12-24 23:20:12 +00:00
|
|
|
size = avio_size(avio);
|
2009-11-17 16:09:17 +00:00
|
|
|
if(size >= 0) {
|
2012-08-18 19:51:58 +00:00
|
|
|
*(uint64_t *)arg = size;
|
2009-11-17 16:09:17 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2010-04-23 20:50:34 +00:00
|
|
|
break;
|
|
|
|
case STREAM_CTRL_SEEK_TO_TIME:
|
|
|
|
pts = *(double *)arg;
|
|
|
|
ts = pts * AV_TIME_BASE;
|
2011-12-24 23:20:12 +00:00
|
|
|
ts = avio_seek_time(avio, -1, ts, 0);
|
2010-04-23 20:50:34 +00:00
|
|
|
if (ts >= 0)
|
|
|
|
return 1;
|
|
|
|
break;
|
2013-07-02 10:18:54 +00:00
|
|
|
case STREAM_CTRL_GET_METADATA: {
|
|
|
|
*(char ***)arg = read_icy(s);
|
|
|
|
if (!*(char ***)arg)
|
|
|
|
break;
|
|
|
|
return 1;
|
|
|
|
}
|
2013-01-24 17:45:24 +00:00
|
|
|
case STREAM_CTRL_RECONNECT: {
|
|
|
|
if (avio && avio->write_flag)
|
|
|
|
break; // don't bother with this
|
|
|
|
// avio doesn't seem to support this - emulate it by reopening
|
|
|
|
close_f(s);
|
|
|
|
s->priv = NULL;
|
2013-08-02 15:02:34 +00:00
|
|
|
return open_f(s, STREAM_READ);
|
2013-01-24 17:45:24 +00:00
|
|
|
}
|
2009-11-17 16:09:17 +00:00
|
|
|
}
|
|
|
|
return STREAM_UNSUPPORTED;
|
|
|
|
}
|
|
|
|
|
2013-07-02 10:18:54 +00:00
|
|
|
static bool mp_avio_has_opts(AVIOContext *avio)
|
|
|
|
{
|
|
|
|
#if LIBAVFORMAT_VERSION_INT >= AV_VERSION_INT(54, 0, 0)
|
|
|
|
return avio->av_class != NULL;
|
|
|
|
#else
|
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2012-09-07 16:39:46 +00:00
|
|
|
static const char * const prefix[] = { "lavf://", "ffmpeg://" };
|
2009-11-17 16:09:17 +00:00
|
|
|
|
2013-08-02 15:02:34 +00:00
|
|
|
static int open_f(stream_t *stream, int mode)
|
2009-11-17 16:09:17 +00:00
|
|
|
{
|
|
|
|
int flags = 0;
|
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
|
|
|
|
|
|
|
if (mode == STREAM_READ)
|
2012-01-28 11:41:36 +00:00
|
|
|
flags = AVIO_FLAG_READ;
|
2009-11-17 16:09:17 +00:00
|
|
|
else if (mode == STREAM_WRITE)
|
2012-01-28 11:41:36 +00:00
|
|
|
flags = AVIO_FLAG_WRITE;
|
2009-11-17 16:09:17 +00:00
|
|
|
else {
|
|
|
|
mp_msg(MSGT_OPEN, MSGL_ERR, "[ffmpeg] Unknown open mode %d\n", mode);
|
|
|
|
res = STREAM_UNSUPPORTED;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2012-12-08 14:41:03 +00:00
|
|
|
const char *filename = stream->url;
|
|
|
|
if (!filename) {
|
2009-11-17 16:09:17 +00:00
|
|
|
mp_msg(MSGT_OPEN, MSGL_ERR, "[ffmpeg] No URL\n");
|
|
|
|
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]);
|
|
|
|
if (!strncmp(filename, "rtsp:", 5)) {
|
|
|
|
/* This is handled as a special demuxer, without a separate
|
|
|
|
* stream layer. demux_lavf will do all the real work.
|
|
|
|
*/
|
|
|
|
stream->seek = NULL;
|
2013-07-11 19:10:42 +00:00
|
|
|
stream->demuxer = "lavf";
|
2012-09-07 16:39:46 +00:00
|
|
|
stream->lavf_type = "rtsp";
|
|
|
|
return STREAM_OK;
|
|
|
|
}
|
2009-11-17 16:09:17 +00:00
|
|
|
mp_msg(MSGT_OPEN, MSGL_V, "[ffmpeg] Opening %s\n", filename);
|
|
|
|
|
2012-12-08 14:41:03 +00:00
|
|
|
// Replace "mms://" with "mmsh://", so that most mms:// URLs just work.
|
|
|
|
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));
|
|
|
|
}
|
|
|
|
|
2013-01-24 15:05:52 +00:00
|
|
|
// HTTP specific options (other protocols ignore them)
|
|
|
|
if (network_useragent)
|
|
|
|
av_dict_set(&dict, "user-agent", network_useragent, 0);
|
|
|
|
if (network_cookies_enabled)
|
|
|
|
av_dict_set(&dict, "cookies", talloc_steal(temp, cookies_lavf()), 0);
|
2013-09-27 16:07:53 +00:00
|
|
|
av_dict_set(&dict, "tls_verify", network_tls_verify ? "1" : "0", 0);
|
|
|
|
if (network_tls_ca_file)
|
|
|
|
av_dict_set(&dict, "ca_file", network_tls_ca_file, 0);
|
2013-01-24 15:05:52 +00:00
|
|
|
char *cust_headers = talloc_strdup(temp, "");
|
|
|
|
if (network_referrer) {
|
|
|
|
cust_headers = talloc_asprintf_append(cust_headers, "Referer: %s\r\n",
|
|
|
|
network_referrer);
|
|
|
|
}
|
|
|
|
if (network_http_header_fields) {
|
|
|
|
for (int n = 0; network_http_header_fields[n]; n++) {
|
|
|
|
cust_headers = talloc_asprintf_append(cust_headers, "%s\r\n",
|
|
|
|
network_http_header_fields[n]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (strlen(cust_headers))
|
|
|
|
av_dict_set(&dict, "headers", cust_headers, 0);
|
2013-07-02 10:18:54 +00:00
|
|
|
av_dict_set(&dict, "icy", "1", 0);
|
2013-01-24 15:05:52 +00:00
|
|
|
|
|
|
|
int err = avio_open2(&avio, filename, flags, NULL, &dict);
|
2012-12-27 20:19:33 +00:00
|
|
|
if (err < 0) {
|
|
|
|
if (err == AVERROR_PROTOCOL_NOT_FOUND)
|
|
|
|
mp_msg(MSGT_OPEN, MSGL_ERR, "[ffmpeg] Protocol not found. Make sure"
|
|
|
|
" 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
|
|
|
|
2013-09-22 00:20:18 +00:00
|
|
|
AVDictionaryEntry *t = NULL;
|
|
|
|
while ((t = av_dict_get(dict, "", t, AV_DICT_IGNORE_SUFFIX))) {
|
|
|
|
mp_msg(MSGT_OPEN, MSGL_V, "[ffmpeg] Could not set stream option %s=%s\n",
|
|
|
|
t->key, t->value);
|
|
|
|
}
|
|
|
|
|
2013-07-02 10:18:54 +00:00
|
|
|
if (mp_avio_has_opts(avio)) {
|
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
|
|
|
}
|
|
|
|
|
2013-11-04 18:57:39 +00:00
|
|
|
if (strncmp(filename, "rtmp", 4) == 0) {
|
|
|
|
stream->demuxer = "lavf";
|
|
|
|
stream->lavf_type = "flv";
|
|
|
|
}
|
2011-12-24 23:20:12 +00:00
|
|
|
stream->priv = avio;
|
2012-09-07 16:39:46 +00:00
|
|
|
int64_t size = avio_size(avio);
|
2009-11-17 16:09:17 +00:00
|
|
|
if (size >= 0)
|
|
|
|
stream->end_pos = size;
|
2009-11-17 18:30:33 +00:00
|
|
|
stream->seek = seek;
|
2013-07-07 18:49:15 +00:00
|
|
|
if (!avio->seekable)
|
2009-11-17 18:30:33 +00:00
|
|
|
stream->seek = NULL;
|
2012-09-07 16:39:46 +00:00
|
|
|
stream->fill_buffer = fill_buffer;
|
|
|
|
stream->write_buffer = write_buffer;
|
|
|
|
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;
|
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;
|
|
|
|
}
|
|
|
|
|
2013-07-02 10:18:54 +00:00
|
|
|
static void append_meta(char ***info, int *num_info, bstr name, bstr val)
|
|
|
|
{
|
|
|
|
if (name.len && val.len) {
|
|
|
|
char *cname = talloc_asprintf(*info, "%.*s", BSTR_P(name));
|
|
|
|
char *cval = talloc_asprintf(*info, "%.*s", BSTR_P(val));
|
|
|
|
MP_TARRAY_APPEND(NULL, *info, *num_info, cname);
|
|
|
|
MP_TARRAY_APPEND(NULL, *info, *num_info, cval);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static char **read_icy(stream_t *s)
|
|
|
|
{
|
|
|
|
AVIOContext *avio = s->priv;
|
|
|
|
|
|
|
|
if (!mp_avio_has_opts(avio))
|
|
|
|
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;
|
|
|
|
|
|
|
|
char **res = NULL;
|
|
|
|
|
|
|
|
if ((!icy_header || !icy_header[0]) && (!icy_packet || !icy_packet[0]))
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
res = talloc_new(NULL);
|
|
|
|
int num_res = 0;
|
|
|
|
bstr header = bstr0(icy_header);
|
|
|
|
while (header.len) {
|
|
|
|
bstr line = bstr_strip_linebreaks(bstr_getline(header, &header));
|
|
|
|
bstr name, val;
|
|
|
|
if (bstr_split_tok(line, ": ", &name, &val)) {
|
|
|
|
bstr_eatstart0(&name, "icy-");
|
|
|
|
append_meta(&res, &num_res, name, val);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bstr packet = bstr0(icy_packet);
|
|
|
|
bstr head = bstr0("StreamTitle='");
|
|
|
|
int i = bstr_find(packet, head);
|
|
|
|
if (i >= 0) {
|
|
|
|
packet = bstr_cut(packet, i + head.len);
|
|
|
|
int end = bstrchr(packet, '\'');
|
|
|
|
packet = bstr_splice(packet, 0, end);
|
|
|
|
append_meta(&res, &num_res, bstr0("title"), packet);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (res) {
|
|
|
|
MP_TARRAY_APPEND(NULL, res, num_res, NULL);
|
|
|
|
MP_TARRAY_APPEND(NULL, res, num_res, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
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,
|
|
|
|
.protocols = (const char*[]){
|
|
|
|
"lavf", "ffmpeg", "rtmp", "rtsp", "http", "https", "mms", "mmst", "mmsh",
|
2013-11-04 18:57:13 +00:00
|
|
|
"mmshttp", "udp", "ftp", "rtp", "httpproxy", "hls", "rtmpe", "rtmps",
|
|
|
|
"rtmpt", "rtmpte", "rtmpts", "srtp", "tcp", "udp", "tls", "unix", "sftp",
|
|
|
|
"md5",
|
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 },
|
2009-11-17 16:09:17 +00:00
|
|
|
};
|