mirror of
https://github.com/androidx/media.git
synced 2025-05-06 23:20:42 +08:00
Fix javadoc references to writeSampleData
PiperOrigin-RevId: 502821506
This commit is contained in:
parent
76af4270a9
commit
8fcd6bbffc
@ -1649,8 +1649,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;
|
||||||
@ -1658,7 +1658,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…
x
Reference in New Issue
Block a user