Home | History | Annotate | Download | only in xvmc

Lines Matching defs:pipe

33 #include "pipe/p_screen.h"
34 #include "pipe/p_video_decoder.h"
35 #include "pipe/p_video_state.h"
36 #include "pipe/p_state.h"
193 struct pipe_context *pipe;
239 pipe = vscreen->pscreen->context_create(vscreen->pscreen, vscreen);
240 if (!pipe) {
247 context_priv->decoder = pipe->create_video_decoder
249 pipe, ProfileToPipe(mc_type),
258 pipe->destroy(pipe);
264 if (!vl_compositor_init(&context_priv->compositor, pipe)) {
267 pipe->destroy(pipe);
273 if (!vl_compositor_init_state(&context_priv->cstate, pipe)) {
277 pipe->destroy(pipe);
297 context_priv->pipe = pipe;
332 context_priv->pipe->destroy(context_priv->pipe);