Changeset 23314963e9a2ea1ca3428b47e64a398d02892f12
- Timestamp:
- 10/10/07 21:05:00
(1 year ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1192043100 +0000
- git-parent:
[771fe0b86d7251baa24b9b1732acb95711bdb16a]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1192043100 +0000
- Message:
MIDI message decoder using Fluidsynth software synthetizer
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r8cbf135 |
r2331496 |
|
| 61 | 61 | * Improved Ogg/Vorbis tags support |
|---|
| 62 | 62 | * Raw video support |
|---|
| | 63 | * Standard MIDI File (types 0 & 1) support |
|---|
| 63 | 64 | |
|---|
| 64 | 65 | Decoders: |
|---|
| … | … | |
| 71 | 72 | * Karl Morton's Video support |
|---|
| 72 | 73 | * limited atrac3 support |
|---|
| | 74 | * Fluidsynth MIDI software synthesis (with external sound fonts) |
|---|
| 73 | 75 | * New codec FOURCCs to support more specific files: |
|---|
| 74 | 76 | Avid, FCP, Sony, Samsung, ... |
|---|
| r27048de |
r2331496 |
|
| 3779 | 3779 | fi |
|---|
| 3780 | 3780 | fi |
|---|
| | 3781 | |
|---|
| | 3782 | dnl |
|---|
| | 3783 | dnl libfluidsynth (MIDI synthetizer) plugin |
|---|
| | 3784 | dnl |
|---|
| | 3785 | AC_ARG_ENABLE(fluidsynth, |
|---|
| | 3786 | [ --enable-fluidsynth MIDI synthesisr with libfluidsynth (default auto)]) |
|---|
| | 3787 | AS_IF([test "x${enable_fluidsynth}" != "xno"], [ |
|---|
| | 3788 | PKG_CHECK_MODULES(FLUIDSYNTH, fluidsynth, [ |
|---|
| | 3789 | VLC_ADD_PLUGINS(fluidsynth) |
|---|
| | 3790 | VLC_ADD_CFLAGS(fluidsynth, [${FLUIDSYNTH_CFLAGS}]) |
|---|
| | 3791 | VLC_ADD_LDFLAGS(fluidsynth, [${FLUIDSYNTH_LIBS}]) |
|---|
| | 3792 | ], [ |
|---|
| | 3793 | AS_IF([test "x${enable_fluidsynth}" != "x"], [ |
|---|
| | 3794 | AC_MSG_ERROR([${FLUIDSYNTH_PKG_ERRORS}]) |
|---|
| | 3795 | ]) |
|---|
| | 3796 | ]) |
|---|
| | 3797 | ]) |
|---|
| 3781 | 3798 | |
|---|
| 3782 | 3799 | dnl |
|---|
| r10306b1 |
r2331496 |
|
| 31 | 31 | SOURCES_zvbi = zvbi.c |
|---|
| 32 | 32 | SOURCES_cdg = cdg.c |
|---|
| | 33 | SOURCES_fluidsynth = fluidsynth.c |
|---|