Mercurial > hg > svapp
comparison audioio/AudioPortAudioTarget.cpp @ 250:0136555495ae integration_library
Merge from the default branch
author | Chris Cannam |
---|---|
date | Tue, 11 Oct 2011 11:16:38 +0100 |
parents | 7f08a7e35b3c a9f1850b873d |
children |
comparison
equal
deleted
inserted
replaced
249:7f08a7e35b3c | 250:0136555495ae |
---|---|
57 | 57 |
58 PaStreamParameters op; | 58 PaStreamParameters op; |
59 op.device = Pa_GetDefaultOutputDevice(); | 59 op.device = Pa_GetDefaultOutputDevice(); |
60 op.channelCount = 2; | 60 op.channelCount = 2; |
61 op.sampleFormat = paFloat32; | 61 op.sampleFormat = paFloat32; |
62 op.suggestedLatency = 0.2;//1.0; | 62 op.suggestedLatency = 0.2; |
63 op.hostApiSpecificStreamInfo = 0; | 63 op.hostApiSpecificStreamInfo = 0; |
64 err = Pa_OpenStream(&m_stream, 0, &op, m_sampleRate, | 64 err = Pa_OpenStream(&m_stream, 0, &op, m_sampleRate, |
65 paFramesPerBufferUnspecified, | 65 paFramesPerBufferUnspecified, |
66 paNoFlag, processStatic, this); | 66 paNoFlag, processStatic, this); |
67 | 67 |