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

/external/qemu/distrib/sdl-1.2.12/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.12/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.12/src/video/quartz/
H A DSDL_QuartzYUV.m95 SDL_free (overlay->pitches);
251 Uint16 *pitches;
271 pitches = (Uint16*) SDL_malloc (sizeof(*pitches) * 3);
272 if (pixels == NULL || pitches == NULL) {
295 pitches[0] = width;
301 pitches[plane2] = width / 2;
307 pitches[plane3] = width / 2;
312 overlay->pitches = pitches;
[all...]
/external/qemu/distrib/sdl-1.2.12/src/video/x11/
H A DSDL_x11yuv.c255 if ( hwdata->image != NULL && hwdata->image->pitches[0] != (width*bpp) ) {
258 width = hwdata->image->pitches[0] / bpp;
299 if ( hwdata->image != NULL && hwdata->image->pitches[0] != (width*bpp) ) {
302 width = hwdata->image->pitches[0] / bpp;
322 overlay->pitches = (Uint16 *)SDL_malloc(overlay->planes * sizeof(Uint16));
324 if ( !overlay->pitches || !overlay->pixels ) {
330 overlay->pitches[i] = hwdata->image->pitches[i];
400 if ( overlay->pitches ) {
401 SDL_free(overlay->pitches);
[all...]
/external/qemu/distrib/sdl-1.2.12/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.12/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.12/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/qemu/distrib/sdl-1.2.12/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.12/src/video/Xext/extensions/
H A DXvlib.h159 int *pitches; /* bytes */ member in struct:__anon3547
/external/qemu/distrib/sdl-1.2.12/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.12/include/
H A DSDL_video.h187 Uint16 *pitches; /* Read-only */ member in struct:SDL_Overlay

Completed in 87 milliseconds