diff options
Diffstat (limited to 'src/demuxers/demux_snd.c')
-rw-r--r-- | src/demuxers/demux_snd.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/src/demuxers/demux_snd.c b/src/demuxers/demux_snd.c index 9570e0ed9..da63e1616 100644 --- a/src/demuxers/demux_snd.c +++ b/src/demuxers/demux_snd.c @@ -19,7 +19,7 @@ * * SND/AU File Demuxer by Mike Melanson (melanson@pcisys.net) * - * $Id: demux_snd.c,v 1.24 2003/01/10 21:11:10 miguelfreitas Exp $ + * $Id: demux_snd.c,v 1.25 2003/01/19 23:33:33 tmmm Exp $ * */ @@ -387,18 +387,6 @@ static demux_plugin_t *open_plugin (demux_class_t *class_gen, xine_stream_t *str strncpy (this->last_mrl, input->get_mrl (input), 1024); - /* print vital stats */ - xine_log(this->stream->xine, XINE_LOG_MSG, - _("demux_snd: %d Hz, %d channels, %d bits, %d frames\n"), - this->audio_sample_rate, - this->audio_channels, - this->audio_bits, - this->audio_frames); - xine_log(this->stream->xine, XINE_LOG_MSG, - _("demux_snd: running time: %d min, %d sec\n"), - this->running_time / 60, - this->running_time % 60); - return &this->demux_plugin; } |