From: Christian König Date: Thu, 23 May 2013 17:28:57 +0000 (+0200) Subject: st/vdpau: remove vlCreateHTAB from surface functions X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f796b67431cfcadecfa983f9fc952dbee228cec0;p=mesa.git st/vdpau: remove vlCreateHTAB from surface functions Signed-off-by: Christian König --- diff --git a/src/gallium/state_trackers/vdpau/surface.c b/src/gallium/state_trackers/vdpau/surface.c index 135eb85e8d0..bd11fc3cdec 100644 --- a/src/gallium/state_trackers/vdpau/surface.c +++ b/src/gallium/state_trackers/vdpau/surface.c @@ -54,11 +54,6 @@ vlVdpVideoSurfaceCreate(VdpDevice device, VdpChromaType chroma_type, goto inv_size; } - if (!vlCreateHTAB()) { - ret = VDP_STATUS_RESOURCES; - goto no_htab; - } - p_surf = CALLOC(1, sizeof(vlVdpSurface)); if (!p_surf) { ret = VDP_STATUS_RESOURCES; @@ -110,7 +105,6 @@ inv_device: FREE(p_surf); no_res: -no_htab: inv_size: return ret; } @@ -272,9 +266,6 @@ vlVdpVideoSurfacePutBitsYCbCr(VdpVideoSurface surface, struct pipe_sampler_view **sampler_views; unsigned i, j; - if (!vlCreateHTAB()) - return VDP_STATUS_RESOURCES; - vlVdpSurface *p_surf = vlGetDataHTAB(surface); if (!p_surf) return VDP_STATUS_INVALID_HANDLE;