alSeqpLoop alSeqpLoop (function)

alSeqpLoop, n_alSeqpLoop

Sets sequence loop points

Syntax

#include <libaudio.h>     /* libaudio.h */
void alSeqpLoop(ALSeqPlayer *seqp, ALSeqMarker *start, ALSeqMarker *end, int count);
#include <n_libaudio.h>     /* n_libaudio.h */
void n_alSeqpLoop(N_ALSeqPlayer *seqp, ALSeqMarker *start, ALSeqMarker *end, s32 count);

Arguments

seqp
Pointer to the sequence player

start
Pointer to the loop start marker

end
Pointer to the loop end marker

count
Number of times to loop; a value of -1 means an infinite loop.

Description

alSeqpLoop sets the sequence loop points to the locations specified by the start and end markers. These markers must have been previously initialized by calling alSeqNewMarker.

For details on n_audio library, see the "Chapter 28 n_audio library" of the programming manual.

See Also

alSeqNewMarker

Revision History

1999/04/30 Changed Format