Mercurial > hg > sv-dependency-builds
view src/portaudio/bindings/cpp/source/portaudiocpp/CallbackInterface.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/CallbackInterface.hxx" namespace portaudio { namespace impl { ////// /// Adapts any CallbackInterface object to a C-callable function (ie this function). A /// pointer to the object should be passed as ``userData'' when setting up the callback. ////// int callbackInterfaceToPaCallbackAdapter(const void *inputBuffer, void *outputBuffer, unsigned long numFrames, const PaStreamCallbackTimeInfo *timeInfo, PaStreamCallbackFlags statusFlags, void *userData) { CallbackInterface *cb = static_cast<CallbackInterface *>(userData); return cb->paCallbackFun(inputBuffer, outputBuffer, numFrames, timeInfo, statusFlags); } } // namespace impl } // namespace portaudio