Bump version to 0.20
authorWaldo Bastian <waldo.bastian@intel.com>
Thu, 9 Aug 2007 23:19:00 +0000 (16:19 -0700)
committerWaldo Bastian <waldo.bastian@intel.com>
Thu, 9 Aug 2007 23:19:00 +0000 (16:19 -0700)
dummy_drv_video/dummy_drv_video.c
src/va.c

index 5e54117..5e80e68 100644 (file)
@@ -862,7 +862,7 @@ VAStatus dummy_Terminate( VADriverContextP ctx )
        return VA_STATUS_SUCCESS;
 }
 
-VAStatus __vaDriverInit_0_18(  VADriverContextP ctx )
+VAStatus __vaDriverInit_0_20(  VADriverContextP ctx )
 {
     object_base_p obj;
     int result;
@@ -870,7 +870,7 @@ VAStatus __vaDriverInit_0_18(  VADriverContextP ctx )
     int i;
     
     ctx->version_major = 0;
-    ctx->version_minor = 18;
+    ctx->version_minor = 20;
     ctx->max_profiles = DUMMY_MAX_PROFILES;
     ctx->max_entrypoints = DUMMY_MAX_ENTRYPOINTS;
     ctx->max_attributes = DUMMY_MAX_CONFIG_ATTRIBUTES;
index af24a9b..5cfdd16 100644 (file)
--- a/src/va.c
+++ b/src/va.c
@@ -16,7 +16,7 @@
 
 #define DEFAULT_DRIVER_DIR     "/usr/X11R6/lib/modules/dri"
 #define DRIVER_EXTENSION       "_drv_video.so"
-#define DRIVER_INIT_FUNC       "__vaDriverInit_0_19"
+#define DRIVER_INIT_FUNC       "__vaDriverInit_0_20"
 
 #define CTX(dpy) ((VADriverContextP) dpy );
 #define ASSERT_CONTEXT(dpy) assert( vaDbgContextIsValid(dpy) )