From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49085) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z4TUy-0006iZ-Jd for qemu-devel@nongnu.org; Mon, 15 Jun 2015 08:28:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Z4TUu-0005xV-2A for qemu-devel@nongnu.org; Mon, 15 Jun 2015 08:28:20 -0400 Received: from mx1.redhat.com ([209.132.183.28]:51363) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z4TUt-0005xH-Rz for qemu-devel@nongnu.org; Mon, 15 Jun 2015 08:28:16 -0400 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (Postfix) with ESMTPS id 7483F293301 for ; Mon, 15 Jun 2015 12:28:15 +0000 (UTC) From: Gerd Hoffmann Date: Mon, 15 Jun 2015 14:27:51 +0200 Message-Id: <1434371291-6994-1-git-send-email-kraxel@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PULL 00/20] audio patch queue List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann Hi, Here comes the audio patch queue, with bringing the first set of patches created by Zolt=C3=A1n K=C5=91v=C3=A1g=C3=B3 as part of the "qemu audio b= ackends" gsoc project, carrying some preparatory cleanups and small fixes. New in this pull: - picked up some additional cleanup patches by Zolt=C3=A1n. - added fix to only configure dsound in case the header file is actually present (should fix build with older mingw versions). - dropped malc from MAINTAINERS (email bounces). please pull, Gerd The following changes since commit 0a2df857a7038c75379cc575de5d4be4c0ac62= 9e: Merge remote-tracking branch 'remotes/stefanha/tags/net-pull-request' i= nto staging (2015-06-12 15:39:05 +0100) are available in the git repository at: git://git.kraxel.org/qemu tags/pull-audio-20150615-1 for you to fetch changes up to d95d7d802c33f6277c9fb967c14ae0cc99aeb072: ossaudio: use trace events instead of debug config flag (2015-06-15 12:= 42:48 +0200) ---------------------------------------------------------------- audio: remove obsolete backends (esd, fmod, winwave). audio: stop using global variables, small fixes. audio: remove some obsolte and unused code. ---------------------------------------------------------------- Gerd Hoffmann (2): only enable dsound in case the header file is present MAINTAINERS: remove malc from audio K=C5=91v=C3=A1g=C3=B3, Zolt=C3=A1n (18): 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: remove LOG_TO_MONITOR along with default_mon audio: remove plive dsoundaudio: remove *_retries kludges dsoundaudio: remove primary buffer alsaaudio: use trace events instead of verbose ossaudio: use trace events instead of debug config flag MAINTAINERS | 1 - audio/Makefile.objs | 4 - audio/alsaaudio.c | 191 ++++++------ audio/audio.c | 35 +-- audio/audio_int.h | 7 +- audio/audio_template.h | 43 +-- audio/coreaudio.c | 46 +-- audio/dsound_template.h | 51 ++-- audio/dsoundaudio.c | 238 ++++----------- audio/esdaudio.c | 557 ----------------------------------- audio/fmodaudio.c | 685 ----------------------------------------= --- audio/noaudio.c | 4 +- audio/ossaudio.c | 126 ++++---- audio/paaudio.c | 105 ++++--- audio/sdlaudio.c | 10 +- audio/spiceaudio.c | 5 +- audio/wavaudio.c | 42 +-- audio/winwaveaudio.c | 717 ----------------------------------------= ------ configure | 68 ++--- include/monitor/monitor.h | 1 - monitor.c | 4 - trace-events | 16 ++ 22 files changed, 388 insertions(+), 2568 deletions(-) delete mode 100644 audio/esdaudio.c delete mode 100644 audio/fmodaudio.c delete mode 100644 audio/winwaveaudio.c