[FFmpeg-cvslog] swscale/utils: Fix chrSrcHSubSample for GBRAP16

Michael Niedermayer git at videolan.org
Wed Feb 24 00:03:41 CET 2016


ffmpeg | branch: master | Michael Niedermayer <michael at niedermayer.cc> | Tue Feb 23 23:48:11 2016 +0100| [67e5bd0c501f7568fc8d93284d0f7eb40663ab06] | committer: Michael Niedermayer

swscale/utils: Fix chrSrcHSubSample for GBRAP16

Fixes part of Ticket5264

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

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

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

diff --git a/libswscale/utils.c b/libswscale/utils.c
index ef4241a..0beb753 100644
--- a/libswscale/utils.c
+++ b/libswscale/utils.c
@@ -1354,6 +1354,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;



More information about the ffmpeg-cvslog mailing list