Commit 9126ae4b authored by Andreas Cadhalpun's avatar Andreas Cadhalpun

use avfilter_pad_get_{type,name} accessor functions

Reviewed-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
Signed-off-by: 's avatarAndreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
parent 8bd74aaf
...@@ -1573,10 +1573,10 @@ int show_filters(void *optctx, const char *opt, const char *arg) ...@@ -1573,10 +1573,10 @@ int show_filters(void *optctx, const char *opt, const char *arg)
*(descr_cur++) = '>'; *(descr_cur++) = '>';
} }
pad = i ? filter->outputs : filter->inputs; pad = i ? filter->outputs : filter->inputs;
for (j = 0; pad && pad[j].name; j++) { for (j = 0; pad && avfilter_pad_get_name(pad, j); j++) {
if (descr_cur >= descr + sizeof(descr) - 4) if (descr_cur >= descr + sizeof(descr) - 4)
break; break;
*(descr_cur++) = get_media_type_char(pad[j].type); *(descr_cur++) = get_media_type_char(avfilter_pad_get_type(pad, j));
} }
if (!j) if (!j)
*(descr_cur++) = ((!i && (filter->flags & AVFILTER_FLAG_DYNAMIC_INPUTS)) || *(descr_cur++) = ((!i && (filter->flags & AVFILTER_FLAG_DYNAMIC_INPUTS)) ||
......
...@@ -247,7 +247,7 @@ av_cold static int lavfi_read_header(AVFormatContext *avctx) ...@@ -247,7 +247,7 @@ av_cold static int lavfi_read_header(AVFormatContext *avctx)
for (i = 0, inout = output_links; inout; i++, inout = inout->next) { for (i = 0, inout = output_links; inout; i++, inout = inout->next) {
AVFilterContext *sink; AVFilterContext *sink;
type = inout->filter_ctx->output_pads[inout->pad_idx].type; type = avfilter_pad_get_type(inout->filter_ctx->output_pads, inout->pad_idx);
if (type == AVMEDIA_TYPE_VIDEO && ! buffersink || if (type == AVMEDIA_TYPE_VIDEO && ! buffersink ||
type == AVMEDIA_TYPE_AUDIO && ! abuffersink) { type == AVMEDIA_TYPE_AUDIO && ! abuffersink) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment