mbox

[PULL,00/13] Audio 20191018 patches

Message ID 20191018074144.24071-1-kraxel@redhat.com
State New
Headers show

Pull-request

git://git.kraxel.org/qemu tags/audio-20191018-pull-request

Message

Gerd Hoffmann Oct. 18, 2019, 7:41 a.m. UTC
The following changes since commit f22f553efffd083ff624be116726f843a39f1148:

  Merge remote-tracking branch 'remotes/rth/tags/pull-tcg-20191013' into staging (2019-10-17 16:48:56 +0100)

are available in the Git repository at:

  git://git.kraxel.org/qemu tags/audio-20191018-pull-request

for you to fetch changes up to 0cf13e367a99dd1abefc46ec94b4c1a80c678f61:

  paaudio: fix channel order for usb-audio 5.1 and 7.1 streams (2019-10-18 08:14:05 +0200)

----------------------------------------------------------------
audio: bugfixes, pa connection and stream naming.
audio: 5.1/7.1 support for alsa, pa and usb-audio.

----------------------------------------------------------------

Kővágó, Zoltán (13):
  audio: fix parameter dereference before NULL check
  audio: paaudio: fix connection and stream name
  audio: paaudio: ability to specify stream name
  audio: add mixing-engine option (documentation)
  audio: make mixeng optional
  paaudio: get/put_buffer functions
  audio: support more than two channels in volume setting
  audio: replace shift in audio_pcm_info with bytes_per_frame
  audio: basic support for multichannel audio
  usb-audio: do not count on avail bytes actually available
  usb-audio: support more than two channels of audio
  usbaudio: change playback counters to 64 bit
  paaudio: fix channel order for usb-audio 5.1 and 7.1 streams

 audio/audio.h           |  10 +
 audio/audio_int.h       |   7 +-
 audio/audio_template.h  |  31 ++-
 audio/dsound_template.h |  10 +-
 audio/alsaaudio.c       |  18 +-
 audio/audio.c           | 176 ++++++++++-----
 audio/coreaudio.c       |   4 +-
 audio/dsoundaudio.c     |   4 +-
 audio/noaudio.c         |   2 +-
 audio/ossaudio.c        |  14 +-
 audio/paaudio.c         | 162 ++++++++++++--
 audio/spiceaudio.c      |  17 +-
 audio/wavaudio.c        |   6 +-
 hw/usb/dev-audio.c      | 461 ++++++++++++++++++++++++++++++++++------
 qapi/audio.json         |  12 ++
 qemu-options.hx         |  15 ++
 16 files changed, 758 insertions(+), 191 deletions(-)

Comments

Peter Maydell Oct. 18, 2019, 3:36 p.m. UTC | #1
On Fri, 18 Oct 2019 at 08:43, Gerd Hoffmann <kraxel@redhat.com> wrote:
>
> The following changes since commit f22f553efffd083ff624be116726f843a39f1148:
>
>   Merge remote-tracking branch 'remotes/rth/tags/pull-tcg-20191013' into staging (2019-10-17 16:48:56 +0100)
>
> are available in the Git repository at:
>
>   git://git.kraxel.org/qemu tags/audio-20191018-pull-request
>
> for you to fetch changes up to 0cf13e367a99dd1abefc46ec94b4c1a80c678f61:
>
>   paaudio: fix channel order for usb-audio 5.1 and 7.1 streams (2019-10-18 08:14:05 +0200)
>
> ----------------------------------------------------------------
> audio: bugfixes, pa connection and stream naming.
> audio: 5.1/7.1 support for alsa, pa and usb-audio.
>


Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/4.2
for any user-visible changes.

-- PMM