diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-03-18 22:45:53 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-03-18 22:45:53 +0000 |
commit | 96d4ac01bc64b3c5f725d553387eb622da64a171 (patch) | |
tree | 615bba08f5036c2b96eb21742c141969083c2c3e /src/xine-engine/audio_out.c | |
parent | 4c688a8804f8205f7e3d49b2be44eba9a57fff6b (diff) | |
download | xine-lib-96d4ac01bc64b3c5f725d553387eb622da64a171.tar.gz xine-lib-96d4ac01bc64b3c5f725d553387eb622da64a171.tar.bz2 |
make asf demuxer handle audio-only streams (important for webradios\! #-))) and introducing the #ifdef LOG concept in more files (I really start to like that concept, much better than xprintf)
CVS patchset: 1589
CVS date: 2002/03/18 22:45:53
Diffstat (limited to 'src/xine-engine/audio_out.c')
-rw-r--r-- | src/xine-engine/audio_out.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xine-engine/audio_out.c b/src/xine-engine/audio_out.c index df2fdc1b1..a30d99ab2 100644 --- a/src/xine-engine/audio_out.c +++ b/src/xine-engine/audio_out.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2000, 2001 the xine project + * Copyright (C) 2000-2002 the xine project * * This file is part of xine, a free video player. * @@ -17,7 +17,7 @@ * along with self program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: audio_out.c,v 1.46 2002/03/16 13:25:05 esnel Exp $ + * $Id: audio_out.c,v 1.47 2002/03/18 22:45:53 guenter Exp $ * * 22-8-2001 James imported some useful AC3 sections from the previous alsa driver. * (c) 2001 Andy Lo A Foe <andy@alsaplayer.org> @@ -389,7 +389,7 @@ static int ao_open(ao_instance_t *this, int output_sample_rate, err; xine_log (this->xine, XINE_LOG_FORMAT, - "stream audio format is %d kHz sampling rate, %d bits. mode is %d.\n", + "audio_out: stream audio format is %d kHz sampling rate, %d bits. mode is %d.\n", rate, bits, mode); if ((output_sample_rate=this->driver->open(this->driver,bits,(this->force_rate ? this->force_rate : rate),mode)) == 0) { |