Config.in 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. comment "gstreamer 1.x needs a toolchain w/ wchar, threads"
  2. depends on BR2_USE_MMU
  3. depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
  4. config BR2_PACKAGE_GSTREAMER1
  5. bool "gstreamer 1.x"
  6. depends on BR2_USE_WCHAR # glib2
  7. depends on BR2_TOOLCHAIN_HAS_THREADS # glib2
  8. depends on BR2_USE_MMU # glib2
  9. select BR2_PACKAGE_LIBGLIB2
  10. help
  11. GStreamer is an open source multimedia framework. This 1.x
  12. version of Gstreamer is incompatible with Gstreamer 0.10.x.
  13. https://gstreamer.freedesktop.org/
  14. if BR2_PACKAGE_GSTREAMER1
  15. config BR2_PACKAGE_GSTREAMER1_CHECK
  16. bool "enable unit test libraries"
  17. help
  18. Enable building unit test libraries for gstreamer.
  19. config BR2_PACKAGE_GSTREAMER1_PARSE
  20. bool "enable command-line parser"
  21. default y
  22. help
  23. Enable command line parser for gstreamer. This may increase
  24. the CPU overhead by a small amount.
  25. config BR2_PACKAGE_GSTREAMER1_TRACE
  26. bool "enable tracing subsystem"
  27. default y
  28. help
  29. Enable the tracing subsystem within gstreamer. This may
  30. increase CPU overhead by a small amount.
  31. config BR2_PACKAGE_GSTREAMER1_GST_DEBUG
  32. bool "enable gst-debug trace support"
  33. default y
  34. help
  35. Enable support for the gst-debug tracing functionality in
  36. gstreamer. This has limited CPU overhead, but does increase
  37. the rootfs size somewhat.
  38. config BR2_PACKAGE_GSTREAMER1_PLUGIN_REGISTRY
  39. bool "enable plugin registry"
  40. default y
  41. help
  42. Enable support for the GStreamer plugin registry. This may
  43. increase the launch-time for a GStreamer application.
  44. config BR2_PACKAGE_GSTREAMER1_INSTALL_TOOLS
  45. bool "install tools"
  46. default y
  47. help
  48. Install the gst-inspect, gst-launch, gst-stats and
  49. gst-typefind tools. This will take up additional space on
  50. the target.
  51. endif