Commit a4b948f0 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Initial JACK audio access-demux from Julien Plissonneau Duquène

parent 49cafbcc
......@@ -37,7 +37,8 @@ Input/Demuxers:
* UDP-Lite protocol (requires OS support) for RTP/AVP
* DCCP protocol (requires OS support) for RTP/AVP
* Proxy support for MMSH stream
* Open YouTube, DailyMotion, metacafe and Google Video urls.
* Open YouTube, DailyMotion, metacafe and Google Video URLs.
* JACK audio input support
Decoders:
* VP60/VP61/VP6F/VP62 support
......
......@@ -102,6 +102,7 @@ Johen Michael Zorko <zorko at att.net> - fix for delay issues in udp sout
John Paul Lorenti <jpl31 at columbia.edu> - ALSA device selection patch
Jonas Larsen <jonas at vrt.dk> - Danish translation
Julien Blache <jb at technologeek.org> - disc ejection code
Julien Plissonneau Duquène - JACK audio input module 
kty0ne - WinAmp 5 skin for VLC
Kenneth Ostby <kenneo -at- idi -dot- ntnu -dot- no> - Audioscrobbler plugin
Kenneth Self <kens at campoz DoT. fslife _dOt co dOT- uk> - BDA capture plugin
......
......@@ -4511,16 +4511,18 @@ then
fi
dnl
dnl JACK module
dnl JACK modules
dnl
AC_ARG_ENABLE(jack,
[ --enable-jack JACK audio module (default disabled)],
[if test "${enable_jack}" = "yes"
then
AC_CHECK_HEADERS(jack/jack.h, [
VLC_ADD_PLUGINS([jack])
VLC_ADD_LDFLAGS([jack],[-ljack]) ])
fi])
[ --enable-jack JACK audio I/O modules (default disabled)],,
[enable_jack="no"])
AS_IF([test "${enable_jack}" != "no"], [
AC_CHECK_HEADERS(jack/jack.h, [
VLC_ADD_PLUGINS([access_jack jack])
VLC_ADD_LDFLAGS([access_jack jack],[-ljack])
],[AC_MSG_ERROR([cannot find JACK headers])])
])
dnl
dnl CyberLink for C++ UPnP stack
......
......@@ -21,3 +21,4 @@ SOURCES_cdda = \
vcd/cdrom.h \
vcd/cdrom_internals.h \
$(NULL)
SOURCES_access_jack = jack.c
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment