[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PULL 00/12] audio patch queue
From: |
Gerd Hoffmann |
Subject: |
[Qemu-devel] [PULL 00/12] audio patch queue |
Date: |
Tue, 9 Jun 2015 12:47:19 +0200 |
Hi,
Here comes the audio patch queue, with bringing the first set of patches
created by Zoltán Kővágó as part of the "qemu audio backends" gsoc
project, carrying some preparatory cleanups and small fixes.
please pull,
Gerd
The following changes since commit ee09f84e6bf5383a23c9624115c26b72aa1e076c:
Merge remote-tracking branch 'remotes/bonzini/tags/for-upstream' into staging
(2015-06-08 15:57:41 +0100)
are available in the git repository at:
git://git.kraxel.org/qemu tags/pull-audio-20150609-1
for you to fetch changes up to f8e7403fb2b0f0d78fac7aef6cce8ce62c93bb0a:
sdlaudio: do not allow multiple instances (2015-06-09 10:27:32 +0200)
----------------------------------------------------------------
audio: remove obsolete backends (esd, fmod, winwave).
audio: stop using global variables, small fixes.
----------------------------------------------------------------
Kővágó, Zoltán (12):
audio: remove esd backend
audio: remove fmod backend
audio: remove winwave audio driver
audio: expose drv_opaque to init_out and init_in
paaudio: do not use global variables
alsaaudio: do not use global variables
ossaudio: do not use global variables
wavaudio: do not use global variables
paaudio: fix possible resource leak
dsoundaudio: do not use global variables
coreaudio: do not use global variables where possible
sdlaudio: do not allow multiple instances
audio/Makefile.objs | 4 -
audio/alsaaudio.c | 165 ++++++-----
audio/audio_int.h | 7 +-
audio/audio_template.h | 2 +-
audio/coreaudio.c | 46 ++--
audio/dsound_template.h | 24 +-
audio/dsoundaudio.c | 106 ++++---
audio/esdaudio.c | 557 -------------------------------------
audio/fmodaudio.c | 685 ---------------------------------------------
audio/noaudio.c | 4 +-
audio/ossaudio.c | 115 ++++----
audio/paaudio.c | 105 +++----
audio/sdlaudio.c | 10 +-
audio/spiceaudio.c | 5 +-
audio/wavaudio.c | 42 +--
audio/winwaveaudio.c | 717 ------------------------------------------------
configure | 56 +---
17 files changed, 367 insertions(+), 2283 deletions(-)
delete mode 100644 audio/esdaudio.c
delete mode 100644 audio/fmodaudio.c
delete mode 100644 audio/winwaveaudio.c
- [Qemu-devel] [PULL 00/12] audio patch queue,
Gerd Hoffmann <=
- [Qemu-devel] [PULL 09/12] paaudio: fix possible resource leak, Gerd Hoffmann, 2015/06/09
- [Qemu-devel] [PULL 12/12] sdlaudio: do not allow multiple instances, Gerd Hoffmann, 2015/06/09
- [Qemu-devel] [PULL 08/12] wavaudio: do not use global variables, Gerd Hoffmann, 2015/06/09
- [Qemu-devel] [PULL 11/12] coreaudio: do not use global variables where possible, Gerd Hoffmann, 2015/06/09
- [Qemu-devel] [PULL 04/12] audio: expose drv_opaque to init_out and init_in, Gerd Hoffmann, 2015/06/09
- [Qemu-devel] [PULL 07/12] ossaudio: do not use global variables, Gerd Hoffmann, 2015/06/09
- [Qemu-devel] [PULL 01/12] audio: remove esd backend, Gerd Hoffmann, 2015/06/09
- [Qemu-devel] [PULL 06/12] alsaaudio: do not use global variables, Gerd Hoffmann, 2015/06/09
- [Qemu-devel] [PULL 03/12] audio: remove winwave audio driver, Gerd Hoffmann, 2015/06/09
- [Qemu-devel] [PULL 10/12] dsoundaudio: do not use global variables, Gerd Hoffmann, 2015/06/09