Commit 058cba95 by ibaker Committed by microkatz

Remove @hide javadoc annotation from ExoPlayer GitHub

This tag is only understood by Dackka, which is used to generate the media3 javadoc.

PiperOrigin-RevId: 489233200
parent 51e4a07b
...@@ -138,11 +138,7 @@ public class Libgav1VideoRenderer extends DecoderVideoRenderer { ...@@ -138,11 +138,7 @@ public class Libgav1VideoRenderer extends DecoderVideoRenderer {
C.FORMAT_HANDLED, ADAPTIVE_SEAMLESS, TUNNELING_NOT_SUPPORTED); C.FORMAT_HANDLED, ADAPTIVE_SEAMLESS, TUNNELING_NOT_SUPPORTED);
} }
/** /** {@inheritDoc} */
* {@inheritDoc}
*
* @hide
*/
@Override @Override
protected final Gav1Decoder createDecoder(Format format, @Nullable CryptoConfig cryptoConfig) protected final Gav1Decoder createDecoder(Format format, @Nullable CryptoConfig cryptoConfig)
throws Gav1DecoderException { throws Gav1DecoderException {
......
...@@ -108,11 +108,7 @@ public final class FfmpegAudioRenderer extends DecoderAudioRenderer<FfmpegAudioD ...@@ -108,11 +108,7 @@ public final class FfmpegAudioRenderer extends DecoderAudioRenderer<FfmpegAudioD
return ADAPTIVE_NOT_SEAMLESS; return ADAPTIVE_NOT_SEAMLESS;
} }
/** /** {@inheritDoc} */
* {@inheritDoc}
*
* @hide
*/
@Override @Override
protected FfmpegAudioDecoder createDecoder(Format format, @Nullable CryptoConfig cryptoConfig) protected FfmpegAudioDecoder createDecoder(Format format, @Nullable CryptoConfig cryptoConfig)
throws FfmpegDecoderException { throws FfmpegDecoderException {
...@@ -126,11 +122,7 @@ public final class FfmpegAudioRenderer extends DecoderAudioRenderer<FfmpegAudioD ...@@ -126,11 +122,7 @@ public final class FfmpegAudioRenderer extends DecoderAudioRenderer<FfmpegAudioD
return decoder; return decoder;
} }
/** /** {@inheritDoc} */
* {@inheritDoc}
*
* @hide
*/
@Override @Override
protected Format getOutputFormat(FfmpegAudioDecoder decoder) { protected Format getOutputFormat(FfmpegAudioDecoder decoder) {
Assertions.checkNotNull(decoder); Assertions.checkNotNull(decoder);
......
...@@ -106,11 +106,7 @@ public final class LibflacAudioRenderer extends DecoderAudioRenderer<FlacDecoder ...@@ -106,11 +106,7 @@ public final class LibflacAudioRenderer extends DecoderAudioRenderer<FlacDecoder
} }
} }
/** /** {@inheritDoc} */
* {@inheritDoc}
*
* @hide
*/
@Override @Override
protected FlacDecoder createDecoder(Format format, @Nullable CryptoConfig cryptoConfig) protected FlacDecoder createDecoder(Format format, @Nullable CryptoConfig cryptoConfig)
throws FlacDecoderException { throws FlacDecoderException {
...@@ -121,11 +117,7 @@ public final class LibflacAudioRenderer extends DecoderAudioRenderer<FlacDecoder ...@@ -121,11 +117,7 @@ public final class LibflacAudioRenderer extends DecoderAudioRenderer<FlacDecoder
return decoder; return decoder;
} }
/** /** {@inheritDoc} */
* {@inheritDoc}
*
* @hide
*/
@Override @Override
protected Format getOutputFormat(FlacDecoder decoder) { protected Format getOutputFormat(FlacDecoder decoder) {
return getOutputFormat(decoder.getStreamMetadata()); return getOutputFormat(decoder.getStreamMetadata());
......
...@@ -93,11 +93,7 @@ public class LibopusAudioRenderer extends DecoderAudioRenderer<OpusDecoder> { ...@@ -93,11 +93,7 @@ public class LibopusAudioRenderer extends DecoderAudioRenderer<OpusDecoder> {
} }
} }
/** /** {@inheritDoc} */
* {@inheritDoc}
*
* @hide
*/
@Override @Override
protected final OpusDecoder createDecoder(Format format, @Nullable CryptoConfig cryptoConfig) protected final OpusDecoder createDecoder(Format format, @Nullable CryptoConfig cryptoConfig)
throws OpusDecoderException { throws OpusDecoderException {
...@@ -124,11 +120,7 @@ public class LibopusAudioRenderer extends DecoderAudioRenderer<OpusDecoder> { ...@@ -124,11 +120,7 @@ public class LibopusAudioRenderer extends DecoderAudioRenderer<OpusDecoder> {
return decoder; return decoder;
} }
/** /** {@inheritDoc} */
* {@inheritDoc} g
*
* @hide
*/
@Override @Override
protected final Format getOutputFormat(OpusDecoder decoder) { protected final Format getOutputFormat(OpusDecoder decoder) {
@C.PcmEncoding @C.PcmEncoding
......
...@@ -39,7 +39,6 @@ class CombinedJavadocPlugin implements Plugin<Project> { ...@@ -39,7 +39,6 @@ class CombinedJavadocPlugin implements Plugin<Project> {
options { options {
links "https://developer.android.com/reference", guavaReferenceUrl links "https://developer.android.com/reference", guavaReferenceUrl
encoding = "UTF-8" encoding = "UTF-8"
tags = ["hide"]
} }
options.addBooleanOption "-no-module-directories", true options.addBooleanOption "-no-module-directories", true
exclude "**/BuildConfig.java" exclude "**/BuildConfig.java"
......
...@@ -526,22 +526,14 @@ public final class ConcatenatingMediaSource extends CompositeMediaSource<MediaSo ...@@ -526,22 +526,14 @@ public final class ConcatenatingMediaSource extends CompositeMediaSource<MediaSo
dispatchOnCompletionActions(pendingOnCompletionActions); dispatchOnCompletionActions(pendingOnCompletionActions);
} }
/** /** {@inheritDoc} */
* {@inheritDoc}
*
* @hide
*/
@Override @Override
protected void onChildSourceInfoRefreshed( protected void onChildSourceInfoRefreshed(
MediaSourceHolder mediaSourceHolder, MediaSource mediaSource, Timeline timeline) { MediaSourceHolder mediaSourceHolder, MediaSource mediaSource, Timeline timeline) {
updateMediaSourceInternal(mediaSourceHolder, timeline); updateMediaSourceInternal(mediaSourceHolder, timeline);
} }
/** /** {@inheritDoc} */
* {@inheritDoc}
*
* @hide
*/
@Override @Override
@Nullable @Nullable
protected MediaPeriodId getMediaPeriodIdForChildMediaPeriodId( protected MediaPeriodId getMediaPeriodIdForChildMediaPeriodId(
...@@ -558,11 +550,7 @@ public final class ConcatenatingMediaSource extends CompositeMediaSource<MediaSo ...@@ -558,11 +550,7 @@ public final class ConcatenatingMediaSource extends CompositeMediaSource<MediaSo
return null; return null;
} }
/** /** {@inheritDoc} */
* {@inheritDoc}
*
* @hide
*/
@Override @Override
protected int getWindowIndexForChildWindowIndex( protected int getWindowIndexForChildWindowIndex(
MediaSourceHolder mediaSourceHolder, int windowIndex) { MediaSourceHolder mediaSourceHolder, int windowIndex) {
......
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