[FFmpeg-cvslog] avfilter/vf_copy: use ff_formats_pixdesc_filter()

Paul B Mahol git at videolan.org
Sat Jan 16 22:37:41 EET 2021


ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Sat Jan 16 21:11:57 2021 +0100| [c590ff1fbbee694f2788358a485fbf1deda431f4] | committer: Paul B Mahol

avfilter/vf_copy: use ff_formats_pixdesc_filter()

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c590ff1fbbee694f2788358a485fbf1deda431f4
---

 libavfilter/vf_copy.c | 15 +++++----------
 1 file changed, 5 insertions(+), 10 deletions(-)

diff --git a/libavfilter/vf_copy.c b/libavfilter/vf_copy.c
index e82feb4f0e..78bb5109e5 100644
--- a/libavfilter/vf_copy.c
+++ b/libavfilter/vf_copy.c
@@ -30,17 +30,12 @@
 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);
 }
 



More information about the ffmpeg-cvslog mailing list