#include <nnsys/snd.h>BOOL NNS_SndArcStrmAllocChannel( int playerNo );
This function allocates the channels that are used when a stream is played.
The allocated channel is connected to the specified stream player. Thereafter, streams that are played with the stream player are played back using the allocated channel.
To playback streams without allocating a channel with this function, automatically allocate a channel using either the NNS_SndArcStrmStart or the NNS_SndArcStrmPrepare function. These functions are used to control the timing by which channels are allocated.
Use the NNS_SndArcStrmFreeChannel function to release channels that are allocated with this function.
The function will fail if you call it for a stream player that is playing.
NNS_SndArcStrmStart, NNS_SndArcStrmPrepare, NNS_SndArcStrmFreeChannel
11/25/2004 Added a caution concerning calling the function when a player is playing. 08/10/2004 Initial version.