summaryrefslogtreecommitdiff
path: root/src/xine-engine/audio_decoder.c
diff options
context:
space:
mode:
authorGuenter Bartsch <guenter@users.sourceforge.net>2001-08-14 11:57:40 +0000
committerGuenter Bartsch <guenter@users.sourceforge.net>2001-08-14 11:57:40 +0000
commitdc1ae5d9a88fdf89ab3de73380fefb0e70316305 (patch)
treea823d32a10c85e57fec38ca6ae33231169c4d7a8 /src/xine-engine/audio_decoder.c
parent79afb1ee5937876ef0c6b27c2e33370890003a36 (diff)
downloadxine-lib-dc1ae5d9a88fdf89ab3de73380fefb0e70316305.tar.gz
xine-lib-dc1ae5d9a88fdf89ab3de73380fefb0e70316305.tar.bz2
return of the profiler
CVS patchset: 428 CVS date: 2001/08/14 11:57:40
Diffstat (limited to 'src/xine-engine/audio_decoder.c')
-rw-r--r--src/xine-engine/audio_decoder.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/xine-engine/audio_decoder.c b/src/xine-engine/audio_decoder.c
index 12c731e79..f92c63e55 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.26 2001/08/13 17:52:22 jkeil Exp $
+ * $Id: audio_decoder.c,v 1.27 2001/08/14 11:57:40 guenter Exp $
*
*
* functions that implement audio decoding
@@ -166,10 +166,15 @@ void *audio_decoder_loop (void *this_gen) {
this->cur_audio_decoder_plugin = decoder;
this->cur_audio_decoder_plugin->init (this->cur_audio_decoder_plugin, this->audio_out);
+
+ printf ("audio_decoder: using decoder >%s< \n",
+ decoder->get_identifier());
}
+ profiler_start_count (1);
decoder->decode_data (decoder, buf);
+ profiler_stop_count (1);
}
}
} else