30 #define WHITESPACES " \n\t\r" 44 "Cannot create the link %s:%d -> %s:%d\n",
60 const char *start = *buf;
70 "Bad (empty?) label found in the following: \"%s\".\n", start);
76 "Mismatched '[' found in the following: \"%s\".\n", start);
99 const char *
name,
const char *args,
void *log_ctx)
103 const char *inst_name =
NULL, *filt_name =
NULL;
104 char *tmp_args =
NULL;
109 for (k = 0; name2[k]; k++) {
110 if (name2[k] ==
'@' && name[k+1]) {
119 snprintf(name2,
sizeof(name2),
"Parsed_%s_%d", name, index);
128 "No such filter: '%s'\n", filt_name);
135 "Error creating filter '%s'\n", filt_name);
139 if (!strcmp(filt_name,
"scale") && (!args || !strstr(args,
"flags")) &&
154 "Error initializing filter '%s'", filt_name);
183 int index,
void *log_ctx)
201 ret =
create_filter(filt_ctx, graph, index, name, opts, log_ctx);
226 while (*links && (!(*links)->name || strcmp((*links)->name, label)))
227 links = &((*links)->next);
241 element->
next = *inouts;
247 while (*inouts && (*inouts)->
next)
248 inouts = &((*inouts)->next);
253 (*inouts)->
next = *element;
263 for (pad = 0; pad < filt_ctx->
nb_inputs; pad++) {
267 *curr_inputs = (*curr_inputs)->
next;
287 "Too many inputs specified for the \"%s\" filter.\n",
311 while (**buf ==
'[') {
343 *curr_inputs = parsed_inputs;
354 while (**buf ==
'[') {
365 "No output pad can be associated to link label '%s'.\n", name);
369 *curr_inputs = (*curr_inputs)->
next;
397 char *p = strchr(*buf,
';');
399 if (strncmp(*buf,
"sws_flags=", 10))
436 if ((
ret =
parse_inputs(&filters, &curr_inputs, &open_outputs, graph)) < 0)
445 if ((
ret =
parse_outputs(&filters, &curr_inputs, &open_inputs, &open_outputs,
452 if (chr ==
';' && curr_inputs)
455 }
while (chr ==
',' || chr ==
';');
459 "Unable to parse graph description substring: \"%s\"\n",
468 *inputs = open_inputs;
469 *outputs = open_outputs;
497 if (inputs && !inputs->
name)
499 for (cur = inputs; cur; cur = cur->
next) {
502 "Not enough inputs specified for the \"%s\" filter.\n",
517 if (outputs && !outputs->name)
519 for (cur = outputs; cur; cur = cur->
next) {
522 "Invalid filterchain containing an unlabelled output pad: \"%s\"\n",
565 const char *filterchain =
filters;
568 if ((
ret =
parse_inputs(&filters, &curr_inputs, &open_outputs, log_ctx)) < 0)
571 if ((
ret =
parse_filter(&filter, &filters, graph, index, log_ctx)) < 0)
574 if (filter->
nb_inputs == 1 && !curr_inputs && !index) {
576 const char *
tmp =
"[in]";
577 if ((
ret =
parse_inputs(&tmp, &curr_inputs, &open_outputs, log_ctx)) < 0)
584 if ((
ret =
parse_outputs(&filters, &curr_inputs, &open_inputs, &open_outputs,
591 if (chr ==
';' && curr_inputs) {
593 "Invalid filterchain containing an unlabelled output pad: \"%s\"\n",
599 }
while (chr ==
',' || chr ==
';');
603 "Unable to parse graph description substring: \"%s\"\n",
611 const char *
tmp =
"[out]";
619 if (open_inputs_ptr) *open_inputs_ptr = open_inputs;
621 if (open_outputs_ptr) *open_outputs_ptr = open_outputs;
AVFilterContext ** filters
void avfilter_free(AVFilterContext *filter)
Free a filter context.
Main libavfilter public API header.
Memory handling functions.
void avfilter_inout_free(AVFilterInOut **inout)
Free the supplied list of AVFilterInOut and set *inout to NULL.
struct AVFilterInOut * next
next input/input in the list, NULL if this is the last
void * av_mallocz(size_t size)
Allocate a memory block with alignment suitable for all memory accesses (including vectors if availab...
char * scale_sws_opts
sws options to use for the auto-inserted scale filters
int avfilter_link(AVFilterContext *src, unsigned srcpad, AVFilterContext *dst, unsigned dstpad)
Link two filters together.
static void insert_inout(AVFilterInOut **inouts, AVFilterInOut *element)
int avfilter_graph_parse2(AVFilterGraph *graph, const char *filters, AVFilterInOut **inputs, AVFilterInOut **outputs)
Add a graph described by a string to a graph.
static int parse_inputs(const char **buf, AVFilterInOut **curr_inputs, AVFilterInOut **open_outputs, void *log_ctx)
ist filters[ist->nb_filters-1]
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
filter_frame For filters that do not use the this method is called when a frame is pushed to the filter s input It can be called at any time except in a reentrant way If the input frame is enough to produce then the filter should push the output frames on the output link immediately As an exception to the previous rule if the input frame is enough to produce several output frames then the filter needs output only at least one per link The additional frames can be left buffered in the filter
static AVFilterInOut * extract_inout(const char *label, AVFilterInOut **links)
unsigned nb_outputs
number of output pads
size_t av_strlcpy(char *dst, const char *src, size_t size)
Copy the string src to dst, but no more than size - 1 bytes, and null-terminate dst.
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 create_filter(AVFilterContext **filt_ctx, AVFilterGraph *ctx, int index, const char *name, const char *args, void *log_ctx)
Create an instance of a filter, initialize and insert it in the filtergraph in *ctx.
const AVFilter * avfilter_get_by_name(const char *name)
Get a filter definition matching the given name.
char * av_asprintf(const char *fmt,...)
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several inputs
unsigned nb_inputs
number of input pads
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 links
AVFilterContext * filter_ctx
filter context associated to this input/output
static const AVFilterPad outputs[]
int avfilter_init_str(AVFilterContext *filter, const char *args)
Initialize a filter with the supplied parameters.
A linked-list of the inputs/outputs of the filter chain.
char * av_strdup(const char *s)
Duplicate a string.
static int parse_sws_flags(const char **buf, AVFilterGraph *graph)
static void append_inout(AVFilterInOut **inouts, AVFilterInOut **element)
int avfilter_graph_parse(AVFilterGraph *graph, const char *filters, AVFilterInOut *open_inputs, AVFilterInOut *open_outputs, void *log_ctx)
Add a graph described by a string to a graph.
int pad_idx
index of the filt_ctx pad to use for linking
const char * name
Filter name.
and forward the test the status of outputs and forward it to the corresponding return FFERROR_NOT_READY If the filters stores internally one or a few frame for some input
static int parse_filter(AVFilterContext **filt_ctx, const char **buf, AVFilterGraph *graph, int index, void *log_ctx)
Parse a string of the form FILTER_NAME[=PARAMS], and create a corresponding filter instance which is ...
char * name
unique name for this input/output in the list
static int parse_outputs(const char **buf, AVFilterInOut **curr_inputs, AVFilterInOut **open_inputs, AVFilterInOut **open_outputs, void *log_ctx)
AVFilterInOut * avfilter_inout_alloc(void)
Allocate a single AVFilterInOut entry.
static const int8_t filt[NUMTAPS *2]
static int link_filter(AVFilterContext *src, int srcpad, AVFilterContext *dst, int dstpad, void *log_ctx)
Link two filters together.
AVFilterContext * avfilter_graph_alloc_filter(AVFilterGraph *graph, const AVFilter *filter, const char *name)
Create a new filter instance in a filter graph.
static char * parse_link_name(const char **buf, void *log_ctx)
Parse the name of a link, which has the format "[linkname]".
static int link_filter_inouts(AVFilterContext *filt_ctx, AVFilterInOut **curr_inputs, AVFilterInOut **open_inputs, void *log_ctx)
int avfilter_graph_parse_ptr(AVFilterGraph *graph, const char *filters, AVFilterInOut **open_inputs_ptr, AVFilterInOut **open_outputs_ptr, void *log_ctx)
Add a graph described by a string to a graph.
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
const AVFilter * filter
the AVFilter of which this is an instance