After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 755310 - Add gst-editing-services plugin to the android/ios config
Add gst-editing-services plugin to the android/ios config
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: cerbero
1.5.90
Other Linux
: Normal blocker
: 1.6.0
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2015-09-20 16:03 UTC by Jan Schmidt
Modified: 2015-09-21 09:29 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Jan Schmidt 2015-09-20 16:03:46 UTC
To create a GSTREAMER_PLUGINS_GES := nle directive in the android plugins.mk, we should add gst-editing-services-1.0 to the list of recipes to scan for plugin sections:

diff --git a/recipes/custom.py b/recipes/custom.py
index 9467015..0eda1d7 100644
--- a/recipes/custom.py
+++ b/recipes/custom.py
@@ -130,7 +130,7 @@ def list_gstreamer_1_0_plugins_by_category(config):
         plugins = defaultdict(list)
         for r in ['gstreamer-1.0', 'gst-plugins-base-1.0', 'gst-plugins-good-1.0',
                   'gst-plugins-bad-1.0', 'gst-plugins-ugly-1.0',
-                  'gst-libav-1.0', 'gst-rtsp-server-1.0']:
+                  'gst-libav-1.0', 'gst-editing-services-1.0']:
             r = cookbook.get_recipe(r)
             for attr_name in dir(r):
                 if attr_name.startswith('files_plugins_'):
Comment 1 Sebastian Dröge (slomo) 2015-09-20 17:12:37 UTC
Yes, definitely. People need an alternative to gnonlin
Comment 2 Sebastian Dröge (slomo) 2015-09-21 08:21:27 UTC
Please push your change :)
Comment 3 Jan Schmidt 2015-09-21 09:29:31 UTC
commit 86b77e42cb0b006a13ea1307728a6ca88876f4bb
Author: Jan Schmidt <jan@centricular.com>
Date:   Mon Sep 21 19:26:34 2015 +1000

    Add gst-editing-services to the list of plugin packages
    
    Add gst-editing-services to the list of packages that might
    provide plugins so that it gets scanned and appropriate
    static plugin directives are generated for Android and iOS
    
    https://bugzilla.gnome.org/show_bug.cgi?id=755310