Fix initialization function name
authorXavi Artigas <xartigas@fluendo.com>
Tue, 30 Apr 2013 09:42:51 +0000 (11:42 +0200)
committerXavi Artigas <xartigas@fluendo.com>
Tue, 30 Apr 2013 09:42:51 +0000 (11:42 +0200)
gst-sdk/tutorials/xcode iOS/Tutorial 1/gst_ios_init.c
gst-sdk/tutorials/xcode iOS/Tutorial 1/gst_ios_init.h
gst-sdk/tutorials/xcode iOS/Tutorial 1/main.m

index df885e0..9ece9ab 100644 (file)
@@ -494,7 +494,7 @@ GST_PLUGIN_STATIC_DECLARE(sdp);
 #endif
 
 void
-gst_backend_init (void)
+gst_ios_init (void)
 {
     gst_init (NULL, NULL);
 
index 7231619..ce2fef0 100644 (file)
@@ -20,6 +20,6 @@
 //#define GST_IOS_PLUGINS_CODECS
 //#define GST_IOS_PLUGINS_NET
 
-void gst_backend_init ();
+void gst_ios_init ();
 
 #endif
index c71525a..6cf4e0f 100644 (file)
@@ -6,7 +6,7 @@
 int main(int argc, char *argv[])
 {
     @autoreleasepool {
-        gst_backend_init();
+        gst_ios_init();
         return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
     }
 }