mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 04:41:16 +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
|
#endif
|
||||||
|
|
||||||
void
|
void
|
||||||
gst_backend_init (void)
|
gst_ios_init (void)
|
||||||
{
|
{
|
||||||
gst_init (NULL, NULL);
|
gst_init (NULL, NULL);
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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]));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue