[Qemu-devel] [PULL v3 0/3] audio patch queue

Gerd Hoffmann posted 3 patches 7 years, 2 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/1488382850-19252-1-git-send-email-kraxel@redhat.com
Test checkpatch passed
Test docker passed
Test s390x passed
audio/audio.c            | 11 +++++--
audio/audio.h            |  5 +++
audio/mixeng.c           | 32 ++++++++++++++++++++
audio/sdlaudio.c         | 48 +++++++++++++++++++++++++++++
docs/replay.txt          |  7 +++++
include/sysemu/replay.h  |  7 +++++
replay/Makefile.objs     |  1 +
replay/replay-audio.c    | 79 ++++++++++++++++++++++++++++++++++++++++++++++++
replay/replay-internal.h |  4 +++
9 files changed, 191 insertions(+), 3 deletions(-)
create mode 100644 replay/replay-audio.c
[Qemu-devel] [PULL v3 0/3] audio patch queue
Posted by Gerd Hoffmann 7 years, 2 months ago
  Hi,

Three little audio patches, adding replay support
and fixing audio with SDL2.

v3: really fix osx build failure.

The following changes since commit e7c83a885f865128ae3cf1946f8cb538b63cbfba:

  vhost-user: delay vhost_user_stop (2017-02-28 19:11:15 +0000)

are available in the git repository at:

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

for you to fetch changes up to bcf19777df78193f7cdb108a55db44fd4f20d5b5:

  audio/sdlaudio: Allow audio playback with SDL2 (2017-03-01 15:12:03 +0100)

----------------------------------------------------------------
audio: replay support, sdl2 fix.

----------------------------------------------------------------
Pavel Dovgalyuk (2):
      replay: add record/replay for audio passthrough
      audio: make audio poll timer deterministic

Thomas Huth (1):
      audio/sdlaudio: Allow audio playback with SDL2

 audio/audio.c            | 11 +++++--
 audio/audio.h            |  5 +++
 audio/mixeng.c           | 32 ++++++++++++++++++++
 audio/sdlaudio.c         | 48 +++++++++++++++++++++++++++++
 docs/replay.txt          |  7 +++++
 include/sysemu/replay.h  |  7 +++++
 replay/Makefile.objs     |  1 +
 replay/replay-audio.c    | 79 ++++++++++++++++++++++++++++++++++++++++++++++++
 replay/replay-internal.h |  4 +++
 9 files changed, 191 insertions(+), 3 deletions(-)
 create mode 100644 replay/replay-audio.c

Re: [Qemu-devel] [PULL v3 0/3] audio patch queue
Posted by Peter Maydell 7 years, 2 months ago
On 1 March 2017 at 15:40, Gerd Hoffmann <kraxel@redhat.com> wrote:
>   Hi,
>
> Three little audio patches, adding replay support
> and fixing audio with SDL2.
>
> v3: really fix osx build failure.
>
> The following changes since commit e7c83a885f865128ae3cf1946f8cb538b63cbfba:
>
>   vhost-user: delay vhost_user_stop (2017-02-28 19:11:15 +0000)
>
> are available in the git repository at:
>
>   git://git.kraxel.org/qemu tags/pull-audio-20170301-1
>
> for you to fetch changes up to bcf19777df78193f7cdb108a55db44fd4f20d5b5:
>
>   audio/sdlaudio: Allow audio playback with SDL2 (2017-03-01 15:12:03 +0100)
>
> ----------------------------------------------------------------
> audio: replay support, sdl2 fix.
>
> ----------------------------------------------------------------

Applied, thanks.

-- PMM