[pulseaudio-discuss] Pending patches

2019-07-13 Thread Georg Chini
Hi, today I did a review/cleanup/rebase of all the patches I have accumulated. I found there is a total of 65 patches in 11 series, together 8041 additions and 3233 deletions. I wonder if this ever has the chance to get completely reviewed ... Here the series in detail: 1) Messaging patches 8

Re: [pulseaudio-discuss] ignore_dB for a specific device

2019-07-13 Thread john terragon
> On Saturday, July 13, 2019, 7:22:00 AM GMT+2, Tanu Kaskinen > wrote: > On Fri, 2019-07-12 at 12:36 +, john terragon wrote: > >  Thanks for the suggestion. > > However, after I sent the email to the list, I realized that using > > ignore_dB causes another problem. > >  It solves the

Re: [pulseaudio-discuss] [pulseaudio-commits] [Git][pulseaudio/pulseaudio][master] i18n: Don't compile with -ffast-math

2019-07-13 Thread Georg Chini
On 13.07.19 14:00, Georg Chini wrote: On 28.05.19 18:18, Tanu Kaskinen wrote: GitLab Tanu Kaskinen pushed to branch master at PulseAudio / pulseaudio Commits: * *fd9e3452

Re: [pulseaudio-discuss] [PATCH v2 4/8] core: move sink-inputs conditionally when update default_sink

2019-07-13 Thread Georg Chini
On 13.07.19 10:46, Georg Chini wrote: On 30.06.19 13:52, Georg Chini wrote: On 17.01.19 07:53, Hui Wang wrote: When the default sink changes, the streams from the old default sink should be moved to the new default sink, unless the preferred_sink string is set to the old default sink and the

Re: [pulseaudio-discuss] [PATCH v2 7/8] sink: move the streams to the default_sink when the sink is unlinked

2019-07-13 Thread Georg Chini
On 30.06.19 14:15, Georg Chini wrote: On 17.01.19 07:53, Hui Wang wrote: When a sink is unlinked, all streams of this sink are moved to default_sink, this action is implemented in the core rather than modules now. Signed-off-by: Hui Wang ---   src/modules/module-stream-restore.c | 50

Re: [pulseaudio-discuss] [PATCH v2 4/8] core: move sink-inputs conditionally when update default_sink

2019-07-13 Thread Georg Chini
On 30.06.19 13:52, Georg Chini wrote: On 17.01.19 07:53, Hui Wang wrote: When the default sink changes, the streams from the old default sink should be moved to the new default sink, unless the preferred_sink string is set to the old default sink and the active port of the old default sink is

Re: [pulseaudio-discuss] [PATCH v12 01/13] bluetooth: Fix usage of MTU, buffer sizes and return values of encode/decode methods

2019-07-13 Thread Pali Rohár
On Saturday 13 July 2019 10:14:22 Tanu Kaskinen wrote: > On Fri, 2019-07-05 at 15:02 +0200, Pali Rohár wrote: > > /* Run from IO thread */ > > static int a2dp_write_buffer(struct userdata *u, size_t nbytes) { > > int ret = 0; > > > > +if (PA_UNLIKELY(!nbytes)) { > > +

Re: [pulseaudio-discuss] [PATCH v12 01/13] bluetooth: Fix usage of MTU, buffer sizes and return values of encode/decode methods

2019-07-13 Thread Tanu Kaskinen
On Fri, 2019-07-05 at 15:02 +0200, Pali Rohár wrote: > /* Run from IO thread */ > static int a2dp_write_buffer(struct userdata *u, size_t nbytes) { > int ret = 0; > > +if (PA_UNLIKELY(!nbytes)) { > +u->write_index += (uint64_t) u->write_memchunk.length; > +

Re: [pulseaudio-discuss] [PATCH v2 4/8] core: move sink-inputs conditionally when update default_sink

2019-07-13 Thread Tanu Kaskinen
On Fri, 2019-07-12 at 20:52 +0200, Georg Chini wrote: > On 12.07.19 13:13, Tanu Kaskinen wrote: > > On Wed, 2019-07-10 at 22:03 +0200, Georg Chini wrote: > > > On 10.07.19 16:03, Tanu Kaskinen wrote: > > > > On Fri, 2019-07-05 at 10:57 +0200, Georg Chini wrote: > > > > > On 05.07.19 09:41, Tanu