mirror of
https://github.com/androidx/media.git
synced 2025-05-06 23:20:42 +08:00
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 (cherry picked from commit 058cba95d40db83c77f4dd0aa8cb561221463b3a)
This commit is contained in:
parent
f4259f3633
commit
bd6570f6c7
@ -138,11 +138,7 @@ public class Libgav1VideoRenderer extends DecoderVideoRenderer {
|
||||
C.FORMAT_HANDLED, ADAPTIVE_SEAMLESS, TUNNELING_NOT_SUPPORTED);
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*
|
||||
* @hide
|
||||
*/
|
||||
/** {@inheritDoc} */
|
||||
@Override
|
||||
protected final Gav1Decoder createDecoder(Format format, @Nullable CryptoConfig cryptoConfig)
|
||||
throws Gav1DecoderException {
|
||||
|
@ -108,11 +108,7 @@ public final class FfmpegAudioRenderer extends DecoderAudioRenderer<FfmpegAudioD
|
||||
return ADAPTIVE_NOT_SEAMLESS;
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*
|
||||
* @hide
|
||||
*/
|
||||
/** {@inheritDoc} */
|
||||
@Override
|
||||
protected FfmpegAudioDecoder createDecoder(Format format, @Nullable CryptoConfig cryptoConfig)
|
||||
throws FfmpegDecoderException {
|
||||
@ -126,11 +122,7 @@ public final class FfmpegAudioRenderer extends DecoderAudioRenderer<FfmpegAudioD
|
||||
return decoder;
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*
|
||||
* @hide
|
||||
*/
|
||||
/** {@inheritDoc} */
|
||||
@Override
|
||||
protected Format getOutputFormat(FfmpegAudioDecoder decoder) {
|
||||
Assertions.checkNotNull(decoder);
|
||||
|
@ -106,11 +106,7 @@ public final class LibflacAudioRenderer extends DecoderAudioRenderer<FlacDecoder
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*
|
||||
* @hide
|
||||
*/
|
||||
/** {@inheritDoc} */
|
||||
@Override
|
||||
protected FlacDecoder createDecoder(Format format, @Nullable CryptoConfig cryptoConfig)
|
||||
throws FlacDecoderException {
|
||||
@ -121,11 +117,7 @@ public final class LibflacAudioRenderer extends DecoderAudioRenderer<FlacDecoder
|
||||
return decoder;
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*
|
||||
* @hide
|
||||
*/
|
||||
/** {@inheritDoc} */
|
||||
@Override
|
||||
protected Format getOutputFormat(FlacDecoder decoder) {
|
||||
return getOutputFormat(decoder.getStreamMetadata());
|
||||
|
@ -93,11 +93,7 @@ public class LibopusAudioRenderer extends DecoderAudioRenderer<OpusDecoder> {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*
|
||||
* @hide
|
||||
*/
|
||||
/** {@inheritDoc} */
|
||||
@Override
|
||||
protected final OpusDecoder createDecoder(Format format, @Nullable CryptoConfig cryptoConfig)
|
||||
throws OpusDecoderException {
|
||||
@ -124,11 +120,7 @@ public class LibopusAudioRenderer extends DecoderAudioRenderer<OpusDecoder> {
|
||||
return decoder;
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc} g
|
||||
*
|
||||
* @hide
|
||||
*/
|
||||
/** {@inheritDoc} */
|
||||
@Override
|
||||
protected final Format getOutputFormat(OpusDecoder decoder) {
|
||||
@C.PcmEncoding
|
||||
|
@ -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"
|
||||
|
@ -526,22 +526,14 @@ public final class ConcatenatingMediaSource extends CompositeMediaSource<MediaSo
|
||||
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(
|
||||
@ -558,11 +550,7 @@ public final class ConcatenatingMediaSource extends CompositeMediaSource<MediaSo
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritDoc}
|
||||
*
|
||||
* @hide
|
||||
*/
|
||||
/** {@inheritDoc} */
|
||||
@Override
|
||||
protected int getWindowIndexForChildWindowIndex(
|
||||
MediaSourceHolder mediaSourceHolder, int windowIndex) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user