Home
last modified time | relevance | path

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

/external/webp/src/dsp/
Dupsampling.c225 WebPYUV444Converters[MODE_RGB] = WebPYuv444ToRgb_C; in WEBP_DSP_INIT_FUNC()
270 WebPUpsamplers[MODE_RGB] = UpsampleRgbLinePair_C; in WEBP_DSP_INIT_FUNC()
315 assert(WebPUpsamplers[MODE_RGB] != NULL); in WEBP_DSP_INIT_FUNC()
Dupsampling_sse41.c192 WebPUpsamplers[MODE_RGB] = UpsampleRgbLinePair_SSE41; in WebPInitUpsamplersSSE41()
226 WebPYUV444Converters[MODE_RGB] = Yuv444ToRgb_SSE41; in WebPInitYUV444ConvertersSSE41()
Dupsampling_mips_dsp_r2.c228 WebPUpsamplers[MODE_RGB] = UpsampleRgbLinePair; in WebPInitUpsamplersMIPSdspR2()
273 WebPYUV444Converters[MODE_RGB] = Yuv444ToRgb; in WebPInitYUV444ConvertersMIPSdspR2()
Dyuv_mips_dsp_r2.c124 WebPSamplers[MODE_RGB] = YuvToRgbRow_MIPSdspR2; in WebPInitSamplersMIPSdspR2()
Dupsampling_sse2.c200 WebPUpsamplers[MODE_RGB] = UpsampleRgbLinePair_SSE2; in WebPInitUpsamplersSSE2()
249 WebPYUV444Converters[MODE_RGB] = Yuv444ToRgb_SSE2; in WebPInitYUV444ConvertersSSE2()
Dyuv_mips32.c93 WebPSamplers[MODE_RGB] = YuvToRgbRow_MIPS32; in WebPInitSamplersMIPS32()
Dyuv.c79 WebPSamplers[MODE_RGB] = YuvToRgbRow; in WEBP_DSP_INIT_FUNC()
Dupsampling_neon.c269 WebPUpsamplers[MODE_RGB] = UpsampleRgbLinePair_NEON; in WebPInitUpsamplersNEON()
Dlossless.c510 case MODE_RGB: in VP8LConvertFromBGRA()
Dyuv_sse41.c260 WebPSamplers[MODE_RGB] = YuvToRgbRow_SSE41; in WebPInitSamplersSSE41()
Dupsampling_msa.c672 WebPUpsamplers[MODE_RGB] = UpsampleRgbLinePair; in WebPInitUpsamplersMSA()
Dyuv_sse2.c440 WebPSamplers[MODE_RGB] = YuvToRgbRow_SSE2; in WebPInitSamplersSSE2()
/external/webp/include/webp/
Ddecode.h153 MODE_RGB = 0, MODE_RGBA = 1, enumerator
/external/webp/src/webp/
Ddecode.h153 MODE_RGB = 0, MODE_RGBA = 1, enumerator
/external/webp/src/dec/
Dwebp_dec.c552 return DecodeIntoRGBABuffer(MODE_RGB, data, data_size, output, stride, size); in WebPDecodeRGBInto()
635 return Decode(MODE_RGB, data, data_size, width, height, NULL); in WebPDecodeRGB()
Dbuffer_dec.c33 return (webp_csp_mode >= MODE_RGB && webp_csp_mode < MODE_LAST); in IsValidColorspace()