Searched refs:pitches (Results 1 - 24 of 24) sorted by relevance

/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/include/
H A Dsvga_overlay.h124 * 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) {
188 pitches[
137 VMwareVideoGetAttributes(const SVGAOverlayFormat format, uint32 *width, uint32 *height, uint32 *size, uint32 *pitches, uint32 *offsets) argument
[all...]
H A Dsvga_reg.h811 uint32 pitches[3]; member in struct:SVGAOverlayUnit
/external/mesa3d/src/gallium/drivers/svga/include/
H A Dsvga_overlay.h124 * 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) {
188 pitches[
137 VMwareVideoGetAttributes(const SVGAOverlayFormat format, uint32 *width, uint32 *height, uint32 *size, uint32 *pitches, uint32 *offsets) argument
[all...]
H A Dsvga_reg.h811 uint32 pitches[3]; member in struct:SVGAOverlayUnit
/external/qemu/distrib/sdl-1.2.15/src/video/windx5/
H A DSDL_dx5yuv.c44 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[
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/directfb/
H A DSDL_DirectFB_yuv.c46 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[
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/x11/
H A DSDL_x11yuv.c116 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
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/ps3/
H A DSDL_ps3yuv.c64 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[
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/ps2gs/
H A DSDL_gsyuv.c61 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[
[all...]
/external/qemu/distrib/sdl-1.2.15/test/
H A Dtestoverlay2.c106 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[
[all...]
H A Dtestoverlay.c92 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[
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
H A DSDL_sysyuv.cc214 overlay->pitches = (Uint16*)SDL_calloc(overlay->planes, sizeof(Uint16));
216 if (!overlay->pitches || !overlay->pixels)
223 overlay->pitches[0] = bbitmap->BytesPerRow();
/external/qemu/distrib/sdl-1.2.15/src/video/photon/
H A DSDL_phyuv.c247 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[
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xorg/
H A Dxorg_xv.c249 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, offset
246 query_image_attributes(ScrnInfoPtr pScrn, int id, unsigned short *w, unsigned short *h, int *pitches, int *offsets) argument
[all...]
/external/mesa3d/src/gallium/state_trackers/xorg/
H A Dxorg_xv.c249 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, offset
246 query_image_attributes(ScrnInfoPtr pScrn, int id, unsigned short *w, unsigned short *h, int *pitches, int *offsets) argument
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_yuv_sw.c117 Uint16 pitches[3]; member in struct:private_yuvhwdata
1126 overlay->pitches = swdata->pitches;
1131 overlay->pitches[0] = overlay->w;
1132 overlay->pitches[1] = overlay->pitches[0] / 2;
1133 overlay->pitches[2] = overlay->pitches[0] / 2;
1136 overlay->pitches[0] * overlay->h;
1138 overlay->pitches[
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/Xext/extensions/
H A DXvlib.h159 int *pitches; /* bytes */ member in struct:__anon29460
/external/chromium_org/content/common/gpu/media/
H A Dvaapi_h264_decoder_unittest.cc215 int src_stride_y = image->pitches[0];
216 int src_stride_uv = image->pitches[1];
H A Dvaapi_wrapper.cc673 image.pitches[0],
675 image.pitches[1],
/external/chromium_org/ui/keyboard/resources/
H A Dmain.js109 var pitches = keyset.pitch.split();
112 pitchWeightX = parseFloat(pitches[0]);
113 pitchWeightY = pitches.length < 2 ? pitchWeightX : parseFloat(pitch[1]);
/external/kernel-headers/original/uapi/drm/
H A Ddrm_mode.h318 * buffer objects with offets and pitches per plane.
331 __u32 pitches[4]; /* pitch for each plane */ member in struct:drm_mode_fb_cmd2
/external/qemu/distrib/sdl-1.2.15/src/video/Xext/Xv/
H A DXv.c969 ret->pitches = (int*)(&ret[1]);
970 ret->offsets = ret->pitches + rep.num_planes;
973 _XRead(dpy, (char*)(ret->pitches), rep.num_planes << 2);
/external/qemu/distrib/sdl-1.2.15/include/
H A DSDL_video.h212 Uint16 *pitches; /**< Read-only */ member in struct:SDL_Overlay
/external/chromium_org/third_party/libva/va/
H A Dva.h709 unsigned int pitches[4]; member in struct:_VASurfaceAttribExternalBuffers
2043 unsigned int pitches[3]; member in struct:_VAImage

Completed in 2081 milliseconds