]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
defaultLowOutputLatency -> defaultLowInputLatency (not that it matters, hopefully)
authorAndrew Thompson <andrew@hijacked.us>
Tue, 20 Jan 2009 06:25:06 +0000 (06:25 +0000)
committerAndrew Thompson <andrew@hijacked.us>
Tue, 20 Jan 2009 06:25:06 +0000 (06:25 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@11306 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/endpoints/mod_portaudio/mod_portaudio.c

index 9d301a5f536fea3bbe8c00d28e4c5f4d6b976cba..e36bfb46f03fa5887faed96f453e378a10e40ff4 100644 (file)
@@ -1170,7 +1170,7 @@ static int dump_info(int verbose)
                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;