30 #define WHITESPACES " \n\t\r"
44 "Cannot create the link %s:%d -> %s:%d\n",
70 "Bad (empty?) label found in the following: \"%s\".\n", start);
74 if (*(*buf)++ !=
']') {
76 "Mismatched '[' found in the following: \"%s\".\n", start);
97 const char *
name,
const char *
args,
void *log_ctx)
101 const char *inst_name =
NULL, *filt_name =
NULL;
102 char *tmp_args =
NULL;
107 for (k = 0; name2[k]; k++) {
108 if (name2[k] ==
'@' && name[k+1]) {
117 snprintf(name2,
sizeof(name2),
"Parsed_%s_%d", name, index);
126 "No such filter: '%s'\n", filt_name);
133 "Error creating filter '%s'\n", filt_name);
137 if (!strcmp(filt_name,
"scale") && (!args || !strstr(args,
"flags")) &&
152 "Error initializing filter '%s'", filt_name);
181 int index,
void *log_ctx)
192 ret =
create_filter(filt_ctx, graph, index, name, opts, log_ctx);
217 while (*links && (!(*links)->name || strcmp((*links)->name, label)))
218 links = &((*links)->next);
232 element->
next = *inouts;
238 while (*inouts && (*inouts)->
next)
239 inouts = &((*inouts)->next);
244 (*inouts)->
next = *element;
254 for (pad = 0; pad < filt_ctx->
nb_inputs; pad++) {
258 *curr_inputs = (*curr_inputs)->
next;
278 "Too many inputs specified for the \"%s\" filter.\n",
302 while (**buf ==
'[') {
331 *curr_inputs = parsed_inputs;
342 while (**buf ==
'[') {
353 "No output pad can be associated to link label '%s'.\n", name);
357 *curr_inputs = (*curr_inputs)->
next;
386 char *p = strchr(*buf,
';');
388 if (strncmp(*buf,
"sws_flags=", 10))
411 int index = 0, ret = 0;
425 if ((ret =
parse_inputs(&filters, &curr_inputs, &open_outputs, graph)) < 0)
427 if ((ret =
parse_filter(&filter, &filters, graph, index, graph)) < 0)
434 if ((ret =
parse_outputs(&filters, &curr_inputs, &open_inputs, &open_outputs,
441 if (chr ==
';' && curr_inputs)
444 }
while (chr ==
',' || chr ==
';');
448 "Unable to parse graph description substring: \"%s\"\n",
457 *inputs = open_inputs;
458 *outputs = open_outputs;
486 if (inputs && !inputs->
name)
488 for (cur = inputs; cur; cur = cur->
next) {
491 "Not enough inputs specified for the \"%s\" filter.\n",
506 if (outputs && !outputs->name)
508 for (cur = outputs; cur; cur = cur->
next) {
511 "Invalid filterchain containing an unlabelled output pad: \"%s\"\n",
542 int index = 0, ret = 0;
554 const char *filterchain =
filters;
557 if ((ret =
parse_inputs(&filters, &curr_inputs, &open_outputs, log_ctx)) < 0)
560 if ((ret =
parse_filter(&filter, &filters, graph, index, log_ctx)) < 0)
563 if (filter->
nb_inputs == 1 && !curr_inputs && !index) {
565 const char *
tmp =
"[in]";
566 if ((ret =
parse_inputs(&tmp, &curr_inputs, &open_outputs, log_ctx)) < 0)
573 if ((ret =
parse_outputs(&filters, &curr_inputs, &open_inputs, &open_outputs,
580 if (chr ==
';' && curr_inputs) {
582 "Invalid filterchain containing an unlabelled output pad: \"%s\"\n",
588 }
while (chr ==
',' || chr ==
';');
592 "Unable to parse graph description substring: \"%s\"\n",
600 const char *
tmp =
"[out]";
601 if ((ret =
parse_outputs(&tmp, &curr_inputs, &open_inputs, &open_outputs,
608 if (open_inputs_ptr) *open_inputs_ptr = open_inputs;
610 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 filter(int16_t *output, ptrdiff_t out_stride, int16_t *low, ptrdiff_t low_stride, int16_t *high, ptrdiff_t high_stride, int len, int clip)
static av_cold int end(AVCodecContext *avctx)
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)
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
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,...)
unsigned nb_inputs
number of input pads
static const AVFilterPad inputs[]
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.
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 const int8_t filt[NUMTAPS]
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 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 const struct PPFilter filters[]
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.
const AVFilter * filter
the AVFilter of which this is an instance