#include <twl/snd.h>
SNDEXResult SNDEX_SetDSPMixRateAsync( u8 rate, SNDEXCallback callback, void* arg );
rate | Rate at which to mix CPU and DSP audio output. The specifiable range is described below. |
---|---|
callback | SNDEXCallback -type function that is notified when the asynchronous process has completed. The asynchronous process runs even if NULL is specified here, but you are no longer able to detect that it has completed. |
arg | Argument to pass to the function specified in callback. |
SNDEX_RESULT_SUCCESS |
Asynchronous processing started successfully. The asynchronous processing results will be passed as an argument to the function registered in callback. |
---|---|
SNDEX_RESULT_ILLEGAL_STATE |
This function has been called on the NITRO platform. |
SNDEX_RESULT_INVALID_PARAM |
A value outside the specifiable range is given for rate. |
SNDEX_RESULT_BEFORE_INIT |
Extended sound features have not been initialized by the SNDEX_Init function. |
SNDEX_RESULT_EXCLUSIVE |
Processing for other extended sound features is running. Note that mutexes are used for each of the extended sound features, so they cannot be used simultaneously. As mentioned in the SNDEX Library Overview, the error also returns during processing of shutter sound playback. |
SNDEX_RESULT_PXI_SEND_ERROR |
A PXI command failed to be sent to the ARM7. This error occurs when the PXI send queue for the ARM7 has filled up or when the hardware has detected an error. As a result, the state may improve when a retry is made. |
SNDEX_RESULT_SUCCESS |
The whole series of operations completed successfully. |
---|---|
SNDEX_RESULT_EXCLUSIVE |
A mutex error occurred in the ARM7. This error depends upon the progress of ARM7 processing, so conditions may improve when a retry is made. |
SNDEX_RESULT_FATAL_ERROR |
This error should not ordinarily occur. This may occur when an illegal PXI command was sent directly, ignoring library state management; when the ARM7 component and the extended sound feature library have different versions; when library state management has fallen into an abnormal state due to memory corruption; or when other such conditions arise. There is no way to recover from this at run time. |
Asynchronously changes the rate at which CPU and DSP audio output is mixed. The mixing rate is set to 8 by default.
0 | CPU 0%, DSP 100% |
---|---|
1 | CPU 12.5%, DSP 87.5% |
2 | CPU 25%, DSP 75% |
3 | CPU 37.5%, DSP 62.5% |
4 | CPU 50%, DSP 50% |
5 | CPU 62.5%, DSP 37.5% |
6 | CPU 75%, DSP 25% |
7 | CPU 87.5%, DSP 12.5% |
8 | CPU 100%, DSP 0% |
If this function does not return a value of SNDEX_RESULT_SUCCESS
, the asynchronous processing and callback do not run. Also note that a PXI receive interrupt sends notification when the asynchronous processing is complete, so callbacks do not occur if PXI receive interrupts are prohibited.
SNDEX_SetDSPMixRate
SNDEX_GetDSPMixRateAsync
2008/11/07 Added mention that SNDEX_RESULT_EXCLUSIVE
is returned during processing of shutter sound playback.
2008/11/06 Corrected Asynchronous Process Results (SNDEX_RESULT_EXCLUSIVE
) in Return Values.
2008/02/22 Corrected default value of mixing rate.
2008/10/27 Initial version.
CONFIDENTIAL