]> git.alsa-project.org Git - alsa-plugins.git/commitdiff
Remove stray Polypaudio strings
authorPierre Ossman <ossman@cendio.se>
Mon, 28 Aug 2006 11:09:31 +0000 (13:09 +0200)
committerTakashi Iwai <tiwai@suse.de>
Mon, 28 Aug 2006 11:09:31 +0000 (13:09 +0200)
Some stray mentions of the old Polypaudio name was still present in the
PulseAudio plug-in.

Signed-off-by: Pierre Ossman <ossman@cendio.se>
pulse/ctl_pulse.c
pulse/pcm_pulse.c

index 06e087ffa4d3ff12b50d3dee06ea0e7a678708ba..d1ac325802a3d3e33b1ab59dbdd4aeb9cc1f7da9 100644 (file)
@@ -689,10 +689,10 @@ SND_CTL_PLUGIN_DEFINE_FUNC(pulse)
     ctl->ext.version = SND_CTL_EXT_VERSION;
     ctl->ext.card_idx = 0;
     strncpy(ctl->ext.id, "pulse", sizeof(ctl->ext.id) - 1);
-    strncpy(ctl->ext.driver, "Polypaudio plugin", sizeof(ctl->ext.driver) - 1);
-    strncpy(ctl->ext.name, "Polypaudio", sizeof(ctl->ext.name) - 1);
-    strncpy(ctl->ext.longname, "Polypaudio", sizeof(ctl->ext.longname) - 1);
-    strncpy(ctl->ext.mixername, "Polypaudio", sizeof(ctl->ext.mixername) - 1);
+    strncpy(ctl->ext.driver, "PulseAudio plugin", sizeof(ctl->ext.driver) - 1);
+    strncpy(ctl->ext.name, "PulseAudio", sizeof(ctl->ext.name) - 1);
+    strncpy(ctl->ext.longname, "PulseAudio", sizeof(ctl->ext.longname) - 1);
+    strncpy(ctl->ext.mixername, "PulseAudio", sizeof(ctl->ext.mixername) - 1);
     ctl->ext.poll_fd = -1;
     ctl->ext.callback = &pulse_ext_callback;
     ctl->ext.private_data = ctl;
index 3f5247e304c1d879cdcd39330d9a349c5b073b81..96affac14fdc2865b3ed3b10c7ade96ff04899ad 100644 (file)
@@ -471,7 +471,7 @@ static int pulse_prepare(snd_pcm_ioplug_t *io)
 
     err = pulse_wait_stream_state(pcm->p, pcm->stream, PA_STREAM_READY);
     if (err < 0) {
-        fprintf(stderr, "*** POLYPAUDIO: Unable to create stream.\n");
+        fprintf(stderr, "*** PULSEAUDIO: Unable to create stream.\n");
         pa_stream_unref(pcm->stream);
         pcm->stream = NULL;
         goto finish;
@@ -524,7 +524,7 @@ static int pulse_hw_params(snd_pcm_ioplug_t *io, snd_pcm_hw_params_t *params)
         pcm->ss.format = PA_SAMPLE_FLOAT32BE;
         break;
     default:
-        fprintf(stderr, "*** POLYPAUDIO: unsupported format %s\n",
+        fprintf(stderr, "*** PULSEAUDIO: unsupported format %s\n",
             snd_pcm_format_name(io->format));
         err = -EINVAL;
         goto finish;
@@ -715,7 +715,7 @@ SND_PCM_PLUGIN_DEFINE_FUNC(pulse)
         goto error;
 
        pcm->io.version = SND_PCM_IOPLUG_VERSION;
-       pcm->io.name = "ALSA <-> Polypaudio PCM I/O Plugin";
+       pcm->io.name = "ALSA <-> PulseAudio PCM I/O Plugin";
        pcm->io.poll_fd = -1;
        pcm->io.poll_events = 0;
        pcm->io.mmap_rw = 0;