Re: [pulseaudio-discuss] Crash when testing PulseAudio 3.0 on a Pandaboard ES.

2013-01-17 Thread Tanu Kaskinen
On Fri, 2013-01-18 at 16:08 +1100, Luke Yelavich wrote: > Hey folks, > I was attempting to test Pulse 3.0 on a PandaBoard ES for something > completely unrelated, however when attepting to load PulseAudio, it > crashed when attempting to make use of UCM. The stacktrace is > attached, and I still ha

[pulseaudio-discuss] Crash when testing PulseAudio 3.0 on a Pandaboard ES.

2013-01-17 Thread Luke Yelavich
Hey folks, I was attempting to test Pulse 3.0 on a PandaBoard ES for something completely unrelated, however when attepting to load PulseAudio, it crashed when attempting to make use of UCM. The stacktrace is attached, and I still have the core dump if anybody requires that as well. This test wa

[pulseaudio-discuss] Configuration Help/Documentation Needed

2013-01-17 Thread Justin Chudgar
I want to accomplish the following using the default alsa sink as setup by module-udev-detect: - merge channels front-left and front-right into center-raw - run center-raw through a Butterworth high pass into center-high - run center-high through a Butterworth low pass into center-mid - redirect ce

[pulseaudio-discuss] [PATCH 0/5] card-restore: Use only hooks.

2013-01-17 Thread Damir Jelić
Sorry, forgott the subject. :p ___ pulseaudio-discuss mailing list pulseaudio-discuss@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/pulseaudio-discuss

[pulseaudio-discuss] [PATCH 5/5] card-restore: Only use hooks for the events.

2013-01-17 Thread Damir Jelić
Notification events can be error prone, this patch removes the use of notification events from card-restore and replaces them with hooks. --- src/modules/module-card-restore.c | 241 -- 1 file changed, 178 insertions(+), 63 deletions(-) diff --git a/src/modules

[pulseaudio-discuss] [PATCH 4/5] device-port: Fire a hook when the latency offset changes.

2013-01-17 Thread Damir Jelić
This change adds a new hook type: PA_CORE_HOOK_PORT_OFFSET_CHANGED And it is fired when the port latency offset changes. --- src/pulsecore/core.h| 1 + src/pulsecore/device-port.c | 1 + 2 files changed, 2 insertions(+) diff --git a/src/pulsecore/core.h b/src/pulsecore/core.h index cf7cc1

[pulseaudio-discuss] [PATCH 3/5] device-port: Cleanup of the sink/source subscription events.

2013-01-17 Thread Damir Jelić
Since it's now decided that we deprecated port info for sinks and sources this isn't needed anymore. --- src/pulsecore/device-port.c | 14 -- 1 file changed, 14 deletions(-) diff --git a/src/pulsecore/device-port.c b/src/pulsecore/device-port.c index 93e539a..4ca26d9 100644 --- a/src/

[pulseaudio-discuss] [PATCH 2/5] device-port: Access the cards directly.

2013-01-17 Thread Damir Jelić
Since the ports now know which card owns them we don't need to iterate through all of them anymore. --- src/pulsecore/device-port.c | 14 -- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/src/pulsecore/device-port.c b/src/pulsecore/device-port.c index cb6fa98..93e539a 1

[pulseaudio-discuss] [PATCH 1/5] device-port: Add a card pointer to the ports.

2013-01-17 Thread Damir Jelić
This way we can directly access the card that owns the port instead of iterating over all cards. --- src/pulsecore/card.c| 10 +- src/pulsecore/device-port.c | 1 + src/pulsecore/device-port.h | 2 ++ 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/src/pulsecore/ca

[pulseaudio-discuss] (no subject)

2013-01-17 Thread Damir Jelić
Hi. Patches 1-4 are just small cleanup/preparation patches for patch no. 5. Patch 5 removes the event notifications from card-restore and replaces it with hooks as David suggested a couple of day ago. This changes a lot of the code in card-restore but the functionality should stay the same, th

[pulseaudio-discuss] (no subject)

2013-01-17 Thread ABHINAV MISRA
I am Abhinav an undergraduate student from India. I was going through your GSoC 2012 project of "Configurable maximum volume for sinks and sources" . I wanted to take up this project in GSoC 2013. Please help to know the right approach to this project . i know C programming language and also pyth

Re: [pulseaudio-discuss] What is the state of play with HDMI sound output on cards with multiple output pins?

2013-01-17 Thread David Henningsson
On 01/09/2013 07:29 PM, mikey wrote: Hi, I've just come across the HDMI output problem on my Geforce GTX 660 Ti where I am unable to select the correct sound output for my monitor (which I believe are called pins) corresponding to the port I have my cable to my monitor connected into. I employed

[pulseaudio-discuss] Devices with dynamic capabilities (HDMI) - revisited

2013-01-17 Thread David Henningsson
Hi! Two months since PulseConf, and 3.0 is out there. So, time to start thinking again about what we talked about at PulseConf. So, on my TODO list were separate cards for HDMI. According to Arun's report, the conclusion was to use "dynamic profiles" and have the card always present. I don't

Re: [pulseaudio-discuss] [PATCH v2 reserve 0/2] Reserve monitor fixes

2013-01-17 Thread David Henningsson
On 01/16/2013 02:36 AM, Tanu Kaskinen wrote: The first patch is the same that I sent already before. The second patch fixes an additional bug in the initialization of the busy status. Changes in v2: - Added a comment to get_busy(). - Moved the GetNameOwner call to a separate function. Tanu