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

Gerd Hoffmann posted 3 patches 7 years, 1 month ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/1487599939-4776-1-git-send-email-kraxel@redhat.com
Test checkpatch passed
Test docker passed
Test s390x passed
There is a newer version of this series
audio/audio.c            | 11 +++++--
audio/audio.h            |  5 +++
audio/mixeng.c           | 31 +++++++++++++++++++
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, 190 insertions(+), 3 deletions(-)
create mode 100644 replay/replay-audio.c
[Qemu-devel] [PULL 0/3] audio patch queue
Posted by Gerd Hoffmann 7 years, 1 month ago
  Hi,

Here is the audio queue, bringing support for replay and fixing audio
with SDL2.

please pull,
  Gerd

The following changes since commit 5d42ff913bb294c661aed8dfcd386fed9e185148:

  Merge remote-tracking branch 'remotes/huth/tags/coldfire-20170219' into staging (2017-02-20 11:55:37 +0000)

are available in the git repository at:


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

for you to fetch changes up to 255a694376960826ead9a6e47c5c661d51b5e25b:

  audio/sdlaudio: Allow audio playback with SDL2 (2017-02-20 14:24:51 +0100)

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

----------------------------------------------------------------
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           | 31 +++++++++++++++++++
 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, 190 insertions(+), 3 deletions(-)
 create mode 100644 replay/replay-audio.c

Re: [Qemu-devel] [PULL 0/3] audio patch queue
Posted by Peter Maydell 7 years, 1 month ago
On 20 February 2017 at 14:12, Gerd Hoffmann <kraxel@redhat.com> wrote:
>   Hi,
>
> Here is the audio queue, bringing support for replay and fixing audio
> with SDL2.
>
> please pull,
>   Gerd
>
> The following changes since commit 5d42ff913bb294c661aed8dfcd386fed9e185148:
>
>   Merge remote-tracking branch 'remotes/huth/tags/coldfire-20170219' into staging (2017-02-20 11:55:37 +0000)
>
> are available in the git repository at:
>
>
>   git://git.kraxel.org/qemu tags/pull-audio-20170220-1
>
> for you to fetch changes up to 255a694376960826ead9a6e47c5c661d51b5e25b:
>
>   audio/sdlaudio: Allow audio playback with SDL2 (2017-02-20 14:24:51 +0100)
>
> ----------------------------------------------------------------
> audio: add sdl2 support, add replay support.
>
> ----------------------------------------------------------------

This doesn't build on OSX, I'm afraid:

/Users/pm215/src/qemu-for-merges/audio/mixeng.c:277:5: error: implicit
declaration of function 'error_report' is invalid in C99
[-Werror,-Wimplicit-function-declaration]
    error_report(
    ^

Missing #include ?

thanks
-- PMM