Lines Matching refs:graph
51 AVFilterGraph *graph;
92 avfilter_graph_free(&lavfi->graph);
142 "Only one of the graph or graph_file options must be specified\n");
170 /* parse the graph, create a stream for each open output */
171 if (!(lavfi->graph = avfilter_graph_alloc()))
174 if ((ret = avfilter_graph_parse_ptr(lavfi->graph, lavfi->graph_str,
247 /* create a sink for each output and connect them to the graph */
266 NULL, lavfi->graph);
279 NULL, lavfi->graph);
300 /* configure the graph */
301 if ((ret = avfilter_graph_config(lavfi->graph, avctx)) < 0)
305 char *dump = avfilter_graph_dump(lavfi->graph, lavfi->dump_graph);
397 /* iterate through all the graph sinks. Select the sink with the
484 { "graph", "set libavfilter graph", OFFSET(graph_str), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC },
485 { "graph_file","set libavfilter graph filename", OFFSET(graph_filename), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC},
486 { "dumpgraph", "dump graph to stderr", OFFSET(dump_graph), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC },