Package apple.audiotoolbox.enums
Class AudioFileRegionFlags
- java.lang.Object
-
- apple.audiotoolbox.enums.AudioFileRegionFlags
-
public final class AudioFileRegionFlags extends java.lang.Object[@enum] AudioFileRegionFlags These are flags for an AudioFileRegion that specify a playback direction. One or multiple of these flags can be set. For example, if both kAudioFileRegionFlag_LoopEnable and kAudioFileRegionFlag_PlayForward are set, then the region will play as a forward loop. If only kAudioFileRegionFlag_PlayForward is set, then the region will be played forward once. [@constant] kAudioFileRegionFlag_LoopEnable If this flag is set, the region will be looped. One or both of the following must also be set. [@constant] kAudioFileRegionFlag_PlayForward If this flag is set, the region will be played forward. [@constant] kAudioFileRegionFlag_PlayBackward If this flag is set, the region will be played backward.
-
-
Field Summary
Fields Modifier and Type Field Description static intLoopEnablestatic intPlayBackwardstatic intPlayForward
-
-
-
Field Detail
-
LoopEnable
public static final int LoopEnable
- See Also:
- Constant Field Values
-
PlayForward
public static final int PlayForward
- See Also:
- Constant Field Values
-
PlayBackward
public static final int PlayBackward
- See Also:
- Constant Field Values
-
-