diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-03-18 22:45:53 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-03-18 22:45:53 +0000 |
commit | 96d4ac01bc64b3c5f725d553387eb622da64a171 (patch) | |
tree | 615bba08f5036c2b96eb21742c141969083c2c3e /src/xine-engine/audio_decoder.c | |
parent | 4c688a8804f8205f7e3d49b2be44eba9a57fff6b (diff) | |
download | xine-lib-96d4ac01bc64b3c5f725d553387eb622da64a171.tar.gz xine-lib-96d4ac01bc64b3c5f725d553387eb622da64a171.tar.bz2 |
make asf demuxer handle audio-only streams (important for webradios\! #-))) and introducing the #ifdef LOG concept in more files (I really start to like that concept, much better than xprintf)
CVS patchset: 1589
CVS date: 2002/03/18 22:45:53
Diffstat (limited to 'src/xine-engine/audio_decoder.c')
-rw-r--r-- | src/xine-engine/audio_decoder.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/xine-engine/audio_decoder.c b/src/xine-engine/audio_decoder.c index 0aea0e278..2ed4c0522 100644 --- a/src/xine-engine/audio_decoder.c +++ b/src/xine-engine/audio_decoder.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: audio_decoder.c,v 1.65 2002/03/11 19:49:07 jkeil Exp $ + * $Id: audio_decoder.c,v 1.66 2002/03/18 22:45:53 guenter Exp $ * * * functions that implement audio decoding @@ -215,10 +215,8 @@ void *audio_decoder_loop (void *this_gen) { if (decoder) { xine_event_t event; - printf ("audio_decoder: using decoder >%s< \n", - decoder->get_identifier()); xine_log (this, XINE_LOG_FORMAT, - "using audio decoder plugin '%s'\n", + "audio_decoder: using audio decoder plugin '%s'\n", decoder->get_identifier()); this->cur_audio_decoder_plugin = decoder; |