summaryrefslogtreecommitdiff
path: root/src/xine-engine/audio_decoder.c
diff options
context:
space:
mode:
authorGuenter Bartsch <guenter@users.sourceforge.net>2002-02-17 17:32:49 +0000
committerGuenter Bartsch <guenter@users.sourceforge.net>2002-02-17 17:32:49 +0000
commit31c216d7c3195e7975040ceb5445f200db384c84 (patch)
treebd34b07ef3db8ab9dab46229c6289321eb12f324 /src/xine-engine/audio_decoder.c
parent5106a372ebd84fda2e004541efebd7c366201efd (diff)
downloadxine-lib-31c216d7c3195e7975040ceb5445f200db384c84.tar.gz
xine-lib-31c216d7c3195e7975040ceb5445f200db384c84.tar.bz2
big debug output cleanup. removed debug output from log window, logging
relevant information like stream type/size/bitrate instead. demuxer cleanup, removed no-longer-needed macros :-) switched off video_out/libmpeg2/... verbose log output messages. CVS patchset: 1503 CVS date: 2002/02/17 17:32:49
Diffstat (limited to 'src/xine-engine/audio_decoder.c')
-rw-r--r--src/xine-engine/audio_decoder.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/xine-engine/audio_decoder.c b/src/xine-engine/audio_decoder.c
index 169919f2b..7f73ebbc1 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.58 2002/02/09 07:13:24 guenter Exp $
+ * $Id: audio_decoder.c,v 1.59 2002/02/17 17:32:50 guenter Exp $
*
*
* functions that implement audio decoding
@@ -212,8 +212,12 @@ void *audio_decoder_loop (void *this_gen) {
if (decoder) {
xine_event_t event;
- printf ("audio_loop: using decoder >%s< \n",
+ printf ("audio_decoder: using decoder >%s< \n",
decoder->get_identifier());
+ xine_log (this, XINE_LOG_FORMAT,
+ "using audio decoder plugin '%s'\n",
+ decoder->get_identifier());
+
this->cur_audio_decoder_plugin = decoder;
this->cur_audio_decoder_plugin->init (this->cur_audio_decoder_plugin, this->audio_out);