|
@@ -175,6 +175,8 @@ config BR2_PACKAGE_OPENCV_WITH_FFMPEG
|
|
|
|
|
|
choice
|
|
|
prompt "gstreamer support"
|
|
|
+ help
|
|
|
+ OpenCV prefers gstreamer-1 over gstreamer-0.10.
|
|
|
|
|
|
config BR2_PACKAGE_OPENCV_WITHOUT_GSTREAMER
|
|
|
bool "none"
|
|
@@ -192,6 +194,19 @@ comment "gstreamer-0.10 support needs a toolchain w/ wchar, threads"
|
|
|
depends on BR2_USE_MMU
|
|
|
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|
|
|
|
|
|
+config BR2_PACKAGE_OPENCV_WITH_GSTREAMER1
|
|
|
+ bool "gstreamer-1.x"
|
|
|
+ depends on BR2_USE_MMU # gstreamer1 -> libglib2
|
|
|
+ depends on BR2_USE_WCHAR # gstreamer1 -> libglib2
|
|
|
+ depends on BR2_TOOLCHAIN_HAS_THREADS # gstreamer1 -> libglib2
|
|
|
+ select BR2_PACKAGE_GSTREAMER1
|
|
|
+ select BR2_PACKAGE_GST1_PLUGINS_BASE
|
|
|
+ select BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_APP
|
|
|
+
|
|
|
+comment "gstreamer-1.x support needs a toolchain w/ wchar, threads"
|
|
|
+ depends on BR2_USE_MMU
|
|
|
+ depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|
|
|
+
|
|
|
endchoice
|
|
|
|
|
|
config BR2_PACKAGE_OPENCV_WITH_GTK
|