From: Leo Liu Date: Tue, 15 Aug 2017 13:07:06 +0000 (-0400) Subject: st/va: make surface allocate functions more usefully X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e50ee6d4d59e46147b4ff0f1012f5d1d4ab92e06;p=mesa.git st/va: make surface allocate functions more usefully Signed-off-by: Leo Liu Reviewed-by: Christian König --- diff --git a/src/gallium/state_trackers/va/surface.c b/src/gallium/state_trackers/va/surface.c index f968e9ede17..b116fc3f27f 100644 --- a/src/gallium/state_trackers/va/surface.c +++ b/src/gallium/state_trackers/va/surface.c @@ -558,9 +558,9 @@ suface_from_external_memory(VADriverContextP ctx, vlVaSurface *surface, return VA_STATUS_SUCCESS; } -static VAStatus -surface_allocate(VADriverContextP ctx, vlVaSurface *surface, - struct pipe_video_buffer *templat) +VAStatus +vlVaHandleSurfaceAllocate(VADriverContextP ctx, vlVaSurface *surface, + struct pipe_video_buffer *templat) { vlVaDriver *drv; struct pipe_surface **surfaces; @@ -734,7 +734,7 @@ vlVaCreateSurfaces2(VADriverContextP ctx, unsigned int format, !(memory_attibute->flags & VA_SURFACE_EXTBUF_DESC_ENABLE_TILING)) templat.bind = PIPE_BIND_LINEAR | PIPE_BIND_SHARED; - vaStatus = surface_allocate(ctx, surf, &templat); + vaStatus = vlVaHandleSurfaceAllocate(ctx, surf, &templat); if (vaStatus != VA_STATUS_SUCCESS) goto free_surf; break; diff --git a/src/gallium/state_trackers/va/va_private.h b/src/gallium/state_trackers/va/va_private.h index 24b74509c85..a437a5b90f1 100644 --- a/src/gallium/state_trackers/va/va_private.h +++ b/src/gallium/state_trackers/va/va_private.h @@ -396,6 +396,7 @@ VAStatus vlVaQueryVideoProcPipelineCaps(VADriverContextP ctx, VAContextID contex // internal functions VAStatus vlVaHandleVAProcPipelineParameterBufferType(vlVaDriver *drv, vlVaContext *context, vlVaBuffer *buf); +VAStatus vlVaHandleSurfaceAllocate(VADriverContextP ctx, vlVaSurface *surface, struct pipe_video_buffer *templat); void vlVaGetReferenceFrame(vlVaDriver *drv, VASurfaceID surface_id, struct pipe_video_buffer **ref_frame); void vlVaHandlePictureParameterBufferMPEG12(vlVaDriver *drv, vlVaContext *context, vlVaBuffer *buf); void vlVaHandleIQMatrixBufferMPEG12(vlVaContext *context, vlVaBuffer *buf);