TrimmingAudioProcessor


@UnstableApi
class TrimmingAudioProcessor : BaseAudioProcessor


Audio processor for trimming samples from the start/end of data.

Summary

Public constructors

Creates a new audio processor for trimming samples from the start/end of data.

Public functions

Long

Returns the expected duration of the output stream when the processor is applied given a input durationUs.

ByteBuffer!

Returns a buffer containing processed output data between its position and limit.

Boolean

Returns whether this processor will return no more output from getOutput until flush has been called and more input has been queued.

AudioProcessor.AudioFormat!

Called when the processor is configured for a new input format.

Unit
queueInput(inputBuffer: ByteBuffer!)

Queues audio data between the position and limit of the inputBuffer for processing.

Unit

Sets the trimmed frame count returned by getTrimmedFrameCount to zero.

Unit
setTrimFrameCount(trimStartFrames: Int, trimEndFrames: Int)

Sets the number of audio frames to trim from the start and end of audio passed to this processor.

Protected functions

Unit

Called when the processor is flushed, directly or as part of resetting.

Unit

Called when the end-of-stream is queued to the processor.

Unit

Called when the processor is reset.

Public properties

Long

Inherited Constants

From androidx.media3.common.audio.AudioProcessor
const ByteBuffer!

An empty, direct ByteBuffer.

Inherited functions

From androidx.media3.common.audio.BaseAudioProcessor
AudioProcessor.AudioFormat!

Configures the processor to process input audio with the specified format.

Unit

Clears any buffered data and pending output.

Boolean

Returns whether the current output buffer has any data remaining.

Boolean

Returns whether the processor is configured and will process input buffers.

Unit

Queues an end of stream signal.

ByteBuffer!

Replaces the current output buffer with a buffer of at least size bytes and returns it.

Unit

Resets the processor to its unconfigured state, releasing any resources.

Inherited properties

From androidx.media3.common.audio.BaseAudioProcessor
AudioProcessor.AudioFormat!

The current input audio format.

AudioProcessor.AudioFormat!

The current output audio format.

Public constructors

TrimmingAudioProcessor

TrimmingAudioProcessor()

Creates a new audio processor for trimming samples from the start/end of data.

Public functions

getDurationAfterProcessorApplied

fun getDurationAfterProcessorApplied(durationUs: Long): Long

Returns the expected duration of the output stream when the processor is applied given a input durationUs.

getOutput

fun getOutput(): ByteBuffer!

Returns a buffer containing processed output data between its position and limit. The buffer will always be a direct byte buffer with native byte order. Calling this method invalidates any previously returned buffer. The buffer will be empty if no output is available.

Returns
ByteBuffer!

A buffer containing processed output data between its position and limit.

isEnded

fun isEnded(): Boolean

Returns whether this processor will return no more output from getOutput until flush has been called and more input has been queued.

onConfigure

fun onConfigure(inputAudioFormat: AudioProcessor.AudioFormat!): AudioProcessor.AudioFormat!

Called when the processor is configured for a new input format.

queueInput

fun queueInput(inputBuffer: ByteBuffer!): Unit

Queues audio data between the position and limit of the inputBuffer for processing. After calling this method, processed output may be available via getOutput. Calling queueInput(ByteBuffer) again invalidates any pending output.

Parameters
inputBuffer: ByteBuffer!

The input buffer to process. It must be a direct byte buffer with native byte order. Its contents are treated as read-only. Its position will be advanced by the number of bytes consumed (which may be zero). The caller retains ownership of the provided buffer.

resetTrimmedFrameCount

fun resetTrimmedFrameCount(): Unit

Sets the trimmed frame count returned by getTrimmedFrameCount to zero.

setTrimFrameCount

fun setTrimFrameCount(trimStartFrames: Int, trimEndFrames: Int): Unit

Sets the number of audio frames to trim from the start and end of audio passed to this processor. After calling this method, call configure to apply the new trimming frame counts.

See configure.

Parameters
trimStartFrames: Int

The number of audio frames to trim from the start of audio.

trimEndFrames: Int

The number of audio frames to trim from the end of audio.

Protected functions

onFlush

protected fun onFlush(): Unit

Called when the processor is flushed, directly or as part of resetting.

onQueueEndOfStream

protected fun onQueueEndOfStream(): Unit

Called when the end-of-stream is queued to the processor.

onReset

protected fun onReset(): Unit

Called when the processor is reset.

Public properties

trimmedFrameCount

val trimmedFrameCountLong