btcall_processor_dsp.h 750 B

123456789101112131415161718192021222324
  1. /*
  2. * Copyright (c) 2020, Actions Semi Co., Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef __BTCALL_PROCESSOR_DSP_H__
  7. #define __BTCALL_PROCESSOR_DSP_H__
  8. typedef struct hfp_dae_para {
  9. short pcm_debugmode; //0:上传pcm, 1:不上传;2:清0
  10. short hfp_connect_mod;// 0 没接通 1 接通
  11. short change_flag; //音效change标志
  12. short mic_channel; // 0: 左声道, 1: 右声道, 2: 双声道
  13. uint16_t speak_volume; //0-31级软音量
  14. short asrc_out; //0:out 0, 1:out1
  15. short reserve[16];
  16. char dae_para_info_array[512];
  17. char aec_para[296];
  18. uint16_t upstream_dae_enable:1;
  19. uint16_t downstream_dae_enable:1;
  20. } hfp_dae_para_t;
  21. #endif /* __BTCALL_PROCESSOR_DSP_H__ */