Commit 6c14ffc1 by rohks Committed by christosts

Fix javadoc references to `writeSampleData`

PiperOrigin-RevId: 502821506
parent dfa98ae7
...@@ -1651,8 +1651,8 @@ public class MatroskaExtractor implements Extractor { ...@@ -1651,8 +1651,8 @@ public class MatroskaExtractor implements Extractor {
} }
/** /**
* Called by {@link #writeSampleData(ExtractorInput, Track, int)} when the sample has been * Called by {@link #writeSampleData(ExtractorInput, Track, int, boolean)} when the sample has
* written. Returns the final sample size and resets state for the next sample. * been written. Returns the final sample size and resets state for the next sample.
*/ */
private int finishWriteSampleData() { private int finishWriteSampleData() {
int sampleSize = sampleBytesWritten; int sampleSize = sampleBytesWritten;
...@@ -1660,7 +1660,7 @@ public class MatroskaExtractor implements Extractor { ...@@ -1660,7 +1660,7 @@ public class MatroskaExtractor implements Extractor {
return sampleSize; return sampleSize;
} }
/** Resets state used by {@link #writeSampleData(ExtractorInput, Track, int)}. */ /** Resets state used by {@link #writeSampleData(ExtractorInput, Track, int, boolean)}. */
private void resetWriteSampleData() { private void resetWriteSampleData() {
sampleBytesRead = 0; sampleBytesRead = 0;
sampleBytesWritten = 0; sampleBytesWritten = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment