mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 08:04:01 +02:00
Merge pull request #871 from birarda/master
fix for logitech USB reporting only one channel
This commit is contained in:
commit
11311f33ba
1 changed files with 1 additions and 1 deletions
|
@ -407,7 +407,7 @@ Audio::Audio(Oscilloscope* scope, int16_t initialJitterBufferSamples) :
|
|||
return;
|
||||
}
|
||||
|
||||
inputParameters.channelCount = 2; // Stereo input
|
||||
inputParameters.channelCount = 1; // Stereo input
|
||||
inputParameters.sampleFormat = (paInt16 | paNonInterleaved);
|
||||
inputParameters.suggestedLatency = Pa_GetDeviceInfo(inputParameters.device)->defaultLowInputLatency;
|
||||
inputParameters.hostApiSpecificStreamInfo = NULL;
|
||||
|
|
Loading…
Reference in a new issue