forked from fraunhoferhhi/omaf.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathomafplayer.js
782 lines (678 loc) · 26.8 KB
/
omafplayer.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
/* -----------------------------------------------------------------------------
Software License for The Fraunhofer OMAF Javascript Player (c) Copyright 1995-2019 Fraunhofer-Gesellschaft zur Förderung
der angewandten Forschung e.V. All rights reserved.
1. INTRODUCTION
The Fraunhofer OMAF Javascript Player ("OMAF Javascript Player") is software that implements the
MPEG ISO/IEC 23090-2:2017 Omnidirectional Media Format ("OMAF") HEVC-based viewport-dependent OMAF video profile ("VDP")
for storage and distribution of VR360 video.
The Fraunhofer OMAF Javascript Player implementation consists of:
1. JavaScript Player (source code)
2. Content Creation Tools omaf-file-creation (python script + binaries)
The VDP Profile of the MPEG-OMAF standard allows distribution of VR360 video with higher resolution compared to encoding
the whole VR360 video in a single stream. The VDP Profile spatially segments the video into HEVC tiles and packaging the
tiles in a way that the receiver can request the high-definition tiles for the user‘s viewport and low-definition tiles
for the areas out of sight. At the receiver the tiles are aggregated into a single HEVC compliant video stream that can
be decoded with a legacy HEVC video decoder and rendered to the screen.
2. COPYRIGHT LICENSE
Redistribution and use in source or binary forms for purpose of testing the OMAF Javascript Player, with or without
modification, are permitted without payment of copyright license fees provided that you satisfy the following
conditions:
You must retain the complete text of this software license in redistributions of the OMAF Javascript Player or your
modifications thereto in source code form.
You must make available free of charge copies of the complete source code of the OMAF Javascript Player and your
modifications thereto to recipients of copies in binary form. The name of Fraunhofer may not be used to endorse or
promote products derived from this library without prior written permission.
You may not charge copyright license fees for anyone to use, copy or distribute the OMAF Javascript Player software or
your modifications thereto.
Your modified versions of the OMAF Javascript Player must carry prominent notices stating that you changed the software
and the date of any change. For modified versions of the OMAF Javascript Player, the term
"Fraunhofer OMAF Javascript Player" must be replaced by the term
"Third-Party Modified Version of the Fraunhofer OMAF Javascript Player.".
3. NO PATENT LICENSE
NO EXPRESS OR IMPLIED LICENSES TO ANY PATENT CLAIMS, including without limitation the patents of Fraunhofer,
ARE GRANTED BY THIS SOFTWARE LICENSE.
Fraunhofer provides no warranty of patent non-infringement with respect to this software.
You may use this OMAF Javascript Player or modifications thereto only for purposes that are authorized by appropriate
patent licenses.
4. DISCLAIMER
This OMAF Javascript Player software is provided by Fraunhofer on behalf of the copyright holders and contributors
"AS IS" and WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, including but not limited to the implied warranties of
merchantability and fitness for a particular purpose. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
for any direct, indirect, incidental, special, exemplary, or consequential damages, including but not limited to
procurement of substitute goods or services; loss of use, data, or profits, or business interruption, however caused and
on any theory of liability, whether in contract, strict liability, or tort (including negligence), arising in any way
out of the use of this software, even if advised of the possibility of such damage.
5. CONTACT INFORMATION
Fraunhofer Heinrich Hertz Institute
Attention: Video Coding & Analytics department – Multimedia Communications
Einsteinufer 37
10587 Berlin, Germany
www.hhi.fraunhofer.de/OMAF
----------------------------------------------------------------------------- */
function OMAFPlayer () {
this.version = "0.1.1"; // change it every time we push to master or create a new tag
this.initialized = false;
this.isOninit = false;
this.isOnLoop = true;
this.isLastBuf = false;
this.isReset = false;
this.isOnMainVid = true;
this.isFirstSwitch = false;
this.isTrackSwitch = false;
this.isEnterFullscreen = false;
this.MP = null; // Manifest Parser
this.ME = null; // Media Engine
this.DL = null; // DownLoader
this.RE = null; // REnderer
this.segmentNr = 1;
this.yaw = 0;
this.pitch = 0;
this.preTrackID = 0;
this.preYaw = 0;
this.prePitch = 0;
this.tIdCount = 1;
this.segDifArr = [];
this.isAddDif = false;
this.mainBufReq = null;
this.subBufReq = null;
this.pauseReq = null;
this.vidElement = null;
this.subVidElement = null;
this.renderElement = null;
this.subRenderElemet = null;
this.cameraElement = null;
this.videoController = null;
this.videoControllerVisibleTimeout = 0;
this.mouseMoveHandler = null;
this.readyInitRender = false;
this.readyMainRender = false;
this.readySubRender = false;
this.switchInfoQ = new Queue;
this.lastSegNum = 0;
this.segmentDuration = null;
this.bufferLimitTime = null;
this.bufferOffsetTime = 0;
this.isPlaying = false; // for now its just 2 states: playing and not playing
this.onInit = null;
}
OMAFPlayer.prototype.getVersion = function(){
return this.version;
}
OMAFPlayer.prototype.setRenderDebugInfo = function(flag){
if(this.RE){
this.RE.setDebug(flag);
}
}
OMAFPlayer.prototype.setTrackSwitch = function(flag){
this.isTrackSwitch = flag;
}
OMAFPlayer.prototype.init = function(vidElement, subVidElement, renderElement, subRenderElement, cameraElement, bufferLimit){
if (this.initialized){
Log.warn("Player", "OMAF Player was already initialized.");
return;
}
var self = this;
// create modules
this.MP = new MPDParser();
this.ME = new MediaEngine();
this.DL = new Fetcher();
this.RE = new Renderer();
this.SE = new scheduler();
Log.info("Player", "init OMAF Player");
self.bufferLimitTime = parseInt(bufferLimit);
this.vidElement = vidElement;
this.subVidElement = subVidElement;
this.renderElement = renderElement;
this.subRenderElement = subRenderElement;
this.cameraElement = cameraElement;
this.renderElement.style.zIndex = "10";
this.subRenderElement.style.zIndex = "8";
this.SE.activeVideoElement = function(active, segNum) {
this.activeBuffer = active;
if(this.activeBuffer == "MASTER"){
this.activeVidElement = self.vidElement;
self.bufferOffsetTime = segNum * self.segmentDuration;
this.setNewBufferOffsetTime(self.bufferOffsetTime);
}
else if(this.activeBuffer == "SLAVE"){
this.activeVidElement = self.subVidElement;
self.bufferOffsetTime = segNum * self.segmentDuration;
this.setNewBufferOffsetTime(self.bufferOffsetTime);
}
else {
Log.error("Player","Active buffer type not configured yet " + this.activeBuffer);
}
Log.info("Player","Active buffer type: " + this.activeBuffer );
return;
}
document.addEventListener("webkitfullscreenchange", function() {
if (document.webkitIsFullScreen){
if(self.isPlaying){
self.isEnterFullscreen = true;
if(self.isOnMainVid){
self.vidElement.pause();
}else{
self.subVidElement.pause();
}
}
}
});
this.vidElement.onpause = function() {
if(self.isPlaying && self.isEnterFullscreen ){
self.isEnterFullscreen = false;
var timeDif = 100;
var preVidTime = parseInt(self.vidElement.currentTime * 1000);
if(self.isOnMainVid){
self.pauseReq = setInterval(function (){
if( (parseInt(self.vidElement.currentTime * 1000) >= preVidTime + timeDif) || self.isReset){
clearInterval(self.pauseReq);
}else{
self.vidElement.play();
}
},timeDif);
}
}
}
this.subVidElement.onpause = function() {
if(self.isPlaying && self.isEnterFullscreen){
self.isEnterFullscreen = false;
var timeDif = 100;
var preVidTime = parseInt(self.subVidElement.currentTime * 1000);
if(!self.isOnMainVid){
self.pauseReq = setInterval(function (){
if( (parseInt(self.subVidElement.currentTime * 1000) >= preVidTime + timeDif) || self.isReset){
clearInterval(self.pauseReq);
}else{
self.subVidElement.play();
}
},timeDif);
}
}
}
this.vidElement.onwaiting = function() {
if(self.vidElement.buffered.length){
self.checkSubBuffer(self.vidElement.currentTime);
}
}
this.vidElement.onended = function() {
if(self.vidElement.buffered.length){
self.checkSubBuffer(self.vidElement.currentTime);
}
/*
if(self.isLastBuf){
if(self.isOnLoop){
self.segmentNr = 1;
self.bufferOffsetTime = 0;
self.RE.setIsAniPause(true);
self.ME.removeBuf(false, true);
self.ME.removeBuf(true, true);
self.ME.reset(true);
self.SE.activeVideoElement("MASTER",0);
self.isReset = true;
self.isLastBuf = false;
self.isOnMainVid = true;
}
}else{
if(self.vidElement.buffered.length){
self.checkSubBuffer(self.vidElement.currentTime);
}
}
*/
}
this.vidElement.oncanplay = function() {
if(self.isReset){
clearInterval(self.mainBufReq);
clearInterval(self.subBufReq);
clearInterval(self.pauseReq);
self.vidElement.play();
self.RE.mainRenderVideo();
self.renderElement.style.zIndex = "10";
self.subRenderElement.style.zIndex = "8";
self.RE.readyToChangeTrack(false);
self.RE.setIsAniPause(false);
self.isReset = false;
self.isOnMainVid = true;
}
self.readyMainRender = true;
}
this.subVidElement.onwaiting = function() {
if(self.subVidElement.buffered.length){
self.checkMainBuffer(self.subVidElement.currentTime);
}
}
this.subVidElement.oncanplay = function() {
if(!self.readyInitRender){
self.SE.activeVideoElement("MASTER",0);
self.RE.animate();
self.ME.removeBuf(true, false);
self.readyInitRender = true;
self.isOnMainVid = true;
}else{
self.readySubRender = true;
}
}
this.subVidElement.onended = function() {
if(self.subVidElement.buffered.length){
self.checkMainBuffer(self.subVidElement.currentTime);
}
}
this.videoController = document.getElementById('videoController');
this.DL.onManifestLoaded = function (mpd) { self.MP.init(mpd); }
this.DL.onInitLoaded = function (data) {
self.ME.init(self.vidElement, self.subVidElement, self.MP.getMimeType(), self.lastSegNum, data);
}
this.DL.onMediaLoaded = function (data, segNum) { self.ME.processMedia(data,segNum); }
this.MP.onInit = function () {
var initURLs = self.MP.getVPinitSegURLs();
self.lastSegNum = parseInt(self.MP.getLastSegmentNr());
Log.info("Player", "Fetch init urls");
self.DL.loadInitSegments(initURLs);
}
this.ME.onInit = function () {
Log.info("Player", "MediaEngine is ready, now initialize the renderer");
var fps = self.MP.getFPS();
if (!fps) {
fps = 30; // for now force set to 30
}
var framesPerSegment = self.MP.getFramesPerSegment(fps);
self.segmentDuration = parseInt(framesPerSegment*1000/fps).toFixed(2);
var RWPKs = self.ME.getRWPKs();
var SRQRs = self.ME.getSRQRs(); // get best region vectors
// todo: use it to compare with metadata from MPD
var mpdRegionVectors = self.MP.getBestRegionVectors();
// initialize the renderer
self.RE.init(self.MP.getProjection(),
self.vidElement,
self.subVidElement,
self.renderElement,
self.subRenderElement,
self.cameraElement,
fps,
framesPerSegment,
RWPKs,
mpdRegionVectors);
}
this.RE.onInit = function () {
self.SE.init(self.vidElement, "MASTER");
self.loadNextSegment(); // load first segment after init
}
this.RE.onSwitchRender = function (isSub) {
if(!isSub){
self.vidElement.play();
self.renderElement.style.zIndex = "10";
self.subRenderElement.style.zIndex = "8";
}else{
self.subVidElement.play();
self.renderElement.style.zIndex = "8";
self.subRenderElement.style.zIndex = "10";
}
}
this.ME.onMediaProcessed = function () {
// this is where whe know that sourceBuffer has received our stuff
// requires logic to manage buffers based on segment number
Log.info("Player", "MediaEngine processed all media segments.");
loadingDone = false;
const loadBuffer = () => {
while ( !self.isBufferFullyLoaded() && !loadingDone) {
self.fillMyBuffer();
loadingDone = true;
}
return true;
}
if(!self.isPlaying) {
loadBuffer();
}
else{
self.fillMyBuffer();
}
}
this.ME.onSwitchTrack = function(trackID, segNum, difSegNum){
var switchObj = {
trackID: trackID,
segNum: segNum,
};
self.switchInfoQ.enqueue(switchObj);
self.RE.setSwitch(true);
if(!self.isAddDif){
self.RE.setMaxCurTime((difSegNum * self.segmentDuration) / 1000);
self.isAddDif = true;
}else{
self.segDifArr.push(((difSegNum * self.segmentDuration) / 1000));
}
}
this.ME.onSwitchGeometry = function(trackID, isSub){
if(!isSub){
self.RE.matchTracktoCube(trackID);
}else{
self.RE.subMatchTracktoCube(trackID);
}
}
this.ME.onFinish = function(){
self.isLastBuf = true;
}
this.ME.onReset = function(){
self.loadNextSegment();
}
if (document.addEventListener)
{
document.addEventListener('webkitfullscreenchange', self.exitHandler.bind(self), false);
document.addEventListener('mozfullscreenchange', self.exitHandler.bind(self), false);
document.addEventListener('fullscreenchange', self.exitHandler.bind(self), false);
document.addEventListener('MSFullscreenChange', self.exitHandler.bind(self), false);
}
this.mouseMoveHandler = self.onFullScreenMouseMove.bind(self);
this.initialized = true;
if(!this.isOninit){
Log.warn("Player","onInit");
this.onInit();
this.isOninit = true;
}
}
OMAFPlayer.prototype.start = function(strMPD){
Log.info("Player", "Start playback of: " + strMPD);
this.DL.loadManifest(strMPD);
}
OMAFPlayer.prototype.isBufferFullyLoaded = function() {
self = this;
curTime = (self.SE.getCurrentTime());
bufferAvailable = ( parseInt(self.ME.currentSegNum)*self.segmentDuration) - curTime;
Log.info("Player"," buffer full last buffered segment " + self.ME.currentSegNum );
Log.info("Player"," segment playbacked " + ((curTime/self.segmentDuration) ).toFixed(0) );
if( (bufferAvailable + parseInt(self.segmentDuration) ) > (self.bufferLimitTime) )
{ Log.info("Player"," Buffer is fully loaded" );
return true;
} else {
Log.info("Player"," Buffer is not fully loaded")
return false;
}
}
OMAFPlayer.prototype.fillMyBuffer = function() {
self = this;
curTime = (self.SE.getCurrentTime());
bufferAvailable = ( parseInt(self.ME.currentSegNum)*self.segmentDuration) - curTime;
// Log.info("Player"," last buffered segment " + self.ME.currentSegNum );
// Log.info("Player"," segment playbacked " + ((curTime/self.segmentDuration) ).toFixed(0) );
// Log.info("Player","duration of buffered content available : " + bufferAvailable + "ms");
if( (bufferAvailable + parseInt(self.segmentDuration) ) > (self.bufferLimitTime) ){
decisionOffset = (bufferAvailable + parseInt(self.segmentDuration) ) - (self.bufferLimitTime);
// self.SE.BufferFull = true;
//Log.warn("Player","Next segment can not be accomodated in the buffer. The request will be made in :" + decisionOffset + "ms ");
setTimeout(function(){
self.loadNextSegment();
}, decisionOffset);
}
else {
Log.info("Player","Buffer is not full yet");
self.loadNextSegment();
// self.SE.BufferLoaded = false;
}
}
OMAFPlayer.prototype.setBufferLimit = function(bufferLimit) {
this.bufferLimitTime = parseInt(bufferLimit);
Log.info("Player" ,"Buffer time " + this.bufferLimitTime + "ms");
}
OMAFPlayer.prototype.play = function(){
if(this.isPlaying){
Log.info("Player", "Playback is already running");
return;
}
if(this.isOnMainVid){
this.vidElement.play();
}else{
this.subVidElement.play();
}
this.isPlaying = true;
this.fillMyBuffer();
}
OMAFPlayer.prototype.pause = function(){
if(this.isOnMainVid){
this.vidElement.pause();
}else{
this.subVidElement.pause();
}
this.isPlaying = false;
Log.info("Player", "Playback has been paused");
}
//for esc button on the keyboard
OMAFPlayer.prototype.exitHandler = function(){
if (this.isFullscreen()) {
this.enterFullscreen();
} else {
this.exitFullscreen();
}
}
OMAFPlayer.prototype.changeFullScreen = function(){
if (!this.isFullscreen()) {
this.enterFullscreen();
} else {
this.exitFullscreen();
}
}
OMAFPlayer.prototype.isFullscreen = function () {
return document.fullscreenElement || document.msFullscreenElement || document.mozFullScreen || document.webkitIsFullScreen;
}
OMAFPlayer.prototype.enterFullscreen = function () {
var self = this;
var element = document.getElementById('videobox');
if (element.requestFullscreen) {
element.requestFullscreen();
} else if (element.msRequestFullscreen) {
element.msRequestFullscreen();
} else if (element.mozRequestFullScreen) {
element.mozRequestFullScreen();
} else {
element.webkitRequestFullScreen();
}
this.videoController.classList.add('video-controller-fullscreen');
window.addEventListener("mousemove", self.mouseMoveHandler);
this.onFullScreenMouseMove();
}
OMAFPlayer.prototype.onFullScreenMouseMove = function () {
var self = this;
self.clearFullscreenState();
self.videoControllerVisibleTimeout = setTimeout(function () {
self.videoController.classList.add("hide");
}, 4000);
}
OMAFPlayer.prototype.clearFullscreenState = function () {
clearTimeout(this.videoControllerVisibleTimeout);
this.videoController.classList.remove("hide");
}
OMAFPlayer.prototype.exitFullscreen = function () {
var self = this;
window.removeEventListener("mousemove", self.mouseMoveHandler);
this.clearFullscreenState();
if (document.exitFullscreen) {
document.exitFullscreen();
} else if (document.mozCancelFullScreen) {
document.mozCancelFullScreen();
} else if (document.msExitFullscreen) {
document.msExitFullscreen();
} else {
document.webkitCancelFullScreen();
}
this.videoController.classList.remove('video-controller-fullscreen');
}
OMAFPlayer.prototype.loadNextSegment = function(){
var pos = this.RE.getOMAFPosition();
this.yaw = pos.phi;
this.pitch = pos.theta;
var asID = this.MP.getASIDfromYawPitch(this.yaw, this.pitch);
this.trackID = this.ME.getTrackIDFromASID(asID);
if(this.segmentNr == 1){
if(this.isReset){
this.trackID = this.preTrackID;
this.yaw = this.preYaw;
this.pitch = this.prePitch;
}
this.RE.matchTracktoCube(this.trackID);
this.RE.subMatchTracktoCube(this.trackID);
}else if(!this.isTrackSwitch){
this.trackID = this.preTrackID;
this.yaw = this.preYaw;
this.pitch = this.prePitch;
this.tIdCount++;
}else{
if( this.tIdCount < 2 && this.preTrackID != this.trackID){
this.trackID = this.preTrackID;
this.yaw = this.preYaw;
this.pitch = this.prePitch;
this.tIdCount++;
}else if(this.tIdCount >= 2){
this.tIdCount = 1;
}
}
var mediaURLs = this.MP.getMediaRequestsSimple(this.yaw, this.pitch, this.segmentNr);
this.preTrackID = this.trackID;
this.preYaw = this.yaw;
this.prePitch = this.pitch;
Log.info("Extractor Track ID : ", this.trackID);
if (this.ME.setActiveTrackID(this.trackID, this.segmentNr)) {
this.DL.loadMediaSegments(mediaURLs, (this.segmentNr++));
}
}
OMAFPlayer.prototype.getMetrics = function(){
var metrics = {};
if(this.RE.initialized){
var pos = this.RE.getOMAFPosition();
metrics["yaw"] = THREE.Math.radToDeg(pos.phi);
metrics["pitch"] = THREE.Math.radToDeg(pos.theta);
} else{
metrics["yaw"] = this.yaw;
metrics["pitch"] = this.pitch;
}
metrics["trackID"] = this.trackID;
metrics["segNr"] = this.segmentNr;
return metrics;
}
OMAFPlayer.prototype.checkSubBuffer = function(vidTime){
var self = this;
this.subBufReq = setInterval(function checkSub(){
var isChanged = false;
if(self.ME.isSubBufActive() && self.readySubRender){
self.RE.setIsAniPause(true);
if(!self.segDifArr.length){
self.isAddDif = false;
self.RE.setSwitch(false);
}else{
self.RE.setMaxCurTime(self.segDifArr.shift());
}
self.subVidElement.play();
self.renderElement.style.zIndex = "8";
self.subRenderElement.style.zIndex = "10";
self.RE.readyToChangeTrack(true);
self.RE.setIsAniPause(false);
self.SE.activeVideoElement("SLAVE",(self.switchInfoQ.front().segNum) -1);
self.ME.removeBuf(false, false);
self.isOnMainVid = false;
self.switchInfoQ.dequeue();
isChanged = true;
self.readySubRender = false;
}else if(!self.ME.isSubBufActive() && self.isOnLoop && self.isLastBuf){
while(!self.switchInfoQ.empty()){
self.switchInfoQ.dequeue();
}
self.segmentNr = 1;
self.bufferOffsetTime = 0;
self.SE.activeVideoElement("MASTER",0);
self.RE.setIsAniPause(true);
self.ME.removeBuf(false, true);
self.ME.reset(true);
self.isReset = true;
self.isLastBuf = false;
self.isOnMainVid = true;
isChanged = true;
}
if(isChanged || (self.vidElement.currentTime != vidTime)) {
clearInterval(self.subBufReq);
}else{
return checkSub;
}
}(), 100);
}
OMAFPlayer.prototype.checkMainBuffer = function(vidTime){
var self = this;
this.mainBufReq = setInterval(function checkMain(){
var isChanged = false;
if(self.ME.isMainBufActive() && self.readyMainRender){
self.RE.setIsAniPause(true);
if(!self.segDifArr.length){
self.isAddDif = false;
self.RE.setSwitch(false);
}else{
self.RE.setMaxCurTime(self.segDifArr.shift());
}
self.vidElement.play();
self.renderElement.style.zIndex = "10";
self.subRenderElement.style.zIndex = "8";
self.RE.readyToChangeTrack(false);
self.RE.setIsAniPause(false);
self.SE.activeVideoElement("MASTER",(self.switchInfoQ.front().segNum) -1);
self.ME.removeBuf(true, false);
self.isOnMainVid = true;
self.switchInfoQ.dequeue();
isChanged = true;
self.readyMainRender = false;
}else if(!self.ME.isMainBufActive() && self.isOnLoop && self.isLastBuf){
while(!self.switchInfoQ.empty()){
self.switchInfoQ.dequeue();
}
self.segmentNr = 1;
self.bufferOffsetTime = 0;
self.SE.activeVideoElement("MASTER",0);
self.RE.setIsAniPause(true);
self.ME.removeBuf(true, true);
self.ME.reset(true);
self.isReset = true;
self.isLastBuf = false;
self.isOnMainVid = true;
isChanged = true;
}
if(isChanged || (self.subVidElement.currentTime != vidTime)) {
clearInterval(self.mainBufReq);
}else{
return checkMain;
}
}(), 100);
}
OMAFPlayer.prototype.reset = function(){
if(this.initialized){
this.DL.reset();
this.ME.reset(false);
this.MP.reset();
this.RE.reset();
delete this.DL;
delete this.ME;
delete this.MP;
delete this.RE;
delete this.videoController;
delete this.mouseMoveHandler;
delete this.switchInfoQ;
delete this.segDifArr;
clearTimeout(this.videoControllerVisibleTimeout);
clearInterval(self.mainBufReq);
clearInterval(self.subBufReq);
clearInterval(self.pauseReq);
this.segmentNr = 1;
this.tIdCount = 1;
this.segDifArr = [];
this.isAddDif = false;
this.bufferOffsetTime = 0;
this.switchInfoQ = new Queue;
this.isPlaying = false;
this.readyInitRender = false;
this.initialized = false;
this.readyMainRender = false;
this.readySubRender = false;
}
}
OMAFPlayer.prototype.loop = function(element){
if(this.isOnLoop){
$(element).removeClass('fa-repeat').addClass('fa-long-arrow-right ');
this.isOnLoop = false;
}else{
$(element).removeClass('fa-long-arrow-right').addClass('fa-repeat ');
this.isOnLoop = true;
}
}