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

1 2 3 4 5 6 7

  /external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
Dome.java 58 private int planes; field in class:Dome
75 * @param planes
76 * The number of planes along the Z-axis. Must be >= 2.
85 public Dome(int planes, int radialSamples, float radius) {
86 this(new Vector3f(0, 0, 0), planes, radialSamples, radius);
92 * For a cone, set planes=2. For a pyramid, set radialSamples=4 and planes=2.
93 * Increasing planes and radialSamples increase the quality of the dome.
97 * @param planes
98 * The number of planes along the Z-axis. Must be >= 2
    [all...]
  /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];
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/
CameraTestUtils.java 142 * <p>Read data from all planes of an Image into a contiguous unpadded, unpacked
148 * the Y plane data first, followed by U(Cb), V(Cr) planes if there is any
162 Plane[] planes = image.getPlanes(); local
163 assertTrue("Fail to get image planes", planes != null && planes.length > 0);
171 buffer = planes[0].getBuffer();
180 byte[] rowData = new byte[planes[0].getRowStride()];
181 if(VERBOSE) Log.v(TAG, "get data from " + planes.length + " planes");
230 Plane[] planes = image.getPlanes(); local
    [all...]
  /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...]
  /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/chromium/webkit/glue/
webvideoframe_impl.h 25 virtual unsigned planes() const;
webvideoframe_impl.cc 74 unsigned WebVideoFrameImpl::planes() const { function in class:webkit_glue::WebVideoFrameImpl
76 return video_frame_->planes();
  /hardware/samsung_slsi/exynos5/include/
s5p_fimc_v4l2.h 38 * FIMC TYPE PLANES ORDER V4L2_PIX_FMT
102 int planes; member in struct:fimc_buf
116 int planes; member in struct:yuv_fmt_list
142 unsigned int planes; // number of planes for the Image member in struct:__anon34024
  /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/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/osal/
Exynos_OSAL_Android.h 73 OMX_OUT OMX_PTR planes);
82 OMX_OUT OMX_PTR planes);
90 OMX_OUT OMX_PTR planes);
  /pdk/apps/CameraITS/tests/
test_param_noise_reduction.py 62 planes = its.image.load_yuv420_to_yuv_planes(fname, w, h)
64 img = planes[j]
78 planes = its.image.load_yuv420_to_yuv_planes(fname, w, h)
80 img = planes[j]
  /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;
  /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
1524 struct v4l2_plane planes[VIDEO_DECODER_OUTBUF_PLANES]; local
1954 struct v4l2_plane planes[VIDEO_DECODER_OUTBUF_PLANES]; local
    [all...]
  /external/libvpx/libvpx/test/
util.h 36 int64_t d = img1->planes[VPX_PLANE_Y][i * img1->stride[VPX_PLANE_Y] + j] -
37 img2->planes[VPX_PLANE_Y][i * img2->stride[VPX_PLANE_Y] + j];
md5_helper.h 28 const uint8_t *buf = img->planes[plane];
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],
  /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/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...]
  /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...]
  /hardware/samsung_slsi/exynos5/exynos_omx/codecs/exynos_codecs/video/exynos5/mfc_v4l2/enc/src/
ExynosVideoEncoder.c 227 pVideoPlane = &pCtx->pInbuf[i].planes[j];
245 pVideoPlane = &pCtx->pOutbuf[i].planes[j];
1177 struct v4l2_plane planes[VIDEO_ENCODER_INBUF_PLANES]; local
1299 struct v4l2_plane planes[VIDEO_ENCODER_OUTBUF_PLANES]; local
1803 struct v4l2_plane planes[VIDEO_ENCODER_INBUF_PLANES]; local
1887 struct v4l2_plane planes[VIDEO_ENCODER_OUTBUF_PLANES]; local
2039 struct v4l2_plane planes[VIDEO_ENCODER_OUTBUF_PLANES]; local
2180 struct v4l2_plane planes[VIDEO_ENCODER_INBUF_PLANES]; local
    [all...]
  /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...]
  /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...]
mm_qcamera_video.c 115 uint32_t planes[VIDEO_MAX_PLANES];
122 planes[i] = frame_offset_info->mp[i].len;
149 pme->video_buf.frame[i].cbcr_off = planes[0];
161 /* Plane 0 needs to be set seperately. Set other planes
163 bufs[i].planes[0].length = planes[0];
164 bufs[i].planes[0].m.userptr = bufs[i].fd;
165 bufs[i].planes[0].data_offset = y_off;
166 bufs[i].planes[0].reserved[0] = 0;
169 bufs[i].planes[j].length = planes[j]
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/xbios/
SDL_xbios_centscreen.c 77 void SDL_XBIOS_CentscreenSetmode(_THIS, int width, int height, int planes)
84 newmode.plan = planes;
  /device/asus/flo/camera/QCamera2/HAL3/
QCamera3Mem.cpp 204 /* Plane 0 needs to be set separately. Set other planes in a loop */
205 bufDef.planes[0].length = offset.mp[0].len;
206 bufDef.planes[0].m.userptr = mMemInfo[index].fd;
207 bufDef.planes[0].data_offset = offset.mp[0].offset;
208 bufDef.planes[0].reserved[0] = 0;
210 bufDef.planes[i].length = offset.mp[i].len;
211 bufDef.planes[i].m.userptr = mMemInfo[i].fd;
212 bufDef.planes[i].data_offset = offset.mp[i].offset;
213 bufDef.planes[i].reserved[0] =
214 bufDef.planes[i-1].reserved[0]
    [all...]

Completed in 824 milliseconds

1 2 3 4 5 6 7