mirror of
git://git.yoctoproject.org/meta-freescale.git
synced 2025-07-19 12:59:04 +02:00

OE core upgraded gst-examples from 1.18.6 to 1.26.1. The newer version fails in configure as it expects the gstreamer version to be 1.26 or greater. Import the 1.26.1 recipe and downgrade it to 1.24.7. Append the version with '.imx' to point out that it is meant for the NXP gstreamer fork. Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
38 lines
1.4 KiB
Diff
38 lines
1.4 KiB
Diff
From 7924016fce2d0b435891a335cdae52fc939c7e3b Mon Sep 17 00:00:00 2001
|
|
From: Jussi Kukkonen <jussi.kukkonen@intel.com>
|
|
Date: Thu, 17 Aug 2017 11:07:02 +0300
|
|
Subject: [PATCH] Make player examples installable
|
|
|
|
Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
|
|
Upstream-Status: Denied [Upstream considers these code examples, for now a least]
|
|
|
|
https://bugzilla.gnome.org/show_bug.cgi?id=777827
|
|
|
|
---
|
|
playback/player/gst-play/meson.build | 1 +
|
|
playback/player/gtk/meson.build | 1 +
|
|
2 files changed, 2 insertions(+)
|
|
|
|
Index: gst-examples/playback/player/gst-play/meson.build
|
|
===================================================================
|
|
--- gst-examples.orig/playback/player/gst-play/meson.build
|
|
+++ gst-examples/playback/player/gst-play/meson.build
|
|
@@ -2,5 +2,6 @@ executable('gst-play',
|
|
['gst-play.c',
|
|
'gst-play-kb.c',
|
|
'gst-play-kb.h'],
|
|
+ install: true,
|
|
dependencies : [gst_dep, dependency('gstreamer-play-1.0'), m_dep])
|
|
|
|
Index: gst-examples/playback/player/gtk/meson.build
|
|
===================================================================
|
|
--- gst-examples.orig/playback/player/gtk/meson.build
|
|
+++ gst-examples/playback/player/gtk/meson.build
|
|
@@ -20,5 +20,6 @@ if gtk_dep.found()
|
|
'gtk-video-renderer.h',
|
|
'gtk-video-renderer.c'],
|
|
c_args : extra_c_args,
|
|
+ install: true,
|
|
dependencies : [gst_dep, gsttag_dep, gstplay_dep, gtk_dep, x11_dep])
|
|
endif
|