diff options
author | Sebastian Dröge <sebastian@centricular.com> | 2015-06-25 13:58:06 +0200 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2015-06-25 13:58:06 +0200 |
commit | 681023f2c5555f348b5e03e6282a17eb50be5c01 (patch) | |
tree | 4749fabf8571dbad2b30b12957fc69791549cea8 /data/ndk-build | |
parent | 57acfbb1a8982146cacc94952e10a97107dcd18a (diff) |
android: It's GST_REGISTRY_REUSE_PLUGIN_SCANNER not GST_REUSE_PLUGIN_SCANNER
Not that it matters as we use static plugins anyway, but let's keep it correct
Diffstat (limited to 'data/ndk-build')
-rw-r--r-- | data/ndk-build/gstreamer_android-1.0.c.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/ndk-build/gstreamer_android-1.0.c.in b/data/ndk-build/gstreamer_android-1.0.c.in index 9f9f20f3..6c50e2dc 100644 --- a/data/ndk-build/gstreamer_android-1.0.c.in +++ b/data/ndk-build/gstreamer_android-1.0.c.in @@ -447,7 +447,7 @@ gst_android_init (JNIEnv * env, jobject context) registry = g_build_filename (cache_dir, "registry.bin", NULL); g_setenv ("GST_REGISTRY", registry, TRUE); g_free (registry); - g_setenv ("GST_REUSE_PLUGIN_SCANNER", "no", TRUE); + g_setenv ("GST_REGISTRY_REUSE_PLUGIN_SCANNER", "no", TRUE); /* TODO: Should probably also set GST_PLUGIN_SCANNER and GST_PLUGIN_SYSTEM_PATH */ } if (files_dir) { |