diff options
author | Gwenole Beauchesne <gbeauchesne@splitted-desktop.com> | 2009-07-08 07:55:42 +0000 |
---|---|---|
committer | Austin Yuan <shengquan.yuan@intel.com> | 2009-08-14 22:20:29 +0800 |
commit | 3e118290c1055891339fd7b0591f0e9f47c839d5 (patch) | |
tree | d0eec6cbceae70f95337669ca56a2f57c8454638 /src/va.c | |
parent | 65654a4003374c1eb6b0c2611d02634d67bd5c17 (diff) | |
download | libva-3e118290c1055891339fd7b0591f0e9f47c839d5.tar.gz |
Add <va_version.h> for versioning helpers.
Signed-off-by: Austin Yuan <shengquan.yuan@intel.com>
Diffstat (limited to 'src/va.c')
-rw-r--r-- | src/va.c | 8 |
1 files changed, 1 insertions, 7 deletions
@@ -26,8 +26,6 @@ #include "va.h" #include "va_backend.h" -#include "va_version.h" - #include <assert.h> #include <stdarg.h> #include <stdio.h> @@ -41,10 +39,6 @@ #include "va_dricommon.h" -#define VA_STR_VERSION VA_BUILD_DATE VA_BUILD_GIT - -#define VA_MAJOR_VERSION 0 -#define VA_MINOR_VERSION 30 #define DRIVER_INIT_FUNC "__vaDriverInit_0_30" #define DRIVER_EXTENSION "_drv_video.so" @@ -334,7 +328,7 @@ VAStatus vaInitialize ( va_debug_trace = (getenv("LIBVA_DEBUG_TRACE") != NULL); - va_infoMessage("libva build on %s\n", VA_STR_VERSION); + va_infoMessage("libva version %s\n", VA_VERSION_S); vaStatus = va_getDriverName(dpy, &driver_name); va_infoMessage("va_getDriverName() returns %d\n", vaStatus); |