]> git.sesse.net Git - ffmpeg/commitdiff
lavfi/vf_crop: use ff_formats_pixdesc_filter().
authorNicolas George <george@nsup.org>
Thu, 16 Apr 2020 14:40:53 +0000 (16:40 +0200)
committerNicolas George <george@nsup.org>
Sat, 23 May 2020 13:50:20 +0000 (15:50 +0200)
libavfilter/vf_crop.c

index 502defd0a519bb48e74d2f50bee3d5f3a28ba75c..3d5cb95f786e6f41368b541e6216b5d36b713f3f 100644 (file)
@@ -94,24 +94,11 @@ typedef struct CropContext {
 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_BITSTREAM)
-            continue;
-        if (!(desc->flags & AV_PIX_FMT_FLAG_HWACCEL)) {
-            // Not usable if there is any subsampling but the format is
-            // not planar (e.g. YUYV422).
-            if ((desc->log2_chroma_w || desc->log2_chroma_h) &&
-                !(desc->flags & AV_PIX_FMT_FLAG_PLANAR))
-                continue;
-        }
-        ret = ff_add_format(&formats, fmt);
-        if (ret < 0)
-            return ret;
-    }
+    int ret;
 
+    ret = ff_formats_pixdesc_filter(&formats, 0, AV_PIX_FMT_FLAG_BITSTREAM | FF_PIX_FMT_FLAG_SW_FLAT_SUB);
+    if (ret < 0)
+        return ret;
     return ff_set_common_formats(ctx, formats);
 }