mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 19:31:12 +00:00
Fix initialization function name
This commit is contained in:
parent
d8c0c43ffb
commit
d2c4104a9e
3 changed files with 3 additions and 3 deletions
|
@ -494,7 +494,7 @@ GST_PLUGIN_STATIC_DECLARE(sdp);
|
|||
#endif
|
||||
|
||||
void
|
||||
gst_backend_init (void)
|
||||
gst_ios_init (void)
|
||||
{
|
||||
gst_init (NULL, NULL);
|
||||
|
||||
|
|
|
@ -20,6 +20,6 @@
|
|||
//#define GST_IOS_PLUGINS_CODECS
|
||||
//#define GST_IOS_PLUGINS_NET
|
||||
|
||||
void gst_backend_init ();
|
||||
void gst_ios_init ();
|
||||
|
||||
#endif
|
||||
|
|
|
@ -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]));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue