-
public final class AudioProcessorOptionsOptions for audio processing.
-
-
Field Summary
Fields Modifier and Type Field Description private final AudioProcessorInterfacecapturePostProcessorprivate final BooleancapturePostBypassprivate final AudioProcessorInterfacerenderPreProcessorprivate final BooleanrenderPreBypass
-
Constructor Summary
Constructors Constructor Description AudioProcessorOptions(AudioProcessorInterface capturePostProcessor, Boolean capturePostBypass, AudioProcessorInterface renderPreProcessor, Boolean renderPreBypass)
-
Method Summary
Modifier and Type Method Description final AudioProcessorInterfacegetCapturePostProcessor()Audio processor for captured audio. final BooleangetCapturePostBypass()When true, bypass the processing for captured audio. final AudioProcessorInterfacegetRenderPreProcessor()Audio processor for rendered audio. final BooleangetRenderPreBypass()When true, bypass the processing for rendered audio. -
-
Constructor Detail
-
AudioProcessorOptions
AudioProcessorOptions(AudioProcessorInterface capturePostProcessor, Boolean capturePostBypass, AudioProcessorInterface renderPreProcessor, Boolean renderPreBypass)
-
-
Method Detail
-
getCapturePostProcessor
final AudioProcessorInterface getCapturePostProcessor()
Audio processor for captured audio.
-
getCapturePostBypass
final Boolean getCapturePostBypass()
When true, bypass the processing for captured audio.
Noop if capturePostProcessor is null.
-
getRenderPreProcessor
final AudioProcessorInterface getRenderPreProcessor()
Audio processor for rendered audio.
-
getRenderPreBypass
final Boolean getRenderPreBypass()
When true, bypass the processing for rendered audio.
Noop if renderPreProcessor is null.
-
-
-
-