Commit 567f2a65 by olly Committed by Oliver Woodman

Fix Javadoc issues

PiperOrigin-RevId: 284509437
parent bdcdabac
...@@ -33,7 +33,7 @@ import java.io.InputStream; ...@@ -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; ...@@ -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 { ...@@ -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 { ...@@ -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
......
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