Commit d63b7d8c authored by Ronald S. Bultje's avatar Ronald S. Bultje

swscale: fix incorrect chroma bias in yuv2rgb48_1_c().

parent 1ca7dc60
...@@ -810,8 +810,8 @@ yuv2rgb48_1_c_template(SwsContext *c, const int32_t *buf0, ...@@ -810,8 +810,8 @@ yuv2rgb48_1_c_template(SwsContext *c, const int32_t *buf0,
for (i = 0; i < (dstW >> 1); i++) { for (i = 0; i < (dstW >> 1); i++) {
int Y1 = (buf0[i * 2] ) >> 2; int Y1 = (buf0[i * 2] ) >> 2;
int Y2 = (buf0[i * 2 + 1]) >> 2; int Y2 = (buf0[i * 2 + 1]) >> 2;
int U = (ubuf0[i] + ubuf1[i] + (-128 << 11)) >> 3; int U = (ubuf0[i] + ubuf1[i] + (-128 << 12)) >> 3;
int V = (vbuf0[i] + vbuf1[i] + (-128 << 11)) >> 3; int V = (vbuf0[i] + vbuf1[i] + (-128 << 12)) >> 3;
int R, G, B; int R, G, B;
Y1 -= c->yuv2rgb_y_offset; Y1 -= c->yuv2rgb_y_offset;
......
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