summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLStreamingMediaManagerConstants.h
blob: 2fc007d6f2c03843c13dbf21c66848b78d28f418 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//
//  SDLStreamingMediaManagerConstants.h
//  SmartDeviceLink-iOS
//
//  Created by Muller, Alexander (A.) on 2/16/17.
//  Copyright © 2017 smartdevicelink. All rights reserved.
//

#import <UIKit/UIKit.h>

NS_ASSUME_NONNULL_BEGIN

typedef NS_ENUM(NSInteger, SDLStreamingEncryptionFlag) {
    SDLStreamingEncryptionFlagNone,
    SDLStreamingEncryptionFlagAuthenticateOnly,
    SDLStreamingEncryptionFlagAuthenticateAndEncrypt
};

extern CGSize const SDLDefaultScreenSize;

extern NSString *const SDLVideoStreamDidStartNotification;
extern NSString *const SDLVideoStreamDidStopNotification;

extern NSString *const SDLAudioStreamDidStartNotification;
extern NSString *const SDLAudioStreamDidStopNotification;

NS_ASSUME_NONNULL_END