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:
authorHendrik Leppkes <h.leppkes@gmail.com>2012-01-31 21:33:09 +0400
committerHendrik Leppkes <h.leppkes@gmail.com>2012-01-31 21:33:09 +0400
commit0094f4508137bf61446e12780116764abf61eabb (patch)
tree6f4b7d7364d3b3839ca99ae70439155321e37547 /decoder/LAVVideo/pixconv
parent5fb5e68640fbd9feb2154d1b95b377f294ec2359 (diff)
Fix 10-bit YUV -> YV16/YV24 conversion
Diffstat (limited to 'decoder/LAVVideo/pixconv')
-rw-r--r--decoder/LAVVideo/pixconv/yuv2yuv_unscaled.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/decoder/LAVVideo/pixconv/yuv2yuv_unscaled.cpp b/decoder/LAVVideo/pixconv/yuv2yuv_unscaled.cpp
index 2053c255..8a4d1571 100644
--- a/decoder/LAVVideo/pixconv/yuv2yuv_unscaled.cpp
+++ b/decoder/LAVVideo/pixconv/yuv2yuv_unscaled.cpp
@@ -80,7 +80,7 @@ DECLARE_CONV_FUNC_IMPL(convert_yuv_yv_nv12_dither_le)
// Process U & V
- for (line = 0; line < (height >> 1); ++line) {
+ for (line = 0; line < chromaHeight; ++line) {
// Load dithering coefficients for this line
PIXCONV_LOAD_DITHER_COEFFS(xmm4,line,8,dithers);