mach/src/sysaudio/pipewire/sysaudio.c
Stephen Gutekanst bca1543391 src/sysaudio: move mach-sysaudio@ce8ab30dd300b822224d14997c58c06520b642c9 package to here
Helps hexops/mach#1165

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
2024-03-05 00:22:22 -07:00

11 lines
No EOL
454 B
C

#include <pipewire/core.h>
#include <spa/param/audio/format-utils.h>
struct spa_pod *sysaudio_spa_format_audio_raw_build(struct spa_pod_builder *builder, uint32_t id, struct spa_audio_info_raw *info)
{
return spa_format_audio_raw_build(builder, id, info);
}
void sysaudio_pw_registry_add_listener(struct pw_registry *reg, struct spa_hook *reg_listener, struct pw_registry_events *events) {
pw_registry_add_listener(reg, reg_listener, events, NULL);
}