All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/30] audio patch queue
@ 2017-05-04  7:17 Gerd Hoffmann
  2017-05-04  7:17 ` [Qemu-devel] [PULL 01/30] hw/audio: replace exit with unrealize in hda_codec_device_class_init Gerd Hoffmann
                   ` (31 more replies)
  0 siblings, 32 replies; 33+ messages in thread
From: Gerd Hoffmann @ 2017-05-04  7:17 UTC (permalink / raw)
  To: qemu-devel; +Cc: Gerd Hoffmann

  Hi,

First audio pull for 2.10, with a bunch of cleanups sent during the
freeze, and two memory leak fixes.

please pull,
  Gerd

The following changes since commit e619b14746e5d8c0e53061661fd0e1da01fd4d60:

  Merge remote-tracking branch 'sthibault/tags/samuel-thibault' into staging (2017-05-02 15:16:29 +0100)

are available in the git repository at:

  git://git.kraxel.org/qemu tags/pull-audio-20170504-1

for you to fetch changes up to 9ea5ada76f34a0ef048b131c3a166d8564199bdb:

  audio: Use ARRAY_SIZE from qemu/osdep.h (2017-05-04 09:16:05 +0200)

----------------------------------------------------------------
audio: cleanups, bugfixes (memory leaks).

----------------------------------------------------------------
Gerd Hoffmann (1):
      audio: release capture buffers

Juan Quintela (26):
      adlib: Remove support for YMF262
      audio: remove Y8950 configuration
      audio: Remove YM3526 support
      audio: YM3812 was always defined
      audio: Remove UINT8
      audio: remove UINT16
      audio: remove UINT32
      audio: Remove INT8
      audio: remove INT16
      audio: Remove INT32
      audio: Unfold OPLSAMPLE
      audio: Remove Unused OPL_TYPE_*
      audio: Remove type field
      audio: Remove unused fields
      audio: GUSbyte is uint8_t
      audio: remove GUSchar
      audio: GUSword is uint16_t
      audio: GUSword is uint16_t
      audio: GUSsample is int16_t
      audio: OPLSetIRQHandler is not used anywhere
      audio: OPLSetUpdateHandler is not used anywhere
      audio: IRQHandler is not used anymore
      audio: UpdateHandler is not used anymore
      audio: Remove unused typedefs
      audio: un-export OPLResetChip
      audio: Use ARRAY_SIZE from qemu/osdep.h

Marc-André Lureau (1):
      audio: fix WAVState leak

Zihan Yang (2):
      hw/audio: replace exit with unrealize in hda_codec_device_class_init
      hw/audio: convert exit callback in HDACodecDeviceClass to void

 hw/audio/fmopl.h        | 175 +++++++++---------------------
 hw/audio/gusemu.h       |  22 +---
 hw/audio/intel-hda.h    |   2 +-
 audio/audio.c           |   2 +
 audio/wavcapture.c      |   1 +
 hw/audio/adlib.c        |  47 +-------
 hw/audio/fmopl.c        | 277 ++++++++----------------------------------------
 hw/audio/gus.c          |   2 +-
 hw/audio/gusemu_hal.c   |  74 ++++++-------
 hw/audio/gusemu_mixer.c |  28 ++---
 hw/audio/hda-codec.c    |   3 +-
 hw/audio/intel-hda.c    |   5 +-
 hw/audio/Makefile.objs  |   2 -
 13 files changed, 160 insertions(+), 480 deletions(-)

^ permalink raw reply	[flat|nested] 33+ messages in thread

end of thread, other threads:[~2017-05-05 15:47 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-05-04  7:17 [Qemu-devel] [PULL 00/30] audio patch queue Gerd Hoffmann
2017-05-04  7:17 ` [Qemu-devel] [PULL 01/30] hw/audio: replace exit with unrealize in hda_codec_device_class_init Gerd Hoffmann
2017-05-04  7:17 ` [Qemu-devel] [PULL 02/30] hw/audio: convert exit callback in HDACodecDeviceClass to void Gerd Hoffmann
2017-05-04  7:17 ` [Qemu-devel] [PULL 03/30] audio: release capture buffers Gerd Hoffmann
2017-05-04  7:17 ` [Qemu-devel] [PULL 04/30] audio: fix WAVState leak Gerd Hoffmann
2017-05-04  7:17 ` [Qemu-devel] [PULL 05/30] adlib: Remove support for YMF262 Gerd Hoffmann
2017-05-04  7:17 ` [Qemu-devel] [PULL 06/30] audio: remove Y8950 configuration Gerd Hoffmann
2017-05-04  7:17 ` [Qemu-devel] [PULL 07/30] audio: Remove YM3526 support Gerd Hoffmann
2017-05-04  7:17 ` [Qemu-devel] [PULL 08/30] audio: YM3812 was always defined Gerd Hoffmann
2017-05-04  7:17 ` [Qemu-devel] [PULL 09/30] audio: Remove UINT8 Gerd Hoffmann
2017-05-04  7:17 ` [Qemu-devel] [PULL 10/30] audio: remove UINT16 Gerd Hoffmann
2017-05-04  7:17 ` [Qemu-devel] [PULL 11/30] audio: remove UINT32 Gerd Hoffmann
2017-05-04  7:17 ` [Qemu-devel] [PULL 12/30] audio: Remove INT8 Gerd Hoffmann
2017-05-04  7:17 ` [Qemu-devel] [PULL 13/30] audio: remove INT16 Gerd Hoffmann
2017-05-04  7:17 ` [Qemu-devel] [PULL 14/30] audio: Remove INT32 Gerd Hoffmann
2017-05-04  7:17 ` [Qemu-devel] [PULL 15/30] audio: Unfold OPLSAMPLE Gerd Hoffmann
2017-05-04  7:17 ` [Qemu-devel] [PULL 16/30] audio: Remove Unused OPL_TYPE_* Gerd Hoffmann
2017-05-04  7:17 ` [Qemu-devel] [PULL 17/30] audio: Remove type field Gerd Hoffmann
2017-05-04  7:17 ` [Qemu-devel] [PULL 18/30] audio: Remove unused fields Gerd Hoffmann
2017-05-04  7:18 ` [Qemu-devel] [PULL 19/30] audio: GUSbyte is uint8_t Gerd Hoffmann
2017-05-04  7:18 ` [Qemu-devel] [PULL 20/30] audio: remove GUSchar Gerd Hoffmann
2017-05-04  7:18 ` [Qemu-devel] [PULL 21/30] audio: GUSword is uint16_t Gerd Hoffmann
2017-05-04  7:18 ` [Qemu-devel] [PULL 22/30] " Gerd Hoffmann
2017-05-04  7:18 ` [Qemu-devel] [PULL 23/30] audio: GUSsample is int16_t Gerd Hoffmann
2017-05-04  7:18 ` [Qemu-devel] [PULL 24/30] audio: OPLSetIRQHandler is not used anywhere Gerd Hoffmann
2017-05-04  7:18 ` [Qemu-devel] [PULL 25/30] audio: OPLSetUpdateHandler " Gerd Hoffmann
2017-05-04  7:18 ` [Qemu-devel] [PULL 26/30] audio: IRQHandler is not used anymore Gerd Hoffmann
2017-05-04  7:18 ` [Qemu-devel] [PULL 27/30] audio: UpdateHandler " Gerd Hoffmann
2017-05-04  7:18 ` [Qemu-devel] [PULL 28/30] audio: Remove unused typedefs Gerd Hoffmann
2017-05-04  7:18 ` [Qemu-devel] [PULL 29/30] audio: un-export OPLResetChip Gerd Hoffmann
2017-05-04  7:18 ` [Qemu-devel] [PULL 30/30] audio: Use ARRAY_SIZE from qemu/osdep.h Gerd Hoffmann
2017-05-04  8:37 ` [Qemu-devel] [PULL 00/30] audio patch queue no-reply
2017-05-05 15:47 ` Stefan Hajnoczi

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.