Commit 421b21ca authored by Michael Niedermayer's avatar Michael Niedermayer

sws: dont use the optimized 410->420 unscaled conversion when height%4

Fixes Ticket3594
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent f0c78b07
...@@ -1585,7 +1585,7 @@ void ff_get_unscaled_swscale(SwsContext *c) ...@@ -1585,7 +1585,7 @@ void ff_get_unscaled_swscale(SwsContext *c)
c->swscale = ff_yuv2rgb_get_func_ptr(c); c->swscale = ff_yuv2rgb_get_func_ptr(c);
} }
if (srcFormat == AV_PIX_FMT_YUV410P && if (srcFormat == AV_PIX_FMT_YUV410P && !(dstH & 3) &&
(dstFormat == AV_PIX_FMT_YUV420P || dstFormat == AV_PIX_FMT_YUVA420P) && (dstFormat == AV_PIX_FMT_YUV420P || dstFormat == AV_PIX_FMT_YUVA420P) &&
!(flags & SWS_BITEXACT)) { !(flags & SWS_BITEXACT)) {
c->swscale = yvu9ToYv12Wrapper; c->swscale = yvu9ToYv12Wrapper;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment