mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
Minor fixes for Javadoc warnings
This commit is contained in:
parent
8a7d68da6c
commit
7c2d635565
2 changed files with 1 additions and 5 deletions
|
|
@ -92,8 +92,6 @@ public final class C {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A prefix for custom ExoPlayer WebVTT headers.
|
* A prefix for custom ExoPlayer WebVTT headers.
|
||||||
*
|
|
||||||
* @hide
|
|
||||||
*/
|
*/
|
||||||
public static final String WEBVTT_EXO_HEADER = "EXO-HEADER";
|
public static final String WEBVTT_EXO_HEADER = "EXO-HEADER";
|
||||||
|
|
||||||
|
|
@ -101,8 +99,6 @@ public final class C {
|
||||||
* An element of a custom ExoPlayer WebVTT header. An {@code WEBVTT_OFFSET + value} element can
|
* An element of a custom ExoPlayer WebVTT header. An {@code WEBVTT_OFFSET + value} element can
|
||||||
* be added to a custom ExoPlayer WebVTT header to specify an offset time (in microseconds) that
|
* be added to a custom ExoPlayer WebVTT header to specify an offset time (in microseconds) that
|
||||||
* should be added to the embedded MPEGTS value.
|
* should be added to the embedded MPEGTS value.
|
||||||
*
|
|
||||||
* @hide
|
|
||||||
*/
|
*/
|
||||||
public static final String WEBVTT_EXO_HEADER_OFFSET = "OFFSET:";
|
public static final String WEBVTT_EXO_HEADER_OFFSET = "OFFSET:";
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -88,7 +88,7 @@ public final class AudioTrack {
|
||||||
* Thrown when {@link android.media.AudioTrack#getTimestamp} returns a spurious timestamp, if
|
* Thrown when {@link android.media.AudioTrack#getTimestamp} returns a spurious timestamp, if
|
||||||
* {@code AudioTrack#failOnSpuriousAudioTimestamp} is set.
|
* {@code AudioTrack#failOnSpuriousAudioTimestamp} is set.
|
||||||
*/
|
*/
|
||||||
private static final class InvalidAudioTrackTimestampException extends RuntimeException {
|
public static final class InvalidAudioTrackTimestampException extends RuntimeException {
|
||||||
|
|
||||||
public InvalidAudioTrackTimestampException(String message) {
|
public InvalidAudioTrackTimestampException(String message) {
|
||||||
super(message);
|
super(message);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue