mirror of
https://github.com/androidx/media.git
synced 2025-04-30 06:46:50 +08: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
@ -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…
x
Reference in New Issue
Block a user