Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
SDK
/
exoplayer
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
a34fdcf1
authored
Nov 11, 2022
by
ibaker
Committed by
Ian Baker
Nov 14, 2022
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
Add `@ForOverride` to `DecoderAudioRenderer` `protected` methods
PiperOrigin-RevId: 487779266
parent
0383b723
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
library/core/src/main/java/com/google/android/exoplayer2/audio/DecoderAudioRenderer.java
library/core/src/main/java/com/google/android/exoplayer2/audio/DecoderAudioRenderer.java
View file @
a34fdcf1
...
...
@@ -59,6 +59,7 @@ import com.google.android.exoplayer2.util.MediaClock;
import
com.google.android.exoplayer2.util.MimeTypes
;
import
com.google.android.exoplayer2.util.TraceUtil
;
import
com.google.android.exoplayer2.util.Util
;
import
com.google.errorprone.annotations.ForOverride
;
import
java.lang.annotation.Documented
;
import
java.lang.annotation.Retention
;
import
java.lang.annotation.RetentionPolicy
;
...
...
@@ -257,6 +258,7 @@ public abstract class DecoderAudioRenderer<
* @param format The format, which has an audio {@link Format#sampleMimeType}.
* @return The {@link C.FormatSupport} for this {@link Format}.
*/
@ForOverride
protected
abstract
@C
.
FormatSupport
int
supportsFormatInternal
(
Format
format
);
/**
...
...
@@ -346,6 +348,7 @@ public abstract class DecoderAudioRenderer<
/** See {@link AudioSink.Listener#onPositionDiscontinuity()}. */
@CallSuper
@ForOverride
protected
void
onPositionDiscontinuity
()
{
// We are out of sync so allow currentPositionUs to jump backwards.
allowPositionDiscontinuity
=
true
;
...
...
@@ -360,6 +363,7 @@ public abstract class DecoderAudioRenderer<
* @return The decoder.
* @throws DecoderException If an error occurred creating a suitable decoder.
*/
@ForOverride
protected
abstract
T
createDecoder
(
Format
format
,
@Nullable
CryptoConfig
cryptoConfig
)
throws
DecoderException
;
...
...
@@ -369,6 +373,7 @@ public abstract class DecoderAudioRenderer<
*
* @param decoder The decoder.
*/
@ForOverride
protected
abstract
Format
getOutputFormat
(
T
decoder
);
/**
...
...
@@ -381,6 +386,7 @@ public abstract class DecoderAudioRenderer<
* @param newFormat The new format.
* @return The result of the evaluation.
*/
@ForOverride
protected
DecoderReuseEvaluation
canReuseDecoder
(
String
decoderName
,
Format
oldFormat
,
Format
newFormat
)
{
return
new
DecoderReuseEvaluation
(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment