From 230d3c07ef6fca8fb08ae8f14235c56b535d7e64 Mon Sep 17 00:00:00 2001 From: Heiko Schaefer Date: Thu, 15 Nov 2001 17:11:20 +0000 Subject: small buffer size caused popping noises for me CVS patchset: 1046 CVS date: 2001/11/15 17:11:20 --- src/xine-engine/audio_decoder.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xine-engine/audio_decoder.c b/src/xine-engine/audio_decoder.c index 797059eb5..e9ea5941c 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.52 2001/11/13 21:47:59 heikos Exp $ + * $Id: audio_decoder.c,v 1.53 2001/11/15 17:11:20 heikos Exp $ * * * functions that implement audio decoding @@ -278,7 +278,7 @@ void audio_decoder_init (xine_t *this) { return; } - this->audio_fifo = fifo_buffer_new (20, 8192); + this->audio_fifo = fifo_buffer_new (50, 8192); this->audio_channel = -1; this->audio_channel_suggested = -1; this->audio_type = 0; -- cgit v1.2.3