2018-02-07 15:20:26 +00:00
|
|
|
#include "linux-speaker.h"
|
|
|
|
#include <pthread.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "globals.h"
|
|
|
|
|
|
|
|
#include "timeutil.h"
|
|
|
|
|
|
|
|
LinuxSpeaker::LinuxSpeaker()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
LinuxSpeaker::~LinuxSpeaker()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2019-02-28 18:25:48 +00:00
|
|
|
void LinuxSpeaker::begin()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-08-02 13:06:15 +00:00
|
|
|
void LinuxSpeaker::toggle(int64_t c)
|
2018-02-07 15:20:26 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-08-02 13:06:15 +00:00
|
|
|
void LinuxSpeaker::maintainSpeaker(int64_t c, uint64_t microseconds)
|
2018-02-07 15:20:26 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void LinuxSpeaker::beginMixing()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void LinuxSpeaker::mixOutput(uint8_t v)
|
|
|
|
{
|
|
|
|
}
|