diff mbox series

[RFC,v1,10/13] package/gst1-vaapi: bump version to 1.18.0 and convert to meson

Message ID 20200916194933.24921-10-ps.report@gmx.net
State Accepted
Headers show
Series [RFC,v1,01/13] package/gst1-interpipe: bump version to 94dea52 (1.1.2) | expand

Commit Message

Peter Seiderer Sept. 16, 2020, 7:49 p.m. UTC
Signed-off-by: Peter Seiderer <ps.report@gmx.net>
---
 package/gstreamer1/gst1-vaapi/gst1-vaapi.hash |  6 +++---
 package/gstreamer1/gst1-vaapi/gst1-vaapi.mk   | 21 +++++++++++--------
 2 files changed, 15 insertions(+), 12 deletions(-)

Comments

Thomas Petazzoni Sept. 23, 2020, 8:29 p.m. UTC | #1
On Wed, 16 Sep 2020 21:49:30 +0200
Peter Seiderer <ps.report@gmx.net> wrote:

> Signed-off-by: Peter Seiderer <ps.report@gmx.net>
> ---
>  package/gstreamer1/gst1-vaapi/gst1-vaapi.hash |  6 +++---
>  package/gstreamer1/gst1-vaapi/gst1-vaapi.mk   | 21 +++++++++++--------
>  2 files changed, 15 insertions(+), 12 deletions(-)

Applied to master, thanks.

Thomas
diff mbox series

Patch

diff --git a/package/gstreamer1/gst1-vaapi/gst1-vaapi.hash b/package/gstreamer1/gst1-vaapi/gst1-vaapi.hash
index f9bec2483a..796e27eca7 100644
--- a/package/gstreamer1/gst1-vaapi/gst1-vaapi.hash
+++ b/package/gstreamer1/gst1-vaapi/gst1-vaapi.hash
@@ -1,3 +1,3 @@ 
-# From https://gstreamer.freedesktop.org/src/gstreamer-vaapi/gstreamer-vaapi-1.16.2.tar.xz.sha256sum
-sha256 191de7b0ab64a85dd0875c990721e7be95518f60e2a9106beca162004ed7c601 gstreamer-vaapi-1.16.2.tar.xz
-sha256 dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551 COPYING.LIB
+# From https://gstreamer.freedesktop.org/src/gstreamer-vaapi/gstreamer-vaapi-1.18.0.tar.xz.sha256sum
+sha256  c6efeb8c736f75bb1b53ab18413c60c4321300e7aee66641bcc07d59c2fe9e31  gstreamer-vaapi-1.18.0.tar.xz
+sha256  dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551  COPYING.LIB
diff --git a/package/gstreamer1/gst1-vaapi/gst1-vaapi.mk b/package/gstreamer1/gst1-vaapi/gst1-vaapi.mk
index 00a6ec5e0e..bcd854af5f 100644
--- a/package/gstreamer1/gst1-vaapi/gst1-vaapi.mk
+++ b/package/gstreamer1/gst1-vaapi/gst1-vaapi.mk
@@ -4,7 +4,7 @@ 
 #
 ################################################################################
 
-GST1_VAAPI_VERSION = 1.16.2
+GST1_VAAPI_VERSION = 1.18.0
 GST1_VAAPI_SITE = https://gstreamer.freedesktop.org/src/gstreamer-vaapi
 GST1_VAAPI_SOURCE = gstreamer-vaapi-$(GST1_VAAPI_VERSION).tar.xz
 GST1_VAAPI_LICENSE = LGPL-2.1+
@@ -18,16 +18,19 @@  GST1_VAAPI_DEPENDENCIES += \
 	libdrm
 
 GST1_VAAPI_CONF_OPTS += \
-	--disable-x11 \
-	--disable-glx \
-	--disable-wayland \
-	--disable-egl \
-	--disable-gtk-doc-html
+	-Dwith_drm=yes \
+	-Dwith_x11=no \
+	-Dwith_glx=no \
+	-Dwith_wayland=no \
+	-Dwith_egl=no \
+	-Dexamples=disabled \
+	-Dtest=disabled \
+	-Ddoc=disabled
 
 ifeq ($(BR2_PACKAGE_GST1_VAAPI_ENCODERS),y)
-GST1_VAAPI_CONF_OPTS += --enable-encoders
+GST1_VAAPI_CONF_OPTS += -Dwith_encoders=yes
 else
-GST1_VAAPI_CONF_OPTS += --disable-encoders
+GST1_VAAPI_CONF_OPTS += -Dwith_encoders=no
 endif
 
-$(eval $(autotools-package))
+$(eval $(meson-package))