Changeset 31
- Timestamp:
- 10/13/02 14:48:46 (6 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pa_proposals/trunk/016-UseStructsForOpenStreamParameters.html
r25 r31 41 41 int numChannels; 42 42 PaSampleFormat sampleFormat; 43 PaTime latency;43 PaTime suggestedLatency; 44 44 void *hostApiSpecificStreamInfo; 45 45 }PaStreamParameters; … … 96 96 inputParameters.numChannels = 2; 97 97 inputParameters.sampleFormat = paFloat32; 98 inputParameters. latency = Pa_GetDefaultLowInputLatency( inputParameters.device );98 inputParameters.suggestedlatency = Pa_GetDefaultLowInputLatency( inputParameters.device ); 99 99 inputParameters.hostApiSpecificStreamInfo = NULL; 100 100 </PRE>
