PacketProcessor
Artifact: androidx.media3:media3-effect
@ExperimentalApi
interface PacketProcessor<I : Any?, O : Any?> : PacketConsumer
A PacketConsumer that processes Packets and forwards them to a downstream PacketConsumer.
This interface is experimental and will be renamed or removed in a future release.
Summary
Public functions |
|
|---|---|
Unit |
setOutput(output: PacketConsumer<O>)Sets the output |
Inherited functions |
||||
|---|---|---|---|---|
|
Public functions
setOutput
fun setOutput(output: PacketConsumer<O>): Unit
Sets the output PacketConsumer that will receive the processed packets.
| Parameters | |
|---|---|
output: PacketConsumer<O> |
The |