Changeset 23314963e9a2ea1ca3428b47e64a398d02892f12

Show
Ignore:
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
  • NEWS

    r8cbf135 r2331496  
    6161  * Improved Ogg/Vorbis tags support 
    6262  * Raw video support 
     63  * Standard MIDI File (types 0 & 1) support 
    6364 
    6465Decoders: 
     
    7172 * Karl Morton's Video support 
    7273 * limited atrac3 support 
     74 * Fluidsynth MIDI software synthesis (with external sound fonts) 
    7375 * New codec FOURCCs to support more specific files: 
    7476   Avid, FCP, Sony, Samsung, ... 
  • configure.ac

    r27048de r2331496  
    37793779  fi 
    37803780fi 
     3781 
     3782dnl 
     3783dnl libfluidsynth (MIDI synthetizer) plugin 
     3784dnl 
     3785AC_ARG_ENABLE(fluidsynth, 
     3786  [  --enable-fluidsynth     MIDI synthesisr with libfluidsynth (default auto)]) 
     3787AS_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]) 
    37813798 
    37823799dnl 
  • modules/codec/Modules.am

    r10306b1 r2331496  
    3131SOURCES_zvbi = zvbi.c 
    3232SOURCES_cdg = cdg.c 
     33SOURCES_fluidsynth = fluidsynth.c