mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2024-12-02 17:12:15 +00:00
Add PipeWire driver to the audio drivers list
This commit is contained in:
parent
5b36a556fe
commit
c831deb81c
2 changed files with 18 additions and 0 deletions
|
@ -70,6 +70,16 @@ static const fluid_audriver_definition_t fluid_audio_drivers[] =
|
||||||
},
|
},
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if PIPEWIRE_SUPPORT
|
||||||
|
{
|
||||||
|
"pipewire",
|
||||||
|
new_fluid_pipewire_audio_driver,
|
||||||
|
new_fluid_pipewire_audio_driver2,
|
||||||
|
delete_fluid_pipewire_audio_driver,
|
||||||
|
fluid_pipewire_audio_driver_settings
|
||||||
|
},
|
||||||
|
#endif
|
||||||
|
|
||||||
#if OSS_SUPPORT
|
#if OSS_SUPPORT
|
||||||
{
|
{
|
||||||
"oss",
|
"oss",
|
||||||
|
|
|
@ -138,6 +138,14 @@ void fluid_jack_audio_driver_settings(fluid_settings_t *settings);
|
||||||
int fluid_jack_obtain_synth(fluid_settings_t *settings, fluid_synth_t **synth);
|
int fluid_jack_obtain_synth(fluid_settings_t *settings, fluid_synth_t **synth);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if PIPEWIRE_SUPPORT
|
||||||
|
fluid_audio_driver_t *new_fluid_pipewire_audio_driver(fluid_settings_t *settings, fluid_synth_t *synth);
|
||||||
|
fluid_audio_driver_t *new_fluid_pipewire_audio_driver2(fluid_settings_t *settings,
|
||||||
|
fluid_audio_func_t func, void *data);
|
||||||
|
void delete_fluid_pipewire_audio_driver(fluid_audio_driver_t *p);
|
||||||
|
void fluid_pipewire_audio_driver_settings(fluid_settings_t *settings);
|
||||||
|
#endif
|
||||||
|
|
||||||
#if SNDMAN_SUPPORT
|
#if SNDMAN_SUPPORT
|
||||||
fluid_audio_driver_t *new_fluid_sndmgr_audio_driver(fluid_settings_t *settings,
|
fluid_audio_driver_t *new_fluid_sndmgr_audio_driver(fluid_settings_t *settings,
|
||||||
fluid_synth_t *synth);
|
fluid_synth_t *synth);
|
||||||
|
|
Loading…
Reference in a new issue