[FFmpeg-cvslog] avfilter/vf_fftfilt: add gray formats >8 depth support

Paul B Mahol git at videolan.org
Thu Oct 14 11:09:25 EEST 2021


ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Thu Oct 14 10:08:01 2021 +0200| [7d3a9bb54b506381b82cd7adc6b9856e4aed7296] | committer: Paul B Mahol

avfilter/vf_fftfilt: add gray formats >8 depth support

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

 libavfilter/vf_fftfilt.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/libavfilter/vf_fftfilt.c b/libavfilter/vf_fftfilt.c
index d5e49c345d..30c0b2fc86 100644
--- a/libavfilter/vf_fftfilt.c
+++ b/libavfilter/vf_fftfilt.c
@@ -512,6 +512,8 @@ static av_cold void uninit(AVFilterContext *ctx)
 
 static const enum AVPixelFormat pixel_fmts_fftfilt[] = {
     AV_PIX_FMT_GRAY8,
+    AV_PIX_FMT_GRAY9, AV_PIX_FMT_GRAY10, AV_PIX_FMT_GRAY12,
+    AV_PIX_FMT_GRAY14, AV_PIX_FMT_GRAY16,
     AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUVJ444P,
     AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUVJ420P,
     AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUVJ422P,



More information about the ffmpeg-cvslog mailing list