[PULL 00/16] Audio 20190924 patches

Gerd Hoffmann posted 16 patches 4 years, 7 months ago
Only 2 patches received!
configure               |   5 -
audio/audio_int.h       |  76 ++++--
audio/audio_pt_int.h    |  22 --
audio/audio_template.h  |  21 +-
audio/dsound_template.h |  47 ++--
audio/alsaaudio.c       | 370 +++++++++--------------------
audio/audio.c           | 383 +++++++++++++++++++++++-------
audio/audio_pt_int.c    | 173 --------------
audio/coreaudio.c       | 143 ++++++------
audio/dsoundaudio.c     | 379 ++++++++----------------------
audio/noaudio.c         |  76 +++---
audio/ossaudio.c        | 364 +++++++++++------------------
audio/paaudio.c         | 499 ++++++++--------------------------------
audio/sdlaudio.c        | 104 ++++-----
audio/spiceaudio.c      | 257 +++++++--------------
audio/wavaudio.c        |  76 ++----
audio/Makefile.objs     |   1 -
qemu-options.hx         |   8 +-
18 files changed, 1083 insertions(+), 1921 deletions(-)
delete mode 100644 audio/audio_pt_int.h
delete mode 100644 audio/audio_pt_int.c
[PULL 00/16] Audio 20190924 patches
Posted by Gerd Hoffmann 4 years, 7 months ago
The following changes since commit 4300b7c2cd9f3f273804e8cca325842ccb93b1ad:

  Merge remote-tracking branch 'remotes/cleber/tags/python-next-pull-request' into staging (2019-09-20 17:28:43 +0100)

are available in the Git repository at:

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

for you to fetch changes up to 571a8c522e0095239598347ac0add93337c1e0bf:

  audio: split ctl_* functions into enable_* and volume_* (2019-09-23 12:28:47 +0200)

----------------------------------------------------------------
audio: documentation fixes.
audio: new backend api (first part of the surround sound patch series).

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

Kővágó, Zoltán (14):
  audio: api for mixeng code free backends
  alsaaudio: port to the new audio backend api
  coreaudio: port to the new audio backend api
  dsoundaudio: port to the new audio backend api
  noaudio: port to the new audio backend api
  ossaudio: port to the new audio backend api
  paaudio: port to the new audio backend api
  sdlaudio: port to the new audio backend api
  spiceaudio: port to the new audio backend api
  wavaudio: port to the new audio backend api
  audio: remove remains of the old backend api
  audio: unify input and output mixeng buffer management
  audio: common rate control code for timer based outputs
  audio: split ctl_* functions into enable_* and volume_*

Stefan Hajnoczi (2):
  audio: fix buffer-length typo in documentation
  audio: fix ALSA period-length typo in documentation

 configure               |   5 -
 audio/audio_int.h       |  76 ++++--
 audio/audio_pt_int.h    |  22 --
 audio/audio_template.h  |  21 +-
 audio/dsound_template.h |  47 ++--
 audio/alsaaudio.c       | 370 +++++++++--------------------
 audio/audio.c           | 383 +++++++++++++++++++++++-------
 audio/audio_pt_int.c    | 173 --------------
 audio/coreaudio.c       | 143 ++++++------
 audio/dsoundaudio.c     | 379 ++++++++----------------------
 audio/noaudio.c         |  76 +++---
 audio/ossaudio.c        | 364 +++++++++++------------------
 audio/paaudio.c         | 499 ++++++++--------------------------------
 audio/sdlaudio.c        | 104 ++++-----
 audio/spiceaudio.c      | 257 +++++++--------------
 audio/wavaudio.c        |  76 ++----
 audio/Makefile.objs     |   1 -
 qemu-options.hx         |   8 +-
 18 files changed, 1083 insertions(+), 1921 deletions(-)
 delete mode 100644 audio/audio_pt_int.h
 delete mode 100644 audio/audio_pt_int.c

-- 
2.18.1


Re: [PULL 00/16] Audio 20190924 patches
Posted by Peter Maydell 4 years, 7 months ago
On Tue, 24 Sep 2019 at 07:22, Gerd Hoffmann <kraxel@redhat.com> wrote:
>
> The following changes since commit 4300b7c2cd9f3f273804e8cca325842ccb93b1ad:
>
>   Merge remote-tracking branch 'remotes/cleber/tags/python-next-pull-request' into staging (2019-09-20 17:28:43 +0100)
>
> are available in the Git repository at:
>
>   git://git.kraxel.org/qemu tags/audio-20190924-pull-request
>
> for you to fetch changes up to 571a8c522e0095239598347ac0add93337c1e0bf:
>
>   audio: split ctl_* functions into enable_* and volume_* (2019-09-23 12:28:47 +0200)
>
> ----------------------------------------------------------------
> audio: documentation fixes.
> audio: new backend api (first part of the surround sound patch series).
>
> ----------------------------------------------------------------


Applied, thanks.

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

-- PMM