summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLSamplingRate.h
blob: 36f03961e12e4d10f18b7c5c30d23960f5498998 (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
//  SDLSamplingRate.h
//


#import "SDLEnum.h"

/**
 * Describes different sampling rates for PerformAudioPassThru
 *
 * @since SDL 2.0
 */
typedef SDLEnum SDLSamplingRate SDL_SWIFT_ENUM;

/**
 * @abstract Sampling rate of 8 kHz
 */
extern SDLSamplingRate const SDLSamplingRate8KHZ;

/**
 * @abstract Sampling rate of 16 kHz
 */
extern SDLSamplingRate const SDLSamplingRate16KHZ;

/**
 * @abstract Sampling rate of 22 kHz
 */
extern SDLSamplingRate const SDLSamplingRate22KHZ;

/**
 * @abstract Sampling rate of 44 kHz
 */
extern SDLSamplingRate const SDLSamplingRate44KHZ;