Re: [RFC PATCH] audio: proper support for float samples in mixeng

2020-03-09 Thread Alexander Bulekov
Hello, On 200202 2038, Kővágó, Zoltán wrote: > -void conv_natural_float_to_stereo(struct st_sample *dst, const void *src, > - int samples) > +#ifdef FLOAT_MIXENG > +#define FLOAT_CONV_TO(x) (x) > +#define FLOAT_CONV_FROM(x) (x) > +#else > +static const float float_s

Re: [RFC PATCH] audio: proper support for float samples in mixeng

2020-02-06 Thread Gerd Hoffmann
On Mon, Feb 03, 2020 at 09:38:39PM +0100, Zoltán Kővágó wrote: > On 2020-02-03 11:00, Peter Maydell wrote: > > On Sun, 2 Feb 2020 at 19:39, Kővágó, Zoltán wrote: > > > > > > This adds proper support for float samples in mixeng by adding a new > > > audio format for it. > > > > > > Limitations: o

Re: [RFC PATCH] audio: proper support for float samples in mixeng

2020-02-04 Thread Peter Maydell
On Mon, 3 Feb 2020 at 20:38, Zoltán Kővágó wrote: > > On 2020-02-03 11:00, Peter Maydell wrote: > > On Sun, 2 Feb 2020 at 19:39, Kővágó, Zoltán wrote: > >> > >> This adds proper support for float samples in mixeng by adding a new > >> audio format for it. > >> > >> Limitations: only native endian

Re: [RFC PATCH] audio: proper support for float samples in mixeng

2020-02-03 Thread Markus Armbruster
Eric Blake writes: > On 2/3/20 12:21 AM, Markus Armbruster wrote: >> "Kővágó, Zoltán" writes: >> >>> This adds proper support for float samples in mixeng by adding a new >>> audio format for it. >>> >>> Limitations: only native endianness is supported. >>> >>> Signed-off-by: Kővágó, Zoltán >>>

Re: [RFC PATCH] audio: proper support for float samples in mixeng

2020-02-03 Thread Zoltán Kővágó
On 2020-02-03 11:00, Peter Maydell wrote: On Sun, 2 Feb 2020 at 19:39, Kővágó, Zoltán wrote: This adds proper support for float samples in mixeng by adding a new audio format for it. Limitations: only native endianness is supported. Could you explain a bit more what this limitation means, p

Re: [RFC PATCH] audio: proper support for float samples in mixeng

2020-02-03 Thread Eric Blake
On 2/3/20 12:21 AM, Markus Armbruster wrote: "Kővágó, Zoltán" writes: This adds proper support for float samples in mixeng by adding a new audio format for it. Limitations: only native endianness is supported. Signed-off-by: Kővágó, Zoltán --- This patch is meant to be applied on top of "[

Re: [RFC PATCH] audio: proper support for float samples in mixeng

2020-02-03 Thread Peter Maydell
On Sun, 2 Feb 2020 at 19:39, Kővágó, Zoltán wrote: > > This adds proper support for float samples in mixeng by adding a new > audio format for it. > > Limitations: only native endianness is supported. Could you explain a bit more what this limitation means, please? In general QEMU behaviour shoul

Re: [RFC PATCH] audio: proper support for float samples in mixeng

2020-02-03 Thread Volker Rümelin
> This adds proper support for float samples in mixeng by adding a new > audio format for it. > > Limitations: only native endianness is supported. > > Signed-off-by: Kővágó, Zoltán > --- > > This patch is meant to be applied on top of "[PATCH] coreaudio: fix coreaudio > playback" by Volker Rümeli

Re: [RFC PATCH] audio: proper support for float samples in mixeng

2020-02-02 Thread Markus Armbruster
"Kővágó, Zoltán" writes: > This adds proper support for float samples in mixeng by adding a new > audio format for it. > > Limitations: only native endianness is supported. > > Signed-off-by: Kővágó, Zoltán > --- > > This patch is meant to be applied on top of "[PATCH] coreaudio: fix coreaudio >

Re: [RFC PATCH] audio: proper support for float samples in mixeng

2020-02-02 Thread Howard Spoelstra
On Sun, Feb 2, 2020 at 8:38 PM Kővágó, Zoltán wrote: > This adds proper support for float samples in mixeng by adding a new > audio format for it. > > Limitations: only native endianness is supported. > > Signed-off-by: Kővágó, Zoltán > --- > > This patch is meant to be applied on top of "[PATCH

[RFC PATCH] audio: proper support for float samples in mixeng

2020-02-02 Thread Kővágó, Zoltán
This adds proper support for float samples in mixeng by adding a new audio format for it. Limitations: only native endianness is supported. Signed-off-by: Kővágó, Zoltán --- This patch is meant to be applied on top of "[PATCH] coreaudio: fix coreaudio playback" by Volker Rümelin, available at: