]> git.sesse.net Git - ffmpeg/commitdiff
avfilter/vf_copy: use ff_formats_pixdesc_filter()
authorPaul B Mahol <onemda@gmail.com>
Sat, 16 Jan 2021 20:11:57 +0000 (21:11 +0100)
committerPaul B Mahol <onemda@gmail.com>
Sat, 16 Jan 2021 20:35:44 +0000 (21:35 +0100)
libavfilter/vf_copy.c

index e82feb4f0ecb51338302b2d75c05d3af08ab3107..78bb5109e5ba03f8f3642fb4eebf9c8a3288d764 100644 (file)
 static int query_formats(AVFilterContext *ctx)
 {
     AVFilterFormats *formats = NULL;
-    int fmt;
-
-    for (fmt = 0; av_pix_fmt_desc_get(fmt); fmt++) {
-        const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(fmt);
-        int ret;
-        if (desc->flags & AV_PIX_FMT_FLAG_HWACCEL)
-            continue;
-        if ((ret = ff_add_format(&formats, fmt)) < 0)
-            return ret;
-    }
+    int ret;
 
+    ret = ff_formats_pixdesc_filter(&formats, 0,
+                                    AV_PIX_FMT_FLAG_HWACCEL);
+    if (ret < 0)
+        return ret;
     return ff_set_common_formats(ctx, formats);
 }