summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLBitsPerSample.h
blob: 55c99b242fd8db71892b20c100c1742bbb9e69e3 (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 SDL_SWIFT_ENUM;

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

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