During the build yocto image for bitbake core-image-sato, Always seeing the warning message as below: WARINING: QA Issue: gstreamer-vaapi-1.0 configure was passed unrecognised option: --with-gstreamer-api[unknown-configure-option]
--with-gstreamer-api option no longer is a valid option for gstreamer-vaapi. And Gstreamer-vaapi already has GST_API_VERSION auto assign the value, by checking the gstreamer framework version support in configure.ac file. Remove out the --with-gstreamer-api and GST_API_VERSION in recipes-multimedia/gstreamer. Signed-off-by: Lim Siew Hoon <[email protected]> --- common/recipes-multimedia/gstreamer/gstreamer-vaapi-1.0_0.6.0.bb | 2 -- common/recipes-multimedia/gstreamer/gstreamer-vaapi.inc | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/common/recipes-multimedia/gstreamer/gstreamer-vaapi-1.0_0.6.0.bb b/common/recipes-multimedia/gstreamer/gstreamer-vaapi-1.0_0.6.0.bb index c1c4f5a..4ced2fe 100755 --- a/common/recipes-multimedia/gstreamer/gstreamer-vaapi-1.0_0.6.0.bb +++ b/common/recipes-multimedia/gstreamer/gstreamer-vaapi-1.0_0.6.0.bb @@ -1,5 +1,3 @@ require gstreamer-vaapi.inc DEPENDS += "gstreamer1.0 gstreamer1.0-plugins-base gstreamer1.0-plugins-bad" - -GST_API_VERSION = "1.4" diff --git a/common/recipes-multimedia/gstreamer/gstreamer-vaapi.inc b/common/recipes-multimedia/gstreamer/gstreamer-vaapi.inc index 18db403..f882959 100644 --- a/common/recipes-multimedia/gstreamer/gstreamer-vaapi.inc +++ b/common/recipes-multimedia/gstreamer/gstreamer-vaapi.inc @@ -24,7 +24,7 @@ inherit autotools pkgconfig gtk-doc PACKAGES =+ "${PN}-tests" -EXTRA_OECONF += "--with-gstreamer-api=${GST_API_VERSION} --disable-builtin-libvpx" +EXTRA_OECONF += "--disable-builtin-libvpx" PACKAGECONFIG ??= "drm \ ${@base_contains("DISTRO_FEATURES", "opengl x11", "glx", "", d)} \ -- 2.1.0 -- _______________________________________________ meta-intel mailing list [email protected] https://lists.yoctoproject.org/listinfo/meta-intel
