As I've already said, can't reproduce it. Which version of skype are you using?<br><br clear="all">Claudio Roberto França Pereira (a.k.a. Spidey)<br>hardMOB - HTForum - @spideybr<br>Engenharia de Computação - UFES 2006/1<br>
<br><br><div class="gmail_quote">On Fri, Sep 30, 2011 at 13:19, Jan Steffens <span dir="ltr"><<a href="mailto:jan.steffens@gmail.com">jan.steffens@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<div><div></div><div class="h5">On Thu, Sep 29, 2011 at 5:20 AM, Spidey / Claudio <<a href="mailto:spideybr@gmail.com">spideybr@gmail.com</a>> wrote:<br>
> I haven't tried the masked version, but I follow the PA maillist and<br>
> haven't seen anything like that. I'm forwarding this message to them,<br>
> let's see what they say about it.<br>
> I'll be sure to replicate their messages here in the future.<br>
><br>
> Claudio Roberto França Pereira (a.k.a. Spidey)<br>
> hardMOB - HTForum - @spideybr<br>
> Engenharia de Computação - UFES 2006/1<br>
><br>
><br>
><br>
> On Wed, Sep 28, 2011 at 22:04, Hilco Wijbenga <<a href="mailto:hilco.wijbenga@gmail.com">hilco.wijbenga@gmail.com</a>> wrote:<br>
>> Hi all,<br>
>><br>
>> As indicated by the subject, after installing PulseAudio-1.0-r1 the<br>
>> microphone output is garbled with Skype (2.2.0.35-r1). Downgrading<br>
>> PulseAudio fixes the problem.<br>
>><br>
>> To be clear, incoming sound is fine (and any other sounds, AFAICT),<br>
>> the problem is only with outgoing sound.<br>
>><br>
>> Has anyone else noticed this? Any ideas on how to fix it with PulseAudio 1.0-r1?<br>
>><br>
>> Cheers,<br>
>> Hilco<br>
>><br>
>><br>
</div></div><div class="im">> _______________________________________________<br>
> pulseaudio-discuss mailing list<br>
> <a href="mailto:pulseaudio-discuss@lists.freedesktop.org">pulseaudio-discuss@lists.freedesktop.org</a><br>
> <a href="http://lists.freedesktop.org/mailman/listinfo/pulseaudio-discuss" target="_blank">http://lists.freedesktop.org/mailman/listinfo/pulseaudio-discuss</a><br>
><br>
<br>
</div>Turns out this issue was introduced with 1.0 because Skype does not<br>
compare the string returned by pa_get_library_version() correctly.<br>
Making it return a tripartite version fixes Skype again. E.g., one<br>
could do the following:<br>
<br>
<br>
diff --git a/src/pulse/context.c b/src/pulse/context.c<br>
index 25d04a1..6786c4f 100644<br>
--- a/src/pulse/context.c<br>
+++ b/src/pulse/context.c<br>
@@ -1281,7 +1281,7 @@ pa_operation* pa_context_set_name(pa_context *c,<br>
const char *name, pa_context_su<br>
}<br>
<br>
const char* pa_get_library_version(void) {<br>
- return PACKAGE_VERSION;<br>
+ return PACKAGE_VERSION ".0";<br>
}<br>
<br>
const char* pa_context_get_server(pa_context *c) {<br>
<br>
<br>
In any case, Colin should have a patch ready shortly.<br>
<div><div></div><div class="h5">_______________________________________________<br>
pulseaudio-discuss mailing list<br>
<a href="mailto:pulseaudio-discuss@lists.freedesktop.org">pulseaudio-discuss@lists.freedesktop.org</a><br>
<a href="http://lists.freedesktop.org/mailman/listinfo/pulseaudio-discuss" target="_blank">http://lists.freedesktop.org/mailman/listinfo/pulseaudio-discuss</a><br>
</div></div></blockquote></div><br>