From a93e8cc620e12dfcba6b5ee40cf718d3fba2868a Mon Sep 17 00:00:00 2001 From: hschlueter Date: Tue, 11 Jan 2022 16:35:08 +0000 Subject: [PATCH] Update Muxer exception javadoc to match MuxerWrapper. PiperOrigin-RevId: 421039869 --- .../java/com/google/android/exoplayer2/transformer/Muxer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/transformer/src/main/java/com/google/android/exoplayer2/transformer/Muxer.java b/library/transformer/src/main/java/com/google/android/exoplayer2/transformer/Muxer.java index fc6ae6d706..aa83f2a497 100644 --- a/library/transformer/src/main/java/com/google/android/exoplayer2/transformer/Muxer.java +++ b/library/transformer/src/main/java/com/google/android/exoplayer2/transformer/Muxer.java @@ -109,7 +109,7 @@ import java.nio.ByteBuffer; * @param data Buffer containing the sample data to write to the container. * @param isKeyFrame Whether the sample is a key frame. * @param presentationTimeUs The presentation time of the sample in microseconds. - * @throws MuxerException If the muxer fails to start or an error occurs while writing the sample. + * @throws MuxerException If the muxer fails to write the sample. */ void writeSampleData(int trackIndex, ByteBuffer data, boolean isKeyFrame, long presentationTimeUs) throws MuxerException;