Searched refs:vtmpl (Results 1 - 2 of 2) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/vdpau/
H A Doutput.c443 struct pipe_video_buffer vtmpl, *vbuffer; local in function:vlVdpOutputSurfacePutBitsYCbCr
466 memset(&vtmpl, 0, sizeof(vtmpl));
467 vtmpl.buffer_format = format;
468 vtmpl.chroma_format = FormatYCBCRToPipeChroma(source_ycbcr_format);
471 vtmpl.width = abs(destination_rect->x0-destination_rect->x1);
472 vtmpl.height = abs(destination_rect->y0-destination_rect->y1);
474 vtmpl.width = vlsurface->surface->texture->width0;
475 vtmpl.height = vlsurface->surface->texture->height0;
478 vbuffer = pipe->create_video_buffer(pipe, &vtmpl);
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/frontends/vdpau/
H A Doutput.c446 struct pipe_video_buffer vtmpl, *vbuffer; local in function:vlVdpOutputSurfacePutBitsYCbCr
469 memset(&vtmpl, 0, sizeof(vtmpl));
470 vtmpl.buffer_format = format;
475 vtmpl.width = destination_rect->x1 - destination_rect->x0;
476 vtmpl.height = destination_rect->y1 - destination_rect->y0;
479 vtmpl.width = vlsurface->surface->texture->width0;
480 vtmpl.height = vlsurface->surface->texture->height0;
483 vbuffer = pipe->create_video_buffer(pipe, &vtmpl);

Completed in 4 milliseconds