[pulseaudio-discuss] [PATCH] client-conf: fix include of client-conf-x11.h

2014-06-26 Thread Alexander Couzens
Signed-off-by: Alexander Couzens lyn...@fe80.eu --- src/pulse/client-conf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pulse/client-conf.c b/src/pulse/client-conf.c index 317c9f9..35c5532 100644 --- a/src/pulse/client-conf.c +++ b/src/pulse/client-conf.c @@ -41,7

Re: [pulseaudio-discuss] module-tunnel-sink-new not working in PA 5.0 for me

2014-03-13 Thread Alexander Couzens
I'll test your setup today. Hi Harri, thanks for your bug report. At least I can confirm there are serious problems with it. I will report back as soon I have fixed it. @Tanu: Should I create a bugreport on freedesktop.org? Best lynxis -- Alexander Couzens mail: lyn...@fe80.eu sip/jabber

Re: [pulseaudio-discuss] module-tunnel-sink-new not working in PA 5.0 for me

2014-03-11 Thread Alexander Couzens
Hi Harri, I'll test your setup today. Best, lynxis -- Alexander Couzens mail: lyn...@fe80.eu sip/jabber: lyn...@c-base.org mobile: +4915123277221 ___ pulseaudio-discuss mailing list pulseaudio-discuss@lists.freedesktop.org http

[pulseaudio-discuss] [PATCH 1/2] rtsp_client: set state to disconnected when the socket was closed.

2014-02-04 Thread Alexander Couzens
Signed-off-by: Alexander Couzens lyn...@fe80.eu --- src/modules/rtp/rtsp_client.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/modules/rtp/rtsp_client.c b/src/modules/rtp/rtsp_client.c index 6edb0e4..5343b3c 100644 --- a/src/modules/rtp/rtsp_client.c +++ b/src/modules

[pulseaudio-discuss] [PATCH 0/2] rtsp states

2014-02-04 Thread Alexander Couzens
These 2 patches fixes rtsp disconnect state. The second patch fix an abort when the initial connect fails. To reproduce the abort call pactl load-module module-raop-sink server=192.168.1.1 The abort is triggered when the volume is changed or data send over the sink. Alexander Couzens (2

[pulseaudio-discuss] [PATCH 0/2] tunnel-new: corking / uncorking

2013-11-25 Thread Alexander Couzens
Hi Tanu, thanks for your review. Here's the next patch set. Best, Alex Alexander Couzens (2): tunnel-new: add un/corking to the state change callback tunnel-new: remove uncorking in thread_func. Now handled by state change callback. src/modules/module-tunnel-sink-new.c | 94

[pulseaudio-discuss] [PATCH 2/2] tunnel-new: remove uncorking in thread_func. Now handled by state change callback.

2013-11-25 Thread Alexander Couzens
tunnel-new handled a corked stream conditional in the thread_func to be sure the stream isn't corked. Un/Corking is now handled in the state change callback. Signed-off-by: Alexander Couzens lyn...@fe80.eu --- src/modules/module-tunnel-sink-new.c | 59 +--- 1 file

[pulseaudio-discuss] [PATCH 1/2] tunnel-new: add un/corking to the state change callback

2013-11-25 Thread Alexander Couzens
The stream is now corked when the sink or source becomes suspended and uncorked when it's back idle/ready. Signed-off-by: Alexander Couzens lyn...@fe80.eu --- src/modules/module-tunnel-sink-new.c | 37 +++--- src/modules/module-tunnel-source-new.c | 35

[pulseaudio-discuss] [PATCH 0/2] apply tunnel-source-new improvements on tunnel-sink-new

2013-09-16 Thread Alexander Couzens
These 2 patches are already applied on tunnel-source-new. Alexander Couzens (2): tunnel-sink-new: remove switch-default from state change callbacks tunnel-sink-new: use *_new-style for thread_mq init src/modules/module-tunnel-sink-new.c | 25 ++--- 1 file changed, 14

[pulseaudio-discuss] [PATCH] tunnel-source-new: counterpart to module-tunnel-sink-new

2013-08-29 Thread Alexander Couzens
protocol. module-tunnel-source-new avoids this problem by using libpulse to communicate with the remote server. Signed-off-by: Alexander Couzens lyn...@fe80.eu --- src/Makefile.am| 6 + src/modules/module-tunnel-source-new.c | 526 + 2 files

[pulseaudio-discuss] [PATCH] context: add pa_context_load_cookie_file()

2013-08-26 Thread Alexander Couzens
There is no function to load the authentication cookie for a context. You can only set environment variables. This patch adds pa_context_load_cookie_file() Signed-off-by: Alexander Couzens lyn...@fe80.eu --- src/pulse/context.c | 10 ++ src/pulse/context.h | 3 +++ 2 files changed, 13

[pulseaudio-discuss] [PATCH 1/2] client-conf: refactored cookie loaders

2013-08-21 Thread Alexander Couzens
Signed-off-by: Alexander Couzens lyn...@fe80.eu --- src/pulse/client-conf-x11.c | 12 +--- src/pulse/client-conf.c | 48 +++-- src/pulse/client-conf.h | 10 -- 3 files changed, 51 insertions(+), 19 deletions(-) diff --git a/src

[pulseaudio-discuss] [PATCH 1/3] client-conf: refactor cookie loaders

2013-08-21 Thread Alexander Couzens
Signed-off-by: Alexander Couzens lyn...@fe80.eu --- src/pulse/client-conf-x11.c | 12 +--- src/pulse/client-conf.c | 48 +++-- src/pulse/client-conf.h | 10 -- 3 files changed, 51 insertions(+), 19 deletions(-) diff --git a/src

[pulseaudio-discuss] [PATCH] module-tunnel-sink-new: add a rewrite of module-tunnel using libpulse

2013-08-21 Thread Alexander Couzens
Old module-tunnel shares duplicated functionality with libpulse because it is implementing pulse protocol again. It is also not as much tested as libpulse it. Signed-off-by: Alexander Couzens lyn...@fe80.eu --- src/Makefile.am | 6 + src/modules/module-tunnel-sink-new.c

Re: [pulseaudio-discuss] [PATCH 2/2] context: add cookie loaders + setter

2013-08-20 Thread Alexander Couzens
old server and new libpulse or vice versa. I would add this to pulse/def.h and replace the old macro PA_NATIVE_COOKIE_LENGTH. +/** Cookie length in bytes. \since 5.0 */ +#define PA_COOKIE_LENGTH 256 + -- Alexander Couzens mail: lyn...@fe80.eu sip/jabber: lyn...@c-base.org mobile: +4915123277221

Re: [pulseaudio-discuss] [PATCH] add module-tunnel-sink-new: experimental rewrite of module-tunnel using libpulse. Old module-tunnel shares duplicated functionality with libpulse because it is impleme

2013-08-15 Thread Alexander Couzens
On Wed, 14 Aug 2013 14:42:16 +0300 Tanu Kaskinen tanu.kaski...@linux.intel.com wrote: On Wed, 2013-08-07 at 18:05 +0200, Alexander Couzens wrote: Signed-off-by: Alexander Couzens lyn...@fe80.eu --- The whole commit message, apart from the signed-off-by line, is now all on one line

[pulseaudio-discuss] [PATCH 1/2] client-conf-x11|client-conf: refactor cookie loaders

2013-08-13 Thread Alexander Couzens
Signed-off-by: Alexander Couzens lyn...@fe80.eu --- src/pulse/client-conf-x11.c | 12 +--- src/pulse/client-conf.c | 33 ++--- src/pulse/client-conf.h | 5 - 3 files changed, 35 insertions(+), 15 deletions(-) diff --git a/src/pulse/client-conf-x11

[pulseaudio-discuss] [PATCH 0/2] v2 module-tunnel-sink-new

2013-08-05 Thread Alexander Couzens
This is my second version of module-tunnel-sink-new. In compare with module-tunnel it is missing the cookie module argument and does not yet support zero copy. Thanks to Tanu for his good review. Alexander Couzens (2): thread_mq: supports a mainloop as thread/consumer add module-tunnel-sink

[pulseaudio-discuss] [PATCH 1/2] thread_mq: supports a mainloop as thread/consumer

2013-08-05 Thread Alexander Couzens
Signed-off-by: Alexander Couzens lyn...@fe80.eu --- src/pulsecore/thread-mq.c | 74 --- src/pulsecore/thread-mq.h | 7 +++-- 2 files changed, 68 insertions(+), 13 deletions(-) diff --git a/src/pulsecore/thread-mq.c b/src/pulsecore/thread-mq.c index

[pulseaudio-discuss] [PATCH 2/2] add module-tunnel-sink-new: experimental rewrite of module-tunnel using libpulse. Old module-tunnel shares duplicated functionality with libpulse because it is impleme

2013-08-05 Thread Alexander Couzens
Signed-off-by: Alexander Couzens lyn...@fe80.eu --- src/Makefile.am | 6 + src/modules/module-tunnel-sink-new.c | 624 +++ 2 files changed, 630 insertions(+) create mode 100644 src/modules/module-tunnel-sink-new.c diff --git a/src

[pulseaudio-discuss] [PATCH 1/2] thread_mq supports a mainloop as thread/consumer

2013-07-21 Thread Alexander Couzens
Signed-off-by: Alexander Couzens lyn...@fe80.eu --- src/pulsecore/thread-mq.c | 92 +++ src/pulsecore/thread-mq.h | 5 ++- 2 files changed, 89 insertions(+), 8 deletions(-) diff --git a/src/pulsecore/thread-mq.c b/src/pulsecore/thread-mq.c index

[pulseaudio-discuss] [PATCH 0/2] first implementation of module-tunnel-sink-new

2013-07-21 Thread Alexander Couzens
Hey, this is my first implementation of module-tunnel-sink-new. Review, advices, critism are very welcome ;). Alex Alexander Couzens (2): thread_mq supports a mainloop as thread/consumer add module-tunnel-sink-new: experimental rewrite of module-tunnel using libpulse src/Makefile.am

[pulseaudio-discuss] [PATCH 2/2] add module-tunnel-sink-new: experimental rewrite of module-tunnel using libpulse

2013-07-21 Thread Alexander Couzens
Signed-off-by: Alexander Couzens lyn...@fe80.eu --- src/Makefile.am | 7 + src/modules/module-tunnel-sink-new.c | 516 +++ 2 files changed, 523 insertions(+) create mode 100644 src/modules/module-tunnel-sink-new.c diff --git a/src

Re: [pulseaudio-discuss] GSoC ideas

2013-04-26 Thread Alexander Couzens
sense for me to start with most of the other tasks. -- Alexander Couzens mail: lyn...@base45.de sip/jabber: lyn...@c-base.org mobile: +4915123277221 ___ pulseaudio-discuss mailing list pulseaudio-discuss@lists.freedesktop.org http

Re: [pulseaudio-discuss] GSoC ideas

2013-04-26 Thread Alexander Couzens
, Alex -- Alexander Couzens mail: lyn...@base45.de sip/jabber: lyn...@c-base.org mobile: +4915123277221 ___ pulseaudio-discuss mailing list pulseaudio-discuss@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/pulseaudio-discuss