Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2021-01-16 23:14:48 +0300
committerPaul B Mahol <onemda@gmail.com>2021-01-16 23:35:44 +0300
commit9beee830432f30cd5b4ee5f50ba129751964c8b8 (patch)
treeb1c1882fecb14056429e4020d0b5287ee8ed0f2c /libavfilter/vf_il.c
parentc590ff1fbbee694f2788358a485fbf1deda431f4 (diff)
avfilter/vf_il: use ff_formats_pixdesc_filter()
Diffstat (limited to 'libavfilter/vf_il.c')
-rw-r--r--libavfilter/vf_il.c15
1 files changed, 6 insertions, 9 deletions
diff --git a/libavfilter/vf_il.c b/libavfilter/vf_il.c
index 6cd5f89f76..46af57f96e 100644
--- a/libavfilter/vf_il.c
+++ b/libavfilter/vf_il.c
@@ -84,16 +84,13 @@ AVFILTER_DEFINE_CLASS(il);
static int query_formats(AVFilterContext *ctx)
{
AVFilterFormats *formats = NULL;
- int fmt, 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)
- return ret;
- }
+ int ret;
+ 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);
}