audio_track.c 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089
  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. #include <os_common_api.h>
  11. #include <mem_manager.h>
  12. #include <msg_manager.h>
  13. #include <audio_track.h>
  14. #include <audio_device.h>
  15. #include <string.h>
  16. #include <stdlib.h>
  17. #include <stdio.h>
  18. #include <sys/util.h>
  19. #include <media_mem.h>
  20. #include <assert.h>
  21. #include <ringbuff_stream.h>
  22. #include <arithmetic.h>
  23. #define SYS_LOG_NO_NEWLINE
  24. #ifdef SYS_LOG_DOMAIN
  25. #undef SYS_LOG_DOMAIN
  26. #endif
  27. #define SYS_LOG_DOMAIN "audio track"
  28. enum {
  29. FADE_MODE_NONE,
  30. FADE_MODE_IN,
  31. FADE_MODE_OUT,
  32. };
  33. static uint8_t reload_pcm_buff[2048] __aligned(4) __in_section_unique(audio.bss.ouput_pcm);
  34. extern int stream_read_pcm(asin_pcm_t *aspcm, io_stream_t stream, int max_samples, int debug_space);
  35. extern uint32_t get_sample_rate_hz(uint8_t fs_khz);
  36. #ifdef CONFIG_MEDIA_EFFECT
  37. extern void *media_resample_open(uint8_t channels, uint8_t samplerate_in,
  38. uint8_t samplerate_out, int *samples_in, int *samples_out, uint8_t stream_type);
  39. extern int media_resample_process(void *handle, uint8_t channels, void *output_buf[2],
  40. void *input_buf[2], int input_samples);
  41. extern void media_resample_close(void *handle);
  42. extern void *media_fade_open(uint8_t sample_rate, uint8_t channels, uint8_t sample_bits, uint8_t is_interweaved);
  43. extern void media_fade_close(void *handle);
  44. extern int media_fade_process(void *handle, void **inout_buf, int samples);
  45. extern int media_fade_in_set(void *handle, int fade_time_ms);
  46. extern int media_fade_out_set(void *handle, int fade_time_ms);
  47. extern int media_fade_out_is_finished(void *handle);
  48. extern void *media_mix_open(uint8_t sample_rate, uint8_t channels, uint8_t is_interweaved);
  49. extern void media_mix_close(void *handle);
  50. extern int media_mix_process(void *handle, void **inout_buf, void *mix_buf,
  51. int samples);
  52. #endif /* CONFIG_MEDIA_EFFECT */
  53. #ifdef CONFIG_MEDIA_EFFECT
  54. static int _audio_track_data_mix(struct audio_track_t *handle, s16_t *src_buff, uint16_t samples, s16_t *dest_buff)
  55. {
  56. int ret = 0;
  57. int max_retry_cnt = 5;
  58. uint16_t mix_num = 0;
  59. asin_pcm_t mix_pcm = {
  60. .channels = handle->mix_channels,
  61. .sample_bits = 16,
  62. .pcm = { handle->res_in_buf[0], handle->res_in_buf[1], },
  63. };
  64. if (stream_get_length(handle->mix_stream) <= 0 && handle->res_remain_samples <= 0)
  65. return 0;
  66. while (1) {
  67. uint16_t mix_samples = MIN(samples, handle->res_remain_samples);
  68. s16_t *mix_buff[2] = {
  69. handle->res_out_buf[0] + handle->res_out_samples - handle->res_remain_samples,
  70. handle->res_out_buf[1] + handle->res_out_samples - handle->res_remain_samples,
  71. };
  72. /* 1) consume remain samples */
  73. if (handle->mix_handle && dest_buff == src_buff) {
  74. #ifdef CONFIG_AUDIO_MIX
  75. media_mix_process(handle->mix_handle, (void **)&dest_buff, mix_buff[0], mix_samples);
  76. dest_buff += handle->channels * mix_samples;
  77. src_buff += handle->channels * mix_samples;
  78. #endif //CONFIG_AUDIO_MIX
  79. } else {
  80. if(handle->audio_format == AUDIO_FORMAT_PCM_32_BIT) {
  81. int32_t *pdst = (int32_t*)dest_buff;
  82. int32_t *psrc = (int32_t*)src_buff;
  83. if (handle->channels > 1) {
  84. for (int i = 0; i < mix_samples; i++) {
  85. *pdst++ = (*psrc++) / 2 + (((int32_t)mix_buff[0][i] / 2) << 16);
  86. *pdst++ = (*psrc++) / 2 + (((int32_t)mix_buff[1][i] / 2) << 16);
  87. }
  88. } else {
  89. for (int i = 0; i < mix_samples; i++) {
  90. *pdst++ = (*psrc++) / 2 + (((int32_t)mix_buff[0][i] / 2) << 16);
  91. }
  92. }
  93. }else{
  94. if (handle->channels > 1) {
  95. for (int i = 0; i < mix_samples; i++) {
  96. *dest_buff++ = (*src_buff++) / 2 + mix_buff[0][i] / 2;
  97. *dest_buff++ = (*src_buff++) / 2 + mix_buff[1][i] / 2;
  98. }
  99. } else {
  100. for (int i = 0; i < mix_samples; i++) {
  101. *dest_buff++ = (*src_buff++) / 2 + mix_buff[0][i] / 2;
  102. }
  103. }
  104. }
  105. }
  106. handle->res_remain_samples -= mix_samples;
  107. samples -= mix_samples;
  108. mix_num += mix_samples;
  109. if (samples <= 0)
  110. break;
  111. /* 2) read mix stream and do resample as required */
  112. mix_pcm.samples = 0;
  113. ret = stream_read_pcm(&mix_pcm, handle->mix_stream, handle->res_in_samples, INT32_MAX);
  114. //printk("mix read: %d, need: %d, have: %d\n", ret, handle->res_in_samples, stream_get_length(handle->mix_stream));
  115. if (ret <= 0)
  116. {
  117. if(stream_check_finished(handle->mix_stream))
  118. break;
  119. max_retry_cnt--;
  120. if(max_retry_cnt <= 0)
  121. {
  122. SYS_LOG_ERR("wait tip tone timeout\n");
  123. break;
  124. }
  125. os_sleep(2);
  126. continue;
  127. }
  128. if (handle->res_handle) {
  129. #ifdef CONFIG_RESAMPLE
  130. uint8_t res_channels = MIN(handle->mix_channels, handle->channels);
  131. if (ret < handle->res_in_samples) {
  132. memset((uint16_t *)mix_pcm.pcm[0] + ret, 0, (handle->res_in_samples - ret) * 2);
  133. if (res_channels > 1)
  134. memset((uint16_t *)mix_pcm.pcm[1] + ret, 0, (handle->res_in_samples - ret) * 2);
  135. }
  136. /* do resample */
  137. handle->res_out_samples = media_resample_process(handle->res_handle, res_channels,
  138. (void **)handle->res_out_buf, (void **)mix_pcm.pcm, handle->res_in_samples);
  139. handle->res_remain_samples = handle->res_out_samples;
  140. #endif //CONFIG_RESAMPLE
  141. } else {
  142. handle->res_out_samples = ret;
  143. handle->res_remain_samples = handle->res_out_samples;
  144. }
  145. }
  146. return mix_num;
  147. }
  148. #endif /* CONFIG_MEDIA_EFFECT */
  149. static int _audio_track_request_more_data(void *handle, uint32_t reason)
  150. {
  151. static uint8_t printk_cnt = 0;
  152. struct audio_track_t *audio_track = (struct audio_track_t *)handle;
  153. int read_len = audio_track->pcm_frame_size / 2;
  154. int stream_length = stream_get_length(audio_track->audio_stream);
  155. int ret = 0;
  156. bool reload_mode = ((audio_track->channel_mode & AUDIO_DMA_RELOAD_MODE) == AUDIO_DMA_RELOAD_MODE);
  157. uint8_t *buf = NULL;
  158. if(!audio_track->stared) {
  159. return 0;
  160. }
  161. if (reload_mode) {
  162. if (reason == AOUT_DMA_IRQ_HF) {
  163. buf = audio_track->pcm_frame_buff;
  164. } else if (reason == AOUT_DMA_IRQ_TC) {
  165. buf = audio_track->pcm_frame_buff + read_len;
  166. }
  167. } else {
  168. buf = audio_track->pcm_frame_buff;
  169. if (stream_length > audio_track->pcm_frame_size) {
  170. read_len = audio_track->pcm_frame_size;
  171. } else {
  172. read_len = audio_track->pcm_frame_size / 2;
  173. }
  174. if (audio_track->channel_id == AOUT_FIFO_DAC0) {
  175. if (reason == AOUT_DMA_IRQ_TC) {
  176. os_printk("pcm empty\n");
  177. }
  178. }
  179. }
  180. if (audio_track->compensate_samples > 0) {
  181. /* insert data */
  182. if (audio_track->compensate_samples < read_len) {
  183. read_len = audio_track->compensate_samples;
  184. }
  185. memset(buf, 0, read_len);
  186. audio_track->fill_cnt += read_len;
  187. audio_track->compensate_samples -= read_len;
  188. goto exit;
  189. } else if (audio_track->compensate_samples < 0) {
  190. /* drop data */
  191. if (read_len > -audio_track->compensate_samples) {
  192. read_len = -audio_track->compensate_samples;
  193. }
  194. if (stream_get_length(audio_track->audio_stream) >= read_len * 2) {
  195. stream_read(audio_track->audio_stream, buf, read_len);
  196. audio_track->fill_cnt -= read_len;
  197. audio_track->compensate_samples += read_len;
  198. }
  199. }
  200. if (read_len > stream_get_length(audio_track->audio_stream)) {
  201. if (!audio_track->flushed) {
  202. if (!printk_cnt++) {
  203. printk("F\n");
  204. //_playback_decoder_dump_buffer(true);
  205. }
  206. int data_len = stream_get_length(audio_track->audio_stream);
  207. stream_read(audio_track->audio_stream, buf, data_len);
  208. memset(buf + data_len, 0, read_len - data_len);
  209. audio_track->fill_cnt += read_len;
  210. goto exit;
  211. } else {
  212. read_len = stream_get_length(audio_track->audio_stream);
  213. if(read_len < 0)
  214. read_len = 0;
  215. }
  216. } else {
  217. printk_cnt = 0;
  218. }
  219. ret = stream_read(audio_track->audio_stream, buf, read_len);
  220. if (ret != read_len) {
  221. if (!printk_cnt++) {
  222. printk("F\n");
  223. //_playback_decoder_dump_buffer(true);
  224. }
  225. memset(buf, 0, read_len);
  226. audio_track->fill_cnt += read_len;
  227. }
  228. if (audio_track->muted) {
  229. memset(buf, 0, read_len);
  230. //audio_track->fill_cnt += read_len;
  231. goto exit;
  232. }
  233. ret = audio_track->pcm_frame_size / 2;
  234. if (reload_mode && (read_len != ret)) {
  235. if(audio_track->flushed && (audio_track->flushed < 10) && (0 == read_len)) {
  236. audio_track->flushed++;
  237. }
  238. memset(buf + read_len, 0, ret - read_len);
  239. read_len = ret;
  240. }
  241. exit:
  242. #ifdef CONFIG_MUSIC_DAE_FADE
  243. if (audio_track->fade_handle && (audio_track->fade_mode == FADE_MODE_OUT) && (read_len > 0)) {
  244. int samples = read_len / audio_track->frame_size;
  245. media_fade_process(audio_track->fade_handle, (void **)&buf, samples);
  246. }
  247. #endif
  248. if (!reload_mode && read_len > 0) {
  249. hal_aout_channel_write_data(audio_track->audio_handle, buf, read_len);
  250. }
  251. if (audio_track->channel_id == AOUT_FIFO_DAC0 && !reload_mode) {
  252. #if 0
  253. /**local music max send 3K pcm data */
  254. if (audio_track->stream_type == AUDIO_STREAM_LOCAL_MUSIC) {
  255. if (stream_get_length(audio_track->audio_stream) > audio_track->pcm_frame_size) {
  256. stream_read(audio_track->audio_stream, buf, audio_track->pcm_frame_size);
  257. #ifdef CONFIG_MUSIC_DAE_FADE
  258. if (audio_track->fade_handle && (audio_track->fade_mode == FADE_MODE_OUT)) {
  259. int samples = audio_track->pcm_frame_size / audio_track->frame_size;
  260. media_fade_process(audio_track->fade_handle, (void **)&buf, samples);
  261. }
  262. #endif
  263. hal_aout_channel_write_data(audio_track->audio_handle, buf, audio_track->pcm_frame_size);
  264. }
  265. if (stream_get_length(audio_track->audio_stream) > audio_track->pcm_frame_size) {
  266. stream_read(audio_track->audio_stream, buf, audio_track->pcm_frame_size);
  267. #ifdef CONFIG_MUSIC_DAE_FADE
  268. if (audio_track->fade_handle && (audio_track->fade_mode == FADE_MODE_OUT)) {
  269. int samples = audio_track->pcm_frame_size / audio_track->frame_size;
  270. media_fade_process(audio_track->fade_handle, (void **)&buf, samples);
  271. }
  272. #endif
  273. hal_aout_channel_write_data(audio_track->audio_handle, buf, audio_track->pcm_frame_size);
  274. }
  275. }
  276. #endif
  277. /**last frame send more 2 samples */
  278. if (audio_track->flushed && stream_get_length(audio_track->audio_stream) == 0) {
  279. memset(buf, 0, audio_track->frame_size * 2);
  280. hal_aout_channel_write_data(audio_track->audio_handle, buf, audio_track->frame_size * 2);
  281. }
  282. }
  283. return 0;
  284. }
  285. static void *_audio_track_init(struct audio_track_t *handle)
  286. {
  287. audio_out_init_param_t aout_param = {0};
  288. #ifdef AOUT_CHANNEL_AA
  289. if (handle->channel_type == AOUT_CHANNEL_AA) {
  290. aout_param.aa_mode = 1;
  291. }
  292. #endif
  293. aout_param.sample_rate = handle->output_sample_rate_hz/1000;
  294. aout_param.channel_type = handle->channel_type;
  295. aout_param.channel_id = handle->channel_id;
  296. aout_param.data_width = 16;
  297. aout_param.channel_mode = (handle->channels == 1) ? MONO_MODE : STEREO_MODE;
  298. aout_param.left_volume = audio_system_get_current_pa_volume(handle->stream_type);
  299. aout_param.right_volume = aout_param.left_volume;
  300. aout_param.sample_cnt_enable = 1;
  301. aout_param.callback = _audio_track_request_more_data;
  302. aout_param.callback_data = handle;
  303. if ((handle->channel_mode & AUDIO_DMA_RELOAD_MODE) == AUDIO_DMA_RELOAD_MODE) {
  304. aout_param.dma_reload = 1;
  305. aout_param.reload_len = handle->pcm_frame_size;
  306. aout_param.reload_addr = handle->pcm_frame_buff;
  307. }
  308. return hal_aout_channel_open(&aout_param);
  309. }
  310. static void _audio_track_stream_observer_notify(void *observer, int readoff, int writeoff, int total_size,
  311. unsigned char *buf, int num, stream_notify_type type)
  312. {
  313. struct audio_track_t *handle = (struct audio_track_t *)observer;
  314. #ifdef CONFIG_SNOOP_LINK_TWS
  315. handle->total_samples_filled += num / handle->frame_size;
  316. #endif
  317. #ifdef CONFIG_MEDIA_EFFECT
  318. if(!os_is_in_isr()) {
  319. audio_system_mutex_lock();
  320. if (handle->mix_stream && (type == STREAM_NOTIFY_PRE_WRITE)) {
  321. _audio_track_data_mix(handle, (s16_t *)buf, num / handle->frame_size, (s16_t *)buf);
  322. }
  323. audio_system_mutex_unlock();
  324. }
  325. #endif
  326. if (!handle->stared
  327. && (type == STREAM_NOTIFY_WRITE)
  328. && !audio_track_is_waitto_start(handle)
  329. && stream_get_length(handle->audio_stream) >= handle->pcm_frame_size) {
  330. if(!os_is_in_isr()) {
  331. os_sched_lock();
  332. }
  333. if (handle->event_cb)
  334. handle->event_cb(1, handle->user_data);
  335. handle->stared = 1;
  336. hal_aout_channel_reset_sample_cnt(handle->audio_handle);
  337. stream_read(handle->audio_stream, handle->pcm_frame_buff, handle->pcm_frame_size);
  338. handle->total_samples_filled = handle->pcm_frame_size / handle->frame_size;
  339. handle->sample_fix = 0;
  340. #ifdef CONFIG_MEDIA_EFFECT
  341. if (handle->fade_handle && (handle->fade_mode == FADE_MODE_IN)) {
  342. int samples = handle->pcm_frame_size / handle->frame_size;
  343. media_fade_process(handle->fade_handle, (void **)&handle->pcm_frame_buff, samples);
  344. }
  345. #endif
  346. if ((handle->channel_mode & AUDIO_DMA_RELOAD_MODE) == AUDIO_DMA_RELOAD_MODE) {
  347. hal_aout_channel_start(handle->audio_handle);
  348. } else {
  349. hal_aout_channel_write_data(handle->audio_handle, handle->pcm_frame_buff, handle->pcm_frame_size);
  350. }
  351. if(!os_is_in_isr()) {
  352. os_sched_unlock();
  353. }
  354. }
  355. }
  356. struct audio_track_t *audio_track_create(uint8_t stream_type, int sample_rate,
  357. uint8_t format, uint8_t audio_mode, void *outer_stream,
  358. void (*event_cb)(uint8_t event, void *user_data), void *user_data)
  359. {
  360. struct audio_track_t *audio_track = NULL;
  361. audio_system_mutex_lock();
  362. audio_track = mem_malloc(sizeof(struct audio_track_t));
  363. if (!audio_track) {
  364. SYS_LOG_ERR("audio track malloc failed");
  365. goto err_exit;
  366. }
  367. memset(audio_track, 0, sizeof(struct audio_track_t));
  368. audio_track->stream_type = stream_type;
  369. audio_track->audio_format = format;
  370. audio_track->sample_rate = sample_rate;
  371. audio_track->compensate_samples = 0;
  372. audio_track->channel_type = audio_policy_get_out_channel_type(stream_type);
  373. audio_track->channel_id = audio_policy_get_out_channel_id(stream_type);
  374. audio_track->channel_mode = audio_policy_get_out_channel_mode(stream_type);
  375. audio_track->volume = audio_system_get_stream_volume(stream_type);
  376. audio_track->output_sample_rate_hz = audio_system_get_output_sample_rate();
  377. if (!audio_track->output_sample_rate_hz) {
  378. audio_track->output_sample_rate_hz = audio_track->sample_rate;
  379. }
  380. audio_track->output_sample_rate_hz = get_sample_rate_hz(audio_track->output_sample_rate_hz);
  381. if (audio_mode == AUDIO_MODE_DEFAULT)
  382. audio_mode = audio_policy_get_out_audio_mode(stream_type);
  383. if (audio_mode == AUDIO_MODE_MONO) {
  384. audio_track->frame_size = 2;
  385. audio_track->channels = 1;
  386. } else if (audio_mode == AUDIO_MODE_STEREO) {
  387. audio_track->frame_size = 4;
  388. audio_track->channels = 2;
  389. }
  390. /* dma reload buff */
  391. if (system_check_low_latencey_mode()) {
  392. if (audio_track->sample_rate <= 16) {
  393. audio_track->pcm_frame_size = 256;
  394. } else {
  395. audio_track->pcm_frame_size = 512;
  396. }
  397. } else {
  398. audio_track->pcm_frame_size = (sample_rate <= 16) ? (sample_rate * audio_track->frame_size * 8) : 1024;
  399. }
  400. audio_track->pcm_frame_buff = reload_pcm_buff;
  401. if (!audio_track->pcm_frame_buff) {
  402. SYS_LOG_ERR("pcm_frame_buff init failed");
  403. goto err_exit;
  404. }
  405. audio_track->audio_handle = _audio_track_init(audio_track);
  406. if (!audio_track->audio_handle) {
  407. SYS_LOG_ERR("audio track init failed");
  408. goto err_exit;
  409. }
  410. hal_aout_channel_enable_sample_cnt(audio_track->audio_handle, true);
  411. if (audio_system_get_current_volume(audio_track->stream_type) == 0) {
  412. hal_aout_channel_mute_ctl(audio_track->audio_handle, 1);
  413. } else {
  414. hal_aout_channel_mute_ctl(audio_track->audio_handle, 0);
  415. }
  416. if (outer_stream) {
  417. audio_track->audio_stream = ringbuff_stream_create((struct acts_ringbuf *)outer_stream);
  418. } else {
  419. audio_track->audio_stream = ringbuff_stream_create_ext(
  420. media_mem_get_cache_pool(OUTPUT_PCM, stream_type),
  421. media_mem_get_cache_pool_size(OUTPUT_PCM, stream_type));
  422. }
  423. if (!audio_track->audio_stream) {
  424. SYS_LOG_ERR("stream create failed");
  425. goto err_exit;
  426. }
  427. if (stream_open(audio_track->audio_stream, MODE_IN_OUT | MODE_WRITE_BLOCK)) {
  428. stream_destroy(audio_track->audio_stream);
  429. audio_track->audio_stream = NULL;
  430. SYS_LOG_ERR(" stream open failed ");
  431. goto err_exit;
  432. }
  433. if (stream_get_space(audio_track->audio_stream)+ stream_get_length(audio_track->audio_stream) < audio_track->pcm_frame_size) {
  434. audio_track->pcm_frame_size = stream_get_space(audio_track->audio_stream)+ stream_get_length(audio_track->audio_stream);
  435. if (audio_track->pcm_frame_size / 2 < CONFIG_AUDIO_DAC_0_PCMBUF_HF_THRES) {
  436. hal_aout_set_pcm_threshold(audio_track->audio_handle, CONFIG_AUDIO_DAC_0_PCMBUF_HE_THRES / 2, CONFIG_AUDIO_DAC_0_PCMBUF_HF_THRES / 2);
  437. SYS_LOG_INF(" new pcm buf he threshold:%d, hf:%d\n", CONFIG_AUDIO_DAC_0_PCMBUF_HE_THRES / 2, CONFIG_AUDIO_DAC_0_PCMBUF_HF_THRES / 2);
  438. }
  439. }
  440. stream_set_observer(audio_track->audio_stream, audio_track,
  441. _audio_track_stream_observer_notify, STREAM_NOTIFY_WRITE | STREAM_NOTIFY_PRE_WRITE);
  442. if (audio_system_register_track(audio_track)) {
  443. SYS_LOG_ERR(" registy track failed ");
  444. goto err_exit;
  445. }
  446. #if defined(CONFIG_MEDIA_EFFECT)
  447. audio_track->fade_handle = media_fade_open(
  448. audio_track->sample_rate,
  449. audio_track->channels,
  450. (audio_track->audio_format != AUDIO_FORMAT_PCM_16_BIT) ? 32 : 16,
  451. 1);
  452. #endif
  453. audio_track->event_cb = event_cb;
  454. audio_track->user_data = user_data;
  455. if (audio_track->sample_rate <= 16) {
  456. int he_thres = audio_track->sample_rate * audio_track->channels * 4;
  457. hal_aout_set_pcm_threshold(audio_track->audio_handle, he_thres, he_thres + 4);
  458. }
  459. SYS_LOG_INF("stream_type : %d", audio_track->stream_type);
  460. SYS_LOG_INF("audio_format : %d", audio_track->audio_format);
  461. SYS_LOG_INF("audio_mode : %d", audio_track->channels);
  462. SYS_LOG_INF("channel_type : %d", audio_track->channel_type);
  463. SYS_LOG_INF("channel_id : %d", audio_track->channel_id);
  464. SYS_LOG_INF("channel_mode : %d", audio_track->channel_mode);
  465. SYS_LOG_INF("input_sr : %d ", audio_track->sample_rate);
  466. SYS_LOG_INF("output_sr : %d", audio_track->output_sample_rate_hz);
  467. SYS_LOG_INF("volume : %d", audio_track->volume);
  468. SYS_LOG_INF("audio_stream : %p", audio_track->audio_stream);
  469. audio_system_mutex_unlock();
  470. return audio_track;
  471. err_exit:
  472. if (audio_track)
  473. mem_free(audio_track);
  474. audio_system_mutex_unlock();
  475. return NULL;
  476. }
  477. int audio_track_destory(struct audio_track_t *handle)
  478. {
  479. assert(handle);
  480. SYS_LOG_INF("destory %p begin", handle);
  481. audio_system_mutex_lock();
  482. if (audio_system_unregister_track(handle)) {
  483. SYS_LOG_ERR(" failed\n");
  484. return -ESRCH;
  485. }
  486. if (handle->audio_handle) {
  487. hal_aout_channel_close(handle->audio_handle);
  488. }
  489. if (handle->audio_stream) {
  490. stream_close(handle->audio_stream);
  491. stream_destroy(handle->audio_stream);
  492. }
  493. #ifdef CONFIG_MEDIA_EFFECT
  494. if (handle->fade_handle)
  495. media_fade_close(handle->fade_handle);
  496. #endif
  497. mem_free(handle);
  498. audio_system_mutex_unlock();
  499. SYS_LOG_INF("destory %p ok", handle);
  500. return 0;
  501. }
  502. int audio_track_start(struct audio_track_t *handle)
  503. {
  504. assert(handle);
  505. audio_track_set_waitto_start(handle, false);
  506. if (!handle->stared && stream_get_length(handle->audio_stream) >= handle->pcm_frame_size) {
  507. os_sched_lock();
  508. if (handle->event_cb) {
  509. handle->event_cb(1, handle->user_data);
  510. }
  511. handle->stared = 1;
  512. hal_aout_channel_reset_sample_cnt(handle->audio_handle);
  513. stream_read(handle->audio_stream, handle->pcm_frame_buff, handle->pcm_frame_size);
  514. handle->total_samples_filled = handle->pcm_frame_size / handle->frame_size;
  515. handle->sample_fix = 0;
  516. #ifdef CONFIG_MEDIA_EFFECT
  517. if (handle->fade_handle && (handle->fade_mode == FADE_MODE_IN)) {
  518. int samples = handle->pcm_frame_size / handle->frame_size;
  519. media_fade_process(handle->fade_handle, (void **)&handle->pcm_frame_buff, samples);
  520. }
  521. #endif
  522. if ((handle->channel_mode & AUDIO_DMA_RELOAD_MODE) == AUDIO_DMA_RELOAD_MODE) {
  523. hal_aout_channel_start(handle->audio_handle);
  524. } else {
  525. hal_aout_channel_write_data(handle->audio_handle, handle->pcm_frame_buff, handle->pcm_frame_size);
  526. }
  527. os_sched_unlock();
  528. }
  529. return 0;
  530. }
  531. int audio_track_stop(struct audio_track_t *handle)
  532. {
  533. assert(handle);
  534. SYS_LOG_INF("stop %p begin ", handle);
  535. handle->stared = 0;
  536. if (handle->audio_handle)
  537. hal_aout_channel_stop(handle->audio_handle);
  538. SYS_LOG_INF("stop %p ok ", handle);
  539. return 0;
  540. }
  541. int audio_track_pause(struct audio_track_t *handle)
  542. {
  543. assert(handle);
  544. handle->muted = 1;
  545. stream_flush(handle->audio_stream);
  546. return 0;
  547. }
  548. int audio_track_resume(struct audio_track_t *handle)
  549. {
  550. assert(handle);
  551. handle->muted = 0;
  552. return 0;
  553. }
  554. int audio_track_mute(struct audio_track_t *handle, int mute)
  555. {
  556. assert(handle);
  557. handle->muted = mute;
  558. return 0;
  559. }
  560. int audio_track_is_muted(struct audio_track_t *handle)
  561. {
  562. assert(handle);
  563. return handle->muted;
  564. }
  565. int audio_track_write(struct audio_track_t *handle, unsigned char *buf, int num)
  566. {
  567. int ret = 0;
  568. assert(handle && handle->audio_stream);
  569. ret = stream_write(handle->audio_stream, buf, num);
  570. if (ret != num) {
  571. SYS_LOG_WRN(" %d %d\n", ret, num);
  572. }
  573. return ret;
  574. }
  575. int audio_track_flush(struct audio_track_t *handle)
  576. {
  577. int try_cnt = 0;
  578. uint32_t flags;
  579. bool reload_mode = ((handle->channel_mode & AUDIO_DMA_RELOAD_MODE) == AUDIO_DMA_RELOAD_MODE);
  580. assert(handle);
  581. flags = irq_lock();
  582. if (handle->flushed) {
  583. irq_unlock(flags);
  584. return 0;
  585. }
  586. /**wait trace stream read empty*/
  587. handle->flushed = 1;
  588. irq_unlock(flags);
  589. if(reload_mode) {
  590. while (stream_get_length(handle->audio_stream) > 0
  591. && (try_cnt++ < 100) && handle->stared) {
  592. if (try_cnt % 10 == 0) {
  593. SYS_LOG_INF("try_cnt %d stream %d\n", try_cnt,
  594. stream_get_length(handle->audio_stream));
  595. }
  596. os_sleep(2);
  597. }
  598. SYS_LOG_INF("try_cnt %d, left_len %d\n", try_cnt,
  599. stream_get_length(handle->audio_stream));
  600. } else {
  601. int pcm_buffer_size = hal_aout_channel_get_buffer_size(handle->audio_handle) - 1;
  602. while ((hal_aout_channel_get_buffer_space(handle->audio_handle) < pcm_buffer_size)
  603. && (try_cnt++ < 100) && handle->stared) {
  604. if (try_cnt % 10 == 0) {
  605. SYS_LOG_INF("try_cnt %d space %d\n", try_cnt,
  606. hal_aout_channel_get_buffer_space(handle->audio_handle));
  607. }
  608. os_sleep(2);
  609. }
  610. #ifdef CONFIG_MEDIA_EFFECT
  611. SYS_LOG_INF("try_cnt %d, left_len %d + %d, fadeout: %d\n", try_cnt,
  612. pcm_buffer_size + 1 - hal_aout_channel_get_buffer_space(handle->audio_handle),
  613. stream_get_length(handle->audio_stream),
  614. media_fade_out_is_finished(handle->fade_handle));
  615. #endif
  616. }
  617. audio_track_set_mix_stream(handle, NULL, 0, 1, AUDIO_STREAM_TTS);
  618. return 0;
  619. }
  620. int audio_track_set_fade_in(struct audio_track_t *handle, int fade_time)
  621. {
  622. assert(handle);
  623. #if defined(CONFIG_MEDIA_EFFECT)
  624. if (handle->fade_handle && (handle->fade_mode != FADE_MODE_IN)) {
  625. SYS_LOG_INF("fade in %d\n", fade_time);
  626. media_fade_in_set(handle->fade_handle, fade_time);
  627. handle->fade_mode = FADE_MODE_IN;
  628. }
  629. #endif
  630. return 0;
  631. }
  632. int audio_track_set_fade_out(struct audio_track_t *handle, int fade_time)
  633. {
  634. assert(handle);
  635. #if defined(CONFIG_MEDIA_EFFECT)
  636. if (handle->fade_handle && (handle->fade_mode != FADE_MODE_OUT)) {
  637. SYS_LOG_INF("fade out %d\n", fade_time);
  638. media_fade_out_set(handle->fade_handle, fade_time);
  639. handle->fade_mode = FADE_MODE_OUT;
  640. }
  641. #endif
  642. return 0;
  643. }
  644. int audio_track_set_waitto_start(struct audio_track_t *handle, bool wait)
  645. {
  646. assert(handle);
  647. handle->waitto_start = wait ? 1 : 0;
  648. return 0;
  649. }
  650. int audio_track_is_waitto_start(struct audio_track_t *handle)
  651. {
  652. if (!handle)
  653. return 0;
  654. return handle->waitto_start;
  655. }
  656. int audio_track_set_volume(struct audio_track_t *handle, int volume)
  657. {
  658. uint32_t pa_volume = 0;
  659. assert(handle);
  660. SYS_LOG_INF(" volume %d\n", volume);
  661. if (volume) {
  662. if (!handle->muted) {
  663. hal_aout_channel_mute_ctl(handle->audio_handle, 0);
  664. }
  665. pa_volume = audio_policy_get_pa_volume(handle->stream_type, volume);
  666. hal_aout_channel_set_pa_vol_level(handle->audio_handle, pa_volume);
  667. } else {
  668. hal_aout_channel_mute_ctl(handle->audio_handle, 1);
  669. if (audio_policy_get_out_channel_type(handle->stream_type) == AUDIO_CHANNEL_I2STX) {
  670. /* i2s not support mute, so we set lowest volume -71625*/
  671. pa_volume = -71625;
  672. hal_aout_channel_set_pa_vol_level(handle->audio_handle, pa_volume);
  673. }
  674. }
  675. handle->volume = volume;
  676. return 0;
  677. }
  678. int audio_track_set_pa_volume(struct audio_track_t *handle, int pa_volume)
  679. {
  680. assert(handle);
  681. SYS_LOG_INF("pa_volume %d\n", pa_volume);
  682. hal_aout_channel_mute_ctl(handle->audio_handle, 0);
  683. hal_aout_channel_set_pa_vol_level(handle->audio_handle, pa_volume);
  684. /* sync back to volume level, though meaningless for AUDIO_STREAM_VOICE at present. */
  685. handle->volume = audio_policy_get_volume_level_by_db(handle->stream_type, pa_volume / 100);
  686. return 0;
  687. }
  688. int audio_track_set_mute(struct audio_track_t *handle, bool mute)
  689. {
  690. assert(handle);
  691. SYS_LOG_INF(" mute %d\n", mute);
  692. handle->muted = mute;
  693. hal_aout_channel_mute_ctl(handle->audio_handle, mute);
  694. return 0;
  695. }
  696. int audio_track_get_volume(struct audio_track_t *handle)
  697. {
  698. assert(handle);
  699. return handle->volume;
  700. }
  701. int audio_track_set_samplerate(struct audio_track_t *handle, int sample_rate)
  702. {
  703. assert(handle);
  704. handle->sample_rate = sample_rate;
  705. return 0;
  706. }
  707. int audio_track_get_samplerate(struct audio_track_t *handle)
  708. {
  709. assert(handle);
  710. return handle->sample_rate;
  711. }
  712. io_stream_t audio_track_get_stream(struct audio_track_t *handle)
  713. {
  714. assert(handle);
  715. return handle->audio_stream;
  716. }
  717. int audio_track_get_fill_samples(struct audio_track_t *handle)
  718. {
  719. assert(handle);
  720. if (handle->fill_cnt) {
  721. SYS_LOG_INF("fill_cnt %d\n", handle->fill_cnt);
  722. }
  723. return handle->fill_cnt;
  724. }
  725. int audio_track_compensate_samples(struct audio_track_t *handle, int samples_cnt)
  726. {
  727. #ifdef CONFIG_SYS_IRQ_LOCK
  728. SYS_IRQ_FLAGS flags;
  729. #endif
  730. assert(handle);
  731. #ifdef CONFIG_SYS_IRQ_LOCK
  732. sys_irq_lock(&flags);
  733. #endif
  734. handle->compensate_samples = samples_cnt;
  735. #ifdef CONFIG_SYS_IRQ_LOCK
  736. sys_irq_unlock(&flags);
  737. #endif
  738. return 0;
  739. }
  740. uint32_t audio_track_get_play_time(struct audio_track_t *handle)
  741. {
  742. uint32_t play_time;
  743. uint32_t sample_count;
  744. uint64_t sample_play;
  745. int32_t sample_fix;
  746. assert(handle);
  747. if(!handle->stared)
  748. return 0;
  749. uint32_t flags;
  750. flags = irq_lock();
  751. sample_play = handle->total_samples_filled + handle->sample_fix;
  752. sample_fix = handle->sample_fix;
  753. sample_count = hal_aout_channel_get_sample_cnt(handle->audio_handle) / handle->channels;
  754. irq_unlock(flags);
  755. if((sample_play & 0x3FFFll) >= (sample_count & 0x3FFF)) {
  756. sample_play = (sample_play & ~0x3FFFll) | (sample_count & 0x3FFF);
  757. } else {
  758. sample_play = ((sample_play & ~0x3FFFll) | (sample_count & 0x3FFF)) - 0x4000;
  759. }
  760. play_time = (sample_play - sample_fix) * 1000 / handle->output_sample_rate_hz;
  761. return play_time;
  762. }
  763. uint32_t audio_track_get_play_sample_cnt(struct audio_track_t *handle)
  764. {
  765. return hal_aout_channel_get_sample_cnt(handle->audio_handle) / handle->channels;
  766. }
  767. int audio_track_set_lr_channel_enable(struct audio_track_t *handle, bool l_enable, bool r_enable)
  768. {
  769. assert(handle);
  770. SYS_LOG_INF("lr enable: %d, %d\n", l_enable, r_enable);
  771. return hal_aout_lr_channel_enable(handle->audio_handle, l_enable, r_enable);
  772. }
  773. int audio_track_set_fifo_src(struct audio_track_t *handle, bool from_dsp, void *dsp_audio_set_param)
  774. {
  775. int ret = 0;
  776. assert(handle);
  777. SYS_LOG_INF("from dsp: %d\n", from_dsp);
  778. if (from_dsp) {
  779. int he_thres;
  780. int hf_thres;
  781. switch(handle->stream_type) {
  782. case AUDIO_STREAM_MUSIC:
  783. //he_thres = 0x780;
  784. he_thres = handle->output_sample_rate_hz / 1000 * handle->channels * 12;
  785. hf_thres = he_thres + 0x4;
  786. break;
  787. case AUDIO_STREAM_VOICE:
  788. he_thres = handle->output_sample_rate_hz / 1000 * handle->channels * 4;
  789. hf_thres = he_thres + 0x4;
  790. break;
  791. case AUDIO_STREAM_TTS:
  792. he_thres = handle->output_sample_rate_hz / 1000 * handle->channels * 16;
  793. hf_thres = he_thres + 0x4;
  794. break;
  795. default:
  796. he_thres = 0xF0;
  797. hf_thres = he_thres + 0x4;
  798. break;
  799. }
  800. handle->dsp_fifo_src = 1;
  801. hal_aout_set_pcm_threshold(handle->audio_handle, he_thres, hf_thres);
  802. ret = hal_aout_set_fifo_src(handle->audio_handle, handle->channel_id, true, dsp_audio_set_param);
  803. hal_aout_channel_start(handle->audio_handle);
  804. handle->stared = 1;
  805. } else {
  806. ret = hal_aout_set_fifo_src(handle->audio_handle, handle->channel_id, false, NULL);
  807. }
  808. return ret;
  809. }
  810. int audio_track_set_mix_stream(struct audio_track_t *handle, io_stream_t mix_stream,
  811. uint8_t sample_rate, uint8_t channels, uint8_t stream_type)
  812. {
  813. #ifdef CONFIG_MEDIA_EFFECT
  814. int res = 0;
  815. assert(handle);
  816. audio_system_mutex_lock();
  817. if (audio_system_get_track() != handle) {
  818. goto exit;
  819. }
  820. if (mix_stream) {
  821. uint16_t *frame_buf = media_mem_get_cache_pool(RESAMPLE_FRAME_DATA, stream_type);
  822. int frame_buf_size = media_mem_get_cache_pool_size(RESAMPLE_FRAME_DATA, stream_type);
  823. uint8_t res_channels = MIN(channels, handle->channels);
  824. if (sample_rate != handle->sample_rate) {
  825. int frame_size;
  826. handle->res_handle = media_resample_open(
  827. res_channels, sample_rate, handle->sample_rate,
  828. &handle->res_in_samples, &handle->res_out_samples, stream_type);
  829. if (!handle->res_handle) {
  830. SYS_LOG_ERR("media_resample_open failed");
  831. res = -ENOMEM;
  832. goto exit;
  833. }
  834. frame_size = channels * (ROUND_UP(handle->res_in_samples, 2) + ROUND_UP(handle->res_out_samples, 2));
  835. if (frame_buf_size / 2 < frame_size) {
  836. SYS_LOG_ERR("frame mem not enough");
  837. media_resample_close(handle->res_handle);
  838. handle->res_handle = NULL;
  839. res = -ENOMEM;
  840. goto exit;
  841. }
  842. handle->res_in_buf[0] = frame_buf;
  843. handle->res_in_buf[1] = (channels > 1) ?
  844. handle->res_in_buf[0] + ROUND_UP(handle->res_in_samples, 2) : handle->res_in_buf[0];
  845. handle->res_out_buf[0] = handle->res_in_buf[1] + ROUND_UP(handle->res_in_samples, 2);
  846. handle->res_out_buf[1] = (res_channels > 1) ?
  847. handle->res_out_buf[0] + ROUND_UP(handle->res_out_samples, 2) : handle->res_out_buf[0];
  848. } else {
  849. handle->res_in_samples = frame_buf_size / 2 / channels;
  850. handle->res_in_buf[0] = frame_buf;
  851. handle->res_in_buf[1] = (channels > 1) ?
  852. handle->res_in_buf[0] + handle->res_in_samples : handle->res_in_buf[0];
  853. handle->res_out_buf[0] = handle->res_in_buf[0];
  854. handle->res_out_buf[1] = handle->res_in_buf[1];
  855. }
  856. handle->res_out_samples = 0;
  857. handle->res_remain_samples = 0;
  858. /* open mix: only support 1 mix channels */
  859. if (handle->mix_channels == 1) {
  860. handle->mix_handle = media_mix_open(handle->sample_rate, handle->channels, 1);
  861. }
  862. }
  863. handle->mix_stream = mix_stream;
  864. handle->mix_sample_rate = sample_rate;
  865. handle->mix_channels = channels;
  866. if (!handle->mix_stream) {
  867. if (handle->res_handle) {
  868. media_resample_close(handle->res_handle);
  869. handle->res_handle = NULL;
  870. }
  871. if (handle->mix_handle) {
  872. media_mix_close(handle->mix_handle);
  873. handle->mix_handle = NULL;
  874. }
  875. }
  876. SYS_LOG_INF("mix_stream %p, sample_rate %d->%d\n",
  877. mix_stream, sample_rate, handle->sample_rate);
  878. exit:
  879. audio_system_mutex_unlock();
  880. return res;
  881. #else
  882. return -ENOSYS;
  883. #endif /* CONFIG_MEDIA_EFFECT */
  884. }
  885. io_stream_t audio_track_get_mix_stream(struct audio_track_t *handle)
  886. {
  887. assert(handle);
  888. return handle->mix_stream;
  889. }