Commit 76e99504 by andrewlewis Committed by Oliver Woodman

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
parent 7acc0ee7
...@@ -412,8 +412,9 @@ public class MatroskaExtractor implements Extractor { ...@@ -412,8 +412,9 @@ public class MatroskaExtractor implements Extractor {
extractorOutput = output; extractorOutput = output;
} }
@CallSuper
@Override @Override
public final void seek(long position, long timeUs) { public void seek(long position, long timeUs) {
clusterTimecodeUs = C.TIME_UNSET; clusterTimecodeUs = C.TIME_UNSET;
blockState = BLOCK_STATE_START; blockState = BLOCK_STATE_START;
reader.reset(); reader.reset();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment