HomeSort by relevance Sort by last modified time
    Searched full:yplane (Results 1 - 16 of 16) 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_yuv_to_rgb_x86.cc 16 void ConvertYUVToRGB32_MMX(const uint8* yplane,
29 const uint8* y_ptr = yplane + y * ystride;
43 void ConvertYUVAToARGB_MMX(const uint8* yplane,
58 const uint8* y_ptr = yplane + y * ystride;
74 void ConvertYUVToRGB32_SSE(const uint8* yplane,
87 const uint8* y_ptr = yplane + y * ystride;
convert_yuv_to_rgb.h 16 MEDIA_EXPORT void ConvertYUVToRGB32_C(const uint8* yplane,
27 MEDIA_EXPORT void ConvertYUVToRGB32Row_C(const uint8* yplane,
33 MEDIA_EXPORT void ConvertYUVAToARGB_C(const uint8* yplane,
46 MEDIA_EXPORT void ConvertYUVAToARGBRow_C(const uint8* yplane,
53 MEDIA_EXPORT void ConvertYUVToRGB32_SSE(const uint8* yplane,
64 MEDIA_EXPORT void ConvertYUVToRGB32_MMX(const uint8* yplane,
75 MEDIA_EXPORT void ConvertYUVAToARGB_MMX(const uint8* yplane,
122 MEDIA_EXPORT void ConvertYUVToRGB32Row_MMX(const uint8* yplane,
128 MEDIA_EXPORT void ConvertYUVAToARGBRow_MMX(const uint8* yplane,
135 MEDIA_EXPORT void ConvertYUVToRGB32Row_SSE(const uint8* yplane,
    [all...]
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_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 211 void ConvertYUVToRGB32_C(const uint8* yplane,
224 const uint8* y_ptr = yplane + y * ystride;
236 void ConvertYUVAToARGB_C(const uint8* yplane,
251 const uint8* y_ptr = yplane + y * ystride;
  /frameworks/av/libvideoeditor/vss/video_filters/src/
M4VIFI_ResizeYUVtoBGR565.c 128 if (u32_width_out >= u32_width_in[YPlane])
130 u32_x_inc[YPlane] = ((u32_width_in[YPlane]-1) * MAX_SHORT) / (u32_width_out-1);
134 u32_x_inc[YPlane] = (u32_width_in[YPlane] * MAX_SHORT) / (u32_width_out);
138 if (u32_height_out >= u32_height_in[YPlane])
140 u32_y_inc[YPlane] = ((u32_height_in[YPlane]-1) * MAX_SHORT) / (u32_height_out-1);
144 u32_y_inc[YPlane] = (u32_height_in[YPlane] * MAX_SHORT) / (u32_height_out)
    [all...]
M4VIFI_ResizeYUVtoRGB565.c 132 if (u32_width_out >= u32_width_in[YPlane])
134 u32_x_inc[YPlane] = ((u32_width_in[YPlane]-1) * MAX_SHORT) / (u32_width_out-1);
138 u32_x_inc[YPlane] = (u32_width_in[YPlane] * MAX_SHORT) / (u32_width_out);
142 if (u32_height_out >= u32_height_in[YPlane])
144 u32_y_inc[YPlane] = ((u32_height_in[YPlane]-1) * MAX_SHORT) / (u32_height_out-1);
148 u32_y_inc[YPlane] = (u32_height_in[YPlane] * MAX_SHORT) / (u32_height_out)
    [all...]
  /external/chromium_org/media/base/
yuv_convert.h 56 MEDIA_EXPORT void ConvertYUVToRGB32(const uint8* yplane,
69 MEDIA_EXPORT void ConvertYUVAToARGB(const uint8* yplane,
84 MEDIA_EXPORT void ScaleYUVToRGB32(const uint8* yplane,
100 // |yplane|, etc and |rgbframe| should point to the top-left pixels of the
102 MEDIA_EXPORT void ScaleYUVToRGB32WithRect(const uint8* yplane,
119 uint8* yplane,
129 uint8* yplane,
139 uint8* yplane,
146 uint8* yplane,
yuv_convert.cc 524 uint8* yplane,
533 yplane,
544 uint8* yplane,
553 yplane,
564 uint8* yplane,
571 yplane[0] = src[0];
573 yplane[1] = src[2];
576 yplane += 2;
581 yplane[0] = src[0];
582 yplane[1] = src[2]
    [all...]
  /external/chromium_org/content/browser/renderer_host/media/
video_capture_controller.cc 313 uint8* yplane = reinterpret_cast<uint8*>(buffer->data());
315 yplane +
388 yplane,
399 yplane,
desktop_capture_device_aura.cc 57 uint8* yplane = target->data(media::VideoFrame::kYPlane) + local
72 yplane[x] = alpha_blend(alpha, color_y, yplane[x]);
  /frameworks/av/libvideoeditor/vss/common/inc/
M4VIFI_Defines.h 137 #define YPlane 0
  /external/opencv/ml/src/
mlcnn.cpp     [all...]
  /frameworks/base/graphics/java/android/graphics/
ImageFormat.java 180 * {@link android.media.Image.Plane#getPixelStride() yPlane.getPixelStride()}).</p>

Completed in 174 milliseconds