[pulseaudio-discuss] [PATCH 0/2] change pa_bool_t to bool

2012-07-06 Thread Deng Zhengrong
As discussed, this might not handle the microsoft compilers well. But let me post this series of patches and think out a better way to handle it. Or... we don't change it at all. ___ pulseaudio-discuss mailing list pulseaudio-discuss@lists.freedesktop.or

Re: [pulseaudio-discuss] [PATCH 0/3] New alsa path option: mute-during-activation

2012-07-06 Thread Tanu Kaskinen
On Thu, 2012-03-22 at 11:29 +0200, Tanu Kaskinen wrote: > At least on Nokia N9 this patch helps reducing pops when > changing ports. Some earlier discussion: > http://lists.freedesktop.org/archives/pulseaudio-discuss/2011-September/011402.html > > An earlier version of the first patch was submitte

Re: [pulseaudio-discuss] [PATCH] qpaeq: Try to load equalizer module before failing, better error messages

2012-07-06 Thread Tanu Kaskinen
On Sun, 2012-03-25 at 16:47 +0200, Matěj Laitl wrote: > On 23. 3. 2012 Colin Guthrie wrote: > > 'Twas brillig, and Matěj Laitl at 19/03/12 21:44 did gyre and gimble: > > > This fixes bug 38728 [1]. When equalizer features are unavailable in > > > running pulseaudio daemon, try to load relevant modu

Re: [pulseaudio-discuss] [PATCH] vala: Add bindings for libpulse-simple

2012-07-06 Thread Tanu Kaskinen
Hi Alexander, I'd like to merge this patch (sorry that it has taken so long), but i have one question: On Mon, 2012-02-06 at 21:46 +0100, Alexander Kurtz wrote: > +namespace PulseAudio { > + [Compact] > + [CCode (cheader_filename="pulse/simple.h", cname="pa_simple", > cprefix="pa_sim

Re: [pulseaudio-discuss] [PATCH v2 1/6] core: add ARM NEON optimized mono-to-stereo/stereo-to-mono remapping code

2012-07-06 Thread Peter Meerwald
> > - performance degradation on Cortex-A9 / pandaboard for remap: NEON is > > fast on Cortex-A8 but slow on A9; need to distinguish > Does it really degrade? Compared to C code? That seems surprising. the problem is just one particular, very simple workload: mono_to_stereo remapping of floats;

Re: [pulseaudio-discuss] [PATCH v2 1/6] core: add ARM NEON optimized mono-to-stereo/stereo-to-mono remapping code

2012-07-06 Thread Thomas Martitz
Am 06.07.2012 11:29, schrieb Peter Meerwald: Hello, Can you give a status update: what remains to be done before these patches can be merged? I am glad you asked; I am working on a v3 these days to address the following issues: - performance degradation on Cortex-A9 / pandaboard for remap: NE

[pulseaudio-discuss] [PATCH 2/2] bluetooth: Fix using deprecated method org.bluez.Adapter.ListDevices

2012-07-06 Thread Luiz Augusto von Dentz
From: Luiz Augusto von Dentz It has been deprecated for quite some time and is now removed from BlueZ's tree so it would not work with upcoming releases anymore. To fix this the code now uses org.bluez.Adapter.GetProperties and look for 'Devices' property since this is supported by both current

[pulseaudio-discuss] [PATCH 1/2] bluetooth: Fix using deprecated method org.bluez.Manager.ListAdapters

2012-07-06 Thread Luiz Augusto von Dentz
From: Luiz Augusto von Dentz It has been deprecated for quite some time and is now removed from BlueZ's tree so it would not work with upcoming releases anymore. To fix this the code now uses org.bluez.Manager.GetProperties and look for 'Adapters' property since this is supported by both current

Re: [pulseaudio-discuss] [PATCH] card-restore: Handle reading NULL profile name from the database.

2012-07-06 Thread Tanu Kaskinen
On Sat, 2012-06-30 at 13:00 +0300, Tanu Kaskinen wrote: > It's assumed in a couple of places that entry_read() > initializes entry->profile to a non-NULL string. This patch > makes those assumptions hold. > --- > src/modules/module-card-restore.c |3 +++ > 1 file changed, 3 insertions(+) > >

Re: [pulseaudio-discuss] [PATCH v2 1/6] core: add ARM NEON optimized mono-to-stereo/stereo-to-mono remapping code

2012-07-06 Thread Peter Meerwald
Hello, > Can you give a status update: what remains to be done before these > patches can be merged? I am glad you asked; I am working on a v3 these days to address the following issues: - performance degradation on Cortex-A9 / pandaboard for remap: NEON is fast on Cortex-A8 but slow on A9; ne

[pulseaudio-discuss] [PATCH v0 5/5] bluetooth: Consider different input and output MTU

2012-07-06 Thread Mikel Astiz
From: Mikel Astiz Previous implementation assumes these values are equal, but this doesn't necessarily have to be so. --- src/modules/bluetooth/module-bluetooth-device.c | 75 ++ 1 files changed, 48 insertions(+), 27 deletions(-) diff --git a/src/modules/bluetooth/module-b

[pulseaudio-discuss] [PATCH v0 4/5] bluetooth: Avoid duplicating profile argument twice

2012-07-06 Thread Mikel Astiz
From: Mikel Astiz The module module-bluetooth-device should never be given parameter 'profile' twice, even if both HFGW and A2DP are playing. --- src/modules/bluetooth/module-bluetooth-discover.c |5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/modules/bluetooth/m

[pulseaudio-discuss] [PATCH v0 3/5] bluetooth: Do not switch to profile unless Playing

2012-07-06 Thread Mikel Astiz
From: Mikel Astiz If no audio stream exists to the remote device during discovery, setting the profile to hfgw or a2dp_source would request it. This is something that should not be done automatically. --- src/modules/bluetooth/module-bluetooth-discover.c |4 ++-- 1 files changed, 2 insertion

[pulseaudio-discuss] [PATCH v0 2/5] bluetooth: Remove library for IPC to BlueZ

2012-07-06 Thread Mikel Astiz
From: Mikel Astiz This library is not used anymore after the definitive transition to Media API. --- src/Makefile.am | 15 +--- src/modules/bluetooth/ipc.h | 244 +-- 2 files changed, 2 insertions(+), 257 deletions(-) diff --git a/src/Makef

[pulseaudio-discuss] [PATCH v0 1/5] bluetooth: Avoid using IPC mechanism to BlueZ

2012-07-06 Thread Mikel Astiz
From: Mikel Astiz This simplifies the code a lot, in favour of the D-Bus Media interface in BlueZ. The old socket-based IPC mechanism has been deprecated and is about to be removed soon. --- src/modules/bluetooth/module-bluetooth-device.c | 797 +-- 1 files changed, 28 inser

[pulseaudio-discuss] [PATCH v0 0/5] Bluetooth Media API and related

2012-07-06 Thread Mikel Astiz
From: Mikel Astiz This patch series includes several patches already submitted as RFC to remove the old socket-based IPC mechanism between BlueZ and PulseAudio, along with some other patches that were pending. Note that this exact version of the patch series *HAS NOT BEEN TESTED*. Current hea

Re: [pulseaudio-discuss] [PATCH v2 1/6] core: add ARM NEON optimized mono-to-stereo/stereo-to-mono remapping code

2012-07-06 Thread Tanu Kaskinen
Arun and Peter, Can you give a status update: what remains to be done before these patches can be merged? -- Tanu On Thu, 2012-03-15 at 14:21 +0100, Peter Meerwald wrote: > Hello Arun, > > > FWIW, you can get a Gentoo rootfs (stage3) snapshot at -- > > http://gentoo.osuosl.org/releases/arm/auto