Kconfig 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497
  1. # Kconfig - Actions memory manager
  2. #
  3. # Copyright (c) 2016 Actions Corporation
  4. #
  5. # SPDX-License-Identifier: Apache-2.0
  6. #
  7. menuconfig ACTIONS_LIBRARY
  8. bool
  9. prompt "Actions Library Support"
  10. default n
  11. help
  12. This option enables the Actions library .
  13. menuconfig ACTIONS_ALGORITHMS_LIBRARY
  14. bool
  15. prompt "ACTIONS SDK Algorithms library Support"
  16. depends on ACTIONS_LIBRARY
  17. default n
  18. help
  19. This option enables Actions Algorithms library.
  20. menuconfig ACTIONS_DECODER
  21. bool
  22. prompt "ACTIONS Decoder Support"
  23. depends on ACTIONS_ALGORITHMS_LIBRARY
  24. default n
  25. help
  26. This option enables the SDK DECODER FUNCTION.
  27. config DECODER_AAC
  28. bool
  29. prompt "support aac decoder"
  30. depends on ACTIONS_DECODER
  31. default n
  32. help
  33. This option enables the aac decoder.
  34. config DECODER_AAC_HW_ACCELERATION
  35. bool
  36. prompt "support aac hw acceleration decoder"
  37. depends on DECODER_AAC
  38. default y
  39. help
  40. This option enables the aac hw acceleration decoder.
  41. config DECODER_M4A
  42. bool
  43. prompt "support m4a decoder"
  44. depends on ACTIONS_DECODER
  45. default n
  46. help
  47. This option enables the m4a decoder.
  48. config DECODER_M4A_HW_ACCELERATION
  49. bool
  50. prompt "support m4a hw acceleration decoder"
  51. depends on DECODER_M4A
  52. default y
  53. help
  54. This option enables the m4a hw acceleration decoder.
  55. config DECODER_ACT
  56. bool
  57. prompt "support actii decoder"
  58. depends on ACTIONS_DECODER
  59. default n
  60. help
  61. This option enables the actii decoder.
  62. config DECODER_ACT_HW_ACCELERATION
  63. bool
  64. prompt "support ACTII hw acceleration decoder"
  65. depends on DECODER_ACT
  66. default y
  67. help
  68. This option enables the ACTII hw acceleration decoder.
  69. config DECODER_APE
  70. bool
  71. prompt "support ape decoder"
  72. depends on ACTIONS_DECODER
  73. default n
  74. help
  75. This option enables the APE decoder.
  76. config DECODER_APE_HW_ACCELERATION
  77. bool
  78. prompt "support ape hw acceleration decoder"
  79. depends on DECODER_APE
  80. default y
  81. help
  82. This option enables the ape hw acceleration decoder.
  83. config DECODER_CVSD
  84. bool
  85. prompt "support cvsd decoder"
  86. depends on ACTIONS_DECODER
  87. default n
  88. help
  89. This option enables the cvsd decoder.
  90. config DECODER_CVSD_HW_ACCELERATION
  91. bool
  92. prompt "support cvsd hw acceleration decoder"
  93. depends on DECODER_CVSD
  94. default y
  95. help
  96. This option enables the cvsd hw acceleration decoder.
  97. config DECODER_MSBC
  98. bool
  99. prompt "support msbc decoder"
  100. depends on ACTIONS_DECODER
  101. default n
  102. help
  103. This option enables the msbc decoder.
  104. config DECODER_MSBC_HW_ACCELERATION
  105. bool
  106. prompt "support msbc hw acceleration decoder"
  107. depends on DECODER_MSBC
  108. default y
  109. help
  110. This option enables the msbc hw acceleration decoder.
  111. config DECODER_FLAC
  112. bool
  113. prompt "support flac decoder"
  114. depends on ACTIONS_DECODER
  115. default n
  116. help
  117. This option enables the flac decoder.
  118. config DECODER_FLAC_HW_ACCELERATION
  119. bool
  120. prompt "support flac hw acceleration decoder"
  121. depends on DECODER_FLAC
  122. default y
  123. help
  124. This option enables the flac hw acceleration decoder.
  125. config DECODER_MP3
  126. bool
  127. prompt "support mp3 decoder"
  128. depends on ACTIONS_DECODER
  129. default n
  130. help
  131. This option enables the mp3 decoder.
  132. config DECODER_MP3_HW_ACCELERATION
  133. bool
  134. prompt "support mp3 hw acceleration decoder"
  135. depends on DECODER_MP3
  136. default y
  137. help
  138. This option enables the mp3 hw acceleration decoder.
  139. config DECODER_PCM
  140. bool
  141. prompt "support pcm convert decoder"
  142. depends on ACTIONS_DECODER
  143. default n
  144. help
  145. This option enables the pcm convert decoder.
  146. config DECODER_SBC
  147. bool
  148. prompt "support sbc decoder"
  149. depends on ACTIONS_DECODER
  150. default n
  151. help
  152. This option enables the sbc decoder.
  153. config DECODER_SBC_HW_ACCELERATION
  154. bool
  155. prompt "support sbc dsp hw acceleration decoder"
  156. depends on DECODER_SBC
  157. default y
  158. help
  159. This option enables the sbc dsp hw acceleration.
  160. config DECODER_WAV
  161. bool
  162. prompt "support wav decoder"
  163. depends on ACTIONS_DECODER
  164. default n
  165. help
  166. This option enables the wav decoder.
  167. config DECODER_WAV_HW_ACCELERATION
  168. bool
  169. prompt "support wav dsp hw acceleration decoder"
  170. depends on DECODER_WAV
  171. default y
  172. help
  173. This option enables the wav dsp hw acceleration .
  174. config DECODER_WMA
  175. bool
  176. prompt "support wma decoder"
  177. depends on ACTIONS_DECODER
  178. default n
  179. help
  180. This option enables the wma decoder.
  181. config DECODER_WMA_HW_ACCELERATION
  182. bool
  183. prompt "support wma dsp hw acceleration decoder"
  184. depends on DECODER_WMA
  185. default y
  186. help
  187. This option enables the wma dsp hw acceleration .
  188. config DECODER_NAV
  189. bool
  190. prompt "support NAV decoder"
  191. depends on ACTIONS_DECODER
  192. default n
  193. help
  194. This option enables the NAV decoder.
  195. config DECODER_NAV_HW_ACCELERATION
  196. bool
  197. prompt "support NAV hw acceleration decoder"
  198. depends on DECODER_NAV
  199. default y
  200. help
  201. This option enables the NAV hw acceleration decoder.
  202. menuconfig ACTIONS_ENCODER
  203. bool
  204. prompt "ACTIONS Encoder Support"
  205. depends on ACTIONS_ALGORITHMS_LIBRARY
  206. default n
  207. help
  208. This option enables the ENCODER FUNCTION.
  209. config ENCODER_CVSD
  210. bool
  211. prompt "support cvsd encoder"
  212. depends on ACTIONS_ENCODER
  213. default n
  214. help
  215. This option enables the cvsd encoder.
  216. config ENCODER_CVSD_HW_ACCELERATION
  217. bool
  218. prompt "support cvsd hw acceleration encoder"
  219. depends on ENCODER_CVSD
  220. default y
  221. help
  222. This option enables the cvsd hw acceleration encoder.
  223. config ENCODER_MSBC
  224. bool
  225. prompt "support msbc encoder"
  226. depends on ACTIONS_ENCODER
  227. default n
  228. help
  229. This option enables the msbc encoder.
  230. config ENCODER_MSBC_HW_ACCELERATION
  231. bool
  232. prompt "support msbc hw acceleration encoder"
  233. depends on ENCODER_MSBC
  234. default y
  235. help
  236. This option enables the msbc hw acceleration encoder.
  237. config ENCODER_MP3
  238. bool
  239. prompt "support mp3 encoder"
  240. depends on ACTIONS_ENCODER
  241. default n
  242. help
  243. This option enables the mp3 encoder.
  244. config ENCODER_MP3_HW_ACCELERATION
  245. bool
  246. prompt "support mp3 hw acceleration encoder"
  247. depends on ENCODER_MP3
  248. default y
  249. help
  250. This option enables the mp3 hw acceleration encoder.
  251. config ENCODER_OPUS
  252. bool
  253. prompt "support opus encoder"
  254. depends on ACTIONS_ENCODER
  255. default n
  256. help
  257. This option enables the opus encoder.
  258. config ENCODER_OPUS_HW_ACCELERATION
  259. bool
  260. prompt "support opus dsp hw acceleration decoder"
  261. depends on ENCODER_OPUS
  262. default y
  263. help
  264. This option enables the opus dsp hw acceleration .
  265. config ENCODER_PCM
  266. bool
  267. prompt "support pcm encoder"
  268. depends on ACTIONS_ENCODER
  269. default n
  270. help
  271. This option enables the PCM encoder.
  272. config ENCODER_SBC
  273. bool
  274. prompt "support sbc encoder"
  275. depends on ACTIONS_ENCODER
  276. default n
  277. help
  278. This option enables the sbc encoder.
  279. config ENCODER_SBC_HW_ACCELERATION
  280. bool
  281. prompt "support sbc dsp hw acceleration decoder"
  282. depends on ENCODER_SBC
  283. default y
  284. help
  285. This option enables the sbc dsp hw acceleration .
  286. config ENCODER_WAV
  287. bool
  288. prompt "support wav encoder"
  289. depends on ACTIONS_ENCODER
  290. default n
  291. help
  292. This option enables the wav encoder.
  293. config ENCODER_WAV_HW_ACCELERATION
  294. bool
  295. prompt "support wav dsp hw acceleration decoder"
  296. depends on ENCODER_WAV
  297. default y
  298. help
  299. This option enables the wav dsp hw acceleration .
  300. config ENCODER_NAV
  301. bool
  302. prompt "support NAV encoder"
  303. depends on ACTIONS_ENCODER
  304. default n
  305. help
  306. This option enables the NAV encoder.
  307. config ENCODER_NAV_HW_ACCELERATION
  308. bool
  309. prompt "support NAV dsp hw acceleration decoder"
  310. depends on ENCODER_NAV
  311. default y
  312. help
  313. This option enables the NAV dsp hw acceleration .
  314. menuconfig ACTIONS_PARSER
  315. bool
  316. prompt "Actions Parser Support"
  317. depends on ACTIONS_ALGORITHMS_LIBRARY
  318. default n
  319. help
  320. This option enables the PARSER FUNCTION.
  321. config PARSER_APE
  322. bool
  323. prompt "support ape parser"
  324. depends on ACTIONS_PARSER
  325. default n
  326. help
  327. This option enables the ape parser.
  328. config PARSER_FLAC
  329. bool
  330. prompt "support flac parser"
  331. depends on ACTIONS_PARSER
  332. default n
  333. help
  334. This option enables the flac parser.
  335. config PARSER_MP3
  336. bool
  337. prompt "support mp3 parser"
  338. depends on ACTIONS_PARSER
  339. default n
  340. help
  341. This option enables the mp3 parser.
  342. config PARSER_WAV
  343. bool
  344. prompt "support wav parser"
  345. depends on ACTIONS_PARSER
  346. default n
  347. help
  348. This option enables the wav parser.
  349. config PARSER_WMA
  350. bool
  351. prompt "support wma parser"
  352. depends on ACTIONS_PARSER
  353. default n
  354. help
  355. This option enables the wma parser.
  356. config PARSER_M4A
  357. bool
  358. prompt "support m4a parser"
  359. depends on ACTIONS_PARSER
  360. default n
  361. help
  362. This option enables the m4a parser.
  363. config HFP_PLC
  364. bool
  365. prompt "support hfp plc"
  366. depends on ACTIONS_ALGORITHMS_LIBRARY
  367. default n
  368. help
  369. This option enables the hfp plc.
  370. config HFP_SPEECH
  371. bool
  372. prompt "support hfp speech aec/agc"
  373. depends on ACTIONS_ALGORITHMS_LIBRARY
  374. select HFP_PLC
  375. default n
  376. help
  377. This option enables the hfp speech aec/agc.
  378. config HFP_DAE
  379. bool
  380. prompt "support hfp dae"
  381. depends on ACTIONS_ALGORITHMS_LIBRARY
  382. default n
  383. help
  384. This option enables the hfp dae.
  385. config MUSIC_DAE
  386. bool
  387. prompt "support music dae"
  388. depends on ACTIONS_ALGORITHMS_LIBRARY
  389. default n
  390. help
  391. This option enables the music dae.
  392. config MUSIC_DAE_FADE
  393. bool
  394. prompt "support music dae fade in/out"
  395. default n
  396. help
  397. This option enables the music dae fade in/out.
  398. config AUDIO_MIX
  399. bool "support audio mixing"
  400. depends on ACTIONS_ALGORITHMS_LIBRARY
  401. default n
  402. help
  403. This option enables the audio mixing.
  404. config RESAMPLE
  405. bool
  406. prompt "support resample"
  407. depends on ACTIONS_ALGORITHMS_LIBRARY
  408. default n
  409. select ACCELERATOR_ACTS
  410. select ACCELERATOR_ACTS_WOODPECKER
  411. help
  412. This option enables the resample.
  413. config AL_FORMAT_CHECK
  414. bool
  415. prompt "support format check"
  416. default n
  417. help
  418. This option enables stream format check.
  419. config OUTPUT_RESAMPLE_SW
  420. bool
  421. prompt "resample use hardware"
  422. default n
  423. depends on RESAMPLE
  424. help
  425. This option consent to use hardware/software resample.
  426. config SF_APS
  427. bool
  428. prompt "support software aps"
  429. depends on ACTIONS_ALGORITHMS_LIBRARY
  430. default n
  431. help
  432. This option enables the software aps.