audio_tws_aps_snoop.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384
  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_TWS
  22. #include <btservice_api.h>
  23. #include "bluetooth_tws_observer.h"
  24. #endif
  25. #define SYS_LOG_NO_NEWLINE
  26. #ifdef SYS_LOG_DOMAIN
  27. #undef SYS_LOG_DOMAIN
  28. #endif
  29. #define SYS_LOG_DOMAIN "audio_aps"
  30. extern void audio_aps_monitor_set_aps(void *audio_handle, uint8_t status, int level);
  31. extern uint32_t get_sample_rate_hz(uint8_t fs_khz);
  32. static int32_t _set_start_pkt_num(void *aps_monitor, uint16_t pkt_num)
  33. {
  34. aps_monitor_info_t *handle = (aps_monitor_info_t *)aps_monitor;
  35. if (!handle || !handle->audio_track)
  36. return 0;
  37. handle->first_pkt_num = pkt_num;
  38. return 0;
  39. }
  40. static int32_t _start_playback(void *aps_monitor)
  41. {
  42. aps_monitor_info_t *handle = (aps_monitor_info_t *)aps_monitor;
  43. if (!handle || !handle->audio_track)
  44. return 0;
  45. SYS_LOG_INF(" ok ");
  46. return audio_track_start(handle->audio_track);
  47. }
  48. static int32_t _set_base_aps_level(void *aps_monitor, uint8_t level)
  49. {
  50. aps_monitor_info_t *handle = (aps_monitor_info_t *)aps_monitor;
  51. if (!handle || !handle->audio_track)
  52. return 0;
  53. SYS_LOG_INF(" ok ");
  54. hal_aout_channel_set_aps(audio_track->audio_handle, handle->current_level, APS_LEVEL_AUDIOPLL);
  55. return 0;
  56. }
  57. static int32_t _notify_time_diff(void *aps_monitor, int32_t diff_time)
  58. {
  59. aps_monitor_info_t *handle = (aps_monitor_info_t *)aps_monitor;
  60. if (!handle || !handle->audio_track)
  61. return 0;
  62. SYS_LOG_INF(" ok ");
  63. return 0;
  64. }
  65. static media_observer_t audio_observer = {
  66. .media_handle = NULL,
  67. .set_start_pkt_num = _set_start_pkt_num,
  68. .start_playback = _start_playback,
  69. .set_base_aps_level = _set_base_aps_level,
  70. .notify_time_diff = _notify_time_diff,
  71. };
  72. void audio_aps_tws_notify_decode_err(uint16_t err_cnt)
  73. {
  74. aps_monitor_info_t *handle = audio_aps_monitor_get_instance();
  75. bt_tws_observer_t *observer = (bt_tws_observer_t*)handle->tws_observer;
  76. //todo: restart playback
  77. }
  78. /* adjust_mode: 高4bit表示场景: 0为播歌, 1为通话, 低4bit表示播放方式: 0为normal, 1为TWS
  79. 因为通话的包长是固定的, 所以通话的时候stream_length表示缓存的字节数, aps_threshold也
  80. 需要转换成字节数
  81. */
  82. static int32_t player_monitor_aout_rate(player_commonctx_t *commonctx, uint32_t stream_length, uint8_t adjust_mode)
  83. {
  84. uint8_t trim_flag = 0;
  85. uint32_t adjust_interval = 3000;
  86. static uint32_t debug_time = 0;
  87. static uint32_t adjust_time = 0;
  88. static int32_t check_count = 0;
  89. uint32_t trim_threshold = 0, max_threshold;
  90. int32_t min_level, max_level;
  91. int32_t adj_level, cur_level, max_check_count;
  92. if(commonctx->aout_aps_level >= APS_48KHZ_LEVEL_1)
  93. {
  94. min_level = APS_48KHZ_LEVEL_1;
  95. max_level = APS_48KHZ_LEVEL_8;
  96. }
  97. else
  98. {
  99. min_level = APS_44KHZ_LEVEL_1;
  100. max_level = APS_44KHZ_LEVEL_8;
  101. }
  102. if((commonctx->aout_sample_rate == SAMPLE_16KHZ) || (commonctx->aout_sample_rate == SAMPLE_8KHZ))
  103. {
  104. if((adjust_mode & 0x0f) == 0x01)
  105. {
  106. //TWS
  107. max_check_count = 50;
  108. }
  109. else
  110. {
  111. //NORMAL
  112. max_check_count = 2;
  113. }
  114. max_threshold = commonctx->aout_aps_threshold;
  115. trim_threshold = 250;
  116. }
  117. else
  118. {
  119. if((adjust_mode & 0x0f) == 0x01)
  120. {
  121. //TWS
  122. max_check_count = 100;
  123. }
  124. else
  125. {
  126. //NORMAL
  127. max_check_count = 2;
  128. }
  129. max_threshold = commonctx->aout_aps_threshold;
  130. trim_threshold = 2000;
  131. }
  132. /* TWS场景需要预留最大和最小LEVEL做缓冲区调节
  133. */
  134. if((adjust_mode & 0x0f) == 0x01)
  135. {
  136. min_level ++;
  137. max_level --;
  138. }
  139. else
  140. {
  141. ;
  142. }
  143. cur_level = aout_get_aps(commonctx->aout_channel);
  144. adj_level = cur_level;
  145. /* 微调
  146. */
  147. if(abs((int32_t)(stream_length - max_threshold)) <= trim_threshold)
  148. {
  149. if((cur_level >= (commonctx->aout_aps_level - 1)) && (cur_level <= (commonctx->aout_aps_level + 1)))
  150. {
  151. min_level = commonctx->aout_aps_level - 1;
  152. max_level = commonctx->aout_aps_level + 1;
  153. trim_flag = 1;
  154. }
  155. }
  156. if(stream_length > max_threshold)
  157. {
  158. check_count ++;
  159. }
  160. else if(stream_length < max_threshold)
  161. {
  162. check_count --;
  163. }
  164. if(check_count >= max_check_count)
  165. {
  166. check_count = 0;
  167. adj_level ++;
  168. }
  169. else if(check_count <= -max_check_count)
  170. {
  171. check_count = 0;
  172. adj_level --;
  173. }
  174. else
  175. {
  176. if(stream_length > max_threshold)
  177. {
  178. adj_level ++;
  179. }
  180. else if(stream_length < max_threshold)
  181. {
  182. adj_level --;
  183. }
  184. if(((uint32_t)jiffies_to_msecs(jiffies) - adjust_time) < adjust_interval)
  185. {
  186. /* 设置最小等待时间避免TWS场景调节失败
  187. */
  188. if(((uint32_t)jiffies_to_msecs(jiffies) - adjust_time) < 200)
  189. {
  190. return -1;
  191. }
  192. if(trim_flag == 1)
  193. {
  194. return -1;
  195. }
  196. /* 快速调节
  197. */
  198. if(((cur_level == max_level) && (adj_level < max_level)) ||
  199. ((cur_level == min_level) && (adj_level > min_level)))
  200. {
  201. check_count = 0;
  202. sys_printf("aout aps6:%d_%d_%d\n", cur_level, adj_level, stream_length);
  203. }
  204. else
  205. {
  206. return -1;
  207. }
  208. }
  209. }
  210. if(adj_level > max_level)
  211. {
  212. adj_level = max_level;
  213. }
  214. if(adj_level < min_level)
  215. {
  216. adj_level = min_level;
  217. }
  218. adjust_time = (uint32_t)jiffies_to_msecs(jiffies);
  219. if(adj_level != cur_level)
  220. {
  221. /* 上升趋势调节
  222. */
  223. if((cur_level < commonctx->aout_aps_level) && (adj_level > cur_level))
  224. {
  225. adj_level = commonctx->aout_aps_level;
  226. }
  227. /* 下降趋势调节
  228. */
  229. if((cur_level > commonctx->aout_aps_level) && (adj_level < cur_level))
  230. {
  231. adj_level = commonctx->aout_aps_level;
  232. }
  233. if(((uint32_t)jiffies_to_msecs(jiffies) - debug_time) > 3000)
  234. {
  235. debug_time = (uint32_t)jiffies_to_msecs(jiffies);
  236. sys_printf("aout aps1: %d_%d_%d_%d_%d_%d\n", \
  237. cur_level, \
  238. adj_level, \
  239. commonctx->aout_aps_level, \
  240. stream_length, \
  241. max_threshold, \
  242. commonctx->aout_aps_threshold);
  243. sys_printf("aout aps2: %d_%d_%d_%d\n", \
  244. min_level, \
  245. max_level, \
  246. check_count, \
  247. max_check_count);
  248. }
  249. return adj_level;
  250. }
  251. return -1;
  252. }
  253. void audio_aps_monitor_master(aps_monitor_info_t *handle, int32_t stream_length, uint8_t aps_max_level, uint8_t aps_min_level, uint8_t aps_level)
  254. {
  255. bt_tws_observer_t *tws_observer = (bt_tws_observer_t *)handle->tws_observer;
  256. struct audio_track_t *audio_track = handle->audio_track;
  257. uint16_t mid_threshold = 0;
  258. uint16_t diff_threshold = 0;
  259. int local_compensate_samples;
  260. int remote_compensate_samples;
  261. aps_max_level = aps_max_level - 1;
  262. aps_min_level = aps_min_level + 1;
  263. local_compensate_samples = audio_track_get_fill_samples(audio_track);
  264. tws_observer->aps_change_notify(handle->current_level);
  265. }
  266. 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)
  267. {
  268. }
  269. int32_t audio_tws_set_stream_info(uint8_t format, uint16_t first_pktnum, uint8_t sample_rate)
  270. {
  271. aps_monitor_info_t *handle = audio_aps_monitor_get_instance();
  272. bt_tws_observer_t *observer = (bt_tws_observer_t*)handle->tws_observer;
  273. handle->first_pkt_num = 0;
  274. return observer->set_stream_info(format, first_pktnum, get_sample_rate_hz(sample_rate));
  275. }
  276. uint16_t audio_tws_get_playback_first_pktnum(void)
  277. {
  278. aps_monitor_info_t *handle = audio_aps_monitor_get_instance();
  279. bt_tws_observer_t *observer = (bt_tws_observer_t*)handle->tws_observer;
  280. return handle->first_pkt_num;
  281. }
  282. int32_t audio_tws_set_pkt_info(uint16_t pkt_num, uint16_t pkt_len, uint16_t pcm_len)
  283. {
  284. aps_monitor_info_t *handle = audio_aps_monitor_get_instance();
  285. bt_tws_observer_t *observer = (bt_tws_observer_t*)handle->tws_observer;
  286. tws_pkt_info_t info;
  287. uint32_t flags;
  288. info.pkt_num = pkt_num;
  289. info.pkt_len = pkt_len;
  290. info.samples = pcm_len / handle->audio_track->frame_size;
  291. flags = irq_lock();
  292. info.pkt_bttime_us =
  293. handle->audio_track->total_samples_filled
  294. - hal_aout_channel_get_sample_cnt(handle->audio_track->audio_handle);
  295. info.pkt_bttime_us = info.pkt_bttime_us * 1000000 / get_sample_rate_hz(handle->audio_track->sample_rate);
  296. info.pkt_bttime_us += observer->get_bt_clk_us();
  297. irq_unlock(flags);
  298. SYS_LOG_INF("%d, %d",
  299. handle->audio_track->total_samples_filled,
  300. hal_aout_channel_get_sample_cnt(handle->audio_track->audio_handle));
  301. return observer->set_pkt_info(&info);
  302. }
  303. void audio_aps_monitor_tws_init(void *tws_observer)
  304. {
  305. aps_monitor_info_t *handle = audio_aps_monitor_get_instance();
  306. if (tws_observer) {
  307. audio_observer.media_handle = handle;
  308. audio_observer.tws_observer = tws_observer;
  309. handle->tws_observer = bluetooth_tws_observer_init(&audio_observer);
  310. handle->role = BTSRV_TWS_MASTER;
  311. hal_aout_channel_enable_sample_cnt(handle->audio_track->audio_handle, true);
  312. }
  313. audio_aps_monitor_set_aps(handle->audio_track->audio_handle, APS_OPR_FAST_SET, handle->aps_default_level);
  314. }
  315. void audio_aps_monitor_tws_deinit(void *tws_observer)
  316. {
  317. aps_monitor_info_t *handle = audio_aps_monitor_get_instance();
  318. if (tws_observer) {
  319. hal_aout_channel_enable_sample_cnt(handle->audio_track->audio_handle, false);
  320. bluetooth_tws_observer_deinit(handle->tws_observer);
  321. handle->tws_observer = NULL;
  322. }
  323. }