summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLVideoStreamingState.h
blob: 6ebe98b725a67250b604d270fe1d741888aa0f5c (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
//
//  SDLVideoStreamingState.h
//  SmartDeviceLink
//
//  Created by Joel Fischer on 6/19/18.
//  Copyright © 2018 Livio. All rights reserved.
//

#import "SDLEnum.h"

/**
 * Enum for each type of video streaming protocol, used in VideoStreamingFormat
 */
typedef SDLEnum SDLVideoStreamingState SDL_SWIFT_ENUM;

/**
 * STREAMABLE, the current app is allowed to stream video
 */
extern SDLVideoStreamingState const SDLVideoStreamingStateStreamable;

/**
 * NOT_STREAMABLE, the current app is not allowed to stream video
 */
extern SDLVideoStreamingState const SDLVideoStreamingStateNotStreamable;