diff options
author | Heiko Schaefer <heikos@users.sourceforge.net> | 2001-11-15 17:11:20 +0000 |
---|---|---|
committer | Heiko Schaefer <heikos@users.sourceforge.net> | 2001-11-15 17:11:20 +0000 |
commit | 230d3c07ef6fca8fb08ae8f14235c56b535d7e64 (patch) | |
tree | f355cf28af51d3966cee8b744f419303da2d6a5a | |
parent | 6298765ecc41284e9c6f42921bb54ffac386b1ba (diff) | |
download | xine-lib-230d3c07ef6fca8fb08ae8f14235c56b535d7e64.tar.gz xine-lib-230d3c07ef6fca8fb08ae8f14235c56b535d7e64.tar.bz2 |
small buffer size caused popping noises for me
CVS patchset: 1046
CVS date: 2001/11/15 17:11:20
-rw-r--r-- | src/xine-engine/audio_decoder.c | 4 |
1 files 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; |