Mercurial > hg > sv-dependency-builds
view src/portaudio/bindings/cpp/source/portaudiocpp/CallbackInterface.cxx @ 118:a8541380d3e0
Ah, we've already done this. Merge, taking everything from the branch with the older commits.
author | Chris Cannam <cannam@all-day-breakfast.com> |
---|---|
date | Fri, 04 Jul 2014 10:37:37 +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