webp support is available since version 3.0.0 and
https://github.com/opencv/opencv/commit/
500b7318beee639d8c341e9ea63ac7610ca225f4
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
If the package libv4l is enabled, its support is
automatically enabled.
+config BR2_PACKAGE_OPENCV3_WITH_WEBP
+ bool "webp support"
+ select BR2_PACKAGE_WEBP
+ help
+ Enable WebP support.
+
+ Use shared libwebp from the target system.
+
comment "Install options"
config BR2_PACKAGE_OPENCV3_INSTALL_DATA
-DWITH_VA=OFF \
-DWITH_VA_INTEL=OFF \
-DWITH_VTK=OFF \
- -DWITH_WEBP=OFF \
-DWITH_XINE=OFF
OPENCV3_DEPENDENCIES += host-pkgconf zlib
OPENCV3_CONF_OPTS += -DWITH_V4L=OFF -DWITH_LIBV4L=OFF
endif
+ifeq ($(BR2_PACKAGE_OPENCV3_WITH_WEBP),y)
+OPENCV3_CONF_OPTS += -DWITH_WEBP=ON
+OPENCV3_DEPENDENCIES += webp
+else
+OPENCV3_CONF_OPTS += -DWITH_WEBP=OFF
+endif
+
ifeq ($(BR2_PACKAGE_OPENCV3_LIB_PYTHON),y)
OPENCV3_CONF_OPTS += \
-DBUILD_opencv_python2=OFF \