msm_audio_amrwbplus.h 625 B

123456789101112131415161718
  1. #ifndef _UAPI_MSM_AUDIO_AMR_WB_PLUS_H
  2. #define _UAPI_MSM_AUDIO_AMR_WB_PLUS_H
  3. #define AUDIO_GET_AMRWBPLUS_CONFIG_V2 _IOR(AUDIO_IOCTL_MAGIC, \
  4. (AUDIO_MAX_COMMON_IOCTL_NUM+2), struct msm_audio_amrwbplus_config_v2)
  5. #define AUDIO_SET_AMRWBPLUS_CONFIG_V2 _IOW(AUDIO_IOCTL_MAGIC, \
  6. (AUDIO_MAX_COMMON_IOCTL_NUM+3), struct msm_audio_amrwbplus_config_v2)
  7. struct msm_audio_amrwbplus_config_v2 {
  8. unsigned int size_bytes;
  9. unsigned int version;
  10. unsigned int num_channels;
  11. unsigned int amr_band_mode;
  12. unsigned int amr_dtx_mode;
  13. unsigned int amr_frame_fmt;
  14. unsigned int amr_lsf_idx;
  15. };
  16. #endif /* _UAPI_MSM_AUDIO_AMR_WB_PLUS_H */