Config.in 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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_AUDIOCONVERT
  13. bool "audioconvert (mandatory for audio playback)"
  14. default y
  15. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_AUDIORATE
  16. bool "audiorate"
  17. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_AUDIORESAMPLE
  18. bool "audioresample (mandatory for audio playback)"
  19. default y
  20. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_AUDIOTESTSRC
  21. bool "audiotestsrc"
  22. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_FFMPEGCOLORSPACE
  23. bool "ffmpegcolorspace (mandatory for video playback)"
  24. default y
  25. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_GDP
  26. bool "gdp"
  27. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_PLAYBACK
  28. bool "playback (mandatory)"
  29. default y
  30. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_SUBPARSE
  31. bool "subparse"
  32. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_TCP
  33. bool "tcp"
  34. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_TYPEFIND
  35. bool "typefind (mandatory)"
  36. default y
  37. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_VIDEOTESTSRC
  38. bool "videotestsrc"
  39. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_VIDEORATE
  40. bool "videorate"
  41. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_VIDEOSCALE
  42. bool "videoscale (mandatory for video playback)"
  43. default y
  44. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_VOLUME
  45. bool "volume (mandatory for audio playback)"
  46. default y
  47. comment "plugins with external dependencies (there may be more available)"
  48. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_OGG
  49. bool "ogg (*.ogg audio/video)"
  50. select BR2_PACKAGE_LIBOGG
  51. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_THEORA
  52. bool "theora (*.ogg video)"
  53. select BR2_PACKAGE_LIBTHEORA
  54. config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_VORBIS
  55. bool "vorbis (*.ogg audio)"
  56. select BR2_PACKAGE_LIBVORBIS
  57. endif