Lines Matching defs:inputs
1802 AVFilterInOut *outputs = NULL, *inputs = NULL;
1806 inputs = avfilter_inout_alloc();
1807 if (!outputs || !inputs) {
1817 inputs->name = av_strdup("out");
1818 inputs->filter_ctx = sink_ctx;
1819 inputs->pad_idx = 0;
1820 inputs->next = NULL;
1822 if ((ret = avfilter_graph_parse_ptr(graph, filtergraph, &inputs, &outputs, NULL)) < 0)
1829 /* Reorder the filters to ensure that inputs of the custom filters are merged first */
1836 avfilter_inout_free(&inputs);