gstreamer/subprojects/gst-examples/playback/player/ios/GstPlay/main.m

12 lines
257 B
Objective-C

#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]));
}
}