Searched refs:filt_ctx (Results 1 - 8 of 8) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavfilter/
H A Dgraphparser.c86 * @param filt_ctx put here a filter context in case of successful creation and configuration, NULL otherwise.
94 static int create_filter(AVFilterContext **filt_ctx, AVFilterGraph *ctx, int index, argument
112 ret = avfilter_open(filt_ctx, filt, inst_name);
113 if (!*filt_ctx) {
119 if ((ret = avfilter_graph_add_filter(ctx, *filt_ctx)) < 0) {
120 avfilter_free(*filt_ctx);
131 if ((ret = avfilter_init_filter(*filt_ctx, args, NULL)) < 0) {
145 * @param filt_ctx Pointer that is set to the created and configured filter
147 * @param filt_ctx put here a pointer to the created filter context on
156 static int parse_filter(AVFilterContext **filt_ctx, cons argument
205 link_filter_inouts(AVFilterContext *filt_ctx, AVFilterInOut **curr_inputs, AVFilterInOut **open_inputs, void *log_ctx) argument
[all...]
H A Davfiltergraph.h60 * In case of success put in *filt_ctx the pointer to the created
61 * filter instance, otherwise set *filt_ctx to NULL.
68 int avfilter_graph_create_filter(AVFilterContext **filt_ctx, AVFilter *filt,
103 /** index of the filt_ctx pad to use for linking */
H A Davfiltergraph.c60 int avfilter_graph_create_filter(AVFilterContext **filt_ctx, AVFilter *filt, argument
66 if ((ret = avfilter_open(filt_ctx, filt, name)) < 0)
68 if ((ret = avfilter_init_filter(*filt_ctx, args, opaque)) < 0)
70 if ((ret = avfilter_graph_add_filter(graph_ctx, *filt_ctx)) < 0)
75 if (*filt_ctx)
76 avfilter_free(*filt_ctx);
77 *filt_ctx = NULL;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavfilter/
H A Dgraphparser.c86 * @param filt_ctx put here a filter context in case of successful creation and configuration, NULL otherwise.
94 static int create_filter(AVFilterContext **filt_ctx, AVFilterGraph *ctx, int index, argument
112 *filt_ctx = avfilter_graph_alloc_filter(ctx, filt, inst_name);
113 if (!*filt_ctx) {
128 ret = avfilter_init_str(*filt_ctx, args);
135 avfilter_free(*filt_ctx);
136 *filt_ctx = NULL;
148 * @param filt_ctx Pointer that is set to the created and configured filter
150 * @param filt_ctx put here a pointer to the created filter context on
159 static int parse_filter(AVFilterContext **filt_ctx, cons argument
227 link_filter_inouts(AVFilterContext *filt_ctx, AVFilterInOut **curr_inputs, AVFilterInOut **open_inputs, void *log_ctx) argument
[all...]
H A Davfiltergraph.c150 int avfilter_graph_create_filter(AVFilterContext **filt_ctx, const AVFilter *filt, argument
156 *filt_ctx = avfilter_graph_alloc_filter(graph_ctx, filt, name);
157 if (!*filt_ctx)
160 ret = avfilter_init_str(*filt_ctx, args);
167 if (*filt_ctx)
168 avfilter_free(*filt_ctx);
169 *filt_ctx = NULL;
H A Davfilter.h1298 * In case of success put in *filt_ctx the pointer to the created
1299 * filter instance, otherwise set *filt_ctx to NULL.
1306 int avfilter_graph_create_filter(AVFilterContext **filt_ctx, const AVFilter *filt,
1356 /** index of the filt_ctx pad to use for linking */
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/
H A Dffmpeg_filter.c454 AVFilterContext *filt_ctx; \
459 ret = avfilter_graph_create_filter(&filt_ctx, \
465 ret = avfilter_link(last_filter, pad_idx, filt_ctx, 0); \
469 last_filter = filt_ctx; \
760 AVFilterContext *filt_ctx; \
767 ret = avfilter_graph_create_filter(&filt_ctx, \
773 ret = avfilter_link(last_filter, 0, filt_ctx, 0); \
777 last_filter = filt_ctx; \
H A Dffplay.c1822 AVFilterContext *filt_ctx; \
1824 ret = avfilter_graph_create_filter(&filt_ctx, \
1830 ret = avfilter_link(filt_ctx, 0, last_filter, 0); \
1834 last_filter = filt_ctx; \

Completed in 190 milliseconds