You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Original implementation by JustAMan, mostly in the following
three commits sans unrelated changes. Backported by Oneric.
jellyfin@d3bc472jellyfin@a66e797jellyfin@971a997
The commits have also been adjusted to apply on top of current upstream
master, to use the animations detection from the previous commit instead
of the faulty original logic and the scanned_events variable was added.
Also added documentation which was missing in the original commits.
Co-authored-by: Oneric <oneric@oneric.stub>
self.maxRenderHeight=options.maxRenderHeight||0;// 0 - no limit
23
+
self.dropAllAnimations=options.dropAllAnimations||false;// attempt to remove all animations as a last ditch effort for displaying on weak hardware; may severly mangle subtitles if enabled
23
24
self.isOurCanvas=false;// (internal) we created canvas and manage it
24
25
self.video=options.video;// HTML video element (optional if canvas specified)
25
26
self.canvasParent=null;// (internal) HTML canvas parent element
@@ -113,7 +114,8 @@ var SubtitlesOctopus = function (options) {
0 commit comments