Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Seungha Yang
gst-plugins-base
Commits
e6bbd8d8
Commit
e6bbd8d8
authored
Dec 20, 2001
by
Thomas Vander Stichele
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added v4l handling
Original commit message from CVS: added v4l handling
parent
0d6ef558
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
12 deletions
+19
-12
configure.ac
configure.ac
+6
-5
sys/Makefile.am
sys/Makefile.am
+13
-7
No files found.
configure.ac
View file @
e6bbd8d8
...
...
@@ -416,6 +416,12 @@ GST_CHECK_FEATURE(OSS, [OSS audio], osssrc osssink, [
AC_CHECK_HEADER(sys/soundcard.h, HAVE_OSS="yes", HAVE_OSS="no")
])
dnl *** Video 4 Linux ***
translit(dnm, m, l) AM_CONDITIONAL(USE_V4L, true)
GST_CHECK_FEATURE(V4L, [Video 4 Linux], v4lsrc, [
AC_CHECK_HEADER(linux/videodev.h, HAVE_V4L="yes", HAVE_V4L="no")
])
dnl *** VGA ***
translit(dnm, m, l) AM_CONDITIONAL(USE_VGA, true)
GST_CHECK_FEATURE(VGA, [VGA], vgavideosink, [
...
...
@@ -762,11 +768,6 @@ AC_CHECK_HEADER(linux/cdrom.h,
HAVE_LINUX_CDROM=yes, HAVE_LINUX_CDROM=no
)
dnl Check for linux/videodev.h
AC_CHECK_HEADER(linux/videodev.h,
HAVE_LINUX_VIDEODEV=yes, HAVE_LINUX_VIDEODEV=no
)
dnl ######################################################################
dnl # Check command line parameters, and set shell variables accordingly #
...
...
sys/Makefile.am
View file @
e6bbd8d8
### FIXME use HAVE_ stuff to decide on dirs
if
USE_VGA
VGA_SUBDS
=
vga
else
VGA_SUBDS
=
endif
if
USE_OSS
OSS_SUBDS
=
oss
else
OSS_SUBDS
=
endif
SUBDIRS
=
$(OSS_SUBDS)
qcam v4l vcd
$(VGA_SUBDS)
xvideo
if
USE_V4L
V4L_SUBDS
=
v4l
else
V4L_SUBDS
=
endif
if
USE_VGA
VGA_SUBDS
=
vga
else
VGA_SUBDS
=
endif
SUBDIRS
=
$(OSS_SUBDS)
qcam
$(V4L_SUBDS)
vcd
$(VGA_SUBDS)
xvideo
DIST_SUBDIRS
=
oss qcam v4l vcd vga xvideo
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