blob: c15c73a8fd1516acf039604722d3e0c96266f1fa (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
//
// SDLVideoStreamingCapability.h
// SmartDeviceLink-iOS
//
// Created by Brett McIsaac on 7/31/17.
// Copyright © 2017 smartdevicelink. All rights reserved.
//
#import "SDLRPCMessage.h"
@class SDLImageResolution;
@class SDLVideoStreamingFormat;
NS_ASSUME_NONNULL_BEGIN
/**
Contains information about this system's video streaming capabilities
*/
@interface SDLVideoStreamingCapability : SDLRPCStruct
- (instancetype)initWithPreferredResolution:(nullable SDLImageResolution *)preferredResolution maxBitrate:(int32_t)maxBitrate supportedFormats:(nullable NSArray<SDLVideoStreamingFormat *> *)supportedFormats hapticDataSupported:(BOOL)hapticDataSupported;
/**
The preferred resolution of a video stream for decoding and rendering on HMI
Optional
*/
@property (nullable, strong, nonatomic) SDLImageResolution *preferredResolution;
/**
The maximum bitrate of video stream that is supported, in kbps, optional
Optional, minvalue= 0, maxvalue= 2147483647
*/
@property (nullable, strong, nonatomic) NSNumber<SDLInt> *maxBitrate;
/**
Detailed information on each format supported by this system, in its preferred order
Optional
*/
@property (nullable, strong, nonatomic) NSArray<SDLVideoStreamingFormat *> *supportedFormats;
/**
True if the system can utilize the haptic spatial data from the source being streamed.
Optional
*/
@property (nullable, strong, nonatomic) NSNumber<SDLBool> *hapticSpatialDataSupported;
@end
NS_ASSUME_NONNULL_END
|