-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Description
We have observed JS Heap increasing at a rate of approximately 1MB every 3 minutes when a new manifest is loaded when player.attachSource(<new manifest URL>) is called every 15 seconds when subtitles are enabled. We observe this in dash.js 4.7.4 and are yet to try earlier versions of dash.js
When subtitles are disabled, JS heap increases only a couple of MB per hour when attachSource() is called every 15 seconds.
This leads us to hypothesise that cues are not being properly cleaned up when a new manifest is loaded by the player.
We can see that the number of cues continues to grow across calls to attachSource()
document.querySelector('video').textTracks[0].cues.length
The fix merged in #4305 resolved a memory leak when soak testing a stream for 24 hours without calling attachSource()
Not sure if this is related, but we also wanted to check the logic that has been implemented for the previous PR to discard outdated cues.
Should the expression be return cue.startTime <= currentTime && cue.endTime >= currentTime to determine if cue is active?
Metadata
Metadata
Assignees
Type
Projects
Status