Config.in 876 B

12345678910111213141516171819202122232425262728293031
  1. config BR2_PACKAGE_LIBPLAYER
  2. depends on BR2_LARGEFILE
  3. bool "libplayer"
  4. help
  5. libplayer provides a generic A/V API that relies on various multimedia
  6. player for Linux systems. It currently supports MPlayer, xine VLC and
  7. GStreamer only
  8. http://libplayer.geexbox.org/
  9. if BR2_PACKAGE_LIBPLAYER
  10. config BR2_PACKAGE_LIBPLAYER_MPLAYER
  11. bool "mplayer backend"
  12. select BR2_PACKAGE_MPLAYER
  13. config BR2_PACKAGE_LIBPLAYER_GSTREAMER
  14. bool "gstreamer backend"
  15. depends on BR2_USE_WCHAR # glib2
  16. select BR2_PACKAGE_GSTREAMER
  17. comment "gstreamer backend requires a toolchain with WCHAR support"
  18. depends on !BR2_USE_WCHAR
  19. config BR2_PACKAGE_LIBPLAYER_PYTHON
  20. depends on BR2_PACKAGE_PYTHON
  21. depends on BROKEN # player_init params, builds for host
  22. bool "Libplayer python bindings"
  23. endif
  24. comment "libplayer requires a toolchain with LARGEFILE support"
  25. depends on !BR2_LARGEFILE