diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2016-02-23 23:48:11 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-02-24 00:04:51 +0100 |
commit | 4ccb97650a94a5ea3a73c0c91fbef860dcd4423f (patch) | |
tree | 855208a9f05062d22ef4bc7e5671a57312c32e95 /libswscale | |
parent | a3d698dcb14312a0658c1b81553b611a6ed48851 (diff) | |
download | ffmpeg-4ccb97650a94a5ea3a73c0c91fbef860dcd4423f.tar.gz |
swscale/utils: Fix chrSrcHSubSample for GBRAP16
Fixes part of Ticket5264
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit 67e5bd0c501f7568fc8d93284d0f7eb40663ab06)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libswscale')
-rw-r--r-- | libswscale/utils.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libswscale/utils.c b/libswscale/utils.c index 37820f68aa..e48119fdf5 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -1343,6 +1343,7 @@ av_cold int sws_init_context(SwsContext *c, SwsFilter *srcFilter, srcFormat != AV_PIX_FMT_GBRP12BE && srcFormat != AV_PIX_FMT_GBRP12LE && 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 && ((dstW >> c->chrDstHSubSample) <= (srcW >> 1) || (flags & SWS_FAST_BILINEAR))) c->chrSrcHSubSample = 1; |