hardware/intel/common/libva
修訂 | 0b59c605e83d1316e9d92c8a49b24b46ad3d925f (tree) |
---|---|
時間 | 2009-09-03 12:02:35 |
作者 | Gwenole Beauchesne <gbeauchesne@spli...> |
Commiter | Austin Yuan |
Drop references to SDS.
@@ -28,9 +28,6 @@ m4_define([libva_micro_version], [0]) | ||
28 | 28 | m4_define([libva_version], |
29 | 29 | [libva_major_version.libva_minor_version.libva_micro_version]) |
30 | 30 | |
31 | -# increase this number for each API change | |
32 | -m4_define([libva_sds_version], [2]) | |
33 | - | |
34 | 31 | # if the library source code has changed, increment revision |
35 | 32 | m4_define([libva_lt_revision], [0]) |
36 | 33 | # if any interface was added/removed/changed, then inc current, reset revision |
@@ -55,9 +52,6 @@ AC_SUBST(LIBVA_MINOR_VERSION) | ||
55 | 52 | AC_SUBST(LIBVA_MICRO_VERSION) |
56 | 53 | AC_SUBST(LIBVA_VERSION) |
57 | 54 | |
58 | -LIBVA_SDS_VERSION=libva_sds_version | |
59 | -AC_SUBST(LIBVA_SDS_VERSION) | |
60 | - | |
61 | 55 | LIBVA_LT_CURRENT=libva_lt_current |
62 | 56 | LIBVA_LT_REV=libva_lt_revision |
63 | 57 | LIBVA_LT_AGE=libva_lt_age |
@@ -40,7 +40,6 @@ | ||
40 | 40 | |
41 | 41 | |
42 | 42 | #define DRIVER_INIT_FUNC "__vaDriverInit_0_31" |
43 | -#define DRIVER_INIT_FUNC_SDS "__vaDriverInit_0_31_sds" | |
44 | 43 | |
45 | 44 | #define DRIVER_EXTENSION "_drv_video.so" |
46 | 45 |
@@ -171,11 +170,6 @@ static VAStatus va_openDriver(VADisplay dpy, char *driver_name) | ||
171 | 170 | init_func = (VADriverInit) dlsym(handle, DRIVER_INIT_FUNC); |
172 | 171 | if (!init_func) |
173 | 172 | { |
174 | - /* Then try SDS extensions (VDPAU and XvBA backends) */ | |
175 | - init_func = (VADriverInit) dlsym(handle, DRIVER_INIT_FUNC_SDS); | |
176 | - } | |
177 | - if (!init_func) | |
178 | - { | |
179 | 173 | va_errorMessage("%s has no function %s\n", driver_path, DRIVER_INIT_FUNC); |
180 | 174 | dlclose(handle); |
181 | 175 | } |