Config.in 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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_ENCODING
  24. bool "encoding"
  25. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_FFMPEGCOLORSPACE
  26. bool "ffmpegcolorspace (mandatory for video playback)"
  27. default y
  28. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_GDP
  29. bool "gdp"
  30. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_PLAYBACK
  31. bool "playback (mandatory)"
  32. default y
  33. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_SUBPARSE
  34. bool "subparse"
  35. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_TCP
  36. bool "tcp"
  37. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_TYPEFIND
  38. bool "typefind (mandatory)"
  39. default y
  40. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_VIDEOTESTSRC
  41. bool "videotestsrc"
  42. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_VIDEORATE
  43. bool "videorate"
  44. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_VIDEOSCALE
  45. bool "videoscale (mandatory for video playback)"
  46. default y
  47. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_VOLUME
  48. bool "volume (mandatory for audio playback)"
  49. default y
  50. comment "plugins with external dependencies (there may be more available)"
  51. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_OGG
  52. bool "ogg (*.ogg audio/video)"
  53. select BR2_PACKAGE_LIBOGG
  54. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_PANGO
  55. bool "pango font renderer"
  56. depends on BR2_INSTALL_LIBSTDCPP
  57. select BR2_PACKAGE_PANGO
  58. comment "pango plugin requires a toolchain with C++ support"
  59. depends on !BR2_INSTALL_LIBSTDCPP
  60. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_THEORA
  61. bool "theora (*.ogg video)"
  62. select BR2_PACKAGE_LIBTHEORA
  63. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_TREMOR
  64. bool "tremor"
  65. select BR2_PACKAGE_TREMOR
  66. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_VORBIS
  67. bool "vorbis (*.ogg audio)"
  68. select BR2_PACKAGE_LIBVORBIS
  69. endif