aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2012-01-30 03:44:35 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2012-01-30 03:44:35 +0000
commit8663653a6892541d3baed1413aed44b1a5ba18a3 (patch)
tree9d631e702b6b411c4f5b93a2a64b22768a07e431
parent64ffc07408cc45f8b44407606f722a4d3f0c4e77 (diff)
post version message using verbose(0)
svn path=/trunk/externals/pdogg/; revision=15918
-rw-r--r--oggamp~.c2
-rw-r--r--oggcast~.c2
-rw-r--r--oggread~.c2
-rw-r--r--oggwrite~.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/oggamp~.c b/oggamp~.c
index 80bac62..f289e55 100644
--- a/oggamp~.c
+++ b/oggamp~.c
@@ -1056,7 +1056,7 @@ static void *oggamp_new(t_floatarg fdographics, t_floatarg fnchannels, t_floatar
x->x_graphic = (int)fdographics;
x->x_canvas = canvas_getcurrent();
- post(oggamp_version);
+ verbose(0, oggamp_version);
post("oggamp~: set buffer to %dk bytes", bufsize/1024);
/* start child thread */
diff --git a/oggcast~.c b/oggcast~.c
index ebd21a1..58118d4 100644
--- a/oggcast~.c
+++ b/oggcast~.c
@@ -1070,7 +1070,7 @@ static void *oggcast_new(t_floatarg fnchannels, t_floatarg fbufsize)
x->x_mountpoint = "puredata.ogg";
x->x_servertype = 1; /* HTTP/1.0 protocol for Icecast2 */
- post(oggcast_version);
+ verbose(0, oggcast_version);
post("oggcast~: set buffer to %dk bytes", bufsize / 1024);
post("oggcast~: encoding %d channels @ %d Hz", x->x_channels, x->x_samplerate);
diff --git a/oggread~.c b/oggread~.c
index af1a3a0..4088ede 100644
--- a/oggread~.c
+++ b/oggread~.c
@@ -394,7 +394,7 @@ static void *oggread_new(t_floatarg fdographics)
x->x_outunread = 0;
x->x_decoded = 0;
- post(oggread_version);
+ verbose(0, oggread_version);
return (x);
}
diff --git a/oggwrite~.c b/oggwrite~.c
index 8f91c7f..1a81228 100644
--- a/oggwrite~.c
+++ b/oggwrite~.c
@@ -729,7 +729,7 @@ static void *oggwrite_new(void)
x->x_bcperformer = "";
x->x_bccontact = "";
x->x_bcdate = "";
- post(oggwrite_version);
+ verbose(0, oggwrite_version);
return(x);
}