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

  /external/opencv3/modules/cudacodec/src/cuda/
rgb_to_yv12.cu 82 GlobPtr<uchar> u_plane = globPtr(y_plane.data + planeSize, dst.step / 2);
83 GlobPtr<uchar> v_plane = globPtr(u_plane.data + (planeSize / 4), dst.step / 2);
103 u_plane(y / 2, x / 2) = u_val;
119 GlobPtr<uchar> u_plane = globPtr(y_plane.data + planeSize, dst.step / 2);
120 GlobPtr<uchar> v_plane = globPtr(u_plane.data + (planeSize / 4), dst.step / 2);
140 u_plane(y / 2, x / 2) = u_val;
  /external/webrtc/webrtc/tools/converter/
converter.h 80 uint8_t* u_plane,
converter.cc 111 uint8_t* u_plane,
117 AddYUVPlaneToFile(u_plane, u_plane_size, output_file) &&
  /external/webrtc/webrtc/common_video/
video_frame_buffer.cc 142 const uint8_t* u_plane,
150 u_plane_(u_plane),
226 const uint8_t* u_plane = buffer->data(kUPlane) + local
233 u_plane, buffer->stride(kUPlane),
  /external/webrtc/talk/media/base/
fakevideorenderer.h 137 const uint8_t* u_plane = frame->GetUPlane(); local
139 const uint8_t* u_pos = u_plane;
  /external/autotest/client/deps/glbench/src/
yuvtest.cc 140 const char* u_plane = pixels + luma_size; local
173 0, GL_LUMINANCE, GL_UNSIGNED_BYTE, u_plane);
185 *buf_uv_ptr++ = u_plane[i];
  /external/webrtc/webrtc/common_video/include/
video_frame_buffer.h 118 const uint8_t* u_plane,
  /external/webrtc/webrtc/tools/frame_analyzer/
video_quality_analysis.cc 37 int u_plane = half_width * half_height; // I420 U plane. local
40 return y_plane + u_plane + v_plane;
  /cts/apps/CameraITS/pymodules/its/
image.py 414 def convert_yuv420_planar_to_rgb_image(y_plane, u_plane, v_plane,
422 u_plane: The packed 8-bit U plane.
433 u = numpy.subtract(u_plane, yuv_off[1]).view(numpy.int8)

Completed in 357 milliseconds