Inline SimpleSubtitleOutputBuffer

PiperOrigin-RevId: 399179751
This commit is contained in:
bachinger 2021-09-27 14:57:36 +01:00
parent a82690a533
commit e373e0cbaf
3 changed files with 13 additions and 35 deletions

View File

@ -53,7 +53,12 @@ public abstract class SimpleSubtitleDecoder
@Override
protected final SubtitleOutputBuffer createOutputBuffer() {
return new SimpleSubtitleOutputBuffer(this::releaseOutputBuffer);
return new SubtitleOutputBuffer() {
@Override
public void release() {
SimpleSubtitleDecoder.this.releaseOutputBuffer(this);
}
};
}
@Override

View File

@ -1,33 +0,0 @@
/*
* Copyright (C) 2016 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.android.exoplayer2.text;
/** A {@link SubtitleOutputBuffer} for decoders that extend {@link SimpleSubtitleDecoder}. */
/* package */ final class SimpleSubtitleOutputBuffer extends SubtitleOutputBuffer {
private final Owner<SubtitleOutputBuffer> owner;
/** @param owner The decoder that owns this buffer. */
public SimpleSubtitleOutputBuffer(Owner<SubtitleOutputBuffer> owner) {
super();
this.owner = owner;
}
@Override
public final void release() {
owner.releaseOutputBuffer(this);
}
}

View File

@ -57,7 +57,13 @@ public final class ExoplayerCuesDecoder implements SubtitleDecoder {
inputBuffer = new SubtitleInputBuffer();
availableOutputBuffers = new ArrayDeque<>();
for (int i = 0; i < OUTPUT_BUFFERS_COUNT; i++) {
availableOutputBuffers.addFirst(new SimpleSubtitleOutputBuffer(this::releaseOutputBuffer));
availableOutputBuffers.addFirst(
new SubtitleOutputBuffer() {
@Override
public void release() {
ExoplayerCuesDecoder.this.releaseOutputBuffer(this);
}
});
}
inputBufferState = INPUT_BUFFER_AVAILABLE;
}