#include <nnsys/snd.h>void NNS_SndPlayerSetTrackModDepth( NNSSndHandle* handle, u16 trackBitMask, int depth );
handle |
The sound handle pointer. |
trackBitMask |
This is the track bit mask. |
depth |
Modulation depth value. Takes a value between 0 and 255. |
This function changes the modulation depth of the sequence track.
The track modulation depth of the sequence that is bound to the Sound Handle is changed. This function does not perform any action if the stream handle is invalid.
trackBitMask specifies the track to be set. The tracks are identified from the lower bit in sequence: Track 0, Track 1, Track 2 .... All tracks that have enabled bits will have their modulation depth changed. For example, to change the modulation depth of Track 2 and Track 5, use (1 << 2) | (1 << 5); i.e., 0x0024.
The default depth value is 0 and there is no modulation effect. A larger value creates a larger effect. For example, if the modulation type is the default "change tone," the depth will be +/- 1 half-tone for 127.
If a modulation depth value is already set inside the sequence data, the value set later is the one that is valid.
None.
06/01/2004 Revised to state that the Sound Handle binds to the sequence.
04/01/2004 Initial version.