aiie/opencv/dummy-speaker.cpp

27 lines
285 B
C++
Raw Normal View History

#include "dummy-speaker.h"
2017-02-24 15:15:17 +00:00
#include <pthread.h>
DummySpeaker::DummySpeaker()
{
}
DummySpeaker::~DummySpeaker()
{
}
void DummySpeaker::toggle()
{
}
void DummySpeaker::maintainSpeaker(uint32_t c)
{
2017-02-24 15:15:17 +00:00
}
void DummySpeaker::beginMixing()
{
}
void DummySpeaker::mixOutput(uint8_t v)
{
}