mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 00:59:44 -06:00
Audio system update - HLE plugin submitted, homebrew has sound, and also Mario movies!! (this was very unexpected). This also acts as a frame limiter. Might provide an option to turn it off in the future.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@227 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -151,18 +151,18 @@ EXPORT unsigned short CALL DSP_ReadControlRegister(void);
|
||||
// __________________________________________________________________________________________________
|
||||
// Function: DSP_Update
|
||||
// Purpose: This function is called from time to time from the core.
|
||||
// input: flag (DSP_FLAG_RESET, DSP_FLAG_ASSERT_INT, ...)
|
||||
// input: cycles - run this number of DSP clock cycles.
|
||||
// output: TRUE if the flag is set, else FALSE
|
||||
//
|
||||
EXPORT void CALL DSP_Update(void);
|
||||
EXPORT void CALL DSP_Update(int cycles);
|
||||
|
||||
// __________________________________________________________________________________________________
|
||||
// Function: DSP_SendAIBuffer
|
||||
// Purpose: This function sends the current AI Buffer to the DSP plugin
|
||||
// input: _Address : Memory-Address
|
||||
// input: _Size : Size of the Buffer
|
||||
// input: _Size : Size of the Buffer (always 32)
|
||||
//
|
||||
EXPORT void CALL DSP_SendAIBuffer(unsigned int _Address, unsigned int _Size);
|
||||
EXPORT void CALL DSP_SendAIBuffer(unsigned int address, int sample_rate);
|
||||
#undef CALL
|
||||
#if defined(__cplusplus)
|
||||
}
|
||||
|
Reference in New Issue
Block a user