src/sysaudio: move mach-sysaudio@ce8ab30dd300b822224d14997c58c06520b642c9 package to here

Helps hexops/mach#1165

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2024-03-04 18:44:39 -07:00 committed by Stephen Gutekanst
parent d64d30c7db
commit bca1543391
16 changed files with 7876 additions and 0 deletions

View file

@ -0,0 +1,11 @@
#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);
}