avfilter/vf_weave: use ff_formats_pixdesc_filter()
This commit is contained in:
parent
9beee83043
commit
737bb01540
@ -54,17 +54,11 @@ static int query_formats(AVFilterContext *ctx)
|
|||||||
AVFilterFormats *formats = NULL;
|
AVFilterFormats *formats = NULL;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
for (int fmt = 0; av_pix_fmt_desc_get(fmt); fmt++) {
|
ret = ff_formats_pixdesc_filter(&formats, 0,
|
||||||
const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(fmt);
|
AV_PIX_FMT_FLAG_PAL |
|
||||||
|
AV_PIX_FMT_FLAG_HWACCEL);
|
||||||
if (!(desc->flags & AV_PIX_FMT_FLAG_PAL) &&
|
if (ret < 0)
|
||||||
!(desc->flags & AV_PIX_FMT_FLAG_HWACCEL)) {
|
return ret;
|
||||||
if ((ret = ff_add_format(&formats, fmt)) < 0) {
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return ff_set_common_formats(ctx, formats);
|
return ff_set_common_formats(ctx, formats);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user