usynth

simple midi synth for sndio
git clone git://nsmpr.xyz/usynth.git
Log | Files | Refs

operator.h (190B)


      1 struct op_conf {
      2 	int16_t *waveform;
      3 	uint8_t gain;
      4 	double freq_multiplier;
      5 };
      6 
      7 struct op_state {
      8 	struct op_conf conf;
      9 	size_t p;
     10 };
     11 
     12 int16_t op_fetch(struct op_state*, size_t, int16_t);
     13