Fix build with VA-API 0.32.0.
authorGwenole Beauchesne <gwenole.beauchesne@intel.com>
Mon, 8 Oct 2012 08:04:03 +0000 (10:04 +0200)
committerGwenole Beauchesne <gwenole.beauchesne@intel.com>
Mon, 8 Oct 2012 08:09:59 +0000 (10:09 +0200)
Add new <va/va_backend_compat.h> glue file with various utility functions
and definitions to help building the driver against a previous version of
libva (1.0.x for VA-API 0.32.x in particular).

Signed-off-by: Gwenole Beauchesne <gwenole.beauchesne@intel.com>
src/Makefile.am
src/i965_drv_video.c
src/i965_output_dri.c
src/i965_render.c
src/intel_driver.c
src/intel_driver.h
src/va_backend_compat.h [new file with mode: 0644]

index e057cf5..bdc64c5 100644 (file)
@@ -96,6 +96,7 @@ source_h = \
        intel_driver.h          \
        intel_memman.h          \
        object_heap.h           \
+       va_backend_compat.h     \
        $(NULL)
 
 i965_drv_video_la_LTLIBRARIES  = i965_drv_video.la
index 7a5875e..b71c41d 100644 (file)
@@ -87,6 +87,7 @@
 #define HAS_ACCELERATED_PUTIMAGE(ctx)   HAS_VPP(ctx)
 static int get_sampling_from_fourcc(unsigned int fourcc);
 
+#if VA_CHECK_VERSION(0,33,0)
 /* Check whether we are rendering to X11 (VA/X11 or VA/GLX API) */
 #define IS_VA_X11(ctx) \
     (((ctx)->display_type & VA_DISPLAY_MAJOR_MASK) == VA_DISPLAY_X11)
@@ -94,6 +95,11 @@ static int get_sampling_from_fourcc(unsigned int fourcc);
 /* Check whether we are rendering to Wayland */
 #define IS_VA_WAYLAND(ctx) \
     (((ctx)->display_type & VA_DISPLAY_MAJOR_MASK) == VA_DISPLAY_WAYLAND)
+#else
+/* Previous VA-API versions only supported VA/X11 (and VA/GLX) API */
+#define IS_VA_X11(ctx)          1
+#define IS_VA_WAYLAND(ctx)      0
+#endif
 
 enum {
     I965_SURFACETYPE_RGBA = 1,
index c223143..d27576a 100644 (file)
@@ -119,7 +119,6 @@ i965_put_surface_dri(
 {
     struct i965_driver_data * const i965 = i965_driver_data(ctx); 
     struct dri_vtable * const dri_vtable = &i965->dri_output->vtable;
-    struct dri_state * const dri_state = (struct dri_state *)ctx->drm_state;
     struct i965_render_state * const render_state = &i965->render_state;
     struct dri_drawable *dri_drawable;
     union dri_buffer *buffer;
@@ -131,7 +130,7 @@ i965_put_surface_dri(
     int ret;
 
     /* Currently don't support DRI1 */
-    if (dri_state->base.auth_type != VA_DRM_AUTH_DRI2)
+    if (!VA_CHECK_DRM_AUTH_TYPE(ctx, VA_DRM_AUTH_DRI2))
         return VA_STATUS_ERROR_UNKNOWN;
 
     /* Some broken sources such as H.264 conformance case FM2_SVA_C
index 4059af1..ae8a439 100644 (file)
@@ -36,8 +36,6 @@
 #include <string.h>
 #include <assert.h>
 
-#include <va/va_drmcommon.h>
-
 #include "intel_batchbuffer.h"
 #include "intel_driver.h"
 #include "i965_defines.h"
index b34d9a1..45039a5 100644 (file)
@@ -29,8 +29,6 @@
 
 #include <assert.h>
 
-#include <va/va_drmcommon.h>
-
 #include "intel_batchbuffer.h"
 #include "intel_memman.h"
 #include "intel_driver.h"
@@ -54,13 +52,13 @@ intel_driver_init(VADriverContextP ctx)
     int has_exec2, has_bsd, has_blt;
 
     assert(drm_state);
-    assert(drm_state->auth_type == VA_DRM_AUTH_DRI1 ||
-           drm_state->auth_type == VA_DRM_AUTH_DRI2 ||
-           drm_state->auth_type == VA_DRM_AUTH_CUSTOM);
+    assert(VA_CHECK_DRM_AUTH_TYPE(ctx, VA_DRM_AUTH_DRI1) ||
+           VA_CHECK_DRM_AUTH_TYPE(ctx, VA_DRM_AUTH_DRI2) ||
+           VA_CHECK_DRM_AUTH_TYPE(ctx, VA_DRM_AUTH_CUSTOM));
 
     intel->fd = drm_state->fd;
-    intel->dri2Enabled = (drm_state->auth_type == VA_DRM_AUTH_DRI2 ||
-                          drm_state->auth_type == VA_DRM_AUTH_CUSTOM);
+    intel->dri2Enabled = (VA_CHECK_DRM_AUTH_TYPE(ctx, VA_DRM_AUTH_DRI2) ||
+                          VA_CHECK_DRM_AUTH_TYPE(ctx, VA_DRM_AUTH_CUSTOM));
 
     if (!intel->dri2Enabled) {
         return False;
index 339ff3f..1485800 100644 (file)
@@ -10,6 +10,7 @@
 #include <intel_bufmgr.h>
 
 #include <va/va_backend.h>
+#include "va_backend_compat.h"
 
 #include "intel_compiler.h"
 
diff --git a/src/va_backend_compat.h b/src/va_backend_compat.h
new file mode 100644 (file)
index 0000000..f5c9f75
--- /dev/null
@@ -0,0 +1,48 @@
+/*
+ * Copyright (C) 2012 Intel Corporation. All Rights Reserved.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the
+ * "Software"), to deal in the Software without restriction, including
+ * without limitation the rights to use, copy, modify, merge, publish,
+ * distribute, sub license, and/or sell copies of the Software, and to
+ * permit persons to whom the Software is furnished to do so, subject to
+ * the following conditions:
+ * 
+ * The above copyright notice and this permission notice (including the
+ * next paragraph) shall be included in all copies or substantial portions
+ * of the Software.
+ * 
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+ * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
+ * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR
+ * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+ * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+ * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+ */
+
+#ifndef VA_BACKEND_COMPAT_H
+#define VA_BACKEND_COMPAT_H
+
+#include <va/va_backend.h>
+
+#if VA_CHECK_VERSION(0,33,0)
+# include <va/va_drmcommon.h>
+
+# define VA_CHECK_DRM_AUTH_TYPE(ctx, type) \
+    (((struct drm_state *)(ctx)->drm_state)->auth_type == (type))
+
+#else
+# include <va/va_dricommon.h>
+
+# define VA_CHECK_DRM_AUTH_TYPE(ctx, type) \
+    (((struct dri_state *)(ctx)->dri_state)->driConnectedFlag == (type))
+
+# define drm_state              dri_state
+# define VA_DRM_AUTH_DRI1       VA_DRI1
+# define VA_DRM_AUTH_DRI2       VA_DRI2
+# define VA_DRM_AUTH_CUSTOM     VA_DUMMY
+#endif
+
+#endif /* VA_BACKEND_COMPAT_H */