blob: 003ff22f03ad46fd0365b0fde5f1552d9cbc6570 (
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 _PSP2_KERNEL_AUDIOOUT_H_
#define _PSP2_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 /* _PSP2_KERNEL_AUDIOOUT_H_ */
|