HomeSort by relevance Sort by last modified time
    Searched full:planes (Results 1 - 25 of 672) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/skia/tests/
ImageGeneratorTest.cpp 17 void* planes[3] = { NULL }; local
24 ig.getYUV8Planes(sizes, planes, NULL, NULL);
26 ig.getYUV8Planes(sizes, planes, rowBytes, NULL);
27 ig.getYUV8Planes(sizes, planes, rowBytes, &colorSpace);
30 planes[0] = planes[1] = planes[2] = &dummy;
33 ig.getYUV8Planes(sizes, planes, rowBytes, &colorSpace);
  /external/chromium_org/third_party/skia/src/core/
SkImageGenerator.cpp 60 bool SkImageGenerator::getYUV8Planes(SkISize sizes[3], void* planes[3], size_t rowBytes[3],
66 bool isValidWithPlanes = (planes) && (rowBytes) &&
67 ((planes[0]) && (planes[1]) && (planes[2]) &&
70 ((NULL == planes) ||
71 ((NULL == planes[0]) && (NULL == planes[1]) && (NULL == planes[2]))) &&
75 // Either we have all planes and rowBytes information or we have none of i
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/
vp9_iface_common.h 16 * the Y, U, and V planes, nor other alignment adjustments that
41 img->planes[VPX_PLANE_Y] = yv12->y_buffer;
42 img->planes[VPX_PLANE_U] = yv12->u_buffer;
43 img->planes[VPX_PLANE_V] = yv12->v_buffer;
44 img->planes[VPX_PLANE_ALPHA] = NULL;
58 yv12->y_buffer = img->planes[VPX_PLANE_Y];
59 yv12->u_buffer = img->planes[VPX_PLANE_U];
60 yv12->v_buffer = img->planes[VPX_PLANE_V];
  /frameworks/base/tests/RenderScriptTests/ShadersTest/res/raw/
depth_fs.glsl 4 // Near and far planes from the projection
  /external/libvpx/libvpx/vp9/
vp9_iface_common.h 16 * the Y, U, and V planes, nor other alignment adjustments that
37 img->planes[VPX_PLANE_Y] = yv12->y_buffer;
38 img->planes[VPX_PLANE_U] = yv12->u_buffer;
39 img->planes[VPX_PLANE_V] = yv12->v_buffer;
40 img->planes[VPX_PLANE_ALPHA] = yv12->alpha_buffer;
54 yv12->y_buffer = img->planes[VPX_PLANE_Y];
55 yv12->u_buffer = img->planes[VPX_PLANE_U];
56 yv12->v_buffer = img->planes[VPX_PLANE_V];
57 yv12->alpha_buffer = img->planes[VPX_PLANE_ALPHA];
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/
vp9_iface_common.h 16 * the Y, U, and V planes, nor other alignment adjustments that
37 img->planes[VPX_PLANE_Y] = yv12->y_buffer;
38 img->planes[VPX_PLANE_U] = yv12->u_buffer;
39 img->planes[VPX_PLANE_V] = yv12->v_buffer;
40 img->planes[VPX_PLANE_ALPHA] = yv12->alpha_buffer;
55 yv12->y_buffer = img->planes[VPX_PLANE_Y];
56 yv12->u_buffer = img->planes[VPX_PLANE_U];
57 yv12->v_buffer = img->planes[VPX_PLANE_V];
58 yv12->alpha_buffer = img->planes[VPX_PLANE_ALPHA];
  /hardware/samsung_slsi/exynos5/libcsc/
csc.c 93 void *planes[CSC_MAX_PLANES]; member in struct:_CSC_BUFFER
121 (unsigned char *)handle->dst_buffer.planes[CSC_Y_PLANE],
122 (unsigned char *)handle->dst_buffer.planes[CSC_U_PLANE],
123 (unsigned char *)handle->dst_buffer.planes[CSC_V_PLANE],
124 (unsigned char *)handle->src_buffer.planes[CSC_RGB_PLANE],
131 (unsigned char *)handle->dst_buffer.planes[CSC_Y_PLANE],
132 (unsigned char *)handle->dst_buffer.planes[CSC_UV_PLANE],
133 (unsigned char *)handle->src_buffer.planes[CSC_RGB_PLANE],
155 (unsigned char *)handle->dst_buffer.planes[CSC_Y_PLANE],
156 (unsigned char *)handle->src_buffer.planes[CSC_Y_PLANE]
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/its/
ItsUtils.java 127 Plane[] planes = image.getPlanes(); local
137 ByteBuffer buffer = planes[0].getBuffer();
145 int maxRowSize = planes[0].getRowStride();
146 for (int i = 0; i < planes.length; i++) {
147 if (maxRowSize < planes[i].getRowStride()) {
148 maxRowSize = planes[i].getRowStride();
152 for (int i = 0; i < planes.length; i++) {
153 ByteBuffer buffer = planes[i].getBuffer();
154 int rowStride = planes[i].getRowStride();
155 int pixelStride = planes[i].getPixelStride()
208 Plane[] planes = image.getPlanes(); local
    [all...]
  /hardware/samsung_slsi/exynos5/libexynosutils/
exynos5_format_v4l2.c 350 int V4L2_PIX_2_YUV_INFO(unsigned int v4l2_pixel_format, unsigned int * bpp, unsigned int * planes)
355 *planes = 1;
363 *planes = 2;
369 *planes = 3;
376 *planes = 1;
383 *planes = 2;
387 *planes = 3;
399 unsigned int bpp, planes; local
401 if (V4L2_PIX_2_YUV_INFO(v4l2_pixel_format, &bpp, &planes) < 0)
409 unsigned int bpp, planes; local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/docs/man3/
SDL_Overlay.3 10 int planes;
26 Number of planes in the overlay\&. Usually either 1 or 3
  /hardware/samsung_slsi/exynos5/exynos_omx/codecs/exynos_codecs/video/exynos5/mfc_v4l2/dec/src/
ExynosVideoDecoder.c 234 pVideoPlane = &pCtx->pInbuf[i].planes[j];
252 pVideoPlane = &pCtx->pOutbuf[i].planes[j];
843 struct v4l2_plane planes[VIDEO_DECODER_INBUF_PLANES]; local
897 buf.m.planes = planes;
907 pVideoPlane = &pCtx->pInbuf[i].planes[0];
910 buf.m.planes[0].length, PROT_READ | PROT_WRITE,
911 MAP_SHARED, pCtx->hDec, buf.m.planes[0].m.mem_offset);
918 pVideoPlane->allocSize = buf.m.planes[0].length;
933 pVideoPlane = &pCtx->pInbuf[i].planes[0]
962 struct v4l2_plane planes[VIDEO_DECODER_OUTBUF_PLANES]; local
1428 struct v4l2_plane planes[VIDEO_DECODER_INBUF_PLANES]; local
1526 struct v4l2_plane planes[VIDEO_DECODER_OUTBUF_PLANES]; local
1956 struct v4l2_plane planes[VIDEO_DECODER_OUTBUF_PLANES]; local
    [all...]
  /external/chromium_org/third_party/skia/include/core/
SkImageGenerator.h 114 * If planes or rowBytes is NULL or if any entry in planes is NULL or if any entry in rowBytes
116 * return YUV planar data. If it cannot, it should return false. Note that either planes and
118 * entries only. Having only partial planes/rowBytes information is not supported.
120 * If all planes and rowBytes entries are non NULL or non 0, then it should copy the
121 * associated YUV data into those planes of memory supplied by the caller. It should validate
124 bool getYUV8Planes(SkISize sizes[3], void* planes[3], size_t rowBytes[3],
133 virtual bool onGetYUV8Planes(SkISize sizes[3], void* planes[3], size_t rowBytes[3]);
134 virtual bool onGetYUV8Planes(SkISize sizes[3], void* planes[3], size_t rowBytes[3],
  /external/qemu/distrib/sdl-1.2.15/src/video/photon/
SDL_phyuv.c 49 int planes = 0; local
60 planes++;
63 planes++;
66 planes++;
68 return planes;
77 int planes; local
209 planes = grab_ptrs2(overlay->hwdata->channel, overlay->hwdata->FrameData0, overlay->hwdata->FrameData1);
218 /* check for the validness of all planes */
224 SDL_SetError("PgConfigScaler() returns all planes equal NULL\n");
246 overlay->planes = planes
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vpx/src/
vpx_image.c 209 img->planes[VPX_PLANE_PACKED] =
215 img->planes[VPX_PLANE_ALPHA] =
220 img->planes[VPX_PLANE_Y] = data + x + y * img->stride[VPX_PLANE_Y];
224 img->planes[VPX_PLANE_U] = data
228 img->planes[VPX_PLANE_V] = data
232 img->planes[VPX_PLANE_V] = data
236 img->planes[VPX_PLANE_U] = data
255 img->planes[VPX_PLANE_Y] += (signed)(img->d_h - 1) * img->stride[VPX_PLANE_Y];
258 img->planes[VPX_PLANE_U] += (signed)((img->d_h >> img->y_chroma_shift) - 1)
262 img->planes[VPX_PLANE_V] += (signed)((img->d_h >> img->y_chroma_shift) - 1
    [all...]
  /external/libvpx/libvpx/vpx/src/
vpx_image.c 210 img->planes[VPX_PLANE_PACKED] =
216 img->planes[VPX_PLANE_ALPHA] =
221 img->planes[VPX_PLANE_Y] = data + x + y * img->stride[VPX_PLANE_Y];
225 img->planes[VPX_PLANE_U] = data
229 img->planes[VPX_PLANE_V] = data
233 img->planes[VPX_PLANE_V] = data
237 img->planes[VPX_PLANE_U] = data
256 img->planes[VPX_PLANE_Y] += (signed)(img->d_h - 1) * img->stride[VPX_PLANE_Y];
259 img->planes[VPX_PLANE_U] += (signed)((img->d_h >> img->y_chroma_shift) - 1)
263 img->planes[VPX_PLANE_V] += (signed)((img->d_h >> img->y_chroma_shift) - 1
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/src/
vpx_image.c 210 img->planes[VPX_PLANE_PACKED] =
216 img->planes[VPX_PLANE_ALPHA] =
221 img->planes[VPX_PLANE_Y] = data + x + y * img->stride[VPX_PLANE_Y];
225 img->planes[VPX_PLANE_U] = data
229 img->planes[VPX_PLANE_V] = data
233 img->planes[VPX_PLANE_V] = data
237 img->planes[VPX_PLANE_U] = data
256 img->planes[VPX_PLANE_Y] += (signed)(img->d_h - 1) * img->stride[VPX_PLANE_Y];
259 img->planes[VPX_PLANE_U] += (signed)((img->d_h >> img->y_chroma_shift) - 1)
263 img->planes[VPX_PLANE_V] += (signed)((img->d_h >> img->y_chroma_shift) - 1
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/test/
util.h 35 int64_t d = img1->planes[VPX_PLANE_Y][i * img1->stride[VPX_PLANE_Y] + j] -
36 img2->planes[VPX_PLANE_Y][i * img2->stride[VPX_PLANE_Y] + j];
  /external/chromium_org/third_party/mesa/src/docs/
WL_bind_wayland_display.spec 98 A wl_buffer can have several planes, typically in case of planar
101 various planes. The eglQueryWaylandBufferWL function should be
115 in the shader. The naming conventions separates planes by _ and
134 Three planes, samples Y from the first plane to r in
139 Two planes, samples Y from the first plane to r in
143 Two planes, samples Y from the first plane to r in
147 planes by calling eglCreateImageKHR with wl_buffer as
168 for different planes of planar buffer. (Kristian Høgsberg)
  /external/chromium_org/third_party/skia/src/lazy/
SkDiscardablePixelRef.h 52 void* planes[3],
55 return fGenerator->getYUV8Planes(sizes, planes, rowBytes, colorSpace);
  /external/libvpx/libvpx/test/
util.h 35 int64_t d = img1->planes[VPX_PLANE_Y][i * img1->stride[VPX_PLANE_Y] + j] -
36 img2->planes[VPX_PLANE_Y][i * img2->stride[VPX_PLANE_Y] + j];
  /external/mesa3d/docs/
WL_bind_wayland_display.spec 98 A wl_buffer can have several planes, typically in case of planar
101 various planes. The eglQueryWaylandBufferWL function should be
115 in the shader. The naming conventions separates planes by _ and
134 Three planes, samples Y from the first plane to r in
139 Two planes, samples Y from the first plane to r in
143 Two planes, samples Y from the first plane to r in
147 planes by calling eglCreateImageKHR with wl_buffer as
168 for different planes of planar buffer. (Kristian Høgsberg)
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
util.h 35 int64_t d = img1->planes[VPX_PLANE_Y][i * img1->stride[VPX_PLANE_Y] + j] -
36 img2->planes[VPX_PLANE_Y][i * img2->stride[VPX_PLANE_Y] + j];
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_vs.h 52 * shader uses clip planes or gl_ClipDistance.
57 * How many user clipping planes are being uploaded to the vertex shader as
69 * For pre-Gen6 hardware, a bitfield indicating which clipping planes are
70 * enabled. This is used to compact clip planes.
72 * For Gen6 and later hardware, clip planes are not compacted, so this
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_vs.h 52 * shader uses clip planes or gl_ClipDistance.
57 * How many user clipping planes are being uploaded to the vertex shader as
69 * For pre-Gen6 hardware, a bitfield indicating which clipping planes are
70 * enabled. This is used to compact clip planes.
72 * For Gen6 and later hardware, clip planes are not compacted, so this
  /frameworks/base/core/jni/android/graphics/
YuvToJpegEncoder.cpp 77 JSAMPARRAY planes[3]; local
78 planes[0] = y;
79 planes[1] = cb;
80 planes[2] = cr;
108 jpeg_write_raw_data(cinfo, planes, 16);
153 JSAMPARRAY planes[3]; local
154 planes[0] = y;
155 planes[1] = cb;
156 planes[2] = cr;
182 jpeg_write_raw_data(cinfo, planes, 16)
    [all...]

Completed in 820 milliseconds

1 2 3 4 5 6 7 8 91011>>