Commit 95f1dbec by krocard Committed by Oliver Woodman

More @nullable in SimpleDecoderAudioRenderer

Some members are nullable but were not marked as
such.

PiperOrigin-RevId: 288873481
parent f47d06e7
...@@ -101,10 +101,14 @@ public abstract class SimpleDecoderAudioRenderer extends BaseRenderer implements ...@@ -101,10 +101,14 @@ public abstract class SimpleDecoderAudioRenderer extends BaseRenderer implements
private Format inputFormat; private Format inputFormat;
private int encoderDelay; private int encoderDelay;
private int encoderPadding; private int encoderPadding;
private SimpleDecoder<DecoderInputBuffer, ? extends SimpleOutputBuffer,
? extends AudioDecoderException> decoder; @Nullable
private DecoderInputBuffer inputBuffer; private SimpleDecoder<
private SimpleOutputBuffer outputBuffer; DecoderInputBuffer, ? extends SimpleOutputBuffer, ? extends AudioDecoderException>
decoder;
@Nullable private DecoderInputBuffer inputBuffer;
@Nullable private SimpleOutputBuffer outputBuffer;
@Nullable private DrmSession<ExoMediaCrypto> decoderDrmSession; @Nullable private DrmSession<ExoMediaCrypto> decoderDrmSession;
@Nullable private DrmSession<ExoMediaCrypto> sourceDrmSession; @Nullable private DrmSession<ExoMediaCrypto> sourceDrmSession;
......
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