diff options
Diffstat (limited to 'src/demuxers/demux_smjpeg.c')
-rw-r--r-- | src/demuxers/demux_smjpeg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/demuxers/demux_smjpeg.c b/src/demuxers/demux_smjpeg.c index d9cc2fa0b..4d267e95e 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.4 2002/07/17 18:17:49 miguelfreitas Exp $ + * $Id: demux_smjpeg.c,v 1.5 2002/07/19 14:07:38 pmhahn Exp $ */ #ifdef HAVE_CONFIG_H @@ -412,7 +412,7 @@ this->video_type = BUF_VIDEO_JPEG; this->audio_sample_rate, this->audio_bits, this->audio_channels, - (this->audio_channels == 1) ? _("channel") : _("channels")); + ngettext("channel", "channels", this->audio_channels)); /* send start buffers */ xine_demux_control_start(this->xine); |