summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/demuxers/demux_smjpeg.c6
-rw-r--r--src/demuxers/demux_wav.c6
2 files changed, 6 insertions, 6 deletions
diff --git a/src/demuxers/demux_smjpeg.c b/src/demuxers/demux_smjpeg.c
index 860cf48a2..fa26f663e 100644
--- a/src/demuxers/demux_smjpeg.c
+++ b/src/demuxers/demux_smjpeg.c
@@ -21,7 +21,7 @@
* For more information on the SMJPEG file format, visit:
* http://www.lokigames.com/development/smjpeg.php3
*
- * $Id: demux_smjpeg.c,v 1.1 2002/07/07 01:24:40 tmmm Exp $
+ * $Id: demux_smjpeg.c,v 1.2 2002/07/10 06:28:19 pmhahn Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -409,7 +409,7 @@ this->video_type = BUF_VIDEO_JPEG;
this->bih.biHeight);
if (this->audio_type)
xine_log (this->xine, XINE_LOG_FORMAT,
- _("demux_smjpeg: '%c%c%c%c' audio @ %d Hz, %d bits, %d channel%c\n"),
+ _("demux_smjpeg: '%c%c%c%c' audio @ %d Hz, %d bits, %d %s\n"),
*((char *)&this->audio_codec + 0),
*((char *)&this->audio_codec + 1),
*((char *)&this->audio_codec + 2),
@@ -417,7 +417,7 @@ this->video_type = BUF_VIDEO_JPEG;
this->audio_sample_rate,
this->audio_bits,
this->audio_channels,
- (this->audio_channels == 1) ? 0 : 's');
+ (this->audio_channels == 1) ? _("channel") : _("channels"));
/* send start buffers */
xine_demux_control_start(this->xine);
diff --git a/src/demuxers/demux_wav.c b/src/demuxers/demux_wav.c
index 0dda4997c..ea0095796 100644
--- a/src/demuxers/demux_wav.c
+++ b/src/demuxers/demux_wav.c
@@ -20,7 +20,7 @@
* MS WAV File Demuxer by Mike Melanson (melanson@pcisys.net)
* based on WAV specs that are available far and wide
*
- * $Id: demux_wav.c,v 1.2 2002/07/09 02:41:29 miguelfreitas Exp $
+ * $Id: demux_wav.c,v 1.3 2002/07/10 06:28:19 pmhahn Exp $
*
*/
@@ -314,12 +314,12 @@ static int demux_wav_start (demux_plugin_t *this_gen,
/* print vital stats */
xine_log(this->xine, XINE_LOG_FORMAT,
- _("demux_wav: format 0x%X audio, %d Hz, %d bits/sample, %d channel%c\n"),
+ _("demux_wav: format 0x%X audio, %d Hz, %d bits/sample, %d %s\n"),
this->wave->wFormatTag,
this->wave->nSamplesPerSec,
this->wave->wBitsPerSample,
this->wave->nChannels,
- (this->wave->nChannels == 1) ? ' ' : 's');
+ (this->wave->nChannels == 1) ? _("channel") : _("channels"));
xine_log(this->xine, XINE_LOG_FORMAT,
_("demux_wav: running time = %d min, %d sec\n"),
this->data_size / this->wave->nAvgBytesPerSec / 60,