diff audioio/AudioPortAudioTarget.cpp @ 80:448ff6e34b99

* Add wave file model method for reading more than one channel at once, avoiding ludicrously expensive backward seeks and double-reads when playing multi-channel files or using them as inputs to feature extraction plugins
author Chris Cannam
date Thu, 24 Jan 2008 14:35:43 +0000
parents 716e9d2f91c7
children 0948bf800422
line wrap: on
line diff
--- a/audioio/AudioPortAudioTarget.cpp	Thu Jan 24 11:03:59 2008 +0000
+++ b/audioio/AudioPortAudioTarget.cpp	Thu Jan 24 14:35:43 2008 +0000
@@ -48,7 +48,7 @@
 	return;
     }
 
-    m_bufferSize = 1024;
+    m_bufferSize = 2048;
     m_sampleRate = 44100;
     if (m_source && (m_source->getSourceSampleRate() != 0)) {
 	m_sampleRate = m_source->getSourceSampleRate();