mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
Fix javadoc references to writeSampleData
PiperOrigin-RevId: 502821506
(cherry picked from commit 8fcd6bbffc)
This commit is contained in:
parent
7f20729117
commit
31aae7782e
1 changed files with 3 additions and 3 deletions
|
|
@ -1650,8 +1650,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;
|
||||||
|
|
@ -1659,7 +1659,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;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue