[polypaudio-commits] r1042 - in /trunk: doc/modules.html.in src/daemon/default.pa.in src/daemon/esdcompat.in src/modules/rtp/module-rtp-send.c src/pulse/client.conf.in src/utils/padsp
svnmailer-noreply at 0pointer.de
svnmailer-noreply at 0pointer.de
Tue Jun 20 06:02:36 PDT 2006
Author: ossman
Date: Tue Jun 20 15:02:34 2006
New Revision: 1042
URL: http://0pointer.de/cgi-bin/viewcvs.cgi?rev=1042&root=pulseaudio&view=rev
Log:
Fix the final few occurences of polyp.
Modified:
trunk/doc/modules.html.in
trunk/src/daemon/default.pa.in
trunk/src/daemon/esdcompat.in
trunk/src/modules/rtp/module-rtp-send.c
trunk/src/pulse/client.conf.in
trunk/src/utils/padsp
Modified: trunk/doc/modules.html.in
URL: http://0pointer.de/cgi-bin/viewcvs.cgi/trunk/doc/modules.html.in?rev=1042&root=pulseaudio&r1=1041&r2=1042&view=diff
==============================================================================
--- trunk/doc/modules.html.in (original)
+++ trunk/doc/modules.html.in Tue Jun 20 15:02:34 2006
@@ -312,12 +312,12 @@
<h3>module-x11-publish</h3>
-<p>Publishes the access credentials to the Polypaudio server in the
+<p>Publishes the access credentials to the PulseAudio server in the
X11 root window. The following properties are used:
<tt>PULSE_SERVER</tt>, <tt>POYLP_SINK</tt>, <tt>PULSE_SOURCE</tt>,
<tt>PULSE_COOKIE</tt>. This is very useful when using SSH or any other
remote login tool for logging into other machines and getting audio
-playback to your local speakers. The Polypaudio client libraries make
+playback to your local speakers. The PulseAudio client libraries make
use of this data automatically. Instead of using this module you may
use the tool <tt>pax11publish</tt> which may be used to access, modify
and import credential data from/to the X11 display.</p>
@@ -354,7 +354,7 @@
<a name="rtp"/>
<h2>RTP/SDP/SAP Transport</h2>
-<p>Polypaudio can stream audio data to an IP multicast group via the
+<p>PulseAudio can stream audio data to an IP multicast group via the
standard protocols <a
href="http://en.wikipedia.org/wiki/Real-time_Transport_Protocol">RTP</a>,
<a
@@ -373,7 +373,7 @@
able to multicast more than a few streams at the same time over a
standard LAN.</p>
-<p>Polypaudio implements both a sender and a reciever for RTP
+<p>PulseAudio implements both a sender and a reciever for RTP
traffic. The sender announces itself via SAP/SDP on the same multicast
group as it sends the RTP data to. The reciever picks up the SAP/SDP
announcements and creates a playback stream for each
@@ -418,26 +418,26 @@
<h2>JACK Connectivity</h2>
-<p>Polypaudio can be hooked up to a <a
+<p>PulseAudio can be hooked up to a <a
href="http://jackit.sourceforge.net/">JACK Audio Connection Kit</a> server which is a specialized sound server used for professional audio production on Unix/Linux. Both a
-Polypaudio sink and a source are available. For each channel a port is
+PulseAudio sink and a source are available. For each channel a port is
created in the JACK server.</p>
<h3>module-jack-sink</h3>
-<p>This module implements a Polypaudio sink that connects to JACK and registers as many output ports as requested.</p>
-
-<table>
- <tr><td><tt>sink_name=</tt></td><td>The name for the Polypaudio sink. If ommited defaults to <tt>jack_out</tt>.</td></tr>
+<p>This module implements a PulseAudio sink that connects to JACK and registers as many output ports as requested.</p>
+
+<table>
+ <tr><td><tt>sink_name=</tt></td><td>The name for the PulseAudio sink. If ommited defaults to <tt>jack_out</tt>.</td></tr>
<tr><td><tt>server_name=</tt></td><td>The JACK server to connect to. If ommited defaults to the default server.</td></tr>
<tr><td><tt>client_name=</tt></td><td>The client name to tell the JACK server. If ommited defaults to <tt>PulseAudio</tt>.</td></tr>
<tr><td><tt>channels=</tt></td><td>Number of channels to register. If ommited defaults to the number of physical playback ports of the JACK server.</td></tr>
- <tr><td><tt>connect=</tt></td><td>Takes a boolean value. If enabled (the default) Polypaudio will try to connect its ports to the physicial playback ports of the JACK server</td></tr>
+ <tr><td><tt>connect=</tt></td><td>Takes a boolean value. If enabled (the default) PulseAudio will try to connect its ports to the physicial playback ports of the JACK server</td></tr>
</table>
<h3>module-jack-source</h3>
-<p>This module implements a Polypaudio source that connects to JACK
+<p>This module implements a PulseAudio source that connects to JACK
and registers as many input ports as requested. Takes the same
arguments as <tt>module-jack-sink</tt>, except for <tt>sink_name</tt>
which is replaced by <tt>source_name</tt> (with a default of <tt>jack_in</tt>) for obvious reasons.</p>
Modified: trunk/src/daemon/default.pa.in
URL: http://0pointer.de/cgi-bin/viewcvs.cgi/trunk/src/daemon/default.pa.in?rev=1042&root=pulseaudio&r1=1041&r2=1042&view=diff
==============================================================================
--- trunk/src/daemon/default.pa.in (original)
+++ trunk/src/daemon/default.pa.in Tue Jun 20 15:02:34 2006
@@ -1,4 +1,4 @@
-#!@POLYPAUDIO_BINARY@ -nF
+#!@PULSEAUDIO_BINARY@ -nF
#
# This file is part of PulseAudio.
Modified: trunk/src/daemon/esdcompat.in
URL: http://0pointer.de/cgi-bin/viewcvs.cgi/trunk/src/daemon/esdcompat.in?rev=1042&root=pulseaudio&r1=1041&r2=1042&view=diff
==============================================================================
--- trunk/src/daemon/esdcompat.in (original)
+++ trunk/src/daemon/esdcompat.in Tue Jun 20 15:02:34 2006
@@ -95,4 +95,4 @@
shift
done
-eval "exec '@POLYPAUDIO_BINARY@'$ARGS"
+eval "exec '@PULSEAUDIO_BINARY@'$ARGS"
Modified: trunk/src/modules/rtp/module-rtp-send.c
URL: http://0pointer.de/cgi-bin/viewcvs.cgi/trunk/src/modules/rtp/module-rtp-send.c?rev=1042&root=pulseaudio&r1=1041&r2=1042&view=diff
==============================================================================
--- trunk/src/modules/rtp/module-rtp-send.c (original)
+++ trunk/src/modules/rtp/module-rtp-send.c Tue Jun 20 15:02:34 2006
@@ -298,7 +298,7 @@
r = getsockname(fd, (struct sockaddr*) &sa_dst, &k);
assert(r >= 0);
- n = pa_sprintf_malloc("Polypaudio RTP Stream on %s", pa_get_fqdn(hn, sizeof(hn)));
+ n = pa_sprintf_malloc("PulseAudio RTP Stream on %s", pa_get_fqdn(hn, sizeof(hn)));
p = pa_sdp_build(af,
af == AF_INET ? (void*) &((struct sockaddr_in*) &sa_dst)->sin_addr : (void*) &((struct sockaddr_in6*) &sa_dst)->sin6_addr,
Modified: trunk/src/pulse/client.conf.in
URL: http://0pointer.de/cgi-bin/viewcvs.cgi/trunk/src/pulse/client.conf.in?rev=1042&root=pulseaudio&r1=1041&r2=1042&view=diff
==============================================================================
--- trunk/src/pulse/client.conf.in (original)
+++ trunk/src/pulse/client.conf.in Tue Jun 20 15:02:34 2006
@@ -21,7 +21,7 @@
## commented out. Use either ; or # for commenting
## Path to the pulseaudio daemon to run when autospawning.
-; daemon-binary = @POLYPAUDIO_BINARY@
+; daemon-binary = @PULSEAUDIO_BINARY@
## Extra arguments to pass to the pulseaudio daemon
; extra-arguments = --log-target=syslog --exit-idle-time=5
Modified: trunk/src/utils/padsp
URL: http://0pointer.de/cgi-bin/viewcvs.cgi/trunk/src/utils/padsp?rev=1042&root=pulseaudio&r1=1041&r2=1042&view=diff
==============================================================================
--- trunk/src/utils/padsp (original)
+++ trunk/src/utils/padsp Tue Jun 20 15:02:34 2006
@@ -22,8 +22,8 @@
while getopts 'hs:n:m:MSDd' param ; do
case $param in
s)
- POLYP_SERVER="$OPTARG"
- export POLYP_SERVER
+ PULSE_SERVER="$OPTARG"
+ export PULSE_SERVER
;;
n)
PADSP_CLIENT_NAME="$OPTARG"
More information about the pulseaudio-commits
mailing list