[pulseaudio-discuss] [PATCH v2] Added module-ofono-switch-on-voicecall

2014-06-05 Thread eu
From: "Felipe F. Tonello" This module is used to change a card profile when a voice call is received from oFono. Signed-off-by: Felipe F. Tonello --- src/Makefile.am| 12 +- src/modules/module-ofono-switch-on-voicecall.c | 480 + 2 files

Re: [pulseaudio-discuss] An raop2 support

2014-06-05 Thread mok
hi! while trying to compile after cloning, i get this error: configure: error: Unable to find libltdl version 2. Makes sure you have libtool 2.4 or later installed. what can be done? libtool is installed and latest verion. ___ pulseaudio-discuss maili

[pulseaudio-discuss] [PATCH v2] module-rtp-recv: fix crash on empty UDP packets (CVE-2014-3970)

2014-06-05 Thread Alexander E. Patrakov
On FIONREAD returning 0 bytes, we cannot return success, as the caller (rtpoll_work_cb in module-rtp-recv.c) would then try to pa_memblock_unref(chunk.memblock) and, because memblock is NULL, trigger an assertion. Also we have to read out the possible empty packet from the socket, so that the kern

[pulseaudio-discuss] Reg:Pulse audio for Bluez 5 HFP profile

2014-06-05 Thread Krishna Narendrula -ERS, HCL Tech
Hi, We are currently working on Bluetooth HFP for that used Bluez 5 and ofono 1.14.We are succuessfully receiving the calls and able to dial via HFP feature but we are not able to hear the phone audio.Please share your ideas in configuring the pulse audio for hearing the phone audio. Regard

Re: [pulseaudio-discuss] Volume is not maxed on reboot; known bug?

2014-06-05 Thread Raymond Yau
> > When I boot the system (Gentoo), "pacmd list-sinks" says: > > left: 65520 / 100% / -0.01 dB, right: 65520 / 100% / -0.01 dB > > I have to first apply a manual volume change (with pavucontrol or kmix) for it to get to 65536 (0dB.) > > I'm using PulseAudio 5.0 with software volume (hardware vol

Re: [pulseaudio-discuss] Volume is not maxed on reboot; known bug?

2014-06-05 Thread Nikos Chantziaras
On 05/06/14 16:51, Tanu Kaskinen wrote: On Thu, 2014-06-05 at 16:37 +0300, Nikos Chantziaras wrote: On 05/06/14 16:28, Nikos Chantziaras wrote: [...] I am attaching the output of "pulseaudio -vvv". My previous email didn't make it through to the list, due to the attachment being too large. I

Re: [pulseaudio-discuss] Volume is not maxed on reboot; known bug?

2014-06-05 Thread Nikos Chantziaras
On 05/06/14 16:42, Tanu Kaskinen wrote: On Thu, 2014-06-05 at 16:28 +0300, Nikos Chantziaras wrote: On 05/06/14 16:17, Tanu Kaskinen wrote: On Wed, 2014-06-04 at 10:47 +0300, Nikos Chantziaras wrote: When I boot the system (Gentoo), "pacmd list-sinks" says: left: 65520 / 100% / -0.01 dB,

Re: [pulseaudio-discuss] Volume is not maxed on reboot; known bug?

2014-06-05 Thread Tanu Kaskinen
On Thu, 2014-06-05 at 16:37 +0300, Nikos Chantziaras wrote: > On 05/06/14 16:28, Nikos Chantziaras wrote: > > Yes, I can reproduce this. If I raise the volume to 0 db manually, then > > exit PA with Ctrl+C and then run it again, the volume is again -0.01 dB. > > > > I am attaching the output of "pu

Re: [pulseaudio-discuss] Volume is not maxed on reboot; known bug?

2014-06-05 Thread Tanu Kaskinen
On Thu, 2014-06-05 at 16:28 +0300, Nikos Chantziaras wrote: > On 05/06/14 16:17, Tanu Kaskinen wrote: > > On Wed, 2014-06-04 at 10:47 +0300, Nikos Chantziaras wrote: > >> When I boot the system (Gentoo), "pacmd list-sinks" says: > >> > >> left: 65520 / 100% / -0.01 dB, right: 65520 / 100% / -0.

Re: [pulseaudio-discuss] Volume is not maxed on reboot; known bug?

2014-06-05 Thread Nikos Chantziaras
On 05/06/14 16:28, Nikos Chantziaras wrote: Yes, I can reproduce this. If I raise the volume to 0 db manually, then exit PA with Ctrl+C and then run it again, the volume is again -0.01 dB. I am attaching the output of "pulseaudio -vvv". My previous email didn't make it through to the list, due

Re: [pulseaudio-discuss] paplay stuck while playing over Bluetooth without any error messages

2014-06-05 Thread Tanu Kaskinen
On Mon, 2014-06-02 at 16:01 +0100, tony wrote: > Hello, > I am trying to play audio over Bluetooth(BlueZ, 4.101) Headset profile > using my tegra board as audio Source running ubuntu 13.04. The pulse > audio version used is v5.0. > From the bluez logs, I can see the headset is connect

Re: [pulseaudio-discuss] Volume is not maxed on reboot; known bug?

2014-06-05 Thread Tanu Kaskinen
On Wed, 2014-06-04 at 10:47 +0300, Nikos Chantziaras wrote: > When I boot the system (Gentoo), "pacmd list-sinks" says: > >left: 65520 / 100% / -0.01 dB, right: 65520 / 100% / -0.01 dB > > I have to first apply a manual volume change (with pavucontrol or kmix) > for it to get to 65536 (0dB.)

Re: [pulseaudio-discuss] [PATCH] source, sink: Support weird sample rates

2014-06-05 Thread Tanu Kaskinen
On Mon, 2014-06-02 at 22:45 +0600, Alexander E. Patrakov wrote: > This fixes assertion failures that manifest themselves with cards that > support only weird rates such as 37286Hz. Tested with snd-pcsp. > > Signed-off-by: Alexander E. Patrakov > BugLink: https://bugs.freedesktop.org/show_bug.cgi?

Re: [pulseaudio-discuss] [PATCH] module-rtp-recv: fix crash on empty UDP packets

2014-06-05 Thread Alexander E. Patrakov
05.06.2014 17:13, Tanu Kaskinen пишет: On Sat, 2014-05-31 at 23:48 +0600, Alexander E. Patrakov wrote: Signed-off-by: Alexander E. Patrakov --- src/modules/rtp/rtp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/rtp/rtp.c b/src/modules/rtp/rtp.c index 57073

Re: [pulseaudio-discuss] [PATCH] module-rtp-recv: fix crash on empty UDP packets

2014-06-05 Thread Tanu Kaskinen
On Sat, 2014-05-31 at 23:48 +0600, Alexander E. Patrakov wrote: > Signed-off-by: Alexander E. Patrakov > > --- > src/modules/rtp/rtp.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/src/modules/rtp/rtp.c b/src/modules/rtp/rtp.c > index 570737e..8451386 100644 > --- a/s

Re: [pulseaudio-discuss] [PATCH 2/2] combine-sink: add suport for DYNAMIC_LATENCY

2014-06-05 Thread Tanu Kaskinen
On Tue, 2014-05-27 at 21:37 +0200, Wim Taymans wrote: > +/* Called from sink I/O thread context */ > +static void sink_update_requested_latency(pa_sink *s) { > +struct userdata *u; > +struct output *o; > +pa_usec_t latency; > + > +pa_sink_assert_ref(s); > +pa_assert_se(u = s->us

[pulseaudio-discuss] [V3 PATCH] rescue-streams: try to find best one using availability and priority

2014-06-05 Thread Hui Wang
Recently met a problem: when I disconnect the bluetooth headset, the pulseaudio automatically switch the sound to sink of HDMI output instead of the sink of internal speaker even though there is no HDMI cable connected. To fix this problem, I want to change the rule of selecting the target sink if

Re: [pulseaudio-discuss] [PATCH 1/2] combine-sink: rework output add/remove

2014-06-05 Thread Tanu Kaskinen
On Tue, 2014-05-27 at 21:37 +0200, Wim Taymans wrote: > Add the output from its sink-input attached callback and remove it > again from the detach callback. This simplifies some output_enable > and we can also avoid posting 2 messages for the sink. > --- > src/modules/module-combine-sink.c | 27 ++