blob: c1381ee7012506c6129725155e8a13d9cb785570 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#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_ */
|