00001 #ifndef AUDIOOUTPUTDOWNMIX
00002 #define AUDIOOUTPUTDOWNMIX
00003
00004 class AudioOutputDownmix
00005 {
00006 public:
00007 static int DownmixFrames(int channels_in, int channels_out,
00008 float *dst, float *src, int frames);
00009 };
00010
00011 #endif