diff options
| author | Mark Reid <[email protected]> | 2020-05-10 16:17:48 -0700 | 
|---|---|---|
| committer | Michael Niedermayer <[email protected]> | 2020-05-12 01:00:28 +0200 | 
| commit | fabeef22d9793a834dba4cee5aafbf0494b9ce4f (patch) | |
| tree | 4f235f77847779922cb0bb55f59339a577767640 | |
| parent | 5f359f2b67f1254d05757fe033efdc396118f947 (diff) | |
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 <[email protected]>
| -rw-r--r-- | libswscale/utils.c | 2 | 
1 files changed, 2 insertions, 0 deletions
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;  | 
