diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2012-09-26 03:29:48 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@iem.at> | 2015-10-14 15:23:30 +0200 |
commit | a670a1ba760841ecc3d493a943c5f184380fc264 (patch) | |
tree | 1c79153209a40eda96903613730e66a68a339bce /mp3streamout~.c | |
parent | 13332c5892e461fba5a608c74bb0ef02367db8e3 (diff) |
comment out deprecated LAME function: lame_set_padding_type()
svn path=/trunk/externals/unauthorized/; revision=16301
Diffstat (limited to 'mp3streamout~.c')
-rw-r--r-- | mp3streamout~.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mp3streamout~.c b/mp3streamout~.c index 7ef2d8b..2140093 100644 --- a/mp3streamout~.c +++ b/mp3streamout~.c @@ -390,7 +390,7 @@ static void mp3streamout_tilde_lame_init(t_mp3streamout *x) lame_set_original( x->lgfp, 1 ); lame_set_copyright( x->lgfp, 1 ); /* viva free music societies !!! */ lame_set_disable_reservoir( x->lgfp, 0 ); - lame_set_padding_type( x->lgfp, PAD_NO ); + //lame_set_padding_type( x->lgfp, PAD_NO ); /* deprecated in LAME */ ret = lame_init_params( x->lgfp ); if ( ret<0 ) { |