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: ...@@ -37,7 +37,8 @@ Input/Demuxers:
* UDP-Lite protocol (requires OS support) for RTP/AVP * UDP-Lite protocol (requires OS support) for RTP/AVP
* DCCP protocol (requires OS support) for RTP/AVP * DCCP protocol (requires OS support) for RTP/AVP
* Proxy support for MMSH stream * 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: Decoders:
* VP60/VP61/VP6F/VP62 support * VP60/VP61/VP6F/VP62 support
......
...@@ -102,6 +102,7 @@ Johen Michael Zorko <zorko at att.net> - fix for delay issues in udp sout ...@@ -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 John Paul Lorenti <jpl31 at columbia.edu> - ALSA device selection patch
Jonas Larsen <jonas at vrt.dk> - Danish translation Jonas Larsen <jonas at vrt.dk> - Danish translation
Julien Blache <jb at technologeek.org> - disc ejection code Julien Blache <jb at technologeek.org> - disc ejection code
Julien Plissonneau Duquène - JACK audio input module 
kty0ne - WinAmp 5 skin for VLC kty0ne - WinAmp 5 skin for VLC
Kenneth Ostby <kenneo -at- idi -dot- ntnu -dot- no> - Audioscrobbler plugin 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 Kenneth Self <kens at campoz DoT. fslife _dOt co dOT- uk> - BDA capture plugin
......
...@@ -4511,16 +4511,18 @@ then ...@@ -4511,16 +4511,18 @@ then
fi fi
dnl dnl
dnl JACK module dnl JACK modules
dnl dnl
AC_ARG_ENABLE(jack, AC_ARG_ENABLE(jack,
[ --enable-jack JACK audio module (default disabled)], [ --enable-jack JACK audio I/O modules (default disabled)],,
[if test "${enable_jack}" = "yes" [enable_jack="no"])
then
AC_CHECK_HEADERS(jack/jack.h, [ AS_IF([test "${enable_jack}" != "no"], [
VLC_ADD_PLUGINS([jack]) AC_CHECK_HEADERS(jack/jack.h, [
VLC_ADD_LDFLAGS([jack],[-ljack]) ]) VLC_ADD_PLUGINS([access_jack jack])
fi]) VLC_ADD_LDFLAGS([access_jack jack],[-ljack])
],[AC_MSG_ERROR([cannot find JACK headers])])
])
dnl dnl
dnl CyberLink for C++ UPnP stack dnl CyberLink for C++ UPnP stack
......
...@@ -21,3 +21,4 @@ SOURCES_cdda = \ ...@@ -21,3 +21,4 @@ SOURCES_cdda = \
vcd/cdrom.h \ vcd/cdrom.h \
vcd/cdrom_internals.h \ vcd/cdrom_internals.h \
$(NULL) $(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