Kconfig 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. # Kconfig - Actions media player
  2. #
  3. # Copyright (c) 2016 Actions Corporation
  4. #
  5. # SPDX-License-Identifier: Apache-2.0
  6. #
  7. menuconfig MEDIA
  8. bool
  9. prompt "media"
  10. imply MEDIA_PLAYER
  11. default n
  12. help
  13. This option enables actions media
  14. config MEDIA_PLAYER
  15. bool
  16. prompt "media player Support"
  17. depends on MEDIA
  18. select MEDIA_SERVICE
  19. select STREAM
  20. select MEDIA_EFFECT
  21. select SECTION_OVERLAY
  22. default n
  23. help
  24. This option enables actions media player
  25. config MEDIA_SERVICE
  26. bool
  27. prompt "Media Service Support"
  28. select THREAD_TIMER
  29. select AUDIO_SYSTEM
  30. select ACTIONS_LIBRARY
  31. select ACTIONS_ALGORITHMS_LIBRARY
  32. select ACTS_EBERGY_STATISTICS
  33. select DSP
  34. select DSP_HAL
  35. select ACTIONS_DECODER
  36. select ACTIONS_ENCODER
  37. select AUDIO
  38. default n
  39. help
  40. This option enables actions Media service.
  41. config MEDIASRV_PRIORITY
  42. int
  43. prompt "Media Service Thread Priority"
  44. default 1
  45. depends on MEDIA_SERVICE
  46. help
  47. This option set audio thread priority
  48. config MEDIASRV_STACKSIZE
  49. int
  50. prompt "Media Service Thread Stack Size"
  51. default 2048
  52. depends on MEDIA_SERVICE
  53. help
  54. This option set stack size for audio service thread
  55. config MEDIA_EFFECT
  56. bool
  57. prompt "media effect Support"
  58. depends on MEDIA_PLAYER
  59. default n
  60. help
  61. This option enables actions media effect
  62. config MEDIA_EFFECT_OUTMODE
  63. int
  64. prompt "media effect output mode Support"
  65. depends on MEDIA_PLAYER
  66. default 0
  67. help
  68. This option enables actions media output mode
  69. config MUSIC_EFFECT
  70. bool
  71. prompt "music effect Support"
  72. depends on MEDIA_PLAYER
  73. select MEDIA_EFFECT
  74. select MUSIC_DAE
  75. select MUSIC_DAE_FADE
  76. default n
  77. help
  78. This option enables actions music effect
  79. config MUSIC_DRC_EFFECT
  80. bool
  81. prompt "music drc effect Support"
  82. depends on MUSIC_EFFECT
  83. select MEDIA_EFFECT
  84. default n
  85. help
  86. This option enables actions music drc effect
  87. config VOICE_EFFECT
  88. bool
  89. prompt "voice effect Support"
  90. depends on MEDIA_EFFECT
  91. default n
  92. help
  93. This option enables actions voice effect
  94. config AEC_TAIL_LENGTH
  95. int
  96. prompt "AEC tail length config"
  97. depends on VOICE_EFFECT
  98. default 48
  99. help
  100. This option set AEC tail length config
  101. config MEDIA_DSP_SLEEP
  102. bool
  103. prompt "dsp sleep Support"
  104. depends on MEDIA
  105. default y
  106. help
  107. This option enables dsp sleep
  108. config MEDIA_DSP_SLEEP_MODE
  109. int
  110. prompt "dsp sleep mode, 0: light sleep, 1: deep sleep"
  111. depends on MEDIA
  112. default 1
  113. help
  114. This option dsp sleep mode, 0: light sleep, 1: deep sleep
  115. config VIDEO_PLAYER
  116. bool
  117. prompt "video player Support"
  118. default n
  119. help
  120. This option enables actions video player
  121. rsource "libal/Kconfig"