Re: [pulseaudio-discuss] asoundrc, configure one virtual device for both input and output

2012-07-01 Thread Tanu Kaskinen
On Sun, 2012-07-01 at 14:59 +0200, Rafał Mużyło wrote: > > Does anyone know if the build system of alsa-plugins could be improved > > so that it doesn't use any external .la files when linking? > > You're asking the wrong question here. > The build system works exactly like intended. > It's the pr

[pulseaudio-discuss] asoundrc, configure one virtual device for both input and output

2012-07-01 Thread Rafał Mużyło
> Does anyone know if the build system of alsa-plugins could be improved > so that it doesn't use any external .la files when linking? You're asking the wrong question here. The build system works exactly like intended. It's the problem of la files that's bitten you. It's an annoying legacy quirk

Re: [pulseaudio-discuss] [PATCH] add a new log target that enables to create new log file if it exists

2012-07-01 Thread rong deng
Hi David, Could you help to review this patch? Does this patch solve your feature request about logging? If this patch is OK for you, could you please help to commit this patch for me? :D Thanks! 2012/7/1 Deng Zhengrong : > --- >  src/daemon/cmdline.c     |    4 ++-- >  src/daemon/daemon-conf.c |

Re: [pulseaudio-discuss] [PATCH 1/8] utils: change pa_bool_t to bool

2012-07-01 Thread rong deng
Hi list, According to Tanu's suggestion, I've changed pa_bool_t to bool. Now, when we do "git grep pa_bool_t", here's nothing. :) Please help to review. Thanks! 2012/7/1 Deng Zhengrong : > --- >  src/utils/pacat.c |   10 +- >  src/utils/pacmd.c |    2 +- >  src/utils/pactl.c |   10 +-

[pulseaudio-discuss] about the size of the mail (Was Your message to pulseaudio-discuss awaits moderator approval)

2012-07-01 Thread rong deng
Hi list, Can we make the limit a little bigger? When we do some overall refactoring, we often hit the limit of the patch size... Thanks! 2012/7/1 : > Your mail to 'pulseaudio-discuss' with the subject > >     [PATCH 6/8] modules: change pa_bool_t to bool > > Is being held until the list moderat

[pulseaudio-discuss] [PATCH 5/5] add cpu test using the newly added test framework

2012-07-01 Thread Deng Zhengrong
--- src/Makefile.am |6 ++ src/pulsecore/cpu-x86.c |9 - src/pulsecore/cpu-x86.h |1 + src/tests/cpu-test.c| 31 +++ 4 files changed, 46 insertions(+), 1 deletions(-) create mode 100644 src/tests/cpu-test.c diff --git a/src/Makefi

[pulseaudio-discuss] [PATCH 4/5] remove RUN_TEST macro for svolume mmx and use new test framework

2012-07-01 Thread Deng Zhengrong
--- src/pulsecore/cpu-x86.h |1 + src/pulsecore/svolume_mmx.c | 75 ++ 2 files changed, 12 insertions(+), 64 deletions(-) diff --git a/src/pulsecore/cpu-x86.h b/src/pulsecore/cpu-x86.h index bebe10d..a797b65 100644 --- a/src/pulsecore/cpu-x86.h ++

[pulseaudio-discuss] [PATCH 3/5] remove RUN_TEST macro for sconv sse and use new test framework

2012-07-01 Thread Deng Zhengrong
--- src/pulsecore/cpu-x86.h |1 + src/pulsecore/sconv_sse.c | 44 +--- 2 files changed, 10 insertions(+), 35 deletions(-) diff --git a/src/pulsecore/cpu-x86.h b/src/pulsecore/cpu-x86.h index cb76c56..bebe10d 100644 --- a/src/pulsecore/cpu-x86.h +++

[pulseaudio-discuss] [PATCH 2/5] remove RUN_TEST macro for svolume sse and use new test framework

2012-07-01 Thread Deng Zhengrong
--- src/pulsecore/cpu-x86.h |3 ++ src/pulsecore/svolume_sse.c | 71 +++--- 2 files changed, 15 insertions(+), 59 deletions(-) diff --git a/src/pulsecore/cpu-x86.h b/src/pulsecore/cpu-x86.h index 0045ef6..cb76c56 100644 --- a/src/pulsecore/cpu-x86.h +

[pulseaudio-discuss] [PATCH 1/5] basic test framework

2012-07-01 Thread Deng Zhengrong
--- src/Makefile.am |3 +- src/pulsecore/test.c | 71 ++ src/pulsecore/test.h | 57 3 files changed, 130 insertions(+), 1 deletions(-) create mode 100644 src/pulsecore/test.c create mode 100644

[pulseaudio-discuss] about test framework

2012-07-01 Thread Deng Zhengrong
Here's my first patch series about test framework, I'd prefer our in-house test framework instead of replying on other third party test frameworks. Any comments are welcome. I've added a new cpu test case to leverage this framework. and in the meantime, RUN_TEST seems to be un-used, so I also chang

[pulseaudio-discuss] [PATCH 8/8] module-defs: change pa_bool_t to bool

2012-07-01 Thread Deng Zhengrong
--- src/modules/module-defs.h.m4 |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/modules/module-defs.h.m4 b/src/modules/module-defs.h.m4 index b6a60b6..838b8e8 100644 --- a/src/modules/module-defs.h.m4 +++ b/src/modules/module-defs.h.m4 @@ -30,6 +30,6 @@ const char* p

[pulseaudio-discuss] [PATCH 7/8] configure: don't need HAVE_STD_BOOL macro anymore

2012-07-01 Thread Deng Zhengrong
--- configure.ac | 12 1 files changed, 0 insertions(+), 12 deletions(-) diff --git a/configure.ac b/configure.ac index 5e1a4c5..11f20ae 100644 --- a/configure.ac +++ b/configure.ac @@ -422,18 +422,6 @@ AX_CHECK_DEFINE([netinet/in.h], [INADDR_NONE], [], [AC_DEFINE([INADDR_

[pulseaudio-discuss] [PATCH 4/8] daemon: change pa_bool_t to bool

2012-07-01 Thread Deng Zhengrong
--- src/daemon/cpulimit.c |2 +- src/daemon/daemon-conf.c |4 ++-- src/daemon/daemon-conf.h |4 ++-- src/daemon/main.c | 10 +- src/daemon/server-lookup.c |2 +- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/src/daemon/cpulimit.c b/src

[pulseaudio-discuss] [PATCH 3/8] pulse: change pa_bool_t to bool

2012-07-01 Thread Deng Zhengrong
--- src/pulse/channelmap.c |2 +- src/pulse/client-conf-x11.c|2 +- src/pulse/client-conf.h|4 ++-- src/pulse/context.c|6 +++--- src/pulse/ext-stream-restore.c |2 +- src/pulse/format.c |2 +- src/pulse/internal.h | 3

[pulseaudio-discuss] [PATCH 2/8] tests: change pa_bool_t to bool

2012-07-01 Thread Deng Zhengrong
--- src/tests/interpol-test.c | 10 +- src/tests/resampler-test.c |2 +- src/tests/stripnul.c |2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/tests/interpol-test.c b/src/tests/interpol-test.c index ad00aca..e9d18f1 100644 --- a/src/tests/interpol-

[pulseaudio-discuss] [PATCH 1/8] utils: change pa_bool_t to bool

2012-07-01 Thread Deng Zhengrong
--- src/utils/pacat.c | 10 +- src/utils/pacmd.c |2 +- src/utils/pactl.c | 10 +- src/utils/padsp.c |2 +- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/utils/pacat.c b/src/utils/pacat.c index ec360f7..0f564c8 100644 --- a/src/utils/pacat.c +++ b

[pulseaudio-discuss] change pa_bool_t to bool

2012-07-01 Thread Deng Zhengrong
According to Tanu's suggestion, we should change pa_bool_t to bool. And here are my patches. Now when you do "git grep pa_bool_t", here's nothing... Please help to review. :) ___ pulseaudio-discuss mailing list pulseaudio-discuss@lists.freedesktop.org h

Re: [pulseaudio-discuss] asoundrc, configure one virtual device for both input and output

2012-07-01 Thread Tanu Kaskinen
On Sun, 2012-07-01 at 09:49 +0300, Tanu Kaskinen wrote: > I tried the "./gitcompile --enable-pulseaudio" command myself, and had > this problem: > > Making all in pulse > make[2]: Entering directory `/home/tanu/dev/alsa-plugins/pulse' > /bin/bash ../libtool --tag=CC --mode=compile gcc -DHAVE_CON