Re: [Qemu-devel] [PATCH 12/25] audio: basic support for multi backend audio

2015-08-21 Thread Marc-André Lureau
Hi On Fri, Aug 21, 2015 at 2:23 PM, Kővágó Zoltán wrote: > Hmm. Maybe it would make more sense, but it's not how the audio system > works. The situation cyrrently (before my patch) is the following: > VNC/spice/wavcapture attaches a capture to the global AudioState and starts > recording/transm

Re: [Qemu-devel] [PATCH 12/25] audio: basic support for multi backend audio

2015-08-21 Thread Kővágó Zoltán
Hi 2015-08-20 20:01 keltezéssel, Marc-André Lureau írta: [snip] diff --git a/qemu-options.hx b/qemu-options.hx index efd57e6..60a3563 100644 --- a/qemu-options.hx +++ b/qemu-options.hx @@ -1538,6 +1538,11 @@ everybody else. 'ignore' completely ignores the shared flag and allows everybody con

Re: [Qemu-devel] [PATCH 12/25] audio: basic support for multi backend audio

2015-08-20 Thread Marc-André Lureau
Hi On Thu, Aug 6, 2015 at 8:28 PM, Kővágó, Zoltán wrote: > Audio functions no longer access glob_audio_state, instead they get an > AudioState as a parameter. This is required in order to support > multiple backends. > > glob_audio_state is also gone, and replaced with a tailq so we can store >

[Qemu-devel] [PATCH 12/25] audio: basic support for multi backend audio

2015-08-06 Thread Kővágó, Zoltán
Audio functions no longer access glob_audio_state, instead they get an AudioState as a parameter. This is required in order to support multiple backends. glob_audio_state is also gone, and replaced with a tailq so we can store more than one states. Signed-off-by: Kővágó, Zoltán --- audio/audio