Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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
vlc-gpu
Commits
c88c8eae
Commit
c88c8eae
authored
Aug 16, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Define HAVE_V4L2 conditional
There should be more V4L2-based plugins later, e.g. FM RX, FM TX, VOUT.
parent
d2a613c7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
17 deletions
+20
-17
configure.ac
configure.ac
+12
-16
modules/access/Modules.am
modules/access/Modules.am
+8
-1
No files found.
configure.ac
View file @
c88c8eae
...
@@ -2032,22 +2032,18 @@ dnl Video4Linux2 plugin
...
@@ -2032,22 +2032,18 @@ dnl Video4Linux2 plugin
dnl
dnl
AC_ARG_ENABLE(v4l2,
AC_ARG_ENABLE(v4l2,
[AS_HELP_STRING([--disable-v4l2],
[AS_HELP_STRING([--disable-v4l2],
[do not support Video4Linux version 2 (default auto)])])
[disable Video4Linux2 support (default auto)])])
AC_ARG_WITH(v4l2,
have_v4l2="no"
[AS_HELP_STRING([--with-v4l2=PATH], [path to a V4L2-enabled kernel tree])])
AS_IF([test "${enable_v4l2}" != "no"], [
if test "${enable_v4l2}" != "no"
AC_CHECK_HEADERS([linux/videodev2.h sys/videoio.h], [
then
have_v4l2="yes"
if test "${with_v4l2}" != "no" -a -n "${with_v4l2}"
], [
then
AS_IF([test "x${enable_v4l2}" != "x"], [
VLC_ADD_CPPFLAGS([v4l2],[-I${with_v4l2}/include])
AC_MSG_ERROR([Video4Linux2 headers not found!])
fi
])
])
CPPFLAGS="${CPPFLAGS_save} ${CPPFLAGS_v4l2}"
])
AC_CHECK_HEADERS(linux/videodev2.h sys/videoio.h, [
AM_CONDITIONAL(HAVE_V4L2, [test "${have_v4l2}" != "no"])
VLC_ADD_PLUGIN([v4l2])
],[])
CPPFLAGS="${CPPFLAGS_save}"
fi
dnl
dnl
dnl libv4l2 support for video4linux.
dnl libv4l2 support for video4linux.
...
...
modules/access/Modules.am
View file @
c88c8eae
...
@@ -44,7 +44,6 @@ SOURCES_dvdnav = dvdnav.c
...
@@ -44,7 +44,6 @@ SOURCES_dvdnav = dvdnav.c
SOURCES_dvdread = dvdread.c
SOURCES_dvdread = dvdread.c
SOURCES_dc1394 = dc1394.c
SOURCES_dc1394 = dc1394.c
SOURCES_pvr = pvr.c
SOURCES_pvr = pvr.c
SOURCES_v4l2 = v4l2.c
SOURCES_qtcapture = qtcapture.m
SOURCES_qtcapture = qtcapture.m
SOURCES_linsys_sdi = linsys/linsys_sdi.c linsys/linsys_sdi.h
SOURCES_linsys_sdi = linsys/linsys_sdi.c linsys/linsys_sdi.h
SOURCES_linsys_hdsdi = \
SOURCES_linsys_hdsdi = \
...
@@ -120,6 +119,14 @@ libaccess_shm_plugin_la_LIBADD = $(AM_LIBADD)
...
@@ -120,6 +119,14 @@ libaccess_shm_plugin_la_LIBADD = $(AM_LIBADD)
libaccess_shm_plugin_la_DEPENDENCIES =
libaccess_shm_plugin_la_DEPENDENCIES =
libvlc_LTLIBRARIES += $(LTLIBaccess_shm)
libvlc_LTLIBRARIES += $(LTLIBaccess_shm)
libv4l2_plugin_la_SOURCES = v4l2.c
libv4l2_plugin_la_CFLAGS = $(AM_CFLAGS)
libv4l2_plugin_la_LIBADD = $(AM_LIBADD)
libv4l2_plugin_la_DEPENDENCIES =
if HAVE_V4L2
libvlc_LTLIBRARIES += libv4l2_plugin.la
endif
libxcb_screen_plugin_la_SOURCES = screen/xcb.c
libxcb_screen_plugin_la_SOURCES = screen/xcb.c
libxcb_screen_plugin_la_CFLAGS = $(AM_CFLAGS) \
libxcb_screen_plugin_la_CFLAGS = $(AM_CFLAGS) \
$(XCB_CFLAGS) $(XCB_COMPOSITE_CFLAGS)
$(XCB_CFLAGS) $(XCB_COMPOSITE_CFLAGS)
...
...
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