Re: [pulseaudio-discuss] Signals from PA dbus interface

2017-02-18 Thread Tanu Kaskinen
On Sat, 2017-02-18 at 18:17 +0200, Tanu Kaskinen wrote: > On Fri, 2017-02-17 at 03:07 -0500, Paul Stone wrote: > > Hoping someone with more familiarity can shed some light or point me in the > > direction of the information I'm looking for. The basic problem is I'm > > having problems capturing a

[pulseaudio-discuss] [PATCH] dbus: fix card profile change signals

2017-02-18 Thread Tanu Kaskinen
The "profile->card != c->card" check always evaluated to false, so the CardProfileUpdated signal was never sent. The reason: call_data was assigned to a pa_card_profile pointer, but the correct type is a pa_card pointer. --- src/modules/dbus/iface-card.c | 16 1 file changed, 8

Re: [pulseaudio-discuss] Signals from PA dbus interface

2017-02-18 Thread Tanu Kaskinen
On Fri, 2017-02-17 at 03:07 -0500, Paul Stone wrote: > Hoping someone with more familiarity can shed some light or point me in the > direction of the information I'm looking for. The basic problem is I'm > having problems capturing a profile change signal from PA via dbus using > Gio with

Re: [pulseaudio-discuss] [PATCH 01/22] loopback: Rename sink_input_buffer to loopback_memblockq_length

2017-02-18 Thread Tanu Kaskinen
On Mon, 2017-02-13 at 13:01 +0100, Georg Chini wrote: > The variable does no longer represent the length of the whole sink input > buffer, > therefore it has been renamed. > > --- > src/modules/module-loopback.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) Looks good, applied.

Re: [pulseaudio-discuss] Handling of port latency offsets

2017-02-18 Thread Tanu Kaskinen
On Thu, 2017-02-16 at 13:10 +0100, Georg Chini wrote: > On 16.02.2017 12:59, Tanu Kaskinen wrote: > > On Fri, 2017-02-10 at 14:38 +0100, Georg Chini wrote: > > > Hi, > > > > > > during my work on module-loopback I came upon an issue regarding the > > > handling > > > of the port latency offsets.

[pulseaudio-discuss] Signals from PA dbus interface

2017-02-18 Thread Paul Stone
Hoping someone with more familiarity can shed some light or point me in the direction of the information I'm looking for. The basic problem is I'm having problems capturing a profile change signal from PA via dbus using Gio with CJS/GJS. I had posted this issue to stackoverflow a while back