summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPhilipp Hahn <pmhahn@users.sourceforge.net>2004-03-18 09:07:00 +0000
committerPhilipp Hahn <pmhahn@users.sourceforge.net>2004-03-18 09:07:00 +0000
commit5f1f4d9a077c5175a24a09f2c1f602c12e8e8f87 (patch)
tree620fca21374be2e37a1a7deb7f6e7cedb1bd34c2 /src
parentf25c00fae0a521ee929119d14dad4ff57c74291a (diff)
downloadxine-lib-5f1f4d9a077c5175a24a09f2c1f602c12e8e8f87.tar.gz
xine-lib-5f1f4d9a077c5175a24a09f2c1f602c12e8e8f87.tar.bz2
Fix more messages
CVS patchset: 6287 CVS date: 2004/03/18 09:07:00
Diffstat (limited to 'src')
-rw-r--r--src/audio_out/audio_oss_out.c6
-rw-r--r--src/audio_out/audio_sun_out.c4
-rw-r--r--src/demuxers/demux_asf.c4
3 files changed, 7 insertions, 7 deletions
diff --git a/src/audio_out/audio_oss_out.c b/src/audio_out/audio_oss_out.c
index c0733c53a..e91b68390 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.101 2004/03/04 16:06:03 valtri Exp $
+ * $Id: audio_oss_out.c,v 1.102 2004/03/18 09:07:00 pmhahn Exp $
*
* 20-8-2001 First implementation of Audio sync and Audio driver separation.
* Copyright (C) 2001 James Courtier-Dutton James@superbug.demon.co.uk
@@ -224,7 +224,7 @@ static int ao_oss_open(ao_driver_t *this_gen,
this->output_sample_rate = tmp;
this->output_sample_k_rate = this->output_sample_rate / 1000;
xprintf(this->xine, XINE_VERBOSITY_LOG,
- _("audio_oss_out: audio rate : %d requested, %d provided by device/sec\n"),
+ _("audio_oss_out: audio rate : %d requested, %d provided by device\n"),
this->input_sample_rate, this->output_sample_rate);
}
/*
@@ -747,7 +747,7 @@ static ao_driver_t *open_plugin (audio_driver_class_t *class_gen, const void *da
_("The audio device name is created by concatenating the "
"oss_device_name and the audio device number (eg /dev/sound/dsp2). "
"If you do not need a "
- "number, set to -1 (eg /dev/sound/dsp. "
+ "number, set to -1 (eg /dev/sound/dsp). "
"The range of this variable is -1 or 0-15."),
10, NULL, NULL);
if (devname_val == 0) {
diff --git a/src/audio_out/audio_sun_out.c b/src/audio_out/audio_sun_out.c
index 30bc9c387..000086614 100644
--- a/src/audio_out/audio_sun_out.c
+++ b/src/audio_out/audio_sun_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_sun_out.c,v 1.34 2003/12/14 22:13:22 siggi Exp $
+ * $Id: audio_sun_out.c,v 1.35 2004/03/18 09:07:00 pmhahn Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -438,7 +438,7 @@ static int ao_sun_open(ao_driver_t *this_gen,
this->audio_fd = open(this->audio_dev, O_WRONLY|O_NONBLOCK);
if(this->audio_fd < 0) {
xprintf(this->xine, XINE_VERBOSITY_LOG,
- _("audio_sun_out: Opening audio device %s failed: %s\n"), this->audio_dev, strerror(errno));
+ _("audio_sun_out: opening audio device %s failed: %s\n"), this->audio_dev, strerror(errno));
return 0;
}
diff --git a/src/demuxers/demux_asf.c b/src/demuxers/demux_asf.c
index ed7fa233b..5847ba300 100644
--- a/src/demuxers/demux_asf.c
+++ b/src/demuxers/demux_asf.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: demux_asf.c,v 1.150 2004/03/08 23:54:39 tmattern Exp $
+ * $Id: demux_asf.c,v 1.151 2004/03/18 09:07:00 pmhahn Exp $
*
* demultiplexer for asf streams
*
@@ -443,7 +443,7 @@ static int asf_read_header (demux_asf_t *this) {
* Parse the end of the header but do not demux the stream.
*/
xine_log(this->stream->xine, XINE_LOG_MSG,
- _("demux_asf: warning: The stream id=%d is encrypted\n."), stream_id);
+ _("demux_asf: warning: The stream id=%d is encrypted.\n"), stream_id);
_x_message(this->stream, XINE_MSG_ENCRYPTED_SOURCE,
_("Media stream scrambled/encrypted"), NULL);
this->mode = ASF_MODE_ENCRYPTED_CONTENT;