summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian.droege@collabora.co.uk>2012-10-11 16:09:08 +0200
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2012-10-11 16:09:08 +0200
commit60de5af72b2ab9f19930def3a98e95a8b14ada0d (patch)
treed26f14351c7391a71634d60a0053ac0eda2512ec
parent2550326e35c6d6b81f66182bacedeb6755cbbdf7 (diff)
Fix scaletempo plugin linking
-rwxr-xr-xdata/ndk-build/gstreamer.mk1
-rw-r--r--recipes/gst-android.recipe2
2 files changed, 2 insertions, 1 deletions
diff --git a/data/ndk-build/gstreamer.mk b/data/ndk-build/gstreamer.mk
index a73422d1..69af1595 100755
--- a/data/ndk-build/gstreamer.mk
+++ b/data/ndk-build/gstreamer.mk
@@ -127,6 +127,7 @@ GSTREAMER_PLUGINS_LIBS := $(call fix-plugin-name,soup,souphttpsrc)
GSTREAMER_PLUGINS_LIBS := $(call fix-plugin-name,gstsiren,siren)
GSTREAMER_PLUGINS_LIBS := $(call fix-plugin-name,sdp,sdpelem)
GSTREAMER_PLUGINS_LIBS := $(call fix-plugin-name,gstrtpmanager,rtpmanager)
+GSTREAMER_PLUGINS_LIBS := $(call fix-plugin-name,scaletempo,scaletempoplugin)
GSTREAMER_PLUGINS_LIBS := $(subst gstgnonlin,gnl,$(GSTREAMER_PLUGINS_LIBS))
# Generate the plugins' declaration strings
diff --git a/recipes/gst-android.recipe b/recipes/gst-android.recipe
index 7fbf8337..e2743b62 100644
--- a/recipes/gst-android.recipe
+++ b/recipes/gst-android.recipe
@@ -30,7 +30,7 @@ class Recipe(recipe.Recipe):
replacements = {'decodebin2': 'uridecodebin', 'playbin': 'playback',
'encodebin': 'encoding', 'souphttpsrc': 'soup',
'siren': 'gstsiren', 'sdpelem': 'sdp',
- 'rtpmanager': 'gstrtpmanager'}
+ 'rtpmanager': 'gstrtpmanager', 'scaletempoplugin' : 'scaletempo'}
f = open(os.path.join(ndk_build_dir, 'plugins.mk'), 'w')
for c in ['core', 'playback', 'codecs', 'vis', 'effects', 'net',
'codecs_gpl', 'codecs_restricted', 'net_restricted', 'sys']: