mirror of https://github.com/AxioDL/amuse.git
55 lines
1.3 KiB
C++
55 lines
1.3 KiB
C++
#ifndef __AMUSE_IBACKENDVOICE_HPP__
|
|
#define __AMUSE_IBACKENDVOICE_HPP__
|
|
|
|
namespace amuse
|
|
{
|
|
|
|
/** Same channel enums from boo, used for matrix coefficient table index */
|
|
enum class AudioChannel
|
|
{
|
|
FrontLeft,
|
|
FrontRight,
|
|
RearLeft,
|
|
RearRight,
|
|
FrontCenter,
|
|
LFE,
|
|
SideLeft,
|
|
SideRight,
|
|
Unknown = 0xff
|
|
};
|
|
|
|
/** Same structure from boo, used to represent interleaved speaker layout */
|
|
struct ChannelMap
|
|
{
|
|
unsigned m_channelCount = 0;
|
|
AudioChannel m_channels[8] = {};
|
|
};
|
|
|
|
/**
|
|
* @brief Client-implemented voice instance
|
|
*/
|
|
class IBackendVoice
|
|
{
|
|
public:
|
|
virtual ~IBackendVoice() = default;
|
|
|
|
/** Set new sample rate into platform voice (may result in artifacts while playing) */
|
|
virtual void resetSampleRate(double sampleRate)=0;
|
|
|
|
/** Set channel-gains for audio source (AudioChannel enum for array index) */
|
|
virtual void setMatrixCoefficients(const float coefs[8])=0;
|
|
|
|
/** Called by client to dynamically adjust the pitch of voices with dynamic pitch enabled */
|
|
virtual void setPitchRatio(double ratio)=0;
|
|
|
|
/** Instructs platform to begin consuming sample data; invoking callback as needed */
|
|
virtual void start()=0;
|
|
|
|
/** Instructs platform to stop consuming sample data */
|
|
virtual void stop()=0;
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __AMUSE_IBACKENDVOICE_HPP__
|