summaryrefslogtreecommitdiffstats
path: root/config.tests/avfoundation/main.mm
blob: 850c9548760c0e4c64f2db17f08d9d20d0c25203 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright (C) 2016 The Qt Company Ltd and/or its subsidiary(-ies).
// SPDX-License-Identifier: BSD-3-Clause

#import <Foundation/Foundation.h>
#import <AVFoundation/AVFoundation.h>

int main(int argc, char** argv)
{
    AVPlayer *player = [AVPlayer playerWithURL:[NSURL URLWithString:@"http://doesnotmatter.com"]];
    return 0;
}