mirror of
https://github.com/devkitPro/wut.git
synced 2026-03-21 17:34:47 -05:00
avm: Add some missing DRC functions
This commit is contained in:
parent
ed0c91de16
commit
4ee360097d
|
|
@ -26,6 +26,30 @@ typedef enum AVMDrcMode
|
|||
AVM_DRC_MODE_DOUBLE = 2,
|
||||
} AVMDrcMode;
|
||||
|
||||
typedef enum AVMDrcSystemAudioMode
|
||||
{
|
||||
AVM_DRC_SYSTEM_AUDIO_MODE_UNKNOWN_0 = 0, // mono?
|
||||
AVM_DRC_SYSTEM_AUDIO_MODE_UNKNOWN_1 = 1, // stereo?
|
||||
AVM_DRC_SYSTEM_AUDIO_MODE_SURROUND = 2,
|
||||
} AVMDrcSystemAudioMode;
|
||||
|
||||
/**
|
||||
* Uses AVMGetDRCSystemAudioMode internally
|
||||
* @param outAudioMode
|
||||
* @return 0 on success, -2 on error
|
||||
*/
|
||||
int
|
||||
AVMGetSystemDRCAudioMode(AVMDrcSystemAudioMode *outAudioMode);
|
||||
|
||||
BOOL
|
||||
AVMGetDRCSystemAudioMode(AVMDrcSystemAudioMode *outAudioMode);
|
||||
|
||||
uint32_t
|
||||
AVMGetDRCVertCount();
|
||||
|
||||
BOOL
|
||||
AVMIsDRCFirstFlippDone();
|
||||
|
||||
BOOL
|
||||
AVMGetDRCScanMode(AVMDrcScanMode *outScanMode);
|
||||
|
||||
|
|
@ -35,6 +59,12 @@ AVMGetDRCMode(AVMDrcMode *outMode);
|
|||
uint32_t
|
||||
AVMProbeDRCNum(void);
|
||||
|
||||
BOOL
|
||||
AVMSetDRCEnable(BOOL enable);
|
||||
|
||||
BOOL
|
||||
AVMSetDRCGamma(float *gamma);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user