From: Gerd Hoffmann <kraxel@redhat.com>
To: qemu-devel@nongnu.org
Cc: "Daniel P. Berrangé" <berrange@redhat.com>,
"Eduardo Habkost" <ehabkost@redhat.com>,
"Markus Armbruster" <armbru@redhat.com>,
"Dr. David Alan Gilbert" <dgilbert@redhat.com>,
"Michael Walle" <michael@walle.cc>,
"Gerd Hoffmann" <kraxel@redhat.com>,
"Pavel Dovgalyuk" <pavel.dovgaluk@ispras.ru>,
"Paolo Bonzini" <pbonzini@redhat.com>
Subject: [Qemu-devel] [PULL 00/15] Audio 20190821 patches
Date: Wed, 21 Aug 2019 10:40:58 +0200 [thread overview]
Message-ID: <20190821084113.1840-1-kraxel@redhat.com> (raw)
The following changes since commit 17dc57990320edaad52ac9ea808be9719c91cea6:
Merge remote-tracking branch 'remotes/huth-gitlab/tags/pull-request-2019-08-20' into staging (2019-08-20 14:14:20 +0100)
are available in the Git repository at:
git://git.kraxel.org/qemu tags/audio-20190821-pull-request
for you to fetch changes up to e76ba19a1f1377314573a6df7e2d82b597aa3d0a:
audio: fix memory leak reported by ASAN (2019-08-21 09:13:37 +0200)
----------------------------------------------------------------
audio: second batch of -audiodev support, adding support for multiple backends.
----------------------------------------------------------------
Kővágó, Zoltán (14):
audio: reduce glob_audio_state usage
audio: basic support for multi backend audio
audio: add audiodev property to vnc and wav_capture
audio: add audiodev properties to frontends
paaudio: prepare for multiple audiodev
audio: audiodev= parameters no longer optional when -audiodev present
paaudio: do not move stream when sink/source name is specified
paaudio: properly disconnect streams in fini_*
audio: remove audio_MIN, audio_MAX
audio: do not run each backend in audio_run
paaudio: fix playback glitches
audio: remove read and write pcm_ops
audio: use size_t where makes sense
audio: fix memory leak reported by ASAN
Stefan Weil (1):
audio: Add missing fall through comments
audio/audio.h | 37 ++-
audio/audio_int.h | 43 ++--
audio/audio_template.h | 62 +++--
audio/mixeng.h | 9 +-
audio/rate_template.h | 2 +-
include/hw/qdev-properties.h | 3 +
include/sysemu/replay.h | 4 +-
ui/vnc.h | 2 +
audio/alsaaudio.c | 49 ++--
audio/audio.c | 347 ++++++++++++++-----------
audio/coreaudio.c | 18 +-
audio/dsoundaudio.c | 31 +--
audio/noaudio.c | 39 +--
audio/ossaudio.c | 75 +++---
audio/paaudio.c | 421 ++++++++++++++++++-------------
audio/sdlaudio.c | 30 +--
audio/spiceaudio.c | 34 +--
audio/wavaudio.c | 18 +-
audio/wavcapture.c | 6 +-
hw/audio/ac97.c | 11 +-
hw/audio/adlib.c | 5 +-
hw/audio/cs4231a.c | 5 +-
hw/audio/es1370.c | 13 +-
hw/audio/gus.c | 7 +-
hw/audio/hda-codec.c | 17 +-
hw/audio/milkymist-ac97.c | 14 +-
hw/audio/pcspk.c | 3 +-
hw/audio/pl041.c | 1 +
hw/audio/sb16.c | 3 +-
hw/audio/wm8750.c | 10 +-
hw/core/qdev-properties-system.c | 57 +++++
hw/usb/dev-audio.c | 1 +
monitor/misc.c | 22 +-
replay/replay-audio.c | 16 +-
replay/replay.c | 2 +-
ui/vnc.c | 15 +-
hmp-commands.hx | 11 +-
qemu-options.hx | 6 +
38 files changed, 794 insertions(+), 655 deletions(-)
--
2.18.1
next reply other threads:[~2019-08-21 8:43 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-08-21 8:40 Gerd Hoffmann [this message]
2019-08-21 8:40 ` [Qemu-devel] [PULL 01/15] audio: Add missing fall through comments Gerd Hoffmann
2019-08-21 8:41 ` [Qemu-devel] [PULL 02/15] audio: reduce glob_audio_state usage Gerd Hoffmann
2019-08-21 8:41 ` [Qemu-devel] [PULL 03/15] audio: basic support for multi backend audio Gerd Hoffmann
2019-09-09 17:18 ` Peter Maydell
2019-08-21 8:41 ` [Qemu-devel] [PULL 04/15] audio: add audiodev property to vnc and wav_capture Gerd Hoffmann
2019-08-21 8:41 ` [Qemu-devel] [PULL 05/15] audio: add audiodev properties to frontends Gerd Hoffmann
2019-08-21 8:41 ` [Qemu-devel] [PULL 06/15] paaudio: prepare for multiple audiodev Gerd Hoffmann
2019-08-21 8:41 ` [Qemu-devel] [PULL 07/15] audio: audiodev= parameters no longer optional when -audiodev present Gerd Hoffmann
2019-08-25 9:44 ` Maxim Levitsky
2019-08-25 18:05 ` Zoltán Kővágó
2019-08-25 22:15 ` Maxim Levitsky
2019-08-25 23:34 ` Zoltán Kővágó
2019-08-21 8:41 ` [Qemu-devel] [PULL 08/15] paaudio: do not move stream when sink/source name is specified Gerd Hoffmann
2019-08-21 8:41 ` [Qemu-devel] [PULL 09/15] paaudio: properly disconnect streams in fini_* Gerd Hoffmann
2019-08-21 8:41 ` [Qemu-devel] [PULL 10/15] audio: remove audio_MIN, audio_MAX Gerd Hoffmann
2019-08-21 8:41 ` [Qemu-devel] [PULL 11/15] audio: do not run each backend in audio_run Gerd Hoffmann
2019-08-21 8:41 ` [Qemu-devel] [PULL 12/15] paaudio: fix playback glitches Gerd Hoffmann
2019-08-21 8:41 ` [Qemu-devel] [PULL 13/15] audio: remove read and write pcm_ops Gerd Hoffmann
2019-08-21 8:41 ` [Qemu-devel] [PULL 14/15] audio: use size_t where makes sense Gerd Hoffmann
2019-08-21 8:41 ` [Qemu-devel] [PULL 15/15] audio: fix memory leak reported by ASAN Gerd Hoffmann
2019-08-21 15:58 ` [Qemu-devel] [PULL 00/15] Audio 20190821 patches Peter Maydell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190821084113.1840-1-kraxel@redhat.com \
--to=kraxel@redhat.com \
--cc=armbru@redhat.com \
--cc=berrange@redhat.com \
--cc=dgilbert@redhat.com \
--cc=ehabkost@redhat.com \
--cc=michael@walle.cc \
--cc=pavel.dovgaluk@ispras.ru \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).