mirror of
https://github.com/librempeg/librempeg
synced 2024-11-23 03:28:27 +00:00
avfilter/vf_il: use ff_formats_pixdesc_filter()
This commit is contained in:
parent
c590ff1fbb
commit
9beee83043
@ -84,16 +84,13 @@ AVFILTER_DEFINE_CLASS(il);
|
||||
static int query_formats(AVFilterContext *ctx)
|
||||
{
|
||||
AVFilterFormats *formats = NULL;
|
||||
int fmt, ret;
|
||||
int ret;
|
||||
|
||||
for (fmt = 0; av_pix_fmt_desc_get(fmt); fmt++) {
|
||||
const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(fmt);
|
||||
if (!(desc->flags & AV_PIX_FMT_FLAG_PAL) &&
|
||||
!(desc->flags & AV_PIX_FMT_FLAG_HWACCEL) &&
|
||||
(ret = ff_add_format(&formats, fmt)) < 0)
|
||||
ret = ff_formats_pixdesc_filter(&formats, 0,
|
||||
AV_PIX_FMT_FLAG_PAL |
|
||||
AV_PIX_FMT_FLAG_HWACCEL);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
}
|
||||
|
||||
return ff_set_common_formats(ctx, formats);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user