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

1 2 3 4 5

  /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);
  /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/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/qemu/distrib/sdl-1.2.15/src/video/bwindow/
SDL_sysyuv.cc 133 int planes; local
144 /* count planes */
145 planes = count_planes(format);
146 if (planes == 0)
151 if (planes == 3)
213 overlay->planes = planes;
214 overlay->pitches = (Uint16*)SDL_calloc(overlay->planes, sizeof(Uint16));
215 overlay->pixels = (Uint8**)SDL_calloc(overlay->planes, sizeof(Uint8*));
  /external/qemu/distrib/sdl-1.2.15/src/video/directfb/
SDL_DirectFB_yuv.c 47 Uint8 *planes[3]; member in struct:private_yuvhwdata
192 overlay->pixels = hwdata->planes;
197 overlay->planes = 3;
200 overlay->planes = 1;
230 /* Add the two extra planes */
  /external/qemu/distrib/sdl-1.2.15/src/video/ps3/
SDL_ps3yuv.c 65 Uint8 * planes[3]; member in struct:private_yuvhwdata
174 overlay->pixels = hwdata->planes;
186 overlay->planes = 3;
  /external/qemu/distrib/sdl-1.2.15/src/video/windx5/
SDL_dx5yuv.c 45 Uint8 *planes[3]; member in struct:private_yuvhwdata
181 overlay->pixels = hwdata->planes;
185 overlay->planes = 3;
188 overlay->planes = 1;
227 /* Add the two extra planes */
  /cts/tests/tests/media/src/android/media/cts/
CodecUtils.java 42 Image.Plane[] planes = mImage.getPlanes(); local
44 mPlanes = new Plane[planes.length];
45 for (int i = 0; i < planes.length; i++) {
46 mPlanes[i] = new PlaneWrapper(planes[i]);
  /external/chromium_org/media/base/
video_frame_unittest.cc 102 int planes = VideoFrame::NumPlanes(format); local
103 for (int plane = 0; plane < planes; plane++) {
238 // planes if filled with kFillByte (defined in ExpectFrameExtents).
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/
VideoRenderer.java 53 * data. If |yuvPlanes| is null, new planes of the appropriate sizes are
86 * Copy the planes out of |source| into |this| and return |this|. Calling
119 ByteBuffer[] planes = new ByteBuffer[3]; local
120 planes[0] = ByteBuffer.wrap(yuvData, 0, planeSize);
121 planes[1] = ByteBuffer.wrap(yuvData, planeSize, planeSize / 4);
122 planes[2] = ByteBuffer.wrap(yuvData, planeSize + planeSize / 4,
126 yuvPlanes[i].put(planes[i]);
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
vp9_loopfilter.h 116 struct macroblockd_plane planes[MAX_MB_PLANE],
122 struct macroblockd_plane planes[MAX_MB_PLANE]; member in struct:LoopFilterWorkerData
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_regions.h 159 } planes[3]; member in struct:intel_image_format
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_regions.h 159 } planes[3]; member in struct:intel_image_format
  /external/opencv/cvaux/src/
camshift.cpp 86 uchar* planes[CV_MAX_DIM]; local
116 cvGetRawData( m_color_planes[i], &planes[i], &plane_step, &size );
132 planes[0][x] = (uchar)val0;
134 planes[1][x] = (uchar)val1;
136 planes[2][x] = (uchar)val2;
142 planes[0][x] = 0;
144 planes[1][x] = 0;
146 planes[2][x] = 0;
151 planes[i] += plane_step;
  /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...]
  /frameworks/native/opengl/libagl/
vertex.cpp 119 int planes = c->clipPlanes.enable; local
120 while (planes) {
121 const int i = 31 - gglClz(planes);
122 planes &= ~(1<<i);
  /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...]
  /device/lge/mako/camera/QCamera/HAL/core/src/
QCameraHWI_Record.cpp 388 uint32_t planes[VIDEO_MAX_PLANES]; local
408 planes[0] = dim.video_frame_offset.mp[0].len;
409 planes[1] = dim.video_frame_offset.mp[1].len;
438 mHalCamCtrl->mRecordingMemory.cbcr_offset = planes[0];
495 /* Plane 0 needs to be set seperately. Set other planes
497 mRecordBuf.video.video.buf.mp[cnt].planes[0].reserved[0] =
499 mRecordBuf.video.video.buf.mp[cnt].planes[0].length = planes[0];
500 mRecordBuf.video.video.buf.mp[cnt].planes[0].m.userptr =
503 mRecordBuf.video.video.buf.mp[cnt].planes[j].length = planes[j]
    [all...]
  /device/lge/mako/camera/QCamera/stack/mm-camera-test/src/
mm_qcamera_preview.c 154 int y_off = newFrame->buffer + newFrame->planes[0].data_offset;
155 //int cbcr_off = newFrame->buffer + newFrame->planes[1].data_offset;//newFrame->buffer + newFrame->planes[0].length;
156 int cbcr_off = newFrame->buffer + newFrame->planes[0].length;
158 CDBG("%s: Y_off length = %d cbcr_off length = %d", __func__, newFrame->planes[0].length,newFrame->planes[1].length);
160 write(file_fd, (const void *)(y_off), newFrame->planes[0].length);
162 (newFrame->planes[1].length * newFrame->num_planes));
164 CDBG("%s: CBCR = %d", __func__, newFrame->planes[j].data_offset);
166 (newFrame->planes[i].data_offset), w * h / 2 * main_422)
337 uint32_t planes[VIDEO_MAX_PLANES]; local
    [all...]
  /device/lge/mako/camera/
QCameraHWI_Preview.cpp 451 uint32_t planes[VIDEO_MAX_PLANES]; local
489 planes[i] = dim.display_frame_offset.mp[i].len;
508 mDisplayStreamBuf.frame[i].cbcr_off = planes[0];
553 /* Plane 0 needs to be set seperately. Set other planes
555 mDisplayBuf.preview.buf.mp[i].planes[0].length = planes[0];
556 mDisplayBuf.preview.buf.mp[i].planes[0].m.userptr = mDisplayStreamBuf.frame[i].fd;
557 mDisplayBuf.preview.buf.mp[i].planes[0].data_offset = 0;
558 mDisplayBuf.preview.buf.mp[i].planes[0].reserved[0] =
561 mDisplayBuf.preview.buf.mp[i].planes[j].length = planes[j]
    [all...]
QCameraHWI_Record.cpp 387 uint32_t planes[VIDEO_MAX_PLANES]; local
407 planes[0] = dim.video_frame_offset.mp[0].len;
408 planes[1] = dim.video_frame_offset.mp[1].len;
437 mHalCamCtrl->mRecordingMemory.cbcr_offset = planes[0];
494 /* Plane 0 needs to be set seperately. Set other planes
496 mRecordBuf.video.video.buf.mp[cnt].planes[0].reserved[0] =
498 mRecordBuf.video.video.buf.mp[cnt].planes[0].length = planes[0];
499 mRecordBuf.video.video.buf.mp[cnt].planes[0].m.userptr =
502 mRecordBuf.video.video.buf.mp[cnt].planes[j].length = planes[j]
    [all...]
  /device/lge/mako/camera/mm-camera-interface/
mm_camera_stream.c 197 struct v4l2_plane planes[VIDEO_MAX_PLANES]; local
202 vb.m.planes = &planes[0];
212 __func__, i, vb.m.planes[i].reserved[0],
213 vb.m.planes[i].data_offset);
214 stream->frame.frame[idx].planes[i].reserved[0] =
215 vb.m.planes[i].reserved[0];
216 stream->frame.frame[idx].planes[i].data_offset =
217 vb.m.planes[i].data_offset;
396 buffer.m.planes = &(stream->frame.frame[idx].planes[0])
455 uint32_t planes[VIDEO_MAX_PLANES]; local
    [all...]
  /device/moto/shamu/camera/QCamera/HAL/core/src/
QCameraHWI_Preview.cpp 290 uint32_t planes[VIDEO_MAX_PLANES]; local
445 uint32_t planes[VIDEO_MAX_PLANES]; local
463 planes[i] = mFrameOffsetInfo.mp[i].len;
474 planes[0], 0,
479 /* Plane 0 needs to be set seperately. Set other planes
481 mDisplayBuf[i].planes[0].length = planes[0];
482 mDisplayBuf[i].planes[0].m.userptr = mHalCamCtrl->mPreviewMemory.private_buffer_handle[i]->fd;
483 mDisplayBuf[i].planes[0].data_offset = mFrameOffsetInfo.mp[0].offset;
484 mDisplayBuf[i].planes[0].reserved[0] =0;// mHalCamCtrl->mPreviewMemory.addr_offset[i]; // mDisplayBuf.preview.buf.mp (…)
524 uint32_t planes[VIDEO_MAX_PLANES]; local
    [all...]
  /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/chromium_org/content/common/gpu/media/
v4l2_image_processor.cc 492 struct v4l2_plane planes[VIDEO_MAX_PLANES]; local
496 memset(&planes, 0, sizeof(planes));
499 dqbuf.m.planes = planes;
523 memset(&planes, 0, sizeof(planes));
526 dqbuf.m.planes = planes;
600 qbuf.m.planes = qbuf_planes
    [all...]

Completed in 1499 milliseconds

1 2 3 4 5