Skip to content

Commit

Permalink
Remove @hide javadoc annotation from ExoPlayer GitHub
Browse files Browse the repository at this point in the history
This tag is only understood by Dackka, which is used to generate the media3 javadoc.

PiperOrigin-RevId: 489233200
  • Loading branch information
icbaker authored and microkatz committed Nov 21, 2022
1 parent 51e4a07 commit 058cba9
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 51 deletions.
Expand Up @@ -138,11 +138,7 @@ public String getName() {
C.FORMAT_HANDLED, ADAPTIVE_SEAMLESS, TUNNELING_NOT_SUPPORTED);
}

/**
* {@inheritDoc}
*
* @hide
*/
/** {@inheritDoc} */
@Override
protected final Gav1Decoder createDecoder(Format format, @Nullable CryptoConfig cryptoConfig)
throws Gav1DecoderException {
Expand Down
Expand Up @@ -108,11 +108,7 @@ public String getName() {
return ADAPTIVE_NOT_SEAMLESS;
}

/**
* {@inheritDoc}
*
* @hide
*/
/** {@inheritDoc} */
@Override
protected FfmpegAudioDecoder createDecoder(Format format, @Nullable CryptoConfig cryptoConfig)
throws FfmpegDecoderException {
Expand All @@ -126,11 +122,7 @@ protected FfmpegAudioDecoder createDecoder(Format format, @Nullable CryptoConfig
return decoder;
}

/**
* {@inheritDoc}
*
* @hide
*/
/** {@inheritDoc} */
@Override
protected Format getOutputFormat(FfmpegAudioDecoder decoder) {
Assertions.checkNotNull(decoder);
Expand Down
Expand Up @@ -106,11 +106,7 @@ public String getName() {
}
}

/**
* {@inheritDoc}
*
* @hide
*/
/** {@inheritDoc} */
@Override
protected FlacDecoder createDecoder(Format format, @Nullable CryptoConfig cryptoConfig)
throws FlacDecoderException {
Expand All @@ -121,11 +117,7 @@ protected FlacDecoder createDecoder(Format format, @Nullable CryptoConfig crypto
return decoder;
}

/**
* {@inheritDoc}
*
* @hide
*/
/** {@inheritDoc} */
@Override
protected Format getOutputFormat(FlacDecoder decoder) {
return getOutputFormat(decoder.getStreamMetadata());
Expand Down
Expand Up @@ -93,11 +93,7 @@ public String getName() {
}
}

/**
* {@inheritDoc}
*
* @hide
*/
/** {@inheritDoc} */
@Override
protected final OpusDecoder createDecoder(Format format, @Nullable CryptoConfig cryptoConfig)
throws OpusDecoderException {
Expand All @@ -124,11 +120,7 @@ protected final OpusDecoder createDecoder(Format format, @Nullable CryptoConfig
return decoder;
}

/**
* {@inheritDoc} g
*
* @hide
*/
/** {@inheritDoc} */
@Override
protected final Format getOutputFormat(OpusDecoder decoder) {
@C.PcmEncoding
Expand Down
1 change: 0 additions & 1 deletion javadoc_combined.gradle
Expand Up @@ -39,7 +39,6 @@ class CombinedJavadocPlugin implements Plugin<Project> {
options {
links "https://developer.android.com/reference", guavaReferenceUrl
encoding = "UTF-8"
tags = ["hide"]
}
options.addBooleanOption "-no-module-directories", true
exclude "**/BuildConfig.java"
Expand Down
Expand Up @@ -526,22 +526,14 @@ protected synchronized void releaseSourceInternal() {
dispatchOnCompletionActions(pendingOnCompletionActions);
}

/**
* {@inheritDoc}
*
* @hide
*/
/** {@inheritDoc} */
@Override
protected void onChildSourceInfoRefreshed(
MediaSourceHolder mediaSourceHolder, MediaSource mediaSource, Timeline timeline) {
updateMediaSourceInternal(mediaSourceHolder, timeline);
}

/**
* {@inheritDoc}
*
* @hide
*/
/** {@inheritDoc} */
@Override
@Nullable
protected MediaPeriodId getMediaPeriodIdForChildMediaPeriodId(
Expand All @@ -558,11 +550,7 @@ protected MediaPeriodId getMediaPeriodIdForChildMediaPeriodId(
return null;
}

/**
* {@inheritDoc}
*
* @hide
*/
/** {@inheritDoc} */
@Override
protected int getWindowIndexForChildWindowIndex(
MediaSourceHolder mediaSourceHolder, int windowIndex) {
Expand Down

0 comments on commit 058cba9

Please sign in to comment.