arithmetic.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648
  1. /*
  2. * Copyright (c) 2017 Actions Semi Co., Ltd.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. * Author: wh<wanghui@actions-semi.com>
  16. *
  17. * Change log:
  18. * 2018/1/20: Created by wh.
  19. */
  20. /**
  21. * @defgroup arithmetic_apis arithmetic APIs
  22. * @ingroup mem_managers
  23. * @{
  24. */
  25. #include <os_common_api.h>
  26. #include <arithmetic.h>
  27. /*******************************************************************************
  28. * actions decoder ops
  29. ******************************************************************************/
  30. /**
  31. * @brief check real audio format
  32. *
  33. * This routine provides checking audio format
  34. *
  35. * @param storage_io pointer of storage io
  36. * @extension buffer (require 8 bytes) to store format extension, all lower case, like mp3, wav, flac, etc.
  37. *
  38. * @return 0 if succeed, others failed
  39. */
  40. #ifndef CONFIG_AL_FORMAT_CHECK
  41. int as_decoder_format_check(void *storage_io, char extension[8])
  42. {
  43. SYS_LOG_WRN("this function not support");
  44. return AD_RET_UNEXPECTED;
  45. }
  46. #endif
  47. /**
  48. * @brief aac decoder operation
  49. *
  50. * This routine provides aac decoder operation
  51. *
  52. * @param hnd handle of aac decoder
  53. * @param cmd operation cmd, type of asdec_ex_ops_cmd_t
  54. * @param args args of decoder parama addr
  55. *
  56. * @return type of asdec_ret_t
  57. */
  58. #ifndef CONFIG_DECODER_AAC
  59. int as_decoder_ops_aac(void *hnd, asdec_ex_ops_cmd_t cmd, unsigned int args)
  60. {
  61. SYS_LOG_WRN("this function not support");
  62. return AD_RET_UNEXPECTED;
  63. }
  64. #endif
  65. /**
  66. * @brief act decoder operation
  67. *
  68. * This routine provides act decoder operation
  69. *
  70. * @param hnd handle of act decoder
  71. * @param cmd operation cmd, type of asdec_ex_ops_cmd_t
  72. * @param args args of decoder parama addr
  73. *
  74. * @return type of asdec_ret_t
  75. */
  76. #ifndef CONFIG_DECODER_ACT
  77. int as_decoder_ops_act(void *hnd, asdec_ex_ops_cmd_t cmd, unsigned int args)
  78. {
  79. SYS_LOG_WRN("this function not support");
  80. return AD_RET_UNEXPECTED;
  81. }
  82. #endif
  83. /**
  84. * @brief ape decoder operation
  85. *
  86. * This routine provides ape decoder operation
  87. *
  88. * @param hnd handle of ape decoder
  89. * @param cmd operation cmd, type of asdec_ex_ops_cmd_t
  90. * @param args args of decoder parama addr
  91. *
  92. * @return type of asdec_ret_t
  93. */
  94. #ifndef CONFIG_DECODER_APE
  95. int as_decoder_ops_ape(void *hnd, asdec_ex_ops_cmd_t cmd, unsigned int args)
  96. {
  97. SYS_LOG_WRN("this function not support");
  98. return AD_RET_UNEXPECTED;
  99. }
  100. #endif
  101. /**
  102. * @brief cvsd decoder operation
  103. *
  104. * This routine provides cvsd decoder operation
  105. *
  106. * @param hnd handle of cvsd decoder
  107. * @param cmd operation cmd, type of asdec_ex_ops_cmd_t
  108. * @param args args of decoder parama addr
  109. *
  110. * @return type of asdec_ret_t
  111. */
  112. #ifndef CONFIG_DECODER_CVSD
  113. int as_decoder_ops_cvsd(void *hnd, asdec_ex_ops_cmd_t cmd, unsigned int args)
  114. {
  115. SYS_LOG_WRN("this function not support");
  116. return AD_RET_UNEXPECTED;
  117. }
  118. #endif
  119. /**
  120. * @brief flac decoder operation
  121. *
  122. * This routine provides flac decoder operation
  123. *
  124. * @param hnd handle of flac decoder
  125. * @param cmd operation cmd, type of asdec_ex_ops_cmd_t
  126. * @param args args of decoder parama addr
  127. *
  128. * @return type of asdec_ret_t
  129. */
  130. #ifndef CONFIG_DECODER_FLAC
  131. int as_decoder_ops_flac(void *hnd, asdec_ex_ops_cmd_t cmd, unsigned int args)
  132. {
  133. SYS_LOG_WRN("this function not support");
  134. return AD_RET_UNEXPECTED;
  135. }
  136. #endif
  137. /**
  138. * @brief mp3 decoder operation
  139. *
  140. * This routine provides mp3 decoder operation
  141. *
  142. * @param hnd handle of mp3 decoder
  143. * @param cmd operation cmd, type of asdec_ex_ops_cmd_t
  144. * @param args args of decoder parama addr
  145. *
  146. * @return type of asdec_ret_t
  147. */
  148. #ifndef CONFIG_DECODER_MP3
  149. int as_decoder_ops_mp3(void *hnd, asdec_ex_ops_cmd_t cmd, unsigned int args)
  150. {
  151. SYS_LOG_WRN("this function not support");
  152. return AD_RET_UNEXPECTED;
  153. }
  154. #endif
  155. /**
  156. * @brief pcm decoder operation
  157. *
  158. * This routine provides pcm decoder operation
  159. *
  160. * @param hnd handle of pcm decoder
  161. * @param cmd operation cmd, type of asdec_ex_ops_cmd_t
  162. * @param args args of decoder parama addr
  163. *
  164. * @return type of asdec_ret_t
  165. */
  166. #ifndef CONFIG_DECODER_PCM
  167. int as_decoder_ops_pcm(void *hnd, asdec_ex_ops_cmd_t cmd, unsigned int args)
  168. {
  169. SYS_LOG_WRN("this function not support");
  170. return AD_RET_UNEXPECTED;
  171. }
  172. #endif
  173. /**
  174. * @brief sbc decoder operation
  175. *
  176. * This routine provides sbc decoder operation
  177. *
  178. * @param hnd handle of sbc decoder
  179. * @param cmd operation cmd, type of asdec_ex_ops_cmd_t
  180. * @param args args of decoder parama addr
  181. *
  182. * @return type of asdec_ret_t
  183. */
  184. #ifndef CONFIG_DECODER_SBC
  185. int as_decoder_ops_sbc(void *hnd, asdec_ex_ops_cmd_t cmd, unsigned int args)
  186. {
  187. SYS_LOG_WRN("this function not support");
  188. return AD_RET_UNEXPECTED;
  189. }
  190. #endif
  191. /**
  192. * @brief wav decoder operation
  193. *
  194. * This routine provides wav decoder operation
  195. *
  196. * @param hnd handle of wav decoder
  197. * @param cmd operation cmd, type of asdec_ex_ops_cmd_t
  198. * @param args args of decoder parama addr
  199. *
  200. * @return type of asdec_ret_t
  201. */
  202. #ifndef CONFIG_DECODER_WAV
  203. int as_decoder_ops_wav(void *hnd, asdec_ex_ops_cmd_t cmd, unsigned int args)
  204. {
  205. SYS_LOG_WRN("this function not support");
  206. return AD_RET_UNEXPECTED;
  207. }
  208. #endif
  209. /**
  210. * @brief wma decoder operation
  211. *
  212. * This routine provides wma decoder operation
  213. *
  214. * @param hnd handle of wma decoder
  215. * @param cmd operation cmd, type of asdec_ex_ops_cmd_t
  216. * @param args args of decoder parama addr
  217. *
  218. * @return type of asdec_ret_t
  219. */
  220. #ifndef CONFIG_DECODER_WMA
  221. int as_decoder_ops_wma(void *hnd, asdec_ex_ops_cmd_t cmd, unsigned int args)
  222. {
  223. SYS_LOG_WRN("this function not support");
  224. return AD_RET_UNEXPECTED;
  225. }
  226. #endif
  227. /*******************************************************************************
  228. * actions encoder ops
  229. ******************************************************************************/
  230. /**
  231. * @brief cvsd encoder operation
  232. *
  233. * This routine provides cvsd encoder operation
  234. *
  235. * @param hnd handle of cvsd encoder
  236. * @param cmd operation cmd, type of asenc_ex_ops_cmd_t
  237. * @param args args of encoder parama addr
  238. *
  239. * @return type of asenc_ret_t
  240. */
  241. #ifndef CONFIG_ENCODER_CVSD
  242. int as_encoder_ops_cvsd(void *hnd, asenc_ex_ops_cmd_t cmd, unsigned int args)
  243. {
  244. SYS_LOG_WRN("this function not support");
  245. return AE_RET_UNEXPECTED;
  246. }
  247. #endif
  248. /**
  249. * @brief mp3 encoder operation
  250. *
  251. * This routine provides mp3 encoder operation
  252. *
  253. * @param hnd handle of mp3 encoder
  254. * @param cmd operation cmd, type of asenc_ex_ops_cmd_t
  255. * @param args args of encoder parama addr
  256. *
  257. * @return type of asenc_ret_t
  258. */
  259. #ifndef CONFIG_ENCODER_MP3
  260. int as_encoder_ops_mp2(void *hnd, asenc_ex_ops_cmd_t cmd, unsigned int args)
  261. {
  262. SYS_LOG_WRN("this function not support");
  263. return AE_RET_UNEXPECTED;
  264. }
  265. #endif
  266. /**
  267. * @brief opus encoder operation
  268. *
  269. * This routine provides opus encoder operation
  270. *
  271. * @param hnd handle of opus encoder
  272. * @param cmd operation cmd, type of asenc_ex_ops_cmd_t
  273. * @param args args of encoder parama addr
  274. *
  275. * @return type of asenc_ret_t
  276. */
  277. #ifndef CONFIG_ENCODER_OPUS
  278. int as_encoder_ops_opus(void *hnd, asenc_ex_ops_cmd_t cmd, unsigned int args)
  279. {
  280. SYS_LOG_WRN("this function not support");
  281. return AE_RET_UNEXPECTED;
  282. }
  283. #endif
  284. /**
  285. * @brief pcm encoder operation
  286. *
  287. * This routine provides pcm encoder operation
  288. *
  289. * @param hnd handle of act encoder
  290. * @param cmd operation cmd, type of asenc_ex_ops_cmd_t
  291. * @param args args of encoder parama addr
  292. *
  293. * @return type of asenc_ret_t
  294. */
  295. #ifndef CONFIG_ENCODER_PCM
  296. int as_encoder_ops_pcm(void *hnd, asenc_ex_ops_cmd_t cmd, unsigned int args)
  297. {
  298. SYS_LOG_WRN("this function not support");
  299. return AE_RET_UNEXPECTED;
  300. }
  301. #endif
  302. /**
  303. * @brief sbc encoder operation
  304. *
  305. * This routine provides sbc encoder operation
  306. *
  307. * @param hnd handle of sbc encoder
  308. * @param cmd operation cmd, type of asenc_ex_ops_cmd_t
  309. * @param args args of encoder parama addr
  310. *
  311. * @return type of asenc_ret_t
  312. */
  313. #ifndef CONFIG_ENCODER_SBC
  314. int as_encoder_ops_sbc(void *hnd, asenc_ex_ops_cmd_t cmd, unsigned int args)
  315. {
  316. SYS_LOG_WRN("this function not support");
  317. return AE_RET_UNEXPECTED;
  318. }
  319. #endif
  320. /**
  321. * @brief wav encoder operation
  322. *
  323. * This routine provides wav encoder operation
  324. *
  325. * @param hnd handle of wav encoder
  326. * @param cmd operation cmd, type of asenc_ex_ops_cmd_t
  327. * @param args args of encoder parama addr
  328. *
  329. * @return type of asenc_ret_t
  330. */
  331. #ifndef CONFIG_ENCODER_WAV
  332. int as_encoder_ops_wav(void *hnd, asenc_ex_ops_cmd_t cmd, unsigned int args)
  333. {
  334. SYS_LOG_WRN("this function not support");
  335. return AE_RET_UNEXPECTED;
  336. }
  337. #endif
  338. /*******************************************************************************
  339. * actions parser ops
  340. ******************************************************************************/
  341. /**
  342. * @brief mp3 parser operation
  343. *
  344. * This routine provides mp3 parser operation
  345. *
  346. * @param hnd handle of mp3 parser
  347. * @param cmd operation cmd, type of asparse_ex_ops_cmd_t
  348. * @param args args of parser parama addr
  349. *
  350. * @return type of asparse_ret_t
  351. */
  352. #ifndef CONFIG_PARSER_MP3
  353. int as_parser_ops_mp3(void *hnd, asparse_ex_ops_cmd_t cmd, unsigned int args)
  354. {
  355. SYS_LOG_WRN("this function not support");
  356. return AP_RET_UNEXPECTED;
  357. }
  358. #endif
  359. /**
  360. * @brief wav parser operation
  361. *
  362. * This routine provides wav parser operation
  363. *
  364. * @param hnd handle of wav parser
  365. * @param cmd operation cmd, type of asparse_ex_ops_cmd_t
  366. * @param args args of parser parama addr
  367. *
  368. * @return type of asparse_ret_t
  369. */
  370. #ifndef CONFIG_PARSER_WAV
  371. int as_parser_ops_wav(void *hnd, asparse_ex_ops_cmd_t cmd, unsigned int args)
  372. {
  373. SYS_LOG_WRN("this function not support");
  374. return AP_RET_UNEXPECTED;
  375. }
  376. #endif
  377. /**
  378. * @brief aac parser operation
  379. *
  380. * This routine provides wav parser operation
  381. *
  382. * @param hnd handle of wav parser
  383. * @param cmd operation cmd, type of asparse_ex_ops_cmd_t
  384. * @param args args of parser parama addr
  385. *
  386. * @return type of asparse_ret_t
  387. */
  388. #ifndef CONFIG_PARSER_M4A
  389. int as_parser_ops_a13(void *hnd, asparse_ex_ops_cmd_t cmd, unsigned int args)
  390. {
  391. SYS_LOG_WRN("this function not support");
  392. return AP_RET_UNEXPECTED;
  393. }
  394. #endif
  395. /**
  396. * @brief ape parser operation
  397. *
  398. * This routine provides ape parser operation
  399. *
  400. * @param hnd handle of ape parser
  401. * @param cmd operation cmd, type of asparse_ex_ops_cmd_t
  402. * @param args args of parser parama addr
  403. *
  404. * @return type of asparse_ret_t
  405. */
  406. #ifndef CONFIG_PARSER_APE
  407. int as_parser_ops_ape(void *hnd, asparse_ex_ops_cmd_t cmd, unsigned int args)
  408. {
  409. SYS_LOG_WRN("this function not support");
  410. return AP_RET_UNEXPECTED;
  411. }
  412. #endif
  413. /**
  414. * @brief falc parser operation
  415. *
  416. * This routine provides falc parser operation
  417. *
  418. * @param hnd handle of falc parser
  419. * @param cmd operation cmd, type of asparse_ex_ops_cmd_t
  420. * @param args args of parser parama addr
  421. *
  422. * @return type of asparse_ret_t
  423. */
  424. #ifndef CONFIG_PARSER_FLAC
  425. int as_parser_ops_flac(void *hnd, asparse_ex_ops_cmd_t cmd, unsigned int args)
  426. {
  427. SYS_LOG_WRN("this function not support");
  428. return AP_RET_UNEXPECTED;
  429. }
  430. #endif
  431. /**
  432. * @brief wma parser operation
  433. *
  434. * This routine provides wma parser operation
  435. *
  436. * @param hnd handle of wma parser
  437. * @param cmd operation cmd, type of asparse_ex_ops_cmd_t
  438. * @param args args of parser parama addr
  439. *
  440. * @return type of asparse_ret_t
  441. */
  442. #ifndef CONFIG_PARSER_WMA
  443. int as_parser_ops_wma(void *hnd, asparse_ex_ops_cmd_t cmd, unsigned int args)
  444. {
  445. SYS_LOG_WRN("this function not support");
  446. return AP_RET_UNEXPECTED;
  447. }
  448. #endif
  449. /*******************************************************************************
  450. * actions hfp speech ops
  451. ******************************************************************************/
  452. /**
  453. * @brief hfp plc operation
  454. *
  455. * This routine provides hfp plc operation
  456. *
  457. * @param hnd handle hfp plc
  458. * @param cmd operation cmd, type of plc_ex_ops_cmd_t
  459. * @param args args of hfp plc parama addr
  460. *
  461. * @return type of hs_ret_t;
  462. */
  463. #ifndef CONFIG_HFP_PLC
  464. int hfp_plc_ops(void *hnd, plc_ex_ops_cmd_t cmd, unsigned int args)
  465. {
  466. SYS_LOG_WRN("this function not support");
  467. return HS_RET_UNEXPECTED;
  468. }
  469. #endif
  470. /**
  471. * @brief hfp speech operation
  472. *
  473. * This routine provides hfp speech operation
  474. *
  475. * @param hnd handle of hfp speech
  476. * @param cmd operation cmd, type of hfp_ex_ops_cmd_t
  477. * @param args args of hfp speech parama addr
  478. *
  479. * @return type of hs_ret_t;
  480. */
  481. #ifndef CONFIG_HFP_SPEECH
  482. int hfp_speech_ops(void *hnd, hfp_ex_ops_cmd_t cmd, unsigned int args)
  483. {
  484. SYS_LOG_WRN("this function not support");
  485. return HS_RET_UNEXPECTED;
  486. }
  487. #endif
  488. /**
  489. * @brief as hfp dae operation
  490. *
  491. * This routine provides as hfp dae operation
  492. *
  493. * @param hnd handle of as hfp dae
  494. * @param cmd operation cmd, type of as_dae_h_ex_ops_cmd_t
  495. * for DAE_H_CMD_MEM_REQUIRE, args type is as_mem_info_t* in audio_codec.h
  496. * for DAE_H_CMD_OPEN, args type is as_dae_h_open_t*
  497. * for DAE_H_CMD_SET_DAE_PARA, args type is as_dae_h_para_info_t* in as_dae_h_setting.h
  498. * for DAE_H_CMD_FRAME_PROCESS_SPEAKER, args type is as_dae_h_inout_pcm_t*
  499. * for DAE_H_CMD_FRAME_PROCESS_MIC, args type is as_dae_h_inout_pcm_t*
  500. * @param args args of dae parama addr
  501. *
  502. * @return type of as_dae_h_ret_t;
  503. */
  504. #ifndef CONFIG_HFP_DAE
  505. int as_dae_h_ops(void *hnd, as_dae_h_ex_ops_cmd_t cmd, unsigned int args)
  506. {
  507. SYS_LOG_WRN("this function not support");
  508. return DAE_H_RET_UNEXPECTED;
  509. }
  510. #endif
  511. /*******************************************************************************
  512. * actions dae
  513. ******************************************************************************/
  514. /**
  515. * @brief as dae operation
  516. *
  517. * This routine provides as dae operation
  518. *
  519. * @param hnd handle of as dae
  520. * @param cmd operation cmd, type of as_dae_ex_ops_cmd_t
  521. * for DAE_CMD_MEM_REQUIRE, args type is as_mem_info_t* in audio_codec.h
  522. * for DAE_CMD_OPEN, args for reserve
  523. * for DAE_CMD_SET_DAE_PARA, args type is as_dae_para_info_t* in as_dae_setting.h
  524. * for DAE_CMD_FRAME_PROCESS, args type is as_dae_inout_pcm_t*
  525. * for DAE_CMD_GET_STATUS, args type is as_dae_status_t*
  526. * @param args args of dae parama addr
  527. *
  528. * @return type of as_dae_ret_t;
  529. */
  530. #ifndef CONFIG_MUSIC_DAE
  531. int as_dae_ops(void *hnd, as_dae_ex_ops_cmd_t cmd, unsigned int args)
  532. {
  533. SYS_LOG_WRN("this function not support");
  534. return DAE_RET_UNEXPECTED;
  535. }
  536. #endif
  537. /**
  538. * @brief as dae fade operation
  539. *
  540. * This routine provides as dae fade operation
  541. *
  542. * @param hnd handle of as dae fade
  543. * @param cmd operation cmd, type of as_dae_ex_ops_cmd_t
  544. * for AS_FADE_P_CMD_MEM_REQUIRE, args type is as_mem_info_t* in audio_codec.h
  545. * for AS_FADE_P_CMD_OPEN, args type is as_fade_p_open_t*
  546. * for AS_FADE_P_CMD_FRAME_PROCESS, args type is as_fade_p_pcm_t*
  547. * @param args args of dae fade parama addr
  548. *
  549. * @return type of as_fade_p_ret_t;
  550. */
  551. #ifndef CONFIG_MUSIC_DAE_FADE
  552. int as_fade_p_ops(void *hnd, as_fade_p_ex_ops_cmd_t cmd, unsigned int args)
  553. {
  554. SYS_LOG_WRN("this function not support");
  555. return AS_FADE_P_RET_UNEXPECTED;
  556. }
  557. #endif
  558. /*******************************************************************************
  559. * others
  560. ******************************************************************************/
  561. /**
  562. * @brief as mix operation
  563. *
  564. * This routine provides as mix operation
  565. *
  566. * @param hnd handle of as mix
  567. * @param cmd operation cmd, type of as_dae_ex_ops_cmd_t
  568. * for AS_MIX_P_CMD_MEM_REQUIRE, args type is as_mem_info_t* in audio_codec.h
  569. * for AS_MIX_P_CMD_OPEN, args type is as_mix_p_open_t*
  570. * for AS_MIX_P_CMD_FRAME_PROCESS, args type is as_mix_p_pcm_t*
  571. * @param args args of mix parama addr
  572. *
  573. * @return type of as_mix_p_ret_t;
  574. */
  575. #ifndef CONFIG_AUDIO_MIX
  576. int as_mix_p_ops(void *hnd, as_mix_p_ex_ops_cmd_t cmd, unsigned int args)
  577. {
  578. SYS_LOG_WRN("this function not support");
  579. return AS_MIX_P_RET_UNEXPECTED;
  580. }
  581. #endif
  582. /**
  583. * @brief as resample operation
  584. *
  585. * This routine provides as resample operation
  586. *
  587. * @param hnd handle of as resample
  588. * @param cmd operation cmd, type of as_res_ops_cmd_t
  589. * @param args args of resample parama addr
  590. *
  591. * @return 0 if successful, others failed;
  592. */
  593. #ifndef CONFIG_RESAMPLE
  594. int as_res_ops(void *hnd, as_res_ops_cmd_t cmd, unsigned int args)
  595. {
  596. SYS_LOG_WRN("this function not support");
  597. return -1;
  598. }
  599. #endif