Package-level declarations

Types

Link copied to clipboard
@Singleton
open class AudioFocusHandler @Inject constructor(context: Context) : AudioHandler

A basic AudioHandler that manages audio focus while started.

Link copied to clipboard
interface AudioHandler

Interface for handling android audio.

Link copied to clipboard

Interface for controlling external audio processing.

Link copied to clipboard

Interface for external audio processing.

Link copied to clipboard
data class AudioProcessorOptions(val capturePostProcessor: AudioProcessorInterface? = null, val capturePostBypass: Boolean = false, val renderPreProcessor: AudioProcessorInterface? = null, val renderPreBypass: Boolean = false)

Options for audio processing.

Link copied to clipboard
@Singleton
class AudioSwitchHandler @Inject constructor(context: Context) : AudioHandler

An AudioHandler built on top of AudioSwitch.

Link copied to clipboard
Link copied to clipboard
class NoAudioHandler @Inject constructor : AudioHandler

A dummy implementation that does no audio handling.