diff options
author | Siggi Langauf <siggi@users.sourceforge.net> | 2003-03-27 11:39:23 +0000 |
---|---|---|
committer | Siggi Langauf <siggi@users.sourceforge.net> | 2003-03-27 11:39:23 +0000 |
commit | f89b6a72297eaee4c5b8ccc20639829e0f5f0313 (patch) | |
tree | d0ccfddf172b2c86d71663158b73ec7db201b54b | |
parent | 6997e6a7ab8ade12d1298d4a38ec1c155da02f16 (diff) | |
download | xine-lib-f89b6a72297eaee4c5b8ccc20639829e0f5f0313.tar.gz xine-lib-f89b6a72297eaee4c5b8ccc20639829e0f5f0313.tar.bz2 |
oss verbosity patch by Anders Wiehe
CVS patchset: 4495
CVS date: 2003/03/27 11:39:23
-rw-r--r-- | src/audio_out/audio_oss_out.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/audio_out/audio_oss_out.c b/src/audio_out/audio_oss_out.c index fac4816f4..6d38d51f6 100644 --- a/src/audio_out/audio_oss_out.c +++ b/src/audio_out/audio_oss_out.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_oss_out.c,v 1.87 2003/03/06 16:49:30 guenter Exp $ + * $Id: audio_oss_out.c,v 1.88 2003/03/27 11:39:23 siggi Exp $ * * 20-8-2001 First implementation of Audio sync and Audio driver separation. * Copyright (C) 2001 James Courtier-Dutton James@superbug.demon.co.uk @@ -929,11 +929,13 @@ static ao_driver_t *open_plugin (audio_driver_class_t *class_gen, const void *da NULL, 0, NULL, NULL)) { this->capabilities |= AO_CAP_MODE_A52; this->capabilities |= AO_CAP_MODE_AC5; - printf ("a/52-pass-through "); + if (class->xine->verbosity >= XINE_VERBOSITY_LOG) + printf ("a/52-pass-through "); } else - printf ("(a/52-pass-through not enabled in xine config)"); + if (class->xine->verbosity >= XINE_VERBOSITY_LOG) + printf ("(a/52-pass-through not enabled in xine config)"); } - + if (class->xine->verbosity >= XINE_VERBOSITY_LOG) printf ("\n"); |