Config.in 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. menuconfig BR2_PACKAGE_GST_PLUGINS_BASE
  2. bool "gst-plugins-base"
  3. depends on BR2_PACKAGE_GSTREAMER
  4. help
  5. A basic set of well-supported plug-ins for GStreamer.
  6. http://gstreamer.freedesktop.org/
  7. if BR2_PACKAGE_GST_PLUGINS_BASE
  8. comment "dependency-less plugins"
  9. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_ADDER
  10. bool "adder"
  11. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_APP
  12. bool "app"
  13. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_AUDIOCONVERT
  14. bool "audioconvert (mandatory for audio playback)"
  15. default y
  16. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_AUDIORATE
  17. bool "audiorate"
  18. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_AUDIORESAMPLE
  19. bool "audioresample (mandatory for audio playback)"
  20. default y
  21. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_AUDIOTESTSRC
  22. bool "audiotestsrc"
  23. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_FFMPEGCOLORSPACE
  24. bool "ffmpegcolorspace (mandatory for video playback)"
  25. default y
  26. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_GDP
  27. bool "gdp"
  28. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_PLAYBACK
  29. bool "playback (mandatory)"
  30. default y
  31. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_SUBPARSE
  32. bool "subparse"
  33. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_TCP
  34. bool "tcp"
  35. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_TYPEFIND
  36. bool "typefind (mandatory)"
  37. default y
  38. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_VIDEOTESTSRC
  39. bool "videotestsrc"
  40. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_VIDEORATE
  41. bool "videorate"
  42. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_VIDEOSCALE
  43. bool "videoscale (mandatory for video playback)"
  44. default y
  45. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_VOLUME
  46. bool "volume (mandatory for audio playback)"
  47. default y
  48. comment "plugins with external dependencies (there may be more available)"
  49. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_OGG
  50. bool "ogg (*.ogg audio/video)"
  51. select BR2_PACKAGE_LIBOGG
  52. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_PANGO
  53. bool "pango font renderer"
  54. depends on BR2_INSTALL_LIBSTDCPP
  55. select BR2_PACKAGE_PANGO
  56. comment "pango plugin requires a toolchain with C++ support"
  57. depends on !BR2_INSTALL_LIBSTDCPP
  58. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_THEORA
  59. bool "theora (*.ogg video)"
  60. select BR2_PACKAGE_LIBTHEORA
  61. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_VORBIS
  62. bool "vorbis (*.ogg audio)"
  63. select BR2_PACKAGE_LIBVORBIS
  64. endif