Re: [PATCH] audio: fix audio recording

2019-11-20 Thread Gerd Hoffmann
On Tue, Nov 19, 2019 at 07:58:49AM +0100, Volker Rümelin wrote: > With current code audio recording with all audio backends > except PulseAudio and DirectSound is broken. The generic audio > recording buffer management forgot to update the current read > position after a read. > > Fixes: ff095e523

Re: [PATCH] audio: fix audio recording

2019-11-19 Thread Zoltán Kővágó
On 2019-11-19 20:43, Richard Henderson wrote: On 11/19/19 9:01 AM, Philippe Mathieu-Daudé wrote: Cc'ing Zoltán. On 11/19/19 7:58 AM, Volker Rümelin wrote: With current code audio recording with all audio backends except PulseAudio and DirectSound is broken. The generic audio recording buffer m

Re: [PATCH] audio: fix audio recording

2019-11-19 Thread Zoltán Kővágó
On 2019-11-19 07:58, Volker Rümelin wrote: With current code audio recording with all audio backends except PulseAudio and DirectSound is broken. The generic audio recording buffer management forgot to update the current read position after a read. Indeed, pos_emul is updated in audio_generic_p

Re: [PATCH] audio: fix audio recording

2019-11-19 Thread Richard Henderson
On 11/19/19 9:01 AM, Philippe Mathieu-Daudé wrote: > Cc'ing Zoltán. > > On 11/19/19 7:58 AM, Volker Rümelin wrote: >> With current code audio recording with all audio backends >> except PulseAudio and DirectSound is broken. The generic audio >> recording buffer management forgot to update the curr

Re: [PATCH] audio: fix audio recording

2019-11-19 Thread Philippe Mathieu-Daudé
Cc'ing Zoltán. On 11/19/19 7:58 AM, Volker Rümelin wrote: With current code audio recording with all audio backends except PulseAudio and DirectSound is broken. The generic audio recording buffer management forgot to update the current read position after a read. Fixes: ff095e5231 "audio: api f

[PATCH] audio: fix audio recording

2019-11-18 Thread Volker Rümelin
With current code audio recording with all audio backends except PulseAudio and DirectSound is broken. The generic audio recording buffer management forgot to update the current read position after a read. Fixes: ff095e5231 "audio: api for mixeng code free backends" Signed-off-by: Volker Rümelin