|
|
@ -664,7 +664,7 @@ yuv2mono_2_c_template(SwsInternal *c, const int16_t *buf[2], |
|
|
|
|
|
|
|
|
|
|
|
if (c->dither == SWS_DITHER_ED) { |
|
|
|
if (c->dither == SWS_DITHER_ED) { |
|
|
|
int err = 0; |
|
|
|
int err = 0; |
|
|
|
int acc = 0; |
|
|
|
unsigned acc = 0; |
|
|
|
for (i = 0; i < dstW; i +=2) { |
|
|
|
for (i = 0; i < dstW; i +=2) { |
|
|
|
int Y; |
|
|
|
int Y; |
|
|
|
|
|
|
|
|
|
|
@ -686,7 +686,8 @@ yuv2mono_2_c_template(SwsInternal *c, const int16_t *buf[2], |
|
|
|
c->dither_error[0][i] = err; |
|
|
|
c->dither_error[0][i] = err; |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
for (i = 0; i < dstW; i += 8) { |
|
|
|
for (i = 0; i < dstW; i += 8) { |
|
|
|
int Y, acc = 0; |
|
|
|
int Y; |
|
|
|
|
|
|
|
unsigned acc = 0; |
|
|
|
|
|
|
|
|
|
|
|
Y = (buf0[i + 0] * yalpha1 + buf1[i + 0] * yalpha) >> 19; |
|
|
|
Y = (buf0[i + 0] * yalpha1 + buf1[i + 0] * yalpha) >> 19; |
|
|
|
accumulate_bit(acc, Y + d128[0]); |
|
|
|
accumulate_bit(acc, Y + d128[0]); |
|
|
@ -721,7 +722,7 @@ yuv2mono_1_c_template(SwsInternal *c, const int16_t *buf0, |
|
|
|
|
|
|
|
|
|
|
|
if (c->dither == SWS_DITHER_ED) { |
|
|
|
if (c->dither == SWS_DITHER_ED) { |
|
|
|
int err = 0; |
|
|
|
int err = 0; |
|
|
|
int acc = 0; |
|
|
|
unsigned acc = 0; |
|
|
|
for (i = 0; i < dstW; i +=2) { |
|
|
|
for (i = 0; i < dstW; i +=2) { |
|
|
|
int Y; |
|
|
|
int Y; |
|
|
|
|
|
|
|
|
|
|
@ -743,7 +744,7 @@ yuv2mono_1_c_template(SwsInternal *c, const int16_t *buf0, |
|
|
|
c->dither_error[0][i] = err; |
|
|
|
c->dither_error[0][i] = err; |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
for (i = 0; i < dstW; i += 8) { |
|
|
|
for (i = 0; i < dstW; i += 8) { |
|
|
|
int acc = 0; |
|
|
|
unsigned acc = 0; |
|
|
|
accumulate_bit(acc, ((buf0[i + 0] + 64) >> 7) + d128[0]); |
|
|
|
accumulate_bit(acc, ((buf0[i + 0] + 64) >> 7) + d128[0]); |
|
|
|
accumulate_bit(acc, ((buf0[i + 1] + 64) >> 7) + d128[1]); |
|
|
|
accumulate_bit(acc, ((buf0[i + 1] + 64) >> 7) + d128[1]); |
|
|
|
accumulate_bit(acc, ((buf0[i + 2] + 64) >> 7) + d128[2]); |
|
|
|
accumulate_bit(acc, ((buf0[i + 2] + 64) >> 7) + d128[2]); |
|
|
|