summaryrefslogtreecommitdiffstats
path: root/meta/recipes-multimedia/gstreamer/gstreamer1.0-vaapi
diff options
context:
space:
mode:
authorCarlos Rafael Giani <crg7475@mailbox.org>2020-01-12 14:59:50 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-01-16 22:33:08 +0000
commitc84a522fd444d495e2a28ab2a0a9b001fe981a93 (patch)
treede99b5841e568b0f144a68964c79f2b1e108788a /meta/recipes-multimedia/gstreamer/gstreamer1.0-vaapi
parent1e05d67ed1a802098e6ba07a44cd6d50404232b8 (diff)
downloadpoky-c84a522fd444d495e2a28ab2a0a9b001fe981a93.tar.gz
gstreamer1.0-vaapi: Transition to meson based builds
* Removed autotools/M4 related patch 0001-gst-vaapi-Makefile.am-Add-EGL_CFLAGS-to-libgstvaapi-.patch. (From OE-Core rev: 5dc07f58832483ae44e8bfb6c3aa1787d607b8f3) Signed-off-by: Carlos Rafael Giani <crg7475@mailbox.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/gstreamer/gstreamer1.0-vaapi')
-rw-r--r--meta/recipes-multimedia/gstreamer/gstreamer1.0-vaapi/0001-gst-vaapi-Makefile.am-Add-EGL_CFLAGS-to-libgstvaapi-.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-vaapi/0001-gst-vaapi-Makefile.am-Add-EGL_CFLAGS-to-libgstvaapi-.patch b/meta/recipes-multimedia/gstreamer/gstreamer1.0-vaapi/0001-gst-vaapi-Makefile.am-Add-EGL_CFLAGS-to-libgstvaapi-.patch
deleted file mode 100644
index d7b8984953..0000000000
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-vaapi/0001-gst-vaapi-Makefile.am-Add-EGL_CFLAGS-to-libgstvaapi-.patch
+++ /dev/null
@@ -1,33 +0,0 @@
1From 5403a89e6a7ac72a23e0221075c0c19b5f85a021 Mon Sep 17 00:00:00 2001
2From: Fabio Berton <fabio.berton@ossystems.com.br>
3Date: Wed, 13 Jun 2018 09:09:25 -0300
4Subject: [PATCH] gst/vaapi/Makefile.am: Add EGL_CFLAGS to libgstvaapi CFLAGS
5Organization: O.S. Systems Software LTDA.
6
7We need this to pass correctly EGL CFLAGS when building with EGL support.
8
9Upstream-Status: Pending
10
11Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br>
12---
13 gst/vaapi/Makefile.am | 4 ++++
14 1 file changed, 4 insertions(+)
15
16diff --git a/gst/vaapi/Makefile.am b/gst/vaapi/Makefile.am
17index b299ac98..d6cab71f 100644
18--- a/gst/vaapi/Makefile.am
19+++ b/gst/vaapi/Makefile.am
20@@ -24,6 +24,10 @@ libgstvaapi_LIBS += $(top_builddir)/gst-libs/gst/vaapi/libgstvaapi-glx.la
21 endif
22
23 if USE_EGL
24+libgstvaapi_CFLAGS += \
25+ $(EGL_CFLAGS) \
26+ $(NULL)
27+
28 libgstvaapi_LIBS += $(top_builddir)/gst-libs/gst/vaapi/libgstvaapi-egl.la
29 endif
30
31--
322.17.1
33