[Freeswitch-svn] [commit] r11306 - freeswitch/trunk/src/mod/endpoints/mod_portaudio
FreeSWITCH SVN
andrew at freeswitch.org
Mon Jan 19 22:25:06 PST 2009
Author: andrew
Date: Tue Jan 20 00:25:06 2009
New Revision: 11306
Log:
defaultLowOutputLatency -> defaultLowInputLatency (not that it matters, hopefully)
Modified:
freeswitch/trunk/src/mod/endpoints/mod_portaudio/mod_portaudio.c
Modified: freeswitch/trunk/src/mod/endpoints/mod_portaudio/mod_portaudio.c
==============================================================================
--- freeswitch/trunk/src/mod/endpoints/mod_portaudio/mod_portaudio.c (original)
+++ freeswitch/trunk/src/mod/endpoints/mod_portaudio/mod_portaudio.c Tue Jan 20 00:25:06 2009
@@ -1170,7 +1170,7 @@
inputParameters.device = i;
inputParameters.channelCount = deviceInfo->maxInputChannels;
inputParameters.sampleFormat = paInt16;
- inputParameters.suggestedLatency = deviceInfo->defaultLowOutputLatency; /* ignored by Pa_IsFormatSupported() */
+ inputParameters.suggestedLatency = deviceInfo->defaultLowInputLatency; /* ignored by Pa_IsFormatSupported() */
inputParameters.hostApiSpecificStreamInfo = NULL;
outputParameters.device = i;
More information about the Freeswitch-svn
mailing list