mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 12:51:16 +00:00
13 lines
257 B
Mathematica
13 lines
257 B
Mathematica
|
#import <UIKit/UIKit.h>
|
||
|
|
||
|
#import "AppDelegate.h"
|
||
|
#include "gst_ios_init.h"
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
@autoreleasepool {
|
||
|
gst_ios_init();
|
||
|
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
|
||
|
}
|
||
|
}
|