mirror of
https://github.com/samsonjs/media.git
synced 2026-03-30 10:15:48 +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;
|
||||
}
|
||||
|
||||
@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();
|
||||
|
|
|
|||
Loading…
Reference in a new issue