summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLBitsPerSample.h
blob: ec678ba0ce25da0bf61af29b331a7a21e008aebe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//  SDLBitsPerSample.h
//


#import "SDLEnum.h"

/**
 * Describes different bit depth options for PerformAudioPassThru
 *
 * @since SDL 2.0
 */
typedef SDLEnum SDLBitsPerSample NS_STRING_ENUM;

/**
 * @abstract 8 bits per sample
 */
extern SDLBitsPerSample const SDLBitsPerSample8Bit;

/**
 * @abstract 16 bits per sample
 */
extern SDLBitsPerSample const SDLBitsPerSample16Bit;