Mercurial > hg > sv-dependency-builds
view src/portaudio/bindings/cpp/source/portaudiocpp/CFunCallbackStream.cxx @ 138:eb184393b244
Rebuild with DW2 exception handling to match Qt
author | Chris Cannam <cannam@all-day-breakfast.com> |
---|---|
date | Thu, 27 Oct 2016 10:26:57 +0100 |
parents | 8a15ff55d9af |
children |
line wrap: on
line source
#include "portaudiocpp/CFunCallbackStream.hxx" #include "portaudiocpp/StreamParameters.hxx" #include "portaudiocpp/Exception.hxx" namespace portaudio { CFunCallbackStream::CFunCallbackStream() { } CFunCallbackStream::CFunCallbackStream(const StreamParameters ¶meters, PaStreamCallback *funPtr, void *userData) { open(parameters, funPtr, userData); } CFunCallbackStream::~CFunCallbackStream() { try { close(); } catch (...) { // ignore all errors } } // ---------------------------------------------------------------------------------== void CFunCallbackStream::open(const StreamParameters ¶meters, PaStreamCallback *funPtr, void *userData) { PaError err = Pa_OpenStream(&stream_, parameters.inputParameters().paStreamParameters(), parameters.outputParameters().paStreamParameters(), parameters.sampleRate(), parameters.framesPerBuffer(), parameters.flags(), funPtr, userData); if (err != paNoError) { throw PaException(err); } } }