summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLVideoStreamingFormat.h
blob: 75f0941ee266db84b399d2871d8e6d409e5ba3e4 (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
//
//  SDLVideoStreamingFormat.h
//  SmartDeviceLink-iOS
//

#import "SDLRPCMessage.h"
#import "SDLVideoStreamingProtocol.h"
#import "SDLVideoStreamingCodec.h"

NS_ASSUME_NONNULL_BEGIN

@interface SDLVideoStreamingFormat : SDLRPCStruct

/**
 * @abstract Protocol type, see VideoStreamingProtocol, mandatory
 */
@property (strong, nonatomic) SDLVideoStreamingProtocol protocol;

/**
 * @abstract Codec type, see VideoStreamingCodec, mandatory
 */
@property (strong, nonatomic) SDLVideoStreamingCodec codec;

@end

NS_ASSUME_NONNULL_END