lowercasing filenames, part2
[picodrive.git] / Pico / sound / mix.h
1
2 //void mix_32_to_32(int *dest, int *src, int count);
3 void mix_16h_to_32(int *dest, short *src, int count);
4 void mix_16h_to_32_s1(int *dest, short *src, int count);
5 void mix_16h_to_32_s2(int *dest, short *src, int count);
6 void mix_32_to_16l_stereo(short *dest, int *src, int count);
7 void mix_32_to_16_mono(short *dest, int *src, int count);
8
9 extern int mix_32_to_16l_level;
10 void mix_32_to_16l_stereo_lvl(short *dest, int *src, int count);