summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGwenole Beauchesne <gbeauchesne@splitted-desktop.com>2009-09-02 09:33:10 +0000
committerAustin Yuan <shengquan.yuan@intel.com>2009-09-03 11:02:35 +0800
commit0b59c605e83d1316e9d92c8a49b24b46ad3d925f (patch)
treed654be06b1805e1d7f9ec40106a653a1efe7d629 /src
parent9664f0b207b48a141200bf392374eef82b3a1d08 (diff)
downloadlibva-0b59c605e83d1316e9d92c8a49b24b46ad3d925f.tar.gz
Drop references to SDS.
Diffstat (limited to 'src')
-rw-r--r--src/va.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/va.c b/src/va.c
index 9a34534..c3f0868 100644
--- a/src/va.c
+++ b/src/va.c
@@ -40,7 +40,6 @@
#define DRIVER_INIT_FUNC "__vaDriverInit_0_31"
-#define DRIVER_INIT_FUNC_SDS "__vaDriverInit_0_31_sds"
#define DRIVER_EXTENSION "_drv_video.so"
@@ -171,11 +170,6 @@ static VAStatus va_openDriver(VADisplay dpy, char *driver_name)
init_func = (VADriverInit) dlsym(handle, DRIVER_INIT_FUNC);
if (!init_func)
{
- /* Then try SDS extensions (VDPAU and XvBA backends) */
- init_func = (VADriverInit) dlsym(handle, DRIVER_INIT_FUNC_SDS);
- }
- if (!init_func)
- {
va_errorMessage("%s has no function %s\n", driver_path, DRIVER_INIT_FUNC);
dlclose(handle);
}