3 * Copyright (c) 2016 Michael Niedermayer
5 * This file is part of FFmpeg.
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 #include "libavutil/avstring.h"
23 #include "libavutil/opt.h"
25 #include "avio_internal.h"
26 #include "tee_common.h"
28 typedef struct ChildContext {
29 URLContext *url_context;
32 typedef struct TeeContext {
38 static const AVOption tee_options[] = {
42 static const AVClass tee_class = {
44 .item_name = av_default_item_name,
45 .option = tee_options,
46 .version = LIBAVUTIL_VERSION_INT,
49 static const char *const child_delim = "|";
51 static int tee_write(URLContext *h, const unsigned char *buf, int size)
53 TeeContext *c = h->priv_data;
57 for (i=0; i<c->child_count; i++) {
58 int ret = ffurl_write(c->child[i].url_context, buf, size);
65 static int tee_close(URLContext *h)
67 TeeContext *c = h->priv_data;
71 for (i=0; i<c->child_count; i++) {
72 int ret = ffurl_closep(&c->child[i].url_context);
82 static int tee_open(URLContext *h, const char *filename, int flags)
84 TeeContext *c = h->priv_data;
87 av_strstart(filename, "tee:", &filename);
89 if (flags & AVIO_FLAG_READ)
90 return AVERROR(ENOSYS);
93 char *child_string = av_get_token(&filename, child_delim);
94 char *child_name = NULL;
96 AVDictionary *options = NULL;
98 ret = AVERROR(ENOMEM);
102 tmp = av_realloc_array(c->child, c->child_count + 1, sizeof(*c->child));
104 ret = AVERROR(ENOMEM);
108 memset(&c->child[c->child_count], 0, sizeof(c->child[c->child_count]));
110 ret = ff_tee_parse_slave_options(h, child_string, &options, &child_name);
114 ret = ffurl_open_whitelist(&c->child[c->child_count].url_context, child_name, flags,
115 &h->interrupt_callback, &options,
116 h->protocol_whitelist, h->protocol_blacklist,
119 av_freep(&child_string);
120 av_dict_free(&options);
125 if (strspn(filename, child_delim))
130 for (i=0; i<c->child_count; i++) {
131 h->is_streamed |= c->child[i].url_context->is_streamed;
139 const URLProtocol ff_tee_protocol = {
141 .url_open = tee_open,
142 .url_write = tee_write,
143 .url_close = tee_close,
144 .priv_data_size = sizeof(TeeContext),
145 .priv_data_class = &tee_class,
146 .default_whitelist = "crypto,file,http,https,httpproxy,rtmp,tcp,tls"