Fix initialization function name

This commit is contained in:
Xavi Artigas 2013-04-30 11:42:51 +02:00
parent d8c0c43ffb
commit d2c4104a9e
3 changed files with 3 additions and 3 deletions

View file

@ -494,7 +494,7 @@ GST_PLUGIN_STATIC_DECLARE(sdp);
#endif #endif
void void
gst_backend_init (void) gst_ios_init (void)
{ {
gst_init (NULL, NULL); gst_init (NULL, NULL);

View file

@ -20,6 +20,6 @@
//#define GST_IOS_PLUGINS_CODECS //#define GST_IOS_PLUGINS_CODECS
//#define GST_IOS_PLUGINS_NET //#define GST_IOS_PLUGINS_NET
void gst_backend_init (); void gst_ios_init ();
#endif #endif

View file

@ -6,7 +6,7 @@
int main(int argc, char *argv[]) int main(int argc, char *argv[])
{ {
@autoreleasepool { @autoreleasepool {
gst_backend_init(); gst_ios_init();
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
} }
} }