Remove TODO around optimizing sample data outputs in FlacExtractor

Preliminary measurement showed that the results were similar to the non-optimized
version.

PiperOrigin-RevId: 281255476
This commit is contained in:
kimvde 2019-11-19 10:45:58 +00:00 committed by Oliver Woodman
parent 95d0921114
commit 774ccafa93

View file

@ -202,8 +202,6 @@ public final class FlacExtractor implements Extractor {
state = STATE_READ_FRAMES;
}
// TODO: consider sending bytes within min frame size directly from the input to the sample queue
// to avoid unnecessary copies in scratch.
private int readFrames(ExtractorInput input) throws IOException, InterruptedException {
Assertions.checkNotNull(trackOutput);
Assertions.checkNotNull(flacStreamMetadata);