[pulseaudio-discuss] svolume_orc.c: error: line 67: unknown directive: .longparam

2011-03-23 Thread Paul Menzel
Dear PulseAudio folks, I get the following error with latest master (c0392af2). | + do_compile | + base_do_compile | + '[' -e Makefile -o -e makefile -o -e GNUmakefile ']' | + oe_runmake | + oenote make | + echo NOTE: make | NOTE: make | + make | make all-recursive | make[1]: Entering

Re: [pulseaudio-discuss] More patches for OS X

2011-03-23 Thread Daniel Mack
On Sun, Mar 20, 2011 at 6:39 PM, Daniel Mack zon...@gmail.com wrote: Hi, I'm catching up with my work on PulseAudio for OS X and have some patches ready I would like to get merged. Ok, I fixed all the minor issues that were reported and pushed out again. Same URL:  

[pulseaudio-discuss] Pulseaudio passthrough branch doesn't read /etc/pulse/default.pa

2011-03-23 Thread Dark Shadow
I have successfully bitstreamed DTS-HD from xbmc through PA but in using the passthrough git branch it doesn't read that config file which causes problems for me forcing a sink. How can I fix this since I have to kill pulseaudio then restart it with pulseaudio --load=module-alsa-sink

Re: [pulseaudio-discuss] [PATCH] Get rid of some warnings

2011-03-23 Thread Arun Raghavan
On Sun, 2011-03-20 at 22:56 +0100, Maarten Bosmans wrote: 2011/3/20 Colin Guthrie gm...@colin.guthr.ie: 'Twas brillig, and Maarten Bosmans at 19/03/11 15:26 did gyre and gimble: Mostly warnings about unused stuff. Furthermore, the first hunk is a fix for the change in 177948a6. Finally,

Re: [pulseaudio-discuss] Pulseaudio passthrough branch doesn't read /etc/pulse/default.pa

2011-03-23 Thread Dark Shadow
On Sun, Mar 20, 2011 at 5:58 PM, Dark Shadow shadowofdarkn...@gmail.com wrote: I have successfully bitstreamed DTS-HD from xbmc through PA but in using the passthrough git branch it doesn't read that config file which causes problems for me forcing a sink. How can I fix this since I have to

[pulseaudio-discuss] [PATCH 0/2] Rebased bluetooth patches

2011-03-23 Thread Tanu Kaskinen
Colin wrote: Can you rebase these two on git master please? I just merged a whole bunch of changes from BT guys and these both fail now. Sure, refreshed patches coming. Tanu Kaskinen (2): bluetooth: Don't log an error if an endpoint type is disabled. bluetooth: Get rid of warnings about

[pulseaudio-discuss] [PATCH 1/2 rebased] bluetooth: Don't log an error if an endpoint type is disabled.

2011-03-23 Thread Tanu Kaskinen
It's perfectly normal for BlueZ to disable some endpoint types, so printing a log message at error level isn't a good idea. For facilitating an informative message in case some endpoint type is disabled, the send_and_add_to_pending() function interface is also changed to be more generic (the

[pulseaudio-discuss] [PATCH 2/2 rebased] bluetooth: Get rid of warnings about unused stuff when building against a D-Bus version that doesn't have fd-passing support.

2011-03-23 Thread Tanu Kaskinen
--- src/modules/bluetooth/bluetooth-util.c | 10 ++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/src/modules/bluetooth/bluetooth-util.c b/src/modules/bluetooth/bluetooth-util.c index a79ff91..f1c7c4c 100644 --- a/src/modules/bluetooth/bluetooth-util.c +++

[pulseaudio-discuss] [RFC PATCH] Log PCM samples to files

2011-03-23 Thread Vincent Becker
Hi, I recently created a new PA module (module-log-pcm) which is able to log PCM samples from any source/sink and its corresponding outputs/inputs. For testing audio quality, checking signal processing or verifying the right implementation of a sound device mixed in PA, application fields are

Re: [pulseaudio-discuss] [PATCH 1/2] Log feature: Add a new log target to a file descriptor

2011-03-23 Thread Becker, VincentX
'Twas brillig, and Vincent Becker at 18/03/11 10:23 did gyre and gimble: This patch enables logging of text debug messages (pa_log feature) into a file or a device driver. Example : pulseaudio --log-target=file:./mylog.txt Many thanks for your perseverence here. We were beginning to worry we

[pulseaudio-discuss] [PATCH] alsa-mixer: Check that the kernel driver returns consistent limits with both snd_mixer_selem_get_*_dB_range() and _ask_*_vol_dB().

2011-03-23 Thread Tanu Kaskinen
The check is inspired by a driver that returned higher dB limit from snd_mixer_selem_get_playback_dB_range() than what _ask_playback_vol_dB() returned at maximum integer volume. --- src/modules/alsa/alsa-mixer.c | 37 + 1 files changed, 37 insertions(+), 0

Re: [pulseaudio-discuss] More patches for OS X

2011-03-23 Thread Daniel Mack
On Mon, Mar 21, 2011 at 12:39 AM, Daniel Mack zon...@gmail.com wrote: On Sun, Mar 20, 2011 at 6:39 PM, Daniel Mack zon...@gmail.com wrote: Hi, I'm catching up with my work on PulseAudio for OS X and have some patches ready I would like to get merged. Ok, I fixed all the minor issues that

[pulseaudio-discuss] [PATCH 1/2] win32: Simplify dl_search_path code

2011-03-23 Thread Maarten Bosmans
And add #include sys/stat.h, needed by the code introduced in f7acd4bd. --- src/daemon/daemon-conf.c | 19 ++- 1 files changed, 6 insertions(+), 13 deletions(-) diff --git a/src/daemon/daemon-conf.c b/src/daemon/daemon-conf.c index 9b530a8..59579d9 100644 ---

[pulseaudio-discuss] [PATCH 2/2] Move compile-time checks around pa_run_from_build_tree to core-util

2011-03-23 Thread Maarten Bosmans
To make the code cleaner and have the checks all in one place. --- src/daemon/daemon-conf.c | 11 +-- src/modules/alsa/alsa-mixer.c | 12 src/pulsecore/core-util.c |3 --- src/pulsecore/core-util.h |5 + 4 files changed, 10 insertions(+), 21

Re: [pulseaudio-discuss] [PATCH 2/2] Move compile-time checks around pa_run_from_build_tree to core-util

2011-03-23 Thread Maarten Bosmans
Is there a better way than #if defined(__linux__) !defined(__OPTIMIZE__) to check for a debug build? By default the CFLAGS contain -g -O2, so __OPTIMIZE__ will not be defined and running uninstalled does not work. Maarten ___ pulseaudio-discuss mailing

[pulseaudio-discuss] [PATCH] alsa-mixer: Make sure that SND_MIXER_SCHN_UNKNOWN isn't used when indexing e-masks.

2011-03-23 Thread Tanu Kaskinen
SND_MIXER_SCHN_UNKNOWN is defined as -1, so that's not a good array index... --- src/modules/alsa/alsa-mixer.c | 13 +++-- 1 files changed, 11 insertions(+), 2 deletions(-) diff --git a/src/modules/alsa/alsa-mixer.c b/src/modules/alsa/alsa-mixer.c index b425ce5..c9adbb0 100644 ---

Re: [pulseaudio-discuss] [PATCH 3/5] osx: add -headerpad_max_install_names to LDFLAGS

2011-03-23 Thread Maarten Bosmans
2011/3/21 Daniel Mack dan...@zonque.org: On Sun, Mar 20, 2011 at 7:14 PM, Tanu Kaskinen ta...@iki.fi wrote: On Sun, 2011-03-20 at 18:39 +0100, Daniel Mack wrote: This is needed for sufficient padding of library names in linked binaries. ---  src/Makefile.am |    5 +  1 files changed, 5

Re: [pulseaudio-discuss] [RFC PATCH] Log PCM samples to files

2011-03-23 Thread Maarten Bosmans
2011/3/21 Vincent Becker vincentx.bec...@intel.com: Hi, I recently created a new PA module (module-log-pcm) which is able to log PCM samples from any source/sink and its corresponding outputs/inputs. For testing audio quality, checking signal processing or verifying the right

Re: [pulseaudio-discuss] [PATCH 1/2] Log feature: Add a new log target to a file descriptor

2011-03-23 Thread Maarten Bosmans
2011/3/21 Becker, VincentX vincentx.bec...@intel.com: 'Twas brillig, and Vincent Becker at 18/03/11 10:23 did gyre and gimble: This patch enables logging of text debug messages (pa_log feature) into a file or a device driver. Example : pulseaudio --log-target=file:./mylog.txt Many thanks for

Re: [pulseaudio-discuss] Pulseaudio passthrough branch doesn't read /etc/pulse/default.pa

2011-03-23 Thread Colin Guthrie
'Twas brillig, and Maarten Bosmans at 23/03/11 18:36 did gyre and gimble: 2011/3/21 Dark Shadow shadowofdarkn...@gmail.com: On Sun, Mar 20, 2011 at 5:58 PM, Dark Shadow shadowofdarkn...@gmail.com wrote: I have successfully bitstreamed DTS-HD from xbmc through PA but in using the passthrough

Re: [pulseaudio-discuss] Pulseaudio passthrough branch doesn't read /etc/pulse/default.pa

2011-03-23 Thread Kelly Anderson
On 03/23/11 17:20, Colin Guthrie wrote: 'Twas brillig, and Maarten Bosmans at 23/03/11 18:36 did gyre and gimble: 2011/3/21 Dark Shadowshadowofdarkn...@gmail.com: On Sun, Mar 20, 2011 at 5:58 PM, Dark Shadowshadowofdarkn...@gmail.com wrote: I have successfully bitstreamed DTS-HD from xbmc

Re: [pulseaudio-discuss] Pulseaudio passthrough branch doesn't read /etc/pulse/default.pa

2011-03-23 Thread Dark Shadow
On Wed, Mar 23, 2011 at 5:20 PM, Colin Guthrie gm...@colin.guthr.ie wrote: 'Twas brillig, and Maarten Bosmans at 23/03/11 18:36 did gyre and gimble: 2011/3/21 Dark Shadow shadowofdarkn...@gmail.com: On Sun, Mar 20, 2011 at 5:58 PM, Dark Shadow shadowofdarkn...@gmail.com wrote: I have

Re: [pulseaudio-discuss] Pulseaudio passthrough branch doesn't read /etc/pulse/default.pa

2011-03-23 Thread Colin Guthrie
'Twas brillig, and Dark Shadow at 23/03/11 23:30 did gyre and gimble: Pulse stopped reading /etc/pulse before I put the file into ~/.pulse. Here is everything I did Install Ubuntu edit /etc/pulse/default.pa to add my hdmi sink ...everything works for awhile... update to the passthrough

Re: [pulseaudio-discuss] Pulseaudio passthrough branch doesn't read /etc/pulse/default.pa

2011-03-23 Thread Dark Shadow
On Wed, Mar 23, 2011 at 5:44 PM, Colin Guthrie gm...@colin.guthr.ie wrote: 'Twas brillig, and Dark Shadow at 23/03/11 23:30 did gyre and gimble: Pulse stopped reading /etc/pulse before I put the file into ~/.pulse. Here is everything I did Install Ubuntu edit /etc/pulse/default.pa to add my