Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
libva
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
libva
Commits
d8618bcd
Commit
d8618bcd
authored
Mar 26, 2009
by
Austin Yuan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "patch 108_drivers_path.patch"
This reverts commit
adac1a51
.
parent
8d3eb707
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
4 additions
and
13 deletions
+4
-13
configure.ac
configure.ac
+0
-7
dummy_drv_video/Makefile.am
dummy_drv_video/Makefile.am
+1
-1
libva.pc.in
libva.pc.in
+0
-1
src/Makefile.am
src/Makefile.am
+1
-2
src/va.c
src/va.c
+2
-2
No files found.
configure.ac
View file @
d8618bcd
...
@@ -27,13 +27,6 @@ AM_INIT_AUTOMAKE([dist-bzip2])
...
@@ -27,13 +27,6 @@ AM_INIT_AUTOMAKE([dist-bzip2])
AM_CONFIG_HEADER([src/config.h])
AM_CONFIG_HEADER([src/config.h])
AC_ARG_WITH(drivers-path,
[AC_HELP_STRING([--with-drivers-path=[[path]]], [drivers path])],,
[with_drivers_path="$libdir/va/drivers"])
LIBVA_DRIVERS_PATH="$with_drivers_path"
AC_SUBST(LIBVA_DRIVERS_PATH)
AC_DISABLE_STATIC
AC_DISABLE_STATIC
AC_PROG_LIBTOOL
AC_PROG_LIBTOOL
AC_PROG_CC
AC_PROG_CC
...
...
dummy_drv_video/Makefile.am
View file @
d8618bcd
...
@@ -21,7 +21,7 @@
...
@@ -21,7 +21,7 @@
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
dummy_drv_video_la_LTLIBRARIES
=
dummy_drv_video.la
dummy_drv_video_la_LTLIBRARIES
=
dummy_drv_video.la
dummy_drv_video_ladir
=
@LIBVA_DRIVERS_PATH@
dummy_drv_video_ladir
=
/usr/lib/dri
dummy_drv_video_la_LDFLAGS
=
-module
-avoid-version
-no-undefined
-Wl
,--no-undefined
dummy_drv_video_la_LDFLAGS
=
-module
-avoid-version
-no-undefined
-Wl
,--no-undefined
dummy_drv_video_la_LIBADD
=
../src/libva.la
dummy_drv_video_la_LIBADD
=
../src/libva.la
...
...
libva.pc.in
View file @
d8618bcd
...
@@ -2,7 +2,6 @@ prefix=@prefix@
...
@@ -2,7 +2,6 @@ prefix=@prefix@
exec_prefix=@exec_prefix@
exec_prefix=@exec_prefix@
libdir=@libdir@
libdir=@libdir@
includedir=@includedir@
includedir=@includedir@
driverdir=@LIBVA_DRIVERS_PATH@
Name: libva
Name: libva
Description: Userspace Video Acceleration (VA) core interface
Description: Userspace Video Acceleration (VA) core interface
...
...
src/Makefile.am
View file @
d8618bcd
...
@@ -22,8 +22,7 @@
...
@@ -22,8 +22,7 @@
INCLUDES
=
\
INCLUDES
=
\
$(LIBVA_CFLAGS)
\
$(LIBVA_CFLAGS)
\
-DIN_LIBVA
\
-DIN_LIBVA
-DVA_DRIVERS_PATH
=
"
\"
$(LIBVA_DRIVERS_PATH)
\"
"
libva_la_LTLIBRARIES
=
libva.la
libva_la_LTLIBRARIES
=
libva.la
libva_ladir
=
$(libdir)
libva_ladir
=
$(libdir)
...
...
src/va.c
View file @
d8618bcd
...
@@ -36,7 +36,7 @@
...
@@ -36,7 +36,7 @@
#define VA_MINOR_VERSION 30
#define VA_MINOR_VERSION 30
#define DRIVER_INIT_FUNC "__vaDriverInit_0_30"
#define DRIVER_INIT_FUNC "__vaDriverInit_0_30"
#define DEFAULT_DRIVER_DIR "/usr/
X11R6/lib/modules/dri
"
#define DEFAULT_DRIVER_DIR "/usr/
lib/dri/
"
#define DRIVER_EXTENSION "_drv_video.so"
#define DRIVER_EXTENSION "_drv_video.so"
#define CTX(dpy) (((VADisplayContextP)dpy)->pDriverContext)
#define CTX(dpy) (((VADisplayContextP)dpy)->pDriverContext)
...
@@ -128,7 +128,7 @@ static VAStatus va_openDriver(VADisplay dpy, char *driver_name)
...
@@ -128,7 +128,7 @@ static VAStatus va_openDriver(VADisplay dpy, char *driver_name)
}
}
if
(
!
search_path
)
if
(
!
search_path
)
{
{
search_path
=
VA_DRIVERS_PATH
;
search_path
=
DEFAULT_DRIVER_DIR
;
}
}
search_path
=
strdup
(
search_path
);
search_path
=
strdup
(
search_path
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment