mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
Fix Javadoc issues
PiperOrigin-RevId: 284509437
This commit is contained in:
parent
bdcdabac01
commit
567f2a6575
2 changed files with 4 additions and 4 deletions
|
|
@ -33,7 +33,7 @@ import java.io.InputStream;
|
||||||
* wants to read an entire block/frame/header of known length.
|
* wants to read an entire block/frame/header of known length.
|
||||||
* </ul>
|
* </ul>
|
||||||
*
|
*
|
||||||
* <h4>{@link InputStream}-like methods</h4>
|
* <h3>{@link InputStream}-like methods</h3>
|
||||||
*
|
*
|
||||||
* <p>The {@code read()} and {@code skip()} methods provide {@link InputStream}-like byte-level
|
* <p>The {@code read()} and {@code skip()} methods provide {@link InputStream}-like byte-level
|
||||||
* access operations. The {@code length} parameter is a maximum, and each method returns the number
|
* access operations. The {@code length} parameter is a maximum, and each method returns the number
|
||||||
|
|
@ -41,7 +41,7 @@ import java.io.InputStream;
|
||||||
* was reached, or the method was interrupted, or the operation was aborted early for another
|
* was reached, or the method was interrupted, or the operation was aborted early for another
|
||||||
* reason.
|
* reason.
|
||||||
*
|
*
|
||||||
* <h4>Block-based methods</h4>
|
* <h3>Block-based methods</h3>
|
||||||
*
|
*
|
||||||
* <p>The {@code read/skip/peekFully()} and {@code advancePeekPosition()} methods assume the user
|
* <p>The {@code read/skip/peekFully()} and {@code advancePeekPosition()} methods assume the user
|
||||||
* wants to read an entire block/frame/header of known length.
|
* wants to read an entire block/frame/header of known length.
|
||||||
|
|
@ -218,7 +218,7 @@ public interface ExtractorInput {
|
||||||
throws IOException, InterruptedException;
|
throws IOException, InterruptedException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Advances the peek position by {@code length} bytes. Like {@link #peekFully(byte[], int, int,)}
|
* Advances the peek position by {@code length} bytes. Like {@link #peekFully(byte[], int, int)}
|
||||||
* except the data is skipped instead of read.
|
* except the data is skipped instead of read.
|
||||||
*
|
*
|
||||||
* @param length The number of bytes to peek from the input.
|
* @param length The number of bytes to peek from the input.
|
||||||
|
|
|
||||||
|
|
@ -72,7 +72,7 @@ public final class SsaDecoder extends SimpleSubtitleDecoder {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructs an SsaDecoder with optional format & header info.
|
* Constructs an SsaDecoder with optional format and header info.
|
||||||
*
|
*
|
||||||
* @param initializationData Optional initialization data for the decoder. If not null or empty,
|
* @param initializationData Optional initialization data for the decoder. If not null or empty,
|
||||||
* the initialization data must consist of two byte arrays. The first must contain an SSA
|
* the initialization data must consist of two byte arrays. The first must contain an SSA
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue