summaryrefslogtreecommitdiff
path: root/soundbox/pipewire-binding.c
AgeCommit message (Collapse)Author
2024-12-15pipewire: Implement capture tear-downxegineering
This closes the PipeWire process properly to not leak memory and remove the PipeWire capture node of soundbox as soon as the context passed to StreamPipewireContext() is closed.
2024-12-14pipewire: Disable auto-connectxegineering
This used to connect the soundbox capture device directly to the default input (usually system microphone). This is not wanted since the main purpose of soundbox is not streaming the microphone but output of media players. Furthermore depending on the sound setup it could lead to a feedback loop with a very loud noise.
2024-12-10pipewire: Avoid unnamed struct member initxegineering
This makes the code less readable.
2024-12-08pipewire: Add experimental PipeWire supportxegineering
This implements a PipeWire capture device which can be used as an input source instead of the already available URL input. Known issues with the current PipeWire support are: - user has to connect the monitor of the default audio sink to the capture device manually - correct shutdown has to be tested - multiple instances do not work - medium code quality requires refactoring Since this is nevertheless usable and possible unknown bugs should be figured out in practise soon this implementation is already added. Bugfixes and refactoring might follow.