• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #ifndef _UAPI_MSM_AUDIO_AMRWB_H
2 #define _UAPI_MSM_AUDIO_AMRWB_H
3 
4 #include <linux/msm_audio.h>
5 
6 #define AUDIO_GET_AMRWB_ENC_CONFIG _IOW(AUDIO_IOCTL_MAGIC, \
7 	(AUDIO_MAX_COMMON_IOCTL_NUM+0), \
8 	struct msm_audio_amrwb_enc_config)
9 #define AUDIO_SET_AMRWB_ENC_CONFIG  _IOR(AUDIO_IOCTL_MAGIC, \
10 	(AUDIO_MAX_COMMON_IOCTL_NUM+1), \
11 	struct msm_audio_amrwb_enc_config)
12 
13 struct msm_audio_amrwb_enc_config {
14 	uint32_t band_mode;
15 	uint32_t dtx_enable;
16 	uint32_t frame_format;
17 };
18 #endif /* _UAPI_MSM_AUDIO_AMRWB_H */
19