blob: f28c9a9f8ff5dbde74f458061e00c8763e9b1dec [file] [log] [blame]
#ifndef __H_ACM_PARAM__
#define __H_ACM_PARAM__
#define PATH_LEN 30
typedef enum {
ACM_MSA_GAIN,
ACM_MSA_GAIN_MODE
} ACM_ParameterId;
typedef enum {
MSA_GAIN_NORMAL_MODE = 0,
MSA_GAIN_EXTRA_MODE = 1
} ACM_MsaGainMode;
typedef struct tag_Msa_Gain {
const char *out_path_name;
const char *path_name;
unsigned char volume;
signed char gain, wbGain;
signed char sidetone_gain, sidetone_wbGain;
unsigned char path_direction;
} ACM_MsaGain;
#endif