[FFmpeg-cvslog] libswscale: fix for floating point formats, require full chroma

Mark Reid git at videolan.org
Tue May 12 02:05:33 EEST 2020


ffmpeg | branch: master | Mark Reid <mindmark at gmail.com> | Sun May 10 16:17:48 2020 -0700| [fabeef22d9793a834dba4cee5aafbf0494b9ce4f] | committer: Michael Niedermayer

libswscale: fix for floating point formats, require full chroma

upon more floating point testing, looks like I missed adding this bit.

Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

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

 libswscale/utils.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/libswscale/utils.c b/libswscale/utils.c
index 15c0a19afa..111062e915 100644
--- a/libswscale/utils.c
+++ b/libswscale/utils.c
@@ -1405,6 +1405,8 @@ av_cold int sws_init_context(SwsContext *c, SwsFilter *srcFilter,
         srcFormat != AV_PIX_FMT_GBRP14BE  && srcFormat != AV_PIX_FMT_GBRP14LE &&
         srcFormat != AV_PIX_FMT_GBRP16BE  && srcFormat != AV_PIX_FMT_GBRP16LE &&
         srcFormat != AV_PIX_FMT_GBRAP16BE  && srcFormat != AV_PIX_FMT_GBRAP16LE &&
+        srcFormat != AV_PIX_FMT_GBRPF32BE  && srcFormat != AV_PIX_FMT_GBRPF32LE &&
+        srcFormat != AV_PIX_FMT_GBRAPF32BE && srcFormat != AV_PIX_FMT_GBRAPF32LE &&
         ((dstW >> c->chrDstHSubSample) <= (srcW >> 1) ||
          (flags & SWS_FAST_BILINEAR)))
         c->chrSrcHSubSample = 1;



More information about the ffmpeg-cvslog mailing list