Config.in 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. config BR2_PACKAGE_GST_FFMPEG
  2. bool "gst-ffmpeg"
  3. # Unsupported for MIPS R6. It bundles a version of libav which
  4. # doesn't have support for MIPS R6.
  5. depends on !BR2_MIPS_CPU_MIPS32R6 && !BR2_MIPS_CPU_MIPS64R6
  6. # triggers https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65151 on sh
  7. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 || !BR2_sh
  8. depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_85180
  9. select BR2_PACKAGE_GST_PLUGINS_BASE
  10. help
  11. GStreamer plugin containing one plugin with a set of
  12. elements using the Libav library. It contains most popular
  13. decoders as well as colorspace conversion elements.
  14. This package is configured to use an internal copy of the
  15. Libav library.
  16. http://gstreamer.freedesktop.org/modules/gst-ffmpeg.html
  17. if BR2_PACKAGE_GST_FFMPEG
  18. config BR2_PACKAGE_GST_FFMPEG_GPL
  19. bool "Enable GPL code"
  20. help
  21. Allow use of GPL code. The resulting libs and binaries will
  22. be under GPL.
  23. endif
  24. comment "gst-ffmpeg needs a toolchain w/ gcc >= 5"
  25. depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_5 && BR2_sh
  26. comment "gst-ffmpeg needs a toolchain not affected by GCC bug 85180"
  27. depends on BR2_TOOLCHAIN_HAS_GCC_BUG_85180