summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorThibaut Mattern <tmattern@users.sourceforge.net>2003-01-27 00:02:57 +0000
committerThibaut Mattern <tmattern@users.sourceforge.net>2003-01-27 00:02:57 +0000
commit2dcfcb7eb5b11000685e036032237a2f5a0aa4b2 (patch)
treeb1cb2f706686637dba67ca37f56999c6fef40943 /src
parent369cb5f4e76417138c8002aa6e5361f76c5485b1 (diff)
downloadxine-lib-2dcfcb7eb5b11000685e036032237a2f5a0aa4b2.tar.gz
xine-lib-2dcfcb7eb5b11000685e036032237a2f5a0aa4b2.tar.bz2
Prints which input plugin and which demuxer are selected.
It's usefull to detect problems with "detection by content". CVS patchset: 4019 CVS date: 2003/01/27 00:02:57
Diffstat (limited to 'src')
-rw-r--r--src/xine-engine/xine.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/xine-engine/xine.c b/src/xine-engine/xine.c
index edb43e70e..3738822e2 100644
--- a/src/xine-engine/xine.c
+++ b/src/xine-engine/xine.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: xine.c,v 1.222 2003/01/18 20:35:28 f1rmb Exp $
+ * $Id: xine.c,v 1.223 2003/01/27 00:02:57 tmattern Exp $
*
* top-level xine functions
*
@@ -717,6 +717,9 @@ static int xine_open_internal (xine_stream_t *stream, const char *mrl) {
= strdup (stream->demux_plugin->demux_class->get_identifier(stream->demux_plugin->demux_class));
}
+ printf("xine: found input plugin : %s\n",stream->input_plugin->input_class->get_description(stream->input_plugin->input_class));
+ printf("xine: found demuxer plugin: %s\n",stream->demux_plugin->demux_class->get_description(stream->demux_plugin->demux_class));
+
extra_info_reset( stream->current_extra_info );
extra_info_reset( stream->video_decoder_extra_info );
extra_info_reset( stream->audio_decoder_extra_info );