Searched refs:fixed_y_t (Results 1 - 1 of 1) sorted by relevance

/external/webp/src/enc/
H A Dpicture_csp_enc.c161 // We could use SFIX=0 and only uint8_t for fixed_y_t, but it produces some
165 typedef uint16_t fixed_y_t; // unsigned type with extra SFIX precision for W typedef
246 static fixed_y_t clip_y(int y) {
247 return (!(y & ~MAX_Y_T)) ? (fixed_y_t)y : (y < 0) ? 0 : MAX_Y_T;
269 static WEBP_INLINE void UpdateW(const fixed_y_t* src, fixed_y_t* dst, int w) {
276 dst[i] = (fixed_y_t)LinearToGammaF(Y);
280 static void UpdateChroma(const fixed_y_t* src1, const fixed_y_t* src2,
300 static void StoreGray(const fixed_y_t* rg
[all...]

Completed in 67 milliseconds