Config.in 2.2 KB

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