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

/external/chromium_org/media/base/simd/
H A Dconvert_rgb_to_yuv_ssse3.cc20 int uvstride) {
30 uplane += uvstride;
31 vplane += uvstride;
46 int uvstride) {
56 uplane += uvstride;
57 vplane += uvstride;
12 ConvertRGB32ToYUV_SSSE3(const uint8* rgbframe, uint8* yplane, uint8* uplane, uint8* vplane, int width, int height, int rgbstride, int ystride, int uvstride) argument
38 ConvertRGB24ToYUV_SSSE3(const uint8* rgbframe, uint8* yplane, uint8* uplane, uint8* vplane, int width, int height, int rgbstride, int ystride, int uvstride) argument
H A Dconvert_rgb_to_yuv_c.cc26 int uvstride) {
53 uplane += uvstride;
54 vplane += uvstride;
67 int uvstride) {
85 uplane += uvstride;
86 vplane += uvstride;
18 ConvertRGB32ToYUV_C(const uint8* rgbframe, uint8* yplane, uint8* uplane, uint8* vplane, int width, int height, int rgbstride, int ystride, int uvstride) argument
59 ConvertRGB24ToYUV_C(const uint8* rgbframe, uint8* yplane, uint8* uplane, uint8* vplane, int width, int height, int rgbstride, int ystride, int uvstride) argument
H A Dconvert_yuv_to_rgb_x86.cc25 int uvstride,
33 const uint8* u_ptr = uplane + (y >> y_shift) * uvstride;
34 const uint8* v_ptr = vplane + (y >> y_shift) * uvstride;
56 int uvstride,
63 const uint8* u_ptr = uplane + (y >> y_shift) * uvstride;
64 const uint8* v_ptr = vplane + (y >> y_shift) * uvstride;
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.cc319 int uvstride) {
330 uplane += uvstride;
331 vplane += uvstride;
360 int uvstride) {
387 uplane += uvstride;
388 vplane += uvstride;
311 ConvertRGB32ToYUV_SSE2(const uint8* rgbframe, uint8* yplane, uint8* uplane, uint8* vplane, int width, int height, int rgbstride, int ystride, int uvstride) argument
352 ConvertRGB32ToYUV_SSE2_Reference(const uint8* rgbframe, uint8* yplane, uint8* uplane, uint8* vplane, int width, int height, int rgbstride, int ystride, int uvstride) argument
H A Dconvert_yuv_to_rgb_c.cc225 int uvstride,
232 const uint8* u_ptr = uplane + (y >> y_shift) * uvstride;
233 const uint8* v_ptr = vplane + (y >> y_shift) * uvstride;
252 int uvstride,
260 const uint8* u_ptr = uplane + (y >> y_shift) * uvstride;
261 const uint8* v_ptr = vplane + (y >> y_shift) * uvstride;
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
244 ConvertYUVAToARGB_C(const uint8* yplane, const uint8* uplane, const uint8* vplane, const uint8* aplane, uint8* rgbaframe, int width, int height, int ystride, int uvstride, int astride, int rgbastride, YUVType yuv_type) argument
/external/chromium_org/media/base/
H A Dyuv_convert.cc568 int uvstride) {
577 uvstride);
588 int uvstride) {
597 uvstride);
650 int uvstride,
660 uvstride,
673 int uvstride,
685 uvstride,
560 ConvertRGB32ToYUV(const uint8* rgbframe, uint8* yplane, uint8* uplane, uint8* vplane, int width, int height, int rgbstride, int ystride, int uvstride) argument
580 ConvertRGB24ToYUV(const uint8* rgbframe, uint8* yplane, uint8* uplane, uint8* vplane, int width, int height, int rgbstride, int ystride, int uvstride) argument
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 99 milliseconds