Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
a4b948f0
Commit
a4b948f0
authored
May 12, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Initial JACK audio access-demux from Julien Plissonneau Duquène
parent
49cafbcc
Changes
5
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
505 additions
and
9 deletions
+505
-9
NEWS
NEWS
+2
-1
THANKS
THANKS
+1
-0
configure.ac
configure.ac
+10
-8
modules/access/Modules.am
modules/access/Modules.am
+1
-0
modules/access/jack.c
modules/access/jack.c
+491
-0
No files found.
NEWS
View file @
a4b948f0
...
@@ -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
...
...
THANKS
View file @
a4b948f0
...
@@ -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
...
...
configure.ac
View file @
a4b948f0
...
@@ -4511,16 +4511,18 @@ then
...
@@ -4511,16 +4511,18 @@ then
fi
fi
dnl
dnl
dnl JACK module
dnl JACK module
s
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
AS_IF([test "${enable_jack}" != "no"], [
AC_CHECK_HEADERS(jack/jack.h, [
AC_CHECK_HEADERS(jack/jack.h, [
VLC_ADD_PLUGINS([jack])
VLC_ADD_PLUGINS([access_jack jack])
VLC_ADD_LDFLAGS([jack],[-ljack]) ])
VLC_ADD_LDFLAGS([access_jack jack],[-ljack])
fi])
],[AC_MSG_ERROR([cannot find JACK headers])])
])
dnl
dnl
dnl CyberLink for C++ UPnP stack
dnl CyberLink for C++ UPnP stack
...
...
modules/access/Modules.am
View file @
a4b948f0
...
@@ -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
modules/access/jack.c
0 → 100644
View file @
a4b948f0
This diff is collapsed.
Click to expand it.
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