Kconfig 559 B

123456789101112131415161718192021
  1. config RT_USING_AUDIO
  2. bool "Using Audio device drivers"
  3. default n
  4. if RT_USING_AUDIO
  5. config RT_AUDIO_REPLAY_MP_BLOCK_SIZE
  6. int "Replay memory pool block size"
  7. default 4096
  8. config RT_AUDIO_REPLAY_MP_BLOCK_COUNT
  9. int "Replay memory pool block count"
  10. default 2
  11. config RT_AUDIO_RECORD_PIPE_SIZE
  12. int "Record pipe size"
  13. default 2048
  14. config RT_UTEST_USING_AUDIO_DRIVER
  15. bool "Enable rt_audio_api testcase"
  16. default n
  17. endif