blob: 67f22928147ead27de8681ee95d2f562492e746d (
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
|
// SDLAudioPassThruCapabilities.h
//
#import "SDLRPCMessage.h"
#import "SDLAudioType.h"
#import "SDLBitsPerSample.h"
#import "SDLSamplingRate.h"
/**
* Describes different audio type configurations for SDLPerformAudioPassThru, e.g. {8kHz,8-bit,PCM}
* Since SmartDeviceLink 2.0
*/
NS_ASSUME_NONNULL_BEGIN
@interface SDLAudioPassThruCapabilities : SDLRPCStruct
/**
The sampling rate for AudioPassThru
Required
*/
@property (strong, nonatomic) SDLSamplingRate samplingRate;
/**
The sample depth in bit for AudioPassThru
Required
*/
@property (strong, nonatomic) SDLBitsPerSample bitsPerSample;
/**
The audiotype for AudioPassThru
Required
*/
@property (strong, nonatomic) SDLAudioType audioType;
@end
NS_ASSUME_NONNULL_END
|