/external/libdrm/tests/planetest/ |
dev.h | 57 struct sp_plane *planes; member in struct:sp_dev
|
/external/libvpx/libvpx/vp9/decoder/ |
vp9_decoder.h | 35 /* dqcoeff are shared by all the planes. So planes must be decoded serially */ 51 /* dqcoeff are shared by all the planes. So planes must be decoded serially */
|
/external/mesa3d/src/gallium/drivers/nvc0/ |
nvc0_program.h | 40 uint8_t clip_enable; /* mask of defined clip planes */
|
/external/opencv/cv/src/ |
cvtemplmatch.cpp | 159 CvMat* planes[] = { 0, 0, 0, 0 }; local 167 planes[k] = templ_depth == max_depth ? dst : 169 cvSplit( templ, planes[0], planes[1], planes[2], planes[3] ); 170 src = planes[k]; 171 planes[k] = 0; 203 CvMat* planes[] = { 0, 0, 0, 0 }; local 232 planes[i] = dst1 [all...] |
/external/skia/src/codec/ |
SkCodecImageGenerator.cpp | 54 bool SkCodecImageGenerator::onGetYUV8Planes(SkISize sizes[3], void* planes[3], size_t rowBytes[3], 61 // If planes is NULL, we just need to return the size. 62 if (nullptr == planes) { 91 SkCodec::Result result = fCodec->getYUV8Planes(sizeInfo, planes);
|
/external/skia/src/gpu/ |
GrYUVProvider.h | 60 * planes[] will have already been allocated by the client (based on the worst-case sizes 65 virtual bool onGetYUVPlanes(SkISize sizes[kPlaneCount], void* planes[kPlaneCount],
|
/external/vboot_reference/utility/ |
image_types.c | 24 uint16_t Planes; // Must be 1 for x86 48 bhdr->Planes == 1 &&
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/ |
encode_test_driver.cc | 117 match = (memcmp(img1->planes[VPX_PLANE_Y] + i * img1->stride[VPX_PLANE_Y], 118 img2->planes[VPX_PLANE_Y] + i * img2->stride[VPX_PLANE_Y], 123 match = (memcmp(img1->planes[VPX_PLANE_U] + i * img1->stride[VPX_PLANE_U], 124 img2->planes[VPX_PLANE_U] + i * img2->stride[VPX_PLANE_U], 127 match = (memcmp(img1->planes[VPX_PLANE_V] + i * img1->stride[VPX_PLANE_V], 128 img2->planes[VPX_PLANE_V] + i * img2->stride[VPX_PLANE_V],
|
/packages/apps/Camera2/src/com/android/camera/one/v2/camera2proxy/ |
AndroidImageProxy.java | 110 Image.Plane[] planes; local 111 planes = mImage.getPlanes(); 112 if (planes == null) { 115 List<ImageProxy.Plane> wrappedPlanes = new ArrayList<>(planes.length); 116 for (int i = 0; i < planes.length; i++) { 117 wrappedPlanes.add(new Plane(planes[i]));
|
/external/libvpx/libvpx/ |
tools_common.c | 100 ptr = yuv_frame->planes[ 104 ptr = yuv_frame->planes[ 108 ptr = yuv_frame->planes[plane]; 241 const unsigned char *buf = img->planes[plane]; 259 unsigned char *buf = img->planes[plane]; 321 (uint16_t *)(src->planes[plane] + y * src->stride[plane]); 323 (uint16_t *)(dst->planes[plane] + y * dst->stride[plane]); 361 uint8_t *p_src = src->planes[plane] + y * src->stride[plane]; 363 (uint16_t *)(dst->planes[plane] + y * dst->stride[plane]); 408 (uint16_t *)(src->planes[plane] + y * src->stride[plane]) [all...] |
vpxdec.c | 59 NULL, "flipuv", 0, "Flip the chroma planes in the output"); 142 return I420Scale_16((uint16_t*)src->planes[VPX_PLANE_Y], 144 (uint16_t*)src->planes[VPX_PLANE_U], 146 (uint16_t*)src->planes[VPX_PLANE_V], 149 (uint16_t*)dst->planes[VPX_PLANE_Y], 151 (uint16_t*)dst->planes[VPX_PLANE_U], 153 (uint16_t*)dst->planes[VPX_PLANE_V], 161 return I420Scale(src->planes[VPX_PLANE_Y], src->stride[VPX_PLANE_Y], 162 src->planes[VPX_PLANE_U], src->stride[VPX_PLANE_U], 163 src->planes[VPX_PLANE_V], src->stride[VPX_PLANE_V] 947 const int *planes = flipuv ? PLANES_YVU : PLANES_YUV; local [all...] |
/external/libvpx/libvpx/vp9/common/ |
vp9_thread_common.c | 93 struct macroblockd_plane planes[MAX_MB_PLANE], 102 else if (planes[1].subsampling_y == 1 && planes[1].subsampling_x == 1) 104 else if (planes[1].subsampling_y == 0 && planes[1].subsampling_x == 0) 121 vp9_setup_dst_planes(planes, frame_buffer, mi_row, mi_col); 125 vp9_filter_block_plane_ss00(cm, &planes[0], mi_row, lfm); 129 vp9_filter_block_plane_ss11(cm, &planes[plane], mi_row, lfm); 132 vp9_filter_block_plane_ss00(cm, &planes[plane], mi_row, lfm); 135 vp9_filter_block_plane_non420(cm, &planes[plane], mi + mi_col [all...] |
/external/libjpeg-turbo/java/doc/org/libjpegturbo/turbojpeg/ |
YUVImage.html | 108 image format consisting of Y, Cb, and Cr image planes. 126 chrominance planes would be 18 x 35 bytes. If you specify a line padding of 128 each of the chrominance planes would be 20 x 35 bytes.</div> 194 <td class="colOne"><code><strong><a href="../../../org/libjpegturbo/turbojpeg/YUVImage.html#YUVImage(byte[][],%20int[],%20int,%20int[],%20int,%20int)">YUVImage</a></strong>(byte[][] planes, 201 planes.</div> 220 planes, and allocate memory for the image planes.</div> 251 buffer rather than separate image planes.)</div> 263 <div class="block">Returns the offsets (in bytes) of each plane within the planes of a larger 271 stored in a unified buffer rather than separate image planes.)</div [all...] |
/external/dng_sdk/source/ |
dng_image.cpp | 91 uint32 planes, 95 , fPlanes (planes) 100 if (bounds.IsEmpty () || planes == 0 || PixelSize () == 0) 705 // Move the overlapping planes. 707 if (temp.fPlane < Planes ()) 711 Planes () - temp.fPlane); 755 uint32 planes) 775 destTile.CopyArea (srcTile, srcTileArea, srcPlane, dstPlane, planes); 788 uint32 planes) const 811 if (!destTile.EqualArea (srcTile, srcTileArea, plane, planes)) [all...] |
dng_opcodes.cpp | 321 fDstImage.Planes (), 380 image->Planes (), 453 fImage.Planes(), pad16Bytes); 466 fImage.Planes (), 479 dng_pixel_buffer buffer(tile, 0, fImage.Planes (), fPixelType,
|
dng_filter_task.cpp | 35 , fSrcPlanes (srcImage.Planes ()) 39 , fDstPlanes (dstImage.Planes ())
|
/external/opencv3/doc/tutorials/core/discrete_fourier_transform/ |
discrete_fourier_transform.markdown | 72 Mat planes[] = {Mat_<float>(padded), Mat::zeros(padded.size(), CV_32F)}; 74 merge(planes, 2, complexI); // Add to the expanded another plane with zeros 89 split(complexI, planes); // planes[0] = Re(DFT(I), planes[1] = Im(DFT(I)) 90 magnitude(planes[0], planes[1], planes[0]);// planes[0] = magnitude 91 Mat magI = planes[0] [all...] |
/frameworks/base/media/java/android/media/ |
Image.java | 79 * formats and the planes is as follows: 98 * <td>A luminance plane followed by the Cb and Cr chroma planes. 99 * The chroma planes have half the width and height of the luminance 106 * <td>A luminance plane followed by the Cb and Cr chroma planes. 107 * The chroma planes have half the width and the full height of the luminance 114 * <td>A luminance plane followed by the Cb and Cr chroma planes. 115 * The chroma planes have the same width and height as that of the luminance 122 * <td>A R (red) plane followed by the G (green) and B (blue) planes. 123 * All planes have the same widths and heights. 131 * A (alpha) planes. All planes have the same widths and heights [all...] |
/external/skia/include/core/ |
SkImageGenerator.h | 132 * If planes or rowBytes is NULL or if any entry in planes is NULL or if any entry in rowBytes 134 * return YUV planar data. If it cannot, it should return false. Note that either planes and 136 * entries only. Having only partial planes/rowBytes information is not supported. 138 * If all planes and rowBytes entries are non NULL or non 0, then it should copy the 139 * associated YUV data into those planes of memory supplied by the caller. It should validate 142 bool getYUV8Planes(SkISize sizes[3], void* planes[3], size_t rowBytes[3], 251 virtual bool onGetYUV8Planes(SkISize sizes[3], void* planes[3], size_t rowBytes[3]); 252 virtual bool onGetYUV8Planes(SkISize sizes[3], void* planes[3], size_t rowBytes[3],
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/ |
tools_common.c | 99 ptr = yuv_frame->planes[ 103 ptr = yuv_frame->planes[ 107 ptr = yuv_frame->planes[plane]; 224 const unsigned char *buf = img->planes[plane]; 241 unsigned char *buf = img->planes[plane];
|
/device/moto/shamu/camera/QCamera/HAL2/core/src/ |
QCameraStream_Preview.cpp | 82 uint32_t planes[VIDEO_MAX_PLANES]; local 92 planes[i] = mFrameOffsetInfo.mp[i].len; 103 /* Plane 0 needs to be set seperately. Set other planes 105 mDisplayBuf[i].planes[0].length = planes[0]; 106 mDisplayBuf[i].planes[0].m.userptr = mPreviewMemory.private_buffer_handle[i]->fd; 107 mDisplayBuf[i].planes[0].data_offset = mFrameOffsetInfo.mp[0].offset; 108 mDisplayBuf[i].planes[0].reserved[0] =0; 110 mDisplayBuf[i].planes[j].length = planes[j] [all...] |
/external/libdrm/man/ |
drm-kms.xml | 55 <emphasis>Planes</emphasis>, <emphasis>Encoders</emphasis>, 82 <term>Planes</term> 86 scanout process. Planes are associated with a frame-buffer to 89 with or overlayed on top of a CRTC. Planes are not provided by 90 all hardware and the number of available planes is limited. If 91 planes are not available or if not enough planes are 152 <emphasis>Planes</emphasis>.</para> 209 <title>Planes</title> 210 <para>Planes are controlled independently from CRTCs. That is, a call t [all...] |
/cts/tests/tests/media/src/android/media/cts/ |
CodecImage.java | 58 * formats and the planes is as follows: 77 * <td>A luminance plane followed by the Cb and Cr chroma planes. 78 * The chroma planes have half the width and height of the luminance 151 * Get the array of pixel planes for this CodecImage. The number of planes is 171 * <p>The number and meaning of the planes in an CodecImage are determined by the
|
/external/libvpx/libvpx/test/ |
encode_test_driver.cc | 154 match = (memcmp(img1->planes[VPX_PLANE_Y] + i * img1->stride[VPX_PLANE_Y], 155 img2->planes[VPX_PLANE_Y] + i * img2->stride[VPX_PLANE_Y], 160 match = (memcmp(img1->planes[VPX_PLANE_U] + i * img1->stride[VPX_PLANE_U], 161 img2->planes[VPX_PLANE_U] + i * img2->stride[VPX_PLANE_U], 164 match = (memcmp(img1->planes[VPX_PLANE_V] + i * img1->stride[VPX_PLANE_V], 165 img2->planes[VPX_PLANE_V] + i * img2->stride[VPX_PLANE_V],
|
/external/drm_hwcomposer/ |
platformnv.h | 60 // on the overlay planes. 72 std::vector<DrmPlane *> *planes);
|