123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- /* Copyright (C) 2018 RDA Technologies Limited and/or its affiliates("RDA").
- * All rights reserved.
- *
- * This software is supplied "AS IS" without any warranties.
- * RDA assumes no responsibility or liability for the use of the software,
- * conveys no license or title under any patent, copyright, or mask work
- * right to the product. RDA reserves the right to make changes in the
- * software without notification. RDA also make no representation or
- * warranty that such application will be suitable for the specified use
- * without further testing or modification.
- */
- #ifndef _AUDIO_CONFIG_H_
- #define _AUDIO_CONFIG_H_
- // @AUTO_GENERATION_NOTICE@
- /**
- * whether audio feature is enabled
- */
- #cmakedefine CONFIG_AUDIO_ENABLE
- /**
- * audio work queue stack size
- */
- #cmakedefine CONFIG_AUDIO_WQ_STACK_SIZE @CONFIG_AUDIO_WQ_STACK_SIZE@
- /**
- * whether MP3 decoder enabled
- */
- #cmakedefine CONFIG_AUDIO_MP3_DEC_ENABLE
- /**
- * whether AMR-NB decoder enabled
- */
- #cmakedefine CONFIG_AUDIO_AMRNB_DEC_ENABLE
- /**
- * whether AMR-WB decoder enabled
- */
- #cmakedefine CONFIG_AUDIO_AMRWB_DEC_ENABLE
- /**
- * whether SBC decoder enabled
- */
- #cmakedefine CONFIG_AUDIO_SBC_DEC_ENABLE
- /**
- * whether AMR-NB encoder enabled
- */
- #cmakedefine CONFIG_AUDIO_AMRNB_ENC_ENABLE
- /**
- * whether AMR-WB encoder enabled
- */
- #cmakedefine CONFIG_AUDIO_AMRWB_ENC_ENABLE
- #ifdef CONFIG_AUDIO_ENABLE
- /**
- * whether ext i2s enable
- */
- #cmakedefine CONFIG_AUDIO_EXT_I2S_ENABLE
- #endif
- #ifdef CONFIG_AUDIO_ENABLE
- /**
- * whether customer config audio ipc trigger mode enable
- */
- #cmakedefine CONFIG_AUDIO_IPC_SET_TRIGGER_MODE_ENABLE
- #endif
- #ifdef CONFIG_AUDIO_ENABLE
- /**
- * whether customer config audio call remote keytone detect enable
- */
- #cmakedefine CONFIG_AUDIO_CALL_KEYTONE_DETECT_SUPPORT
- #endif
- #ifdef CONFIG_AUDIO_ENABLE
- /**
- * whether CVS enabled
- */
- #cmakedefine CONFIG_AUDIO_CVS_SUPPORT
- #endif
- #ifdef CONFIG_AUDIO_ENABLE
- /**
- * whether voice enabled
- */
- #cmakedefine CONFIG_AUDIO_VOICE_ENABLE
- #endif
- #ifdef CONFIG_AUDIO_ENABLE
- /**
- * whether 8850cm_gpio enabled
- */
- #cmakedefine CONFIG_AUDIO_8850CM_GPIO_ENABLE
- #endif
- #endif
|