diff options
author | Jussi Kukkonen <jussi.kukkonen@intel.com> | 2018-01-04 15:12:36 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-01-05 12:02:37 +0000 |
commit | 6bcad1498937262df22077fbfc52c48e7a423459 (patch) | |
tree | e19fcd77453261b80c8c46b042b1ed74bdb817de /meta/recipes-multimedia/gstreamer/gst-examples | |
parent | 651a82f26b6143af49ecf3e54671159fe15efe99 (diff) | |
download | poky-6bcad1498937262df22077fbfc52c48e7a423459.tar.gz |
gst-player: Upgrade, rename to gst-examples
Switch to using current repository, switch to meson (following
upstream), rename the recipe like upstream.
Add a patch to install the player binaries.
(From OE-Core rev: ac695195077dd12e41f6104e5cc77ec2cf03af11)
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/gstreamer/gst-examples')
-rw-r--r-- | meta/recipes-multimedia/gstreamer/gst-examples/0001-Make-player-examples-installable.patch | 39 | ||||
-rw-r--r-- | meta/recipes-multimedia/gstreamer/gst-examples/gst-player.desktop | 10 |
2 files changed, 49 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gst-examples/0001-Make-player-examples-installable.patch b/meta/recipes-multimedia/gstreamer/gst-examples/0001-Make-player-examples-installable.patch new file mode 100644 index 0000000000..0338bad1c0 --- /dev/null +++ b/meta/recipes-multimedia/gstreamer/gst-examples/0001-Make-player-examples-installable.patch | |||
@@ -0,0 +1,39 @@ | |||
1 | From 755f6dab07565aca7b6aefacad8be65de364ff75 Mon Sep 17 00:00:00 2001 | ||
2 | From: Jussi Kukkonen <jussi.kukkonen@intel.com> | ||
3 | Date: Thu, 17 Aug 2017 11:07:02 +0300 | ||
4 | Subject: [PATCH] Make player examples installable | ||
5 | |||
6 | Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com> | ||
7 | Upstream-Status: Denied [Upstream considers these code examples, for now a least] | ||
8 | |||
9 | https://bugzilla.gnome.org/show_bug.cgi?id=777827 | ||
10 | --- | ||
11 | playback/player/gst-play/meson.build | 1 + | ||
12 | playback/player/gtk/meson.build | 1 + | ||
13 | 2 files changed, 2 insertions(+) | ||
14 | |||
15 | diff --git a/playback/player/gst-play/meson.build b/playback/player/gst-play/meson.build | ||
16 | index 719b55b..a56fe13 100644 | ||
17 | --- a/playback/player/gst-play/meson.build | ||
18 | +++ b/playback/player/gst-play/meson.build | ||
19 | @@ -8,5 +8,6 @@ executable('gst-play', | ||
20 | ['gst-play.c', | ||
21 | 'gst-play-kb.c', | ||
22 | 'gst-play-kb.h'], | ||
23 | + install: true, | ||
24 | dependencies : [gst_dep, gstplayer_dep, m_dep]) | ||
25 | |||
26 | diff --git a/playback/player/gtk/meson.build b/playback/player/gtk/meson.build | ||
27 | index 08aae4f..671a65d 100644 | ||
28 | --- a/playback/player/gtk/meson.build | ||
29 | +++ b/playback/player/gtk/meson.build | ||
30 | @@ -18,5 +18,6 @@ executable('gtk-play', | ||
31 | gtk_play_resources, | ||
32 | 'gtk-video-renderer.h', | ||
33 | 'gtk-video-renderer.c'], | ||
34 | + install: true, | ||
35 | dependencies : [glib_dep, gobject_dep, gmodule_dep, gst_dep, gsttag_dep, gstplayer_dep, gtk_dep, x11_dep]) | ||
36 | |||
37 | -- | ||
38 | 2.13.3 | ||
39 | |||
diff --git a/meta/recipes-multimedia/gstreamer/gst-examples/gst-player.desktop b/meta/recipes-multimedia/gstreamer/gst-examples/gst-player.desktop new file mode 100644 index 0000000000..7ddd456a1e --- /dev/null +++ b/meta/recipes-multimedia/gstreamer/gst-examples/gst-player.desktop | |||
@@ -0,0 +1,10 @@ | |||
1 | [Desktop Entry] | ||
2 | Name=Media Player | ||
3 | Comment=Basic media player | ||
4 | Icon=multimedia-player | ||
5 | TryExec=gtk-play | ||
6 | Exec=gtk-play | ||
7 | StartupNotify=true | ||
8 | Terminal=false | ||
9 | Type=Application | ||
10 | Categories=GTK;AudioVideo; | ||