From f07e6b63ead83021c9dc9f8b60da39af9fa9a863 Mon Sep 17 00:00:00 2001 From: samrobinson Date: Tue, 7 Mar 2023 13:08:50 +0000 Subject: [PATCH] Fix AudioMixer javadoc. PiperOrigin-RevId: 514699994 --- .../main/java/androidx/media3/transformer/AudioMixer.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libraries/transformer/src/main/java/androidx/media3/transformer/AudioMixer.java b/libraries/transformer/src/main/java/androidx/media3/transformer/AudioMixer.java index 25e92a58c9..1e559bf568 100644 --- a/libraries/transformer/src/main/java/androidx/media3/transformer/AudioMixer.java +++ b/libraries/transformer/src/main/java/androidx/media3/transformer/AudioMixer.java @@ -47,7 +47,7 @@ import java.nio.ByteBuffer; *

Operation: The mixer must be {@linkplain #configure configured} before any methods are * called. Once configured, sources can queue audio data via {@link #queueInput} and the mixer will * consume input audio up to the configured buffer size and end time. Once all sources have produced - * data for a period then {@link getOutput()} will return the mixed result. The cycle repeats until + * data for a period then {@link #getOutput()} will return the mixed result. The cycle repeats until * the mixer {@link #isEnded()}. */ @UnstableApi @@ -61,12 +61,12 @@ public interface AudioMixer { * Configures the mixer. * *

The mixer must be configured before use and can only be reconfigured after a call to {@link - * reset()}. + * #reset()}. * *

The mixing buffer size is set by {@code bufferSizeMs} and indicates how much audio can be - * queued before {@link getOutput()} is called. + * queued before {@link #getOutput()} is called. * - * @param outputAudioFormat The audio format of buffers returned from {@link getOutput()}. + * @param outputAudioFormat The audio format of buffers returned from {@link #getOutput()}. * @param bufferSizeMs The mixing buffer size in milliseconds. * @param startTimeUs The start time of the mixer output in microseconds. * @throws UnhandledAudioFormatException If the output audio format is not supported.