Home
last modified time | relevance | path

Searched refs:d128 (Results 1 – 2 of 2) sorted by relevance

/third_party/ffmpeg/libswscale/
Dyuv2rgb.c554 const uint8_t *d128 = ff_dither_8x8_220[yd & 7]; variable
559 acc = r[Y + d128[0 + o]] + \
561 b[Y + d128[0 + o]]; \
563 acc |= (r[Y + d128[1 + o]] + \
565 b[Y + d128[1 + o]]) << 4; \
586 const uint8_t *d128 = ff_dither_8x8_220[yd & 7]; variable
598 const uint8_t *d128 = ff_dither_8x8_220[yd & 7]; variable
607 const uint8_t *d128 = ff_dither_8x8_220[yd & 7]; variable
611 dst[2 * i] = r[Y + d128[0 + o]] + \
613 b[Y + d128[0 + o]]; \
[all …]
Doutput.c554 const uint8_t * const d128 = ff_dither_8x8_220[y&7]; in yuv2mono_X_c_template() local
585 accumulate_bit(acc, Y1 + d128[(i + 0) & 7]); in yuv2mono_X_c_template()
586 accumulate_bit(acc, Y2 + d128[(i + 1) & 7]); in yuv2mono_X_c_template()
607 const uint8_t * const d128 = ff_dither_8x8_220[y & 7]; in yuv2mono_2_c_template() local
639 accumulate_bit(acc, Y + d128[0]); in yuv2mono_2_c_template()
641 accumulate_bit(acc, Y + d128[1]); in yuv2mono_2_c_template()
643 accumulate_bit(acc, Y + d128[2]); in yuv2mono_2_c_template()
645 accumulate_bit(acc, Y + d128[3]); in yuv2mono_2_c_template()
647 accumulate_bit(acc, Y + d128[4]); in yuv2mono_2_c_template()
649 accumulate_bit(acc, Y + d128[5]); in yuv2mono_2_c_template()
[all …]