*** empty log message ***

This commit is contained in:
Norbert Schnell 2004-06-04 07:57:41 +00:00
parent 350551578a
commit 39d6038549
5 changed files with 464 additions and 348 deletions

View file

@ -1,10 +1,7 @@
******************************************************************
*
* This is fluidsynth~,
* a derivative of the Fluid Synth soundfont synthesizer for Max/MSP.
*
* Take a look here:
* http://www.ircam.fr/equipes/temps-reel/maxmsp/fluidsynth.html
* a derivative for Max/MSP of the Fluid Synth soundfont synthesizer.
*
* Fluid Synth is written by Peter Hanappe et al.
* See http://www.fluidsynth.org/.
@ -12,6 +9,9 @@
* Max/MSP integration by Norbert Schnell, IRCAM - Centre Pompidou
* Norbert.Schnell@ircam.fr
*
* Take a look here:
* http://www.ircam.fr/equipes/temps-reel/maxmsp/fluidsynth.html
*
_____________________________________________________________________
LICENSE
@ -30,6 +30,12 @@ SYSTEM REQUIREMENTS
This version of fluidsynth~ was created and tested with Max/MSP 4.3 on Mac OS X (10.3) Panther.
The Mac OS 9 version of the external was not tested.
_____________________________________________________________________
RELASE NOTES of version 05/2004 (release 7)
- fixed bug of crash for "info channels" in case of channel(s) without defined preset
- rebuilt Mac OS 9 version
- extended help patch
_____________________________________________________________________
RELASE NOTES of version 04/2004 (release 6)
@ -38,18 +44,14 @@ RELASE NOTES of version 04/2004 (release 6)
- introduced a message "info" in order to query the current state of fluidsynth~
_____________________________________________________________________
THIS CVS DIRECTORY
CVS DIRECTORY
The fluidsynth directory in this directory contains only a version.h which is just added for the case that the version.h file in the fluidsynth checkout is not (auto-)"maked" or generated otherwise.
cvs repository: savannah.nongnu.org:/cvsroot/fluid
Max/MSP implementation directory: bindings/fluidmax
For now the file fluid_sys.c is not included to the CW project. Instead there (here) is a file called fluidmax_fakefuns.c implementing some necessary functions.
The fluidsynth directory in the fluidmax directory contains only a version.h which is just added for the case that the version.h file in the fluidsynth checkout is not (auto-)"maked" or generated otherwise.
Using fluid_sys.c with the macro MACOS 9 defined almost works. Its only the prototype of the function NewTimerProc() causing a compilation error (no prototype) and I didn't find any good include to fix this...
The following three functions used in fluid_settings are missing:
fluid_shell_settings()
fluid_audio_driver_settings()
fluid_midi_driver_settings()
For now the file fluid_sys.c is not included to the CW project. Instead there is a file called fluidmax_fakefuns.c implementing some necessary functions.
_____________________________________________________________________
KNOWN BUGS:

File diff suppressed because it is too large Load diff

View file

@ -70,8 +70,8 @@ fluid_log(int level, char* fmt, ...)
vsprintf(buf, fmt, args);
va_end (args);
if ((level >= 0) && (level < LAST_LOG_LEVEL))
post("fluidsynth~: %s", buf);
if ((level > 0) && (level < LAST_LOG_LEVEL))
post("fluidsynth~ core (level %d): %s", level, buf);
return -1;
}