Package apple.audiotoolbox.enums
Class AudioQueueProcessingTapFlags
- java.lang.Object
-
- apple.audiotoolbox.enums.AudioQueueProcessingTapFlags
-
public final class AudioQueueProcessingTapFlags extends java.lang.Object[@enum] AudioQueueProcessingTapFlags Flags used in conjunction with processing taps In the flags passed to AudioQueueProcessingTapNew, either the PreEffects or PostEffects flag must be set, but not both. [@constant] kAudioQueueProcessingTap_PreEffects Signifies that the processing tap is inserted before any effects. Passed to AudioQueueProcessingTapNew and to the callback. [@constant] kAudioQueueProcessingTap_PostEffects Signifies that the processing tap is inserted after any effects. Passed to AudioQueueProcessingTapNew and to the callback. [@constant] kAudioQueueProcessingTap_Siphon Signifies that the processing tap is a siphon; it does not call GetSourceAudio. The callback instead receives the source audio and may not modify it. Passed to AudioQueueProcessingTapNew and to the callback. [@constant] kAudioQueueProcessingTap_StartOfStream Signifies that the source audio is the beginning of a continuous stream, i.e. following the beginning or resumption of playback or recording. Returned from GetSourceAudio. [@constant] kAudioQueueProcessingTap_EndOfStream Signifies that the source audio is past the end of stream. This happens when the audio queue is being stopped asynchronously and has finished playing all of its data. Returned from GetSourceAudio and should be propagated on return from the callback.
-
-
Field Summary
Fields Modifier and Type Field Description static intEndOfStream0x200static intPostEffects0x02static intPreEffects0x01static intSiphon0x04static intStartOfStream0x100
-
-
-
Field Detail
-
PreEffects
public static final int PreEffects
0x01- See Also:
- Constant Field Values
-
PostEffects
public static final int PostEffects
0x02- See Also:
- Constant Field Values
-
Siphon
public static final int Siphon
0x04- See Also:
- Constant Field Values
-
StartOfStream
public static final int StartOfStream
0x100- See Also:
- Constant Field Values
-
EndOfStream
public static final int EndOfStream
0x200- See Also:
- Constant Field Values
-
-