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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/tests/RenderScriptTests/ShadersTest/res/raw/
depth_fs.glsl 4 // Near and far planes from the projection
  /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...]
  /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/exynos_omx/codecs/exynos_codecs/video/exynos5/mfc_v4l2/dec/src/
ExynosVideoDecoder.c 220 pVideoPlane = &pCtx->pInbuf[i].planes[j];
238 pVideoPlane = &pCtx->pOutbuf[i].planes[j];
805 struct v4l2_plane planes[VIDEO_DECODER_INBUF_PLANES]; local
859 buf.m.planes = planes;
869 pVideoPlane = &pCtx->pInbuf[i].planes[0];
872 buf.m.planes[0].length, PROT_READ | PROT_WRITE,
873 MAP_SHARED, pCtx->hDec, buf.m.planes[0].m.mem_offset);
880 pVideoPlane->allocSize = buf.m.planes[0].length;
895 pVideoPlane = &pCtx->pInbuf[i].planes[0]
924 struct v4l2_plane planes[VIDEO_DECODER_OUTBUF_PLANES]; local
1386 struct v4l2_plane planes[VIDEO_DECODER_INBUF_PLANES]; local
1478 struct v4l2_plane planes[VIDEO_DECODER_OUTBUF_PLANES]; local
    [all...]
  /hardware/samsung_slsi/exynos5/libexynosutils/
exynos5_format_v4l2.c 368 int V4L2_PIX_2_YUV_INFO(unsigned int v4l2_pixel_format, unsigned int * bpp, unsigned int * planes)
373 *planes = 1;
381 *planes = 2;
387 *planes = 3;
394 *planes = 1;
401 *planes = 2;
405 *planes = 3;
417 unsigned int bpp, planes; local
419 if (V4L2_PIX_2_YUV_INFO(v4l2_pixel_format, &bpp, &planes) < 0)
427 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
  /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/libvpx/libvpx/vpx/src/
vpx_image.c 227 img->planes[VPX_PLANE_PACKED] =
236 img->planes[VPX_PLANE_ALPHA] =
241 img->planes[VPX_PLANE_Y] = data + x + y * img->stride[VPX_PLANE_Y];
246 img->planes[VPX_PLANE_U] = data
250 img->planes[VPX_PLANE_V] = data
256 img->planes[VPX_PLANE_V] = data
260 img->planes[VPX_PLANE_U] = data
280 img->planes[VPX_PLANE_Y] += (signed)(img->d_h - 1) * img->stride[VPX_PLANE_Y];
283 img->planes[VPX_PLANE_U] += (signed)((img->d_h >> img->y_chroma_shift) - 1)
287 img->planes[VPX_PLANE_V] += (signed)((img->d_h >> img->y_chroma_shift) - 1
    [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...]
  /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...]
mm_qcamera_snapshot.c 225 reg_buf.def.buf.mp[0].planes[0].length = planes_main[0];
226 reg_buf.def.buf.mp[0].planes[0].m.userptr = pme->raw_snapshot_buf.frame[0].fd;
227 reg_buf.def.buf.mp[0].planes[0].data_offset = 0;
228 reg_buf.def.buf.mp[0].planes[0].reserved[0] = reg_buf.def.buf.mp[0].frame_offset;
230 reg_buf.def.buf.mp[0].planes[j].length = planes_main[j];
231 reg_buf.def.buf.mp[0].planes[j].m.userptr = pme->raw_snapshot_buf.frame[0].fd;
232 reg_buf.def.buf.mp[0].planes[j].data_offset = 0;
233 reg_buf.def.buf.mp[0].planes[j].reserved[0] = reg_buf.def.buf.mp[0].planes[j-1].reserved[0] +
234 reg_buf.def.buf.mp[0].planes[j-1].length
    [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];
1153 struct v4l2_plane planes[VIDEO_ENCODER_INBUF_PLANES]; local
1275 struct v4l2_plane planes[VIDEO_ENCODER_OUTBUF_PLANES]; local
1779 struct v4l2_plane planes[VIDEO_ENCODER_INBUF_PLANES]; local
1859 struct v4l2_plane planes[VIDEO_ENCODER_OUTBUF_PLANES]; local
2000 struct v4l2_plane planes[VIDEO_ENCODER_OUTBUF_PLANES]; local
2136 struct v4l2_plane planes[VIDEO_ENCODER_INBUF_PLANES]; local
    [all...]
  /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;
  /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/ataricommon/
SDL_ataric2p_s.h 35 Uint8 *dest, /* Destination (4/8 bits planes) */
49 Uint8 *dest, /* Destination (8 bits planes) */
63 Uint8 *dest, /* Destination (4 bits planes) */
  /frameworks/av/libvideoeditor/vss/video_filters/src/
M4VIFI_ResizeYUVtoBGR565.c 63 M4VIFI_UInt8 *pu8_data_in[PLANES], *pu8_data_in1[PLANES],*pu8_data_out;
66 M4VIFI_UInt32 u32_width_in[PLANES], u32_width_out, u32_height_in[PLANES], u32_height_out;
67 M4VIFI_UInt32 u32_stride_in[PLANES];
69 M4VIFI_UInt32 u32_x_inc[PLANES], u32_y_inc[PLANES];
115 for(u32_plane = 0; u32_plane < PLANES; u32_plane++)
147 /* Compute horizontal ratio between src and destination width for U and V Planes. */
157 /* Compute vertical ratio between src and destination height for U and V Planes. *
    [all...]
M4VIFI_ResizeYUVtoRGB565.c 66 M4VIFI_UInt8 *pu8_data_in[PLANES], *pu8_data_in1[PLANES],*pu8_data_out;
69 M4VIFI_UInt32 u32_width_in[PLANES], u32_width_out, u32_height_in[PLANES], u32_height_out;
70 M4VIFI_UInt32 u32_stride_in[PLANES];
72 M4VIFI_UInt32 u32_x_inc[PLANES], u32_y_inc[PLANES];
119 for(u32_plane = 0; u32_plane < PLANES; u32_plane++)
151 /* Compute horizontal ratio between src and destination width for U and V Planes.*/
161 /* Compute vertical ratio between src and destination height for U and V Planes.*
    [all...]
  /external/chromium/webkit/glue/
webvideoframe_impl.h 25 virtual unsigned planes() const;
  /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...]
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/osal/
Exynos_OSAL_Android.h 55 OMX_OUT OMX_PTR planes);
63 OMX_OUT OMX_PTR planes);
Exynos_OSAL_Android.cpp 68 OMX_OUT OMX_PTR planes)
77 ExynosVideoPlane *vplanes = (ExynosVideoPlane *) planes;
165 OMX_OUT OMX_PTR planes)
172 ret = Exynos_OSAL_LockANBHandle((OMX_U32)pANB->handle, width, height, format, planes);
209 ExynosVideoPlane planes[MAX_BUFFER_PLANE]; local
250 &stride, planes);
251 pExynosPort->extendBufferHeader[i].buf_fd[0] = planes[0].fd;
252 pExynosPort->extendBufferHeader[i].pYUVBuf[0] = planes[0].addr;
253 pExynosPort->extendBufferHeader[i].buf_fd[1] = planes[1].fd;
254 pExynosPort->extendBufferHeader[i].pYUVBuf[1] = planes[1].addr
    [all...]
  /external/libvpx/libvpx/test/
encode_test_driver.cc 110 match = ( memcmp(img1->planes[VPX_PLANE_Y] + i * img1->stride[VPX_PLANE_Y],
111 img2->planes[VPX_PLANE_Y] + i * img2->stride[VPX_PLANE_Y],
116 match = ( memcmp(img1->planes[VPX_PLANE_U] + i * img1->stride[VPX_PLANE_U],
117 img2->planes[VPX_PLANE_U] + i * img2->stride[VPX_PLANE_U],
120 match = ( memcmp(img1->planes[VPX_PLANE_V] + i * img1->stride[VPX_PLANE_V],
121 img2->planes[VPX_PLANE_V] + i * img2->stride[VPX_PLANE_V],
  /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 */
  /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:__anon21163

Completed in 1316 milliseconds

1 2 3 4 5 6 7 8 91011>>