mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
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:
parent
7acc0ee798
commit
76e9950409
1 changed files with 2 additions and 1 deletions
|
|
@ -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();
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue