Lines Matching defs:inout
126 AVFilterInOut *input_links = NULL, *output_links = NULL, *inout;
185 for (n = 0, inout = output_links; inout; n++, inout = inout->next);
202 for (i = 0, inout = output_links; inout; i++, inout = inout->next) {
204 sscanf(inout->name, "out%n%d%n", &suffix, &stream_idx, &suffix);
207 "Invalid outpad name '%s'\n", inout->name);
210 if (inout->name[suffix]) {
211 if (!strcmp(inout->name + suffix, "+subcc")) {
215 "Invalid outpad suffix '%s'\n", inout->name);
224 inout->name, n);
240 for (i = 0, inout = output_links; inout; i++, inout = inout->next) {
252 for (i = 0, inout = output_links; inout; i++, inout = inout->next) {
255 type = avfilter_pad_get_type(inout->filter_ctx->output_pads, inout->pad_idx);
265 inout->name, NULL,
278 inout->name, NULL,
291 "Output '%s' is not a video or audio output, not yet supported\n", inout->name);
296 if ((ret = avfilter_link(inout->filter_ctx, inout->pad_idx, sink, 0)) < 0)