summaryrefslogtreecommitdiff
path: root/src/xine-engine/audio_decoder.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/xine-engine/audio_decoder.c')
-rw-r--r--src/xine-engine/audio_decoder.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/xine-engine/audio_decoder.c b/src/xine-engine/audio_decoder.c
index 05642fc84..1b4c68457 100644
--- a/src/xine-engine/audio_decoder.c
+++ b/src/xine-engine/audio_decoder.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_decoder.c,v 1.127 2004/03/28 19:51:56 mroi Exp $
+ * $Id: audio_decoder.c,v 1.128 2004/04/26 17:50:12 mroi Exp $
*
*
* functions that implement audio decoding
@@ -449,9 +449,12 @@ void _x_audio_decoder_init (xine_stream_t *stream) {
num_buffers = stream->xine->config->register_num (stream->xine->config,
"audio.num_buffers",
230,
- "number of audio buffers to allocate (higher values mean smoother playback but higher latency)",
- NULL, 20,
- NULL, NULL);
+ _("number of audio buffers"),
+ _("The number of audio buffers (each is 8k in size) "
+ "xine uses in its internal queue. Higher values "
+ "mean smoother playback for unreliable inputs, but "
+ "also increased latency and memory comsumption."),
+ 20, NULL, NULL);
stream->audio_fifo = _x_fifo_buffer_new (num_buffers, 8192);
stream->audio_channel_user = -1;