aboutsummaryrefslogtreecommitdiff
path: root/mp3streamout~.c
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2012-01-30 03:30:31 +0000
committerIOhannes m zmölnig <zmoelnig@iem.at>2015-10-14 15:23:30 +0200
commit8e1e3abc39ee1f3bc3f827d1e300e90f477ce3da (patch)
tree5bcdade5585d19cf737a49db3a53c6553c060a12 /mp3streamout~.c
parent13f280fddcbb8ce0016f91179df481b5fa7840c8 (diff)
post version message using verbose(0)
svn path=/trunk/externals/unauthorized/; revision=15914
Diffstat (limited to 'mp3streamout~.c')
-rw-r--r--mp3streamout~.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mp3streamout~.c b/mp3streamout~.c
index eaa4bfc..88fec11 100644
--- a/mp3streamout~.c
+++ b/mp3streamout~.c
@@ -358,7 +358,7 @@ static void mp3streamout_tilde_lame_init(t_mp3streamout *x)
#endif
{
const char *lameVersion = get_lame_version();
- post( "mp3streamout~ : using lame version : %s", lameVersion );
+ verbose(0, "mp3streamout~ : using lame version : %s", lameVersion );
}
/* setting lame parameters */
@@ -525,7 +525,7 @@ static void mp3streamout_print(t_mp3streamout *x)
{
const char * buf = 0;
- post(mp3streamout_version);
+ verbose(0, mp3streamout_version);
post(" LAME mp3 settings:\n"
" output sample rate: %d Hz\n"
" bitrate: %d kbit/s", x->x_samplerate, x->x_bitrate);
@@ -604,7 +604,7 @@ static void *mp3streamout_new(void)
void mp3streamout_tilde_setup(void)
{
- post(mp3streamout_version);
+ verbose(0, mp3streamout_version);
mp3streamout_class = class_new(gensym("mp3streamout~"), (t_newmethod)mp3streamout_new, (t_method)mp3streamout_free,
sizeof(t_mp3streamout), 0, 0);
CLASS_MAINSIGNALIN(mp3streamout_class, t_mp3streamout, x_f );