2011-10-03 12:10:34 +02:00
|
|
|
config BR2_PACKAGE_LIBPLAYER
|
|
|
|
bool "libplayer"
|
2017-04-22 19:17:58 +02:00
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
2011-10-03 12:10:34 +02:00
|
|
|
help
|
2017-07-31 15:53:50 +02:00
|
|
|
libplayer provides a generic A/V API that relies on various
|
|
|
|
multimedia player for Linux systems. It currently supports
|
|
|
|
MPlayer, xine VLC and GStreamer only
|
2011-10-03 12:10:34 +02:00
|
|
|
|
|
|
|
http://libplayer.geexbox.org/
|
|
|
|
|
|
|
|
if BR2_PACKAGE_LIBPLAYER
|
|
|
|
|
|
|
|
config BR2_PACKAGE_LIBPLAYER_GSTREAMER
|
|
|
|
bool "gstreamer backend"
|
|
|
|
depends on BR2_USE_WCHAR # glib2
|
2013-07-15 21:47:50 +02:00
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # glib2
|
2014-02-20 14:34:11 +01:00
|
|
|
depends on BR2_USE_MMU # glib2
|
2017-11-05 21:31:22 +01:00
|
|
|
depends on !BR2_STATIC_LIBS # gstreamer
|
2011-10-03 12:10:34 +02:00
|
|
|
select BR2_PACKAGE_GSTREAMER
|
|
|
|
|
2017-11-05 21:31:22 +01:00
|
|
|
comment "gstreamer backend needs a toolchain w/ wchar, threads, dynamic library"
|
2014-02-20 14:34:11 +01:00
|
|
|
depends on BR2_USE_MMU
|
2017-11-05 21:31:22 +01:00
|
|
|
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \
|
|
|
|
BR2_STATIC_LIBS
|
2017-03-09 22:49:54 +01:00
|
|
|
endif
|
2011-10-03 12:10:34 +02:00
|
|
|
|
2015-03-30 23:07:30 +02:00
|
|
|
comment "libplayer needs a toolchain w/ threads"
|
|
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS
|