aboutsummaryrefslogtreecommitdiff
path: root/hw/audio/pl041.c
diff options
context:
space:
mode:
authorKővágó, Zoltán <dirty.ice.hu@gmail.com>2019-08-19 01:06:49 +0200
committerGerd Hoffmann <kraxel@redhat.com>2019-08-21 09:13:37 +0200
commit88e47b9a450f6dabc3429a4d2c421408b07d22bb (patch)
tree9e1d5d5cd779d6a2a4d4c1578b3dcb36116b4cdd /hw/audio/pl041.c
parentf0b9f36d71a373d469da9feb133c91546d37643c (diff)
downloadqemu-88e47b9a450f6dabc3429a4d2c421408b07d22bb.zip
qemu-88e47b9a450f6dabc3429a4d2c421408b07d22bb.tar.gz
qemu-88e47b9a450f6dabc3429a4d2c421408b07d22bb.tar.bz2
audio: add audiodev properties to frontends
Finally add audiodev= options to audio frontends so users can specify which backend to use when multiple backends exist. Not specifying an audiodev= option currently causes the first audiodev to be used, this is fixed in the next commit. Example usage: -audiodev pa,id=foo -device AC97,audiodev=foo Signed-off-by: Kővágó, Zoltán <DirtY.iCE.hu@gmail.com> Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com> Message-id: d64db52dda2d0e9d97bc5ab1dd9adf724280fea1.1566168923.git.DirtY.iCE.hu@gmail.com Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw/audio/pl041.c')
-rw-r--r--hw/audio/pl041.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/audio/pl041.c b/hw/audio/pl041.c
index ca91399..c30417d 100644
--- a/hw/audio/pl041.c
+++ b/hw/audio/pl041.c
@@ -625,6 +625,7 @@ static const VMStateDescription vmstate_pl041 = {
};
static Property pl041_device_properties[] = {
+ DEFINE_AUDIO_PROPERTIES(PL041State, codec.card),
/* Non-compact FIFO depth property */
DEFINE_PROP_UINT32("nc_fifo_depth", PL041State, fifo_depth,
DEFAULT_FIFO_DEPTH),