diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2003-03-07 12:51:47 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2003-03-07 12:51:47 +0000 |
commit | 8e59691b2a3296f45355e8da5455bd203a64243d (patch) | |
tree | d016d66b24570c808a2555532552409e5651136c /src/demuxers/demux_pva.c | |
parent | 82e24288adc9f9d6f490b0b352a5ecc5ed6f8700 (diff) | |
download | xine-lib-8e59691b2a3296f45355e8da5455bd203a64243d.tar.gz xine-lib-8e59691b2a3296f45355e8da5455bd203a64243d.tar.bz2 |
more work on console output cleanup
CVS patchset: 4357
CVS date: 2003/03/07 12:51:47
Diffstat (limited to 'src/demuxers/demux_pva.c')
-rw-r--r-- | src/demuxers/demux_pva.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/demuxers/demux_pva.c b/src/demuxers/demux_pva.c index c705c6b01..626c662f4 100644 --- a/src/demuxers/demux_pva.c +++ b/src/demuxers/demux_pva.c @@ -21,7 +21,7 @@ * For more information regarding the PVA file format, refer to this PDF: * http://www.technotrend.de/download/av_format_v1.pdf * - * $Id: demux_pva.c,v 1.6 2003/01/26 15:56:21 tmmm Exp $ + * $Id: demux_pva.c,v 1.7 2003/03/07 12:51:48 guenter Exp $ */ #ifdef HAVE_CONFIG_H @@ -446,7 +446,8 @@ static demux_plugin_t *open_plugin (demux_class_t *class_gen, xine_stream_t *str demux_pva_t *this; if (! (input->get_capabilities(input) & INPUT_CAP_SEEKABLE)) { - printf(_("demux_pva.c: input not seekable, can not handle!\n")); + if (stream->xine->verbosity >= XINE_VERBOSITY_DEBUG) + printf(_("demux_pva.c: input not seekable, can not handle!\n")); return NULL; } |