view src/portaudio_20161030/bindings/cpp/source/portaudiocpp/CallbackInterface.cxx @ 168:ceec0dd9ec9c

Replace these with versions built using an older toolset (so as to avoid ABI compatibilities when linking on Ubuntu 14.04 for packaging purposes)
author Chris Cannam <cannam@all-day-breakfast.com>
date Fri, 07 Feb 2020 11:51:13 +0000
parents 59a8758c56b1
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