Re: [pulseaudio-discuss] [PATCH] osx: don't build the once-test binary on OS X

2011-10-03 Thread Maarten Bosmans
2011/10/1 Colin Guthrie gm...@colin.guthr.ie: 'Twas brillig, and Daniel Mack at 29/09/11 12:25 did gyre and gimble: From: Daniel Mack dan...@caiaq.de This patch was already added earlier with commit ID 2f86ba4f, but the changes got reverted by commit 3adc43b (win32: Make once-test work).

Re: [pulseaudio-discuss] [PATCH] osx: don't build the once-test binary on OS X

2011-10-03 Thread Maarten Bosmans
2011/10/3 Maarten Bosmans mkbosm...@gmail.com: A good solution would be to make the test compile and run on OSX, but then, if ther's now way it will pass on OSX or the result is just not meaningful, return 77 or add the test to XFAIL_TESTS, so that the failing on OSX is ignored. See

[pulseaudio-discuss] webrtc pulseaudio plugin

2011-10-03 Thread ashwani.kumar
Hi, Is there any plan to add webrtc in pulseaudio? Regards, Ashwani ___ pulseaudio-discuss mailing list pulseaudio-discuss@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/pulseaudio-discuss

[pulseaudio-discuss] webrtc pulseaudio plugin

2011-10-03 Thread ashwani.kumar
ok. what is the expected time frame. regards Ashwani ___ pulseaudio-discuss mailing list pulseaudio-discuss@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/pulseaudio-discuss

Re: [pulseaudio-discuss] webrtc pulseaudio plugin

2011-10-03 Thread Colin Guthrie
'Twas brillig, and ashwani.kumar at 03/10/11 12:21 did gyre and gimble: ok. what is the expected time frame. Hmm, you're reply totally broke threading. Please try to use a proper mail client so as not to do this (especially when you do not include any context in the mail you send. Not sure

Re: [pulseaudio-discuss] webrtc pulseaudio plugin

2011-10-03 Thread ABDUL MOIZ
Hi Arun, can you share branch link and tell us the expected time. Regards, Abdul Moiz On Mon, Oct 3, 2011 at 6:47 PM, Colin Guthrie gm...@colin.guthr.ie wrote: 'Twas brillig, and ashwani.kumar at 03/10/11 12:21 did gyre and gimble: ok. what is the expected time frame. Hmm,

Re: [pulseaudio-discuss] webrtc pulseaudio plugin

2011-10-03 Thread Arun Raghavan
On Mon, 2011-10-03 at 16:51 +0530, ashwani.kumar wrote: ok. what is the expected time frame. http://cgit.collabora.co.uk/git/user/arun/webrtc-audio-processing.git/ http://cgit.collabora.com/git/user/arun/pulseaudio.git/log/?h=webrtc Those are some work in progress bits. There are patches in

[pulseaudio-discuss] [PATCH] alsa-card: Handle the profile modarg.

2011-10-03 Thread Tanu Kaskinen
--- src/modules/alsa/module-alsa-card.c |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/src/modules/alsa/module-alsa-card.c b/src/modules/alsa/module-alsa-card.c index 6d1a5e1..a8d9c59 100644 --- a/src/modules/alsa/module-alsa-card.c +++

Re: [pulseaudio-discuss] Pulseaudio A2dp - Audio data loss and stutter

2011-10-03 Thread Pierre-Louis Bossart
We are trying to get a2dp work using pulse audio 1.0 on arm 11 based evaluation board. The porting of pulseaudio 1.0 to an ARM 11 board did not take any additional effort at all unlike the previous versions. The module loopback for hfp works very well. But when we try a2dp streaming,

[pulseaudio-discuss] Configuring alsa mixers in the off profile.

2011-10-03 Thread Tanu Kaskinen
Hi, I have some hardware that needs some mixer configuration when selecting the off profile for the alsa card in order to save power. Now that I think about it, I'm not sure why the driver can't turn off the power when nobody's using the device... I'll have to ask from the driver developer.

[pulseaudio-discuss] [RFC] [PATCH 0/2] PulseAudio pass-through VLC support

2011-10-03 Thread Rémi Denis-Courmont
Hello, This is an hopefully better patch series, based on IRC feedback from Arun Raghavan. Unfortunately, this is still untested, except for the PCM fallback case due to lack of hardware on my side. Timer trigger as suggested by David Henningsson was already pushed to VLC master git as

[pulseaudio-discuss] [PATCH 1/2] PulseAudio: add stream event callback and handle format-lost

2011-10-03 Thread Rémi Denis-Courmont
--- modules/audio_output/pulse.c | 20 1 files changed, 20 insertions(+), 0 deletions(-) diff --git a/modules/audio_output/pulse.c b/modules/audio_output/pulse.c index c3c0aa0..fc7cdb8 100644 --- a/modules/audio_output/pulse.c +++ b/modules/audio_output/pulse.c @@ -355,6

[pulseaudio-discuss] [PATCH 2/2] PulseAudio: negotiate digital pass-through for A/52 and DTS

2011-10-03 Thread Rémi Denis-Courmont
--- modules/audio_output/pulse.c | 72 +- 1 files changed, 71 insertions(+), 1 deletions(-) diff --git a/modules/audio_output/pulse.c b/modules/audio_output/pulse.c index fc7cdb8..cf2ed09 100644 --- a/modules/audio_output/pulse.c +++

Re: [pulseaudio-discuss] [PATCH 2/2] PulseAudio: negotiate digital pass-through for A/52 and DTS

2011-10-03 Thread Pierre-Louis Bossart
+#if PA_CHECK_VERSION(1,0,0) +case VLC_CODEC_A52: +format = VLC_CODEC_SPDIFL; +encoding = PA_ENCODING_AC3_IEC61937; +ss.format = HAVE_FPU ? PA_SAMPLE_FLOAT32NE : PA_SAMPLE_S16NE; +break; This test doesn't seem right. Probably a

Re: [pulseaudio-discuss] [PATCH 2/2] PulseAudio: negotiate digital pass-through for A/52 and DTS

2011-10-03 Thread Arun Raghavan
On Mon, 2011-10-03 at 21:57 +0300, Rémi Denis-Courmont wrote: Le lundi 3 octobre 2011 21:50:52 Pierre-Louis Bossart, vous avez écrit : +#if PA_CHECK_VERSION(1,0,0) +case VLC_CODEC_A52: +format = VLC_CODEC_SPDIFL; +encoding = PA_ENCODING_AC3_IEC61937;

Re: [pulseaudio-discuss] [PATCH 0/3] Results from debugging a rewind problem

2011-10-03 Thread Colin Guthrie
'Twas brillig, and Tanu Kaskinen at 29/09/11 16:54 did gyre and gimble: module-null-sink has a bug (fix to be posted later) that causes it to use 10 second buffer instead of the intended 2 second buffer. That's actually sort of nice, because that made another bug visible. When moving streams

Re: [pulseaudio-discuss] Google ChromeOS reinventing the wheel, ignoring PulseAudio

2011-10-03 Thread Baek Chang
On Mon, Oct 3, 2011 at 5:04 AM, Mark Brown broo...@sirena.org.uk wrote: On Fri, Sep 30, 2011 at 08:23:46PM +0200, David Henningsson wrote: First, look at the What's next section of the 1.0 notes [1]. That points out what we think are the most important shortcomings of PulseAudio