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

1 2

  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/include/
svga_overlay.h 124 * Computes the size, pitches and offsets for YUV frames.
130 * Pitches and offsets for the given YUV frame are put in 'pitches'
141 uint32 *pitches, // OUT (optional)
157 if (pitches) {
158 pitches[0] = *size;
169 if (pitches) {
170 pitches[1] = pitches[2] = tmp;
187 if (pitches) {
    [all...]
svga_reg.h 811 uint32 pitches[3]; member in struct:SVGAOverlayUnit
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/include/
svga_overlay.h 124 * Computes the size, pitches and offsets for YUV frames.
130 * Pitches and offsets for the given YUV frame are put in 'pitches'
141 uint32 *pitches, // OUT (optional)
157 if (pitches) {
158 pitches[0] = *size;
169 if (pitches) {
170 pitches[1] = pitches[2] = tmp;
187 if (pitches) {
    [all...]
  /hardware/intel/common/libva/test/
loadsurface.h 237 unsigned int pitches[3]={0,0,0}; local
245 pitches[0] = surface_image.pitches[0];
250 pitches[1] = surface_image.pitches[1];
251 pitches[2] = surface_image.pitches[1];
256 pitches[1] = surface_image.pitches[1];
257 pitches[2] = surface_image.pitches[2]
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/windx5/
SDL_dx5yuv.c 44 Uint16 pitches[3]; member in struct:private_yuvhwdata
180 overlay->pitches = hwdata->pitches;
219 overlay->pitches[0] = (Uint16)ddsd.u1.lPitch;
221 overlay->pitches[0] = (Uint16)ddsd.lPitch;
228 overlay->pitches[1] = overlay->pitches[0] / 2;
229 overlay->pitches[2] = overlay->pitches[0] / 2;
231 overlay->pitches[0] * overlay->h
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/directfb/
SDL_DirectFB_yuv.c 46 Uint16 pitches[3]; member in struct:private_yuvhwdata
191 overlay->pitches = hwdata->pitches;
223 overlay->pitches[0] = (Uint16) pitch;
231 overlay->pitches[1] = overlay->pitches[0] / 2;
232 overlay->pitches[2] = overlay->pitches[0] / 2;
233 overlay->pixels[1] = overlay->pixels[0] + overlay->pitches[0] * overlay->h;
234 overlay->pixels[2] = overlay->pixels[1] + overlay->pitches[1] * overlay->h / 2
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/x11/
SDL_x11yuv.c 116 memset(overlay->pixels[0] + y * overlay->pitches[0],
121 memset(overlay->pixels[1] + y * overlay->pitches[1],
123 memset(overlay->pixels[2] + y * overlay->pitches[2],
134 y * overlay->pitches[0] + x * 2;
148 y * overlay->pitches[0] + x * 2;
331 if ( hwdata->image != NULL && hwdata->image->pitches[0] != (width*bpp) ) {
333 width = hwdata->image->pitches[0] / bpp;
375 if ( hwdata->image != NULL && hwdata->image->pitches[0] != (width*bpp) ) {
378 width = hwdata->image->pitches[0] / bpp;
398 overlay->pitches = (Uint16 *)SDL_malloc(overlay->planes * sizeof(Uint16))
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/ps3/
SDL_ps3yuv.c 64 Uint16 pitches[3]; member in struct:private_yuvhwdata
173 overlay->pitches = hwdata->pitches;
178 overlay->pitches[0] = overlay->w;
179 overlay->pitches[1] = overlay->pitches[0] / 2;
180 overlay->pitches[2] = overlay->pitches[0] / 2;
183 overlay->pitches[0] * overlay->h;
185 overlay->pitches[1] * overlay->h / 2
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/ps2gs/
SDL_gsyuv.c 61 Uint16 pitches[3]; member in struct:private_yuvhwdata
149 overlay->pitches = hwdata->pitches;
154 overlay->pitches[0] = overlay->w;
155 overlay->pitches[1] = overlay->pitches[0] / 2;
156 overlay->pitches[2] = overlay->pitches[0] / 2;
159 overlay->pitches[0] * overlay->h;
161 overlay->pitches[1] * overlay->h / 2
    [all...]
  /external/qemu/distrib/sdl-1.2.15/test/
testoverlay2.c 106 op[0]=o->pixels[0]+o->pitches[0]*y;
107 op[1]=o->pixels[1]+o->pitches[1]*(y/2);
108 op[2]=o->pixels[2]+o->pitches[2]*(y/2);
139 op[0]=o->pixels[0]+o->pitches[0]*y;
140 op[1]=o->pixels[1]+o->pitches[1]*(y/2);
141 op[2]=o->pixels[2]+o->pitches[2]*(y/2);
171 op=o->pixels[0]+o->pitches[0]*y;
204 op=o->pixels[0]+o->pitches[0]*y;
240 op=o->pixels[0]+o->pitches[0]*y;
496 printf(" plane %d: pitch=%d\n", i, overlay->pitches[i])
    [all...]
testoverlay.c 92 memset(o->pixels[0],0,o->pitches[0]*o->h);
93 memset(o->pixels[1],128,o->pitches[1]*((o->h+1)/2));
94 memset(o->pixels[2],128,o->pitches[2]*((o->h+1)/2));
101 op[0]=o->pixels[0]+o->pitches[0]*y;
102 op[1]=o->pixels[1]+o->pitches[1]*(y/2);
103 op[2]=o->pixels[2]+o->pitches[2]*(y/2);
132 memset(o->pixels[0],0,o->pitches[0]*o->h);
133 memset(o->pixels[1],128,o->pitches[1]*((o->h+1)/2));
134 memset(o->pixels[2],128,o->pitches[2]*((o->h+1)/2));
141 op[0]=o->pixels[0]+o->pitches[0]*y
    [all...]
  /hardware/intel/common/libva/test/basic/
test_vaSurfaceAttrib.c 123 vaSurfaceExternBuf.pitches[0] = vaSurfaceExternBuf.pitches[1] = vaSurfaceExternBuf.pitches[2] = frame_width;
126 //vaSurfaceExternBuf.pitches[0] = attribute_tpi->luma_stride;
  /hardware/intel/img/psb_video/src/
psb_output.c 317 obj_image->image.pitches[0] = pitch_pot;
318 obj_image->image.pitches[1] = pitch_pot;
334 obj_image->image.pitches[0] = 4 * pitch_pot;
348 obj_image->image.pitches[0] = 4 * pitch_pot;
362 obj_image->image.pitches[0] = pitch_pot;
376 obj_image->image.pitches[0] = pitch_pot;
377 obj_image->image.pitches[1] = pitch_pot / 2;
378 obj_image->image.pitches[2] = pitch_pot / 2;
395 obj_image->image.pitches[0] = pitch_pot;
396 obj_image->image.pitches[1] = pitch_pot
    [all...]
  /hardware/intel/common/libva/test/videoprocess/
videoprocess.cpp 232 memset(y_dst, max_luma + 1, surface_image.pitches[0]);
234 memset(y_dst, (min_luma + max_luma) / 2, surface_image.pitches[0]);
236 y_dst += surface_image.pitches[0];
245 u_dst += surface_image.pitches[1];
304 y_dst += surface_image.pitches[0];
320 v_dst += surface_image.pitches[1];
321 u_dst += surface_image.pitches[2];
323 v_dst += surface_image.pitches[2];
324 u_dst += surface_image.pitches[1];
334 u_dst += surface_image.pitches[1]
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
SDL_sysyuv.cc 214 overlay->pitches = (Uint16*)SDL_calloc(overlay->planes, sizeof(Uint16));
216 if (!overlay->pitches || !overlay->pixels)
223 overlay->pitches[0] = bbitmap->BytesPerRow();
  /hardware/intel/common/libmix/videoencoder/
VideoEncoderUtils.cpp 616 LOG_V("pitches[0] = %d\n", destImage.pitches[0]);
617 LOG_V("pitches[1] = %d\n", destImage.pitches[1]);
641 dstY += destImage.pitches[0];
647 dstUV += destImage.pitches[1];
708 extbuf.pitches[0] = vinfo.lumaStride;
709 extbuf.pitches[1] = vinfo.lumaStride;
710 extbuf.pitches[2] = vinfo.lumaStride;
711 extbuf.pitches[3] = 0
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/photon/
SDL_phyuv.c 247 overlay->pitches = SDL_calloc(overlay->planes, sizeof(Uint16));
249 if (!overlay->pitches || !overlay->pixels)
258 overlay->pitches[0] = overlay->hwdata->channel->yplane1->pitch;
263 overlay->pitches[1] = overlay->hwdata->channel->vplane1->pitch;
268 overlay->pitches[2] = overlay->hwdata->channel->uplane1->pitch;
309 overlay->pitches[0] = overlay->hwdata->channel->yplane1->pitch;
314 overlay->pitches[1] = overlay->hwdata->channel->uplane1->pitch;
319 overlay->pitches[2] = overlay->hwdata->channel->vplane1->pitch;
440 overlay->pitches[0] = overlay->hwdata->channel->yplane1->pitch;
445 overlay->pitches[1] = overlay->hwdata->channel->uplane1->pitch
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xorg/
xorg_xv.c 249 int *pitches, int *offsets)
266 if (pitches) {
267 pitches[0] = size;
274 if (pitches) {
275 pitches[1] = pitches[2] = tmp;
288 if (pitches)
289 pitches[0] = size;
336 int pitches[3], offsets[3]; local
339 &w, &h, pitches, offsets)
    [all...]
  /external/mesa3d/src/gallium/state_trackers/xorg/
xorg_xv.c 249 int *pitches, int *offsets)
266 if (pitches) {
267 pitches[0] = size;
274 if (pitches) {
275 pitches[1] = pitches[2] = tmp;
288 if (pitches)
289 pitches[0] = size;
336 int pitches[3], offsets[3]; local
339 &w, &h, pitches, offsets)
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_yuv_sw.c 117 Uint16 pitches[3]; member in struct:private_yuvhwdata
    [all...]
  /hardware/intel/common/libmix/videodecoder/
VideoDecoderBase.cpp 898 mVASurfaceAttrib->pitches[0] = mConfigBuffer.graphicBufferStride;
899 mVASurfaceAttrib->pitches[1] = mConfigBuffer.graphicBufferStride;
900 mVASurfaceAttrib->pitches[2] = 0;
901 mVASurfaceAttrib->pitches[3] = 0;
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/Xext/extensions/
Xvlib.h 159 int *pitches; /* bytes */ member in struct:__anon33178
  /external/chromium_org/content/common/gpu/media/
vaapi_h264_decoder_unittest.cc 214 int src_stride_y = image->pitches[0];
215 int src_stride_uv = image->pitches[1];
  /bionic/libc/kernel/uapi/drm/
drm_mode.h 295 __u32 pitches[4]; member in struct:drm_mode_fb_cmd2
  /external/kernel-headers/original/uapi/drm/
drm_mode.h 318 * buffer objects with offets and pitches per plane.
331 __u32 pitches[4]; /* pitch for each plane */ member in struct:drm_mode_fb_cmd2

Completed in 661 milliseconds

1 2