Home
last modified time | relevance | path

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

/external/webp/src/dsp/
Dalpha_processing.c264 int rg_byte_pos /* 0 or 1 */) { in ApplyAlphaMultiply4444_C() argument
268 const uint32_t rg = rgba4444[2 * i + rg_byte_pos]; in ApplyAlphaMultiply4444_C()
269 const uint32_t ba = rgba4444[2 * i + (rg_byte_pos ^ 1)]; in ApplyAlphaMultiply4444_C()
275 rgba4444[2 * i + rg_byte_pos] = (r & 0xf0) | ((g >> 4) & 0x0f); in ApplyAlphaMultiply4444_C()
276 rgba4444[2 * i + (rg_byte_pos ^ 1)] = (b & 0xf0) | a; in ApplyAlphaMultiply4444_C()