diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2019-02-01 12:46:42 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2019-02-01 13:18:19 +0530 |
commit | 16edb486864dfcccf33101fc4301fa5251512a13 (patch) | |
tree | 045a2f9178711ba57a7bfd4d531011fe103a3d32 | |
parent | 0d8ad9c45d45562ba9e7c7548a59c62dc1d7e59a (diff) |
android: Add nice plugin to ndk-build plugins.mk
The nice plugin is needed for webrtc.
-rw-r--r-- | recipes/custom.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/custom.py b/recipes/custom.py index 0529644c..bb733f1a 100644 --- a/recipes/custom.py +++ b/recipes/custom.py @@ -20,7 +20,7 @@ def list_gstreamer_1_0_plugins_by_category(config): cookbook = CookBook(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-plugins-bad-1.0', 'gst-plugins-ugly-1.0', 'libnice', 'gst-libav-1.0', 'gst-editing-services-1.0', 'gst-rtsp-server-1.0']: r = cookbook.get_recipe(r) for attr_name in dir(r): |