Changeset a4b948f06ae10f076aa2776dbf8414151eb07f33
- Timestamp:
- 05/12/07 19:27:37
(1 year ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1178990857 +0000
- git-parent:
[49cafbcc92c99d70c8203565ca36684ce4d9446a]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1178990857 +0000
- Message:
Initial JACK audio access-demux from Julien Plissonneau Duquène
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r7766228 |
ra4b948f |
|
| 38 | 38 | * DCCP protocol (requires OS support) for RTP/AVP |
|---|
| 39 | 39 | * Proxy support for MMSH stream |
|---|
| 40 | | * Open YouTube, DailyMotion, metacafe and Google Video urls. |
|---|
| | 40 | * Open YouTube, DailyMotion, metacafe and Google Video URLs. |
|---|
| | 41 | * JACK audio input support |
|---|
| 41 | 42 | |
|---|
| 42 | 43 | Decoders: |
|---|
| r02c82b3 |
ra4b948f |
|
| 103 | 103 | Jonas Larsen <jonas at vrt.dk> - Danish translation |
|---|
| 104 | 104 | Julien Blache <jb at technologeek.org> - disc ejection code |
|---|
| | 105 | Julien Plissonneau Duquène - JACK audio input module |
|---|
| 105 | 106 | kty0ne - WinAmp 5 skin for VLC |
|---|
| 106 | 107 | Kenneth Ostby <kenneo -at- idi -dot- ntnu -dot- no> - Audioscrobbler plugin |
|---|
| r9ea1054 |
ra4b948f |
|
| 4512 | 4512 | |
|---|
| 4513 | 4513 | dnl |
|---|
| 4514 | | dnl JACK module |
|---|
| | 4514 | dnl JACK modules |
|---|
| 4515 | 4515 | dnl |
|---|
| 4516 | 4516 | AC_ARG_ENABLE(jack, |
|---|
| 4517 | | [ --enable-jack JACK audio module (default disabled)], |
|---|
| 4518 | | [if test "${enable_jack}" = "yes" |
|---|
| 4519 | | then |
|---|
| 4520 | | AC_CHECK_HEADERS(jack/jack.h, [ |
|---|
| 4521 | | VLC_ADD_PLUGINS([jack]) |
|---|
| 4522 | | VLC_ADD_LDFLAGS([jack],[-ljack]) ]) |
|---|
| 4523 | | fi]) |
|---|
| | 4517 | [ --enable-jack JACK audio I/O modules (default disabled)],, |
|---|
| | 4518 | [enable_jack="no"]) |
|---|
| | 4519 | |
|---|
| | 4520 | AS_IF([test "${enable_jack}" != "no"], [ |
|---|
| | 4521 | AC_CHECK_HEADERS(jack/jack.h, [ |
|---|
| | 4522 | VLC_ADD_PLUGINS([access_jack jack]) |
|---|
| | 4523 | VLC_ADD_LDFLAGS([access_jack jack],[-ljack]) |
|---|
| | 4524 | ],[AC_MSG_ERROR([cannot find JACK headers])]) |
|---|
| | 4525 | ]) |
|---|
| 4524 | 4526 | |
|---|
| 4525 | 4527 | dnl |
|---|
| r10649df |
ra4b948f |
|
| 22 | 22 | vcd/cdrom_internals.h \ |
|---|
| 23 | 23 | $(NULL) |
|---|
| | 24 | SOURCES_access_jack = jack.c |
|---|