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

1 2

  /external/libvpx/vpx/src/
vpx_image.c 184 img->planes[VPX_PLANE_PACKED] =
193 img->planes[VPX_PLANE_ALPHA] =
198 img->planes[VPX_PLANE_Y] = data + x + y * img->stride[VPX_PLANE_Y];
203 img->planes[VPX_PLANE_U] = data
207 img->planes[VPX_PLANE_V] = data
213 img->planes[VPX_PLANE_V] = data
217 img->planes[VPX_PLANE_U] = data
237 img->planes[VPX_PLANE_Y] += (signed)(img->d_h - 1) * img->stride[VPX_PLANE_Y];
240 img->planes[VPX_PLANE_U] += (signed)((img->d_h >> img->y_chroma_shift) - 1)
244 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;
107 jpeg_write_raw_data(cinfo, planes, 16);
150 JSAMPARRAY planes[3]; local
151 planes[0] = y;
152 planes[1] = cb;
153 planes[2] = cr;
178 jpeg_write_raw_data(cinfo, planes, 16)
    [all...]
  /external/webkit/WebKit/mac/Carbon/
CarbonUtils.m 119 unsigned char* planes[5];
121 [rep getBitmapDataPlanes:planes];
123 image = _NSCreateImageRef( planes, [rep pixelsWide], [rep pixelsHigh],
  /external/qemu/distrib/sdl-1.2.12/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.12/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.12/src/video/xbios/
SDL_xbios_centscreen.c 78 void SDL_XBIOS_CentscreenSetmode(_THIS, int width, int height, int planes)
85 newmode.plan = planes;
SDL_xbios_centscreen.h 115 void SDL_XBIOS_CentscreenSetmode(_THIS, int width, int height, int planes);
  /device/samsung/crespo/include/
s5p_fimc.h 35 * FIMC TYPE PLANES ORDER V4L2_PIX_FMT
100 int planes; member in struct:yuv_fmt_list
  /external/qemu/distrib/sdl-1.2.12/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.12/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/quake/quake/src/QW/client/
model.h 183 mplane_t *planes; member in struct:__anon6743
343 mplane_t *planes; member in struct:model_s
pmovetst.c 33 Set up the planes and clipnodes so that the six floats of a bounding box
43 box_hull.planes = box_planes;
105 plane = hull->planes + node->planenum;
144 plane = hull->planes + node->planenum;
210 plane = hull->planes + node->planenum;
pmove.c 102 The basic solid body movement clip that slides along multiple planes
113 vec3_t planes[MAX_CLIP_PLANES]; local
174 VectorCopy (trace.plane.normal, planes[numplanes]);
178 // modify original_velocity so it parallels all of the clip planes
182 PM_ClipVelocity (original_velocity, planes[i], pmove.velocity, 1);
186 if (DotProduct (pmove.velocity, planes[j]) < 0)
204 CrossProduct (planes[0], planes[1], dir);
gl_model.h 203 mplane_t *planes; member in struct:__anon6713
377 mplane_t *planes; member in struct:model_s
  /external/quake/quake/src/WinQuake/
model.h 172 mplane_t *planes; member in struct:__anon7103
326 mplane_t *planes; member in struct:model_s
gl_model.h 199 mplane_t *planes; member in struct:__anon7076
374 mplane_t *planes; member in struct:model_s
  /external/libvpx/vpx/
vpx_image.h 126 unsigned char *planes[4]; /**< pointer to the top left pixel for each plane */ member in struct:vpx_image
  /frameworks/base/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);
  /frameworks/base/media/libstagefright/codecs/on2/dec/
VPXDecoder.cpp 240 const uint8_t *srcLine = (const uint8_t *)img->planes[PLANE_Y];
249 srcLine = (const uint8_t *)img->planes[PLANE_U];
257 srcLine = (const uint8_t *)img->planes[PLANE_V];
  /external/quake/quake/src/QW/server/
model.c 712 out->plane = loadmodel->planes + planenum;
793 out->plane = loadmodel->planes + p;
882 hull->planes = loadmodel->planes;
894 hull->planes = loadmodel->planes;
933 hull->planes = loadmodel->planes;
937 out->planenum = in->plane - loadmodel->planes;
1020 loadmodel->planes = out
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/x11/
SDL_x11yuv.c 321 overlay->planes = hwdata->image->num_planes;
322 overlay->pitches = (Uint16 *)SDL_malloc(overlay->planes * sizeof(Uint16));
323 overlay->pixels = (Uint8 **)SDL_malloc(overlay->planes * sizeof(Uint8 *));
329 for ( i=0; i<overlay->planes; ++i ) {
  /external/qemu/distrib/sdl-1.2.12/src/video/quartz/
SDL_QuartzWM.m 40 unsigned char *planes[5];
53 [ imgrep getBitmapDataPlanes: planes ];
57 planes[0][i] = data[i];
58 planes[1][i] = mask[i] | data[i];
  /external/libvpx/
ivfdec.c 584 buf = img->planes[VPX_PLANE_Y];
592 buf = img->planes[flipuv?VPX_PLANE_V:VPX_PLANE_U];
600 buf = img->planes[flipuv?VPX_PLANE_U:VPX_PLANE_V];
  /external/qemu/distrib/sdl-1.2.12/src/video/ps2gs/
SDL_gsyuv.c 62 Uint8 *planes[3]; member in struct:private_yuvhwdata
150 overlay->pixels = hwdata->planes;
162 overlay->planes = 3;
  /external/libvpx/examples/
encoder_tmpl.c 58 nbytes = fread(img->planes[0], 1, to_read, f);

Completed in 946 milliseconds

1 2