diff options
author | Sebastian Dröge <sebastian@centricular.com> | 2015-05-04 15:44:07 +0200 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2015-05-04 15:44:07 +0200 |
commit | f2b9a6893dbe5423eb5797b9760f6c7319e49aac (patch) | |
tree | b87f53e0e550f0fe6117fd2adc5bf8dffde5ed55 /data | |
parent | dc599ef7304df03b103a839f8665665bdb1ddc24 (diff) |
ndk-build: Make gst_android_load_gio_modules() and gst_android_register_static_plugins() public again
Apparently there are some people out there calling these and not using
GStreamer.init(), and it seems like a valid use case.
Diffstat (limited to 'data')
-rw-r--r-- | data/ndk-build/gstreamer_android-1.0.c.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/data/ndk-build/gstreamer_android-1.0.c.in b/data/ndk-build/gstreamer_android-1.0.c.in index fdd6e550..fca8ba0d 100644 --- a/data/ndk-build/gstreamer_android-1.0.c.in +++ b/data/ndk-build/gstreamer_android-1.0.c.in @@ -20,14 +20,14 @@ G_PASTE(g_io_module_, G_PASTE(name, _load_static)) () @G_IO_MODULES_DECLARE@ /* Call this function to register static plugins */ -static void +void gst_android_register_static_plugins (void) { @PLUGINS_REGISTRATION@ } /* Call this function to load GIO modules */ -static void +void gst_android_load_gio_modules (void) { @G_IO_MODULES_LOAD@ |