blob: a9bd9a2d89601a708609be2dd3cf79e80763c044 (
plain) (
blame)
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
|
/*
Vita Development Suite Libraries
*/
#ifndef _VDSUITE_KERNEL_AUDIOOUT_H
#define _VDSUITE_KERNEL_AUDIOOUT_H
#ifdef __cplusplus
extern "C" {
#endif
typedef enum SceAudioOutPortType {
//! Used for main audio output, freq must be set to 48000 Hz
SCE_AUDIO_OUT_PORT_TYPE_MAIN = 0,
//! Used for Background Music port
SCE_AUDIO_OUT_PORT_TYPE_BGM = 1,
//! Used for voice chat port
SCE_AUDIO_OUT_PORT_TYPE_VOICE = 2
} SceAudioOutPortType;
#ifdef __cplusplus
}
#endif
#endif /* _VDSUITE_KERNEL_AUDIOOUT_H */
|