qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Gerd Hoffmann <kraxel@redhat.com>
To: qemu-devel@nongnu.org
Cc: Gerd Hoffmann <kraxel@redhat.com>
Subject: [Qemu-devel] [PULL 00/20] audio patch queue
Date: Mon, 15 Jun 2015 14:27:51 +0200	[thread overview]
Message-ID: <1434371291-6994-1-git-send-email-kraxel@redhat.com> (raw)

  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.

New in this pull:
 - picked up some additional cleanup patches by Zoltán.
 - 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 0a2df857a7038c75379cc575de5d4be4c0ac629e:

  Merge remote-tracking branch 'remotes/stefanha/tags/net-pull-request' into 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ővágó, Zoltán (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

             reply	other threads:[~2015-06-15 12:28 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-06-15 12:27 Gerd Hoffmann [this message]
2015-06-15 12:27 ` [Qemu-devel] [PULL 01/20] audio: remove esd backend Gerd Hoffmann
2015-06-15 12:27 ` [Qemu-devel] [PULL 02/20] audio: remove fmod backend Gerd Hoffmann
2015-06-15 12:27 ` [Qemu-devel] [PULL 03/20] audio: remove winwave audio driver Gerd Hoffmann
2015-06-15 12:27 ` [Qemu-devel] [PULL 04/20] only enable dsound in case the header file is present Gerd Hoffmann
2015-06-15 12:27 ` [Qemu-devel] [PULL 05/20] audio: expose drv_opaque to init_out and init_in Gerd Hoffmann
2015-06-15 12:27 ` [Qemu-devel] [PULL 06/20] paaudio: do not use global variables Gerd Hoffmann
2015-06-15 12:27 ` [Qemu-devel] [PULL 07/20] alsaaudio: " Gerd Hoffmann
2015-06-15 12:27 ` [Qemu-devel] [PULL 08/20] ossaudio: " Gerd Hoffmann
2015-06-15 12:28 ` [Qemu-devel] [PULL 09/20] wavaudio: " Gerd Hoffmann
2015-06-15 12:28 ` [Qemu-devel] [PULL 10/20] paaudio: fix possible resource leak Gerd Hoffmann
2015-06-15 12:28 ` [Qemu-devel] [PULL 11/20] dsoundaudio: do not use global variables Gerd Hoffmann
2015-06-15 12:28 ` [Qemu-devel] [PULL 12/20] coreaudio: do not use global variables where possible Gerd Hoffmann
2015-06-15 12:28 ` [Qemu-devel] [PULL 13/20] sdlaudio: do not allow multiple instances Gerd Hoffmann
2015-06-15 12:28 ` [Qemu-devel] [PULL 14/20] MAINTAINERS: remove malc from audio Gerd Hoffmann
2015-06-15 12:28 ` [Qemu-devel] [PULL 15/20] audio: remove LOG_TO_MONITOR along with default_mon Gerd Hoffmann
2015-06-15 12:28 ` [Qemu-devel] [PULL 16/20] audio: remove plive Gerd Hoffmann
2015-06-15 12:28 ` [Qemu-devel] [PULL 17/20] dsoundaudio: remove *_retries kludges Gerd Hoffmann
2015-06-15 12:28 ` [Qemu-devel] [PULL 18/20] dsoundaudio: remove primary buffer Gerd Hoffmann
2015-06-15 12:28 ` [Qemu-devel] [PULL 19/20] alsaaudio: use trace events instead of verbose Gerd Hoffmann
2015-06-15 12:28 ` [Qemu-devel] [PULL 20/20] ossaudio: use trace events instead of debug config flag Gerd Hoffmann
2015-06-15 17:03 ` [Qemu-devel] [PULL 00/20] audio patch queue Peter Maydell
2015-06-15 17:05   ` Peter Maydell
2015-06-16  7:50     ` Gerd Hoffmann

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=1434371291-6994-1-git-send-email-kraxel@redhat.com \
    --to=kraxel@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).