Update dequeueOutputBuffer method

Add @Nullable annotation in the LibvpxVideoRenderer.

PiperOrigin-RevId: 263150736
This commit is contained in:
sofijajvc 2019-08-13 17:18:51 +01:00 committed by Andrew Lewis
parent 0e33123938
commit b77b9f5c02

View file

@ -239,6 +239,7 @@ public class LibvpxVideoRenderer extends SimpleDecoderVideoRenderer {
} }
@Override @Override
@Nullable
protected VideoDecoderOutputBuffer dequeueOutputBuffer() throws VpxDecoderException { protected VideoDecoderOutputBuffer dequeueOutputBuffer() throws VpxDecoderException {
outputBuffer = decoder.dequeueOutputBuffer(); outputBuffer = decoder.dequeueOutputBuffer();
return outputBuffer; return outputBuffer;