From 2175b5735fdf4bdfa97f446ee110ab51f4158d21 Mon Sep 17 00:00:00 2001 From: Mike Melanson Date: Sun, 19 Jan 2003 23:33:33 +0000 Subject: eliminate "vital stats" printout, long obsoleted by UI's info dialog facilities CVS patchset: 3974 CVS date: 2003/01/19 23:33:33 --- src/demuxers/demux_qt.c | 29 +---------------------------- 1 file changed, 1 insertion(+), 28 deletions(-) (limited to 'src/demuxers/demux_qt.c') diff --git a/src/demuxers/demux_qt.c b/src/demuxers/demux_qt.c index f0abd6a3a..4872b4dd5 100644 --- a/src/demuxers/demux_qt.c +++ b/src/demuxers/demux_qt.c @@ -30,7 +30,7 @@ * build_frame_table * free_qt_info * - * $Id: demux_qt.c,v 1.141 2003/01/10 21:11:06 miguelfreitas Exp $ + * $Id: demux_qt.c,v 1.142 2003/01/19 23:33:33 tmmm Exp $ * */ @@ -2385,33 +2385,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_qt: Apple Quicktime file, %srunning time: %d min, %d sec\n"), - (this->qt->compressed_header) ? "compressed header, " : "", - this->qt->duration / this->qt->timescale / 60, - this->qt->duration / this->qt->timescale % 60); - if (this->qt->video_codec) - xine_log (this->stream->xine, XINE_LOG_MSG, - _("demux_qt: '%c%c%c%c' video @ %dx%d\n"), - *((char *)&this->qt->video_codec + 0), - *((char *)&this->qt->video_codec + 1), - *((char *)&this->qt->video_codec + 2), - *((char *)&this->qt->video_codec + 3), - this->qt->video_width, - this->qt->video_height); - if (this->qt->audio_codec) - xine_log (this->stream->xine, XINE_LOG_MSG, - _("demux_qt: '%c%c%c%c' audio @ %d Hz, %d bits, %d %s\n"), - *((char *)&this->qt->audio_codec + 0), - *((char *)&this->qt->audio_codec + 1), - *((char *)&this->qt->audio_codec + 2), - *((char *)&this->qt->audio_codec + 3), - this->qt->audio_sample_rate, - this->qt->audio_bits, - this->qt->audio_channels, - ngettext("channel", "channels", this->qt->audio_channels)); - return &this->demux_plugin; } -- cgit v1.2.3