aboutsummaryrefslogtreecommitdiff
path: root/mp3cast~.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 /mp3cast~.c
parent13f280fddcbb8ce0016f91179df481b5fa7840c8 (diff)
post version message using verbose(0)
svn path=/trunk/externals/unauthorized/; revision=15914
Diffstat (limited to 'mp3cast~.c')
-rw-r--r--mp3cast~.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mp3cast~.c b/mp3cast~.c
index f50793d..beb4c53 100644
--- a/mp3cast~.c
+++ b/mp3cast~.c
@@ -349,7 +349,7 @@ static void mp3cast_tilde_lame_init(t_mp3cast *x)
#endif /* _WIN32 */
{
const char *lameVersion = get_lame_version();
- post( "mp3cast~ : using lame version : %s", lameVersion );
+ verbose(0, "mp3cast~ : using lame version : %s", lameVersion );
}
@@ -785,7 +785,7 @@ static void mp3cast_mpeg(t_mp3cast *x, t_floatarg fsamplerate, t_floatarg fbitra
static void mp3cast_print(t_mp3cast *x)
{
const char * buf = 0;
- post(mp3cast_version);
+ verbose(0, mp3cast_version);
post(" LAME mp3 settings:\n"
" output sample rate: %d Hz\n"
" bitrate: %d kbit/s", x->x_samplerate, x->x_bitrate);
@@ -947,7 +947,7 @@ static void *mp3cast_new(void)
void mp3cast_tilde_setup(void)
{
- post(mp3cast_version);
+ verbose(0, mp3cast_version);
mp3cast_class = class_new(gensym("mp3cast~"), (t_newmethod)mp3cast_new, (t_method)mp3cast_free,
sizeof(t_mp3cast), 0, 0);
CLASS_MAINSIGNALIN(mp3cast_class, t_mp3cast, x_f );