Cog/Frameworks/GME/vgmplay/chips/panning.h
2015-11-27 02:02:41 -08:00

13 lines
No EOL
327 B
C

/*
panning.h by Maxim in 2006
Implements "simple equal power" panning using sine distribution
I am not an expert on this stuff, but this is the best sounding of the methods I've tried
*/
#ifndef PANNING_H
#define PANNING_H
void calc_panning(float channels[2], int position);
void centre_panning(float channels[2]);
#endif