Config.in 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. menu "mpd............................... Music Player Daemon"
  2. config ADK_PACKAGE_MPD
  3. prompt "mpd............................... Music Player Daemon"
  4. tristate
  5. default n
  6. select ADK_PACKAGE_GLIB
  7. help
  8. MPD is a music player supporting flac, mp3 and ogg files.
  9. It is typically controlled over a network using one of it's many
  10. clients including mpc(console), gmpc(gnome), phpmp(php) etc.
  11. http://www.musicpd.org/
  12. config ADK_COMPILE_MPD_WITH_ALSA
  13. prompt "ALSA playback support"
  14. bool
  15. default y
  16. depends on ADK_PACKAGE_MPD
  17. select ADK_PACKAGE_ALSA_LIB
  18. help
  19. Enable ALSA playback support.
  20. config ADK_COMPILE_MPD_WITH_SHOUT
  21. prompt "Shoutcast playback support"
  22. bool
  23. default y
  24. depends on ADK_PACKAGE_MPD
  25. select ADK_PACKAGE_LIBSHOUT
  26. select ADK_PACKAGE_LIBVORBISENC
  27. select ADK_PACKAGE_LIBLAME
  28. help
  29. Enable shout support (libshout).
  30. config ADK_COMPILE_MPD_WITH_MP3
  31. prompt "MP3 support"
  32. bool
  33. default y
  34. depends on ADK_PACKAGE_MPD
  35. select ADK_PACKAGE_LIBMAD
  36. select ADK_PACKAGE_LIBID3TAG
  37. help
  38. Enable mp3 support (libmad).
  39. config ADK_COMPILE_MPD_WITH_MP4
  40. prompt "MP4/AAC support"
  41. bool
  42. default y
  43. depends on ADK_PACKAGE_MPD
  44. select ADK_PACKAGE_LIBFAAD2
  45. help
  46. Enable mp4/aac support (libfaad2).
  47. config ADK_COMPILE_MPD_OGG
  48. prompt "Ogg/Vorbis Support"
  49. bool
  50. depends on ADK_PACKAGE_MPD
  51. select ADK_COMPILE_MPD_WITH_OGG if ADK_COMPILE_MPD_OGG_FLOAT
  52. select ADK_COMPILE_MPD_WITH_TREMOR if ADK_COMPILE_MPD_OGG_FIXED
  53. default y
  54. help
  55. Ogg/Vorbis support.
  56. choice
  57. prompt "Ogg type"
  58. depends on ADK_COMPILE_MPD_OGG
  59. config ADK_COMPILE_MPD_OGG_FLOAT
  60. bool "Ogg/Vorbis (floating point implementation)"
  61. config ADK_COMPILE_MPD_OGG_FIXED
  62. bool "Ogg/Vorbis (fixed point implementation)"
  63. endchoice
  64. config ADK_COMPILE_MPD_WITH_OGG
  65. bool
  66. default n
  67. depends on ADK_PACKAGE_MPD
  68. depends on ADK_COMPILE_MPD_OGG_FLOAT
  69. select ADK_PACKAGE_LIBOGG
  70. select ADK_PACKAGE_LIBVORBIS
  71. help
  72. Enable ogg vorbis support.
  73. config ADK_COMPILE_MPD_WITH_TREMOR
  74. bool
  75. default n
  76. depends on ADK_PACKAGE_MPD
  77. depends on ADK_COMPILE_MPD_OGG_FIXED
  78. select ADK_PACKAGE_LIBVORBISIDEC
  79. help
  80. Enable ogg support (tremor).
  81. Can not be used with shout plugin.
  82. config ADK_COMPILE_MPD_WITH_FLAC
  83. prompt "FLAC Support"
  84. bool
  85. default y
  86. depends on ADK_PACKAGE_MPD
  87. select ADK_PACKAGE_LIBFLAC
  88. help
  89. Enable flac support (libflac).
  90. config ADK_COMPILE_MPD_WITH_WAV
  91. prompt "WAVE/AU Support"
  92. bool
  93. default y
  94. depends on ADK_PACKAGE_MPD
  95. select ADK_PACKAGE_LIBAUDIOFILE
  96. help
  97. Enable wave support (libaudiofile).
  98. config ADK_COMPILE_MPD_WITH_CURL
  99. prompt "HTTP streaming support"
  100. bool
  101. default y
  102. depends on ADK_PACKAGE_MPD
  103. select ADK_PACKAGE_LIBCURL
  104. help
  105. Enable http streaming support (libcurl).
  106. config ADK_COMPILE_MPD_WITH_MMS
  107. prompt "MMS streaming support"
  108. bool
  109. default n
  110. depends on ADK_PACKAGE_MPD
  111. select ADK_PACKAGE_LIBMMS
  112. help
  113. Enable mms streaming support (libmms).
  114. config ADK_COMPILE_MPD_WITH_FFMPEG
  115. prompt "FFMPEG support"
  116. bool
  117. default n
  118. depends on ADK_PACKAGE_MPD
  119. select ADK_PACKAGE_FFMPEG
  120. help
  121. Enable FFMPEG support (ffmpeg).
  122. endmenu