audio_track.h 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  1. /*
  2. * Copyright (c) 2016 Actions Semi Co., Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief audio track.
  9. */
  10. #ifndef __AUDIO_TRACK_H__
  11. #define __AUDIO_TRACK_H__
  12. #include <audio_system.h>
  13. #include <audio_policy.h>
  14. #include <stream.h>
  15. /**
  16. * @defgroup audio_track_apis Auido Track APIs
  17. * @{
  18. */
  19. /**
  20. * @brief Create New Track Instance.
  21. *
  22. * This routine Create new Track instance.
  23. *
  24. * @param stream_type stream type of track.
  25. * @param sampleRate sample rate of track output
  26. * @param format audio trace format
  27. * @param channel_mode audio mode of track , mono or stereo
  28. * @param outer_stream Track output stream
  29. * @param event_cb event callback, event=1 track started, event=0 track stopped
  30. * @param user_data user_data for event_cb
  31. *
  32. * @return handle of new track
  33. */
  34. struct audio_track_t *audio_track_create(uint8_t stream_type,
  35. int sampleRate, uint8_t format,
  36. uint8_t channel_mode, void *outer_stream,
  37. void (*event_cb)(uint8_t event, void *user_data), void *user_data);
  38. /**
  39. * @brief Destory a Track Instance.
  40. *
  41. * This routine Destory a Track Instance
  42. *
  43. * @param handle handle of Track
  44. *
  45. * @return 0 excute successed , others failed
  46. */
  47. int audio_track_destory(struct audio_track_t *handle);
  48. /**
  49. * @brief Start Audio Track Output
  50. *
  51. * This routine Start audio Track Output, enable adc and dma.
  52. *
  53. * @param handle handle of Track
  54. *
  55. * @return 0 excute successed , others failed
  56. */
  57. int audio_track_start(struct audio_track_t *handle);
  58. /**
  59. * @brief Stop Audio Track Output
  60. *
  61. * This routine Stop audio Track Output, disable adc and stop dma.
  62. *
  63. * @param handle handle of Track
  64. *
  65. * @return 0 excute successed , others failed
  66. */
  67. int audio_track_stop(struct audio_track_t *handle);
  68. /**
  69. * @brief Pause Audio Track Output
  70. *
  71. * This routine pause audio Track Output, pause dma output
  72. *
  73. * @param handle handle of Track
  74. *
  75. * @return 0 excute successed , others failed
  76. */
  77. int audio_track_pause(struct audio_track_t *handle);
  78. /**
  79. * @brief Resume Audio Track Output
  80. *
  81. * This routine Resume Audio Track Output, dma start and continue output
  82. *
  83. * @param handle handle of Track
  84. *
  85. * @return 0 excute successed , others failed
  86. */
  87. int audio_track_resume(struct audio_track_t *handle);
  88. /**
  89. * @brief Write data to audio track
  90. *
  91. * This routine Write data to audio track.
  92. *
  93. * @param handle handle of track
  94. * @param buff store data witch want to write ot audio track
  95. * @param num number of bytes want to write
  96. *
  97. * @return len of write datas
  98. */
  99. int audio_track_write(struct audio_track_t *handle, unsigned char *buf, int num);
  100. /**
  101. * @brief flush Audio Track data
  102. *
  103. * This routine flush Audio Track data, wait audio track data output finished.
  104. *
  105. * @param handle handle of Track
  106. *
  107. * @return 0 excute successed , others failed
  108. */
  109. int audio_track_flush(struct audio_track_t *handle);
  110. /**
  111. * @cond INTERNAL_HIDDEN
  112. */
  113. int audio_track_set_waitto_start(struct audio_track_t *handle, bool wait);
  114. int audio_track_is_waitto_start(struct audio_track_t *handle);
  115. int audio_track_get_fill_samples(struct audio_track_t *handle);
  116. int audio_track_compensate_samples(struct audio_track_t *handle, int samples_cnt);
  117. int audio_track_set_mix_stream(struct audio_track_t *handle, io_stream_t mix_stream,
  118. uint8_t sample_rate, uint8_t channels, uint8_t stream_type);
  119. uint32_t audio_track_get_play_time(struct audio_track_t *handle);
  120. io_stream_t audio_track_get_mix_stream(struct audio_track_t *handle);
  121. int audio_track_set_mute(struct audio_track_t *handle, bool mute);
  122. int audio_track_set_fade_out(struct audio_track_t *handle, int fade_time);
  123. int audio_track_set_fade_in(struct audio_track_t *handle, int fade_time);
  124. /**
  125. * INTERNAL_HIDDEN @endcond
  126. */
  127. /**
  128. * @brief set track volume
  129. *
  130. * This routine set track volume, adjust audio track output gain.
  131. *
  132. * @param handle handle of track
  133. * @param volume gain level for track output.
  134. *
  135. * @return 0 excute successed , others failed
  136. */
  137. int audio_track_set_volume(struct audio_track_t *handle, int volume);
  138. /**
  139. * @brief get track volume
  140. *
  141. * This routine get track volume, get audio track output gain.
  142. *
  143. * @param handle handle of track
  144. *
  145. * @return value of track gain
  146. */
  147. int audio_track_get_volume(struct audio_track_t *handle);
  148. /**
  149. * @brief set track pa volume
  150. *
  151. * This routine set track pa volume, adjust audio track output gain.
  152. *
  153. * @param handle handle of track
  154. * @param pa_volume gain (in 0.001 dB) for track output.
  155. *
  156. * @return 0 excute successed , others failed
  157. */
  158. int audio_track_set_pa_volume(struct audio_track_t *handle, int pa_volume);
  159. /**
  160. * @brief set track sample rate
  161. *
  162. * This routine set track sample rate.
  163. *
  164. * @param handle handle of record
  165. * @param sample_rate sample rate for track.
  166. *
  167. * @return 0 excute successed , others failed
  168. */
  169. int audio_track_set_samplerate(struct audio_track_t *handle, int sample_rate);
  170. /**
  171. * @brief get track sample rate
  172. *
  173. * This routine get track sample rate.
  174. *
  175. * @param handle handle of track
  176. *
  177. * @return value of track sample rate
  178. */
  179. int audio_track_get_samplerate(struct audio_track_t *handle);
  180. /**
  181. * @brief Get Audio Track Stream
  182. *
  183. * This routine Get Audio Track Stream
  184. *
  185. * @param handle handle of Track
  186. *
  187. * @return handle of audio Track stream
  188. */
  189. io_stream_t audio_track_get_stream(struct audio_track_t *handle);
  190. /**
  191. * @brief Set audio Track mute
  192. *
  193. * This routine Set audio Track mute
  194. *
  195. * @param handle handle of Track
  196. * @param mute 1: mute 0: unmute
  197. *
  198. * @return 0 excute successed , others failed
  199. */
  200. int audio_track_mute(struct audio_track_t *handle, int mute);
  201. /**
  202. * @brief check audio Track mute
  203. *
  204. * This routine check audio Track mute state
  205. *
  206. * @param handle handle of Track
  207. *
  208. * @return state of track mute
  209. */
  210. int audio_track_is_muted(struct audio_track_t *handle);
  211. /**
  212. * @brief get DAC output sample count
  213. *
  214. * This routine get DAC output sample count
  215. *
  216. * @param handle handle of Track
  217. *
  218. * @return DAC output sample count
  219. */
  220. uint32_t audio_track_get_play_sample_cnt(struct audio_track_t *handle);
  221. /**
  222. * @brief set audio Track fifo (dacfifo) source
  223. *
  224. * This routine set audio Track fifo (dacfifo) source
  225. *
  226. * @param handle handle of Track
  227. * @param from_dsp fifo source from dsp or no
  228. * @param dsp_audio_set_param callback function of dsp audio set param to dsp core
  229. *
  230. * @return 0 excute successed , others failed
  231. */
  232. int audio_track_set_fifo_src(struct audio_track_t *handle, bool from_dsp, void *dsp_audio_set_param);
  233. /**
  234. * @} end defgroup audio_track_apis
  235. */
  236. #endif