11 lines
145 B
C
11 lines
145 B
C
#ifndef _AUDIO_DRC_COMMON_H_
|
|
#define _AUDIO_DRC_COMMON_H_
|
|
|
|
struct threshold_group {
|
|
float in_threshold;
|
|
float out_threshold;
|
|
};
|
|
|
|
#endif
|
|
|