[pulseaudio-discuss] [PATCH 1/7] Fixup #include directives according to Coding Style

2011-03-09 Thread Maarten Bosmans
Use #include header.h if functionality of header.h is implemented and #include header.h if functionality of header.h is used. --- src/pulse/browser.c |2 +- src/pulse/context.c | 13 + src/pulse/ext-device-manager.c |5 ++---

[pulseaudio-discuss] [PATCH 2/7] build: Use silent rules for generating files

2011-03-09 Thread Maarten Bosmans
--- man/Makefile.am |4 ++-- src/Makefile.am | 20 ++-- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/man/Makefile.am b/man/Makefile.am index 7793fe7..eca1fb9 100644 --- a/man/Makefile.am +++ b/man/Makefile.am @@ -36,7 +36,7 @@ noinst_DATA = \

Re: [pulseaudio-discuss] [PATCH 2/7] build: Use silent rules for generating files

2011-03-09 Thread Maarten Bosmans
There are just 2 patches, the /7 was a mistake. Maarten 2011/3/9 Maarten Bosmans mkbosm...@gmail.com: ---  man/Makefile.am |    4 ++--  src/Makefile.am |   20 ++--  2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/man/Makefile.am b/man/Makefile.am index

Re: [pulseaudio-discuss] pulseaudio xbmc passthrough success

2011-03-09 Thread Colin Guthrie
'Twas brillig, and Kelly Anderson at 09/03/11 06:59 did gyre and gimble: OK, I've just put up the patches necessary to get passthrough working with Nvidia hdmi on XBMC. This is awesome work Kelly, Please keep in mind that the PA API side of things will be changing very soon... there may be a

[pulseaudio-discuss] [WIP] Passthrough support

2011-03-09 Thread Arun Raghavan
Hello all, Based on the RFC I posted earlier, I've implemented basic passthrough support in some usable shape. It's up on the passthrough branch of each of: PulseAudio: http://git.collabora.co.uk/?p=user/arun/pulseaudio.git;a=shortlog;h=refs/heads/passthrough gst-plugins-base:

[pulseaudio-discuss] [PATCH 2/7 v2] alsa-mixer: Use decibel fixes when getting and setting decibel volumes.

2011-03-09 Thread Tanu Kaskinen
From: Tanu Kaskinen ext-tanu.kaski...@nokia.com --- src/modules/alsa/alsa-mixer.c | 260 - src/modules/alsa/alsa-mixer.h |8 +- 2 files changed, 212 insertions(+), 56 deletions(-) diff --git a/src/modules/alsa/alsa-mixer.c

Re: [pulseaudio-discuss] [PATCH 0/7] Working around bad decibel information

2011-03-09 Thread David Henningsson
On 2011-03-04 16:42, Tanu Kaskinen wrote: Here's a pile of patches. The first two implement the concept of decibel fixes for alsa devices. A decibel fix is basically a table that maps the raw volume steps of a mixer element to manually configured decibel values. Hmm, taking Lennart's hat on,

Re: [pulseaudio-discuss] [PATCH 0/7] Working around bad decibel information

2011-03-09 Thread Tanu Kaskinen
On Wed, 2011-03-09 at 12:53 +0200, David Henningsson wrote: On 2011-03-04 16:42, Tanu Kaskinen wrote: Here's a pile of patches. The first two implement the concept of decibel fixes for alsa devices. A decibel fix is basically a table that maps the raw volume steps of a mixer element to

[pulseaudio-discuss] [PATCH 2/2] Log feature: optimize log data format before writing to target

2011-03-09 Thread Vincent Becker
Format data appended and prepended to the log message so that only one call to write is necessary Signed-off-by: Vincent Becker vincentx.bec...@intel.com --- src/pulsecore/log.c | 130 +++--- 1 files changed, 80 insertions(+), 50 deletions(-) diff

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

2011-03-09 Thread Vincent Becker
Patches updated with both remarks from Arun and Maarten. Can be applied without risks now. These 2 patches are adding a log target to Pulseaudio. This new log target is a file descriptor (regular file, char device...). It also reformats the log message for optimal calls to the write function.

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

2011-03-09 Thread Vincent Becker
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 Signed-off-by: Vincent Becker vincentx.bec...@intel.com --- src/daemon/cmdline.c |5 +++-- src/daemon/daemon-conf.c | 26

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

2011-03-09 Thread Maarten Bosmans
2011/3/9 Vincent Becker vincentx.bec...@intel.com: @@ -185,7 +193,23 @@ int pa_daemon_conf_set_log_target(pa_daemon_conf *c, const char *string) {     } else if (!strcmp(string, stderr)) {         c-auto_log_target = 0;         c-log_target = PA_LOG_STDERR; -    } else +    } else if

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

2011-03-09 Thread Becker, VincentX
-Original Message- From: pulseaudio-discuss-boun...@mail.0pointer.de [mailto:pulseaudio- discuss-boun...@mail.0pointer.de] On Behalf Of Maarten Bosmans Sent: Wednesday, March 09, 2011 5:31 PM To: General PulseAudio Discussion Subject: Re: [pulseaudio-discuss] [PATCH 1/2] Log feature:Add a

Re: [pulseaudio-discuss] [WIP] Passthrough support

2011-03-09 Thread Arun Raghavan
On Wed, 2011-03-09 at 15:40 +0530, Arun Raghavan wrote: Hello all, Based on the RFC I posted earlier, I've implemented basic passthrough support in some usable shape. It's up on the passthrough branch of each of: PulseAudio:

Re: [pulseaudio-discuss] [PATCH] bluetooth: Allow frame length changes when decoding a2dp

2011-03-09 Thread Colin Guthrie
'Twas brillig, and Luiz Augusto von Dentz at 04/03/11 23:24 did gyre and gimble: Hi, On Fri, Mar 4, 2011 at 10:48 AM, Maarten Lankhorst m.b.lankho...@gmail.com wrote: My android phone sends packets with a different frame length than the decoder initially expects, since libsbc already allows

Re: [pulseaudio-discuss] [WIP] Passthrough support

2011-03-09 Thread pl bossart
What's here? All the basic plumbing for clients to signal a compresed format, have PA pick the best supported one, actually play that format, and have pactl list show these. The ALSA sink takes AC3 at the moment, and I should be pushing DTS support today/tomorrow after some more testing.