/*******************************************************
*           SoundBooster_DRC_classic.h                 *
********************************************************/

#include "config.h"

#ifndef VC_PROJ
#include <xtensa/tie/xt_hifi2.h>
#endif

#define MAX_KNEE_LEN 5


#define Q_DRC_DB 23

void SoundBooster_DRC_Init( int Fs, int chnum );

void SoundBooster_DRC_SetPar(  int Mode,
	int limit_gain,
	int Attack_Time,
	int Release_Time,
	int Look_Forward_Time);

void SoundBooster_DRC_Exe(int *in_out1,int *in_out2, int n);

const char* SoundBooster_DRC_Get_Version();


