Searched defs:YUV_FIX (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/libwebp/dsp/
H A Dyuv.h17 // We use 16bit fixed point operations for RGB->YUV conversion (YUV_FIX).
63 YUV_FIX = 16, // fixed-point precision for RGB->YUV enumerator in enum:__anon13263
64 YUV_HALF = 1 << (YUV_FIX - 1),
65 YUV_MASK = (256 << YUV_FIX) - 1,
165 const int g_off = (VP8kVToG[v] + VP8kUToG[u]) >> YUV_FIX;
175 const int g_off = (VP8kVToG[v] + VP8kUToG[u]) >> YUV_FIX;
185 const int g_off = (VP8kVToG[v] + VP8kUToG[u]) >> YUV_FIX;
203 const int g_off = (VP8kVToG[v] + VP8kUToG[u]) >> YUV_FIX;
274 uv = (uv + rounding + (128 << (YUV_FIX + 2))) >> (YUV_FIX
[all...]
/external/webp/src/dsp/
H A Dyuv.h17 // We use 16bit fixed point operations for RGB->YUV conversion (YUV_FIX).
63 YUV_FIX = 16, // fixed-point precision for RGB->YUV enumerator in enum:__anon33360
64 YUV_HALF = 1 << (YUV_FIX - 1),
65 YUV_MASK = (256 << YUV_FIX) - 1,
165 const int g_off = (VP8kVToG[v] + VP8kUToG[u]) >> YUV_FIX;
175 const int g_off = (VP8kVToG[v] + VP8kUToG[u]) >> YUV_FIX;
185 const int g_off = (VP8kVToG[v] + VP8kUToG[u]) >> YUV_FIX;
203 const int g_off = (VP8kVToG[v] + VP8kUToG[u]) >> YUV_FIX;
274 uv = (uv + rounding + (128 << (YUV_FIX + 2))) >> (YUV_FIX
[all...]

Completed in 2042 milliseconds