- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
16 lines
600 B
Java
16 lines
600 B
Java
package com.mbridge.msdk.playercommon.exoplayer2.text;
|
|
|
|
/* loaded from: classes4.dex */
|
|
final class SimpleSubtitleOutputBuffer extends SubtitleOutputBuffer {
|
|
private final SimpleSubtitleDecoder owner;
|
|
|
|
public SimpleSubtitleOutputBuffer(SimpleSubtitleDecoder simpleSubtitleDecoder) {
|
|
this.owner = simpleSubtitleDecoder;
|
|
}
|
|
|
|
@Override // com.mbridge.msdk.playercommon.exoplayer2.text.SubtitleOutputBuffer, com.mbridge.msdk.playercommon.exoplayer2.decoder.OutputBuffer
|
|
public final void release() {
|
|
this.owner.releaseOutputBuffer((SubtitleOutputBuffer) this);
|
|
}
|
|
}
|