FFmpeg: libavformat/teeproto.c Source File
Go to the documentation of this file. 1 /*
2 * Tee output protocol
3 * Copyright (c) 2016 Michael Niedermayer
4 *
5 * This file is part of FFmpeg.
6 *
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.
11 *
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.
16 *
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
20 */
21
27
31
37
40 };
41
47 };
48
50
52 {
56
57 for (
i=0;
i<
c->child_count;
i++) {
61 }
62 return main_ret;
63 }
64
66 {
69 int main_ret = 0;
70
71 for (
i=0;
i<
c->child_count;
i++) {
75 }
76
79 return main_ret;
80 }
81
83 {
86
88
91
92 while (*filename) {
94 char *child_name =
NULL;
97 if (!child_string) {
100 }
101
105 goto loop_fail;
106 }
108 memset(&
c->child[
c->child_count], 0,
sizeof(
c->child[
c->child_count]));
109
112 goto loop_fail;
113
116 h->protocol_whitelist,
h->protocol_blacklist,
118 loop_fail:
124
126 filename++;
127 }
128
130 for (
i=0;
i<
c->child_count;
i++) {
131 h->is_streamed |=
c->child[
i].url_context->is_streamed;
132 }
133
134 return 0;
138 }
146 .default_whitelist = "crypto,file,http,https,httpproxy,rtmp,tcp,tls"
147 };
Filter the word "frame" indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
char * av_get_token(const char **buf, const char *term)
Unescape the given string until a non escaped terminating char, and return the token corresponding to...
static int tee_write(URLContext *h, const unsigned char *buf, int size)
const URLProtocol ff_tee_protocol
int ff_tee_parse_slave_options(void *log, char *slave, AVDictionary **options, char **filename)
static int tee_close(URLContext *h)
int ffurl_open_whitelist(URLContext **puc, const char *filename, int flags, const AVIOInterruptCB *int_cb, AVDictionary **options, const char *whitelist, const char *blacklist, URLContext *parent)
Create an URLContext for accessing to the resource indicated by url, and open it.
static const AVOption tee_options[]
void * av_realloc_array(void *ptr, size_t nmemb, size_t size)
#define LIBAVUTIL_VERSION_INT
Describe the class of an AVClass context structure.
const char * av_default_item_name(void *ptr)
Return the context name.
Undefined Behavior In the C some operations are like signed integer dereferencing freed accessing outside allocated Undefined Behavior must not occur in a C it is not safe even if the output of undefined operations is unused The unsafety may seem nit picking but Optimizing compilers have in fact optimized code on the assumption that no undefined Behavior occurs Optimizing code based on wrong assumptions can and has in some cases lead to effects beyond the output of computations The signed integer overflow problem in speed critical code Code which is highly optimized and works with signed integers sometimes has the problem that often the output of the computation does not c
const OptionDef options[]
void av_dict_free(AVDictionary **pm)
Free all the memory allocated for an AVDictionary struct and all keys and values.
int av_strstart(const char *str, const char *pfx, const char **ptr)
Return non-zero if pfx is a prefix of str.
static const char *const child_delim
#define i(width, name, range_min, range_max)
static int tee_open(URLContext *h, const char *filename, int flags)
int ffurl_closep(URLContext **hh)
Close the resource accessed by the URLContext h, and free the memory used by it.
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
int ffurl_write(URLContext *h, const unsigned char *buf, int size)
Write size bytes from buf to the resource accessed by h.
#define AVIO_FLAG_READ
read-only
#define flags(name, subs,...)
static const AVClass tee_class
Generated on Wed Aug 24 2022 21:42:20 for FFmpeg by
doxygen
1.8.17