Lines Matching defs:graph

288        video frames could be accumulating in the filter graph while a filter
525 avfilter_graph_free(&fg->graph);
770 !enc || !ost->filter || !ost->filter->graph->graph)
1326 if (!ost->filter || !ost->filter->graph->graph)
1373 "Audio filter graph output is not normalized and encoder does not support parameter changes\n");
1750 FilterGraph *fg = ost->filter->graph;
1756 if (ost->filter && !fg->graph) {
1772 av_log(NULL, AV_LOG_ERROR, "Error configuring filter graph\n");
1939 FilterGraph *fg = ifilter->graph;
1961 if (!ifilter->ist->reinit_filters && fg->graph)
1980 /* (re)init the graph if possible, otherwise buffer the frame and return */
1981 if (need_reinit || !fg->graph) {
3008 else if (dec_ctx && ost->filter->graph->is_meta)
3039 else if (dec_ctx && ost->filter->graph->is_meta)
3370 if (!filtergraph_is_simple(ist->filters[j]->graph)) {
3375 av_log(NULL, AV_LOG_INFO, " (graph %d)", ist->filters[j]->graph->index);
3391 if (ost->filter && !filtergraph_is_simple(ost->filter->graph)) {
3392 /* output from a complex graph */
3395 av_log(NULL, AV_LOG_INFO, " (graph %d)", ost->filter->graph->index);
3574 if (fg->graph) {
3576 ret = avfilter_graph_send_command(fg->graph, target, command, arg, buf, sizeof(buf),
3583 ret = avfilter_graph_queue_command(fg->graph, target, command, arg, 0, time);
4185 * Perform a step of transcoding for the specified filter graph.
4187 * @param[in] graph filter graph to consider
4191 static int transcode_from_filter(FilterGraph *graph, InputStream **best_ist)
4199 ret = avfilter_graph_request_oldest(graph->graph);
4205 for (i = 0; i < graph->nb_outputs; i++)
4206 close_output_stream(graph->outputs[i]->ost);
4212 for (i = 0; i < graph->nb_inputs; i++) {
4213 ifilter = graph->inputs[i];
4226 for (i = 0; i < graph->nb_outputs; i++)
4227 graph->outputs[i]->ost->unavailable = 1;
4254 if (ost->filter && !ost->filter->graph->graph) {
4255 if (ifilter_has_all_input_formats(ost->filter->graph)) {
4256 ret = configure_filtergraph(ost->filter->graph);
4264 if (ost->filter && ost->filter->graph->graph) {
4289 if ((ret = transcode_from_filter(ost->filter->graph, &ist)) < 0)
4295 for (i = 0; i < ost->filter->graph->nb_inputs; i++) {
4296 InputFilter *ifilter = ost->filter->graph->inputs[i];