Lines Matching refs:uint8

161 static inline uint32 get_le32(const uint8* const data) {  in get_le32()
174 double GetPSNRYuv(const uint8* Y1, in GetPSNRYuv()
175 const uint8* U1, in GetPSNRYuv()
176 const uint8* V1, in GetPSNRYuv()
177 const uint8* Y2, in GetPSNRYuv()
178 const uint8* U2, in GetPSNRYuv()
179 const uint8* V2, in GetPSNRYuv()
215 double WebPGetPSNR(const uint8* Y1, in WebPGetPSNR()
216 const uint8* U1, in WebPGetPSNR()
217 const uint8* V1, in WebPGetPSNR()
218 uint8* imgdata, in WebPGetPSNR()
220 uint8* Y2 = NULL; in WebPGetPSNR()
221 uint8* U2 = NULL; in WebPGetPSNR()
222 uint8* V2 = NULL; in WebPGetPSNR()
257 int SkipRiffHeader(const uint8** data_ptr, int *data_size_ptr) { in SkipRiffHeader()
292 static void YUV420toRGBLine(uint8* y_src, in YUV420toRGBLine()
293 uint8* u_src, in YUV420toRGBLine()
294 uint8* v_src, in YUV420toRGBLine()
326 void YUV420toRGBA(uint8* Y, in YUV420toRGBA()
327 uint8* U, in YUV420toRGBA()
328 uint8* V, in YUV420toRGBA()
354 void gd_YUV420toRGBA(uint8* Y, in gd_YUV420toRGBA()
355 uint8* U, in gd_YUV420toRGBA()
356 uint8* V, in gd_YUV420toRGBA()
386 static WebPResult VPXDecode(const uint8* data, in VPXDecode()
388 uint8** p_Y, in VPXDecode()
389 uint8** p_U, in VPXDecode()
390 uint8** p_V, in VPXDecode()
425 if ((*p_Y = (uint8 *)(calloc(y_stride * y_height in VPXDecode()
427 sizeof(uint8)))) != NULL) { in VPXDecode()
452 WebPResult WebPDecode(const uint8* data, in WebPDecode()
454 uint8** p_Y, in WebPDecode()
455 uint8** p_U, in WebPDecode()
456 uint8** p_V, in WebPDecode()
483 uint8* Y_dst1, in RGBALinepairToYUV420()
484 uint8* Y_dst2, in RGBALinepairToYUV420()
485 uint8* u_dst, in RGBALinepairToYUV420()
486 uint8* v_dst) { in RGBALinepairToYUV420()
536 uint8* Y, in gd_RGBAToYUV420()
537 uint8* U, in gd_RGBAToYUV420()
538 uint8* V) { in gd_RGBAToYUV420()
599 uint8* Y, in RGBAToYUV420()
600 uint8* U, in RGBAToYUV420()
601 uint8* V) { in RGBAToYUV420()
655 static WebPResult VPXEncode(const uint8* Y, in VPXEncode()
656 const uint8* U, in VPXEncode()
657 const uint8* V, in VPXEncode()
710 y_width, y_height, 16, (uint8*)(Y)); in VPXEncode()
711 img.planes[VPX_PLANE_Y] = (uint8*)(Y); in VPXEncode()
712 img.planes[VPX_PLANE_U] = (uint8*)(U); in VPXEncode()
713 img.planes[VPX_PLANE_V] = (uint8*)(V); in VPXEncode()
742 WebPResult WebPEncode(const uint8* Y, in WebPEncode()
743 const uint8* U, in WebPEncode()
744 const uint8* V, in WebPEncode()
790 void AdjustColorspace(uint8* Y, uint8* U, uint8* V, int width, int height) { in AdjustColorspace()
800 uint8* const Yrow = Y + y * y_stride; in AdjustColorspace()
808 uint8* const Urow = U + y * uv_stride; in AdjustColorspace()
809 uint8* const Vrow = V + y * uv_stride; in AdjustColorspace()
818 void AdjustColorspaceBack(uint8* Y, uint8* U, uint8* V, int width, int height) { in AdjustColorspaceBack()
828 uint8* const Yrow = Y + y * y_stride; in AdjustColorspaceBack()
837 uint8* const Urow = U + y * uv_stride; in AdjustColorspaceBack()
838 uint8* const Vrow = V + y * uv_stride; in AdjustColorspaceBack()
849 WebPResult WebPGetInfo(const uint8* data, in WebPGetInfo()