Module: libav Branch: master Commit: 7b41c24c5fa221b55a9302efaf1a9eeb38b12551
Author: Michael Niedermayer <[email protected]> Committer: Derek Buitenhuis <[email protected]> Date: Sat Jan 26 19:49:22 2013 +0100 sws: dont enable chrSrcHSubSample for planar RGB This code path is not implemented and makes not much sense to implement either. Signed-off-by: Michael Niedermayer <[email protected]> Signed-off-by: Derek Buitenhuis <[email protected]> --- libswscale/utils.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/libswscale/utils.c b/libswscale/utils.c index b0a4d04..b216eff 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -979,6 +979,9 @@ av_cold int sws_init_context(SwsContext *c, SwsFilter *srcFilter, srcFormat != AV_PIX_FMT_RGB8 && srcFormat != AV_PIX_FMT_BGR8 && srcFormat != AV_PIX_FMT_RGB4 && srcFormat != AV_PIX_FMT_BGR4 && srcFormat != AV_PIX_FMT_RGB4_BYTE && srcFormat != AV_PIX_FMT_BGR4_BYTE && + srcFormat != AV_PIX_FMT_GBRP9BE && srcFormat != AV_PIX_FMT_GBRP9LE && + srcFormat != AV_PIX_FMT_GBRP10BE && srcFormat != AV_PIX_FMT_GBRP10LE && + srcFormat != AV_PIX_FMT_GBRP16BE && srcFormat != AV_PIX_FMT_GBRP16LE && ((dstW >> c->chrDstHSubSample) <= (srcW >> 1) || (flags & SWS_FAST_BILINEAR))) c->chrSrcHSubSample = 1; _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
