As I&#39;ve already said, can&#39;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">&lt;<a href="mailto:jan.steffens@gmail.com">jan.steffens@gmail.com</a>&gt;</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 &lt;<a href="mailto:spideybr@gmail.com">spideybr@gmail.com</a>&gt; wrote:<br>
&gt; I haven&#39;t tried the masked version, but I follow the PA maillist and<br>
&gt; haven&#39;t seen anything like that. I&#39;m forwarding this message to them,<br>
&gt; let&#39;s see what they say about it.<br>
&gt; I&#39;ll be sure to replicate their messages here in the future.<br>
&gt;<br>
&gt; Claudio Roberto França Pereira (a.k.a. Spidey)<br>
&gt; hardMOB - HTForum - @spideybr<br>
&gt; Engenharia de Computação - UFES 2006/1<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; On Wed, Sep 28, 2011 at 22:04, Hilco Wijbenga &lt;<a href="mailto:hilco.wijbenga@gmail.com">hilco.wijbenga@gmail.com</a>&gt; wrote:<br>
&gt;&gt; Hi all,<br>
&gt;&gt;<br>
&gt;&gt; As indicated by the subject, after installing PulseAudio-1.0-r1 the<br>
&gt;&gt; microphone output is garbled with Skype (2.2.0.35-r1). Downgrading<br>
&gt;&gt; PulseAudio fixes the problem.<br>
&gt;&gt;<br>
&gt;&gt; To be clear, incoming sound is fine (and any other sounds, AFAICT),<br>
&gt;&gt; the problem is only with outgoing sound.<br>
&gt;&gt;<br>
&gt;&gt; Has anyone else noticed this? Any ideas on how to fix it with PulseAudio 1.0-r1?<br>
&gt;&gt;<br>
&gt;&gt; Cheers,<br>
&gt;&gt; Hilco<br>
&gt;&gt;<br>
&gt;&gt;<br>
</div></div><div class="im">&gt; _______________________________________________<br>
&gt; pulseaudio-discuss mailing list<br>
&gt; <a href="mailto:pulseaudio-discuss@lists.freedesktop.org">pulseaudio-discuss@lists.freedesktop.org</a><br>
&gt; <a href="http://lists.freedesktop.org/mailman/listinfo/pulseaudio-discuss" target="_blank">http://lists.freedesktop.org/mailman/listinfo/pulseaudio-discuss</a><br>
&gt;<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 &quot;.0&quot;;<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>