summaryrefslogtreecommitdiff
path: root/playback/player/ios/GstPlay/main.m
blob: 6cf4e0f612083afe07243edf30ffdfcf85342871 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#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]));
    }
}