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

1 2 3 4 5

  /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 */
  /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/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);
  /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_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;
392 buffer.m.planes = &(stream->frame.frame[idx].planes[0])
485 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 490 struct v4l2_plane planes[VIDEO_MAX_PLANES]; local
494 memset(&planes, 0, sizeof(planes));
497 dqbuf.m.planes = planes;
521 memset(&planes, 0, sizeof(planes));
524 dqbuf.m.planes = planes;
598 qbuf.m.planes = qbuf_planes
    [all...]
  /external/chromium_org/gpu/command_buffer/tests/
gl_test_utils.cc 186 uint8 planes[2]; member in struct:__anon12554::BitmapInfoHeader
229 Set16BitValue(bih.planes, 1);
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_yuv_sw.c 118 Uint8 *planes[3]; member in struct:private_yuvhwdata
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/ps2gs/
SDL_gsyuv.c 62 Uint8 *planes[3]; member in struct:private_yuvhwdata
150 overlay->pixels = hwdata->planes;
162 overlay->planes = 3;
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/osal/
Exynos_OSAL_Android.cpp 76 OMX_OUT OMX_PTR planes)
85 ExynosVideoPlane *vplanes = (ExynosVideoPlane *) planes;
190 OMX_OUT OMX_PTR planes)
199 ret = Exynos_OSAL_LockANBHandle((OMX_U32)pBuf, width, height, format, pStride, planes);
469 ExynosVideoPlane planes[MAX_BUFFER_PLANE]; local
511 &stride, planes);
512 pExynosPort->extendBufferHeader[i].buf_fd[0] = planes[0].fd;
513 pExynosPort->extendBufferHeader[i].pYUVBuf[0] = planes[0].addr;
514 pExynosPort->extendBufferHeader[i].buf_fd[1] = planes[1].fd;
515 pExynosPort->extendBufferHeader[i].pYUVBuf[1] = planes[1].addr
    [all...]
  /hardware/samsung_slsi/exynos5/gralloc/
gralloc.cpp 234 int err, planes, fd, fd1, fd2 = 0; local
257 planes = 3;
268 planes = 2;
280 planes = 1;
294 if (planes == 1) {
301 if (planes == 3) {

Completed in 581 milliseconds

1 2 3 4 5