1 /***************************************************************************
2  *                                                                         *
3  *   This program is free software; you can redistribute it and/or modify  *
4  *   it under the terms of the GNU General Public License as published by  *
5  *   the Free Software Foundation; either version 2 of the License, or     *
6  *   (at your option) any later version.                                   *
7  *                                                                         *
8  ***************************************************************************/
9 
10 
11 #ifndef LIMITER_PARAM_H
12 #define LIMITER_PARAM_H
13 #define DRC_WINDOW 100
14 typedef struct
15 {
16   uint32_t mUseGain;
17   double   mFloor;
18   double   mAttackTime;
19   double   mDecayTime;
20   double   mRatio;
21   double   mThresholdDB;
22    // double   mGainDB;
23 }DRCparam;
24 
25 #endif
26