audio_record.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. /*
  2. * Copyright (c) 2016 Actions Semi Co., Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief audio record.
  9. */
  10. #ifndef __AUDIO_RECORD_H__
  11. #define __AUDIO_RECORD_H__
  12. #include <audio_system.h>
  13. #include <audio_policy.h>
  14. #include <stream.h>
  15. /**
  16. * @defgroup audio_record_apis Auido Record APIs
  17. * @{
  18. */
  19. /**
  20. * @brief Create New Record Instance.
  21. *
  22. * This routine Create new record instance.
  23. *
  24. * @param stream_type stream type of Record.
  25. * @param sample_rate_input sample rate of dac
  26. * @param sample_rate_output output sample rate of audio record
  27. * @param format capture format 16bit/ 24bit
  28. * @param audio_mode audio mode of recoder , mono or stereo
  29. * @param outer_stream recode data output stream
  30. *
  31. * @return handle of new recorder
  32. */
  33. struct audio_record_t *audio_record_create(uint8_t stream_type, int sample_rate_input, int sample_rate_output,
  34. uint8_t format, uint8_t audio_mode, void *outer_stream);
  35. /**
  36. * @brief Destory a Record Instance.
  37. *
  38. * This routine Destory a Record Instance
  39. *
  40. * @param handle handle of record
  41. *
  42. * @return 0 excute successed , others failed
  43. */
  44. int audio_record_destory(struct audio_record_t *handle);
  45. /**
  46. * @brief Start Audio Record Capture
  47. *
  48. * This routine Start audio record capture, enable adc and dma.
  49. *
  50. * @param handle handle of record
  51. *
  52. * @return 0 excute successed , others failed
  53. */
  54. int audio_record_start(struct audio_record_t *handle);
  55. /**
  56. * @brief Stop Audio Record Capture
  57. *
  58. * This routine Stop audio record capture, disable adc and stop dma.
  59. *
  60. * @param handle handle of record
  61. *
  62. * @return 0 excute successed , others failed
  63. */
  64. int audio_record_stop(struct audio_record_t *handle);
  65. /**
  66. * @brief Pause Audio Record Capture
  67. *
  68. * This routine pause audio record capture, drop the caputre date
  69. *
  70. * @param handle handle of record
  71. *
  72. * @return 0 excute successed , others failed
  73. */
  74. int audio_record_pause(struct audio_record_t *handle);
  75. /**
  76. * @brief Resume Audio Record Capture
  77. *
  78. * This routine Resume audio record capture, out stream continue output capture data
  79. *
  80. * @param handle handle of record
  81. *
  82. * @return 0 excute successed , others failed
  83. */
  84. int audio_record_resume(struct audio_record_t *handle);
  85. /**
  86. * @brief Read Data From Audio Record
  87. *
  88. * This routine Read Data From Audio Record, user cam also read from out stream
  89. *
  90. * @param handle handle of record
  91. * @param buff buffer pointer of store read out data
  92. * @param num number of bytes want to read
  93. *
  94. * @return len of read datas
  95. */
  96. int audio_record_read(struct audio_record_t *handle, uint8_t *buff, int num);
  97. /**
  98. * @brief flush Audio Record Capture
  99. *
  100. * This routine flush Audio Record Capture, wait capture data read finished.
  101. *
  102. * @param handle handle of record
  103. *
  104. * @return 0 excute successed , others failed
  105. */
  106. int audio_record_flush(struct audio_record_t *handle);
  107. /**
  108. * @brief set capture volume
  109. *
  110. * This routine set capture volume, adjust capture gain for record.
  111. *
  112. * @param handle handle of record
  113. * @param volume gain level for capture.
  114. *
  115. * @return 0 excute successed , others failed
  116. */
  117. int audio_record_set_volume(struct audio_record_t *handle, int volume);
  118. /**
  119. * @brief get capture volume
  120. *
  121. * This routine get capture volume.
  122. *
  123. * @param handle handle of record
  124. *
  125. * @return value of capture gain
  126. */
  127. int audio_record_get_volume(struct audio_record_t *handle);
  128. /**
  129. * @brief set capture sample rate
  130. *
  131. * This routine set capture sample rate.
  132. *
  133. * @param handle handle of record
  134. * @param sample_rate sample rate for capture.
  135. *
  136. * @return 0 excute successed , others failed
  137. */
  138. int audio_record_set_samplerate(struct audio_record_t *handle, int sample_rate);
  139. /**
  140. * @brief get capture sample rate
  141. *
  142. * This routine get capture sample rate.
  143. *
  144. * @param handle handle of record
  145. *
  146. * @return value of capture sample rate
  147. */
  148. int audio_record_get_samplerate(struct audio_record_t *handle);
  149. /**
  150. * @brief Get Audio Record Stream
  151. *
  152. * This routine Get Audio Record Stream
  153. *
  154. * @param handle handle of record
  155. *
  156. * @return handle of audio record stream
  157. */
  158. io_stream_t audio_record_get_stream(struct audio_record_t *handle);
  159. /**
  160. * @} end defgroup audio_record_apis
  161. */
  162. #endif