Make MatroskaExtractor.seek() non-final

Now that this class can be extended, it makes sense for subclasses to be able
to clear state in seek().

PiperOrigin-RevId: 237902276
This commit is contained in:
andrewlewis 2019-03-11 22:57:26 +00:00 committed by Oliver Woodman
parent 7acc0ee798
commit 76e9950409

View File

@ -412,8 +412,9 @@ public class MatroskaExtractor implements Extractor {
extractorOutput = output;
}
@CallSuper
@Override
public final void seek(long position, long timeUs) {
public void seek(long position, long timeUs) {
clusterTimecodeUs = C.TIME_UNSET;
blockState = BLOCK_STATE_START;
reader.reset();