gstreamer/examples/tutorials/xcode iOS/Tutorial 5/main.m

13 lines
257 B
Mathematica
Raw Normal View History

2013-04-29 15:45:38 +00:00
#import <UIKit/UIKit.h>
#import "AppDelegate.h"
2013-04-30 09:19:04 +00:00
#include "gst_ios_init.h"
2013-04-29 15:45:38 +00:00
int main(int argc, char *argv[])
{
@autoreleasepool {
2013-04-30 09:42:51 +00:00
gst_ios_init();
2013-04-29 15:45:38 +00:00
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}