Skip to content

Commit 0606ab0

Browse files
rohitjoinschristosts
authored andcommitted
Fix javadoc references to writeSampleData
PiperOrigin-RevId: 502821506 (cherry picked from commit 6c14ffc)
1 parent 2eab93d commit 0606ab0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libraries/extractor/src/main/java/androidx/media3/extractor/mkv/MatroskaExtractor.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1652,16 +1652,16 @@ private int writeSampleData(ExtractorInput input, Track track, int size, boolean
16521652
}
16531653

16541654
/**
1655-
* Called by {@link #writeSampleData(ExtractorInput, Track, int)} when the sample has been
1656-
* written. Returns the final sample size and resets state for the next sample.
1655+
* Called by {@link #writeSampleData(ExtractorInput, Track, int, boolean)} when the sample has
1656+
* been written. Returns the final sample size and resets state for the next sample.
16571657
*/
16581658
private int finishWriteSampleData() {
16591659
int sampleSize = sampleBytesWritten;
16601660
resetWriteSampleData();
16611661
return sampleSize;
16621662
}
16631663

1664-
/** Resets state used by {@link #writeSampleData(ExtractorInput, Track, int)}. */
1664+
/** Resets state used by {@link #writeSampleData(ExtractorInput, Track, int, boolean)}. */
16651665
private void resetWriteSampleData() {
16661666
sampleBytesRead = 0;
16671667
sampleBytesWritten = 0;

0 commit comments

Comments
 (0)