• R/O
  • HTTP
  • SSH
  • HTTPS

提交

標籤
無標籤

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

hardware/intel/common/libva


Commit MetaInfo

修訂0b59c605e83d1316e9d92c8a49b24b46ad3d925f (tree)
時間2009-09-03 12:02:35
作者Gwenole Beauchesne <gbeauchesne@spli...>
CommiterAustin Yuan

Log Message

Drop references to SDS.

Change Summary

差異

--- a/configure.ac
+++ b/configure.ac
@@ -28,9 +28,6 @@ m4_define([libva_micro_version], [0])
2828 m4_define([libva_version],
2929 [libva_major_version.libva_minor_version.libva_micro_version])
3030
31-# increase this number for each API change
32-m4_define([libva_sds_version], [2])
33-
3431 # if the library source code has changed, increment revision
3532 m4_define([libva_lt_revision], [0])
3633 # if any interface was added/removed/changed, then inc current, reset revision
@@ -55,9 +52,6 @@ AC_SUBST(LIBVA_MINOR_VERSION)
5552 AC_SUBST(LIBVA_MICRO_VERSION)
5653 AC_SUBST(LIBVA_VERSION)
5754
58-LIBVA_SDS_VERSION=libva_sds_version
59-AC_SUBST(LIBVA_SDS_VERSION)
60-
6155 LIBVA_LT_CURRENT=libva_lt_current
6256 LIBVA_LT_REV=libva_lt_revision
6357 LIBVA_LT_AGE=libva_lt_age
--- a/src/va.c
+++ b/src/va.c
@@ -40,7 +40,6 @@
4040
4141
4242 #define DRIVER_INIT_FUNC "__vaDriverInit_0_31"
43-#define DRIVER_INIT_FUNC_SDS "__vaDriverInit_0_31_sds"
4443
4544 #define DRIVER_EXTENSION "_drv_video.so"
4645
@@ -171,11 +170,6 @@ static VAStatus va_openDriver(VADisplay dpy, char *driver_name)
171170 init_func = (VADriverInit) dlsym(handle, DRIVER_INIT_FUNC);
172171 if (!init_func)
173172 {
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- {
179173 va_errorMessage("%s has no function %s\n", driver_path, DRIVER_INIT_FUNC);
180174 dlclose(handle);
181175 }