mirror of
https://github.com/signalwire/freeswitch.git
synced 2026-07-09 13:51:53 +00:00
5bea2ea06c
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@5738 d0543943-73ff-0310-b7d9-9358b9ac24b2
21 lines
350 B
C++
21 lines
350 B
C++
#include "portaudiocpp/CallbackStream.hxx"
|
|
|
|
namespace portaudio
|
|
{
|
|
CallbackStream::CallbackStream()
|
|
{
|
|
}
|
|
|
|
CallbackStream::~CallbackStream()
|
|
{
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------------
|
|
|
|
double CallbackStream::cpuLoad() const
|
|
{
|
|
return Pa_GetStreamCpuLoad(stream_);
|
|
}
|
|
|
|
} // namespace portaudio
|