mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2025-04-07 16:21:18 +00:00
Removed CCA_Use_Jack and CCA_Use_Alsa LADCCA flags.
This commit is contained in:
parent
33b38018b6
commit
00bfe830f3
3 changed files with 16 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
2003-11-14 Josh Green <jgreen@users.sourceforge.net>
|
||||
* src/fluidsynth.c: Removed CCA_Use_Jack and CCA_Use_Alsa flags
|
||||
since LADCCA no longer uses them.
|
||||
|
||||
2003-08-31 Josh Green <jgreen@users.sourceforge.net>
|
||||
|
||||
* acinclude.m4: Renamed AC_SOUND macro to AC_OSS_AUDIO and removed
|
||||
|
|
|
@ -1,6 +1,13 @@
|
|||
This file needs some re-structuring. Please remove anything that has
|
||||
already been done. - Josh Green 2003-08-25
|
||||
|
||||
- Add "unselect" command to shell to set a MIDI channel to not sound.
|
||||
- MIDI file player commands (load/play/stop)
|
||||
- Add API to manipulate and query MIDI file list
|
||||
- Get TCP server working for windows
|
||||
- When specifying -i -s (no console and TCP server) log to TCP clients
|
||||
with easier parsable messages ("warning:", "error:", etc)
|
||||
|
||||
|
||||
Synthesis related
|
||||
-----------------
|
||||
|
@ -23,7 +30,7 @@ Drivers
|
|||
Fluid 1.0:
|
||||
--------------------------------------------
|
||||
|
||||
- deb and rpm package
|
||||
- deb package
|
||||
- Mac and Windows binaries
|
||||
- Xtra binaries
|
||||
|
||||
|
|
|
@ -449,12 +449,16 @@ int main(int argc, char** argv)
|
|||
|
||||
flags = CCA_Config_Data_Set | CCA_Terminal;
|
||||
|
||||
/* Removed from LADCCA? It is sufficient to just set the ALSA id or
|
||||
Jack client name - JG
|
||||
|
||||
if (fluid_settings_str_equal(settings, "audio.driver", "jack")) {
|
||||
flags |= CCA_Use_Jack;
|
||||
}
|
||||
if (fluid_settings_str_equal(settings, "midi.driver", "alsa_seq")) {
|
||||
flags |= CCA_Use_Alsa;
|
||||
}
|
||||
*/
|
||||
|
||||
fluid_cca_client = cca_init (cca_args, "FluidSynth", flags, CCA_PROTOCOL (1,1));
|
||||
|
||||
|
|
Loading…
Reference in a new issue