gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

audioTypes.h (424B)


      1 #pragma once
      2 
      3 #include <array>
      4 
      5 #include "dsp56kEmu/types.h"
      6 
      7 namespace synthLib
      8 {
      9 	template<typename T> using TAudioInputsT		= std::array<const T*,4>;
     10 	template<typename T> using TAudioOutputsT		= std::array<T*,12>;
     11 
     12 	using TAudioInputs		= TAudioInputsT<float>;
     13 	using TAudioOutputs		= TAudioOutputsT<float>;
     14 	using TAudioInputsInt	= TAudioInputsT<dsp56k::TWord>;
     15 	using TAudioOutputsInt	= TAudioOutputsT<dsp56k::TWord>;
     16 }