diff options
author | dec05eba <dec05eba@protonmail.com> | 2024-12-06 12:53:44 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2024-12-06 12:53:44 +0100 |
commit | 175ed79b06ecb5615eff1df26e932cf644d78300 (patch) | |
tree | 8767a0394cf6965a77d6e6817270e710aa6f8d3d /include/sound.hpp | |
parent | 1b409478847dd825683b8ac1f1cae613b3155bd9 (diff) |
Fix virtual sink not destroyed if gsr is forcefully killed (use pipewire to create the virtual sink instead of pulseaudio)
Diffstat (limited to 'include/sound.hpp')
-rw-r--r-- | include/sound.hpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/sound.hpp b/include/sound.hpp index 21bf0bf..215e167 100644 --- a/include/sound.hpp +++ b/include/sound.hpp @@ -64,11 +64,6 @@ typedef enum { Returns 0 on success, or a negative value on failure. */ int sound_device_get_by_name(SoundDevice *device, const char *device_name, const char *description, unsigned int num_channels, unsigned int period_frame_size, AudioFormat audio_format); -/* - Creates a module-combine-sink and connects to it for recording, returning the device into the |device| parameter. - Returns 0 on success, or a negative value on failure. -*/ -int sound_device_create_combined_sink_connect(SoundDevice *device, const char *combined_sink_name, unsigned int num_channels, unsigned int period_frame_size, AudioFormat audio_format); void sound_device_close(SoundDevice *device); |