changeset 199:c036fee668fb

remove safety margin to ring buffers because it introduces a bug with the "detected beats" layer (changing the sound)
author lbajardsilogic
date Wed, 26 Dec 2007 09:29:30 +0000
parents de398af88bd3
children 987ff9c8b7c3
files sv/audioio/AudioCallbackPlaySource.cpp
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/sv/audioio/AudioCallbackPlaySource.cpp	Thu Dec 20 08:49:52 2007 +0000
+++ b/sv/audioio/AudioCallbackPlaySource.cpp	Wed Dec 26 09:29:30 2007 +0000
@@ -33,8 +33,8 @@
 //#define DEBUG_AUDIO_PLAY_SOURCE 1
 //#define DEBUG_AUDIO_PLAY_SOURCE_PLAYING 1
 
-//const size_t AudioCallbackPlaySource::m_ringBufferSize = 131071;
-const size_t AudioCallbackPlaySource::m_ringBufferSize = 1764000;
+const size_t AudioCallbackPlaySource::m_ringBufferSize = 131071;
+//const size_t AudioCallbackPlaySource::m_ringBufferSize = 1764000;
 
 AudioCallbackPlaySource::AudioCallbackPlaySource(ViewManager *manager) :
     m_viewManager(manager),