Re: [pulseaudio-discuss] [PATCH v2] core-util: Fail if XDG_RUNTIME_DIR belongs to someone else

2014-09-08 Thread Rémi Denis-Courmont
fail; +} + k = pa_sprintf_malloc(%s PA_PATH_SEP pulse, d); if (pa_make_secure_dir(k, m, (uid_t) -1, (gid_t) -1, true) 0) { -- Rémi Denis-Courmont ___ pulseaudio-discuss mailing list pulseaudio-discuss@lists.freedesktop.org

Re: [pulseaudio-discuss] [RFC] Per-client flat-volumes control

2014-08-06 Thread Rémi Denis-Courmont
HTML5, could that also cover per-stream replay gain? I mean, can applications both set the normal stream volume (as per user interaction) and the second stream volume (as per something else), and expect things to work? -- Rémi Denis-Courmont

Re: [pulseaudio-discuss] [RFC] Per-client flat-volumes control

2014-08-06 Thread Rémi Denis-Courmont
-level helpers for it, but that's pretty much it, AFAICT. -- Rémi Denis-Courmont ___ pulseaudio-discuss mailing list pulseaudio-discuss@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/pulseaudio-discuss

Re: [pulseaudio-discuss] How to change the volume in PulseAudio (libpulse)

2014-05-09 Thread Rémi Denis-Courmont
Denis-Courmont ___ pulseaudio-discuss mailing list pulseaudio-discuss@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/pulseaudio-discuss

Re: [pulseaudio-discuss] pulse client implementation

2014-03-27 Thread Rémi Denis-Courmont
stream, we forget the user setting completely. -- Rémi Denis-Courmont Sent from my collocated server ___ pulseaudio-discuss mailing list pulseaudio-discuss@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/pulseaudio-discuss

Re: [pulseaudio-discuss] Is it possible to connect to an existing stream using pulse audio?

2013-11-07 Thread Rémi Denis-Courmont
machine of VLC or Totem is in VLC and Totem, not in PulseAudio. All PulseAudio can do is advise the application that its stream is preempted and thus the application _should_ pause. -- Rémi Denis-Courmont Sent from my collocated server ___ pulseaudio-discuss

Re: [pulseaudio-discuss] pulseaudio daemon not responging

2012-11-23 Thread Rémi Denis-Courmont
, PulseAudio should NOT be linked to pthread-stubs since it uses pthread_create(). -- Rémi Denis-Courmont Sent from my collocated server ___ pulseaudio-discuss mailing list pulseaudio-discuss@lists.freedesktop.org http://lists.freedesktop.org/mailman

Re: [pulseaudio-discuss] [PATCH 1/6 v3] core: Initialize ARM NEON code if available

2012-10-17 Thread Rémi Denis-Courmont
in the CFLAGS and enable it manually with the .fpu neon assembler directive. Personally, I much prefer .S/.s file over inline asm because I find them more readable, but it's a matter of taste. -- Rémi Denis-Courmont Sent from my collocated server ___ pulseaudio

Re: [pulseaudio-discuss] [PATCH 1/6 v3] core: Initialize ARM NEON code if available

2012-10-17 Thread Rémi Denis-Courmont
since it is a compile-time decision) Yes, it is pointless as there is no warranty that the code will run on non-NEON processors. -- Rémi Denis-Courmont Sent from my collocated server ___ pulseaudio-discuss mailing list pulseaudio-discuss

Re: [pulseaudio-discuss] [PATCH 1/6 v3] core: Initialize ARM NEON code if available

2012-10-17 Thread Rémi Denis-Courmont
Le mercredi 17 octobre 2012 20:37:15, Thomas Martitz a écrit : Am 17.10.2012 10:53, schrieb Rémi Denis-Courmont: So .S/.s assembler source files constitute the only way to write run-time-conditional NEON code for the time being. Just make sure you did _not_ enable NEON in the CFLAGS

Re: [pulseaudio-discuss] [PATCH v2 1/6] gccmacro: Disable printf-like format checking on mingw32 compilers.

2012-08-21 Thread Rémi Denis-Courmont
Le mardi 21 août 2012 14:32:06 Thomas Martitz, vous avez écrit : Am 21.08.2012 08:51, schrieb Rémi Denis-Courmont: Le mardi 21 août 2012 00:50:34 Thomas Martitz, vous avez écrit : There are tons of warnings, most of them because the function is not recognized as printf-like. Removing

Re: [pulseaudio-discuss] Virtual source

2012-08-10 Thread Rémi Denis-Courmont
, and use it as input to other applications. Did you consider using the loopback ALSA driver? The device should be visible to PulseAudio, shouldn't it? -- Rémi Denis-Courmont Sent from my collocated server ___ pulseaudio-discuss mailing list pulseaudio-discuss

Re: [pulseaudio-discuss] [PATCH 0/4] Volume ramping

2012-08-08 Thread Rémi Denis-Courmont
want a hidden volume that does not affect any slider in the mixer application. Yeah, so would I. In fact, I would like to export the replay gain to PA instead of applying it manually in the application. -- Rémi Denis-Courmont, looking for a job http://www.remlab.net/ http://fi.linkedin.com

Re: [pulseaudio-discuss] [alsa-devel] Immediate underrun with PulseAudio ALSA plugin when PA and ALSA buffer sizes differ

2012-07-24 Thread Rémi Denis-Courmont
Denis-Courmont http://www.remlab.net/ http://fi.linkedin.com/in/remidenis ___ pulseaudio-discuss mailing list pulseaudio-discuss@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/pulseaudio-discuss

Re: [pulseaudio-discuss] SDP LF vs. CRLF

2012-07-21 Thread Rémi Denis-Courmont
fails to use the standard SAP multicast group addresses, so it will not interoperate with VLC out of the box. - In the VLC-PulseAudio direction, VLC must be configured to transcode to 's16b', as PulseAudio is not able to decode non-linear audio commonly found in RTP. Regards, -- Rémi Denis

Re: [pulseaudio-discuss] Building PulseAudio 2.0 without a dependency on libstdc++

2012-07-16 Thread Rémi Denis-Courmont
target, even if it is a conditional and unselected source, the C++ linker will be used. -- Rémi Denis-Courmont http://www.remlab.net/ http://fi.linkedin.com/in/remidenis ___ pulseaudio-discuss mailing list pulseaudio-discuss@lists.freedesktop.org http

Re: [pulseaudio-discuss] Transitioning from pa_bool_t to C99 bool

2012-07-02 Thread Rémi Denis-Courmont
in memory may be different depending on the ABI. Furthermore, the conversion rule for the compiler are not the same. That can introduce subtle bugs on old compilers. I think it's best to fail explicitly than to hide bugs. -- Rémi Denis-Courmont Sent from my collocated server

Re: [pulseaudio-discuss] pulseaudio-discuss Digest, Vol 13, Issue 46

2012-05-30 Thread Rémi Denis-Courmont
cheap audio hardware still need some manual kernel parameters to operate properly. Many thanks for the response. I'm more than happy to post logs/files as needed to help someone more familiar with this issue debug the problem. Best of luck with that but don't hold your breath... -- Rémi Denis

Re: [pulseaudio-discuss] ARM NEON patches

2012-02-11 Thread Rémi Denis-Courmont
units which route shall we go? -- Rémi Denis-Courmont http://www.remlab.net/ http://fi.linkedin.com/in/remidenis ___ pulseaudio-discuss mailing list pulseaudio-discuss@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/pulseaudio

Re: [pulseaudio-discuss] detection of SSE3 support in configure.ac

2011-12-06 Thread Rémi Denis-Courmont
the operating system supports the SSE registers xmmX. Thus parsing /proc/cpuinfo is more reliable though obviously Linux-specific. -- Rémi Denis-Courmont http://www.remlab.net/ http://fi.linkedin.com/in/remidenis ___ pulseaudio-discuss mailing list

Re: [pulseaudio-discuss] Screen casting with PulseAudio

2011-10-18 Thread Rémi Denis-Courmont
On Tue, 18 Oct 2011 13:38:39 +0200, Michał Sawicz mic...@sawicz.net wrote: Dnia 2011-10-18, wto o godzinie 13:33 +0200, Rémi Denis-Courmont pisze: Eh? The user doing the recording typically wants to hear the sound while recording. So I don't see what null sink has to do here. As long as you

Re: [pulseaudio-discuss] Screen casting with PulseAudio

2011-10-18 Thread Rémi Denis-Courmont
On Tue, 18 Oct 2011 14:15:13 +0200, Michał Sawicz mic...@sawicz.net wrote: Dnia 2011-10-18, wto o godzinie 14:03 +0200, Rémi Denis-Courmont pisze: If the user has selected I want to record (or stream) my desktop, how does the application get hold of the desktop audio? In other words how should

Re: [pulseaudio-discuss] Screen casting with PulseAudio

2011-10-18 Thread Rémi Denis-Courmont
the only solution is to list all inputs then :/ (or extend PulseAudio but my free time is not extensible.) -- Rémi Denis-Courmont http://www.remlab.net/ ___ pulseaudio-discuss mailing list pulseaudio-discuss@lists.freedesktop.org http://lists.freedesktop.org

Re: [pulseaudio-discuss] Screen casting with PulseAudio

2011-10-18 Thread Rémi Denis-Courmont
a microphone and a monitor, or can it? -- Rémi Denis-Courmont http://www.remlab.net/ http://fi.linkedin.com/in/remidenis ___ pulseaudio-discuss mailing list pulseaudio-discuss@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo

Re: [pulseaudio-discuss] Buffering attributes with variable format

2011-10-10 Thread Rémi Denis-Courmont
if there are no latency constraints. -- Rémi Denis-Courmont http://www.remlab.net/ http://fi.linkedin.com/in/remidenis ___ pulseaudio-discuss mailing list pulseaudio-discuss@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/pulseaudio-discuss

Re: [pulseaudio-discuss] Buffering attributes with variable format

2011-10-10 Thread Rémi Denis-Courmont
around PulseAudio limitations (bad). But you are right. Intel OTC is surely not paying you to care about mere hobbyists. Let them fuck off. Thanks a lot. -- Rémi Denis-Courmont http://www.remlab.net/ http://fi.linkedin.com/in/remidenis ___ pulseaudio

Re: [pulseaudio-discuss] Buffering attributes with variable format

2011-10-10 Thread Rémi Denis-Courmont
at 192kHz and G.711. Won't it disturb the precise machinery if you take an extreme only to revert back to saner values? -- Rémi Denis-Courmont http://www.remlab.net/ http://fi.linkedin.com/in/remidenis ___ pulseaudio-discuss mailing list pulseaudio-discuss

Re: [pulseaudio-discuss] [RFC] [PATCH 0/1] VLC pass-through to PulseAudio

2011-10-06 Thread Rémi Denis-Courmont
Hello, Le mardi 27 septembre 2011 20:49:27 Rémi Denis-Courmont, vous avez écrit : The following patch makes VLC negotiates S/PDIF pass-through with PulseAudio for A/52 and DTS audio tracks. This requires PulseAudio client library version 1.0.0 (or later) to compile, and a similarly

[pulseaudio-discuss] [RFC] [PATCH 0/2] PulseAudio pass-through VLC support

2011-10-03 Thread Rémi Denis-Courmont
:37 +0300) are available in the git repository at: git://git.remlab.net/vlc.git spadif Rémi Denis-Courmont (2): PulseAudio: add stream event callback and handle format-lost PulseAudio: negotiate digital pass-through for A/52 and DTS modules/audio_output/pulse.c | 92

[pulseaudio-discuss] [PATCH 1/2] PulseAudio: add stream event callback and handle format-lost

2011-10-03 Thread Rémi Denis-Courmont
--- modules/audio_output/pulse.c | 20 1 files changed, 20 insertions(+), 0 deletions(-) diff --git a/modules/audio_output/pulse.c b/modules/audio_output/pulse.c index c3c0aa0..fc7cdb8 100644 --- a/modules/audio_output/pulse.c +++ b/modules/audio_output/pulse.c @@ -355,6

[pulseaudio-discuss] [PATCH 2/2] PulseAudio: negotiate digital pass-through for A/52 and DTS

2011-10-03 Thread Rémi Denis-Courmont
--- modules/audio_output/pulse.c | 72 +- 1 files changed, 71 insertions(+), 1 deletions(-) diff --git a/modules/audio_output/pulse.c b/modules/audio_output/pulse.c index fc7cdb8..cf2ed09 100644 --- a/modules/audio_output/pulse.c +++

Re: [pulseaudio-discuss] Google ChromeOS reinventing the wheel, ignoring PulseAudio

2011-09-27 Thread Rémi Denis-Courmont
certainly does not police video devices. That's partly done by the X server (XVideo grabs), partly by the window manager, but mostly not done at all. But still... -- Rémi Denis-Courmont http://www.remlab.net/ http://fi.linkedin.com/in/remidenis

[pulseaudio-discuss] [RFC] [PATCH 0/1] VLC pass-through to PulseAudio

2011-09-27 Thread Rémi Denis-Courmont
. (2011-09-27 18:07:04 +0300) are available in the git repository at: git://git.remlab.net/vlc-courmisch.git spadif Rémi Denis-Courmont (1): PulseAudio: negotiate digital pass-through for A/52 and DTS modules/audio_output/pulse.c | 73 +- 1 files

Re: [pulseaudio-discuss] VLC, PulseAudio and large tlengths

2011-08-20 Thread Rémi Denis-Courmont
) than both a glitch and then temporary downsampling... That's the rationale. It's also a lot less CPU intensive to not resample. -- Rémi Denis-Courmont http://www.remlab.net/ http://fi.linkedin.com/in/remidenis ___ pulseaudio-discuss mailing list

Re: [pulseaudio-discuss] VLC, PulseAudio and large tlengths

2011-08-20 Thread Rémi Denis-Courmont
. -- Rémi Denis-Courmont http://www.remlab.net/ http://fi.linkedin.com/in/remidenis ___ pulseaudio-discuss mailing list pulseaudio-discuss@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/pulseaudio-discuss

Re: [pulseaudio-discuss] VLC, PulseAudio and large tlengths

2011-08-20 Thread Rémi Denis-Courmont
in the general case. -- Rémi Denis-Courmont http://www.remlab.net/ http://fi.linkedin.com/in/remidenis ___ pulseaudio-discuss mailing list pulseaudio-discuss@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/pulseaudio-discuss

Re: [pulseaudio-discuss] VLC, PulseAudio and large tlengths

2011-08-19 Thread Rémi Denis-Courmont
the PA_STREAM_ADJUST_LATENCY flag. It's not clear to me what this actually will do. Hopefully this gives a little insight in the current problems with VLC and PulseAudio! -- Rémi Denis-Courmont http://www.remlab.net/ http://fi.linkedin.com/in/remidenis ___ pulseaudio

Re: [pulseaudio-discuss] bools and bit-fields

2011-08-18 Thread Rémi Denis-Courmont
is not defined. Then again, stdbool.h is a non-optional part of the C standard. Defining your own boolean type feels very 90's (and indeed error-prone). -- Rémi Denis-Courmont http://www.remlab.net/ http://fi.linkedin.com/in/remidenis ___ pulseaudio-discuss

[pulseaudio-discuss] libpulse deadlock

2011-07-18 Thread Rémi Denis-Courmont
(mainloop); free(sys); } -- Rémi Denis-Courmont http://www.remlab.net/ http://fi.linkedin.com/in/remidenis ___ pulseaudio-discuss mailing list pulseaudio-discuss@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/pulseaudio-discuss