Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenequalizer.c
Go to the documentation of this file.
00001 /* 00002 equalizer.c: equalizer settings 00003 00004 copyright ?-2006 by the mpg123 project - free software under the terms of the LGPL 2.1 00005 see COPYING and AUTHORS files in distribution or http://mpg123.org 00006 initially written by Michael Hipp 00007 */ 00008 00009 00010 #include "mpg123lib_intern.h" 00011 00012 void do_equalizer(real *bandPtr,int channel, real equalizer[2][32]) 00013 { 00014 int i; 00015 for(i=0;i<32;i++) 00016 bandPtr[i] = REAL_MUL(bandPtr[i], equalizer[channel][i]); 00017 } Generated on Sat May 26 2012 04:33:00 for ReactOS by
1.7.6.1
|