diff options
Diffstat (limited to 'web/script/player/track')
-rw-r--r-- | web/script/player/track/mse.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/script/player/track/mse.ts b/web/script/player/track/mse.ts index a4320b5..c916204 100644 --- a/web/script/player/track/mse.ts +++ b/web/script/player/track/mse.ts @@ -139,7 +139,7 @@ export class MSEPlayerTrack extends PlayerTrack { this.current_load = seg; // TODO why is appending so unreliable?! sometimes it does not add it this.source_buffer.changeType(track_to_content_type(this.track_from_profile())!); - this.source_buffer.timestampOffset = seg.start; + // this.source_buffer.timestampOffset = seg.start; this.source_buffer.appendBuffer(seg.buf); } } |