audio_config.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /* Copyright (C) 2018 RDA Technologies Limited and/or its affiliates("RDA").
  2. * All rights reserved.
  3. *
  4. * This software is supplied "AS IS" without any warranties.
  5. * RDA assumes no responsibility or liability for the use of the software,
  6. * conveys no license or title under any patent, copyright, or mask work
  7. * right to the product. RDA reserves the right to make changes in the
  8. * software without notification. RDA also make no representation or
  9. * warranty that such application will be suitable for the specified use
  10. * without further testing or modification.
  11. */
  12. #ifndef _AUDIO_CONFIG_H_
  13. #define _AUDIO_CONFIG_H_
  14. // Auto generated. Don't edit it manually!
  15. /**
  16. * whether audio feature is enabled
  17. */
  18. #define CONFIG_AUDIO_ENABLE
  19. /**
  20. * audio work queue stack size
  21. */
  22. #define CONFIG_AUDIO_WQ_STACK_SIZE 16384
  23. /**
  24. * whether MP3 decoder enabled
  25. */
  26. #define CONFIG_AUDIO_MP3_DEC_ENABLE
  27. /**
  28. * whether AMR-NB decoder enabled
  29. */
  30. #define CONFIG_AUDIO_AMRNB_DEC_ENABLE
  31. /**
  32. * whether AMR-WB decoder enabled
  33. */
  34. #define CONFIG_AUDIO_AMRWB_DEC_ENABLE
  35. /**
  36. * whether AMR-NB encoder enabled
  37. */
  38. #define CONFIG_AUDIO_AMRNB_ENC_ENABLE
  39. /**
  40. * whether AMR-WB encoder enabled
  41. */
  42. #define CONFIG_AUDIO_AMRWB_ENC_ENABLE
  43. #endif