HomeSort by relevance Sort by last modified time
    Searched refs:yplane (Results 1 - 12 of 12) sorted by null

  /external/chromium_org/media/base/simd/
convert_rgb_to_yuv_ssse3.cc 13 uint8* yplane,
22 ConvertARGBToYUVRow_SSSE3(rgbframe, yplane, uplane, vplane, width);
24 yplane += ystride;
26 ConvertARGBToYUVRow_SSSE3(rgbframe, yplane, NULL, NULL, width);
28 yplane += ystride;
35 ConvertARGBToYUVRow_SSSE3(rgbframe, yplane, uplane, vplane, width);
39 uint8* yplane,
48 ConvertRGBToYUVRow_SSSE3(rgbframe, yplane, uplane, vplane, width);
50 yplane += ystride;
52 ConvertRGBToYUVRow_SSSE3(rgbframe, yplane, NULL, NULL, width)
    [all...]
convert_rgb_to_yuv.h 17 uint8* yplane,
27 uint8* yplane,
37 uint8* yplane,
47 uint8* yplane,
57 uint8* yplane,
67 uint8* yplane,
convert_rgb_to_yuv_c.cc 19 uint8* yplane,
41 yplane[j] = clip_byte(((pixel[r] * 66 + pixel[g] * 129 +
51 yplane += ystride;
60 uint8* yplane,
72 yplane[j] = clip_byte(((pixel[2] * 66 + pixel[1] * 129 +
83 yplane += ystride;
convert_yuv_to_rgb.h 16 MEDIA_EXPORT void ConvertYUVToRGB32_C(const uint8* yplane,
27 MEDIA_EXPORT void ConvertYUVToRGB32Row_C(const uint8* yplane,
34 MEDIA_EXPORT void ConvertYUVAToARGB_C(const uint8* yplane,
47 MEDIA_EXPORT void ConvertYUVAToARGBRow_C(const uint8* yplane,
55 MEDIA_EXPORT void ConvertYUVToRGB32_SSE(const uint8* yplane,
66 MEDIA_EXPORT void ConvertYUVToRGB32_MMX(const uint8* yplane,
77 MEDIA_EXPORT void ConvertYUVAToARGB_MMX(const uint8* yplane,
129 MEDIA_EXPORT void ConvertYUVToRGB32Row_MMX(const uint8* yplane,
136 MEDIA_EXPORT void ConvertYUVAToARGBRow_MMX(const uint8* yplane,
144 MEDIA_EXPORT void ConvertYUVToRGB32Row_SSE(const uint8* yplane,
    [all...]
convert_yuv_to_rgb_x86.cc 17 void ConvertYUVToRGB32_MMX(const uint8* yplane,
30 const uint8* y_ptr = yplane + y * ystride;
45 void ConvertYUVAToARGB_MMX(const uint8* yplane,
60 const uint8* y_ptr = yplane + y * ystride;
77 void ConvertYUVToRGB32_SSE(const uint8* yplane,
90 const uint8* y_ptr = yplane + y * ystride;
convert_rgb_to_yuv_sse2.cc 312 uint8* yplane,
323 yplane,
324 yplane + ystride,
329 yplane += 2 * ystride;
340 ConvertRGBToYUV_V1H2(rgbframe, yplane, uplane, vplane);
342 yplane += 2;
349 ConvertRGBToYUV_V1H1(rgbframe, yplane, uplane, vplane);
353 uint8* yplane,
368 yplane + i,
369 yplane + ystride + i
    [all...]
convert_yuv_to_rgb_c.cc 218 void ConvertYUVToRGB32_C(const uint8* yplane,
231 const uint8* y_ptr = yplane + y * ystride;
244 void ConvertYUVAToARGB_C(const uint8* yplane,
259 const uint8* y_ptr = yplane + y * ystride;
  /external/chromium_org/media/base/
yuv_convert.h 63 MEDIA_EXPORT void ConvertYUVToRGB32(const uint8* yplane,
76 MEDIA_EXPORT void ConvertYUVAToARGB(const uint8* yplane,
91 MEDIA_EXPORT void ScaleYUVToRGB32(const uint8* yplane,
107 // |yplane|, etc and |rgbframe| should point to the top-left pixels of the
109 MEDIA_EXPORT void ScaleYUVToRGB32WithRect(const uint8* yplane,
126 uint8* yplane,
136 uint8* yplane,
146 uint8* yplane,
153 uint8* yplane,
yuv_convert.cc 571 uint8* yplane,
580 yplane,
591 uint8* yplane,
600 yplane,
611 uint8* yplane,
618 yplane[0] = src[0];
620 yplane[1] = src[2];
623 yplane += 2;
628 yplane[0] = src[0];
629 yplane[1] = src[2]
    [all...]
  /external/chromium_org/content/browser/renderer_host/media/
video_capture_controller.cc 335 uint8* yplane = NULL;
337 yplane = reinterpret_cast<uint8*>(buffer->data());
339 yplane +
405 yplane,
426 yplane,
  /external/chromium_org/content/browser/media/capture/
desktop_capture_device_aura.cc 61 uint8* yplane = target->data(media::VideoFrame::kYPlane) + local
76 yplane[x] = alpha_blend(alpha, color_y, yplane[x]);
  /external/chromium_org/third_party/webrtc/common_video/libyuv/
webrtc_libyuv.cc 158 const uint8_t* yplane = src_frame; local
161 return libyuv::NV12ToRGB565(yplane, width,

Completed in 221 milliseconds