audio_system.h 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433
  1. /*
  2. * Copyright (c) 2016 Actions Semi Co., Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file audio system api
  8. * @brief
  9. */
  10. #ifndef __AUDIO_SYSTEM_H__
  11. #define __AUDIO_SYSTEM_H__
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. #include <stream.h>
  16. /**
  17. * @defgroup audio_system_apis Auido System APIs
  18. * @ingroup media_system_apis
  19. * @{
  20. */
  21. typedef enum {
  22. AUDIO_STREAM_DEFAULT = 1,
  23. AUDIO_STREAM_MUSIC,
  24. AUDIO_STREAM_LOCAL_MUSIC,
  25. AUDIO_STREAM_TTS,
  26. AUDIO_STREAM_VOICE,
  27. AUDIO_STREAM_LINEIN,
  28. AUDIO_STREAM_LINEIN_MIX,
  29. AUDIO_STREAM_SUBWOOFER,
  30. AUDIO_STREAM_ASR,
  31. AUDIO_STREAM_AI,
  32. AUDIO_STREAM_USOUND,
  33. AUDIO_STREAM_USOUND_MIX,
  34. AUDIO_STREAM_USPEAKER,
  35. AUDIO_STREAM_I2SRX_IN,
  36. AUDIO_STREAM_SPDIF_IN,
  37. AUDIO_STREAM_GENERATE_IN,
  38. AUDIO_STREAM_GENERATE_OUT,
  39. AUDIO_STREAM_LOCAL_RECORD,
  40. AUDIO_STREAM_GMA_RECORD,
  41. AUDIO_STREAM_BACKGROUND_RECORD,
  42. AUDIO_STREAM_MIC_IN,
  43. AUDIO_STREAM_FM,
  44. AUDIO_STREAM_TWS,
  45. AUDIO_STREAM_TIP,
  46. }audio_stream_type_e;
  47. typedef enum {
  48. AUDIO_MODE_DEFAULT = 0,
  49. AUDIO_MODE_MONO, //mono->left mono->right
  50. AUDIO_MODE_STEREO, //left->left right->right
  51. }audio_mode_e;
  52. typedef enum {
  53. AUDIO_STREAM_TRACK = 1,
  54. AUDIO_STREAM_RECORD,
  55. }audio_stream_mode_e;
  56. typedef enum {
  57. AUDIO_FORMAT_PCM_8_BIT = 0,
  58. AUDIO_FORMAT_PCM_16_BIT,
  59. AUDIO_FORMAT_PCM_24_BIT,
  60. AUDIO_FORMAT_PCM_32_BIT,
  61. }audio_format_e;
  62. /**
  63. ** aps changer mode
  64. **/
  65. typedef enum {
  66. /* audjust by audio pll*/
  67. APS_LEVEL_AUDIOPLL = 0,
  68. /* audjust by asrc*/
  69. APS_LEVEL_ASRC,
  70. APS_MODE_MAX,
  71. } aps_level_mode_e;
  72. /**
  73. * @cond INTERNAL_HIDDEN
  74. */
  75. #define MIN_WRITE_SAMPLES 1 * 1024
  76. #define MAX_AUDIO_TRACK_NUM 1
  77. #define MAX_AUDIO_RECORD_NUM 2
  78. #define MAX_AUDIO_DEVICE_NUM 1
  79. #define MAX_VOLUME_VALUE 2
  80. #define MIN_VOLUME_VALUE 1
  81. #define DEFAULT_VOLUME 5
  82. struct audio_track_t {
  83. uint8_t stream_type;
  84. uint8_t audio_format;
  85. uint8_t channels;
  86. uint8_t channel_type;
  87. uint8_t channel_id;
  88. uint8_t channel_mode;
  89. uint8_t sample_rate;
  90. uint8_t frame_size;
  91. uint8_t flushed;
  92. uint8_t muted:1;
  93. uint8_t stared:1;
  94. uint8_t waitto_start:1;
  95. /**debug flag*/
  96. uint8_t dump_pcm:1;
  97. uint8_t fill_zero:1;
  98. uint8_t fade_mode:2;
  99. uint8_t dsp_fifo_src:1;
  100. uint16_t volume;
  101. uint32_t output_sample_rate_hz;
  102. uint16_t pcm_frame_size;
  103. uint8_t *pcm_frame_buff;
  104. io_stream_t audio_stream;
  105. io_stream_t mix_stream;
  106. uint8_t mix_sample_rate;
  107. uint8_t mix_channels;
  108. /** audio hal handle*/
  109. void *audio_handle;
  110. void (*event_cb)(uint8_t, void *);
  111. void *user_data;
  112. /* For tws sync fill samples */
  113. int compensate_samples;
  114. int fill_cnt;
  115. /* resample */
  116. void *res_handle;
  117. int res_in_samples;
  118. int res_out_samples;
  119. int res_remain_samples;
  120. int16_t *res_in_buf[2];
  121. int16_t *res_out_buf[2];
  122. /* fade in/out */
  123. void *fade_handle;
  124. /* mix */
  125. void *mix_handle;
  126. uint64_t total_samples_filled;
  127. int32_t sample_fix;
  128. };
  129. #define AUDIO_ADC_NUM (4)
  130. typedef struct {
  131. int16_t ch_gain[AUDIO_ADC_NUM];
  132. } audio_input_gain;
  133. struct audio_record_t {
  134. uint8_t stream_type;
  135. uint8_t audio_format;
  136. uint8_t audio_mode;
  137. uint8_t channel_type;
  138. uint8_t channel_id;
  139. uint8_t channel_mode;
  140. uint8_t sample_rate;
  141. uint8_t output_sample_rate;
  142. uint8_t frame_size;
  143. uint8_t muted:1;
  144. uint8_t paused:1;
  145. uint8_t first_frame:1;
  146. /**debug flag*/
  147. uint8_t dump_pcm:1;
  148. uint8_t fill_zero:1;
  149. uint8_t reload_buff_alloced:1;
  150. uint8_t drop_cnt:2;
  151. uint8_t printk_cnt;
  152. int16_t adc_gain;
  153. int16_t input_gain;
  154. uint16_t volume;
  155. uint16_t pcm_buff_size;
  156. uint8_t *pcm_buff;
  157. /* block to save adc pcm data if playback no start yet, 0: no block, 1: block */
  158. uint16_t *play_flag;
  159. /** audio hal handle*/
  160. void *audio_handle;
  161. io_stream_t audio_stream;
  162. };
  163. struct audio_system_t {
  164. os_mutex audio_system_mutex;
  165. struct audio_track_t *audio_track_pool[MAX_AUDIO_TRACK_NUM];
  166. struct audio_record_t *audio_record_pool[MAX_AUDIO_RECORD_NUM];
  167. struct audio_device_t *audio_device_pool[MAX_AUDIO_DEVICE_NUM];
  168. uint8_t audio_track_num;
  169. uint8_t audio_record_num;
  170. bool microphone_muted;
  171. uint8_t output_sample_rate;
  172. uint8_t capture_output_sample_rate;
  173. bool master_muted;
  174. uint8_t master_volume;
  175. uint8_t tts_volume;
  176. uint8_t music_volume;
  177. uint8_t voice_volume;
  178. uint8_t linein_volume;
  179. uint8_t fm_volume;
  180. uint8_t i2srx_in_volume;
  181. uint8_t mic_in_volume;
  182. uint8_t spidf_in_volume;
  183. uint8_t usound_volume;
  184. uint8_t lcmusic_volume;
  185. uint8_t max_volume;
  186. uint8_t min_volume;
  187. };
  188. /** cace info ,used for cache stream */
  189. typedef struct
  190. {
  191. uint8_t audio_type;
  192. uint8_t audio_mode;
  193. uint8_t channel_mode;
  194. uint8_t stream_start:1;
  195. uint8_t dma_start:1;
  196. uint8_t dma_reload:1;
  197. uint8_t pcm_buff_owner:1;
  198. uint8_t data_finished:4;
  199. uint16_t dma_send_len;
  200. uint16_t pcm_frame_size;
  201. struct acts_ringbuf *pcm_buff;
  202. /**pcm cache*/
  203. io_stream_t pcm_stream;
  204. } audio_info_t;
  205. typedef enum
  206. {
  207. APS_OPR_SET = (1 << 0),
  208. APS_OPR_ADJUST = (1 << 1),
  209. APS_OPR_FAST_SET = (1 << 2),
  210. }aps_ops_type_e;
  211. typedef enum
  212. {
  213. APS_STATUS_DEC,
  214. APS_STATUS_INC,
  215. APS_STATUS_DEFAULT,
  216. }aps_status_e;
  217. typedef struct {
  218. uint8_t current_level;
  219. uint8_t dest_level;
  220. uint8_t aps_status;
  221. uint8_t aps_mode;
  222. uint8_t aps_min_level;
  223. uint8_t aps_max_level;
  224. uint8_t aps_default_level;
  225. uint8_t role;
  226. uint8_t duration;
  227. uint8_t need_aps:1;
  228. uint16_t aps_reduce_water_mark;
  229. uint16_t aps_increase_water_mark;
  230. #ifdef CONFIG_SNOOP_LINK_TWS
  231. uint16_t first_pkt_num;
  232. #endif
  233. struct audio_track_t *audio_track;
  234. void *tws_observer;
  235. }aps_monitor_info_t;
  236. /**
  237. * INTERNAL_HIDDEN @endcond
  238. */
  239. /**
  240. * @brief set audio system output sample rate
  241. *
  242. * @details This routine provides to set audio system output sample rate,
  243. * if set audio system output sample rate, all out put stream may resample to
  244. * the target sample rate
  245. *
  246. * @param value sample rate
  247. *
  248. * @return 0 excute successed , others failed
  249. */
  250. int audio_system_set_output_sample_rate(int value);
  251. /**
  252. * @brief get audio system output sample rate
  253. *
  254. * @details This routine provides to get audio system output sample rate,
  255. *
  256. * @return value of sample rate
  257. */
  258. int audio_system_get_output_sample_rate(void);
  259. /**
  260. * @brief set audio system master volume
  261. *
  262. * @details This routine provides to set audio system master volume
  263. *
  264. * @param value volume value
  265. *
  266. * @return 0 excute successed , others failed
  267. */
  268. int audio_system_set_master_volume(int value);
  269. /**
  270. * @brief get audio system master volume
  271. *
  272. * @details This routine provides to get audio system master volume
  273. *
  274. * @return value of volume level
  275. */
  276. int audio_system_get_master_volume(void);
  277. /**
  278. * @brief set audio system master mute
  279. *
  280. * @details This routine provides to set audio system master mute
  281. *
  282. * @param value mute value 1: mute 0: unmute
  283. *
  284. * @return 0 excute successed , others failed
  285. */
  286. int audio_system_set_master_mute(int value);
  287. /**
  288. * @brief get audio system master mute state
  289. *
  290. * @details This routine provides to get audio system master mute state
  291. *
  292. * @return 1: audio system muted
  293. * @return 0: audio system unmuted
  294. */
  295. int audio_system_get_master_mute(void);
  296. int audio_system_set_stream_volume(int stream_type, int value);
  297. int audio_system_get_stream_volume(int stream_type);
  298. int audio_system_get_current_volume(int stream_type);
  299. int audio_system_set_stream_mute(int stream_type, int value);
  300. int audio_system_get_stream_mute(int stream_type);
  301. int audio_system_mute_microphone(int value);
  302. int audio_system_get_microphone_muted(void);
  303. int audio_system_get_current_pa_volume(int stream_type);
  304. /* @volume in 0.001 dB */
  305. int audio_system_set_stream_pa_volume(int stream_type, int volume);
  306. /* @volume in 0.1 dB */
  307. int audio_system_set_microphone_volume(int stream_type, int volume);
  308. int audio_system_get_max_volume(void);
  309. int audio_system_get_min_volume(void);
  310. int aduio_system_init(void);
  311. /**
  312. * @cond INTERNAL_HIDDEN
  313. */
  314. int audio_system_register_track(struct audio_track_t *audio_track);
  315. int audio_system_unregister_track(struct audio_track_t *audio_track);
  316. int audio_system_register_record(struct audio_record_t *audio_record);
  317. int audio_system_unregister_record(struct audio_record_t *audio_record);
  318. void audio_aps_monitor(int pcm_time);
  319. void audio_aps_monitor_init(int format, void *tws_observer, struct audio_track_t *audio_track);
  320. void audio_aps_monitor_init_add_samples(int format, uint8_t *need_notify, uint8_t *need_sync);
  321. void audio_aps_monitor_exchange_samples(uint32_t *ext_add_samples, uint32_t *sync_ext_samples);
  322. void audio_aps_notify_decode_err(uint16_t err_cnt);
  323. void audio_aps_monitor_deinit(int format, void *tws_observer, struct audio_track_t *audio_track);
  324. void audio_aps_monitor_tws_init(void *tws_observer);
  325. void audio_aps_tws_notify_decode_err(uint16_t err_cnt);
  326. int32_t audio_tws_set_stream_info(uint8_t format, uint16_t first_pktnum, uint8_t sample_rate);
  327. /**
  328. * @brief get snoop tws first stream packet num to play
  329. *
  330. * @return 0: first pktnum no ready, retry next time
  331. * @return >0: normal first pktnum
  332. */
  333. uint16_t audio_tws_get_playback_first_pktnum(void);
  334. int32_t audio_tws_set_pkt_info(uint16_t pkt_num, uint16_t pkt_len, uint16_t pcm_len);
  335. void audio_aps_monitor_tws_deinit(void *tws_observer);
  336. aps_monitor_info_t *audio_aps_monitor_get_instance(void);
  337. struct audio_track_t * audio_system_get_track(void);
  338. int audio_system_mutex_lock(void);
  339. int audio_system_mutex_unlock(void);
  340. /**
  341. * INTERNAL_HIDDEN @endcond
  342. */
  343. /**
  344. * @} end defgroup audio_system_apis
  345. */
  346. #ifdef __cplusplus
  347. }
  348. #endif
  349. #endif