mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 07:28:11 +02:00
st/va: move variable declaration to where its used
... and make it const, since we shouldn't tinker with it. Signed-off-by: Emil Velikov <emil.velikov@collabora.com> Reviewed-by: Nayan Deshmukh <nayan26deshmukh@gmail.com> Reviewed-by: Christian König <christian.koenig@amd.com>
This commit is contained in:
parent
369e5dd939
commit
c34a008891
1 changed files with 1 additions and 2 deletions
|
|
@ -103,7 +103,6 @@ PUBLIC VAStatus
|
|||
VA_DRIVER_INIT_FUNC(VADriverContextP ctx)
|
||||
{
|
||||
vlVaDriver *drv;
|
||||
struct drm_state *drm_info;
|
||||
|
||||
if (!ctx)
|
||||
return VA_STATUS_ERROR_INVALID_CONTEXT;
|
||||
|
|
@ -127,7 +126,7 @@ VA_DRIVER_INIT_FUNC(VADriverContextP ctx)
|
|||
case VA_DISPLAY_WAYLAND:
|
||||
case VA_DISPLAY_DRM:
|
||||
case VA_DISPLAY_DRM_RENDERNODES: {
|
||||
drm_info = (struct drm_state *) ctx->drm_state;
|
||||
const struct drm_state *drm_info = (struct drm_state *) ctx->drm_state;
|
||||
|
||||
if (!drm_info || drm_info->fd < 0) {
|
||||
FREE(drv);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue