initial driver entry point

This commit is contained in:
Jack Andersen
2016-05-08 21:22:58 -10:00
parent 6e692c7a89
commit 2b7dc66c2a
14 changed files with 182 additions and 61 deletions

View File

@@ -17,4 +17,20 @@ Submix::Submix(Engine& engine, Submix* smx)
m_submix->m_activeSubmixes.insert(this);
}
bool Submix::canApplyEffect() const
{
}
void Submix::applyEffect(int16_t* audio, const ChannelMap& chanMap, double sampleRate) const
{
}
void Submix::applyEffect(int32_t* audio, const ChannelMap& chanMap, double sampleRate) const
{
}
void Submix::applyEffect(float* audio, const ChannelMap& chanMap, double sampleRate) const
{
}
}