audio_aps.c 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305
  1. /*
  2. * Copyright (c) 2016 Actions Semi Co., Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief audio stream.
  9. */
  10. #include <os_common_api.h>
  11. #include <mem_manager.h>
  12. #include <msg_manager.h>
  13. #include <audio_hal.h>
  14. #include <audio_system.h>
  15. #include <audio_track.h>
  16. #include <media_type.h>
  17. #include <string.h>
  18. #include <stdlib.h>
  19. #include <stdio.h>
  20. #include <stream.h>
  21. #ifdef CONFIG_BLUETOOTH
  22. #include <bt_manager.h>
  23. #endif
  24. #define SYS_LOG_NO_NEWLINE
  25. #ifdef SYS_LOG_DOMAIN
  26. #undef SYS_LOG_DOMAIN
  27. #endif
  28. #define SYS_LOG_DOMAIN "audio_aps"
  29. #define AUDIO_APS_ADJUST_INTERVAL 30
  30. static aps_monitor_info_t aps_monitor;
  31. aps_monitor_info_t *audio_aps_monitor_get_instance(void)
  32. {
  33. return &aps_monitor;
  34. }
  35. void audio_aps_monitor_set_aps(void *audio_handle, uint8_t status, int level)
  36. {
  37. aps_monitor_info_t *handle = audio_aps_monitor_get_instance();
  38. uint8_t aps_mode = APS_LEVEL_AUDIOPLL;
  39. uint8_t set_aps = false;
  40. if (status & APS_OPR_SET) {
  41. handle->dest_level = level;
  42. }
  43. if (status & APS_OPR_FAST_SET) {
  44. handle->dest_level = level;
  45. handle->current_level = level;
  46. set_aps = true;
  47. }
  48. if (handle->current_level > handle->dest_level) {
  49. handle->current_level--;
  50. set_aps = true;
  51. }
  52. if (handle->current_level < handle->dest_level) {
  53. handle->current_level++;
  54. set_aps = true;
  55. }
  56. if (set_aps) {
  57. SYS_LOG_DBG("adjust mode %d: %d\n", aps_mode, handle->current_level);
  58. hal_aout_channel_set_aps(audio_handle, handle->current_level, aps_mode);
  59. }
  60. }
  61. void audio_aps_monitor_normal(aps_monitor_info_t *handle, int stream_length, uint8_t aps_max_level, uint8_t aps_min_level, uint8_t aps_level)
  62. {
  63. void *audio_handle = handle->audio_track->audio_handle;
  64. uint16_t mid_threshold = 0;
  65. uint16_t diff_threshold = 0;
  66. /* SYS_LOG_INF("---in stream --- %d out stream %d\n",stream_length, stream_get_length(audio_track_get_stream(handle->audio_track))); */
  67. if (!handle->need_aps) {
  68. return;
  69. }
  70. diff_threshold = (handle->aps_increase_water_mark - handle->aps_reduce_water_mark);
  71. mid_threshold = handle->aps_increase_water_mark - (diff_threshold / 2);
  72. switch (handle->aps_status) {
  73. case APS_STATUS_DEFAULT:
  74. if (stream_length > handle->aps_increase_water_mark) {
  75. SYS_LOG_DBG("inc aps\n");
  76. audio_aps_monitor_set_aps(audio_handle, APS_OPR_FAST_SET, aps_max_level);
  77. handle->aps_status = APS_STATUS_INC;
  78. } else if (stream_length < handle->aps_reduce_water_mark) {
  79. SYS_LOG_DBG("fast dec aps\n");
  80. audio_aps_monitor_set_aps(audio_handle, APS_OPR_FAST_SET, aps_min_level);
  81. handle->aps_status = APS_STATUS_DEC;
  82. } else {
  83. audio_aps_monitor_set_aps(audio_handle, APS_OPR_ADJUST, 0);
  84. }
  85. break;
  86. case APS_STATUS_INC:
  87. if (stream_length < handle->aps_reduce_water_mark) {
  88. SYS_LOG_DBG("fast dec aps\n");
  89. audio_aps_monitor_set_aps(audio_handle, APS_OPR_FAST_SET, aps_min_level);
  90. handle->aps_status = APS_STATUS_DEC;
  91. } else if (stream_length <= mid_threshold) {
  92. SYS_LOG_DBG("default aps\n");
  93. audio_aps_monitor_set_aps(audio_handle, APS_OPR_SET, aps_level);
  94. handle->aps_status = APS_STATUS_DEFAULT;
  95. } else {
  96. audio_aps_monitor_set_aps(audio_handle, APS_OPR_ADJUST, 0);
  97. }
  98. break;
  99. case APS_STATUS_DEC:
  100. if (stream_length > handle->aps_increase_water_mark) {
  101. SYS_LOG_DBG("fast inc aps\n");
  102. audio_aps_monitor_set_aps(audio_handle, APS_OPR_FAST_SET, aps_max_level);
  103. handle->aps_status = APS_STATUS_INC;
  104. } else if (stream_length >= mid_threshold) {
  105. SYS_LOG_DBG("default aps\n");
  106. audio_aps_monitor_set_aps(audio_handle, APS_OPR_SET, aps_level);
  107. handle->aps_status = APS_STATUS_DEFAULT;
  108. } else {
  109. audio_aps_monitor_set_aps(audio_handle, APS_OPR_ADJUST, 0);
  110. }
  111. break;
  112. }
  113. }
  114. extern void audio_aps_monitor_slave(aps_monitor_info_t *handle, int stream_length, uint8_t aps_max_level, uint8_t aps_min_level, uint8_t slave_aps_level);
  115. extern void audio_aps_monitor_master(aps_monitor_info_t *handle, int stream_length, uint8_t aps_max_level, uint8_t aps_min_level, uint8_t slave_aps_level);
  116. /* Run interval DATA_PROCESS_PERIOD = (4) */
  117. void audio_aps_monitor(int pcm_time)
  118. {
  119. aps_monitor_info_t *handle = audio_aps_monitor_get_instance();
  120. static uint32_t s_time;
  121. /* Adjust aps every AUDIO_APS_ADJUST_INTERVAL */
  122. if ((k_uptime_get_32() - s_time) < handle->duration) {
  123. return;
  124. }
  125. s_time = k_uptime_get_32();
  126. #ifdef CONFIG_TWS
  127. if (handle->role == BTSRV_TWS_NONE) {
  128. audio_aps_monitor_normal(handle, pcm_time, handle->aps_max_level, handle->aps_min_level, handle->aps_default_level);
  129. } else if (handle->role == BTSRV_TWS_MASTER) {
  130. audio_aps_monitor_master(handle, pcm_time, handle->aps_max_level, handle->aps_min_level, handle->aps_default_level);
  131. } else if (handle->role == BTSRV_TWS_SLAVE) {
  132. audio_aps_monitor_slave(handle, pcm_time, handle->aps_max_level, handle->aps_min_level, handle->current_level);
  133. }
  134. #else
  135. audio_aps_monitor_normal(handle, pcm_time, handle->aps_max_level, handle->aps_min_level, handle->aps_default_level);
  136. #endif
  137. }
  138. void audio_aps_monitor_init(int format, void *tws_observer, struct audio_track_t *audio_track)
  139. {
  140. aps_monitor_info_t *handle = audio_aps_monitor_get_instance();
  141. SYS_LOG_INF("tws_observer %p audio_track %p\n", tws_observer, audio_track);
  142. memset(handle, 0, sizeof(aps_monitor_info_t));
  143. handle->audio_track = audio_track;
  144. handle->aps_status = APS_STATUS_DEFAULT;
  145. handle->aps_min_level = APS_LEVEL_1;
  146. handle->aps_max_level = APS_LEVEL_8;
  147. handle->aps_default_level = APS_LEVEL_4;
  148. /* Default water mark: no aps adjustment */
  149. handle->aps_increase_water_mark = UINT16_MAX;
  150. handle->aps_reduce_water_mark = 0;
  151. handle->need_aps = 1;
  152. handle->aps_increase_water_mark = audio_policy_get_increase_threshold(format);
  153. handle->aps_reduce_water_mark = audio_policy_get_reduce_threshold(format);
  154. handle->duration = AUDIO_APS_ADJUST_INTERVAL;
  155. switch (format) {
  156. case SBC_TYPE:
  157. {
  158. if (system_check_low_latencey_mode()) {
  159. handle->aps_min_level = APS_LEVEL_3;
  160. handle->aps_max_level = APS_LEVEL_6;
  161. handle->duration = 6;
  162. }
  163. #ifdef CONFIG_TWS
  164. if (tws_observer) {
  165. audio_aps_monitor_tws_init(tws_observer);
  166. audio_track_set_waitto_start(audio_track, true);
  167. }
  168. #endif
  169. break;
  170. }
  171. case AAC_TYPE:
  172. {
  173. if (system_check_low_latencey_mode()) {
  174. handle->aps_min_level = APS_LEVEL_3;
  175. handle->aps_max_level = APS_LEVEL_6;
  176. handle->duration = 6;
  177. }
  178. #ifdef CONFIG_TWS
  179. if (tws_observer) {
  180. audio_aps_monitor_tws_init(tws_observer);
  181. audio_track_set_waitto_start(audio_track, true);
  182. }
  183. #endif
  184. break;
  185. }
  186. case MSBC_TYPE:
  187. case CVSD_TYPE:
  188. {
  189. if (system_check_low_latencey_mode()) {
  190. handle->aps_min_level = APS_LEVEL_3;
  191. handle->aps_max_level = APS_LEVEL_6;
  192. handle->duration = 6;
  193. }
  194. handle->aps_default_level = APS_LEVEL_5;
  195. break;
  196. }
  197. case ACT_TYPE:
  198. {
  199. break;
  200. }
  201. case PCM_TYPE:
  202. {
  203. handle->aps_min_level = APS_LEVEL_3;
  204. handle->aps_max_level = APS_LEVEL_6;
  205. if (system_check_low_latencey_mode()) {
  206. handle->aps_default_level = APS_LEVEL_4;
  207. }
  208. #ifdef CONFIG_TWS
  209. if (tws_observer) {
  210. audio_aps_monitor_tws_init(tws_observer);
  211. audio_track_set_waitto_start(audio_track, true);
  212. }
  213. #endif
  214. break;
  215. }
  216. case NAV_TYPE:
  217. {
  218. handle->aps_min_level = APS_LEVEL_2;
  219. handle->aps_max_level = APS_LEVEL_6;
  220. if (system_check_low_latencey_mode()) {
  221. handle->aps_default_level = APS_LEVEL_3;
  222. }
  223. #ifdef CONFIG_TWS
  224. if (tws_observer) {
  225. audio_aps_monitor_tws_init(tws_observer);
  226. audio_track_set_waitto_start(audio_track, true);
  227. }
  228. #endif
  229. audio_track_set_waitto_start(audio_track, true);
  230. break;
  231. }
  232. default:
  233. {
  234. handle->need_aps = 0;
  235. handle->current_level = handle->aps_default_level;
  236. audio_aps_monitor_set_aps(audio_track->audio_handle, APS_OPR_FAST_SET, handle->current_level);
  237. #ifdef CONFIG_TWS
  238. if (tws_observer) {
  239. audio_aps_monitor_tws_init(tws_observer);
  240. audio_track_set_waitto_start(audio_track, true);
  241. }
  242. #endif
  243. break;
  244. }
  245. }
  246. handle->current_level = handle->aps_default_level;
  247. handle->dest_level = handle->current_level;
  248. }
  249. void audio_aps_notify_decode_err(uint16_t err_cnt)
  250. {
  251. #ifdef CONFIG_TWS
  252. audio_aps_tws_notify_decode_err(err_cnt);
  253. #endif
  254. }
  255. void audio_aps_monitor_deinit(int format, void *tws_observer, struct audio_track_t *audio_track)
  256. {
  257. #ifdef CONFIG_TWS
  258. /* Be consistent with audio_aps_monitor_init */
  259. switch (format) {
  260. case ACT_TYPE:
  261. case MSBC_TYPE:
  262. case CVSD_TYPE:
  263. break;
  264. case SBC_TYPE:
  265. case AAC_TYPE:
  266. default:
  267. if (tws_observer) {
  268. audio_aps_monitor_tws_deinit(tws_observer);
  269. }
  270. break;
  271. }
  272. #endif
  273. }