Reviewed-by: Mark Cave-Ayland <mark.caveayland@nutanix.com>
Reviewed-by: Akihiko Odaki <odaki@rsg.ci.i.u-tokyo.ac.jp>
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
#include "qemu/audio.h"
#include "qemu/audio-capture.h"
#include "qapi/error.h"
+#include "trace.h"
bool audio_be_check(AudioBackend **be, Error **errp)
{
{
AudioBackendClass *klass = AUDIO_BACKEND_GET_CLASS(be);
+ trace_audio_be_set_active_out(sw, on);
+
if (!sw) {
return;
}
{
AudioBackendClass *klass = AUDIO_BACKEND_GET_CLASS(be);
+ trace_audio_be_set_active_in(sw, on);
+
if (!sw) {
return;
}
pw_period(uint64_t quantum, uint32_t rate) "period =%" PRIu64 "/%u"
pw_audio_init(void) "Initialize PipeWire context"
+# audio-be.c
+audio_be_set_active_in(void *sw, bool on) "sw=%p, on=%d"
+audio_be_set_active_out(void *sw, bool on) "sw=%p, on=%d"
+
# audio.c
audio_timer_start(int interval) "interval %d ms"
audio_timer_stop(void) ""