Kconfig 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. # Kconfig - ACTIONS primitive options for sdk version 2.0
  2. #
  3. # Copyright (c) 2015 Intel Corporation
  4. #
  5. # Licensed under the Apache License, Version 2.0 (the "License");
  6. # you may not use this file except in compliance with the License.
  7. # You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS,
  13. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. # See the License for the specific language governing permissions and
  15. # limitations under the License.
  16. #
  17. menuconfig PLAYTTS
  18. bool
  19. prompt "TTS"
  20. depends on MEDIA_PLAYER
  21. select DECODER_ACT
  22. select DECODER_ACT_HW_ACCELERATION
  23. select STREAM
  24. select BUFFER_STREAM
  25. default n
  26. help
  27. This option enables the play tts.
  28. config PLAY_KEYTONE
  29. bool
  30. prompt "support keytone"
  31. depends on PLAYTTS
  32. select AUDIO_MIX
  33. select RESAMPLE
  34. default n
  35. help
  36. This option support keytone.
  37. config PLAY_TIPTONE
  38. bool
  39. prompt "support tip tone"
  40. depends on PLAYTTS
  41. default n
  42. help
  43. This option support tip tone.
  44. config TTS_MFILE_STREAM
  45. bool
  46. prompt "support play tts continuously"
  47. depends on PLAYTTS
  48. default n
  49. help
  50. This option support play tts continuously.