Searched refs:graphctx (Results 1 - 5 of 5) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavfilter/
H A Dinternal.h38 int ff_avfilter_graph_check_validity(AVFilterGraph *graphctx, AVClass *log_ctx);
41 * Configure all the links of graphctx.
45 int ff_avfilter_graph_config_links(AVFilterGraph *graphctx, AVClass *log_ctx);
50 int ff_avfilter_graph_config_formats(AVFilterGraph *graphctx, AVClass *log_ctx);
H A Davfiltergraph.h50 * @param graphctx the filter graph
53 int avfilter_graph_add_filter(AVFilterGraph *graphctx, AVFilterContext *filter);
75 * @param graphctx the filter graph
79 int avfilter_graph_config(AVFilterGraph *graphctx, void *log_ctx);
H A Davfiltergraph.c237 int avfilter_graph_config(AVFilterGraph *graphctx, void *log_ctx) argument
241 if ((ret = ff_avfilter_graph_check_validity(graphctx, log_ctx)))
243 if ((ret = ff_avfilter_graph_config_formats(graphctx, log_ctx)))
245 if ((ret = ff_avfilter_graph_config_links(graphctx, log_ctx)))
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavfilter/
H A Davfilter.h1283 * @param graphctx the filter graph
1290 int avfilter_graph_add_filter(AVFilterGraph *graphctx, AVFilterContext *filter);
1328 * @param graphctx the filter graph
1332 int avfilter_graph_config(AVFilterGraph *graphctx, void *log_ctx);
H A Davfiltergraph.c262 * Configure all the links of graphctx.
1186 int avfilter_graph_config(AVFilterGraph *graphctx, void *log_ctx) argument
1190 if ((ret = graph_check_validity(graphctx, log_ctx)))
1192 if ((ret = graph_insert_fifos(graphctx, log_ctx)) < 0)
1194 if ((ret = graph_config_formats(graphctx, log_ctx)))
1196 if ((ret = graph_config_links(graphctx, log_ctx)))
1198 if ((ret = ff_avfilter_graph_config_pointers(graphctx, log_ctx)))

Completed in 35 milliseconds