Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/LAVFilters.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--decoder/LAVVideo/pixconv/yuv2rgb.cpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/decoder/LAVVideo/pixconv/yuv2rgb.cpp b/decoder/LAVVideo/pixconv/yuv2rgb.cpp
index 1ed662e5..27e04361 100644
--- a/decoder/LAVVideo/pixconv/yuv2rgb.cpp
+++ b/decoder/LAVVideo/pixconv/yuv2rgb.cpp
@@ -453,8 +453,13 @@ static int __stdcall yuv2rgb_convert(const uint8_t *srcY, const uint8_t *srcU, c
if (dithertype == LAVDither_Random)
lineDither = dithers + ((height - 2) * 24 * DITHER_STEPS);
y = srcY + (height - 1) * srcStrideY;
- u = srcU + ((height >> 1) - 1) * srcStrideUV;
- v = srcV + ((height >> 1) - 1) * srcStrideUV;
+ if (inputFormat == LAVPixFmt_YUV420 || inputFormat == LAVPixFmt_NV12) {
+ u = srcU + ((height >> 1) - 1) * srcStrideUV;
+ v = srcV + ((height >> 1) - 1) * srcStrideUV;
+ } else {
+ u = srcU + (height - 1) * srcStrideUV;
+ v = srcV + (height - 1) * srcStrideUV;
+ }
rgb = dst + (height - 1) * dstStride;
for (ptrdiff_t i = 0; i < endx; i += 4) {