Searched defs:rgbframe (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/media/base/simd/
H A Dconvert_rgb_to_yuv_ssse3.cc12 void ConvertRGB32ToYUV_SSSE3(const uint8* rgbframe, argument
22 ConvertARGBToYUVRow_SSSE3(rgbframe, yplane, uplane, vplane, width);
23 rgbframe += rgbstride;
26 ConvertARGBToYUVRow_SSSE3(rgbframe, yplane, NULL, NULL, width);
27 rgbframe += rgbstride;
35 ConvertARGBToYUVRow_SSSE3(rgbframe, yplane, uplane, vplane, width);
38 void ConvertRGB24ToYUV_SSSE3(const uint8* rgbframe, argument
48 ConvertRGBToYUVRow_SSSE3(rgbframe, yplane, uplane, vplane, width);
49 rgbframe += rgbstride;
52 ConvertRGBToYUVRow_SSSE3(rgbframe, yplan
[all...]
H A Dconvert_rgb_to_yuv_c.cc18 void ConvertRGB32ToYUV_C(const uint8* rgbframe, argument
40 const uint8* pixel = rgbframe + 4 * j;
50 rgbframe += rgbstride;
59 void ConvertRGB24ToYUV_C(const uint8* rgbframe, argument
71 const uint8* pixel = rgbframe + 3 * j;
82 rgbframe += rgbstride;
H A Dconvert_yuv_to_rgb_x86.cc21 uint8* rgbframe,
31 uint8* rgb_row = rgbframe + y * rgbstride;
52 uint8* rgbframe,
61 uint8* rgb_row = rgbframe + y * rgbstride;
17 ConvertYUVAToARGB_MMX(const uint8* yplane, const uint8* uplane, const uint8* vplane, const uint8* aplane, uint8* rgbframe, int width, int height, int ystride, int uvstride, int astride, int rgbstride, YUVType yuv_type) argument
49 ConvertYUVToRGB32_SSE(const uint8* yplane, const uint8* uplane, const uint8* vplane, uint8* rgbframe, int width, int height, int ystride, int uvstride, int rgbstride, YUVType yuv_type) argument
H A Dconvert_rgb_to_yuv_sse2.cc311 extern void ConvertRGB32ToYUV_SSE2(const uint8* rgbframe, argument
321 ConvertRGB32ToYUVRow_SSE2(rgbframe,
322 rgbframe + rgbstride,
328 rgbframe += 2 * rgbstride;
340 ConvertRGBToYUV_V1H2(rgbframe, yplane, uplane, vplane);
341 rgbframe += 8;
349 ConvertRGBToYUV_V1H1(rgbframe, yplane, uplane, vplane);
352 void ConvertRGB32ToYUV_SSE2_Reference(const uint8* rgbframe, argument
366 ConvertRGBToYUV_V2H2(rgbframe + i * 4,
367 rgbframe
[all...]
H A Dconvert_yuv_to_rgb_c.cc221 uint8* rgbframe,
230 uint8* rgb_row = rgbframe + y * rgbstride;
218 ConvertYUVToRGB32_C(const uint8* yplane, const uint8* uplane, const uint8* vplane, uint8* rgbframe, int width, int height, int ystride, int uvstride, int rgbstride, YUVType yuv_type) argument
/external/chromium_org/media/base/
H A Dyuv_convert.cc560 void ConvertRGB32ToYUV(const uint8* rgbframe, argument
569 g_convert_rgb32_to_yuv_proc_(rgbframe,
580 void ConvertRGB24ToYUV(const uint8* rgbframe, argument
589 g_convert_rgb24_to_yuv_proc_(rgbframe,
646 uint8* rgbframe,
656 rgbframe,
669 uint8* rgbframe,
681 rgbframe,
643 ConvertYUVToRGB32(const uint8* yplane, const uint8* uplane, const uint8* vplane, uint8* rgbframe, int width, int height, int ystride, int uvstride, int rgbstride, YUVType yuv_type) argument
665 ConvertYUVAToARGB(const uint8* yplane, const uint8* uplane, const uint8* vplane, const uint8* aplane, uint8* rgbframe, int width, int height, int ystride, int uvstride, int astride, int rgbstride, YUVType yuv_type) argument

Completed in 160 milliseconds