@vkontakte/videoplayer-core 2.0.131-dev.abb2b2b1.0 → 2.0.131-dev.c235b295.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es2015.cjs.js +93 -32
- package/es2015.esm.js +89 -28
- package/es2018.cjs.js +94 -33
- package/es2018.esm.js +90 -29
- package/es2024.cjs.js +95 -34
- package/es2024.esm.js +94 -33
- package/esnext.cjs.js +95 -34
- package/esnext.esm.js +94 -33
- package/evergreen.esm.js +89 -28
- package/package.json +2 -2
- package/types/providers/DashProviderNew/baseDashProvider.d.ts +57 -0
- package/types/providers/DashProviderNew/consts.d.ts +3 -0
- package/types/providers/DashProviderNew/index.d.ts +2 -0
- package/types/providers/DashProviderNew/lib/ElementSizeManager.d.ts +19 -0
- package/types/providers/DashProviderNew/lib/LiveTextManager.d.ts +23 -0
- package/types/providers/DashProviderNew/lib/buffer.d.ts +117 -0
- package/types/providers/DashProviderNew/lib/fetcher.d.ts +59 -0
- package/types/providers/DashProviderNew/lib/parsers/ietf/index.d.ts +13 -0
- package/types/providers/DashProviderNew/lib/parsers/index.d.ts +3 -0
- package/types/providers/DashProviderNew/lib/parsers/mpd.d.ts +3 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/BoxModel.d.ts +20 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/BoxParser.d.ts +21 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/BoxTypeEnum.d.ts +30 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/box.d.ts +74 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/avc1.d.ts +8 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/equi.d.ts +21 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/ftyp.d.ts +17 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/index.d.ts +26 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/mdat.d.ts +15 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/mdia.d.ts +8 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/mfhd.d.ts +11 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/minf.d.ts +8 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/moof.d.ts +8 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/moov.d.ts +8 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/mvhd.d.ts +35 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/prhd.d.ts +16 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/proj.d.ts +8 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/sidx.d.ts +48 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/st3d.d.ts +23 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/stbl.d.ts +8 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/stsd.d.ts +11 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/sv3d.d.ts +8 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/tfdt.d.ts +17 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/tfhd.d.ts +22 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/tkhd.d.ts +42 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/traf.d.ts +8 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/trak.d.ts +8 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/trun.d.ts +31 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/unknown.d.ts +6 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/uuid.d.ts +11 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/fullBox.d.ts +15 -0
- package/types/providers/DashProviderNew/lib/parsers/mpeg/isobmff.d.ts +12 -0
- package/types/providers/DashProviderNew/lib/parsers/webm/ebml.d.ts +76 -0
- package/types/providers/DashProviderNew/lib/parsers/webm/webm.d.ts +3 -0
- package/types/providers/DashProviderNew/lib/player.d.ts +92 -0
- package/types/providers/DashProviderNew/lib/sourceBufferTaskQueue.d.ts +19 -0
- package/types/providers/DashProviderNew/lib/types.d.ts +186 -0
- package/types/providers/DashProviderNew/lib/utils.d.ts +21 -0
- package/types/providers/DashProviderNew/newDashCmafLiveProvider.d.ts +8 -0
- package/types/providers/DashProviderNew/newDashProvider.d.ts +6 -0
- package/types/providers/utils/StallsManager.d.ts +18 -4
- package/types/utils/ClientChecker/services/BrowserChecker.d.ts +2 -0
- package/types/utils/autoSelectTrack.d.ts +6 -3
- package/types/utils/qualityLimits.d.ts +3 -18
- package/types/utils/tuningConfig.d.ts +27 -7
package/esnext.cjs.js
CHANGED
|
@@ -1,73 +1,127 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vkontakte/videoplayer-core v2.0.131-dev.
|
|
3
|
-
*
|
|
2
|
+
* @vkontakte/videoplayer-core v2.0.131-dev.c235b295.0
|
|
3
|
+
* Tue, 13 May 2025 09:14:14 GMT
|
|
4
4
|
* https://st.mycdn.me/static/vkontakte-videoplayer/2-0-131/doc/
|
|
5
5
|
*/
|
|
6
|
-
"use strict";var gv=Object.create;var Ba=Object.defineProperty;var vv=Object.getOwnPropertyDescriptor;var Sv=Object.getOwnPropertyNames;var yv=Object.getPrototypeOf,Tv=Object.prototype.hasOwnProperty;var f=(r,e)=>()=>(e||r((e={exports:{}}).exports,e),e.exports),Iv=(r,e)=>{for(var t in e)Ba(r,t,{get:e[t],enumerable:!0})},Zu=(r,e,t,i)=>{if(e&&typeof e=="object"||typeof e=="function")for(let a of Sv(e))!Tv.call(r,a)&&a!==t&&Ba(r,a,{get:()=>e[a],enumerable:!(i=vv(e,a))||i.enumerable});return r};var U=(r,e,t)=>(t=r!=null?gv(yv(r)):{},Zu(e||!r||!r.__esModule?Ba(t,"default",{value:r,enumerable:!0}):t,r)),Ev=r=>Zu(Ba({},"__esModule",{value:!0}),r);var de=f((an,el)=>{"use strict";var ir=function(r){return r&&r.Math===Math&&r};el.exports=ir(typeof globalThis=="object"&&globalThis)||ir(typeof window=="object"&&window)||ir(typeof self=="object"&&self)||ir(typeof global=="object"&&global)||ir(typeof an=="object"&&an)||function(){return this}()||Function("return this")()});var Ie=f((iL,tl)=>{"use strict";tl.exports=function(r){try{return!!r()}catch{return!0}}});var rr=f((rL,il)=>{"use strict";var xv=Ie();il.exports=!xv(function(){var r=function(){}.bind();return typeof r!="function"||r.hasOwnProperty("prototype")})});var sn=f((aL,nl)=>{"use strict";var Pv=rr(),sl=Function.prototype,rl=sl.apply,al=sl.call;nl.exports=typeof Reflect=="object"&&Reflect.apply||(Pv?al.bind(rl):function(){return al.apply(rl,arguments)})});var Se=f((sL,ll)=>{"use strict";var ol=rr(),ul=Function.prototype,nn=ul.call,kv=ol&&ul.bind.bind(nn,nn);ll.exports=ol?kv:function(r){return function(){return nn.apply(r,arguments)}}});var Jt=f((nL,dl)=>{"use strict";var cl=Se(),wv=cl({}.toString),Av=cl("".slice);dl.exports=function(r){return Av(wv(r),8,-1)}});var on=f((oL,pl)=>{"use strict";var Lv=Jt(),Rv=Se();pl.exports=function(r){if(Lv(r)==="Function")return Rv(r)}});var le=f((uL,hl)=>{"use strict";var un=typeof document=="object"&&document.all;hl.exports=typeof un>"u"&&un!==void 0?function(r){return typeof r=="function"||r===un}:function(r){return typeof r=="function"}});var qe=f((lL,ml)=>{"use strict";var $v=Ie();ml.exports=!$v(function(){return Object.defineProperty({},1,{get:function(){return 7}})[1]!==7})});var Ue=f((cL,fl)=>{"use strict";var Mv=rr(),Na=Function.prototype.call;fl.exports=Mv?Na.bind(Na):function(){return Na.apply(Na,arguments)}});var ln=f(vl=>{"use strict";var bl={}.propertyIsEnumerable,gl=Object.getOwnPropertyDescriptor,Cv=gl&&!bl.call({1:2},1);vl.f=Cv?function(e){var t=gl(this,e);return!!t&&t.enumerable}:bl});var ar=f((pL,Sl)=>{"use strict";Sl.exports=function(r,e){return{enumerable:!(r&1),configurable:!(r&2),writable:!(r&4),value:e}}});var Tl=f((hL,yl)=>{"use strict";var Dv=Se(),Vv=Ie(),Bv=Jt(),cn=Object,Ov=Dv("".split);yl.exports=Vv(function(){return!cn("z").propertyIsEnumerable(0)})?function(r){return Bv(r)==="String"?Ov(r,""):cn(r)}:cn});var yi=f((mL,Il)=>{"use strict";Il.exports=function(r){return r==null}});var Bt=f((fL,El)=>{"use strict";var _v=yi(),Nv=TypeError;El.exports=function(r){if(_v(r))throw new Nv("Can't call method on "+r);return r}});var Zt=f((bL,xl)=>{"use strict";var Fv=Tl(),qv=Bt();xl.exports=function(r){return Fv(qv(r))}});var He=f((gL,Pl)=>{"use strict";var Uv=le();Pl.exports=function(r){return typeof r=="object"?r!==null:Uv(r)}});var Ti=f((vL,kl)=>{"use strict";kl.exports={}});var It=f((SL,Al)=>{"use strict";var dn=Ti(),pn=de(),Hv=le(),wl=function(r){return Hv(r)?r:void 0};Al.exports=function(r,e){return arguments.length<2?wl(dn[r])||wl(pn[r]):dn[r]&&dn[r][e]||pn[r]&&pn[r][e]}});var sr=f((yL,Ll)=>{"use strict";var jv=Se();Ll.exports=jv({}.isPrototypeOf)});var ei=f((TL,Ml)=>{"use strict";var Qv=de(),Rl=Qv.navigator,$l=Rl&&Rl.userAgent;Ml.exports=$l?String($l):""});var mn=f((IL,_l)=>{"use strict";var Ol=de(),hn=ei(),Cl=Ol.process,Dl=Ol.Deno,Vl=Cl&&Cl.versions||Dl&&Dl.version,Bl=Vl&&Vl.v8,it,Fa;Bl&&(it=Bl.split("."),Fa=it[0]>0&&it[0]<4?1:+(it[0]+it[1]));!Fa&&hn&&(it=hn.match(/Edge\/(\d+)/),(!it||it[1]>=74)&&(it=hn.match(/Chrome\/(\d+)/),it&&(Fa=+it[1])));_l.exports=Fa});var fn=f((EL,Fl)=>{"use strict";var Nl=mn(),Gv=Ie(),Wv=de(),Yv=Wv.String;Fl.exports=!!Object.getOwnPropertySymbols&&!Gv(function(){var r=Symbol("symbol detection");return!Yv(r)||!(Object(r)instanceof Symbol)||!Symbol.sham&&Nl&&Nl<41})});var bn=f((xL,ql)=>{"use strict";var zv=fn();ql.exports=zv&&!Symbol.sham&&typeof Symbol.iterator=="symbol"});var gn=f((PL,Ul)=>{"use strict";var Kv=It(),Xv=le(),Jv=sr(),Zv=bn(),eS=Object;Ul.exports=Zv?function(r){return typeof r=="symbol"}:function(r){var e=Kv("Symbol");return Xv(e)&&Jv(e.prototype,eS(r))}});var nr=f((kL,Hl)=>{"use strict";var tS=String;Hl.exports=function(r){try{return tS(r)}catch{return"Object"}}});var mt=f((wL,jl)=>{"use strict";var iS=le(),rS=nr(),aS=TypeError;jl.exports=function(r){if(iS(r))return r;throw new aS(rS(r)+" is not a function")}});var or=f((AL,Ql)=>{"use strict";var sS=mt(),nS=yi();Ql.exports=function(r,e){var t=r[e];return nS(t)?void 0:sS(t)}});var Wl=f((LL,Gl)=>{"use strict";var vn=Ue(),Sn=le(),yn=He(),oS=TypeError;Gl.exports=function(r,e){var t,i;if(e==="string"&&Sn(t=r.toString)&&!yn(i=vn(t,r))||Sn(t=r.valueOf)&&!yn(i=vn(t,r))||e!=="string"&&Sn(t=r.toString)&&!yn(i=vn(t,r)))return i;throw new oS("Can't convert object to primitive value")}});var rt=f((RL,Yl)=>{"use strict";Yl.exports=!0});var Xl=f(($L,Kl)=>{"use strict";var zl=de(),uS=Object.defineProperty;Kl.exports=function(r,e){try{uS(zl,r,{value:e,configurable:!0,writable:!0})}catch{zl[r]=e}return e}});var ur=f((ML,ec)=>{"use strict";var lS=rt(),cS=de(),dS=Xl(),Jl="__core-js_shared__",Zl=ec.exports=cS[Jl]||dS(Jl,{});(Zl.versions||(Zl.versions=[])).push({version:"3.38.0",mode:lS?"pure":"global",copyright:"\xA9 2014-2024 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.38.0/LICENSE",source:"https://github.com/zloirock/core-js"})});var Tn=f((CL,ic)=>{"use strict";var tc=ur();ic.exports=function(r,e){return tc[r]||(tc[r]=e||{})}});var Ii=f((DL,rc)=>{"use strict";var pS=Bt(),hS=Object;rc.exports=function(r){return hS(pS(r))}});var at=f((VL,ac)=>{"use strict";var mS=Se(),fS=Ii(),bS=mS({}.hasOwnProperty);ac.exports=Object.hasOwn||function(e,t){return bS(fS(e),t)}});var In=f((BL,sc)=>{"use strict";var gS=Se(),vS=0,SS=Math.random(),yS=gS(1 .toString);sc.exports=function(r){return"Symbol("+(r===void 0?"":r)+")_"+yS(++vS+SS,36)}});var Ee=f((OL,oc)=>{"use strict";var TS=de(),IS=Tn(),nc=at(),ES=In(),xS=fn(),PS=bn(),Ei=TS.Symbol,En=IS("wks"),kS=PS?Ei.for||Ei:Ei&&Ei.withoutSetter||ES;oc.exports=function(r){return nc(En,r)||(En[r]=xS&&nc(Ei,r)?Ei[r]:kS("Symbol."+r)),En[r]}});var dc=f((_L,cc)=>{"use strict";var wS=Ue(),uc=He(),lc=gn(),AS=or(),LS=Wl(),RS=Ee(),$S=TypeError,MS=RS("toPrimitive");cc.exports=function(r,e){if(!uc(r)||lc(r))return r;var t=AS(r,MS),i;if(t){if(e===void 0&&(e="default"),i=wS(t,r,e),!uc(i)||lc(i))return i;throw new $S("Can't convert object to primitive value")}return e===void 0&&(e="number"),LS(r,e)}});var xn=f((NL,pc)=>{"use strict";var CS=dc(),DS=gn();pc.exports=function(r){var e=CS(r,"string");return DS(e)?e:e+""}});var qa=f((FL,mc)=>{"use strict";var VS=de(),hc=He(),Pn=VS.document,BS=hc(Pn)&&hc(Pn.createElement);mc.exports=function(r){return BS?Pn.createElement(r):{}}});var kn=f((qL,fc)=>{"use strict";var OS=qe(),_S=Ie(),NS=qa();fc.exports=!OS&&!_S(function(){return Object.defineProperty(NS("div"),"a",{get:function(){return 7}}).a!==7})});var vc=f(gc=>{"use strict";var FS=qe(),qS=Ue(),US=ln(),HS=ar(),jS=Zt(),QS=xn(),GS=at(),WS=kn(),bc=Object.getOwnPropertyDescriptor;gc.f=FS?bc:function(e,t){if(e=jS(e),t=QS(t),WS)try{return bc(e,t)}catch{}if(GS(e,t))return HS(!qS(US.f,e,t),e[t])}});var wn=f((HL,Sc)=>{"use strict";var YS=Ie(),zS=le(),KS=/#|\.prototype\./,lr=function(r,e){var t=JS[XS(r)];return t===ey?!0:t===ZS?!1:zS(e)?YS(e):!!e},XS=lr.normalize=function(r){return String(r).replace(KS,".").toLowerCase()},JS=lr.data={},ZS=lr.NATIVE="N",ey=lr.POLYFILL="P";Sc.exports=lr});var xi=f((jL,Tc)=>{"use strict";var yc=on(),ty=mt(),iy=rr(),ry=yc(yc.bind);Tc.exports=function(r,e){return ty(r),e===void 0?r:iy?ry(r,e):function(){return r.apply(e,arguments)}}});var An=f((QL,Ic)=>{"use strict";var ay=qe(),sy=Ie();Ic.exports=ay&&sy(function(){return Object.defineProperty(function(){},"prototype",{value:42,writable:!1}).prototype!==42})});var ft=f((GL,Ec)=>{"use strict";var ny=He(),oy=String,uy=TypeError;Ec.exports=function(r){if(ny(r))return r;throw new uy(oy(r)+" is not an object")}});var ti=f(Pc=>{"use strict";var ly=qe(),cy=kn(),dy=An(),Ua=ft(),xc=xn(),py=TypeError,Ln=Object.defineProperty,hy=Object.getOwnPropertyDescriptor,Rn="enumerable",$n="configurable",Mn="writable";Pc.f=ly?dy?function(e,t,i){if(Ua(e),t=xc(t),Ua(i),typeof e=="function"&&t==="prototype"&&"value"in i&&Mn in i&&!i[Mn]){var a=hy(e,t);a&&a[Mn]&&(e[t]=i.value,i={configurable:$n in i?i[$n]:a[$n],enumerable:Rn in i?i[Rn]:a[Rn],writable:!1})}return Ln(e,t,i)}:Ln:function(e,t,i){if(Ua(e),t=xc(t),Ua(i),cy)try{return Ln(e,t,i)}catch{}if("get"in i||"set"in i)throw new py("Accessors not supported");return"value"in i&&(e[t]=i.value),e}});var Pi=f((YL,kc)=>{"use strict";var my=qe(),fy=ti(),by=ar();kc.exports=my?function(r,e,t){return fy.f(r,e,by(1,t))}:function(r,e,t){return r[e]=t,r}});var me=f((zL,Ac)=>{"use strict";var cr=de(),gy=sn(),vy=on(),Sy=le(),yy=vc().f,Ty=wn(),ki=Ti(),Iy=xi(),wi=Pi(),wc=at();ur();var Ey=function(r){var e=function(t,i,a){if(this instanceof e){switch(arguments.length){case 0:return new r;case 1:return new r(t);case 2:return new r(t,i)}return new r(t,i,a)}return gy(r,this,arguments)};return e.prototype=r.prototype,e};Ac.exports=function(r,e){var t=r.target,i=r.global,a=r.stat,s=r.proto,n=i?cr:a?cr[t]:cr[t]&&cr[t].prototype,o=i?ki:ki[t]||wi(ki,t,{})[t],u=o.prototype,l,d,p,h,m,b,v,T,I;for(h in e)l=Ty(i?h:t+(a?".":"#")+h,r.forced),d=!l&&n&&wc(n,h),b=o[h],d&&(r.dontCallGetSet?(I=yy(n,h),v=I&&I.value):v=n[h]),m=d&&v?v:e[h],!(!l&&!s&&typeof b==typeof m)&&(r.bind&&d?T=Iy(m,cr):r.wrap&&d?T=Ey(m):s&&Sy(m)?T=vy(m):T=m,(r.sham||m&&m.sham||b&&b.sham)&&wi(T,"sham",!0),wi(o,h,T),s&&(p=t+"Prototype",wc(ki,p)||wi(ki,p,{}),wi(ki[p],h,m),r.real&&u&&(l||!u[h])&&wi(u,h,m)))}});var Rc=f((KL,Lc)=>{"use strict";var xy=Math.ceil,Py=Math.floor;Lc.exports=Math.trunc||function(e){var t=+e;return(t>0?Py:xy)(t)}});var dr=f((XL,$c)=>{"use strict";var ky=Rc();$c.exports=function(r){var e=+r;return e!==e||e===0?0:ky(e)}});var Cc=f((JL,Mc)=>{"use strict";var wy=dr(),Ay=Math.max,Ly=Math.min;Mc.exports=function(r,e){var t=wy(r);return t<0?Ay(t+e,0):Ly(t,e)}});var Cn=f((ZL,Dc)=>{"use strict";var Ry=dr(),$y=Math.min;Dc.exports=function(r){var e=Ry(r);return e>0?$y(e,9007199254740991):0}});var Ai=f((eR,Vc)=>{"use strict";var My=Cn();Vc.exports=function(r){return My(r.length)}});var Dn=f((tR,Oc)=>{"use strict";var Cy=Zt(),Dy=Cc(),Vy=Ai(),Bc=function(r){return function(e,t,i){var a=Cy(e),s=Vy(a);if(s===0)return!r&&-1;var n=Dy(i,s),o;if(r&&t!==t){for(;s>n;)if(o=a[n++],o!==o)return!0}else for(;s>n;n++)if((r||n in a)&&a[n]===t)return r||n||0;return!r&&-1}};Oc.exports={includes:Bc(!0),indexOf:Bc(!1)}});var pr=f((iR,_c)=>{"use strict";_c.exports=function(){}});var Nc=f(()=>{"use strict";var By=me(),Oy=Dn().includes,_y=Ie(),Ny=pr(),Fy=_y(function(){return!Array(1).includes()});By({target:"Array",proto:!0,forced:Fy},{includes:function(e){return Oy(this,e,arguments.length>1?arguments[1]:void 0)}});Ny("includes")});var Ot=f((sR,Fc)=>{"use strict";var qy=It();Fc.exports=qy});var Uc=f((nR,qc)=>{"use strict";Nc();var Uy=Ot();qc.exports=Uy("Array","includes")});var jc=f((oR,Hc)=>{"use strict";var Hy=Uc();Hc.exports=Hy});var ze=f((uR,Qc)=>{"use strict";var jy=jc();Qc.exports=jy});var ja=f((SR,Yc)=>{"use strict";var Gy=Tn(),Wy=In(),Wc=Gy("keys");Yc.exports=function(r){return Wc[r]||(Wc[r]=Wy(r))}});var Kc=f((yR,zc)=>{"use strict";var Yy=Ie();zc.exports=!Yy(function(){function r(){}return r.prototype.constructor=null,Object.getPrototypeOf(new r)!==r.prototype})});var Qa=f((TR,Jc)=>{"use strict";var zy=at(),Ky=le(),Xy=Ii(),Jy=ja(),Zy=Kc(),Xc=Jy("IE_PROTO"),Vn=Object,eT=Vn.prototype;Jc.exports=Zy?Vn.getPrototypeOf:function(r){var e=Xy(r);if(zy(e,Xc))return e[Xc];var t=e.constructor;return Ky(t)&&e instanceof t?t.prototype:e instanceof Vn?eT:null}});var Ga=f((IR,Zc)=>{"use strict";Zc.exports={}});var id=f((ER,td)=>{"use strict";var tT=Se(),Bn=at(),iT=Zt(),rT=Dn().indexOf,aT=Ga(),ed=tT([].push);td.exports=function(r,e){var t=iT(r),i=0,a=[],s;for(s in t)!Bn(aT,s)&&Bn(t,s)&&ed(a,s);for(;e.length>i;)Bn(t,s=e[i++])&&(~rT(a,s)||ed(a,s));return a}});var On=f((xR,rd)=>{"use strict";rd.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]});var _n=f((PR,ad)=>{"use strict";var sT=id(),nT=On();ad.exports=Object.keys||function(e){return sT(e,nT)}});var Nn=f((kR,ld)=>{"use strict";var nd=qe(),oT=Ie(),od=Se(),uT=Qa(),lT=_n(),cT=Zt(),dT=ln().f,ud=od(dT),pT=od([].push),hT=nd&&oT(function(){var r=Object.create(null);return r[2]=2,!ud(r,2)}),sd=function(r){return function(e){for(var t=cT(e),i=lT(t),a=hT&&uT(t)===null,s=i.length,n=0,o=[],u;s>n;)u=i[n++],(!nd||(a?u in t:ud(t,u)))&&pT(o,r?[u,t[u]]:t[u]);return o}};ld.exports={entries:sd(!0),values:sd(!1)}});var cd=f(()=>{"use strict";var mT=me(),fT=Nn().entries;mT({target:"Object",stat:!0},{entries:function(e){return fT(e)}})});var pd=f((LR,dd)=>{"use strict";cd();var bT=Ti();dd.exports=bT.Object.entries});var md=f((RR,hd)=>{"use strict";var gT=pd();hd.exports=gT});var Li=f(($R,fd)=>{"use strict";var vT=md();fd.exports=vT});var ii=f((MR,bd)=>{"use strict";bd.exports={}});var Sd=f((CR,vd)=>{"use strict";var ST=de(),yT=le(),gd=ST.WeakMap;vd.exports=yT(gd)&&/native code/.test(String(gd))});var Hn=f((DR,Id)=>{"use strict";var TT=Sd(),Td=de(),IT=He(),ET=Pi(),Fn=at(),qn=ur(),xT=ja(),PT=Ga(),yd="Object already initialized",Un=Td.TypeError,kT=Td.WeakMap,Wa,hr,Ya,wT=function(r){return Ya(r)?hr(r):Wa(r,{})},AT=function(r){return function(e){var t;if(!IT(e)||(t=hr(e)).type!==r)throw new Un("Incompatible receiver, "+r+" required");return t}};TT||qn.state?(st=qn.state||(qn.state=new kT),st.get=st.get,st.has=st.has,st.set=st.set,Wa=function(r,e){if(st.has(r))throw new Un(yd);return e.facade=r,st.set(r,e),e},hr=function(r){return st.get(r)||{}},Ya=function(r){return st.has(r)}):(ri=xT("state"),PT[ri]=!0,Wa=function(r,e){if(Fn(r,ri))throw new Un(yd);return e.facade=r,ET(r,ri,e),e},hr=function(r){return Fn(r,ri)?r[ri]:{}},Ya=function(r){return Fn(r,ri)});var st,ri;Id.exports={set:Wa,get:hr,has:Ya,enforce:wT,getterFor:AT}});var Gn=f((VR,xd)=>{"use strict";var jn=qe(),LT=at(),Ed=Function.prototype,RT=jn&&Object.getOwnPropertyDescriptor,Qn=LT(Ed,"name"),$T=Qn&&function(){}.name==="something",MT=Qn&&(!jn||jn&&RT(Ed,"name").configurable);xd.exports={EXISTS:Qn,PROPER:$T,CONFIGURABLE:MT}});var kd=f(Pd=>{"use strict";var CT=qe(),DT=An(),VT=ti(),BT=ft(),OT=Zt(),_T=_n();Pd.f=CT&&!DT?Object.defineProperties:function(e,t){BT(e);for(var i=OT(t),a=_T(t),s=a.length,n=0,o;s>n;)VT.f(e,o=a[n++],i[o]);return e}});var Wn=f((OR,wd)=>{"use strict";var NT=It();wd.exports=NT("document","documentElement")});var Xn=f((_R,Dd)=>{"use strict";var FT=ft(),qT=kd(),Ad=On(),UT=Ga(),HT=Wn(),jT=qa(),QT=ja(),Ld=">",Rd="<",zn="prototype",Kn="script",Md=QT("IE_PROTO"),Yn=function(){},Cd=function(r){return Rd+Kn+Ld+r+Rd+"/"+Kn+Ld},$d=function(r){r.write(Cd("")),r.close();var e=r.parentWindow.Object;return r=null,e},GT=function(){var r=jT("iframe"),e="java"+Kn+":",t;return r.style.display="none",HT.appendChild(r),r.src=String(e),t=r.contentWindow.document,t.open(),t.write(Cd("document.F=Object")),t.close(),t.F},za,Ka=function(){try{za=new ActiveXObject("htmlfile")}catch{}Ka=typeof document<"u"?document.domain&&za?$d(za):GT():$d(za);for(var r=Ad.length;r--;)delete Ka[zn][Ad[r]];return Ka()};UT[Md]=!0;Dd.exports=Object.create||function(e,t){var i;return e!==null?(Yn[zn]=FT(e),i=new Yn,Yn[zn]=null,i[Md]=e):i=Ka(),t===void 0?i:qT.f(i,t)}});var Ri=f((NR,Vd)=>{"use strict";var WT=Pi();Vd.exports=function(r,e,t,i){return i&&i.enumerable?r[e]=t:WT(r,e,t),r}});var to=f((FR,_d)=>{"use strict";var YT=Ie(),zT=le(),KT=He(),XT=Xn(),Bd=Qa(),JT=Ri(),ZT=Ee(),eI=rt(),eo=ZT("iterator"),Od=!1,Et,Jn,Zn;[].keys&&(Zn=[].keys(),"next"in Zn?(Jn=Bd(Bd(Zn)),Jn!==Object.prototype&&(Et=Jn)):Od=!0);var tI=!KT(Et)||YT(function(){var r={};return Et[eo].call(r)!==r});tI?Et={}:eI&&(Et=XT(Et));zT(Et[eo])||JT(Et,eo,function(){return this});_d.exports={IteratorPrototype:Et,BUGGY_SAFARI_ITERATORS:Od}});var Xa=f((qR,Fd)=>{"use strict";var iI=Ee(),rI=iI("toStringTag"),Nd={};Nd[rI]="z";Fd.exports=String(Nd)==="[object z]"});var mr=f((UR,qd)=>{"use strict";var aI=Xa(),sI=le(),Ja=Jt(),nI=Ee(),oI=nI("toStringTag"),uI=Object,lI=Ja(function(){return arguments}())==="Arguments",cI=function(r,e){try{return r[e]}catch{}};qd.exports=aI?Ja:function(r){var e,t,i;return r===void 0?"Undefined":r===null?"Null":typeof(t=cI(e=uI(r),oI))=="string"?t:lI?Ja(e):(i=Ja(e))==="Object"&&sI(e.callee)?"Arguments":i}});var Hd=f((HR,Ud)=>{"use strict";var dI=Xa(),pI=mr();Ud.exports=dI?{}.toString:function(){return"[object "+pI(this)+"]"}});var fr=f((jR,Qd)=>{"use strict";var hI=Xa(),mI=ti().f,fI=Pi(),bI=at(),gI=Hd(),vI=Ee(),jd=vI("toStringTag");Qd.exports=function(r,e,t,i){var a=t?r:r&&r.prototype;a&&(bI(a,jd)||mI(a,jd,{configurable:!0,value:e}),i&&!hI&&fI(a,"toString",gI))}});var Wd=f((QR,Gd)=>{"use strict";var SI=to().IteratorPrototype,yI=Xn(),TI=ar(),II=fr(),EI=ii(),xI=function(){return this};Gd.exports=function(r,e,t,i){var a=e+" Iterator";return r.prototype=yI(SI,{next:TI(+!i,t)}),II(r,a,!1,!0),EI[a]=xI,r}});var zd=f((GR,Yd)=>{"use strict";var PI=Se(),kI=mt();Yd.exports=function(r,e,t){try{return PI(kI(Object.getOwnPropertyDescriptor(r,e)[t]))}catch{}}});var Xd=f((WR,Kd)=>{"use strict";var wI=He();Kd.exports=function(r){return wI(r)||r===null}});var Zd=f((YR,Jd)=>{"use strict";var AI=Xd(),LI=String,RI=TypeError;Jd.exports=function(r){if(AI(r))return r;throw new RI("Can't set "+LI(r)+" as a prototype")}});var io=f((zR,ep)=>{"use strict";var $I=zd(),MI=He(),CI=Bt(),DI=Zd();ep.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var r=!1,e={},t;try{t=$I(Object.prototype,"__proto__","set"),t(e,[]),r=e instanceof Array}catch{}return function(a,s){return CI(a),DI(s),MI(a)&&(r?t(a,s):a.__proto__=s),a}}():void 0)});var dp=f((KR,cp)=>{"use strict";var VI=me(),BI=Ue(),Za=rt(),up=Gn(),OI=le(),_I=Wd(),tp=Qa(),ip=io(),NI=fr(),FI=Pi(),ro=Ri(),qI=Ee(),rp=ii(),lp=to(),UI=up.PROPER,HI=up.CONFIGURABLE,ap=lp.IteratorPrototype,es=lp.BUGGY_SAFARI_ITERATORS,br=qI("iterator"),sp="keys",gr="values",np="entries",op=function(){return this};cp.exports=function(r,e,t,i,a,s,n){_I(t,e,i);var o=function(I){if(I===a&&h)return h;if(!es&&I&&I in d)return d[I];switch(I){case sp:return function(){return new t(this,I)};case gr:return function(){return new t(this,I)};case np:return function(){return new t(this,I)}}return function(){return new t(this)}},u=e+" Iterator",l=!1,d=r.prototype,p=d[br]||d["@@iterator"]||a&&d[a],h=!es&&p||o(a),m=e==="Array"&&d.entries||p,b,v,T;if(m&&(b=tp(m.call(new r)),b!==Object.prototype&&b.next&&(!Za&&tp(b)!==ap&&(ip?ip(b,ap):OI(b[br])||ro(b,br,op)),NI(b,u,!0,!0),Za&&(rp[u]=op))),UI&&a===gr&&p&&p.name!==gr&&(!Za&&HI?FI(d,"name",gr):(l=!0,h=function(){return BI(p,this)})),a)if(v={values:o(gr),keys:s?h:o(sp),entries:o(np)},n)for(T in v)(es||l||!(T in d))&&ro(d,T,v[T]);else VI({target:e,proto:!0,forced:es||l},v);return(!Za||n)&&d[br]!==h&&ro(d,br,h,{name:a}),rp[e]=h,v}});var hp=f((XR,pp)=>{"use strict";pp.exports=function(r,e){return{value:r,done:e}}});var so=f((JR,vp)=>{"use strict";var jI=Zt(),ao=pr(),mp=ii(),bp=Hn(),QI=ti().f,GI=dp(),ts=hp(),WI=rt(),YI=qe(),gp="Array Iterator",zI=bp.set,KI=bp.getterFor(gp);vp.exports=GI(Array,"Array",function(r,e){zI(this,{type:gp,target:jI(r),index:0,kind:e})},function(){var r=KI(this),e=r.target,t=r.index++;if(!e||t>=e.length)return r.target=void 0,ts(void 0,!0);switch(r.kind){case"keys":return ts(t,!1);case"values":return ts(e[t],!1)}return ts([t,e[t]],!1)},"values");var fp=mp.Arguments=mp.Array;ao("keys");ao("values");ao("entries");if(!WI&&YI&&fp.name!=="values")try{QI(fp,"name",{value:"values"})}catch{}});var yp=f((ZR,Sp)=>{"use strict";var XI=Ee(),JI=ii(),ZI=XI("iterator"),eE=Array.prototype;Sp.exports=function(r){return r!==void 0&&(JI.Array===r||eE[ZI]===r)}});var no=f((e$,Ip)=>{"use strict";var tE=mr(),Tp=or(),iE=yi(),rE=ii(),aE=Ee(),sE=aE("iterator");Ip.exports=function(r){if(!iE(r))return Tp(r,sE)||Tp(r,"@@iterator")||rE[tE(r)]}});var xp=f((t$,Ep)=>{"use strict";var nE=Ue(),oE=mt(),uE=ft(),lE=nr(),cE=no(),dE=TypeError;Ep.exports=function(r,e){var t=arguments.length<2?cE(r):e;if(oE(t))return uE(nE(t,r));throw new dE(lE(r)+" is not iterable")}});var wp=f((i$,kp)=>{"use strict";var pE=Ue(),Pp=ft(),hE=or();kp.exports=function(r,e,t){var i,a;Pp(r);try{if(i=hE(r,"return"),!i){if(e==="throw")throw t;return t}i=pE(i,r)}catch(s){a=!0,i=s}if(e==="throw")throw t;if(a)throw i;return Pp(i),t}});var rs=f((r$,$p)=>{"use strict";var mE=xi(),fE=Ue(),bE=ft(),gE=nr(),vE=yp(),SE=Ai(),Ap=sr(),yE=xp(),TE=no(),Lp=wp(),IE=TypeError,is=function(r,e){this.stopped=r,this.result=e},Rp=is.prototype;$p.exports=function(r,e,t){var i=t&&t.that,a=!!(t&&t.AS_ENTRIES),s=!!(t&&t.IS_RECORD),n=!!(t&&t.IS_ITERATOR),o=!!(t&&t.INTERRUPTED),u=mE(e,i),l,d,p,h,m,b,v,T=function(A){return l&&Lp(l,"normal",A),new is(!0,A)},I=function(A){return a?(bE(A),o?u(A[0],A[1],T):u(A[0],A[1])):o?u(A,T):u(A)};if(s)l=r.iterator;else if(n)l=r;else{if(d=TE(r),!d)throw new IE(gE(r)+" is not iterable");if(vE(d)){for(p=0,h=SE(r);h>p;p++)if(m=I(r[p]),m&&Ap(Rp,m))return m;return new is(!1)}l=yE(r,d)}for(b=s?r.next:l.next;!(v=fE(b,l)).done;){try{m=I(v.value)}catch(A){Lp(l,"throw",A)}if(typeof m=="object"&&m&&Ap(Rp,m))return m}return new is(!1)}});var Cp=f((a$,Mp)=>{"use strict";var EE=qe(),xE=ti(),PE=ar();Mp.exports=function(r,e,t){EE?xE.f(r,e,PE(0,t)):r[e]=t}});var Dp=f(()=>{"use strict";var kE=me(),wE=rs(),AE=Cp();kE({target:"Object",stat:!0},{fromEntries:function(e){var t={};return wE(e,function(i,a){AE(t,i,a)},{AS_ENTRIES:!0}),t}})});var Bp=f((o$,Vp)=>{"use strict";so();Dp();var LE=Ti();Vp.exports=LE.Object.fromEntries});var _p=f((u$,Op)=>{"use strict";Op.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}});var Fp=f(()=>{"use strict";so();var RE=_p(),$E=de(),ME=fr(),Np=ii();for(as in RE)ME($E[as],as),Np[as]=Np.Array;var as});var Up=f((d$,qp)=>{"use strict";var CE=Bp();Fp();qp.exports=CE});var oo=f((p$,Hp)=>{"use strict";var DE=Up();Hp.exports=DE});var jp=f(()=>{"use strict"});var uo=f((f$,Qp)=>{"use strict";var vr=de(),VE=ei(),BE=Jt(),ss=function(r){return VE.slice(0,r.length)===r};Qp.exports=function(){return ss("Bun/")?"BUN":ss("Cloudflare-Workers")?"CLOUDFLARE":ss("Deno/")?"DENO":ss("Node.js/")?"NODE":vr.Bun&&typeof Bun.version=="string"?"BUN":vr.Deno&&typeof Deno.version=="object"?"DENO":BE(vr.process)==="process"?"NODE":vr.window&&vr.document?"BROWSER":"REST"}()});var ns=f((b$,Gp)=>{"use strict";var OE=uo();Gp.exports=OE==="NODE"});var Yp=f((g$,Wp)=>{"use strict";var _E=ti();Wp.exports=function(r,e,t){return _E.f(r,e,t)}});var Xp=f((v$,Kp)=>{"use strict";var NE=It(),FE=Yp(),qE=Ee(),UE=qe(),zp=qE("species");Kp.exports=function(r){var e=NE(r);UE&&e&&!e[zp]&&FE(e,zp,{configurable:!0,get:function(){return this}})}});var Zp=f((S$,Jp)=>{"use strict";var HE=sr(),jE=TypeError;Jp.exports=function(r,e){if(HE(e,r))return r;throw new jE("Incorrect invocation")}});var co=f((y$,eh)=>{"use strict";var QE=Se(),GE=le(),lo=ur(),WE=QE(Function.toString);GE(lo.inspectSource)||(lo.inspectSource=function(r){return WE(r)});eh.exports=lo.inspectSource});var ho=f((T$,sh)=>{"use strict";var YE=Se(),zE=Ie(),th=le(),KE=mr(),XE=It(),JE=co(),ih=function(){},rh=XE("Reflect","construct"),po=/^\s*(?:class|function)\b/,ZE=YE(po.exec),ex=!po.test(ih),Sr=function(e){if(!th(e))return!1;try{return rh(ih,[],e),!0}catch{return!1}},ah=function(e){if(!th(e))return!1;switch(KE(e)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return ex||!!ZE(po,JE(e))}catch{return!0}};ah.sham=!0;sh.exports=!rh||zE(function(){var r;return Sr(Sr.call)||!Sr(Object)||!Sr(function(){r=!0})||r})?ah:Sr});var oh=f((I$,nh)=>{"use strict";var tx=ho(),ix=nr(),rx=TypeError;nh.exports=function(r){if(tx(r))return r;throw new rx(ix(r)+" is not a constructor")}});var mo=f((E$,lh)=>{"use strict";var uh=ft(),ax=oh(),sx=yi(),nx=Ee(),ox=nx("species");lh.exports=function(r,e){var t=uh(r).constructor,i;return t===void 0||sx(i=uh(t)[ox])?e:ax(i)}});var dh=f((x$,ch)=>{"use strict";var ux=Se();ch.exports=ux([].slice)});var hh=f((P$,ph)=>{"use strict";var lx=TypeError;ph.exports=function(r,e){if(r<e)throw new lx("Not enough arguments");return r}});var fo=f((k$,mh)=>{"use strict";var cx=ei();mh.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(cx)});var xo=f((w$,Eh)=>{"use strict";var je=de(),dx=sn(),px=xi(),fh=le(),hx=at(),Ih=Ie(),bh=Wn(),mx=dh(),gh=qa(),fx=hh(),bx=fo(),gx=ns(),To=je.setImmediate,Io=je.clearImmediate,vx=je.process,bo=je.Dispatch,Sx=je.Function,vh=je.MessageChannel,yx=je.String,go=0,yr={},Sh="onreadystatechange",Tr,ai,vo,So;Ih(function(){Tr=je.location});var Eo=function(r){if(hx(yr,r)){var e=yr[r];delete yr[r],e()}},yo=function(r){return function(){Eo(r)}},yh=function(r){Eo(r.data)},Th=function(r){je.postMessage(yx(r),Tr.protocol+"//"+Tr.host)};(!To||!Io)&&(To=function(e){fx(arguments.length,1);var t=fh(e)?e:Sx(e),i=mx(arguments,1);return yr[++go]=function(){dx(t,void 0,i)},ai(go),go},Io=function(e){delete yr[e]},gx?ai=function(r){vx.nextTick(yo(r))}:bo&&bo.now?ai=function(r){bo.now(yo(r))}:vh&&!bx?(vo=new vh,So=vo.port2,vo.port1.onmessage=yh,ai=px(So.postMessage,So)):je.addEventListener&&fh(je.postMessage)&&!je.importScripts&&Tr&&Tr.protocol!=="file:"&&!Ih(Th)?(ai=Th,je.addEventListener("message",yh,!1)):Sh in gh("script")?ai=function(r){bh.appendChild(gh("script"))[Sh]=function(){bh.removeChild(this),Eo(r)}}:ai=function(r){setTimeout(yo(r),0)});Eh.exports={set:To,clear:Io}});var kh=f((A$,Ph)=>{"use strict";var xh=de(),Tx=qe(),Ix=Object.getOwnPropertyDescriptor;Ph.exports=function(r){if(!Tx)return xh[r];var e=Ix(xh,r);return e&&e.value}});var Po=f((L$,Ah)=>{"use strict";var wh=function(){this.head=null,this.tail=null};wh.prototype={add:function(r){var e={item:r,next:null},t=this.tail;t?t.next=e:this.head=e,this.tail=e},get:function(){var r=this.head;if(r){var e=this.head=r.next;return e===null&&(this.tail=null),r.item}}};Ah.exports=wh});var Rh=f((R$,Lh)=>{"use strict";var Ex=ei();Lh.exports=/ipad|iphone|ipod/i.test(Ex)&&typeof Pebble<"u"});var Mh=f(($$,$h)=>{"use strict";var xx=ei();$h.exports=/web0s(?!.*chrome)/i.test(xx)});var Nh=f((M$,_h)=>{"use strict";var Mi=de(),Px=kh(),Ch=xi(),ko=xo().set,kx=Po(),wx=fo(),Ax=Rh(),Lx=Mh(),wo=ns(),Dh=Mi.MutationObserver||Mi.WebKitMutationObserver,Vh=Mi.document,Bh=Mi.process,os=Mi.Promise,Ro=Px("queueMicrotask"),$i,Ao,Lo,us,Oh;Ro||(Ir=new kx,Er=function(){var r,e;for(wo&&(r=Bh.domain)&&r.exit();e=Ir.get();)try{e()}catch(t){throw Ir.head&&$i(),t}r&&r.enter()},!wx&&!wo&&!Lx&&Dh&&Vh?(Ao=!0,Lo=Vh.createTextNode(""),new Dh(Er).observe(Lo,{characterData:!0}),$i=function(){Lo.data=Ao=!Ao}):!Ax&&os&&os.resolve?(us=os.resolve(void 0),us.constructor=os,Oh=Ch(us.then,us),$i=function(){Oh(Er)}):wo?$i=function(){Bh.nextTick(Er)}:(ko=Ch(ko,Mi),$i=function(){ko(Er)}),Ro=function(r){Ir.head||$i(),Ir.add(r)});var Ir,Er;_h.exports=Ro});var qh=f((C$,Fh)=>{"use strict";Fh.exports=function(r,e){try{arguments.length===1?console.error(r):console.error(r,e)}catch{}}});var ls=f((D$,Uh)=>{"use strict";Uh.exports=function(r){try{return{error:!1,value:r()}}catch(e){return{error:!0,value:e}}}});var si=f((V$,Hh)=>{"use strict";var Rx=de();Hh.exports=Rx.Promise});var Ci=f((B$,Wh)=>{"use strict";var $x=de(),xr=si(),Mx=le(),Cx=wn(),Dx=co(),Vx=Ee(),jh=uo(),Bx=rt(),$o=mn(),Qh=xr&&xr.prototype,Ox=Vx("species"),Mo=!1,Gh=Mx($x.PromiseRejectionEvent),_x=Cx("Promise",function(){var r=Dx(xr),e=r!==String(xr);if(!e&&$o===66||Bx&&!(Qh.catch&&Qh.finally))return!0;if(!$o||$o<51||!/native code/.test(r)){var t=new xr(function(s){s(1)}),i=function(s){s(function(){},function(){})},a=t.constructor={};if(a[Ox]=i,Mo=t.then(function(){})instanceof i,!Mo)return!0}return!e&&(jh==="BROWSER"||jh==="DENO")&&!Gh});Wh.exports={CONSTRUCTOR:_x,REJECTION_EVENT:Gh,SUBCLASSING:Mo}});var Di=f((O$,zh)=>{"use strict";var Yh=mt(),Nx=TypeError,Fx=function(r){var e,t;this.promise=new r(function(i,a){if(e!==void 0||t!==void 0)throw new Nx("Bad Promise constructor");e=i,t=a}),this.resolve=Yh(e),this.reject=Yh(t)};zh.exports.f=function(r){return new Fx(r)}});var mm=f(()=>{"use strict";var qx=me(),Ux=rt(),hs=ns(),_t=de(),_i=Ue(),Kh=Ri(),Xh=io(),Hx=fr(),jx=Xp(),Qx=mt(),ps=le(),Gx=He(),Wx=Zp(),Yx=mo(),im=xo().set,Oo=Nh(),zx=qh(),Kx=ls(),Xx=Po(),rm=Hn(),ms=si(),_o=Ci(),am=Di(),fs="Promise",sm=_o.CONSTRUCTOR,Jx=_o.REJECTION_EVENT,Zx=_o.SUBCLASSING,Co=rm.getterFor(fs),eP=rm.set,Vi=ms&&ms.prototype,ni=ms,cs=Vi,nm=_t.TypeError,Do=_t.document,No=_t.process,Vo=am.f,tP=Vo,iP=!!(Do&&Do.createEvent&&_t.dispatchEvent),om="unhandledrejection",rP="rejectionhandled",Jh=0,um=1,aP=2,Fo=1,lm=2,ds,Zh,sP,em,cm=function(r){var e;return Gx(r)&&ps(e=r.then)?e:!1},dm=function(r,e){var t=e.value,i=e.state===um,a=i?r.ok:r.fail,s=r.resolve,n=r.reject,o=r.domain,u,l,d;try{a?(i||(e.rejection===lm&&oP(e),e.rejection=Fo),a===!0?u=t:(o&&o.enter(),u=a(t),o&&(o.exit(),d=!0)),u===r.promise?n(new nm("Promise-chain cycle")):(l=cm(u))?_i(l,u,s,n):s(u)):n(t)}catch(p){o&&!d&&o.exit(),n(p)}},pm=function(r,e){r.notified||(r.notified=!0,Oo(function(){for(var t=r.reactions,i;i=t.get();)dm(i,r);r.notified=!1,e&&!r.rejection&&nP(r)}))},hm=function(r,e,t){var i,a;iP?(i=Do.createEvent("Event"),i.promise=e,i.reason=t,i.initEvent(r,!1,!0),_t.dispatchEvent(i)):i={promise:e,reason:t},!Jx&&(a=_t["on"+r])?a(i):r===om&&zx("Unhandled promise rejection",t)},nP=function(r){_i(im,_t,function(){var e=r.facade,t=r.value,i=tm(r),a;if(i&&(a=Kx(function(){hs?No.emit("unhandledRejection",t,e):hm(om,e,t)}),r.rejection=hs||tm(r)?lm:Fo,a.error))throw a.value})},tm=function(r){return r.rejection!==Fo&&!r.parent},oP=function(r){_i(im,_t,function(){var e=r.facade;hs?No.emit("rejectionHandled",e):hm(rP,e,r.value)})},Bi=function(r,e,t){return function(i){r(e,i,t)}},Oi=function(r,e,t){r.done||(r.done=!0,t&&(r=t),r.value=e,r.state=aP,pm(r,!0))},Bo=function(r,e,t){if(!r.done){r.done=!0,t&&(r=t);try{if(r.facade===e)throw new nm("Promise can't be resolved itself");var i=cm(e);i?Oo(function(){var a={done:!1};try{_i(i,e,Bi(Bo,a,r),Bi(Oi,a,r))}catch(s){Oi(a,s,r)}}):(r.value=e,r.state=um,pm(r,!1))}catch(a){Oi({done:!1},a,r)}}};if(sm&&(ni=function(e){Wx(this,cs),Qx(e),_i(ds,this);var t=Co(this);try{e(Bi(Bo,t),Bi(Oi,t))}catch(i){Oi(t,i)}},cs=ni.prototype,ds=function(e){eP(this,{type:fs,done:!1,notified:!1,parent:!1,reactions:new Xx,rejection:!1,state:Jh,value:void 0})},ds.prototype=Kh(cs,"then",function(e,t){var i=Co(this),a=Vo(Yx(this,ni));return i.parent=!0,a.ok=ps(e)?e:!0,a.fail=ps(t)&&t,a.domain=hs?No.domain:void 0,i.state===Jh?i.reactions.add(a):Oo(function(){dm(a,i)}),a.promise}),Zh=function(){var r=new ds,e=Co(r);this.promise=r,this.resolve=Bi(Bo,e),this.reject=Bi(Oi,e)},am.f=Vo=function(r){return r===ni||r===sP?new Zh(r):tP(r)},!Ux&&ps(ms)&&Vi!==Object.prototype)){em=Vi.then,Zx||Kh(Vi,"then",function(e,t){var i=this;return new ni(function(a,s){_i(em,i,a,s)}).then(e,t)},{unsafe:!0});try{delete Vi.constructor}catch{}Xh&&Xh(Vi,cs)}qx({global:!0,constructor:!0,wrap:!0,forced:sm},{Promise:ni});Hx(ni,fs,!1,!0);jx(fs)});var Sm=f((F$,vm)=>{"use strict";var uP=Ee(),bm=uP("iterator"),gm=!1;try{fm=0,qo={next:function(){return{done:!!fm++}},return:function(){gm=!0}},qo[bm]=function(){return this},Array.from(qo,function(){throw 2})}catch{}var fm,qo;vm.exports=function(r,e){try{if(!e&&!gm)return!1}catch{return!1}var t=!1;try{var i={};i[bm]=function(){return{next:function(){return{done:t=!0}}}},r(i)}catch{}return t}});var Uo=f((q$,ym)=>{"use strict";var lP=si(),cP=Sm(),dP=Ci().CONSTRUCTOR;ym.exports=dP||!cP(function(r){lP.all(r).then(void 0,function(){})})});var Tm=f(()=>{"use strict";var pP=me(),hP=Ue(),mP=mt(),fP=Di(),bP=ls(),gP=rs(),vP=Uo();pP({target:"Promise",stat:!0,forced:vP},{all:function(e){var t=this,i=fP.f(t),a=i.resolve,s=i.reject,n=bP(function(){var o=mP(t.resolve),u=[],l=0,d=1;gP(e,function(p){var h=l++,m=!1;d++,hP(o,t,p).then(function(b){m||(m=!0,u[h]=b,--d||a(u))},s)}),--d||a(u)});return n.error&&s(n.value),i.promise}})});var Em=f(()=>{"use strict";var SP=me(),yP=rt(),TP=Ci().CONSTRUCTOR,jo=si(),IP=It(),EP=le(),xP=Ri(),Im=jo&&jo.prototype;SP({target:"Promise",proto:!0,forced:TP,real:!0},{catch:function(r){return this.then(void 0,r)}});!yP&&EP(jo)&&(Ho=IP("Promise").prototype.catch,Im.catch!==Ho&&xP(Im,"catch",Ho,{unsafe:!0}));var Ho});var xm=f(()=>{"use strict";var PP=me(),kP=Ue(),wP=mt(),AP=Di(),LP=ls(),RP=rs(),$P=Uo();PP({target:"Promise",stat:!0,forced:$P},{race:function(e){var t=this,i=AP.f(t),a=i.reject,s=LP(function(){var n=wP(t.resolve);RP(e,function(o){kP(n,t,o).then(i.resolve,a)})});return s.error&&a(s.value),i.promise}})});var Pm=f(()=>{"use strict";var MP=me(),CP=Di(),DP=Ci().CONSTRUCTOR;MP({target:"Promise",stat:!0,forced:DP},{reject:function(e){var t=CP.f(this),i=t.reject;return i(e),t.promise}})});var Qo=f((K$,km)=>{"use strict";var VP=ft(),BP=He(),OP=Di();km.exports=function(r,e){if(VP(r),BP(e)&&e.constructor===r)return e;var t=OP.f(r),i=t.resolve;return i(e),t.promise}});var Lm=f(()=>{"use strict";var _P=me(),NP=It(),wm=rt(),FP=si(),Am=Ci().CONSTRUCTOR,qP=Qo(),UP=NP("Promise"),HP=wm&&!Am;_P({target:"Promise",stat:!0,forced:wm||Am},{resolve:function(e){return qP(HP&&this===UP?FP:this,e)}})});var Rm=f(()=>{"use strict";mm();Tm();Em();xm();Pm();Lm()});var Dm=f(()=>{"use strict";var jP=me(),QP=rt(),bs=si(),GP=Ie(),Mm=It(),Cm=le(),WP=mo(),$m=Qo(),YP=Ri(),Wo=bs&&bs.prototype,zP=!!bs&&GP(function(){Wo.finally.call({then:function(){}},function(){})});jP({target:"Promise",proto:!0,real:!0,forced:zP},{finally:function(r){var e=WP(this,Mm("Promise")),t=Cm(r);return this.then(t?function(i){return $m(e,r()).then(function(){return i})}:r,t?function(i){return $m(e,r()).then(function(){throw i})}:r)}});!QP&&Cm(bs)&&(Go=Mm("Promise").prototype.finally,Wo.finally!==Go&&YP(Wo,"finally",Go,{unsafe:!0}));var Go});var Bm=f((rM,Vm)=>{"use strict";jp();Rm();Dm();var KP=Ot();Vm.exports=KP("Promise","finally")});var _m=f((aM,Om)=>{"use strict";var XP=Bm();Om.exports=XP});var gs=f((sM,Nm)=>{"use strict";var JP=_m();Nm.exports=JP});var Gm=f(()=>{"use strict";var rk=me(),ak=Nn().values;rk({target:"Object",stat:!0},{values:function(e){return ak(e)}})});var Ym=f((BM,Wm)=>{"use strict";Gm();var sk=Ti();Wm.exports=sk.Object.values});var Km=f((OM,zm)=>{"use strict";var nk=Ym();zm.exports=nk});var Ni=f((_M,Xm)=>{"use strict";var ok=Km();Xm.exports=ok});var cf=f(()=>{"use strict";var gk=me(),vk=Ii(),Sk=Ai(),yk=dr(),Tk=pr();gk({target:"Array",proto:!0},{at:function(e){var t=vk(this),i=Sk(t),a=yk(e),s=a>=0?a:i+a;return s<0||s>=i?void 0:t[s]}});Tk("at")});var pf=f((UC,df)=>{"use strict";cf();var Ik=Ot();df.exports=Ik("Array","at")});var mf=f((HC,hf)=>{"use strict";var Ek=pf();hf.exports=Ek});var Ut=f((jC,ff)=>{"use strict";var xk=mf();ff.exports=xk});var hu=f((v0,Of)=>{"use strict";var Bk=Jt();Of.exports=Array.isArray||function(e){return Bk(e)==="Array"}});var Nf=f((S0,_f)=>{"use strict";var Ok=TypeError,_k=9007199254740991;_f.exports=function(r){if(r>_k)throw Ok("Maximum allowed index exceeded");return r}});var Uf=f((y0,qf)=>{"use strict";var Nk=hu(),Fk=Ai(),qk=Nf(),Uk=xi(),Ff=function(r,e,t,i,a,s,n,o){for(var u=a,l=0,d=n?Uk(n,o):!1,p,h;l<i;)l in t&&(p=d?d(t[l],l,e):t[l],s>0&&Nk(p)?(h=Fk(p),u=Ff(r,e,p,h,u,s-1)-1):(qk(u+1),r[u]=p),u++),l++;return u};qf.exports=Ff});var Gf=f((T0,Qf)=>{"use strict";var Hf=hu(),Hk=ho(),jk=He(),Qk=Ee(),Gk=Qk("species"),jf=Array;Qf.exports=function(r){var e;return Hf(r)&&(e=r.constructor,Hk(e)&&(e===jf||Hf(e.prototype))?e=void 0:jk(e)&&(e=e[Gk],e===null&&(e=void 0))),e===void 0?jf:e}});var Yf=f((I0,Wf)=>{"use strict";var Wk=Gf();Wf.exports=function(r,e){return new(Wk(r))(e===0?0:e)}});var zf=f(()=>{"use strict";var Yk=me(),zk=Uf(),Kk=mt(),Xk=Ii(),Jk=Ai(),Zk=Yf();Yk({target:"Array",proto:!0},{flatMap:function(e){var t=Xk(this),i=Jk(t),a;return Kk(e),a=Zk(t,0),a.length=zk(a,t,t,i,0,1,e,arguments.length>1?arguments[1]:void 0),a}})});var Kf=f(()=>{"use strict";var ew=pr();ew("flatMap")});var Jf=f((w0,Xf)=>{"use strict";zf();Kf();var tw=Ot();Xf.exports=tw("Array","flatMap")});var eb=f((A0,Zf)=>{"use strict";var iw=Jf();Zf.exports=iw});var mu=f((L0,tb)=>{"use strict";var rw=eb();tb.exports=rw});var Br=f((R0,ib)=>{"use strict";var aw=mr(),sw=String;ib.exports=function(r){if(aw(r)==="Symbol")throw new TypeError("Cannot convert a Symbol value to a string");return sw(r)}});var fu=f(($0,rb)=>{"use strict";rb.exports=`
|
|
7
|
-
\v\f\r \xA0\u1680\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF`});var nb=f((M0,sb)=>{"use strict";var nw=Se(),ow=Bt(),uw=Br(),gu=fu(),ab=nw("".replace),lw=RegExp("^["+gu+"]+"),cw=RegExp("(^|[^"+gu+"])["+gu+"]+$"),bu=function(r){return function(e){var t=uw(ow(e));return r&1&&(t=ab(t,lw,"")),r&2&&(t=ab(t,cw,"$1")),t}};sb.exports={start:bu(1),end:bu(2),trim:bu(3)}});var cb=f((C0,lb)=>{"use strict";var dw=Gn().PROPER,pw=Ie(),ob=fu(),ub="\u200B\x85\u180E";lb.exports=function(r){return pw(function(){return!!ob[r]()||ub[r]()!==ub||dw&&ob[r].name!==r})}});var vu=f((D0,db)=>{"use strict";var hw=nb().start,mw=cb();db.exports=mw("trimStart")?function(){return hw(this)}:"".trimStart});var hb=f(()=>{"use strict";var fw=me(),pb=vu();fw({target:"String",proto:!0,name:"trimStart",forced:"".trimLeft!==pb},{trimLeft:pb})});var fb=f(()=>{"use strict";hb();var bw=me(),mb=vu();bw({target:"String",proto:!0,name:"trimStart",forced:"".trimStart!==mb},{trimStart:mb})});var gb=f((N0,bb)=>{"use strict";fb();var gw=Ot();bb.exports=gw("String","trimLeft")});var Sb=f((F0,vb)=>{"use strict";var vw=gb();vb.exports=vw});var Tb=f((q0,yb)=>{"use strict";var Sw=Sb();yb.exports=Sw});var Vb=f(()=>{"use strict"});var Bb=f(()=>{"use strict"});var _b=f((gO,Ob)=>{"use strict";var Nw=He(),Fw=Jt(),qw=Ee(),Uw=qw("match");Ob.exports=function(r){var e;return Nw(r)&&((e=r[Uw])!==void 0?!!e:Fw(r)==="RegExp")}});var Fb=f((vO,Nb)=>{"use strict";var Hw=ft();Nb.exports=function(){var r=Hw(this),e="";return r.hasIndices&&(e+="d"),r.global&&(e+="g"),r.ignoreCase&&(e+="i"),r.multiline&&(e+="m"),r.dotAll&&(e+="s"),r.unicode&&(e+="u"),r.unicodeSets&&(e+="v"),r.sticky&&(e+="y"),e}});var Hb=f((SO,Ub)=>{"use strict";var jw=Ue(),Qw=at(),Gw=sr(),Ww=Fb(),qb=RegExp.prototype;Ub.exports=function(r){var e=r.flags;return e===void 0&&!("flags"in qb)&&!Qw(r,"flags")&&Gw(qb,r)?jw(Ww,r):e}});var Qb=f((yO,jb)=>{"use strict";var Pu=Se(),Yw=Ii(),zw=Math.floor,Eu=Pu("".charAt),Kw=Pu("".replace),xu=Pu("".slice),Xw=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,Jw=/\$([$&'`]|\d{1,2})/g;jb.exports=function(r,e,t,i,a,s){var n=t+r.length,o=i.length,u=Jw;return a!==void 0&&(a=Yw(a),u=Xw),Kw(s,u,function(l,d){var p;switch(Eu(d,0)){case"$":return"$";case"&":return r;case"`":return xu(e,0,t);case"'":return xu(e,n);case"<":p=a[xu(d,1,-1)];break;default:var h=+d;if(h===0)return l;if(h>o){var m=zw(h/10);return m===0?l:m<=o?i[m-1]===void 0?Eu(d,1):i[m-1]+Eu(d,1):l}p=i[h-1]}return p===void 0?"":p})}});var Yb=f(()=>{"use strict";var Zw=me(),eA=Ue(),wu=Se(),Gb=Bt(),tA=le(),iA=yi(),rA=_b(),Gi=Br(),aA=or(),sA=Hb(),nA=Qb(),oA=Ee(),uA=rt(),lA=oA("replace"),cA=TypeError,ku=wu("".indexOf),dA=wu("".replace),Wb=wu("".slice),pA=Math.max;Zw({target:"String",proto:!0},{replaceAll:function(e,t){var i=Gb(this),a,s,n,o,u,l,d,p,h,m,b=0,v="";if(!iA(e)){if(a=rA(e),a&&(s=Gi(Gb(sA(e))),!~ku(s,"g")))throw new cA("`.replaceAll` does not allow non-global regexes");if(n=aA(e,lA),n)return eA(n,e,i,t);if(uA&&a)return dA(Gi(i),e,t)}for(o=Gi(i),u=Gi(e),l=tA(t),l||(t=Gi(t)),d=u.length,p=pA(1,d),h=ku(o,u);h!==-1;)m=l?Gi(t(u,h,o)):nA(u,o,h,[],void 0,t),v+=Wb(o,b,h)+m,b=h+d,h=h+p>o.length?-1:ku(o,u,h+p);return b<o.length&&(v+=Wb(o,b)),v}})});var Kb=f((EO,zb)=>{"use strict";Vb();Bb();Yb();var hA=Ot();zb.exports=hA("String","replaceAll")});var Jb=f((xO,Xb)=>{"use strict";var mA=Kb();Xb.exports=mA});var eg=f((PO,Zb)=>{"use strict";var fA=Jb();Zb.exports=fA});var ig=f((kO,tg)=>{"use strict";var bA=dr(),gA=Br(),vA=Bt(),SA=RangeError;tg.exports=function(e){var t=gA(vA(this)),i="",a=bA(e);if(a<0||a===1/0)throw new SA("Wrong number of repetitions");for(;a>0;(a>>>=1)&&(t+=t))a&1&&(i+=t);return i}});var og=f((wO,ng)=>{"use strict";var sg=Se(),yA=Cn(),rg=Br(),TA=ig(),IA=Bt(),EA=sg(TA),xA=sg("".slice),PA=Math.ceil,ag=function(r){return function(e,t,i){var a=rg(IA(e)),s=yA(t),n=a.length,o=i===void 0?" ":rg(i),u,l;return s<=n||o===""?a:(u=s-n,l=EA(o,PA(u/o.length)),l.length>u&&(l=xA(l,0,u)),r?a+l:l+a)}};ng.exports={start:ag(!1),end:ag(!0)}});var lg=f((AO,ug)=>{"use strict";var kA=ei();ug.exports=/Version\/10(?:\.\d+){1,2}(?: [\w./]+)?(?: Mobile\/\w+)? Safari\//.test(kA)});var cg=f(()=>{"use strict";var wA=me(),AA=og().start,LA=lg();wA({target:"String",proto:!0,forced:LA},{padStart:function(e){return AA(this,e,arguments.length>1?arguments[1]:void 0)}})});var pg=f(($O,dg)=>{"use strict";cg();var RA=Ot();dg.exports=RA("String","padStart")});var mg=f((MO,hg)=>{"use strict";var $A=pg();hg.exports=$A});var bg=f((CO,fg)=>{"use strict";var MA=mg();fg.exports=MA});var JA={};Iv(JA,{ChromecastState:()=>er,HttpConnectionType:()=>Oa,Observable:()=>yt.Observable,PlaybackState:()=>Ce,Player:()=>wa,PredefinedQualityLimits:()=>tr,SDK_VERSION:()=>XA,Subject:()=>yt.Subject,Subscription:()=>yt.Subscription,Surface:()=>_a,VERSION:()=>rn,ValueSubject:()=>yt.ValueSubject,VideoFormat:()=>ht,VideoQuality:()=>yt.VideoQuality,clientChecker:()=>z,isMobile:()=>Fi});module.exports=Ev(JA);var rn="2.0.131-dev.abb2b2b1.0";var Ce=(a=>(a.STOPPED="stopped",a.READY="ready",a.PLAYING="playing",a.PAUSED="paused",a))(Ce||{}),ht=(P=>(P.MPEG="MPEG",P.DASH="DASH",P.DASH_SEP="DASH_SEP",P.DASH_SEP_VK="DASH_SEP",P.DASH_WEBM="DASH_WEBM",P.DASH_WEBM_AV1="DASH_WEBM_AV1",P.DASH_STREAMS="DASH_STREAMS",P.DASH_WEBM_VK="DASH_WEBM",P.DASH_ONDEMAND="DASH_ONDEMAND",P.DASH_ONDEMAND_VK="DASH_ONDEMAND",P.DASH_LIVE="DASH_LIVE",P.DASH_LIVE_CMAF="DASH_LIVE_CMAF",P.DASH_LIVE_WEBM="DASH_LIVE_WEBM",P.HLS="HLS",P.HLS_ONDEMAND="HLS_ONDEMAND",P.HLS_JS="HLS",P.HLS_LIVE="HLS_LIVE",P.HLS_LIVE_CMAF="HLS_LIVE_CMAF",P.WEB_RTC_LIVE="WEB_RTC_LIVE",P))(ht||{});var er=(a=>(a.NOT_AVAILABLE="NOT_AVAILABLE",a.AVAILABLE="AVAILABLE",a.CONNECTING="CONNECTING",a.CONNECTED="CONNECTED",a))(er||{}),Oa=(i=>(i.HTTP1="http1",i.HTTP2="http2",i.QUIC="quic",i))(Oa||{});var _a=(n=>(n.NONE="none",n.INLINE="inline",n.FULLSCREEN="fullscreen",n.SECOND_SCREEN="second_screen",n.PIP="pip",n.INVISIBLE="invisible",n))(_a||{}),tr=(i=>(i.TRAFFIC_SAVING="traffic_saving",i.HIGH_QUALITY="high_quality",i.UNKNOWN="unknown",i))(tr||{});var pv=U(ze(),1);var F=require("@vkontakte/videoplayer-shared");var Gc=r=>new Promise((e,t)=>{let i=document.createElement("script");i.setAttribute("src",r),i.onload=()=>e(),i.onerror=a=>t(a),document.body.appendChild(i)});var Ha=class{constructor(e){this.connection$=new F.ValueSubject(void 0);this.castState$=new F.ValueSubject("NOT_AVAILABLE");this.errorEvent$=new F.Subject;this.realCastState$=new F.ValueSubject("NOT_AVAILABLE");this.subscription=new F.Subscription;this.isDestroyed=!1;this.params=e,this.log=this.params.dependencies.logger.createComponentLog("ChromecastInitializer");let t="chrome"in window;if(this.log({message:`[constructor] receiverApplicationId: ${this.params.receiverApplicationId}, isDisabled: ${this.params.isDisabled}, isSupported: ${t}`}),e.isDisabled||!t)return;let i=(0,F.isNonNullable)(window.chrome?.cast),a=!!window.__onGCastApiAvailable;i?this.initializeCastApi():(window.__onGCastApiAvailable=s=>{delete window.__onGCastApiAvailable,s&&!this.isDestroyed&&this.initializeCastApi()},a||Gc("https://www.gstatic.com/cv/js/sender/v1/cast_sender.js?loadCastFramework=1").catch(()=>this.errorEvent$.next({id:"ChromecastLoading",category:F.ErrorCategory.NETWORK,message:"Script loading failed!"})))}connect(){cast.framework.CastContext.getInstance()?.requestSession()}disconnect(){cast.framework.CastContext.getInstance()?.getCurrentSession()?.endSession(!0)}stopMedia(){return new Promise((e,t)=>{cast.framework.CastContext.getInstance()?.getCurrentSession()?.getMediaSession()?.stop(new chrome.cast.media.StopRequest,e,t)})}toggleConnection(){(0,F.isNonNullable)(this.connection$.getValue())?this.disconnect():this.connect()}setVolume(e){let t=this.connection$.getValue();(0,F.isNullable)(t)||(t.remotePlayer.volumeLevel=e,t.remotePlayerController.setVolumeLevel())}setMuted(e){let t=this.connection$.getValue();(0,F.isNullable)(t)||e!==t.remotePlayer.isMuted&&t.remotePlayerController.muteOrUnmute()}destroy(){this.isDestroyed=!0,this.subscription.unsubscribe()}initListeners(){let e=new cast.framework.RemotePlayer,t=new cast.framework.RemotePlayerController(e),i=cast.framework.CastContext.getInstance();this.subscription.add((0,F.fromEvent)(i,cast.framework.CastContextEventType.SESSION_STATE_CHANGED).subscribe(a=>{switch(a.sessionState){case cast.framework.SessionState.SESSION_STARTED:case cast.framework.SessionState.SESSION_STARTING:case cast.framework.SessionState.SESSION_RESUMED:this.contentId=i.getCurrentSession()?.getMediaSession()?.media?.contentId;break;case cast.framework.SessionState.NO_SESSION:case cast.framework.SessionState.SESSION_ENDING:case cast.framework.SessionState.SESSION_ENDED:case cast.framework.SessionState.SESSION_START_FAILED:this.contentId=void 0;break;default:return(0,F.assertNever)(a.sessionState)}})).add((0,F.merge)((0,F.fromEvent)(i,cast.framework.CastContextEventType.CAST_STATE_CHANGED).pipe((0,F.tap)(a=>{this.log({message:`[cast.framework.RemotePlayerEventType.CAST_STATE_CHANGED]: ${JSON.stringify(a)}`})}),(0,F.map)(a=>a.castState)),(0,F.observableFrom)([i.getCastState()])).pipe((0,F.filterChanged)(),(0,F.map)(Qy),(0,F.tap)(a=>{this.log({message:`realCastState$: ${a}`})})).subscribe(this.realCastState$)).add(this.realCastState$.subscribe(a=>{let s=a==="CONNECTED",n=(0,F.isNonNullable)(this.connection$.getValue());if(s&&!n){let o=i.getCurrentSession();(0,F.assertNonNullable)(o);let u=o.getCastDevice(),l=o.getMediaSession()?.media?.contentId;((0,F.isNullable)(l)||l===this.contentId)&&(this.log({message:"connection created"}),this.connection$.next({remotePlayer:e,remotePlayerController:t,session:o,castDevice:u}))}else!s&&n&&(this.log({message:"connection destroyed"}),this.connection$.next(void 0));this.castState$.next(a==="CONNECTED"?(0,F.isNonNullable)(this.connection$.getValue())?"CONNECTED":"AVAILABLE":a)}))}initializeCastApi(){let e,t,i;try{e=cast.framework.CastContext.getInstance(),t=chrome.cast.media.DEFAULT_MEDIA_RECEIVER_APP_ID,i=chrome.cast.AutoJoinPolicy.ORIGIN_SCOPED}catch{return}try{e.setOptions({receiverApplicationId:this.params.receiverApplicationId??t,autoJoinPolicy:i}),this.initListeners()}catch(a){this.errorEvent$.next({id:"ChromecastInitializer",category:F.ErrorCategory.EXTERNAL_API,message:"[initializeCastApi] failed",thrown:a})}}},Qy=r=>{switch(r){case cast.framework.CastState.NO_DEVICES_AVAILABLE:return"NOT_AVAILABLE";case cast.framework.CastState.NOT_CONNECTED:return"AVAILABLE";case cast.framework.CastState.CONNECTING:return"CONNECTING";case cast.framework.CastState.CONNECTED:return"CONNECTED";default:return(0,F.assertNever)(r)}};var zu=U(ze(),1),Zg=U(Li(),1),ev=U(oo(),1);var Hm=U(gs(),1);var Yo=require("@vkontakte/videoplayer-shared");var xe=(r,e=0,t=0)=>{switch(t){case 0:return r.replace("_offset_p",e===0?"":"_"+e.toFixed(0));case 1:{if(e===0)return r;let i=new URL(r);return i.searchParams.append("playback_shift",e.toFixed(0)),i.toString()}case 2:{let i=new URL(r);return!i.searchParams.get("offset_p")&&e===0?r:(i.searchParams.set("offset_p",e.toFixed(0)),i.toString())}default:(0,Yo.assertNever)(t)}return r},vs=(r,e)=>{switch(e){case 0:return NaN;case 1:{let t=new URL(r);return Number(t.searchParams.get("playback_shift"))}case 2:{let t=new URL(r);return Number(t.searchParams.get("offset_p")??0)}default:(0,Yo.assertNever)(e)}};var w=(r,e,t=!1)=>{let i=r.getTransition();(t||!i||i.to===e)&&r.setState(e)};var bt=require("@vkontakte/videoplayer-shared"),j=class{constructor(e){this.transitionStarted$=new bt.Subject;this.transitionEnded$=new bt.Subject;this.transitionUpdated$=new bt.Subject;this.forceChanged$=new bt.Subject;this.stateChangeStarted$=(0,bt.merge)(this.transitionStarted$,this.transitionUpdated$);this.stateChangeEnded$=(0,bt.merge)(this.transitionEnded$,this.forceChanged$);this.state=e,this.prevState=void 0}setState(e){let t=this.transition,i=this.state;this.transition=void 0,this.prevState=i,this.state=e,t?t.to===e?this.transitionEnded$.next(t):this.forceChanged$.next({from:t.from,to:e,canceledTransition:t}):this.forceChanged$.next({from:i,to:e,canceledTransition:t})}startTransitionTo(e){let t=this.transition,i=this.state;i===e||(0,bt.isNonNullable)(t)&&t.to===e||(this.prevState=i,this.state=e,t?(this.transition={from:t.from,to:e,canceledTransition:t},this.transitionUpdated$.next(this.transition)):(this.transition={from:i,to:e},this.transitionStarted$.next(this.transition)))}getTransition(){return this.transition}getState(){return this.state}getPrevState(){return this.prevState}};var Fm=require("@vkontakte/videoplayer-shared"),qm=r=>{switch(r){case"MPEG":case"DASH":case"DASH_SEP":case"DASH_ONDEMAND":case"DASH_WEBM":case"DASH_WEBM_AV1":case"DASH_STREAMS":case"HLS":case"HLS_ONDEMAND":return!1;case"DASH_LIVE":case"DASH_LIVE_CMAF":case"HLS_LIVE":case"HLS_LIVE_CMAF":case"DASH_LIVE_WEBM":case"WEB_RTC_LIVE":return!0;default:return(0,Fm.assertNever)(r)}};var L=require("@vkontakte/videoplayer-shared");var ZP=5,ek=5,tk=500,Um=7e3,Pr=class{constructor(e){this.subscription=new L.Subscription;this.loadMediaTimeoutSubscription=new L.Subscription;this.videoState=new j("stopped");this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.videoState.getTransition(),i=this.params.desiredState.playbackState.getState(),a=this.params.desiredState.playbackState.getTransition(),s=this.params.desiredState.seekState.getState();if(this.log({message:`[syncPlayback] videoState: ${e}; videoTransition: ${JSON.stringify(t)}; desiredPlaybackState: ${i}; desiredPlaybackStateTransition: ${this.params.desiredState.playbackState.getTransition()}; seekState: ${JSON.stringify(s)};`}),i==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.stop());return}if(!t){if(a?.to!=="paused"&&s.state==="requested"&&e!=="stopped"){this.seek(s.position/1e3);return}switch(i){case"ready":{switch(e){case"playing":case"paused":case"ready":break;case"stopped":this.videoState.startTransitionTo("ready"),this.prepare();break;default:(0,L.assertNever)(e)}break}case"playing":{switch(e){case"playing":break;case"paused":this.videoState.startTransitionTo("playing"),this.params.connection.remotePlayerController.playOrPause();break;case"ready":this.videoState.startTransitionTo("playing"),this.params.connection.remotePlayerController.playOrPause();break;case"stopped":this.videoState.startTransitionTo("ready"),this.prepare();break;default:(0,L.assertNever)(e)}break}case"paused":{switch(e){case"playing":this.videoState.startTransitionTo("paused"),this.params.connection.remotePlayerController.playOrPause();break;case"paused":break;case"ready":this.videoState.startTransitionTo("paused"),this.videoState.setState("paused");break;case"stopped":this.videoState.startTransitionTo("ready"),this.prepare();break;default:(0,L.assertNever)(e)}break}default:(0,L.assertNever)(i)}}};this.params=e,this.log=this.params.dependencies.logger.createComponentLog("ChromecastProvider"),this.log({message:`constructor, format: ${e.format}`}),this.params.output.isLive$.next(qm(e.format)),this.params.output.isAudioAvailable$.next(!0),this.handleRemoteVolumeChange({volume:this.params.connection.remotePlayer.volumeLevel,muted:this.params.connection.remotePlayer.isMuted});let t=this.params.connection.session.getMediaSession();t&&this.restoreSession(t),this.subscribe()}destroy(){this.log({message:"[destroy]"}),this.subscription.unsubscribe()}subscribe(){this.subscription.add(this.loadMediaTimeoutSubscription);let e=new L.Subscription;this.subscription.add(e),this.subscription.add((0,L.merge)(this.videoState.stateChangeStarted$.pipe((0,L.map)(a=>`stateChangeStarted$ ${JSON.stringify(a)}`)),this.videoState.stateChangeEnded$.pipe((0,L.map)(a=>`stateChangeEnded$ ${JSON.stringify(a)}`))).subscribe(a=>this.log({message:`[videoState] ${a}`})));let t=(a,s)=>this.subscription.add(a.subscribe(s));if(this.params.output.isLive$.getValue())this.params.output.position$.next(0),this.params.output.duration$.next(0);else{let a=new L.Subject;e.add(a.pipe((0,L.debounce)(tk)).subscribe(()=>{this.params.output.seekedEvent$.next()}));let s=NaN;e.add((0,L.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.CURRENT_TIME_CHANGED).subscribe(n=>{this.logRemoteEvent(n);let o=n.value;this.params.output.position$.next(o),(this.params.desiredState.seekState.getState().state==="applying"||Math.abs(o-s)>ZP)&&a.next(o),s=o})),e.add((0,L.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.DURATION_CHANGED).subscribe(n=>{this.logRemoteEvent(n),this.params.output.duration$.next(n.value)}))}t((0,L.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_MEDIA_LOADED_CHANGED),a=>{this.logRemoteEvent(a),a.value?this.handleRemoteReady():(this.handleRemoteStop(),e.unsubscribe())}),t((0,L.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_PAUSED_CHANGED),a=>{this.logRemoteEvent(a),a.value?this.handleRemotePause():this.handleRemotePlay()}),t((0,L.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.PLAYER_STATE_CHANGED),a=>{this.logRemoteEvent(a);let{remotePlayer:s}=this.params.connection,n=a.value,o=this.params.output.isBuffering$.getValue(),u=n===chrome.cast.media.PlayerState.BUFFERING;switch(o!==u&&this.params.output.isBuffering$.next(u),n){case chrome.cast.media.PlayerState.IDLE:!this.params.output.isLive$.getValue()&&s.duration-s.currentTime<ek&&this.params.output.endedEvent$.next(),this.handleRemoteStop(),w(this.params.desiredState.playbackState,"stopped");break;case chrome.cast.media.PlayerState.PAUSED:{this.handleRemotePause();break}case chrome.cast.media.PlayerState.PLAYING:this.handleRemotePlay();break;case chrome.cast.media.PlayerState.BUFFERING:break;default:(0,L.assertNever)(n)}}),t((0,L.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.VOLUME_LEVEL_CHANGED),a=>{this.logRemoteEvent(a),this.handleRemoteVolumeChange({volume:a.value})}),t((0,L.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_MUTED_CHANGED),a=>{this.logRemoteEvent(a),this.handleRemoteVolumeChange({muted:a.value})});let i=(0,L.merge)(this.params.desiredState.playbackState.stateChangeStarted$,this.params.desiredState.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,(0,L.observableFrom)(["init"])).pipe((0,L.debounce)(0));t(i,this.syncPlayback)}restoreSession(e){this.log({message:"restoreSession"});let{remotePlayer:t}=this.params.connection;if(e.playerState!==chrome.cast.media.PlayerState.IDLE){t.isPaused?(this.videoState.setState("paused"),w(this.params.desiredState.playbackState,"paused")):(this.videoState.setState("playing"),w(this.params.desiredState.playbackState,"playing"));let i=this.params.output.isLive$.getValue();this.params.output.duration$.next(i?0:t.duration),this.params.output.position$.next(i?0:t.currentTime),this.params.desiredState.seekState.setState({state:"none"})}}prepare(){let e=this.params.format;this.log({message:`[prepare] format: ${e}`});let t=this.createMediaInfo(e),i=this.createLoadRequest(t);this.loadMedia(i)}handleRemotePause(){let e=this.videoState.getState();(this.videoState.getTransition()?.to==="paused"||e==="playing")&&(this.videoState.setState("paused"),w(this.params.desiredState.playbackState,"paused"))}handleRemotePlay(){let e=this.videoState.getState();(this.videoState.getTransition()?.to==="playing"||e==="paused")&&(this.videoState.setState("playing"),w(this.params.desiredState.playbackState,"playing"))}handleRemoteReady(){this.videoState.getTransition()?.to==="ready"&&this.videoState.setState("ready"),this.params.desiredState.playbackState.getTransition()?.to==="ready"&&w(this.params.desiredState.playbackState,"ready")}handleRemoteStop(){this.videoState.getState()!=="stopped"&&this.videoState.setState("stopped")}handleRemoteVolumeChange(e){let t=this.params.output.volume$.getValue(),i={volume:e.volume??t.volume,muted:e.muted??t.muted};(i.volume!==t.volume||i.muted!==i.muted)&&this.params.output.volume$.next(i)}seek(e){this.params.output.willSeekEvent$.next();let{remotePlayer:t,remotePlayerController:i}=this.params.connection;t.currentTime=e,i.seek()}stop(){let{remotePlayerController:e}=this.params.connection;e.stop()}createMediaInfo(e){let t=this.params.source,i,a,s;switch(e){case"MPEG":{let l=t[e];(0,L.assertNonNullable)(l);let d=(0,L.getHighestQuality)(Object.keys(l));(0,L.assertNonNullable)(d);let p=l[d];(0,L.assertNonNullable)(p),i=p,a="video/mp4",s=chrome.cast.media.StreamType.BUFFERED;break}case"HLS":case"HLS_ONDEMAND":{let l=t[e];(0,L.assertNonNullable)(l),i=l.url,a="application/x-mpegurl",s=chrome.cast.media.StreamType.BUFFERED;break}case"DASH_SEP":case"DASH_ONDEMAND":case"DASH_WEBM":case"DASH_WEBM_AV1":case"DASH_STREAMS":{let l=t[e];(0,L.assertNonNullable)(l),i=l.url,a="application/dash+xml",s=chrome.cast.media.StreamType.BUFFERED;break}case"DASH_LIVE_CMAF":{let l=t[e];(0,L.assertNonNullable)(l),i=l.url,a="application/dash+xml",s=chrome.cast.media.StreamType.LIVE;break}case"HLS_LIVE":case"HLS_LIVE_CMAF":{let l=t[e];(0,L.assertNonNullable)(l),i=xe(l.url),a="application/x-mpegurl",s=chrome.cast.media.StreamType.LIVE;break}case"DASH_LIVE":case"WEB_RTC_LIVE":{let l="Unsupported format for Chromecast",d=new Error(l);throw this.params.output.error$.next({id:"ChromecastProvider.createMediaInfo()",category:L.ErrorCategory.VIDEO_PIPELINE,message:l,thrown:d}),d}case"DASH":case"DASH_LIVE_WEBM":throw new Error(`${e} is no longer supported`);default:return(0,L.assertNever)(e)}let n=new chrome.cast.media.MediaInfo(this.params.meta.videoId??i,a);n.contentUrl=i,n.streamType=s,n.metadata=new chrome.cast.media.GenericMediaMetadata;let{title:o,subtitle:u}=this.params.meta;return(0,L.isNonNullable)(o)&&(n.metadata.title=o),(0,L.isNonNullable)(u)&&(n.metadata.subtitle=u),n}createLoadRequest(e){let t=new chrome.cast.media.LoadRequest(e);t.autoplay=!1;let i=this.params.desiredState.seekState.getState();return i.state==="applying"||i.state==="requested"?t.currentTime=this.params.output.isLive$.getValue()?0:i.position/1e3:t.currentTime=0,t}loadMedia(e){let t=this.params.connection.session.loadMedia(e),i=new Promise((a,s)=>{this.loadMediaTimeoutSubscription.add((0,L.timeout)(Um).subscribe(()=>s(`timeout(${Um})`)))});(0,Hm.default)(Promise.race([t,i]).then(()=>{this.log({message:`[loadMedia] completed, format: ${this.params.format}`}),this.params.desiredState.seekState.getState().state==="applying"&&this.params.output.seekedEvent$.next(),this.handleRemoteReady()},a=>{let s=`[prepare] loadMedia failed, format: ${this.params.format}, reason: ${a}`;this.log({message:s}),this.params.output.error$.next({id:"ChromecastProvider.loadMedia",category:L.ErrorCategory.VIDEO_PIPELINE,message:s,thrown:a})}),()=>{this.loadMediaTimeoutSubscription.unsubscribe()})}logRemoteEvent(e){this.log({message:`[remoteEvent] ${JSON.stringify(e)}`})}};var du=U(ze(),1);var Jo=require("@vkontakte/videoplayer-shared");var jm=require("@vkontakte/videoplayer-shared"),Qm=r=>{try{r.pause(),r.playbackRate=0,(0,jm.clearVideoElement)(r),r.remove()}catch(e){console.error(e)}};var Ss=require("@vkontakte/videoplayer-shared"),zo=class{constructor(){this.attribute="data-pool-reused"}get(e){return e.hasAttribute(this.attribute)}set(e,t){e.toggleAttribute(this.attribute,t)}delete(e){e.removeAttribute(this.attribute)}},Ko=window.WeakMap?new WeakMap:new zo,Xo=window.WeakMap?new WeakMap:new Map,ik=(r,e=20)=>{let t=0;return(0,Ss.fromEvent)(r,"ratechange").subscribe(i=>{t++,t>=e&&(r.currentTime=r.currentTime,t=0)})},De=(r,{audioVideoSyncRate:e,disableYandexPiP:t})=>{let i=r.querySelector("video"),a=!!i;i?(0,Jo.clearVideoElement)(i):(i=document.createElement("video"),r.appendChild(i)),Ko.set(i,a);let s=new Ss.Subscription;return s.add(ik(i,e)),Xo.set(i,s),i.setAttribute("crossorigin","anonymous"),i.setAttribute("playsinline","playsinline"),t&&i.setAttribute("x-yandex-pip","false"),i.controls=!1,i.setAttribute("poster","data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII="),i},Ve=r=>{Xo.get(r)?.unsubscribe(),Xo.delete(r);let t=Ko.get(r);Ko.delete(r),t?(0,Jo.clearVideoElement)(r):Qm(r)};var Zo=U(Ni(),1),R=require("@vkontakte/videoplayer-shared");var Nt=require("@vkontakte/videoplayer-shared"),ys=(r,e,t,{equal:i=(n,o)=>n===o,changed$:a,onError:s}={})=>{let n=r.getState(),o=e(),u=(0,Nt.isNullable)(a),l=new Nt.Subscription;return a&&l.add(a.subscribe(d=>{let p=r.getState();i(d,p)&&r.setState(d)},s)),i(o,n)||(t(n),u&&r.setState(n)),l.add(r.stateChangeStarted$.subscribe(d=>{t(d.to),u&&r.setState(d.to)},s)),l},gt=(r,e,t)=>ys(e,()=>r.loop,i=>{(0,Nt.isNonNullable)(i)&&(r.loop=i)},{onError:t}),Be=(r,e,t,i)=>ys(e,()=>({muted:r.muted,volume:r.volume}),a=>{(0,Nt.isNonNullable)(a)&&(r.muted=a.muted,r.volume=a.volume)},{equal:(a,s)=>a===s||a?.muted===s?.muted&&a?.volume===s?.volume,changed$:t,onError:i}),Ke=(r,e,t,i)=>ys(e,()=>r.playbackRate,a=>{(0,Nt.isNonNullable)(a)&&(r.playbackRate=a)},{changed$:t,onError:i}),Ft=ys;var uk=r=>["__",r.language,r.label].join("|"),lk=(r,e)=>{if(r.id===e)return!0;let[t,i,a]=e.split("|");return r.language===i&&r.label===a},eu=class r{constructor(e){this.available$=new R.Subject;this.current$=new R.ValueSubject(void 0);this.error$=new R.Subject;this.subscription=new R.Subscription;this.externalTracks=new Map;this.internalTracks=new Map;this.baseURL=e}connect(e,t,i){this.video=e,this.cueSettings=t.textTrackCuesSettings,this.subscribe();let a=s=>{this.error$.next({id:"TextTracksManager",category:R.ErrorCategory.WTF,message:"Generic HtmlVideoTextTrackManager error",thrown:s})};this.subscription.add(this.available$.subscribe(i.availableTextTracks$)),this.subscription.add(this.current$.subscribe(i.currentTextTrack$)),this.subscription.add(this.error$.subscribe(i.error$)),this.subscription.add(Ft(t.internalTextTracks,()=>(0,Zo.default)(this.internalTracks),s=>{(0,R.isNonNullable)(s)&&this.setInternal(s)},{equal:(s,n)=>(0,R.isNonNullable)(s)&&(0,R.isNonNullable)(n)&&s.length===n.length&&s.every(({id:o},u)=>o===n[u].id),changed$:this.available$.pipe((0,R.map)(s=>s.filter(({type:n})=>n==="internal"))),onError:a})),this.subscription.add(Ft(t.externalTextTracks,()=>(0,Zo.default)(this.externalTracks),s=>{(0,R.isNonNullable)(s)&&this.setExternal(s)},{equal:(s,n)=>(0,R.isNonNullable)(s)&&(0,R.isNonNullable)(n)&&s.length===n.length&&s.every(({id:o},u)=>o===n[u].id),changed$:this.available$.pipe((0,R.map)(s=>s.filter(({type:n})=>n==="external"))),onError:a})),this.subscription.add(Ft(t.currentTextTrack,()=>{if(this.video)return;let s=this.htmlTextTracksAsArray().find(({mode:n})=>n==="showing");return s&&this.htmlTextTrackToITextTrack(s).id},s=>this.select(s),{changed$:this.current$,onError:a})),this.subscription.add(Ft(t.textTrackCuesSettings,()=>({}),()=>{if(this.video)for(let s of this.htmlTextTracksAsArray())this.applyCueSettings(s.cues),this.applyCueSettings(s.activeCues)}))}subscribe(){(0,R.assertNonNullable)(this.video);let{textTracks:e}=this.video;this.subscription.add((0,R.fromEvent)(e,"addtrack").subscribe(()=>{let i=this.current$.getValue();i&&this.select(i)})),this.subscription.add((0,R.merge)((0,R.fromEvent)(e,"addtrack"),(0,R.fromEvent)(e,"removetrack"),(0,R.observableFrom)(["init"])).pipe((0,R.map)(()=>this.htmlTextTracksAsArray().map(i=>this.htmlTextTrackToITextTrack(i))),(0,R.filterChanged)((i,a)=>i.length===a.length&&i.every(({id:s},n)=>s===a[n].id))).subscribe(this.available$)),this.subscription.add((0,R.merge)((0,R.fromEvent)(e,"change"),(0,R.observableFrom)(["init"])).pipe((0,R.map)(()=>this.htmlTextTracksAsArray().find(({mode:i})=>i==="showing")),(0,R.map)(i=>i&&this.htmlTextTrackToITextTrack(i).id),(0,R.filterChanged)()).subscribe(this.current$));let t=i=>this.applyCueSettings(i.target?.activeCues??null);this.subscription.add((0,R.fromEvent)(e,"addtrack").subscribe(i=>{i.track?.addEventListener("cuechange",t);let a=s=>{let n=s.target?.cues??null;n&&n.length&&(this.applyCueSettings(s.target?.cues??null),s.target?.removeEventListener("cuechange",a))};i.track?.addEventListener("cuechange",a)})),this.subscription.add((0,R.fromEvent)(e,"removetrack").subscribe(i=>{i.track?.removeEventListener("cuechange",t)}))}applyCueSettings(e){if(!e||!e.length)return;let t=this.cueSettings.getState();for(let i of Array.from(e)){let a=i;(0,R.isNonNullable)(t.align)&&(a.align=t.align),(0,R.isNonNullable)(t.position)&&(a.position=t.position),(0,R.isNonNullable)(t.size)&&(a.size=t.size),(0,R.isNonNullable)(t.line)&&(a.line=t.line)}}htmlTextTracksAsArray(e=!1){(0,R.assertNonNullable)(this.video);let t=[...this.video.textTracks];return e?t:t.filter(r.isHealthyTrack)}htmlTextTrackToITextTrack(e){let{language:t,label:i}=e,a=e.id?e.id:uk(e),s=this.externalTracks.has(a),n=(s?this.externalTracks.get(a)?.isAuto:this.internalTracks.get(a)?.isAuto)??a.includes("auto");return s?{id:a,type:"external",isAuto:n,language:t,label:i,url:this.externalTracks.get(a)?.url}:{id:a,type:"internal",isAuto:n,language:t,label:i,url:this.internalTracks.get(a)?.url}}static isHealthyTrack(e){return!(e.kind==="metadata"||e.groupId||e.id===""&&e.label===""&&e.language==="")}setExternal(e){this.internalTracks.size>0&&Array.from(this.internalTracks).forEach(([,t])=>this.detach(t)),e.filter(({id:t})=>!this.externalTracks.has(t)).forEach(t=>this.attach(t)),Array.from(this.externalTracks).filter(([t])=>!e.find(i=>i.id===t)).forEach(([,t])=>this.detach(t))}setInternal(e){let t=[...this.externalTracks];e.filter(({id:i,language:a,isAuto:s})=>!this.internalTracks.has(i)&&!t.some(([,n])=>n.language===a&&n.isAuto===s)).forEach(i=>this.attach(i)),Array.from(this.internalTracks).filter(([i])=>!e.find(a=>a.id===i)).forEach(([,i])=>this.detach(i))}select(e){(0,R.assertNonNullable)(this.video);for(let t of this.htmlTextTracksAsArray(!0))t.mode="showing";for(let t of this.htmlTextTracksAsArray(!0))((0,R.isNullable)(e)||!lk(t,e))&&(t.mode="disabled")}destroy(){if(this.subscription.unsubscribe(),this.video)for(let e of Array.from(this.video.getElementsByTagName("track"))){let t=e.getAttribute("id");t&&this.externalTracks.has(t)&&this.video.removeChild(e)}this.externalTracks.clear()}attach(e){(0,R.assertNonNullable)(this.video);let t=document.createElement("track");this.baseURL?t.setAttribute("src",new URL(e.url,this.baseURL).toString()):t.setAttribute("src",e.url),t.setAttribute("id",e.id),e.label&&t.setAttribute("label",e.label),e.language&&t.setAttribute("srclang",e.language),e.type==="external"?this.externalTracks.set(e.id,e):e.type==="internal"&&this.internalTracks.set(e.id,e),this.video.appendChild(t)}detach(e){(0,R.assertNonNullable)(this.video);let t=Array.prototype.find.call(this.video.getElementsByTagName("track"),i=>i.getAttribute("id")===e.id);t&&this.video.removeChild(t),e.type==="external"?this.externalTracks.delete(e.id):e.type==="internal"&&this.internalTracks.delete(e.id)}},Xe=eu;var oi=class{constructor(){this.pausedTime=0;this.streamOffset=0;this.pauseTimestamp=0}getTotalPausedTime(){return this.pausedTime+this.getCurrentPausedTime()}getCurrentPausedTime(){return this.pauseTimestamp>0?Date.now()-this.pauseTimestamp:0}getStreamOffset(){return this.streamOffset}getTotalOffset(){return this.getTotalPausedTime()+this.streamOffset}pause(){this.pauseTimestamp===0&&(this.pauseTimestamp=Date.now())}resume(){this.pauseTimestamp>0&&(this.pausedTime+=this.getCurrentPausedTime(),this.pauseTimestamp=0)}resetTo(e,t=!1){this.streamOffset=e,this.pauseTimestamp=0,this.pausedTime=0,t&&this.pause()}};var Jm=r=>{let e=r;for(;!(e instanceof Document)&&!(e instanceof ShadowRoot)&&e!==null;)e=e?.parentNode;return e??void 0},tu=r=>{let e=Jm(r);return!!(e&&e.fullscreenElement&&e.fullscreenElement===r)},Zm=r=>{let e=Jm(r);return!!(e&&e.pictureInPictureElement&&e.pictureInPictureElement===r)};var x=require("@vkontakte/videoplayer-shared");var ck=3,ef=(r,e,t=ck)=>{let i=0,a=0;for(let s=0;s<r.length;s++){let n=r.start(s),o=r.end(s);if(n<=e&&e<=o){if(i=n,a=o,!t)return{from:i,to:a};for(let u=s-1;u>=0;u--)r.end(u)+t>=i&&(i=r.start(u));for(let u=s+1;u<r.length;u++)r.start(u)-t<=a&&(a=r.end(u))}}return{from:i,to:a}};var Ts=class{get current(){return this._current}get isYandex(){return this.current==="Yandex"}get isSafari(){return this.current==="Safari"}get isSamsungBrowser(){return this.current==="SamsungBrowser"}get safariVersion(){return this._safariVersion}detect(){let{userAgent:e}=navigator;try{let t=/yabrowser/i.test(e)?"Yandex":void 0,i=/samsungbrowser/i.test(e)?"SamsungBrowser":void 0,a=/chrome|crios/i.test(e)?"Chrome":void 0,s=/chromium/i.test(e)?"Chromium":void 0,n=/firefox|fxios/i.test(e)?"Firefox":void 0,o=/webkit|safari|khtml/i.test(e)?"Safari":void 0,u=/opr\//i.test(e)?"Opera":void 0,l=/edg/i.test(e)?"Edge":void 0;this._current=t||i||n||u||l||a||s||o||"Rest"}catch(t){console.error(t)}this.isSafari&&this.detectSafariVersion()}detectSafariVersion(){try{let{userAgent:e}=window.navigator,t=e.match(/Version\/(\d+)/);if(!t)return;let i=t[1],a=parseInt(i,10);if(isNaN(a))return;this._safariVersion=a}catch(e){console.error(e)}}};var tf=U(ze(),1);var Fi=()=>/Mobile|mini|Fennec|Android|iP(ad|od|hone)/.test(navigator.appVersion??navigator.userAgent)||navigator?.userAgentData?.mobile;var Is=class{constructor(e){this._highEntropyValues={};this._displayChecker=e}get current(){return this._current}get isIOS(){let e=["iPhone","iPad","iPod"];return this._highEntropyValues.platform==="iOS"||(0,tf.default)(e,this.current)}get isMac(){return this._highEntropyValues.platform==="macOS"||this.current==="Mac"}get isApple(){return this.isIOS||this.isMac}get isIphoneOrOldIpad(){if(!this.isApple||!this._displayChecker.isTouch)return!1;let e=this.current==="iPad"||this._displayChecker.width>700,t=this._iosVersion;return!e||e&&!!t&&t<16}get isAndroid(){return this._highEntropyValues.platform==="Android"||this.current==="Android"}get isMobile(){return this._highEntropyValues.mobile||this._isMobile}get iOSVersion(){return this._iosVersion}detect(){let{userAgent:e}=navigator;try{this._isMobile=Fi()}catch(t){console.error(t)}this.detectDevice(e),this.detectHighEntropyValues(),this.isIOS&&this.detectIOSVersion()}async detectHighEntropyValues(){let{userAgentData:e}=navigator;if(e){let t=await e.getHighEntropyValues(["architecture","bitness","brands","mobile","platform","formFactor","model","platformVersion","wow64"]);this._highEntropyValues=t}}detectDevice(e){try{let t=/android/i.test(e)?"Android":void 0,i=/iphone/i.test(e)?"iPhone":void 0,a=/ipad/i.test(e)?"iPad":void 0,s=/ipod/i.test(e)?"iPod":void 0,n=/mac/i.test(e)?"Mac":void 0,o=/webOS|BlackBerry|IEMobile|Opera Mini/i.test(e)?"RestMobile":void 0;this._current=t||i||a||s||o||n||"Desktop"}catch(t){console.error(t)}}detectIOSVersion(){try{if(this._highEntropyValues.platformVersion){let s=this._highEntropyValues.platformVersion.split(".").slice(0,2).join("."),n=parseFloat(s);this._iosVersion=n;return}let{userAgent:e}=window.navigator,t=e.match(/OS (\d+(_\d+)?)/i);if(!t)return;let i=t[1].replace(/_/g,".");if(!i)return;let a=parseFloat(i);if(isNaN(a))return;this._iosVersion=a}catch(e){console.error(e)}}};var Es=class{get isTouch(){return typeof this._maxTouchPoints=="number"?this._maxTouchPoints>1:"ontouchstart"in window}get maxTouchPoints(){return this._maxTouchPoints}get height(){return this._height}get width(){return this._width}get screenHeight(){return this._screenHeight}get screenWidth(){return this._screenWidth}get pixelRatio(){return this._pixelRatio}get isHDR(){return this._isHdr}get colorDepth(){return this._colorDepth}detect(){let{maxTouchPoints:e}=navigator;try{this._maxTouchPoints=e??0,this._isHdr=!!matchMedia("(dynamic-range: high)")?.matches,this._colorDepth=screen.colorDepth}catch(t){console.error(t)}try{this._pixelRatio=window.devicePixelRatio||1,this._height=screen.height,this._width=screen.width,this._height=screen.height,this._screenHeight=this._height*this._pixelRatio,this._screenWidth=this._width*this._pixelRatio}catch(t){console.error(t)}}};var nt=()=>window.ManagedMediaSource||window.MediaSource,xs=()=>!!(window.ManagedMediaSource&&window.ManagedSourceBuffer?.prototype?.appendBuffer),rf=()=>!!(window.MediaSource&&window.SourceBuffer?.prototype?.appendBuffer),af=()=>window.ManagedMediaSource?new ManagedMediaSource:new MediaSource;var dk=document.createElement("video"),pk='video/mp4; codecs="avc1.42000a,mp4a.40.2"',hk='video/mp4; codecs="hev1.1.6.L93.B0"',sf='video/webm; codecs="vp09.00.10.08"',nf='video/webm; codecs="av01.0.00M.08"',mk='audio/mp4; codecs="mp4a.40.2"',fk='audio/webm; codecs="opus"',of,bk=async()=>{if(!window.navigator.mediaCapabilities)return;let r={type:"media-source",video:{contentType:"video/webm",width:1280,height:720,bitrate:1e6,framerate:30}},[e,t]=await Promise.all([window.navigator.mediaCapabilities.decodingInfo({...r,video:{...r.video,contentType:nf}}),window.navigator.mediaCapabilities.decodingInfo({...r,video:{...r.video,contentType:sf}})]);of={DASH_WEBM_AV1:e,DASH_WEBM:t}};bk().catch(r=>{console.log(dk),console.error(r)});var Ps=class{constructor(e,t){this._deviceChecker=e,this._browserChecker=t}get protocols(){return this._protocols}get containers(){return this._containers}get codecs(){return this._codecs}get webmDecodingInfo(){return of}get supportedCodecs(){return Object.keys(this._codecs).filter(e=>this._codecs[e])}get nativeHlsSupported(){return this._nativeHlsSupported}detect(){this._video=document.createElement("video");try{this._protocols={mms:xs(),mse:rf(),hls:!!(this._video.canPlayType?.("application/x-mpegurl")||this._video.canPlayType?.("vnd.apple.mpegURL")),webrtc:!!window.RTCPeerConnection,ws:!!window.WebSocket},this._containers={mp4:!!this._video.canPlayType?.("video/mp4"),webm:!!this._video.canPlayType?.("video/webm"),cmaf:!0};let e=!!nt()?.isTypeSupported?.(pk),t=!!nt()?.isTypeSupported?.(hk),i=!!nt()?.isTypeSupported?.(mk);this._codecs={h264:e,h265:t,vp9:!!nt()?.isTypeSupported?.(sf),av1:!!nt()?.isTypeSupported?.(nf),aac:i,opus:!!nt()?.isTypeSupported?.(fk),mpeg:(e||t)&&i},this._nativeHlsSupported=this._protocols.hls&&this._containers.mp4}catch(e){console.error(e)}this.destroyVideoElement()}destroyVideoElement(){if(!this._video)return;if(this._video.pause(),this._video.currentTime=0,this._video.removeAttribute("src"),this._video.src="",this._video.load(),this._video.remove){this._video.remove(),this._video=null;return}this._video.parentNode&&this._video.parentNode.removeChild(this._video);let e=this._video.cloneNode(!1);this._video.parentNode?.replaceChild(e,this._video),this._video=null}};var uf="audio/mpeg",ks=class{supportMp3(){return this._codecs.mp3&&this._containers.mpeg}detect(){this._audio=document.createElement("audio");try{this._containers={mpeg:!!this._audio.canPlayType?.(uf)},this._codecs={mp3:!!nt()?.isTypeSupported?.(uf)}}catch(e){console.error(e)}this.destroyAudioElement()}destroyAudioElement(){if(!this._audio)return;if(this._audio.pause(),this._audio.currentTime=0,this._audio.removeAttribute("src"),this._audio.src="",this._audio.load(),this._audio.remove){this._audio.remove(),this._audio=null;return}this._audio.parentNode&&this._audio.parentNode.removeChild(this._audio);let e=this._audio.cloneNode(!1);this._audio.parentNode?.replaceChild(e,this._audio),this._audio=null}};var lf=require("@vkontakte/videoplayer-shared"),iu=class{constructor(){this.isInited$=new lf.ValueSubject(!1);this._displayChecker=new Es,this._deviceChecker=new Is(this._displayChecker),this._browserChecker=new Ts,this._videoChecker=new Ps(this._deviceChecker,this._browserChecker),this._audioChecker=new ks,this.detect()}get display(){return this._displayChecker}get device(){return this._deviceChecker}get browser(){return this._browserChecker}get video(){return this._videoChecker}get audio(){return this._audioChecker}async detect(){this._displayChecker.detect(),this._deviceChecker.detect(),this._browserChecker.detect(),this._videoChecker.detect(),this._audioChecker.detect(),this.isInited$.next(!0)}},z=new iu;var Oe=r=>{let e=E=>(0,x.fromEvent)(r,E).pipe((0,x.mapTo)(void 0)),t=new x.Subscription,i=()=>t.unsubscribe(),s=(0,x.merge)(...["waiting","pause","canplay","play","canplaythrough","playing","seeking","seeked","ended"].map(E=>(0,x.fromEvent)(r,E))).pipe((0,x.map)(E=>E.type==="ended"?r.readyState<2:r.readyState<3),(0,x.filterChanged)()),n=(0,x.merge)((0,x.fromEvent)(r,"progress"),(0,x.fromEvent)(r,"timeupdate")).pipe((0,x.map)(()=>ef(r.buffered,r.currentTime))),o=z.browser.isSafari?(0,x.combine)({play:e("play").pipe((0,x.once)()),playing:e("playing")}).pipe((0,x.mapTo)(void 0)):e("playing"),u=(0,x.fromEvent)(r,"volumechange").pipe((0,x.map)(()=>({muted:r.muted,volume:r.volume}))),l=(0,x.fromEvent)(r,"ratechange").pipe((0,x.map)(()=>r.playbackRate)),d=(0,x.fromEvent)(r,"error").pipe((0,x.filter)(()=>!!(r.error||r.played.length)),(0,x.map)(()=>{let E=r.error;return{id:E?`MediaError#${E.code}`:"HtmlVideoError",category:x.ErrorCategory.VIDEO_PIPELINE,message:E?E.message:"Error event from HTML video element",thrown:r.error??void 0}})),p=(0,x.fromEvent)(r,"timeupdate").pipe((0,x.map)(()=>r.currentTime)),h=new x.Subject,m=.3,b;t.add(p.subscribe(E=>{r.loop&&(0,x.isNonNullable)(b)&&(0,x.isNonNullable)(E)&&b>=r.duration-m&&E<=m&&h.next(b),b=E}));let v=e("pause").pipe((0,x.filter)(()=>!r.error&&b!==r.duration)),T=(0,x.fromEvent)(r,"enterpictureinpicture"),I=(0,x.fromEvent)(r,"leavepictureinpicture"),A=new x.ValueSubject(Zm(r));t.add(T.subscribe(()=>A.next(!0))),t.add(I.subscribe(()=>A.next(!1)));let P=new x.ValueSubject(tu(r)),$=(0,x.fromEvent)(r,"fullscreenchange");t.add($.pipe((0,x.map)(()=>tu(r))).subscribe(P));let k=.1,W=1e3,Y=(0,x.fromEvent)(r,"timeupdate").pipe((0,x.filter)(E=>r.duration-r.currentTime<k)),X=(0,x.merge)(Y.pipe((0,x.filter)(E=>!r.loop)),(0,x.fromEvent)(r,"ended")).pipe((0,x.throttle)(W),(0,x.mapTo)(void 0)),K=Y.pipe((0,x.filter)(E=>r.loop));return{playing$:o,pause$:v,canplay$:e("canplay"),ended$:X,looped$:h,loopExpected$:K,error$:d,seeked$:e("seeked"),seeking$:e("seeking"),progress$:e("progress"),loadStart$:e("loadstart"),loadedMetadata$:e("loadedmetadata"),loadedData$:e("loadeddata"),timeUpdate$:p,durationChange$:(0,x.fromEvent)(r,"durationchange").pipe((0,x.map)(()=>r.duration)),isBuffering$:s,currentBuffer$:n,volumeState$:u,playbackRateState$:l,inPiP$:A,inFullscreen$:P,enterPip$:T,leavePip$:I,destroy:i}};var Pt=require("@vkontakte/videoplayer-shared"),qt=r=>{switch(r){case"mobile":return Pt.VideoQuality.Q_144P;case"lowest":return Pt.VideoQuality.Q_240P;case"low":return Pt.VideoQuality.Q_360P;case"sd":case"medium":return Pt.VideoQuality.Q_480P;case"hd":case"high":return Pt.VideoQuality.Q_720P;case"fullhd":case"full":return Pt.VideoQuality.Q_1080P;case"quadhd":case"quad":return Pt.VideoQuality.Q_1440P;case"ultrahd":case"ultra":return Pt.VideoQuality.Q_2160P}};var Ht=U(Ut(),1),Tf=U(ze(),1),ws=U(Li(),1),B=require("@vkontakte/videoplayer-shared");var ru=!1,kt={},bf=r=>{ru=r},gf=()=>{kt={}},vf=r=>{r(kt)},kr=(r,e)=>{ru&&(kt.meta=kt.meta??{},kt.meta[r]=e)},Ae=class{constructor(e){this.name=e}next(e){if(!ru)return;kt.series=kt.series??{};let t=kt.series[this.name]??[];t.push([Date.now(),e]),kt.series[this.name]=t}};var fe=require("@vkontakte/videoplayer-shared");function au({limits:r,highQualityLimit:e,trafficSavingLimit:t}){return!r.max&&r.min===e?"high_quality":!r.min&&r.max===t?"traffic_saving":"unknown"}function su({limits:r,highQualityLimit:e,trafficSavingLimit:t}){return!!r&&au({limits:r,highQualityLimit:e,trafficSavingLimit:t})==="high_quality"}function wr({limits:r,highestAvailableQuality:e,lowestAvailableQuality:t}){return(0,fe.isNullable)(r)||(0,fe.isNonNullable)(r.min)&&(0,fe.isNonNullable)(r.max)&&(0,fe.isLower)(r.max,r.min)||(0,fe.isNonNullable)(r.min)&&e&&(0,fe.isHigher)(r.min,e)||(0,fe.isNonNullable)(r.max)&&t&&(0,fe.isLower)(r.max,t)}function Sf({limits:r,highestAvailableHeight:e,lowestAvailableHeight:t}){return wr({limits:{max:r?.max?(0,fe.videoHeightToQuality)(r.max):void 0,min:r?.min?(0,fe.videoHeightToQuality)(r.min):void 0},highestAvailableQuality:e?(0,fe.videoHeightToQuality)(e):void 0,lowestAvailableQuality:t?(0,fe.videoHeightToQuality)(t):void 0})}var Pk=new Ae("best_bitrate"),If=(r,e,t)=>(e-t)*Math.pow(2,-10*r)+t;var nu=r=>(e,t)=>r*(Number(e.bitrate)-Number(t.bitrate)),Ar=class{constructor(){this.history={}}recordSelection(e){this.history[e.id]=(0,B.now)()}recordSwitch(e){this.last=e}clear(){this.last=void 0,this.history={}}},Ef='Assertion "ABR Tracks is empty array" failed',As=(r,e,t,i)=>{let a=[...e].sort(nu(1)),s=[...t].sort(nu(1)),n=s.filter(u=>(0,B.isNonNullable)(u.bitrate)&&(0,B.isNonNullable)(r.bitrate)?r.bitrate/u.bitrate>i:!0),o=(0,Ht.default)(s,Math.round(s.length*a.indexOf(r)/(a.length+1)))??(0,Ht.default)(s,-1);return o&&(0,Tf.default)(n,o)?o:n.length?(0,Ht.default)(n,-1):(0,Ht.default)(s,0)},yf=r=>"quality"in r,xf=(r,e,t,i)=>{let a=(0,B.isNonNullable)(i?.last?.bitrate)&&(0,B.isNonNullable)(t?.bitrate)&&i.last.bitrate<t.bitrate?r.trackCooldownIncreaseQuality:r.trackCooldownDecreaseQuality,s=t&&i&&i.history[t.id]&&(0,B.now)()-i.history[t.id]<=a&&(!i.last||t.id!==i.last.id);if(t?.id&&i&&!s&&i.recordSelection(t),s&&i?.last){let n=i.last;i?.recordSwitch(n);let o=yf(n)?"video":"audio",u=yf(n)?n.quality:n.bitrate;return e({message:`
|
|
6
|
+
"use strict";var my=Object.create;var Ja=Object.defineProperty;var by=Object.getOwnPropertyDescriptor;var gy=Object.getOwnPropertyNames;var Sy=Object.getPrototypeOf,vy=Object.prototype.hasOwnProperty;var b=(s,e)=>()=>(e||s((e={exports:{}}).exports,e),e.exports),yy=(s,e)=>{for(var t in e)Ja(s,t,{get:e[t],enumerable:!0})},Nc=(s,e,t,i)=>{if(e&&typeof e=="object"||typeof e=="function")for(let r of gy(e))!vy.call(s,r)&&r!==t&&Ja(s,r,{get:()=>e[r],enumerable:!(i=by(e,r))||i.enumerable});return s};var U=(s,e,t)=>(t=s!=null?my(Sy(s)):{},Nc(e||!s||!s.__esModule?Ja(t,"default",{value:s,enumerable:!0}):t,s)),Ty=s=>Nc(Ja({},"__esModule",{value:!0}),s);var Ce=b((Fo,Uc)=>{"use strict";var Wr=function(s){return s&&s.Math===Math&&s};Uc.exports=Wr(typeof globalThis=="object"&&globalThis)||Wr(typeof window=="object"&&window)||Wr(typeof self=="object"&&self)||Wr(typeof global=="object"&&global)||Wr(typeof Fo=="object"&&Fo)||function(){return this}()||Function("return this")()});var We=b((TM,qc)=>{"use strict";qc.exports=function(s){try{return!!s()}catch{return!0}}});var Yr=b((IM,Hc)=>{"use strict";var Iy=We();Hc.exports=!Iy(function(){var s=function(){}.bind();return typeof s!="function"||s.hasOwnProperty("prototype")})});var No=b((xM,Qc)=>{"use strict";var xy=Yr(),Gc=Function.prototype,jc=Gc.apply,zc=Gc.call;Qc.exports=typeof Reflect=="object"&&Reflect.apply||(xy?zc.bind(jc):function(){return zc.apply(jc,arguments)})});var ze=b((EM,Kc)=>{"use strict";var Wc=Yr(),Yc=Function.prototype,Uo=Yc.call,Ey=Wc&&Yc.bind.bind(Uo,Uo);Kc.exports=Wc?Ey:function(s){return function(){return Uo.apply(s,arguments)}}});var Ni=b((PM,Jc)=>{"use strict";var Xc=ze(),Py=Xc({}.toString),wy=Xc("".slice);Jc.exports=function(s){return wy(Py(s),8,-1)}});var qo=b((wM,Zc)=>{"use strict";var Ay=Ni(),ky=ze();Zc.exports=function(s){if(Ay(s)==="Function")return ky(s)}});var Me=b((AM,ed)=>{"use strict";var Ho=typeof document=="object"&&document.all;ed.exports=typeof Ho>"u"&&Ho!==void 0?function(s){return typeof s=="function"||s===Ho}:function(s){return typeof s=="function"}});var Et=b((kM,td)=>{"use strict";var Ry=We();td.exports=!Ry(function(){return Object.defineProperty({},1,{get:function(){return 7}})[1]!==7})});var Pt=b((RM,id)=>{"use strict";var Ly=Yr(),tn=Function.prototype.call;id.exports=Ly?tn.bind(tn):function(){return tn.apply(tn,arguments)}});var jo=b(ad=>{"use strict";var rd={}.propertyIsEnumerable,sd=Object.getOwnPropertyDescriptor,My=sd&&!rd.call({1:2},1);ad.f=My?function(e){var t=sd(this,e);return!!t&&t.enumerable}:rd});var Kr=b((MM,nd)=>{"use strict";nd.exports=function(s,e){return{enumerable:!(s&1),configurable:!(s&2),writable:!(s&4),value:e}}});var ud=b(($M,od)=>{"use strict";var $y=ze(),By=We(),Dy=Ni(),zo=Object,Cy=$y("".split);od.exports=By(function(){return!zo("z").propertyIsEnumerable(0)})?function(s){return Dy(s)==="String"?Cy(s,""):zo(s)}:zo});var or=b((BM,ld)=>{"use strict";ld.exports=function(s){return s==null}});var Pi=b((DM,cd)=>{"use strict";var Vy=or(),Oy=TypeError;cd.exports=function(s){if(Vy(s))throw new Oy("Can't call method on "+s);return s}});var Ui=b((CM,dd)=>{"use strict";var _y=ud(),Fy=Pi();dd.exports=function(s){return _y(Fy(s))}});var wt=b((VM,pd)=>{"use strict";var Ny=Me();pd.exports=function(s){return typeof s=="object"?s!==null:Ny(s)}});var ur=b((OM,hd)=>{"use strict";hd.exports={}});var di=b((_M,md)=>{"use strict";var Go=ur(),Qo=Ce(),Uy=Me(),fd=function(s){return Uy(s)?s:void 0};md.exports=function(s,e){return arguments.length<2?fd(Go[s])||fd(Qo[s]):Go[s]&&Go[s][e]||Qo[s]&&Qo[s][e]}});var Xr=b((FM,bd)=>{"use strict";var qy=ze();bd.exports=qy({}.isPrototypeOf)});var qi=b((NM,vd)=>{"use strict";var Hy=Ce(),gd=Hy.navigator,Sd=gd&&gd.userAgent;vd.exports=Sd?String(Sd):""});var Yo=b((UM,Pd)=>{"use strict";var Ed=Ce(),Wo=qi(),yd=Ed.process,Td=Ed.Deno,Id=yd&&yd.versions||Td&&Td.version,xd=Id&&Id.v8,Ft,rn;xd&&(Ft=xd.split("."),rn=Ft[0]>0&&Ft[0]<4?1:+(Ft[0]+Ft[1]));!rn&&Wo&&(Ft=Wo.match(/Edge\/(\d+)/),(!Ft||Ft[1]>=74)&&(Ft=Wo.match(/Chrome\/(\d+)/),Ft&&(rn=+Ft[1])));Pd.exports=rn});var Ko=b((qM,Ad)=>{"use strict";var wd=Yo(),jy=We(),zy=Ce(),Gy=zy.String;Ad.exports=!!Object.getOwnPropertySymbols&&!jy(function(){var s=Symbol("symbol detection");return!Gy(s)||!(Object(s)instanceof Symbol)||!Symbol.sham&&wd&&wd<41})});var Xo=b((HM,kd)=>{"use strict";var Qy=Ko();kd.exports=Qy&&!Symbol.sham&&typeof Symbol.iterator=="symbol"});var Jo=b((jM,Rd)=>{"use strict";var Wy=di(),Yy=Me(),Ky=Xr(),Xy=Xo(),Jy=Object;Rd.exports=Xy?function(s){return typeof s=="symbol"}:function(s){var e=Wy("Symbol");return Yy(e)&&Ky(e.prototype,Jy(s))}});var Jr=b((zM,Ld)=>{"use strict";var Zy=String;Ld.exports=function(s){try{return Zy(s)}catch{return"Object"}}});var Wt=b((GM,Md)=>{"use strict";var eT=Me(),tT=Jr(),iT=TypeError;Md.exports=function(s){if(eT(s))return s;throw new iT(tT(s)+" is not a function")}});var Zr=b((QM,$d)=>{"use strict";var rT=Wt(),sT=or();$d.exports=function(s,e){var t=s[e];return sT(t)?void 0:rT(t)}});var Dd=b((WM,Bd)=>{"use strict";var Zo=Pt(),eu=Me(),tu=wt(),aT=TypeError;Bd.exports=function(s,e){var t,i;if(e==="string"&&eu(t=s.toString)&&!tu(i=Zo(t,s))||eu(t=s.valueOf)&&!tu(i=Zo(t,s))||e!=="string"&&eu(t=s.toString)&&!tu(i=Zo(t,s)))return i;throw new aT("Can't convert object to primitive value")}});var Nt=b((YM,Cd)=>{"use strict";Cd.exports=!0});var _d=b((KM,Od)=>{"use strict";var Vd=Ce(),nT=Object.defineProperty;Od.exports=function(s,e){try{nT(Vd,s,{value:e,configurable:!0,writable:!0})}catch{Vd[s]=e}return e}});var es=b((XM,Ud)=>{"use strict";var oT=Nt(),uT=Ce(),lT=_d(),Fd="__core-js_shared__",Nd=Ud.exports=uT[Fd]||lT(Fd,{});(Nd.versions||(Nd.versions=[])).push({version:"3.38.0",mode:oT?"pure":"global",copyright:"\xA9 2014-2024 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.38.0/LICENSE",source:"https://github.com/zloirock/core-js"})});var iu=b((JM,Hd)=>{"use strict";var qd=es();Hd.exports=function(s,e){return qd[s]||(qd[s]=e||{})}});var lr=b((ZM,jd)=>{"use strict";var cT=Pi(),dT=Object;jd.exports=function(s){return dT(cT(s))}});var Ut=b((e$,zd)=>{"use strict";var pT=ze(),hT=lr(),fT=pT({}.hasOwnProperty);zd.exports=Object.hasOwn||function(e,t){return fT(hT(e),t)}});var ru=b((t$,Gd)=>{"use strict";var mT=ze(),bT=0,gT=Math.random(),ST=mT(1 .toString);Gd.exports=function(s){return"Symbol("+(s===void 0?"":s)+")_"+ST(++bT+gT,36)}});var Ye=b((i$,Wd)=>{"use strict";var vT=Ce(),yT=iu(),Qd=Ut(),TT=ru(),IT=Ko(),xT=Xo(),cr=vT.Symbol,su=yT("wks"),ET=xT?cr.for||cr:cr&&cr.withoutSetter||TT;Wd.exports=function(s){return Qd(su,s)||(su[s]=IT&&Qd(cr,s)?cr[s]:ET("Symbol."+s)),su[s]}});var Jd=b((r$,Xd)=>{"use strict";var PT=Pt(),Yd=wt(),Kd=Jo(),wT=Zr(),AT=Dd(),kT=Ye(),RT=TypeError,LT=kT("toPrimitive");Xd.exports=function(s,e){if(!Yd(s)||Kd(s))return s;var t=wT(s,LT),i;if(t){if(e===void 0&&(e="default"),i=PT(t,s,e),!Yd(i)||Kd(i))return i;throw new RT("Can't convert object to primitive value")}return e===void 0&&(e="number"),AT(s,e)}});var au=b((s$,Zd)=>{"use strict";var MT=Jd(),$T=Jo();Zd.exports=function(s){var e=MT(s,"string");return $T(e)?e:e+""}});var sn=b((a$,tp)=>{"use strict";var BT=Ce(),ep=wt(),nu=BT.document,DT=ep(nu)&&ep(nu.createElement);tp.exports=function(s){return DT?nu.createElement(s):{}}});var ou=b((n$,ip)=>{"use strict";var CT=Et(),VT=We(),OT=sn();ip.exports=!CT&&!VT(function(){return Object.defineProperty(OT("div"),"a",{get:function(){return 7}}).a!==7})});var ap=b(sp=>{"use strict";var _T=Et(),FT=Pt(),NT=jo(),UT=Kr(),qT=Ui(),HT=au(),jT=Ut(),zT=ou(),rp=Object.getOwnPropertyDescriptor;sp.f=_T?rp:function(e,t){if(e=qT(e),t=HT(t),zT)try{return rp(e,t)}catch{}if(jT(e,t))return UT(!FT(NT.f,e,t),e[t])}});var uu=b((u$,np)=>{"use strict";var GT=We(),QT=Me(),WT=/#|\.prototype\./,ts=function(s,e){var t=KT[YT(s)];return t===JT?!0:t===XT?!1:QT(e)?GT(e):!!e},YT=ts.normalize=function(s){return String(s).replace(WT,".").toLowerCase()},KT=ts.data={},XT=ts.NATIVE="N",JT=ts.POLYFILL="P";np.exports=ts});var dr=b((l$,up)=>{"use strict";var op=qo(),ZT=Wt(),eI=Yr(),tI=op(op.bind);up.exports=function(s,e){return ZT(s),e===void 0?s:eI?tI(s,e):function(){return s.apply(e,arguments)}}});var lu=b((c$,lp)=>{"use strict";var iI=Et(),rI=We();lp.exports=iI&&rI(function(){return Object.defineProperty(function(){},"prototype",{value:42,writable:!1}).prototype!==42})});var Yt=b((d$,cp)=>{"use strict";var sI=wt(),aI=String,nI=TypeError;cp.exports=function(s){if(sI(s))return s;throw new nI(aI(s)+" is not an object")}});var Hi=b(pp=>{"use strict";var oI=Et(),uI=ou(),lI=lu(),an=Yt(),dp=au(),cI=TypeError,cu=Object.defineProperty,dI=Object.getOwnPropertyDescriptor,du="enumerable",pu="configurable",hu="writable";pp.f=oI?lI?function(e,t,i){if(an(e),t=dp(t),an(i),typeof e=="function"&&t==="prototype"&&"value"in i&&hu in i&&!i[hu]){var r=dI(e,t);r&&r[hu]&&(e[t]=i.value,i={configurable:pu in i?i[pu]:r[pu],enumerable:du in i?i[du]:r[du],writable:!1})}return cu(e,t,i)}:cu:function(e,t,i){if(an(e),t=dp(t),an(i),uI)try{return cu(e,t,i)}catch{}if("get"in i||"set"in i)throw new cI("Accessors not supported");return"value"in i&&(e[t]=i.value),e}});var pr=b((h$,hp)=>{"use strict";var pI=Et(),hI=Hi(),fI=Kr();hp.exports=pI?function(s,e,t){return hI.f(s,e,fI(1,t))}:function(s,e,t){return s[e]=t,s}});var _e=b((f$,mp)=>{"use strict";var is=Ce(),mI=No(),bI=qo(),gI=Me(),SI=ap().f,vI=uu(),hr=ur(),yI=dr(),fr=pr(),fp=Ut();es();var TI=function(s){var e=function(t,i,r){if(this instanceof e){switch(arguments.length){case 0:return new s;case 1:return new s(t);case 2:return new s(t,i)}return new s(t,i,r)}return mI(s,this,arguments)};return e.prototype=s.prototype,e};mp.exports=function(s,e){var t=s.target,i=s.global,r=s.stat,a=s.proto,n=i?is:r?is[t]:is[t]&&is[t].prototype,o=i?hr:hr[t]||fr(hr,t,{})[t],u=o.prototype,l,c,p,d,h,m,g,y,T;for(d in e)l=vI(i?d:t+(r?".":"#")+d,s.forced),c=!l&&n&&fp(n,d),m=o[d],c&&(s.dontCallGetSet?(T=SI(n,d),g=T&&T.value):g=n[d]),h=c&&g?g:e[d],!(!l&&!a&&typeof m==typeof h)&&(s.bind&&c?y=yI(h,is):s.wrap&&c?y=TI(h):a&&gI(h)?y=bI(h):y=h,(s.sham||h&&h.sham||m&&m.sham)&&fr(y,"sham",!0),fr(o,d,y),a&&(p=t+"Prototype",fp(hr,p)||fr(hr,p,{}),fr(hr[p],d,h),s.real&&u&&(l||!u[d])&&fr(u,d,h)))}});var gp=b((m$,bp)=>{"use strict";var II=Math.ceil,xI=Math.floor;bp.exports=Math.trunc||function(e){var t=+e;return(t>0?xI:II)(t)}});var rs=b((b$,Sp)=>{"use strict";var EI=gp();Sp.exports=function(s){var e=+s;return e!==e||e===0?0:EI(e)}});var yp=b((g$,vp)=>{"use strict";var PI=rs(),wI=Math.max,AI=Math.min;vp.exports=function(s,e){var t=PI(s);return t<0?wI(t+e,0):AI(t,e)}});var fu=b((S$,Tp)=>{"use strict";var kI=rs(),RI=Math.min;Tp.exports=function(s){var e=kI(s);return e>0?RI(e,9007199254740991):0}});var mr=b((v$,Ip)=>{"use strict";var LI=fu();Ip.exports=function(s){return LI(s.length)}});var mu=b((y$,Ep)=>{"use strict";var MI=Ui(),$I=yp(),BI=mr(),xp=function(s){return function(e,t,i){var r=MI(e),a=BI(r);if(a===0)return!s&&-1;var n=$I(i,a),o;if(s&&t!==t){for(;a>n;)if(o=r[n++],o!==o)return!0}else for(;a>n;n++)if((s||n in r)&&r[n]===t)return s||n||0;return!s&&-1}};Ep.exports={includes:xp(!0),indexOf:xp(!1)}});var ss=b((T$,Pp)=>{"use strict";Pp.exports=function(){}});var wp=b(()=>{"use strict";var DI=_e(),CI=mu().includes,VI=We(),OI=ss(),_I=VI(function(){return!Array(1).includes()});DI({target:"Array",proto:!0,forced:_I},{includes:function(e){return CI(this,e,arguments.length>1?arguments[1]:void 0)}});OI("includes")});var wi=b((E$,Ap)=>{"use strict";var FI=di();Ap.exports=FI});var Rp=b((P$,kp)=>{"use strict";wp();var NI=wi();kp.exports=NI("Array","includes")});var Mp=b((w$,Lp)=>{"use strict";var UI=Rp();Lp.exports=UI});var At=b((A$,$p)=>{"use strict";var qI=Mp();$p.exports=qI});var on=b((_$,Cp)=>{"use strict";var jI=iu(),zI=ru(),Dp=jI("keys");Cp.exports=function(s){return Dp[s]||(Dp[s]=zI(s))}});var Op=b((F$,Vp)=>{"use strict";var GI=We();Vp.exports=!GI(function(){function s(){}return s.prototype.constructor=null,Object.getPrototypeOf(new s)!==s.prototype})});var un=b((N$,Fp)=>{"use strict";var QI=Ut(),WI=Me(),YI=lr(),KI=on(),XI=Op(),_p=KI("IE_PROTO"),bu=Object,JI=bu.prototype;Fp.exports=XI?bu.getPrototypeOf:function(s){var e=YI(s);if(QI(e,_p))return e[_p];var t=e.constructor;return WI(t)&&e instanceof t?t.prototype:e instanceof bu?JI:null}});var ln=b((U$,Np)=>{"use strict";Np.exports={}});var Hp=b((q$,qp)=>{"use strict";var ZI=ze(),gu=Ut(),ex=Ui(),tx=mu().indexOf,ix=ln(),Up=ZI([].push);qp.exports=function(s,e){var t=ex(s),i=0,r=[],a;for(a in t)!gu(ix,a)&&gu(t,a)&&Up(r,a);for(;e.length>i;)gu(t,a=e[i++])&&(~tx(r,a)||Up(r,a));return r}});var Su=b((H$,jp)=>{"use strict";jp.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]});var vu=b((j$,zp)=>{"use strict";var rx=Hp(),sx=Su();zp.exports=Object.keys||function(e){return rx(e,sx)}});var yu=b((z$,Kp)=>{"use strict";var Qp=Et(),ax=We(),Wp=ze(),nx=un(),ox=vu(),ux=Ui(),lx=jo().f,Yp=Wp(lx),cx=Wp([].push),dx=Qp&&ax(function(){var s=Object.create(null);return s[2]=2,!Yp(s,2)}),Gp=function(s){return function(e){for(var t=ux(e),i=ox(t),r=dx&&nx(t)===null,a=i.length,n=0,o=[],u;a>n;)u=i[n++],(!Qp||(r?u in t:Yp(t,u)))&&cx(o,s?[u,t[u]]:t[u]);return o}};Kp.exports={entries:Gp(!0),values:Gp(!1)}});var Xp=b(()=>{"use strict";var px=_e(),hx=yu().entries;px({target:"Object",stat:!0},{entries:function(e){return hx(e)}})});var Zp=b((W$,Jp)=>{"use strict";Xp();var fx=ur();Jp.exports=fx.Object.entries});var th=b((Y$,eh)=>{"use strict";var mx=Zp();eh.exports=mx});var ji=b((K$,ih)=>{"use strict";var bx=th();ih.exports=bx});var zi=b((X$,rh)=>{"use strict";rh.exports={}});var nh=b((J$,ah)=>{"use strict";var gx=Ce(),Sx=Me(),sh=gx.WeakMap;ah.exports=Sx(sh)&&/native code/.test(String(sh))});var Eu=b((Z$,lh)=>{"use strict";var vx=nh(),uh=Ce(),yx=wt(),Tx=pr(),Tu=Ut(),Iu=es(),Ix=on(),xx=ln(),oh="Object already initialized",xu=uh.TypeError,Ex=uh.WeakMap,cn,as,dn,Px=function(s){return dn(s)?as(s):cn(s,{})},wx=function(s){return function(e){var t;if(!yx(e)||(t=as(e)).type!==s)throw new xu("Incompatible receiver, "+s+" required");return t}};vx||Iu.state?(qt=Iu.state||(Iu.state=new Ex),qt.get=qt.get,qt.has=qt.has,qt.set=qt.set,cn=function(s,e){if(qt.has(s))throw new xu(oh);return e.facade=s,qt.set(s,e),e},as=function(s){return qt.get(s)||{}},dn=function(s){return qt.has(s)}):(Gi=Ix("state"),xx[Gi]=!0,cn=function(s,e){if(Tu(s,Gi))throw new xu(oh);return e.facade=s,Tx(s,Gi,e),e},as=function(s){return Tu(s,Gi)?s[Gi]:{}},dn=function(s){return Tu(s,Gi)});var qt,Gi;lh.exports={set:cn,get:as,has:dn,enforce:Px,getterFor:wx}});var Au=b((e0,dh)=>{"use strict";var Pu=Et(),Ax=Ut(),ch=Function.prototype,kx=Pu&&Object.getOwnPropertyDescriptor,wu=Ax(ch,"name"),Rx=wu&&function(){}.name==="something",Lx=wu&&(!Pu||Pu&&kx(ch,"name").configurable);dh.exports={EXISTS:wu,PROPER:Rx,CONFIGURABLE:Lx}});var hh=b(ph=>{"use strict";var Mx=Et(),$x=lu(),Bx=Hi(),Dx=Yt(),Cx=Ui(),Vx=vu();ph.f=Mx&&!$x?Object.defineProperties:function(e,t){Dx(e);for(var i=Cx(t),r=Vx(t),a=r.length,n=0,o;a>n;)Bx.f(e,o=r[n++],i[o]);return e}});var ku=b((i0,fh)=>{"use strict";var Ox=di();fh.exports=Ox("document","documentElement")});var $u=b((r0,Th)=>{"use strict";var _x=Yt(),Fx=hh(),mh=Su(),Nx=ln(),Ux=ku(),qx=sn(),Hx=on(),bh=">",gh="<",Lu="prototype",Mu="script",vh=Hx("IE_PROTO"),Ru=function(){},yh=function(s){return gh+Mu+bh+s+gh+"/"+Mu+bh},Sh=function(s){s.write(yh("")),s.close();var e=s.parentWindow.Object;return s=null,e},jx=function(){var s=qx("iframe"),e="java"+Mu+":",t;return s.style.display="none",Ux.appendChild(s),s.src=String(e),t=s.contentWindow.document,t.open(),t.write(yh("document.F=Object")),t.close(),t.F},pn,hn=function(){try{pn=new ActiveXObject("htmlfile")}catch{}hn=typeof document<"u"?document.domain&&pn?Sh(pn):jx():Sh(pn);for(var s=mh.length;s--;)delete hn[Lu][mh[s]];return hn()};Nx[vh]=!0;Th.exports=Object.create||function(e,t){var i;return e!==null?(Ru[Lu]=_x(e),i=new Ru,Ru[Lu]=null,i[vh]=e):i=hn(),t===void 0?i:Fx.f(i,t)}});var br=b((s0,Ih)=>{"use strict";var zx=pr();Ih.exports=function(s,e,t,i){return i&&i.enumerable?s[e]=t:zx(s,e,t),s}});var Vu=b((a0,Ph)=>{"use strict";var Gx=We(),Qx=Me(),Wx=wt(),Yx=$u(),xh=un(),Kx=br(),Xx=Ye(),Jx=Nt(),Cu=Xx("iterator"),Eh=!1,pi,Bu,Du;[].keys&&(Du=[].keys(),"next"in Du?(Bu=xh(xh(Du)),Bu!==Object.prototype&&(pi=Bu)):Eh=!0);var Zx=!Wx(pi)||Gx(function(){var s={};return pi[Cu].call(s)!==s});Zx?pi={}:Jx&&(pi=Yx(pi));Qx(pi[Cu])||Kx(pi,Cu,function(){return this});Ph.exports={IteratorPrototype:pi,BUGGY_SAFARI_ITERATORS:Eh}});var fn=b((n0,Ah)=>{"use strict";var eE=Ye(),tE=eE("toStringTag"),wh={};wh[tE]="z";Ah.exports=String(wh)==="[object z]"});var ns=b((o0,kh)=>{"use strict";var iE=fn(),rE=Me(),mn=Ni(),sE=Ye(),aE=sE("toStringTag"),nE=Object,oE=mn(function(){return arguments}())==="Arguments",uE=function(s,e){try{return s[e]}catch{}};kh.exports=iE?mn:function(s){var e,t,i;return s===void 0?"Undefined":s===null?"Null":typeof(t=uE(e=nE(s),aE))=="string"?t:oE?mn(e):(i=mn(e))==="Object"&&rE(e.callee)?"Arguments":i}});var Lh=b((u0,Rh)=>{"use strict";var lE=fn(),cE=ns();Rh.exports=lE?{}.toString:function(){return"[object "+cE(this)+"]"}});var os=b((l0,$h)=>{"use strict";var dE=fn(),pE=Hi().f,hE=pr(),fE=Ut(),mE=Lh(),bE=Ye(),Mh=bE("toStringTag");$h.exports=function(s,e,t,i){var r=t?s:s&&s.prototype;r&&(fE(r,Mh)||pE(r,Mh,{configurable:!0,value:e}),i&&!dE&&hE(r,"toString",mE))}});var Dh=b((c0,Bh)=>{"use strict";var gE=Vu().IteratorPrototype,SE=$u(),vE=Kr(),yE=os(),TE=zi(),IE=function(){return this};Bh.exports=function(s,e,t,i){var r=e+" Iterator";return s.prototype=SE(gE,{next:vE(+!i,t)}),yE(s,r,!1,!0),TE[r]=IE,s}});var Vh=b((d0,Ch)=>{"use strict";var xE=ze(),EE=Wt();Ch.exports=function(s,e,t){try{return xE(EE(Object.getOwnPropertyDescriptor(s,e)[t]))}catch{}}});var _h=b((p0,Oh)=>{"use strict";var PE=wt();Oh.exports=function(s){return PE(s)||s===null}});var Nh=b((h0,Fh)=>{"use strict";var wE=_h(),AE=String,kE=TypeError;Fh.exports=function(s){if(wE(s))return s;throw new kE("Can't set "+AE(s)+" as a prototype")}});var Ou=b((f0,Uh)=>{"use strict";var RE=Vh(),LE=wt(),ME=Pi(),$E=Nh();Uh.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var s=!1,e={},t;try{t=RE(Object.prototype,"__proto__","set"),t(e,[]),s=e instanceof Array}catch{}return function(r,a){return ME(r),$E(a),LE(r)&&(s?t(r,a):r.__proto__=a),r}}():void 0)});var Jh=b((m0,Xh)=>{"use strict";var BE=_e(),DE=Pt(),bn=Nt(),Yh=Au(),CE=Me(),VE=Dh(),qh=un(),Hh=Ou(),OE=os(),_E=pr(),_u=br(),FE=Ye(),jh=zi(),Kh=Vu(),NE=Yh.PROPER,UE=Yh.CONFIGURABLE,zh=Kh.IteratorPrototype,gn=Kh.BUGGY_SAFARI_ITERATORS,us=FE("iterator"),Gh="keys",ls="values",Qh="entries",Wh=function(){return this};Xh.exports=function(s,e,t,i,r,a,n){VE(t,e,i);var o=function(T){if(T===r&&d)return d;if(!gn&&T&&T in c)return c[T];switch(T){case Gh:return function(){return new t(this,T)};case ls:return function(){return new t(this,T)};case Qh:return function(){return new t(this,T)}}return function(){return new t(this)}},u=e+" Iterator",l=!1,c=s.prototype,p=c[us]||c["@@iterator"]||r&&c[r],d=!gn&&p||o(r),h=e==="Array"&&c.entries||p,m,g,y;if(h&&(m=qh(h.call(new s)),m!==Object.prototype&&m.next&&(!bn&&qh(m)!==zh&&(Hh?Hh(m,zh):CE(m[us])||_u(m,us,Wh)),OE(m,u,!0,!0),bn&&(jh[u]=Wh))),NE&&r===ls&&p&&p.name!==ls&&(!bn&&UE?_E(c,"name",ls):(l=!0,d=function(){return DE(p,this)})),r)if(g={values:o(ls),keys:a?d:o(Gh),entries:o(Qh)},n)for(y in g)(gn||l||!(y in c))&&_u(c,y,g[y]);else BE({target:e,proto:!0,forced:gn||l},g);return(!bn||n)&&c[us]!==d&&_u(c,us,d,{name:r}),jh[e]=d,g}});var ef=b((b0,Zh)=>{"use strict";Zh.exports=function(s,e){return{value:s,done:e}}});var Nu=b((g0,nf)=>{"use strict";var qE=Ui(),Fu=ss(),tf=zi(),sf=Eu(),HE=Hi().f,jE=Jh(),Sn=ef(),zE=Nt(),GE=Et(),af="Array Iterator",QE=sf.set,WE=sf.getterFor(af);nf.exports=jE(Array,"Array",function(s,e){QE(this,{type:af,target:qE(s),index:0,kind:e})},function(){var s=WE(this),e=s.target,t=s.index++;if(!e||t>=e.length)return s.target=void 0,Sn(void 0,!0);switch(s.kind){case"keys":return Sn(t,!1);case"values":return Sn(e[t],!1)}return Sn([t,e[t]],!1)},"values");var rf=tf.Arguments=tf.Array;Fu("keys");Fu("values");Fu("entries");if(!zE&&GE&&rf.name!=="values")try{HE(rf,"name",{value:"values"})}catch{}});var uf=b((S0,of)=>{"use strict";var YE=Ye(),KE=zi(),XE=YE("iterator"),JE=Array.prototype;of.exports=function(s){return s!==void 0&&(KE.Array===s||JE[XE]===s)}});var Uu=b((v0,cf)=>{"use strict";var ZE=ns(),lf=Zr(),eP=or(),tP=zi(),iP=Ye(),rP=iP("iterator");cf.exports=function(s){if(!eP(s))return lf(s,rP)||lf(s,"@@iterator")||tP[ZE(s)]}});var pf=b((y0,df)=>{"use strict";var sP=Pt(),aP=Wt(),nP=Yt(),oP=Jr(),uP=Uu(),lP=TypeError;df.exports=function(s,e){var t=arguments.length<2?uP(s):e;if(aP(t))return nP(sP(t,s));throw new lP(oP(s)+" is not iterable")}});var mf=b((T0,ff)=>{"use strict";var cP=Pt(),hf=Yt(),dP=Zr();ff.exports=function(s,e,t){var i,r;hf(s);try{if(i=dP(s,"return"),!i){if(e==="throw")throw t;return t}i=cP(i,s)}catch(a){r=!0,i=a}if(e==="throw")throw t;if(r)throw i;return hf(i),t}});var yn=b((I0,vf)=>{"use strict";var pP=dr(),hP=Pt(),fP=Yt(),mP=Jr(),bP=uf(),gP=mr(),bf=Xr(),SP=pf(),vP=Uu(),gf=mf(),yP=TypeError,vn=function(s,e){this.stopped=s,this.result=e},Sf=vn.prototype;vf.exports=function(s,e,t){var i=t&&t.that,r=!!(t&&t.AS_ENTRIES),a=!!(t&&t.IS_RECORD),n=!!(t&&t.IS_ITERATOR),o=!!(t&&t.INTERRUPTED),u=pP(e,i),l,c,p,d,h,m,g,y=function(A){return l&&gf(l,"normal",A),new vn(!0,A)},T=function(A){return r?(fP(A),o?u(A[0],A[1],y):u(A[0],A[1])):o?u(A,y):u(A)};if(a)l=s.iterator;else if(n)l=s;else{if(c=vP(s),!c)throw new yP(mP(s)+" is not iterable");if(bP(c)){for(p=0,d=gP(s);d>p;p++)if(h=T(s[p]),h&&bf(Sf,h))return h;return new vn(!1)}l=SP(s,c)}for(m=a?s.next:l.next;!(g=hP(m,l)).done;){try{h=T(g.value)}catch(A){gf(l,"throw",A)}if(typeof h=="object"&&h&&bf(Sf,h))return h}return new vn(!1)}});var Tf=b((x0,yf)=>{"use strict";var TP=Et(),IP=Hi(),xP=Kr();yf.exports=function(s,e,t){TP?IP.f(s,e,xP(0,t)):s[e]=t}});var If=b(()=>{"use strict";var EP=_e(),PP=yn(),wP=Tf();EP({target:"Object",stat:!0},{fromEntries:function(e){var t={};return PP(e,function(i,r){wP(t,i,r)},{AS_ENTRIES:!0}),t}})});var Ef=b((w0,xf)=>{"use strict";Nu();If();var AP=ur();xf.exports=AP.Object.fromEntries});var wf=b((A0,Pf)=>{"use strict";Pf.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}});var kf=b(()=>{"use strict";Nu();var kP=wf(),RP=Ce(),LP=os(),Af=zi();for(Tn in kP)LP(RP[Tn],Tn),Af[Tn]=Af.Array;var Tn});var Lf=b((L0,Rf)=>{"use strict";var MP=Ef();kf();Rf.exports=MP});var qu=b((M0,Mf)=>{"use strict";var $P=Lf();Mf.exports=$P});var $f=b(()=>{"use strict"});var Hu=b((D0,Bf)=>{"use strict";var cs=Ce(),BP=qi(),DP=Ni(),In=function(s){return BP.slice(0,s.length)===s};Bf.exports=function(){return In("Bun/")?"BUN":In("Cloudflare-Workers")?"CLOUDFLARE":In("Deno/")?"DENO":In("Node.js/")?"NODE":cs.Bun&&typeof Bun.version=="string"?"BUN":cs.Deno&&typeof Deno.version=="object"?"DENO":DP(cs.process)==="process"?"NODE":cs.window&&cs.document?"BROWSER":"REST"}()});var xn=b((C0,Df)=>{"use strict";var CP=Hu();Df.exports=CP==="NODE"});var Vf=b((V0,Cf)=>{"use strict";var VP=Hi();Cf.exports=function(s,e,t){return VP.f(s,e,t)}});var Ff=b((O0,_f)=>{"use strict";var OP=di(),_P=Vf(),FP=Ye(),NP=Et(),Of=FP("species");_f.exports=function(s){var e=OP(s);NP&&e&&!e[Of]&&_P(e,Of,{configurable:!0,get:function(){return this}})}});var Uf=b((_0,Nf)=>{"use strict";var UP=Xr(),qP=TypeError;Nf.exports=function(s,e){if(UP(e,s))return s;throw new qP("Incorrect invocation")}});var zu=b((F0,qf)=>{"use strict";var HP=ze(),jP=Me(),ju=es(),zP=HP(Function.toString);jP(ju.inspectSource)||(ju.inspectSource=function(s){return zP(s)});qf.exports=ju.inspectSource});var Qu=b((N0,Qf)=>{"use strict";var GP=ze(),QP=We(),Hf=Me(),WP=ns(),YP=di(),KP=zu(),jf=function(){},zf=YP("Reflect","construct"),Gu=/^\s*(?:class|function)\b/,XP=GP(Gu.exec),JP=!Gu.test(jf),ds=function(e){if(!Hf(e))return!1;try{return zf(jf,[],e),!0}catch{return!1}},Gf=function(e){if(!Hf(e))return!1;switch(WP(e)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return JP||!!XP(Gu,KP(e))}catch{return!0}};Gf.sham=!0;Qf.exports=!zf||QP(function(){var s;return ds(ds.call)||!ds(Object)||!ds(function(){s=!0})||s})?Gf:ds});var Yf=b((U0,Wf)=>{"use strict";var ZP=Qu(),ew=Jr(),tw=TypeError;Wf.exports=function(s){if(ZP(s))return s;throw new tw(ew(s)+" is not a constructor")}});var Wu=b((q0,Xf)=>{"use strict";var Kf=Yt(),iw=Yf(),rw=or(),sw=Ye(),aw=sw("species");Xf.exports=function(s,e){var t=Kf(s).constructor,i;return t===void 0||rw(i=Kf(t)[aw])?e:iw(i)}});var Zf=b((H0,Jf)=>{"use strict";var nw=ze();Jf.exports=nw([].slice)});var tm=b((j0,em)=>{"use strict";var ow=TypeError;em.exports=function(s,e){if(s<e)throw new ow("Not enough arguments");return s}});var Yu=b((z0,im)=>{"use strict";var uw=qi();im.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(uw)});var sl=b((G0,dm)=>{"use strict";var kt=Ce(),lw=No(),cw=dr(),rm=Me(),dw=Ut(),cm=We(),sm=ku(),pw=Zf(),am=sn(),hw=tm(),fw=Yu(),mw=xn(),tl=kt.setImmediate,il=kt.clearImmediate,bw=kt.process,Ku=kt.Dispatch,gw=kt.Function,nm=kt.MessageChannel,Sw=kt.String,Xu=0,ps={},om="onreadystatechange",hs,Qi,Ju,Zu;cm(function(){hs=kt.location});var rl=function(s){if(dw(ps,s)){var e=ps[s];delete ps[s],e()}},el=function(s){return function(){rl(s)}},um=function(s){rl(s.data)},lm=function(s){kt.postMessage(Sw(s),hs.protocol+"//"+hs.host)};(!tl||!il)&&(tl=function(e){hw(arguments.length,1);var t=rm(e)?e:gw(e),i=pw(arguments,1);return ps[++Xu]=function(){lw(t,void 0,i)},Qi(Xu),Xu},il=function(e){delete ps[e]},mw?Qi=function(s){bw.nextTick(el(s))}:Ku&&Ku.now?Qi=function(s){Ku.now(el(s))}:nm&&!fw?(Ju=new nm,Zu=Ju.port2,Ju.port1.onmessage=um,Qi=cw(Zu.postMessage,Zu)):kt.addEventListener&&rm(kt.postMessage)&&!kt.importScripts&&hs&&hs.protocol!=="file:"&&!cm(lm)?(Qi=lm,kt.addEventListener("message",um,!1)):om in am("script")?Qi=function(s){sm.appendChild(am("script"))[om]=function(){sm.removeChild(this),rl(s)}}:Qi=function(s){setTimeout(el(s),0)});dm.exports={set:tl,clear:il}});var fm=b((Q0,hm)=>{"use strict";var pm=Ce(),vw=Et(),yw=Object.getOwnPropertyDescriptor;hm.exports=function(s){if(!vw)return pm[s];var e=yw(pm,s);return e&&e.value}});var al=b((W0,bm)=>{"use strict";var mm=function(){this.head=null,this.tail=null};mm.prototype={add:function(s){var e={item:s,next:null},t=this.tail;t?t.next=e:this.head=e,this.tail=e},get:function(){var s=this.head;if(s){var e=this.head=s.next;return e===null&&(this.tail=null),s.item}}};bm.exports=mm});var Sm=b((Y0,gm)=>{"use strict";var Tw=qi();gm.exports=/ipad|iphone|ipod/i.test(Tw)&&typeof Pebble<"u"});var ym=b((K0,vm)=>{"use strict";var Iw=qi();vm.exports=/web0s(?!.*chrome)/i.test(Iw)});var Am=b((X0,wm)=>{"use strict";var Sr=Ce(),xw=fm(),Tm=dr(),nl=sl().set,Ew=al(),Pw=Yu(),ww=Sm(),Aw=ym(),ol=xn(),Im=Sr.MutationObserver||Sr.WebKitMutationObserver,xm=Sr.document,Em=Sr.process,En=Sr.Promise,cl=xw("queueMicrotask"),gr,ul,ll,Pn,Pm;cl||(fs=new Ew,ms=function(){var s,e;for(ol&&(s=Em.domain)&&s.exit();e=fs.get();)try{e()}catch(t){throw fs.head&&gr(),t}s&&s.enter()},!Pw&&!ol&&!Aw&&Im&&xm?(ul=!0,ll=xm.createTextNode(""),new Im(ms).observe(ll,{characterData:!0}),gr=function(){ll.data=ul=!ul}):!ww&&En&&En.resolve?(Pn=En.resolve(void 0),Pn.constructor=En,Pm=Tm(Pn.then,Pn),gr=function(){Pm(ms)}):ol?gr=function(){Em.nextTick(ms)}:(nl=Tm(nl,Sr),gr=function(){nl(ms)}),cl=function(s){fs.head||gr(),fs.add(s)});var fs,ms;wm.exports=cl});var Rm=b((J0,km)=>{"use strict";km.exports=function(s,e){try{arguments.length===1?console.error(s):console.error(s,e)}catch{}}});var wn=b((Z0,Lm)=>{"use strict";Lm.exports=function(s){try{return{error:!1,value:s()}}catch(e){return{error:!0,value:e}}}});var Wi=b((eB,Mm)=>{"use strict";var kw=Ce();Mm.exports=kw.Promise});var vr=b((tB,Cm)=>{"use strict";var Rw=Ce(),bs=Wi(),Lw=Me(),Mw=uu(),$w=zu(),Bw=Ye(),$m=Hu(),Dw=Nt(),dl=Yo(),Bm=bs&&bs.prototype,Cw=Bw("species"),pl=!1,Dm=Lw(Rw.PromiseRejectionEvent),Vw=Mw("Promise",function(){var s=$w(bs),e=s!==String(bs);if(!e&&dl===66||Dw&&!(Bm.catch&&Bm.finally))return!0;if(!dl||dl<51||!/native code/.test(s)){var t=new bs(function(a){a(1)}),i=function(a){a(function(){},function(){})},r=t.constructor={};if(r[Cw]=i,pl=t.then(function(){})instanceof i,!pl)return!0}return!e&&($m==="BROWSER"||$m==="DENO")&&!Dm});Cm.exports={CONSTRUCTOR:Vw,REJECTION_EVENT:Dm,SUBCLASSING:pl}});var yr=b((iB,Om)=>{"use strict";var Vm=Wt(),Ow=TypeError,_w=function(s){var e,t;this.promise=new s(function(i,r){if(e!==void 0||t!==void 0)throw new Ow("Bad Promise constructor");e=i,t=r}),this.resolve=Vm(e),this.reject=Vm(t)};Om.exports.f=function(s){return new _w(s)}});var ib=b(()=>{"use strict";var Fw=_e(),Nw=Nt(),Ln=xn(),Ai=Ce(),Er=Pt(),_m=br(),Fm=Ou(),Uw=os(),qw=Ff(),Hw=Wt(),Rn=Me(),jw=wt(),zw=Uf(),Gw=Wu(),jm=sl().set,gl=Am(),Qw=Rm(),Ww=wn(),Yw=al(),zm=Eu(),Mn=Wi(),Sl=vr(),Gm=yr(),$n="Promise",Qm=Sl.CONSTRUCTOR,Kw=Sl.REJECTION_EVENT,Xw=Sl.SUBCLASSING,hl=zm.getterFor($n),Jw=zm.set,Tr=Mn&&Mn.prototype,Yi=Mn,An=Tr,Wm=Ai.TypeError,fl=Ai.document,vl=Ai.process,ml=Gm.f,Zw=ml,eA=!!(fl&&fl.createEvent&&Ai.dispatchEvent),Ym="unhandledrejection",tA="rejectionhandled",Nm=0,Km=1,iA=2,yl=1,Xm=2,kn,Um,rA,qm,Jm=function(s){var e;return jw(s)&&Rn(e=s.then)?e:!1},Zm=function(s,e){var t=e.value,i=e.state===Km,r=i?s.ok:s.fail,a=s.resolve,n=s.reject,o=s.domain,u,l,c;try{r?(i||(e.rejection===Xm&&aA(e),e.rejection=yl),r===!0?u=t:(o&&o.enter(),u=r(t),o&&(o.exit(),c=!0)),u===s.promise?n(new Wm("Promise-chain cycle")):(l=Jm(u))?Er(l,u,a,n):a(u)):n(t)}catch(p){o&&!c&&o.exit(),n(p)}},eb=function(s,e){s.notified||(s.notified=!0,gl(function(){for(var t=s.reactions,i;i=t.get();)Zm(i,s);s.notified=!1,e&&!s.rejection&&sA(s)}))},tb=function(s,e,t){var i,r;eA?(i=fl.createEvent("Event"),i.promise=e,i.reason=t,i.initEvent(s,!1,!0),Ai.dispatchEvent(i)):i={promise:e,reason:t},!Kw&&(r=Ai["on"+s])?r(i):s===Ym&&Qw("Unhandled promise rejection",t)},sA=function(s){Er(jm,Ai,function(){var e=s.facade,t=s.value,i=Hm(s),r;if(i&&(r=Ww(function(){Ln?vl.emit("unhandledRejection",t,e):tb(Ym,e,t)}),s.rejection=Ln||Hm(s)?Xm:yl,r.error))throw r.value})},Hm=function(s){return s.rejection!==yl&&!s.parent},aA=function(s){Er(jm,Ai,function(){var e=s.facade;Ln?vl.emit("rejectionHandled",e):tb(tA,e,s.value)})},Ir=function(s,e,t){return function(i){s(e,i,t)}},xr=function(s,e,t){s.done||(s.done=!0,t&&(s=t),s.value=e,s.state=iA,eb(s,!0))},bl=function(s,e,t){if(!s.done){s.done=!0,t&&(s=t);try{if(s.facade===e)throw new Wm("Promise can't be resolved itself");var i=Jm(e);i?gl(function(){var r={done:!1};try{Er(i,e,Ir(bl,r,s),Ir(xr,r,s))}catch(a){xr(r,a,s)}}):(s.value=e,s.state=Km,eb(s,!1))}catch(r){xr({done:!1},r,s)}}};if(Qm&&(Yi=function(e){zw(this,An),Hw(e),Er(kn,this);var t=hl(this);try{e(Ir(bl,t),Ir(xr,t))}catch(i){xr(t,i)}},An=Yi.prototype,kn=function(e){Jw(this,{type:$n,done:!1,notified:!1,parent:!1,reactions:new Yw,rejection:!1,state:Nm,value:void 0})},kn.prototype=_m(An,"then",function(e,t){var i=hl(this),r=ml(Gw(this,Yi));return i.parent=!0,r.ok=Rn(e)?e:!0,r.fail=Rn(t)&&t,r.domain=Ln?vl.domain:void 0,i.state===Nm?i.reactions.add(r):gl(function(){Zm(r,i)}),r.promise}),Um=function(){var s=new kn,e=hl(s);this.promise=s,this.resolve=Ir(bl,e),this.reject=Ir(xr,e)},Gm.f=ml=function(s){return s===Yi||s===rA?new Um(s):Zw(s)},!Nw&&Rn(Mn)&&Tr!==Object.prototype)){qm=Tr.then,Xw||_m(Tr,"then",function(e,t){var i=this;return new Yi(function(r,a){Er(qm,i,r,a)}).then(e,t)},{unsafe:!0});try{delete Tr.constructor}catch{}Fm&&Fm(Tr,An)}Fw({global:!0,constructor:!0,wrap:!0,forced:Qm},{Promise:Yi});Uw(Yi,$n,!1,!0);qw($n)});var ob=b((aB,nb)=>{"use strict";var nA=Ye(),sb=nA("iterator"),ab=!1;try{rb=0,Tl={next:function(){return{done:!!rb++}},return:function(){ab=!0}},Tl[sb]=function(){return this},Array.from(Tl,function(){throw 2})}catch{}var rb,Tl;nb.exports=function(s,e){try{if(!e&&!ab)return!1}catch{return!1}var t=!1;try{var i={};i[sb]=function(){return{next:function(){return{done:t=!0}}}},s(i)}catch{}return t}});var Il=b((nB,ub)=>{"use strict";var oA=Wi(),uA=ob(),lA=vr().CONSTRUCTOR;ub.exports=lA||!uA(function(s){oA.all(s).then(void 0,function(){})})});var lb=b(()=>{"use strict";var cA=_e(),dA=Pt(),pA=Wt(),hA=yr(),fA=wn(),mA=yn(),bA=Il();cA({target:"Promise",stat:!0,forced:bA},{all:function(e){var t=this,i=hA.f(t),r=i.resolve,a=i.reject,n=fA(function(){var o=pA(t.resolve),u=[],l=0,c=1;mA(e,function(p){var d=l++,h=!1;c++,dA(o,t,p).then(function(m){h||(h=!0,u[d]=m,--c||r(u))},a)}),--c||r(u)});return n.error&&a(n.value),i.promise}})});var db=b(()=>{"use strict";var gA=_e(),SA=Nt(),vA=vr().CONSTRUCTOR,El=Wi(),yA=di(),TA=Me(),IA=br(),cb=El&&El.prototype;gA({target:"Promise",proto:!0,forced:vA,real:!0},{catch:function(s){return this.then(void 0,s)}});!SA&&TA(El)&&(xl=yA("Promise").prototype.catch,cb.catch!==xl&&IA(cb,"catch",xl,{unsafe:!0}));var xl});var pb=b(()=>{"use strict";var xA=_e(),EA=Pt(),PA=Wt(),wA=yr(),AA=wn(),kA=yn(),RA=Il();xA({target:"Promise",stat:!0,forced:RA},{race:function(e){var t=this,i=wA.f(t),r=i.reject,a=AA(function(){var n=PA(t.resolve);kA(e,function(o){EA(n,t,o).then(i.resolve,r)})});return a.error&&r(a.value),i.promise}})});var hb=b(()=>{"use strict";var LA=_e(),MA=yr(),$A=vr().CONSTRUCTOR;LA({target:"Promise",stat:!0,forced:$A},{reject:function(e){var t=MA.f(this),i=t.reject;return i(e),t.promise}})});var Pl=b((mB,fb)=>{"use strict";var BA=Yt(),DA=wt(),CA=yr();fb.exports=function(s,e){if(BA(s),DA(e)&&e.constructor===s)return e;var t=CA.f(s),i=t.resolve;return i(e),t.promise}});var gb=b(()=>{"use strict";var VA=_e(),OA=di(),mb=Nt(),_A=Wi(),bb=vr().CONSTRUCTOR,FA=Pl(),NA=OA("Promise"),UA=mb&&!bb;VA({target:"Promise",stat:!0,forced:mb||bb},{resolve:function(e){return FA(UA&&this===NA?_A:this,e)}})});var Sb=b(()=>{"use strict";ib();lb();db();pb();hb();gb()});var Ib=b(()=>{"use strict";var qA=_e(),HA=Nt(),Bn=Wi(),jA=We(),yb=di(),Tb=Me(),zA=Wu(),vb=Pl(),GA=br(),Al=Bn&&Bn.prototype,QA=!!Bn&&jA(function(){Al.finally.call({then:function(){}},function(){})});qA({target:"Promise",proto:!0,real:!0,forced:QA},{finally:function(s){var e=zA(this,yb("Promise")),t=Tb(s);return this.then(t?function(i){return vb(e,s()).then(function(){return i})}:s,t?function(i){return vb(e,s()).then(function(){throw i})}:s)}});!HA&&Tb(Bn)&&(wl=yb("Promise").prototype.finally,Al.finally!==wl&&GA(Al,"finally",wl,{unsafe:!0}));var wl});var Eb=b((IB,xb)=>{"use strict";$f();Sb();Ib();var WA=wi();xb.exports=WA("Promise","finally")});var wb=b((xB,Pb)=>{"use strict";var YA=Eb();Pb.exports=YA});var gs=b((EB,Ab)=>{"use strict";var KA=wb();Ab.exports=KA});var Db=b(()=>{"use strict";var tk=_e(),ik=yu().values;tk({target:"Object",stat:!0},{values:function(e){return ik(e)}})});var Vb=b((tD,Cb)=>{"use strict";Db();var rk=ur();Cb.exports=rk.Object.values});var _b=b((iD,Ob)=>{"use strict";var sk=Vb();Ob.exports=sk});var Ki=b((rD,Fb)=>{"use strict";var ak=_b();Fb.exports=ak});var Kb=b(()=>{"use strict";var mk=_e(),bk=lr(),gk=mr(),Sk=rs(),vk=ss();mk({target:"Array",proto:!0},{at:function(e){var t=bk(this),i=gk(t),r=Sk(e),a=r>=0?r:i+r;return a<0||a>=i?void 0:t[a]}});vk("at")});var Jb=b((oC,Xb)=>{"use strict";Kb();var yk=wi();Xb.exports=yk("Array","at")});var eg=b((uC,Zb)=>{"use strict";var Tk=Jb();Zb.exports=Tk});var Ht=b((lC,tg)=>{"use strict";var Ik=eg();tg.exports=Ik});var Gl=b((OV,xg)=>{"use strict";var $k=Ni();xg.exports=Array.isArray||function(e){return $k(e)==="Array"}});var Pg=b((_V,Eg)=>{"use strict";var Bk=TypeError,Dk=9007199254740991;Eg.exports=function(s){if(s>Dk)throw Bk("Maximum allowed index exceeded");return s}});var kg=b((FV,Ag)=>{"use strict";var Ck=Gl(),Vk=mr(),Ok=Pg(),_k=dr(),wg=function(s,e,t,i,r,a,n,o){for(var u=r,l=0,c=n?_k(n,o):!1,p,d;l<i;)l in t&&(p=c?c(t[l],l,e):t[l],a>0&&Ck(p)?(d=Vk(p),u=wg(s,e,p,d,u,a-1)-1):(Ok(u+1),s[u]=p),u++),l++;return u};Ag.exports=wg});var $g=b((NV,Mg)=>{"use strict";var Rg=Gl(),Fk=Qu(),Nk=wt(),Uk=Ye(),qk=Uk("species"),Lg=Array;Mg.exports=function(s){var e;return Rg(s)&&(e=s.constructor,Fk(e)&&(e===Lg||Rg(e.prototype))?e=void 0:Nk(e)&&(e=e[qk],e===null&&(e=void 0))),e===void 0?Lg:e}});var Dg=b((UV,Bg)=>{"use strict";var Hk=$g();Bg.exports=function(s,e){return new(Hk(s))(e===0?0:e)}});var Cg=b(()=>{"use strict";var jk=_e(),zk=kg(),Gk=Wt(),Qk=lr(),Wk=mr(),Yk=Dg();jk({target:"Array",proto:!0},{flatMap:function(e){var t=Qk(this),i=Wk(t),r;return Gk(e),r=Yk(t,0),r.length=zk(r,t,t,i,0,1,e,arguments.length>1?arguments[1]:void 0),r}})});var Vg=b(()=>{"use strict";var Kk=ss();Kk("flatMap")});var _g=b((GV,Og)=>{"use strict";Cg();Vg();var Xk=wi();Og.exports=Xk("Array","flatMap")});var Ng=b((QV,Fg)=>{"use strict";var Jk=_g();Fg.exports=Jk});var Rs=b((WV,Ug)=>{"use strict";var Zk=Ng();Ug.exports=Zk});var Ls=b((YV,qg)=>{"use strict";var eR=ns(),tR=String;qg.exports=function(s){if(eR(s)==="Symbol")throw new TypeError("Cannot convert a Symbol value to a string");return tR(s)}});var Ql=b((KV,Hg)=>{"use strict";Hg.exports=`
|
|
7
|
+
\v\f\r \xA0\u1680\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF`});var Gg=b((XV,zg)=>{"use strict";var iR=ze(),rR=Pi(),sR=Ls(),Yl=Ql(),jg=iR("".replace),aR=RegExp("^["+Yl+"]+"),nR=RegExp("(^|[^"+Yl+"])["+Yl+"]+$"),Wl=function(s){return function(e){var t=sR(rR(e));return s&1&&(t=jg(t,aR,"")),s&2&&(t=jg(t,nR,"$1")),t}};zg.exports={start:Wl(1),end:Wl(2),trim:Wl(3)}});var Kg=b((JV,Yg)=>{"use strict";var oR=Au().PROPER,uR=We(),Qg=Ql(),Wg="\u200B\x85\u180E";Yg.exports=function(s){return uR(function(){return!!Qg[s]()||Wg[s]()!==Wg||oR&&Qg[s].name!==s})}});var Kl=b((ZV,Xg)=>{"use strict";var lR=Gg().start,cR=Kg();Xg.exports=cR("trimStart")?function(){return lR(this)}:"".trimStart});var Zg=b(()=>{"use strict";var dR=_e(),Jg=Kl();dR({target:"String",proto:!0,name:"trimStart",forced:"".trimLeft!==Jg},{trimLeft:Jg})});var tS=b(()=>{"use strict";Zg();var pR=_e(),eS=Kl();pR({target:"String",proto:!0,name:"trimStart",forced:"".trimStart!==eS},{trimStart:eS})});var rS=b((sO,iS)=>{"use strict";tS();var hR=wi();iS.exports=hR("String","trimLeft")});var aS=b((aO,sS)=>{"use strict";var fR=rS();sS.exports=fR});var oS=b((nO,nS)=>{"use strict";var mR=aS();nS.exports=mR});var yS=b(()=>{"use strict"});var TS=b(()=>{"use strict"});var xS=b((VF,IS)=>{"use strict";var CR=wt(),VR=Ni(),OR=Ye(),_R=OR("match");IS.exports=function(s){var e;return CR(s)&&((e=s[_R])!==void 0?!!e:VR(s)==="RegExp")}});var PS=b((OF,ES)=>{"use strict";var FR=Yt();ES.exports=function(){var s=FR(this),e="";return s.hasIndices&&(e+="d"),s.global&&(e+="g"),s.ignoreCase&&(e+="i"),s.multiline&&(e+="m"),s.dotAll&&(e+="s"),s.unicode&&(e+="u"),s.unicodeSets&&(e+="v"),s.sticky&&(e+="y"),e}});var kS=b((_F,AS)=>{"use strict";var NR=Pt(),UR=Ut(),qR=Xr(),HR=PS(),wS=RegExp.prototype;AS.exports=function(s){var e=s.flags;return e===void 0&&!("flags"in wS)&&!UR(s,"flags")&&qR(wS,s)?NR(HR,s):e}});var LS=b((FF,RS)=>{"use strict";var tc=ze(),jR=lr(),zR=Math.floor,Zl=tc("".charAt),GR=tc("".replace),ec=tc("".slice),QR=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,WR=/\$([$&'`]|\d{1,2})/g;RS.exports=function(s,e,t,i,r,a){var n=t+s.length,o=i.length,u=WR;return r!==void 0&&(r=jR(r),u=QR),GR(a,u,function(l,c){var p;switch(Zl(c,0)){case"$":return"$";case"&":return s;case"`":return ec(e,0,t);case"'":return ec(e,n);case"<":p=r[ec(c,1,-1)];break;default:var d=+c;if(d===0)return l;if(d>o){var h=zR(d/10);return h===0?l:h<=o?i[h-1]===void 0?Zl(c,1):i[h-1]+Zl(c,1):l}p=i[d-1]}return p===void 0?"":p})}});var BS=b(()=>{"use strict";var YR=_e(),KR=Pt(),rc=ze(),MS=Pi(),XR=Me(),JR=or(),ZR=xS(),Vr=Ls(),eL=Zr(),tL=kS(),iL=LS(),rL=Ye(),sL=Nt(),aL=rL("replace"),nL=TypeError,ic=rc("".indexOf),oL=rc("".replace),$S=rc("".slice),uL=Math.max;YR({target:"String",proto:!0},{replaceAll:function(e,t){var i=MS(this),r,a,n,o,u,l,c,p,d,h,m=0,g="";if(!JR(e)){if(r=ZR(e),r&&(a=Vr(MS(tL(e))),!~ic(a,"g")))throw new nL("`.replaceAll` does not allow non-global regexes");if(n=eL(e,aL),n)return KR(n,e,i,t);if(sL&&r)return oL(Vr(i),e,t)}for(o=Vr(i),u=Vr(e),l=XR(t),l||(t=Vr(t)),c=u.length,p=uL(1,c),d=ic(o,u);d!==-1;)h=l?Vr(t(u,d,o)):iL(u,o,d,[],void 0,t),g+=$S(o,m,d)+h,m=d+c,d=d+p>o.length?-1:ic(o,u,d+p);return m<o.length&&(g+=$S(o,m)),g}})});var CS=b((qF,DS)=>{"use strict";yS();TS();BS();var lL=wi();DS.exports=lL("String","replaceAll")});var OS=b((HF,VS)=>{"use strict";var cL=CS();VS.exports=cL});var sc=b((jF,_S)=>{"use strict";var dL=OS();_S.exports=dL});var NS=b((zF,FS)=>{"use strict";var pL=rs(),hL=Ls(),fL=Pi(),mL=RangeError;FS.exports=function(e){var t=hL(fL(this)),i="",r=pL(e);if(r<0||r===1/0)throw new mL("Wrong number of repetitions");for(;r>0;(r>>>=1)&&(t+=t))r&1&&(i+=t);return i}});var zS=b((GF,jS)=>{"use strict";var HS=ze(),bL=fu(),US=Ls(),gL=NS(),SL=Pi(),vL=HS(gL),yL=HS("".slice),TL=Math.ceil,qS=function(s){return function(e,t,i){var r=US(SL(e)),a=bL(t),n=r.length,o=i===void 0?" ":US(i),u,l;return a<=n||o===""?r:(u=a-n,l=vL(o,TL(u/o.length)),l.length>u&&(l=yL(l,0,u)),s?r+l:l+r)}};jS.exports={start:qS(!1),end:qS(!0)}});var QS=b((QF,GS)=>{"use strict";var IL=qi();GS.exports=/Version\/10(?:\.\d+){1,2}(?: [\w./]+)?(?: Mobile\/\w+)? Safari\//.test(IL)});var WS=b(()=>{"use strict";var xL=_e(),EL=zS().start,PL=QS();xL({target:"String",proto:!0,forced:PL},{padStart:function(e){return EL(this,e,arguments.length>1?arguments[1]:void 0)}})});var KS=b((KF,YS)=>{"use strict";WS();var wL=wi();YS.exports=wL("String","padStart")});var JS=b((XF,XS)=>{"use strict";var AL=KS();XS.exports=AL});var ac=b((JF,ZS)=>{"use strict";var kL=JS();ZS.exports=kL});var gM={};yy(gM,{ChromecastState:()=>Gr,HttpConnectionType:()=>Za,Observable:()=>ii.Observable,PlaybackState:()=>nt,Player:()=>Xa,PredefinedQualityLimits:()=>Qr,SDK_VERSION:()=>bM,Subject:()=>ii.Subject,Subscription:()=>ii.Subscription,Surface:()=>en,VERSION:()=>_o,ValueSubject:()=>ii.ValueSubject,VideoFormat:()=>Qt,VideoQuality:()=>ii.VideoQuality,clientChecker:()=>W,isMobile:()=>Pr});module.exports=Ty(gM);var _o="2.0.131-dev.c235b295.0";var nt=(r=>(r.STOPPED="stopped",r.READY="ready",r.PLAYING="playing",r.PAUSED="paused",r))(nt||{}),Qt=(x=>(x.MPEG="MPEG",x.DASH="DASH",x.DASH_SEP="DASH_SEP",x.DASH_SEP_VK="DASH_SEP",x.DASH_WEBM="DASH_WEBM",x.DASH_WEBM_AV1="DASH_WEBM_AV1",x.DASH_STREAMS="DASH_STREAMS",x.DASH_WEBM_VK="DASH_WEBM",x.DASH_ONDEMAND="DASH_ONDEMAND",x.DASH_ONDEMAND_VK="DASH_ONDEMAND",x.DASH_LIVE="DASH_LIVE",x.DASH_LIVE_CMAF="DASH_LIVE_CMAF",x.DASH_LIVE_WEBM="DASH_LIVE_WEBM",x.HLS="HLS",x.HLS_ONDEMAND="HLS_ONDEMAND",x.HLS_JS="HLS",x.HLS_LIVE="HLS_LIVE",x.HLS_LIVE_CMAF="HLS_LIVE_CMAF",x.WEB_RTC_LIVE="WEB_RTC_LIVE",x))(Qt||{});var Gr=(r=>(r.NOT_AVAILABLE="NOT_AVAILABLE",r.AVAILABLE="AVAILABLE",r.CONNECTING="CONNECTING",r.CONNECTED="CONNECTED",r))(Gr||{}),Za=(i=>(i.HTTP1="http1",i.HTTP2="http2",i.QUIC="quic",i))(Za||{});var en=(n=>(n.NONE="none",n.INLINE="inline",n.FULLSCREEN="fullscreen",n.SECOND_SCREEN="second_screen",n.PIP="pip",n.INVISIBLE="invisible",n))(en||{}),Qr=(i=>(i.TRAFFIC_SAVING="traffic_saving",i.HIGH_QUALITY="high_quality",i.UNKNOWN="unknown",i))(Qr||{});var fy=U(At(),1);var te=require("@vkontakte/videoplayer-shared");var Bp=s=>new Promise((e,t)=>{let i=document.createElement("script");i.setAttribute("src",s),i.onload=()=>e(),i.onerror=r=>t(r),document.body.appendChild(i)});var nn=class{constructor(e){this.connection$=new te.ValueSubject(void 0);this.castState$=new te.ValueSubject("NOT_AVAILABLE");this.errorEvent$=new te.Subject;this.realCastState$=new te.ValueSubject("NOT_AVAILABLE");this.subscription=new te.Subscription;this.isDestroyed=!1;this.params=e,this.log=this.params.dependencies.logger.createComponentLog("ChromecastInitializer");let t="chrome"in window;if(this.log({message:`[constructor] receiverApplicationId: ${this.params.receiverApplicationId}, isDisabled: ${this.params.isDisabled}, isSupported: ${t}`}),e.isDisabled||!t)return;let i=(0,te.isNonNullable)(window.chrome?.cast),r=!!window.__onGCastApiAvailable;i?this.initializeCastApi():(window.__onGCastApiAvailable=a=>{delete window.__onGCastApiAvailable,a&&!this.isDestroyed&&this.initializeCastApi()},r||Bp("https://www.gstatic.com/cv/js/sender/v1/cast_sender.js?loadCastFramework=1").catch(()=>this.errorEvent$.next({id:"ChromecastLoading",category:te.ErrorCategory.NETWORK,message:"Script loading failed!"})))}connect(){cast.framework.CastContext.getInstance()?.requestSession()}disconnect(){cast.framework.CastContext.getInstance()?.getCurrentSession()?.endSession(!0)}stopMedia(){return new Promise((e,t)=>{cast.framework.CastContext.getInstance()?.getCurrentSession()?.getMediaSession()?.stop(new chrome.cast.media.StopRequest,e,t)})}toggleConnection(){(0,te.isNonNullable)(this.connection$.getValue())?this.disconnect():this.connect()}setVolume(e){let t=this.connection$.getValue();(0,te.isNullable)(t)||(t.remotePlayer.volumeLevel=e,t.remotePlayerController.setVolumeLevel())}setMuted(e){let t=this.connection$.getValue();(0,te.isNullable)(t)||e!==t.remotePlayer.isMuted&&t.remotePlayerController.muteOrUnmute()}destroy(){this.isDestroyed=!0,this.subscription.unsubscribe()}initListeners(){let e=new cast.framework.RemotePlayer,t=new cast.framework.RemotePlayerController(e),i=cast.framework.CastContext.getInstance();this.subscription.add((0,te.fromEvent)(i,cast.framework.CastContextEventType.SESSION_STATE_CHANGED).subscribe(r=>{switch(r.sessionState){case cast.framework.SessionState.SESSION_STARTED:case cast.framework.SessionState.SESSION_STARTING:case cast.framework.SessionState.SESSION_RESUMED:this.contentId=i.getCurrentSession()?.getMediaSession()?.media?.contentId;break;case cast.framework.SessionState.NO_SESSION:case cast.framework.SessionState.SESSION_ENDING:case cast.framework.SessionState.SESSION_ENDED:case cast.framework.SessionState.SESSION_START_FAILED:this.contentId=void 0;break;default:return(0,te.assertNever)(r.sessionState)}})).add((0,te.merge)((0,te.fromEvent)(i,cast.framework.CastContextEventType.CAST_STATE_CHANGED).pipe((0,te.tap)(r=>{this.log({message:`[cast.framework.RemotePlayerEventType.CAST_STATE_CHANGED]: ${JSON.stringify(r)}`})}),(0,te.map)(r=>r.castState)),(0,te.observableFrom)([i.getCastState()])).pipe((0,te.filterChanged)(),(0,te.map)(HI),(0,te.tap)(r=>{this.log({message:`realCastState$: ${r}`})})).subscribe(this.realCastState$)).add(this.realCastState$.subscribe(r=>{let a=r==="CONNECTED",n=(0,te.isNonNullable)(this.connection$.getValue());if(a&&!n){let o=i.getCurrentSession();(0,te.assertNonNullable)(o);let u=o.getCastDevice(),l=o.getMediaSession()?.media?.contentId;((0,te.isNullable)(l)||l===this.contentId)&&(this.log({message:"connection created"}),this.connection$.next({remotePlayer:e,remotePlayerController:t,session:o,castDevice:u}))}else!a&&n&&(this.log({message:"connection destroyed"}),this.connection$.next(void 0));this.castState$.next(r==="CONNECTED"?(0,te.isNonNullable)(this.connection$.getValue())?"CONNECTED":"AVAILABLE":r)}))}initializeCastApi(){let e,t,i;try{e=cast.framework.CastContext.getInstance(),t=chrome.cast.media.DEFAULT_MEDIA_RECEIVER_APP_ID,i=chrome.cast.AutoJoinPolicy.ORIGIN_SCOPED}catch{return}try{e.setOptions({receiverApplicationId:this.params.receiverApplicationId??t,autoJoinPolicy:i}),this.initListeners()}catch(r){this.errorEvent$.next({id:"ChromecastInitializer",category:te.ErrorCategory.EXTERNAL_API,message:"[initializeCastApi] failed",thrown:r})}}},HI=s=>{switch(s){case cast.framework.CastState.NO_DEVICES_AVAILABLE:return"NOT_AVAILABLE";case cast.framework.CastState.NOT_CONNECTED:return"AVAILABLE";case cast.framework.CastState.CONNECTING:return"CONNECTING";case cast.framework.CastState.CONNECTED:return"CONNECTED";default:return(0,te.assertNever)(s)}};var Oc=U(At(),1),ty=U(ji(),1),iy=U(qu(),1);var Mb=U(gs(),1);var kl=require("@vkontakte/videoplayer-shared");var $e=(s,e=0,t=0)=>{switch(t){case 0:return s.replace("_offset_p",e===0?"":"_"+e.toFixed(0));case 1:{if(e===0)return s;let i=new URL(s);return i.searchParams.append("playback_shift",e.toFixed(0)),i.toString()}case 2:{let i=new URL(s);return!i.searchParams.get("offset_p")&&e===0?s:(i.searchParams.set("offset_p",e.toFixed(0)),i.toString())}default:(0,kl.assertNever)(t)}return s},ki=(s,e)=>{switch(e){case 0:return NaN;case 1:{let t=new URL(s);return Number(t.searchParams.get("playback_shift"))}case 2:{let t=new URL(s);return Number(t.searchParams.get("offset_p")??0)}default:(0,kl.assertNever)(e)}};var C=(s,e,t=!1)=>{let i=s.getTransition();(t||!i||i.to===e)&&s.setState(e)};var Kt=require("@vkontakte/videoplayer-shared"),K=class{constructor(e){this.transitionStarted$=new Kt.Subject;this.transitionEnded$=new Kt.Subject;this.transitionUpdated$=new Kt.Subject;this.forceChanged$=new Kt.Subject;this.stateChangeStarted$=(0,Kt.merge)(this.transitionStarted$,this.transitionUpdated$);this.stateChangeEnded$=(0,Kt.merge)(this.transitionEnded$,this.forceChanged$);this.state=e,this.prevState=void 0}setState(e){let t=this.transition,i=this.state;this.transition=void 0,this.prevState=i,this.state=e,t?t.to===e?this.transitionEnded$.next(t):this.forceChanged$.next({from:t.from,to:e,canceledTransition:t}):this.forceChanged$.next({from:i,to:e,canceledTransition:t})}startTransitionTo(e){let t=this.transition,i=this.state;i===e||(0,Kt.isNonNullable)(t)&&t.to===e||(this.prevState=i,this.state=e,t?(this.transition={from:t.from,to:e,canceledTransition:t},this.transitionUpdated$.next(this.transition)):(this.transition={from:i,to:e},this.transitionStarted$.next(this.transition)))}getTransition(){return this.transition}getState(){return this.state}getPrevState(){return this.prevState}};var kb=require("@vkontakte/videoplayer-shared"),Rb=s=>{switch(s){case"MPEG":case"DASH":case"DASH_SEP":case"DASH_ONDEMAND":case"DASH_WEBM":case"DASH_WEBM_AV1":case"DASH_STREAMS":case"HLS":case"HLS_ONDEMAND":return!1;case"DASH_LIVE":case"DASH_LIVE_CMAF":case"HLS_LIVE":case"HLS_LIVE_CMAF":case"DASH_LIVE_WEBM":case"WEB_RTC_LIVE":return!0;default:return(0,kb.assertNever)(s)}};var q=require("@vkontakte/videoplayer-shared");var XA=5,JA=5,ZA=500,Lb=7e3,Ss=class{constructor(e){this.subscription=new q.Subscription;this.loadMediaTimeoutSubscription=new q.Subscription;this.videoState=new K("stopped");this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.videoState.getTransition(),i=this.params.desiredState.playbackState.getState(),r=this.params.desiredState.playbackState.getTransition(),a=this.params.desiredState.seekState.getState();if(this.log({message:`[syncPlayback] videoState: ${e}; videoTransition: ${JSON.stringify(t)}; desiredPlaybackState: ${i}; desiredPlaybackStateTransition: ${this.params.desiredState.playbackState.getTransition()}; seekState: ${JSON.stringify(a)};`}),i==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.stop());return}if(!t){if(r?.to!=="paused"&&a.state==="requested"&&e!=="stopped"){this.seek(a.position/1e3);return}switch(i){case"ready":{switch(e){case"playing":case"paused":case"ready":break;case"stopped":this.videoState.startTransitionTo("ready"),this.prepare();break;default:(0,q.assertNever)(e)}break}case"playing":{switch(e){case"playing":break;case"paused":this.videoState.startTransitionTo("playing"),this.params.connection.remotePlayerController.playOrPause();break;case"ready":this.videoState.startTransitionTo("playing"),this.params.connection.remotePlayerController.playOrPause();break;case"stopped":this.videoState.startTransitionTo("ready"),this.prepare();break;default:(0,q.assertNever)(e)}break}case"paused":{switch(e){case"playing":this.videoState.startTransitionTo("paused"),this.params.connection.remotePlayerController.playOrPause();break;case"paused":break;case"ready":this.videoState.startTransitionTo("paused"),this.videoState.setState("paused");break;case"stopped":this.videoState.startTransitionTo("ready"),this.prepare();break;default:(0,q.assertNever)(e)}break}default:(0,q.assertNever)(i)}}};this.params=e,this.log=this.params.dependencies.logger.createComponentLog("ChromecastProvider"),this.log({message:`constructor, format: ${e.format}`}),this.params.output.isLive$.next(Rb(e.format)),this.params.output.isAudioAvailable$.next(!0),this.handleRemoteVolumeChange({volume:this.params.connection.remotePlayer.volumeLevel,muted:this.params.connection.remotePlayer.isMuted});let t=this.params.connection.session.getMediaSession();t&&this.restoreSession(t),this.subscribe()}destroy(){this.log({message:"[destroy]"}),this.subscription.unsubscribe()}subscribe(){this.subscription.add(this.loadMediaTimeoutSubscription);let e=new q.Subscription;this.subscription.add(e),this.subscription.add((0,q.merge)(this.videoState.stateChangeStarted$.pipe((0,q.map)(r=>`stateChangeStarted$ ${JSON.stringify(r)}`)),this.videoState.stateChangeEnded$.pipe((0,q.map)(r=>`stateChangeEnded$ ${JSON.stringify(r)}`))).subscribe(r=>this.log({message:`[videoState] ${r}`})));let t=(r,a)=>this.subscription.add(r.subscribe(a));if(this.params.output.isLive$.getValue())this.params.output.position$.next(0),this.params.output.duration$.next(0);else{let r=new q.Subject;e.add(r.pipe((0,q.debounce)(ZA)).subscribe(()=>{this.params.output.seekedEvent$.next()}));let a=NaN;e.add((0,q.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.CURRENT_TIME_CHANGED).subscribe(n=>{this.logRemoteEvent(n);let o=n.value;this.params.output.position$.next(o),(this.params.desiredState.seekState.getState().state==="applying"||Math.abs(o-a)>XA)&&r.next(o),a=o})),e.add((0,q.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.DURATION_CHANGED).subscribe(n=>{this.logRemoteEvent(n),this.params.output.duration$.next(n.value)}))}t((0,q.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_MEDIA_LOADED_CHANGED),r=>{this.logRemoteEvent(r),r.value?this.handleRemoteReady():(this.handleRemoteStop(),e.unsubscribe())}),t((0,q.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_PAUSED_CHANGED),r=>{this.logRemoteEvent(r),r.value?this.handleRemotePause():this.handleRemotePlay()}),t((0,q.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.PLAYER_STATE_CHANGED),r=>{this.logRemoteEvent(r);let{remotePlayer:a}=this.params.connection,n=r.value,o=this.params.output.isBuffering$.getValue(),u=n===chrome.cast.media.PlayerState.BUFFERING;switch(o!==u&&this.params.output.isBuffering$.next(u),n){case chrome.cast.media.PlayerState.IDLE:!this.params.output.isLive$.getValue()&&a.duration-a.currentTime<JA&&this.params.output.endedEvent$.next(),this.handleRemoteStop(),C(this.params.desiredState.playbackState,"stopped");break;case chrome.cast.media.PlayerState.PAUSED:{this.handleRemotePause();break}case chrome.cast.media.PlayerState.PLAYING:this.handleRemotePlay();break;case chrome.cast.media.PlayerState.BUFFERING:break;default:(0,q.assertNever)(n)}}),t((0,q.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.VOLUME_LEVEL_CHANGED),r=>{this.logRemoteEvent(r),this.handleRemoteVolumeChange({volume:r.value})}),t((0,q.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_MUTED_CHANGED),r=>{this.logRemoteEvent(r),this.handleRemoteVolumeChange({muted:r.value})});let i=(0,q.merge)(this.params.desiredState.playbackState.stateChangeStarted$,this.params.desiredState.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,(0,q.observableFrom)(["init"])).pipe((0,q.debounce)(0));t(i,this.syncPlayback)}restoreSession(e){this.log({message:"restoreSession"});let{remotePlayer:t}=this.params.connection;if(e.playerState!==chrome.cast.media.PlayerState.IDLE){t.isPaused?(this.videoState.setState("paused"),C(this.params.desiredState.playbackState,"paused")):(this.videoState.setState("playing"),C(this.params.desiredState.playbackState,"playing"));let i=this.params.output.isLive$.getValue();this.params.output.duration$.next(i?0:t.duration),this.params.output.position$.next(i?0:t.currentTime),this.params.desiredState.seekState.setState({state:"none"})}}prepare(){let e=this.params.format;this.log({message:`[prepare] format: ${e}`});let t=this.createMediaInfo(e),i=this.createLoadRequest(t);this.loadMedia(i)}handleRemotePause(){let e=this.videoState.getState();(this.videoState.getTransition()?.to==="paused"||e==="playing")&&(this.videoState.setState("paused"),C(this.params.desiredState.playbackState,"paused"))}handleRemotePlay(){let e=this.videoState.getState();(this.videoState.getTransition()?.to==="playing"||e==="paused")&&(this.videoState.setState("playing"),C(this.params.desiredState.playbackState,"playing"))}handleRemoteReady(){this.videoState.getTransition()?.to==="ready"&&this.videoState.setState("ready"),this.params.desiredState.playbackState.getTransition()?.to==="ready"&&C(this.params.desiredState.playbackState,"ready")}handleRemoteStop(){this.videoState.getState()!=="stopped"&&this.videoState.setState("stopped")}handleRemoteVolumeChange(e){let t=this.params.output.volume$.getValue(),i={volume:e.volume??t.volume,muted:e.muted??t.muted};(i.volume!==t.volume||i.muted!==i.muted)&&this.params.output.volume$.next(i)}seek(e){this.params.output.willSeekEvent$.next();let{remotePlayer:t,remotePlayerController:i}=this.params.connection;t.currentTime=e,i.seek()}stop(){let{remotePlayerController:e}=this.params.connection;e.stop()}createMediaInfo(e){let t=this.params.source,i,r,a;switch(e){case"MPEG":{let l=t[e];(0,q.assertNonNullable)(l);let c=(0,q.getHighestQuality)(Object.keys(l));(0,q.assertNonNullable)(c);let p=l[c];(0,q.assertNonNullable)(p),i=p,r="video/mp4",a=chrome.cast.media.StreamType.BUFFERED;break}case"HLS":case"HLS_ONDEMAND":{let l=t[e];(0,q.assertNonNullable)(l),i=l.url,r="application/x-mpegurl",a=chrome.cast.media.StreamType.BUFFERED;break}case"DASH_SEP":case"DASH_ONDEMAND":case"DASH_WEBM":case"DASH_WEBM_AV1":case"DASH_STREAMS":{let l=t[e];(0,q.assertNonNullable)(l),i=l.url,r="application/dash+xml",a=chrome.cast.media.StreamType.BUFFERED;break}case"DASH_LIVE_CMAF":{let l=t[e];(0,q.assertNonNullable)(l),i=l.url,r="application/dash+xml",a=chrome.cast.media.StreamType.LIVE;break}case"HLS_LIVE":case"HLS_LIVE_CMAF":{let l=t[e];(0,q.assertNonNullable)(l),i=$e(l.url),r="application/x-mpegurl",a=chrome.cast.media.StreamType.LIVE;break}case"DASH_LIVE":case"WEB_RTC_LIVE":{let l="Unsupported format for Chromecast",c=new Error(l);throw this.params.output.error$.next({id:"ChromecastProvider.createMediaInfo()",category:q.ErrorCategory.VIDEO_PIPELINE,message:l,thrown:c}),c}case"DASH":case"DASH_LIVE_WEBM":throw new Error(`${e} is no longer supported`);default:return(0,q.assertNever)(e)}let n=new chrome.cast.media.MediaInfo(this.params.meta.videoId??i,r);n.contentUrl=i,n.streamType=a,n.metadata=new chrome.cast.media.GenericMediaMetadata;let{title:o,subtitle:u}=this.params.meta;return(0,q.isNonNullable)(o)&&(n.metadata.title=o),(0,q.isNonNullable)(u)&&(n.metadata.subtitle=u),n}createLoadRequest(e){let t=new chrome.cast.media.LoadRequest(e);t.autoplay=!1;let i=this.params.desiredState.seekState.getState();return i.state==="applying"||i.state==="requested"?t.currentTime=this.params.output.isLive$.getValue()?0:i.position/1e3:t.currentTime=0,t}loadMedia(e){let t=this.params.connection.session.loadMedia(e),i=new Promise((r,a)=>{this.loadMediaTimeoutSubscription.add((0,q.timeout)(Lb).subscribe(()=>a(`timeout(${Lb})`)))});(0,Mb.default)(Promise.race([t,i]).then(()=>{this.log({message:`[loadMedia] completed, format: ${this.params.format}`}),this.params.desiredState.seekState.getState().state==="applying"&&this.params.output.seekedEvent$.next(),this.handleRemoteReady()},r=>{let a=`[prepare] loadMedia failed, format: ${this.params.format}, reason: ${r}`;this.log({message:a}),this.params.output.error$.next({id:"ChromecastProvider.loadMedia",category:q.ErrorCategory.VIDEO_PIPELINE,message:a,thrown:r})}),()=>{this.loadMediaTimeoutSubscription.unsubscribe()})}logRemoteEvent(e){this.log({message:`[remoteEvent] ${JSON.stringify(e)}`})}};var jl=U(At(),1);var $l=require("@vkontakte/videoplayer-shared");var $b=require("@vkontakte/videoplayer-shared"),Bb=s=>{try{s.pause(),s.playbackRate=0,(0,$b.clearVideoElement)(s),s.remove()}catch(e){console.error(e)}};var Dn=require("@vkontakte/videoplayer-shared"),Rl=class{constructor(){this.attribute="data-pool-reused"}get(e){return e.hasAttribute(this.attribute)}set(e,t){e.toggleAttribute(this.attribute,t)}delete(e){e.removeAttribute(this.attribute)}},Ll=window.WeakMap?new WeakMap:new Rl,Ml=window.WeakMap?new WeakMap:new Map,ek=(s,e=20)=>{let t=0;return(0,Dn.fromEvent)(s,"ratechange").subscribe(i=>{t++,t>=e&&(s.currentTime=s.currentTime,t=0)})},Ke=(s,{audioVideoSyncRate:e,disableYandexPiP:t})=>{let i=s.querySelector("video"),r=!!i;i?(0,$l.clearVideoElement)(i):(i=document.createElement("video"),s.appendChild(i)),Ll.set(i,r);let a=new Dn.Subscription;return a.add(ek(i,e)),Ml.set(i,a),i.setAttribute("crossorigin","anonymous"),i.setAttribute("playsinline","playsinline"),t&&i.setAttribute("x-yandex-pip","false"),i.controls=!1,i.setAttribute("poster","data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII="),i},Xe=s=>{Ml.get(s)?.unsubscribe(),Ml.delete(s);let t=Ll.get(s);Ll.delete(s),t?(0,$l.clearVideoElement)(s):Bb(s)};var Bl=U(Ki(),1),H=require("@vkontakte/videoplayer-shared");var Ri=require("@vkontakte/videoplayer-shared"),Cn=(s,e,t,{equal:i=(n,o)=>n===o,changed$:r,onError:a}={})=>{let n=s.getState(),o=e(),u=(0,Ri.isNullable)(r),l=new Ri.Subscription;return r&&l.add(r.subscribe(c=>{let p=s.getState();i(c,p)&&s.setState(c)},a)),i(o,n)||(t(n),u&&s.setState(n)),l.add(s.stateChangeStarted$.subscribe(c=>{t(c.to),u&&s.setState(c.to)},a)),l},$t=(s,e,t)=>Cn(e,()=>s.loop,i=>{(0,Ri.isNonNullable)(i)&&(s.loop=i)},{onError:t}),Je=(s,e,t,i)=>Cn(e,()=>({muted:s.muted,volume:s.volume}),r=>{(0,Ri.isNonNullable)(r)&&(s.muted=r.muted,s.volume=r.volume)},{equal:(r,a)=>r===a||r?.muted===a?.muted&&r?.volume===a?.volume,changed$:t,onError:i}),dt=(s,e,t,i)=>Cn(e,()=>s.playbackRate,r=>{(0,Ri.isNonNullable)(r)&&(s.playbackRate=r)},{changed$:t,onError:i}),Li=Cn;var nk=s=>["__",s.language,s.label].join("|"),ok=(s,e)=>{if(s.id===e)return!0;let[t,i,r]=e.split("|");return s.language===i&&s.label===r},Dl=class s{constructor(e){this.available$=new H.Subject;this.current$=new H.ValueSubject(void 0);this.error$=new H.Subject;this.subscription=new H.Subscription;this.externalTracks=new Map;this.internalTracks=new Map;this.baseURL=e}connect(e,t,i){this.video=e,this.cueSettings=t.textTrackCuesSettings,this.subscribe();let r=a=>{this.error$.next({id:"TextTracksManager",category:H.ErrorCategory.WTF,message:"Generic HtmlVideoTextTrackManager error",thrown:a})};this.subscription.add(this.available$.subscribe(i.availableTextTracks$)),this.subscription.add(this.current$.subscribe(i.currentTextTrack$)),this.subscription.add(this.error$.subscribe(i.error$)),this.subscription.add(Li(t.internalTextTracks,()=>(0,Bl.default)(this.internalTracks),a=>{(0,H.isNonNullable)(a)&&this.setInternal(a)},{equal:(a,n)=>(0,H.isNonNullable)(a)&&(0,H.isNonNullable)(n)&&a.length===n.length&&a.every(({id:o},u)=>o===n[u].id),changed$:this.available$.pipe((0,H.map)(a=>a.filter(({type:n})=>n==="internal"))),onError:r})),this.subscription.add(Li(t.externalTextTracks,()=>(0,Bl.default)(this.externalTracks),a=>{(0,H.isNonNullable)(a)&&this.setExternal(a)},{equal:(a,n)=>(0,H.isNonNullable)(a)&&(0,H.isNonNullable)(n)&&a.length===n.length&&a.every(({id:o},u)=>o===n[u].id),changed$:this.available$.pipe((0,H.map)(a=>a.filter(({type:n})=>n==="external"))),onError:r})),this.subscription.add(Li(t.currentTextTrack,()=>{if(this.video)return;let a=this.htmlTextTracksAsArray().find(({mode:n})=>n==="showing");return a&&this.htmlTextTrackToITextTrack(a).id},a=>this.select(a),{changed$:this.current$,onError:r})),this.subscription.add(Li(t.textTrackCuesSettings,()=>({}),()=>{if(this.video)for(let a of this.htmlTextTracksAsArray())this.applyCueSettings(a.cues),this.applyCueSettings(a.activeCues)}))}subscribe(){(0,H.assertNonNullable)(this.video);let{textTracks:e}=this.video;this.subscription.add((0,H.fromEvent)(e,"addtrack").subscribe(()=>{let i=this.current$.getValue();i&&this.select(i)})),this.subscription.add((0,H.merge)((0,H.fromEvent)(e,"addtrack"),(0,H.fromEvent)(e,"removetrack"),(0,H.observableFrom)(["init"])).pipe((0,H.map)(()=>this.htmlTextTracksAsArray().map(i=>this.htmlTextTrackToITextTrack(i))),(0,H.filterChanged)((i,r)=>i.length===r.length&&i.every(({id:a},n)=>a===r[n].id))).subscribe(this.available$)),this.subscription.add((0,H.merge)((0,H.fromEvent)(e,"change"),(0,H.observableFrom)(["init"])).pipe((0,H.map)(()=>this.htmlTextTracksAsArray().find(({mode:i})=>i==="showing")),(0,H.map)(i=>i&&this.htmlTextTrackToITextTrack(i).id),(0,H.filterChanged)()).subscribe(this.current$));let t=i=>this.applyCueSettings(i.target?.activeCues??null);this.subscription.add((0,H.fromEvent)(e,"addtrack").subscribe(i=>{i.track?.addEventListener("cuechange",t);let r=a=>{let n=a.target?.cues??null;n&&n.length&&(this.applyCueSettings(a.target?.cues??null),a.target?.removeEventListener("cuechange",r))};i.track?.addEventListener("cuechange",r)})),this.subscription.add((0,H.fromEvent)(e,"removetrack").subscribe(i=>{i.track?.removeEventListener("cuechange",t)}))}applyCueSettings(e){if(!e||!e.length)return;let t=this.cueSettings.getState();for(let i of Array.from(e)){let r=i;(0,H.isNonNullable)(t.align)&&(r.align=t.align),(0,H.isNonNullable)(t.position)&&(r.position=t.position),(0,H.isNonNullable)(t.size)&&(r.size=t.size),(0,H.isNonNullable)(t.line)&&(r.line=t.line)}}htmlTextTracksAsArray(e=!1){(0,H.assertNonNullable)(this.video);let t=[...this.video.textTracks];return e?t:t.filter(s.isHealthyTrack)}htmlTextTrackToITextTrack(e){let{language:t,label:i}=e,r=e.id?e.id:nk(e),a=this.externalTracks.has(r),n=(a?this.externalTracks.get(r)?.isAuto:this.internalTracks.get(r)?.isAuto)??r.includes("auto");return a?{id:r,type:"external",isAuto:n,language:t,label:i,url:this.externalTracks.get(r)?.url}:{id:r,type:"internal",isAuto:n,language:t,label:i,url:this.internalTracks.get(r)?.url}}static isHealthyTrack(e){return!(e.kind==="metadata"||e.groupId||e.id===""&&e.label===""&&e.language==="")}setExternal(e){this.internalTracks.size>0&&Array.from(this.internalTracks).forEach(([,t])=>this.detach(t)),e.filter(({id:t})=>!this.externalTracks.has(t)).forEach(t=>this.attach(t)),Array.from(this.externalTracks).filter(([t])=>!e.find(i=>i.id===t)).forEach(([,t])=>this.detach(t))}setInternal(e){let t=[...this.externalTracks];e.filter(({id:i,language:r,isAuto:a})=>!this.internalTracks.has(i)&&!t.some(([,n])=>n.language===r&&n.isAuto===a)).forEach(i=>this.attach(i)),Array.from(this.internalTracks).filter(([i])=>!e.find(r=>r.id===i)).forEach(([,i])=>this.detach(i))}select(e){(0,H.assertNonNullable)(this.video);for(let t of this.htmlTextTracksAsArray(!0))t.mode="showing";for(let t of this.htmlTextTracksAsArray(!0))((0,H.isNullable)(e)||!ok(t,e))&&(t.mode="disabled")}destroy(){if(this.subscription.unsubscribe(),this.video)for(let e of Array.from(this.video.getElementsByTagName("track"))){let t=e.getAttribute("id");t&&this.externalTracks.has(t)&&this.video.removeChild(e)}this.externalTracks.clear()}attach(e){(0,H.assertNonNullable)(this.video);let t=document.createElement("track");this.baseURL?t.setAttribute("src",new URL(e.url,this.baseURL).toString()):t.setAttribute("src",e.url),t.setAttribute("id",e.id),e.label&&t.setAttribute("label",e.label),e.language&&t.setAttribute("srclang",e.language),e.type==="external"?this.externalTracks.set(e.id,e):e.type==="internal"&&this.internalTracks.set(e.id,e),this.video.appendChild(t)}detach(e){(0,H.assertNonNullable)(this.video);let t=Array.prototype.find.call(this.video.getElementsByTagName("track"),i=>i.getAttribute("id")===e.id);t&&this.video.removeChild(t),e.type==="external"?this.externalTracks.delete(e.id):e.type==="internal"&&this.internalTracks.delete(e.id)}},pt=Dl;var Xi=class{constructor(){this.pausedTime=0;this.streamOffset=0;this.pauseTimestamp=0}getTotalPausedTime(){return this.pausedTime+this.getCurrentPausedTime()}getCurrentPausedTime(){return this.pauseTimestamp>0?Date.now()-this.pauseTimestamp:0}getStreamOffset(){return this.streamOffset}getTotalOffset(){return this.getTotalPausedTime()+this.streamOffset}pause(){this.pauseTimestamp===0&&(this.pauseTimestamp=Date.now())}resume(){this.pauseTimestamp>0&&(this.pausedTime+=this.getCurrentPausedTime(),this.pauseTimestamp=0)}resetTo(e,t=!1){this.streamOffset=e,this.pauseTimestamp=0,this.pausedTime=0,t&&this.pause()}};var Nb=s=>{let e=s;for(;!(e instanceof Document)&&!(e instanceof ShadowRoot)&&e!==null;)e=e?.parentNode;return e??void 0},Cl=s=>{let e=Nb(s);return!!(e&&e.fullscreenElement&&e.fullscreenElement===s)},Ub=s=>{let e=Nb(s);return!!(e&&e.pictureInPictureElement&&e.pictureInPictureElement===s)};var _=require("@vkontakte/videoplayer-shared");var uk=3,qb=(s,e,t=uk)=>{let i=0,r=0;for(let a=0;a<s.length;a++){let n=s.start(a),o=s.end(a);if(n<=e&&e<=o){if(i=n,r=o,!t)return{from:i,to:r};for(let u=a-1;u>=0;u--)s.end(u)+t>=i&&(i=s.start(u));for(let u=a+1;u<s.length;u++)s.start(u)-t<=r&&(r=s.end(u))}}return{from:i,to:r}};var Vn=class{constructor(){this._isMiuiBrowser=!1}get current(){return this._current}get isYandex(){return this.current==="Yandex"}get isSafari(){return this.current==="Safari"}get isSamsungBrowser(){return this.current==="SamsungBrowser"}get safariVersion(){return this._safariVersion}get isMiuiBrowser(){return this._isMiuiBrowser}detect(){let{userAgent:e}=navigator;try{let t=/yabrowser/i.test(e)?"Yandex":void 0,i=/samsungbrowser/i.test(e)?"SamsungBrowser":void 0,r=/chrome|crios/i.test(e)?"Chrome":void 0,a=/chromium/i.test(e)?"Chromium":void 0,n=/firefox|fxios/i.test(e)?"Firefox":void 0,o=/webkit|safari|khtml/i.test(e)?"Safari":void 0,u=/opr\//i.test(e)?"Opera":void 0,l=/edg/i.test(e)?"Edge":void 0;this._isMiuiBrowser=/(XiaoMi)|(MiuiBrowser)/i.test(e),this._current=t||i||n||u||l||r||a||o||"Rest"}catch(t){console.error(t)}this.isSafari&&this.detectSafariVersion()}detectSafariVersion(){try{let{userAgent:e}=window.navigator,t=e.match(/Version\/(\d+)/);if(!t)return;let i=t[1],r=parseInt(i,10);if(isNaN(r))return;this._safariVersion=r}catch(e){console.error(e)}}};var Hb=U(At(),1);var Pr=()=>/Mobile|mini|Fennec|Android|iP(ad|od|hone)/.test(navigator.appVersion??navigator.userAgent)||navigator?.userAgentData?.mobile;var On=class{constructor(e){this._highEntropyValues={};this._displayChecker=e}get current(){return this._current}get isIOS(){let e=["iPhone","iPad","iPod"];return this._highEntropyValues.platform==="iOS"||(0,Hb.default)(e,this.current)}get isMac(){return this._highEntropyValues.platform==="macOS"||this.current==="Mac"}get isApple(){return this.isIOS||this.isMac}get isIphoneOrOldIpad(){if(!this.isApple||!this._displayChecker.isTouch)return!1;let e=this.current==="iPad"||this._displayChecker.width>700,t=this._iosVersion;return!e||e&&!!t&&t<16}get isAndroid(){return this._highEntropyValues.platform==="Android"||this.current==="Android"}get isMobile(){return this._highEntropyValues.mobile||this._isMobile}get iOSVersion(){return this._iosVersion}detect(){let{userAgent:e}=navigator;try{this._isMobile=Pr()}catch(t){console.error(t)}this.detectDevice(e),this.detectHighEntropyValues(),this.isIOS&&this.detectIOSVersion()}async detectHighEntropyValues(){let{userAgentData:e}=navigator;if(e?.getHighEntropyValues){let t=await e.getHighEntropyValues(["architecture","bitness","brands","mobile","platform","formFactor","model","platformVersion","wow64"]);this._highEntropyValues=t}}detectDevice(e){try{let t=/android/i.test(e)?"Android":void 0,i=/iphone/i.test(e)?"iPhone":void 0,r=/ipad/i.test(e)?"iPad":void 0,a=/ipod/i.test(e)?"iPod":void 0,n=/mac/i.test(e)?"Mac":void 0,o=/webOS|BlackBerry|IEMobile|Opera Mini/i.test(e)?"RestMobile":void 0;this._current=t||i||r||a||o||n||"Desktop"}catch(t){console.error(t)}}detectIOSVersion(){try{if(this._highEntropyValues.platformVersion){let a=this._highEntropyValues.platformVersion.split(".").slice(0,2).join("."),n=parseFloat(a);this._iosVersion=n;return}let{userAgent:e}=window.navigator,t=e.match(/OS (\d+(_\d+)?)/i);if(!t)return;let i=t[1].replace(/_/g,".");if(!i)return;let r=parseFloat(i);if(isNaN(r))return;this._iosVersion=r}catch(e){console.error(e)}}};var _n=class{get isTouch(){return typeof this._maxTouchPoints=="number"?this._maxTouchPoints>1:"ontouchstart"in window}get maxTouchPoints(){return this._maxTouchPoints}get height(){return this._height}get width(){return this._width}get screenHeight(){return this._screenHeight}get screenWidth(){return this._screenWidth}get pixelRatio(){return this._pixelRatio}get isHDR(){return this._isHdr}get colorDepth(){return this._colorDepth}detect(){let{maxTouchPoints:e}=navigator;try{this._maxTouchPoints=e??0,this._isHdr=!!matchMedia("(dynamic-range: high)")?.matches,this._colorDepth=screen.colorDepth}catch(t){console.error(t)}try{this._pixelRatio=window.devicePixelRatio||1,this._height=screen.height,this._width=screen.width,this._height=screen.height,this._screenHeight=this._height*this._pixelRatio,this._screenWidth=this._width*this._pixelRatio}catch(t){console.error(t)}}};var Rt=()=>window.ManagedMediaSource||window.MediaSource,wr=()=>!!(window.ManagedMediaSource&&window.ManagedSourceBuffer?.prototype?.appendBuffer),jb=()=>!!(window.MediaSource&&window.SourceBuffer?.prototype?.appendBuffer),Fn=()=>window.ManagedMediaSource?new ManagedMediaSource:new MediaSource;var lk=document.createElement("video"),ck='video/mp4; codecs="avc1.42000a,mp4a.40.2"',dk='video/mp4; codecs="hev1.1.6.L93.B0"',zb='video/webm; codecs="vp09.00.10.08"',Gb='video/webm; codecs="av01.0.00M.08"',pk='audio/mp4; codecs="mp4a.40.2"',hk='audio/webm; codecs="opus"',Qb,fk=async()=>{if(!window.navigator.mediaCapabilities)return;let s={type:"media-source",video:{contentType:"video/webm",width:1280,height:720,bitrate:1e6,framerate:30}},[e,t]=await Promise.all([window.navigator.mediaCapabilities.decodingInfo({...s,video:{...s.video,contentType:Gb}}),window.navigator.mediaCapabilities.decodingInfo({...s,video:{...s.video,contentType:zb}})]);Qb={DASH_WEBM_AV1:e,DASH_WEBM:t}};fk().catch(s=>{console.log(lk),console.error(s)});var Nn=class{constructor(e,t){this._deviceChecker=e,this._browserChecker=t}get protocols(){return this._protocols}get containers(){return this._containers}get codecs(){return this._codecs}get webmDecodingInfo(){return Qb}get supportedCodecs(){return Object.keys(this._codecs).filter(e=>this._codecs[e])}get nativeHlsSupported(){return this._nativeHlsSupported}detect(){this._video=document.createElement("video");try{this._protocols={mms:wr(),mse:jb(),hls:!!(this._video.canPlayType?.("application/x-mpegurl")||this._video.canPlayType?.("vnd.apple.mpegURL")),webrtc:!!window.RTCPeerConnection,ws:!!window.WebSocket},this._containers={mp4:!!this._video.canPlayType?.("video/mp4"),webm:!!this._video.canPlayType?.("video/webm"),cmaf:!0};let e=!!Rt()?.isTypeSupported?.(ck),t=!!Rt()?.isTypeSupported?.(dk),i=!!Rt()?.isTypeSupported?.(pk);this._codecs={h264:e,h265:t,vp9:!!Rt()?.isTypeSupported?.(zb),av1:!!Rt()?.isTypeSupported?.(Gb),aac:i,opus:!!Rt()?.isTypeSupported?.(hk),mpeg:(e||t)&&i},this._nativeHlsSupported=this._protocols.hls&&this._containers.mp4}catch(e){console.error(e)}this.destroyVideoElement()}destroyVideoElement(){if(!this._video)return;if(this._video.pause(),this._video.currentTime=0,this._video.removeAttribute("src"),this._video.src="",this._video.load(),this._video.remove){this._video.remove(),this._video=null;return}this._video.parentNode&&this._video.parentNode.removeChild(this._video);let e=this._video.cloneNode(!1);this._video.parentNode?.replaceChild(e,this._video),this._video=null}};var Wb="audio/mpeg",Un=class{supportMp3(){return this._codecs.mp3&&this._containers.mpeg}detect(){this._audio=document.createElement("audio");try{this._containers={mpeg:!!this._audio.canPlayType?.(Wb)},this._codecs={mp3:!!Rt()?.isTypeSupported?.(Wb)}}catch(e){console.error(e)}this.destroyAudioElement()}destroyAudioElement(){if(!this._audio)return;if(this._audio.pause(),this._audio.currentTime=0,this._audio.removeAttribute("src"),this._audio.src="",this._audio.load(),this._audio.remove){this._audio.remove(),this._audio=null;return}this._audio.parentNode&&this._audio.parentNode.removeChild(this._audio);let e=this._audio.cloneNode(!1);this._audio.parentNode?.replaceChild(e,this._audio),this._audio=null}};var Yb=require("@vkontakte/videoplayer-shared"),Vl=class{constructor(){this.isInited$=new Yb.ValueSubject(!1);this._displayChecker=new _n,this._deviceChecker=new On(this._displayChecker),this._browserChecker=new Vn,this._videoChecker=new Nn(this._deviceChecker,this._browserChecker),this._audioChecker=new Un,this.detect()}get display(){return this._displayChecker}get device(){return this._deviceChecker}get browser(){return this._browserChecker}get video(){return this._videoChecker}get audio(){return this._audioChecker}async detect(){this._displayChecker.detect(),this._deviceChecker.detect(),this._browserChecker.detect(),this._videoChecker.detect(),this._audioChecker.detect(),this.isInited$.next(!0)}},W=new Vl;var Ze=s=>{let e=I=>(0,_.fromEvent)(s,I).pipe((0,_.mapTo)(void 0)),t=new _.Subscription,i=()=>t.unsubscribe(),a=(0,_.merge)(...["waiting","pause","canplay","play","canplaythrough","playing","seeking","seeked","ended"].map(I=>(0,_.fromEvent)(s,I))).pipe((0,_.map)(I=>I.type==="ended"?s.readyState<2:s.readyState<3),(0,_.filterChanged)()),n=(0,_.merge)((0,_.fromEvent)(s,"progress"),(0,_.fromEvent)(s,"timeupdate")).pipe((0,_.map)(()=>qb(s.buffered,s.currentTime))),o=W.browser.isSafari?(0,_.combine)({play:e("play").pipe((0,_.once)()),playing:e("playing")}).pipe((0,_.mapTo)(void 0)):e("playing"),u=(0,_.fromEvent)(s,"volumechange").pipe((0,_.map)(()=>({muted:s.muted,volume:s.volume}))),l=(0,_.fromEvent)(s,"ratechange").pipe((0,_.map)(()=>s.playbackRate)),c=(0,_.fromEvent)(s,"error").pipe((0,_.filter)(()=>!!(s.error||s.played.length)),(0,_.map)(()=>{let I=s.error;return{id:I?`MediaError#${I.code}`:"HtmlVideoError",category:_.ErrorCategory.VIDEO_PIPELINE,message:I?I.message:"Error event from HTML video element",thrown:s.error??void 0}})),p=(0,_.fromEvent)(s,"timeupdate").pipe((0,_.map)(()=>s.currentTime)),d=new _.Subject,h=.3,m;t.add(p.subscribe(I=>{s.loop&&(0,_.isNonNullable)(m)&&(0,_.isNonNullable)(I)&&m>=s.duration-h&&I<=h&&d.next(m),m=I}));let g=e("pause").pipe((0,_.filter)(()=>!s.error&&m!==s.duration)),y=(0,_.fromEvent)(s,"enterpictureinpicture"),T=(0,_.fromEvent)(s,"leavepictureinpicture"),A=new _.ValueSubject(Ub(s));t.add(y.subscribe(()=>A.next(!0))),t.add(T.subscribe(()=>A.next(!1)));let x=new _.ValueSubject(Cl(s)),M=(0,_.fromEvent)(s,"fullscreenchange");t.add(M.pipe((0,_.map)(()=>Cl(s))).subscribe(x));let $=.1,F=1e3,G=(0,_.fromEvent)(s,"timeupdate").pipe((0,_.filter)(I=>s.duration-s.currentTime<$)),B=(0,_.merge)(G.pipe((0,_.filter)(I=>!s.loop)),(0,_.fromEvent)(s,"ended")).pipe((0,_.throttle)(F),(0,_.mapTo)(void 0)),D=G.pipe((0,_.filter)(I=>s.loop));return{playing$:o,pause$:g,canplay$:e("canplay"),ended$:B,looped$:d,loopExpected$:D,error$:c,seeked$:e("seeked"),seeking$:e("seeking"),progress$:e("progress"),loadStart$:e("loadstart"),loadedMetadata$:e("loadedmetadata"),loadedData$:e("loadeddata"),timeUpdate$:p,durationChange$:(0,_.fromEvent)(s,"durationchange").pipe((0,_.map)(()=>s.duration)),isBuffering$:a,currentBuffer$:n,volumeState$:u,playbackRateState$:l,inPiP$:A,inFullscreen$:x,enterPip$:y,leavePip$:T,destroy:i}};var hi=require("@vkontakte/videoplayer-shared"),Jt=s=>{switch(s){case"mobile":return hi.VideoQuality.Q_144P;case"lowest":return hi.VideoQuality.Q_240P;case"low":return hi.VideoQuality.Q_360P;case"sd":case"medium":return hi.VideoQuality.Q_480P;case"hd":case"high":return hi.VideoQuality.Q_720P;case"fullhd":case"full":return hi.VideoQuality.Q_1080P;case"quadhd":case"quad":return hi.VideoQuality.Q_1440P;case"ultrahd":case"ultra":return hi.VideoQuality.Q_2160P}};var ut=U(Ht(),1),Fl=U(At(),1),Ji=U(ji(),1),L=require("@vkontakte/videoplayer-shared");var Ol=!1,fi={},ig=s=>{Ol=s},rg=()=>{fi={}},sg=s=>{s(fi)},vs=(s,e)=>{Ol&&(fi.meta=fi.meta??{},fi.meta[s]=e)},ot=class{constructor(e){this.name=e}next(e){if(!Ol)return;fi.series=fi.series??{};let t=fi.series[this.name]??[];t.push([Date.now(),e]),fi.series[this.name]=t}};var Fe=require("@vkontakte/videoplayer-shared");function _l(s,e,t){return!s.max&&s.min===e?"high_quality":!s.min&&s.max===t?"traffic_saving":"unknown"}function qn(s,e,t){return!!s&&_l(s,e,t)==="high_quality"}function Ar(s,e,t){return(0,Fe.isNullable)(s)||(0,Fe.isNonNullable)(s.min)&&(0,Fe.isNonNullable)(s.max)&&(0,Fe.isLower)(s.max,s.min)||(0,Fe.isNonNullable)(s.min)&&e&&(0,Fe.isHigher)(s.min,e)||(0,Fe.isNonNullable)(s.max)&&t&&(0,Fe.isLower)(s.max,t)}function ag({limits:s,highestAvailableHeight:e,lowestAvailableHeight:t}){return Ar({max:s?.max?(0,Fe.videoHeightToQuality)(s.max):void 0,min:s?.min?(0,Fe.videoHeightToQuality)(s.min):void 0},e?(0,Fe.videoHeightToQuality)(e):void 0,t?(0,Fe.videoHeightToQuality)(t):void 0)}var cg=new ot("best_bitrate"),jn=(s,e,t)=>(e-t)*Math.pow(2,-10*s)+t;var kr=s=>(e,t)=>s*(Number(e.bitrate)-Number(t.bitrate)),Mi=class{constructor(){this.history={}}recordSelection(e){this.history[e.id]=(0,L.now)()}recordSwitch(e){this.last=e}clear(){this.last=void 0,this.history={}}},zn='Assertion "ABR Tracks is empty array" failed',Hn=new WeakMap,ng=new WeakMap,og=new WeakMap,ys=(s,e,t,i)=>{let r=[...e].sort(kr(1)),a=[...t].sort(kr(1)),n=a.filter(u=>(0,L.isNonNullable)(u.bitrate)&&(0,L.isNonNullable)(s.bitrate)?s.bitrate/u.bitrate>i:!0),o=(0,ut.default)(a,Math.round(a.length*r.indexOf(s)/(r.length+1)))??(0,ut.default)(a,-1);return o&&(0,Fl.default)(n,o)?o:n.length?(0,ut.default)(n,-1):(0,ut.default)(a,0)},Ts=(s,e,t,i)=>{let r=Hn.get(e);r||(r=[...e].sort(kr(1)),Hn.set(e,r));let a=Hn.get(t);a||(a=[...t].sort(kr(1)),Hn.set(t,a));let n=og.get(s);n||(n=a.filter(u=>(0,L.isNonNullable)(u.bitrate)&&(0,L.isNonNullable)(s.bitrate)?s.bitrate/u.bitrate>i:!0),og.set(s,n));let o=(0,ut.default)(a,Math.round(a.length*r.indexOf(s)/(r.length+1)))??(0,ut.default)(a,-1);return o&&(0,Fl.default)(n,o)?o:n.length?(0,ut.default)(n,-1):(0,ut.default)(a,0)},ug=s=>"quality"in s,Gn=(s,e,t,i)=>{let r=(0,L.isNonNullable)(i?.last?.bitrate)&&(0,L.isNonNullable)(t?.bitrate)&&i.last.bitrate<t.bitrate?s.trackCooldownIncreaseQuality:s.trackCooldownDecreaseQuality,a=t&&i&&i.history[t.id]&&(0,L.now)()-i.history[t.id]<=r&&(!i.last||t.id!==i.last.id);if(t?.id&&i&&!a&&i.recordSelection(t),a&&i?.last){let n=i.last;i?.recordSwitch(n);let o=ug(n)?"video":"audio",u=ug(n)?n.quality:n.bitrate;return e({message:`
|
|
8
8
|
[last ${o} selected] ${u}
|
|
9
|
-
`}),n}return i?.recordSwitch(t),t},
|
|
9
|
+
`}),n}return i?.recordSwitch(t),t},xk=(s,e)=>Math.log(e)/Math.log(s),dg=({tuning:s,container:e,limits:t,panelSize:i})=>{let r=s.containerSizeFactor;if(i)return{containerSizeLimit:i,containerSizeFactor:r};if(s.usePixelRatio&&W.display.pixelRatio){let a=W.display.pixelRatio;if(s.pixelRatioMultiplier)r*=s.pixelRatioMultiplier*(a-1)+1;else{let n=s.pixelRatioLogBase,[o=0,u=0,l=0]=s.pixelRatioLogCoefficients,c=xk(n,o*a+u)+l;Number.isFinite(c)&&(r*=c)}}return qn(t,s.highQualityLimit,s.trafficSavingLimit)&&(r*=2),{containerSizeLimit:s.limitByContainer&&e&&e.width>0&&e.height>0?{width:e.width*r,height:e.height*r}:void 0,containerSizeFactor:r}},lg=new WeakMap,Zt=(s,{container:e,estimatedThroughput:t,tuning:i,limits:r,reserve:a=0,forwardBufferHealth:n,playbackRate:o,current:u,history:l,visible:c,droppedVideoMaxQualityLimit:p,stallsVideoMaxQualityLimit:d,stallsPredictedThroughput:h,abrLogger:m,panelSize:g})=>{(0,L.assertNotEmptyArray)(s,zn);let{containerSizeFactor:y,containerSizeLimit:T}=dg({container:e,tuning:i,limits:r,panelSize:g}),A=i.considerPlaybackRate&&(0,L.isNonNullable)(o)?o:1,x=lg.get(s);x||(x=s.filter(R=>!(0,L.isInvariantQuality)(R.quality)).sort((R,V)=>(0,L.isHigher)(R.quality,V.quality)?-1:1),lg.set(s,x));let M=(0,ut.default)(x,-1)?.quality,$=(0,ut.default)(x,0)?.quality,F=Ar(r,$,M),G=A*jn(n??.5,i.bitrateFactorAtEmptyBuffer,i.bitrateFactorAtFullBuffer),B={},D=null;for(let R of x){let V=!0;if(T)if(R.size)V=R.size.width<=T.width&&R.size.height<=T.height;else{let O=T&&(0,L.videoSizeToQuality)(T);V=O?(0,L.isLowerOrEqual)(R.quality,O):!0}if(!V){B[R.quality]="FitsContainer";continue}let ge=h||t,N=(0,L.isNonNullable)(ge)&&isFinite(ge)&&(0,L.isNonNullable)(R.bitrate)?ge-a>=R.bitrate*G:!0,re=qn(r,i.highQualityLimit,i.trafficSavingLimit)&&r?.min===R.quality;if(!N&&!re){B[R.quality]="FitsThroughput";continue}if(i.lazyQualitySwitch&&(0,L.isNonNullable)(i.minBufferToSwitchUp)&&u&&!(0,L.isInvariantQuality)(u.quality)&&(n??0)<i.minBufferToSwitchUp&&(0,L.isHigher)(R.quality,u.quality)){B[R.quality]="Buffer";continue}if(!!p&&(0,L.isHigherOrEqual)(R.quality,p)&&!re){B[R.quality]="DroppedFramesLimit";continue}if(!!d&&(0,L.isHigherOrEqual)(R.quality,d)&&!re){B[R.quality]="StallsLimit";continue}let Ie=F||((0,L.isNullable)(r?.max)||(0,L.isLowerOrEqual)(R.quality,r.max))&&((0,L.isNullable)(r?.min)||(0,L.isHigherOrEqual)(R.quality,r.min)),de=(0,L.isNonNullable)(c)&&!c?(0,L.isLowerOrEqual)(R.quality,i.backgroundVideoQualityLimit):!0;if(!Ie||!de){B[R.quality]="FitsQualityLimits";continue}D||(D=R)}D&&D.bitrate&&cg.next(D.bitrate);let I=D??(0,ut.default)(x,-1)??s[0],j=l?.last,k=Gn(i,m,I,l);return(0,L.isNonNullable)(l)&&k.quality!==j?.quality&&m({message:`
|
|
10
10
|
[VIDEO TRACKS ABR]
|
|
11
11
|
[available video tracks]
|
|
12
|
-
${
|
|
12
|
+
${s.map(R=>`{ id: ${R.id}, quality: ${R.quality}, bitrate: ${R.bitrate}, size: ${R.size?.width}:${R.size?.height} }`).join(`
|
|
13
13
|
`)}
|
|
14
14
|
|
|
15
15
|
[tuning]
|
|
16
|
-
${(0,
|
|
16
|
+
${(0,Ji.default)(i??{}).map(([R,V])=>`${R}: ${V}`).join(`
|
|
17
17
|
`)}
|
|
18
18
|
|
|
19
19
|
[limit params]
|
|
20
|
-
containerSizeFactor: ${
|
|
21
|
-
containerSizeLimit: ${
|
|
20
|
+
containerSizeFactor: ${y},
|
|
21
|
+
containerSizeLimit: ${T?.width??0} x ${T?.height??0},
|
|
22
22
|
estimatedThroughput: ${t},
|
|
23
|
-
stallsPredictedThroughput: ${
|
|
24
|
-
reserve: ${
|
|
23
|
+
stallsPredictedThroughput: ${h},
|
|
24
|
+
reserve: ${a},
|
|
25
25
|
playbackRate: ${o},
|
|
26
26
|
playbackRateFactor: ${A},
|
|
27
27
|
forwardBufferHealth: ${n},
|
|
28
|
-
bitrateFactor: ${
|
|
28
|
+
bitrateFactor: ${G},
|
|
29
29
|
minBufferToSwitchUp: ${i.minBufferToSwitchUp},
|
|
30
30
|
droppedVideoMaxQualityLimit: ${p},
|
|
31
|
-
stallsVideoMaxQualityLimit: ${
|
|
32
|
-
limitsAreInvalid: ${
|
|
33
|
-
maxQualityLimit: ${
|
|
34
|
-
minQualityLimit: ${
|
|
31
|
+
stallsVideoMaxQualityLimit: ${d},
|
|
32
|
+
limitsAreInvalid: ${F},
|
|
33
|
+
maxQualityLimit: ${r?.max},
|
|
34
|
+
minQualityLimit: ${r?.min},
|
|
35
35
|
|
|
36
36
|
[limited video tracks]
|
|
37
|
-
${(0,
|
|
37
|
+
${(0,Ji.default)(B).map(([R,V])=>`${R}: ${V}`).join(`
|
|
38
38
|
`)||"All tracks are available"}
|
|
39
39
|
|
|
40
|
-
[best video track] ${
|
|
41
|
-
[selected video track] ${
|
|
42
|
-
`}),
|
|
40
|
+
[best video track] ${D?.quality}
|
|
41
|
+
[selected video track] ${k?.quality}
|
|
42
|
+
`}),k},Qn=(s,{container:e,estimatedThroughput:t,tuning:i,limits:r,reserve:a=0,forwardBufferHealth:n,playbackRate:o,current:u,history:l,visible:c,droppedVideoMaxQualityLimit:p,stallsVideoMaxQualityLimit:d,stallsPredictedThroughput:h,abrLogger:m,panelSize:g})=>{(0,L.assertNotEmptyArray)(s,zn);let{containerSizeFactor:y,containerSizeLimit:T}=dg({container:e,tuning:i,limits:r,panelSize:g}),A=i.considerPlaybackRate&&(0,L.isNonNullable)(o)?o:1,x=s.filter(V=>!(0,L.isInvariantQuality)(V.quality)).sort((V,ge)=>(0,L.isHigher)(V.quality,ge.quality)?-1:1),M=(0,ut.default)(x,-1)?.quality,$=(0,ut.default)(x,0)?.quality,F=Ar(r,M,$),G=A*jn(n??.5,i.bitrateFactorAtEmptyBuffer,i.bitrateFactorAtFullBuffer),B={},I=x.filter(V=>{let ge=!0;if(T)if(V.size)ge=V.size.width<=T.width&&V.size.height<=T.height;else{let z=T&&(0,L.videoSizeToQuality)(T);ge=z?(0,L.isLowerOrEqual)(V.quality,z):!0}if(!ge)return B[V.quality]="FitsContainer",!1;let N=h||t,re=(0,L.isNonNullable)(N)&&isFinite(N)&&(0,L.isNonNullable)(V.bitrate)?N-a>=V.bitrate*G:!0,ce=qn(r,i.highQualityLimit,i.trafficSavingLimit)&&r?.min===V.quality;if(!re&&!ce)return B[V.quality]="FitsThroughput",!1;if(i.lazyQualitySwitch&&(0,L.isNonNullable)(i.minBufferToSwitchUp)&&u&&!(0,L.isInvariantQuality)(u.quality)&&(n??0)<i.minBufferToSwitchUp&&(0,L.isHigher)(V.quality,u.quality))return B[V.quality]="Buffer",!1;if(!!p&&(0,L.isHigherOrEqual)(V.quality,p)&&!ce)return B[V.quality]="DroppedFramesLimit",!1;if(!!d&&(0,L.isHigherOrEqual)(V.quality,d)&&!ce)return B[V.quality]="StallsLimit",!1;let de=F||((0,L.isNullable)(r?.max)||(0,L.isLowerOrEqual)(V.quality,r.max))&&((0,L.isNullable)(r?.min)||(0,L.isHigherOrEqual)(V.quality,r.min)),O=(0,L.isNonNullable)(c)&&!c?(0,L.isLowerOrEqual)(V.quality,i.backgroundVideoQualityLimit):!0;return!de||!O?(B[V.quality]="FitsQualityLimits",!1):!0})[0];I&&I.bitrate&&cg.next(I.bitrate);let j=I??(0,ut.default)(x,-1)??s[0],k=l?.last,R=Gn(i,m,j,l);return(0,L.isNonNullable)(l)&&R.quality!==k?.quality&&m({message:`
|
|
43
|
+
[VIDEO TRACKS ABR]
|
|
44
|
+
[available video tracks]
|
|
45
|
+
${s.map(V=>`{ id: ${V.id}, quality: ${V.quality}, bitrate: ${V.bitrate}, size: ${V.size?.width}:${V.size?.height} }`).join(`
|
|
46
|
+
`)}
|
|
47
|
+
|
|
48
|
+
[tuning]
|
|
49
|
+
${(0,Ji.default)(i??{}).map(([V,ge])=>`${V}: ${ge}`).join(`
|
|
50
|
+
`)}
|
|
51
|
+
|
|
52
|
+
[limit params]
|
|
53
|
+
containerSizeFactor: ${y},
|
|
54
|
+
containerSizeLimit: ${T?.width??0} x ${T?.height??0},
|
|
55
|
+
estimatedThroughput: ${t},
|
|
56
|
+
stallsPredictedThroughput: ${h},
|
|
57
|
+
reserve: ${a},
|
|
58
|
+
playbackRate: ${o},
|
|
59
|
+
playbackRateFactor: ${A},
|
|
60
|
+
forwardBufferHealth: ${n},
|
|
61
|
+
bitrateFactor: ${G},
|
|
62
|
+
minBufferToSwitchUp: ${i.minBufferToSwitchUp},
|
|
63
|
+
droppedVideoMaxQualityLimit: ${p},
|
|
64
|
+
stallsVideoMaxQualityLimit: ${d},
|
|
65
|
+
limitsAreInvalid: ${F},
|
|
66
|
+
maxQualityLimit: ${r?.max},
|
|
67
|
+
minQualityLimit: ${r?.min},
|
|
68
|
+
|
|
69
|
+
[limited video tracks]
|
|
70
|
+
${(0,Ji.default)(B).map(([V,ge])=>`${V}: ${ge}`).join(`
|
|
71
|
+
`)||"All tracks are available"}
|
|
72
|
+
|
|
73
|
+
[best video track] ${I?.quality}
|
|
74
|
+
[selected video track] ${R?.quality}
|
|
75
|
+
`}),R},Wn=(s,e,t,{estimatedThroughput:i,tuning:r,playbackRate:a,forwardBufferHealth:n,history:o,abrLogger:u,stallsPredictedThroughput:l})=>{(0,L.assertNotEmptyArray)(t,zn);let c=r.considerPlaybackRate&&(0,L.isNonNullable)(a)?a:1,p=[...t].sort(kr(-1)),d=s.bitrate;(0,L.assertNonNullable)(d);let h=c*jn(n??.5,r.bitrateAudioFactorAtEmptyBuffer,r.bitrateAudioFactorAtFullBuffer),m,g=ys(s,e,t,r.minVideoAudioRatio),y=l||i;(0,L.isNonNullable)(y)&&isFinite(y)&&(m=p.find(x=>(0,L.isNonNullable)(x.bitrate)&&(0,L.isNonNullable)(g?.bitrate)?y-d>=x.bitrate*h&&x.bitrate>=g.bitrate:!1)),m||(m=g);let T=o?.last,A=m&&Gn(r,u,m,o);return(0,L.isNonNullable)(o)&&A?.bitrate!==T?.bitrate&&u({message:`
|
|
43
76
|
[AUDIO TRACKS ABR]
|
|
44
77
|
[available audio tracks]
|
|
45
|
-
${t.map(
|
|
78
|
+
${t.map(x=>`{ id: ${x.id}, bitrate: ${x.bitrate} }`).join(`
|
|
46
79
|
`)}
|
|
47
80
|
|
|
48
81
|
[tuning]
|
|
49
|
-
${(0,
|
|
82
|
+
${(0,Ji.default)(r??{}).map(([x,M])=>`${x}: ${M}`).join(`
|
|
50
83
|
`)}
|
|
51
84
|
|
|
52
85
|
[limit params]
|
|
53
86
|
estimatedThroughput: ${i},
|
|
54
87
|
stallsPredictedThroughput: ${l},
|
|
55
|
-
reserve: ${
|
|
56
|
-
playbackRate: ${
|
|
57
|
-
playbackRateFactor: ${
|
|
88
|
+
reserve: ${d},
|
|
89
|
+
playbackRate: ${a},
|
|
90
|
+
playbackRateFactor: ${c},
|
|
58
91
|
forwardBufferHealth: ${n},
|
|
59
|
-
bitrateFactor: ${
|
|
60
|
-
minBufferToSwitchUp: ${
|
|
92
|
+
bitrateFactor: ${h},
|
|
93
|
+
minBufferToSwitchUp: ${r.minBufferToSwitchUp},
|
|
61
94
|
|
|
62
95
|
[selected audio track] ${A?.id}
|
|
63
|
-
`}),A};var ye=r=>new URL(r).hostname;var V=require("@vkontakte/videoplayer-shared");var $f=U(Ut(),1);var wf=U(ze(),1),kf=r=>{if(r instanceof DOMException&&(0,wf.default)(["Failed to load because no supported source was found.","The element has no supported sources."],r.message))throw r;return!(r instanceof DOMException&&(r.code===20||r.name==="AbortError"))},_e=async(r,e)=>{let t=r.muted;try{await r.play()}catch(i){if(!kf(i))return!1;if(e&&e(),t)return console.warn(i),!1;r.muted=!0;try{await r.play()}catch(a){return kf(a)&&(r.muted=!1,console.warn(a)),!1}}return!0};var Qe=require("@vkontakte/videoplayer-shared");var Af=U(Ni(),1),vt=require("@vkontakte/videoplayer-shared");function Te(){return(0,vt.now)()}function ou(r){return Te()-r}function uu(r){let e=r.split("/"),t=e.slice(0,e.length-1).join("/"),i=/^([a-z]+:)?\/\//i,a=n=>i.test(n);return{resolve:(n,o,u=!1)=>{a(n)||(n.startsWith("/")||(n="/"+n),n=t+n);let l=n.indexOf("?")>-1?"&":"?";return u&&(n+=l+"lowLat=1",l="&"),o&&(n+=l+"_rnd="+Math.floor(999999999*Math.random())),n}}}function Lf(r,e,t){let i=(...a)=>{t.apply(null,a),r.removeEventListener(e,i)};r.addEventListener(e,i)}function qi(r,e,t,i){let a=window.XMLHttpRequest,s,n,o,u=!1,l=0,d,p,h=!1,m="arraybuffer",b=7e3,v=2e3,T=()=>{if(u)return;(0,vt.assertNonNullable)(d);let C=ou(d),ie;if(C<v){ie=v-C,setTimeout(T,ie);return}v*=2,v>b&&(v=b),n&&n.abort(),n=new a,W()},I=C=>(s=C,q),A=C=>(p=C,q),P=()=>(m="json",q),$=()=>{if(!u){if(--l>=0){T(),i&&i();return}u=!0,p&&p(),t&&t()}},k=C=>(h=C,q),W=()=>{d=Te(),n=new a,n.open("get",r);let C=0,ie,D=0,be=()=>((0,vt.assertNonNullable)(d),Math.max(d,Math.max(ie||0,D||0)));if(s&&n.addEventListener("progress",M=>{let Z=Te();s.updateChunk&&M.loaded>C&&(s.updateChunk(be(),M.loaded-C),C=M.loaded,ie=Z)}),o&&(n.timeout=o,n.addEventListener("timeout",()=>$())),n.addEventListener("load",()=>{if(u)return;(0,vt.assertNonNullable)(n);let M=n.status;if(M>=200&&M<300){let{response:Z,responseType:re}=n,ce=Z?.byteLength;if(typeof ce=="number"&&s){let ge=ce-C;ge&&s.updateChunk&&s.updateChunk(be(),ge)}re==="json"&&(!Z||!(0,Af.default)(Z).length)?$():(p&&p(),e(Z))}else $()}),n.addEventListener("error",()=>{$()}),h){let M=()=>{(0,vt.assertNonNullable)(n),n.readyState===XMLHttpRequest.HEADERS_RECEIVED&&(D=Te(),n.removeEventListener("readystatechange",M))};n.addEventListener("readystatechange",M)}return n.responseType=m,n.send(),q},q={withBitrateReporting:I,withParallel:k,withJSONResponse:P,withRetryCount:C=>(l=C,q),withRetryInterval:(C,ie)=>((0,vt.isNonNullable)(C)&&(v=C),(0,vt.isNonNullable)(ie)&&(b=ie),q),withTimeout:C=>(o=C,q),withFinally:A,send:W,abort:()=>{n&&(n.abort(),n=void 0),u=!0,p&&p()}};return q}var Lr=class{constructor(e){this.intervals=[];this.currentRate=0;this.logger=e}_updateRate(e){let t=.2;this.currentRate&&(e<this.currentRate*.1?t=.8:e<this.currentRate*.5?t=.5:e<this.currentRate*.7&&(t=.3)),e=Math.max(1,Math.min(e,100*1024*1024)),this.currentRate=this.currentRate?this.currentRate*(1-t)+e*t:e}_createInterval(e,t,i){return{start:e,end:t,bytes:i}}_doMergeIntervals(e,t){e.start=Math.min(t.start,e.start),e.end=Math.max(t.end,e.end),e.bytes+=t.bytes}_mergeIntervals(e,t){return e.start<=t.end&&t.start<=e.end?(this._doMergeIntervals(e,t),!0):!1}_flushIntervals(){if(!this.intervals.length)return!1;let e=this.intervals[0].start,t=this.intervals[this.intervals.length-1].end-500;if(t-e>2e3){let i=0,a=0;for(;this.intervals.length>0;){let s=this.intervals[0];if(s.end<=t)i+=s.end-s.start,a+=s.bytes,this.intervals.splice(0,1);else{if(s.start>=t)break;{let n=t-s.start,o=s.end-s.start;i+=n;let u=s.bytes*n/o;a+=u,s.start=t,s.bytes-=u}}}if(a>0&&i>0){let s=a*8/(i/1e3);return this._updateRate(s),this.logger(`rate updated, new=${Math.round(s/1024)}K; average=${Math.round(this.currentRate/1024)}K bytes/ms=${Math.round(a)}/${Math.round(i)} interval=${Math.round(t-e)}`),!0}}return!1}_joinIntervals(){let e;do{e=!1;for(let t=0;t<this.intervals.length-1;++t)this._mergeIntervals(this.intervals[t],this.intervals[t+1])&&(this.intervals.splice(t+1,1),e=!0)}while(e)}addInterval(e,t,i){return this.intervals.push(this._createInterval(e,t,i)),this._joinIntervals(),this.intervals.length>100&&(this.logger(`too many intervals (${this.intervals.length}); will merge`,{type:"warn"}),this._doMergeIntervals(this.intervals[1],this.intervals[0]),this.intervals.splice(0,1)),this._flushIntervals()}getBitRate(){return this.currentRate}};var Rf=U(Ni(),1);var Rr=class{constructor(e,t,i,a,s){this.pendingQueue=[];this.activeRequests={};this.completeRequests={};this.averageSegmentDuration=2e3;this.lastPrefetchStart=0;this.throttleTimeout=null;this.RETRY_COUNT=e,this.TIMEOUT=t,this.BITRATE_ESTIMATOR=i,this.MAX_PARALLEL_REQUESTS=a,this.logger=s}limitCompleteCount(){let e;for(;(e=Object.keys(this.completeRequests)).length>this._getParallelRequestCount()+2;){let t=e[Math.floor(Math.random()*e.length)];this.logger(`Dropping completed request for url ${t}`,{type:"warn"}),delete this.completeRequests[t]}}_sendRequest(e,t){let i=Te(),a=u=>{delete this.activeRequests[t],this.limitCompleteCount(),this.completeRequests[t]=e,this._sendPending(),e._error=1,e._errorMsg=u,e._errorCB?e._errorCB(u):(this.limitCompleteCount(),this.completeRequests[t]=e)},s=u=>{e._complete=1,e._responseData=u,e._downloadTime=Te()-i,delete this.activeRequests[t],this._sendPending(),e._cb?e._cb(u,e._downloadTime):(this.limitCompleteCount(),this.completeRequests[t]=e)},n=()=>{e._finallyCB&&e._finallyCB()},o=()=>{e._retry=1,e._retryCB&&e._retryCB()};e._request=qi(t,s,()=>a("error"),o),e._request.withRetryCount(this.RETRY_COUNT).withTimeout(this.TIMEOUT).withBitrateReporting(this.BITRATE_ESTIMATOR).withParallel(this._getParallelRequestCount()>1).withFinally(n),this.activeRequests[t]=e,e._request.send(),this.lastPrefetchStart=Te()}_getParallelRequestCount(){return Math.min(this.MAX_PARALLEL_REQUESTS,this.averageSegmentDuration<3e3?3:2)}_getPrefetchDelay(){return Math.max(100,Math.min(5e3,this.averageSegmentDuration/3))}_canSendPending(){let e=this._getParallelRequestCount(),t=Te();if(Object.keys(this.activeRequests).length>=e)return!1;let i=this._getPrefetchDelay()-(t-this.lastPrefetchStart);return this.throttleTimeout&&clearTimeout(this.throttleTimeout),i>0?(this.throttleTimeout=window.setTimeout(()=>this._sendPending(),i),!1):!0}_sendPending(){for(;this._canSendPending();){let e=this.pendingQueue.pop();if(e){if(this.activeRequests[e]||this.completeRequests[e])continue;this.logger(`Submitting pending request url=${e}`),this._sendRequest({},e)}else return}}_removeFromActive(e){delete this.completeRequests[e],delete this.activeRequests[e]}abortAll(){(0,Rf.default)(this.activeRequests).forEach(e=>{e&&e._request&&e._request.abort()}),this.activeRequests={},this.pendingQueue=[],this.completeRequests={}}requestData(e,t,i,a){let s={};return s.send=()=>{let n=this.activeRequests[e]||this.completeRequests[e];if(n)n._cb=t,n._errorCB=i,n._retryCB=a,n._finallyCB=s._finallyCB,n._error||n._complete?(this._removeFromActive(e),setTimeout(()=>{n._complete?(this.logger(`Requested url already prefetched, url=${e}`),t(n._responseData,n._downloadTime)):(this.logger(`Requested url already prefetched with error, url=${e}`),i(n._errorMsg)),s._finallyCB&&s._finallyCB()},0)):this.logger(`Attached to active request, url=${e}`);else{let o=this.pendingQueue.indexOf(e);o!==-1&&this.pendingQueue.splice(o,1),this.logger(`Request not prefetched, starting new request, url=${e}${o===-1?"":"; removed pending"}`),this._sendRequest(s,e)}},s._cb=t,s._errorCB=i,s._retryCB=a,s.abort=function(){s.request&&s.request.abort()},s.withFinally=n=>(s._finallyCB=n,s),s}prefetch(e){this.activeRequests[e]||this.completeRequests[e]?this.logger(`Request already active for url=${e}`):(this.logger(`Added to pending queue; url=${e}`),this.pendingQueue.unshift(e),this._sendPending())}optimizeForSegDuration(e){this.averageSegmentDuration=e}};var Mf=require("@vkontakte/videoplayer-shared");var Ls=1e4,lu=3;var Lk=6e4,Rk=10,$k=1,Mk=500,$r=class{constructor(e){this.paused=!1;this.autoQuality=!0;this.autoQualityLimits=void 0;this.buffering=!0;this.destroyed=!1;this.videoPlayStarted=!1;this.lowLatency=!1;this.bitrate=0;this.manifest=[];this.sourceBuffer=0;this.bufferStates=[];this.sourceJitter=-1;this.waitingForFirstBufferAfterSrcChange=!1;this.params=e,this.soundProhibitedEvent$=new Mf.Subject,this.chunkRateEstimator=new Lr(this.params.logger),this._initVideo()}attachSource(e){this.manifestUrl=e,this.urlResolver=uu(e),this.bitrateSwitcher=this._initBitrateSwitcher(),this._initManifest()}setAutoQualityEnabled(e){this.autoQuality=e}setAutoQualityLimits(e){this.autoQualityLimits=e}switchByName(e){let t;for(let i=0;i<this.manifest.length;++i)if(t=this.manifest[i],t.name===e){this._switchToQuality(t);return}}catchUp(){this.rep&&this.rep.stop(),this.currentManifestEntry&&(this.paused=!1,this._initPlayerWith(this.currentManifestEntry),this._notifyBuffering(!0))}stop(){this.params.videoElement.pause(),this.rep&&(this.rep.stop(),this.rep=null)}pause(){this.paused=!0,this.params.videoElement.pause(),this.videoPlayStarted=!1,this._notifyBuffering(!1)}play(){this.paused=!1;let e=this.lowLatency&&this._getBufferSizeSec()>this.sourceJitter+5;this.rep&&!e?(this.bufferStates=[],this.videoPlayStarted=!1,this.shouldPlay()?this._playVideoElement():this._notifyBuffering(!0)):this.catchUp()}startPlay(e,t){this.autoQuality=t,this._initPlayerWith(e)}destroy(){this.destroyed=!0,this.rep&&(this.rep.stop(),this.rep=null),this.manifestRequest&&this.manifestRequest.abort(),this.manifestRefetchTimer&&(clearTimeout(this.manifestRefetchTimer),this.manifestRefetchTimer=void 0)}reinit(e){this.manifestUrl=e,this.urlResolver=uu(e),this.catchUp()}_handleNetworkError(){this.params.logger("Fatal network error"),this.params.playerCallback({name:"error",type:"network"})}_retryCallback(){this.params.playerCallback({name:"retry"})}_getBufferSizeSec(){let e=this.params.videoElement,t=0,i=e.buffered.length;return i!==0&&(t=e.buffered.end(i-1)-Math.max(e.currentTime,e.buffered.start(0))),t}_notifyBuffering(e){this.destroyed||(this.params.logger(`buffering: ${e}`),this.params.playerCallback({name:"buffering",isBuffering:e}),this.buffering=e)}_initVideo(){let{videoElement:e,logger:t}=this.params;e.addEventListener("error",()=>{!!e.error&&!this.destroyed&&(t(`Video element error: ${e.error?.code}`),this.params.playerCallback({name:"error",type:"media"}))}),e.addEventListener("timeupdate",()=>{let i=this._getBufferSizeSec();!this.paused&&i<.3?this.buffering||(this.buffering=!0,window.setTimeout(()=>{!this.paused&&this.buffering&&this._notifyBuffering(!0)},(i+.1)*1e3)):this.buffering&&this.videoPlayStarted&&this._notifyBuffering(!1)}),e.addEventListener("playing",()=>{t("playing")}),e.addEventListener("stalled",()=>this._fixupStall()),e.addEventListener("waiting",()=>this._fixupStall())}_fixupStall(){let{logger:e,videoElement:t}=this.params,i=t.buffered.length,a;i!==0&&!this.waitingForFirstBufferAfterSrcChange&&(a=t.buffered.start(i-1),t.currentTime<a&&(e("Fixup stall"),t.currentTime=a))}_selectQuality(e){let{videoElement:t}=this.params,i,a,s,n=t&&1.62*(z.display.pixelRatio||1)*t.offsetHeight||520;for(let o=0;o<this.manifest.length;++o){s=this.manifest[o];let{max:u,min:l}=this.autoQualityLimits||{};!Sf({limits:this.autoQualityLimits,highestAvailableHeight:this.manifest[0].video.height,lowestAvailableHeight:(0,$f.default)(this.manifest,-1).video.height})&&(u&&s.video.height>u||l&&s.video.height<l)||(s.bitrate<e&&n>Math.min(s.video.height,s.video.width)?(!a||s.bitrate>a.bitrate)&&(a=s):(!i||i.bitrate>s.bitrate)&&(i=s))}return a||i}shouldPlay(){if(this.paused)return!1;let t=this._getBufferSizeSec()-Math.max(1,this.sourceJitter);return t>3||(0,Qe.isNonNullable)(this.downloadRate)&&(this.downloadRate>1.5&&t>2||this.downloadRate>2&&t>1)}_setVideoSrc(e,t){let{logger:i,videoElement:a,playerCallback:s}=this.params;this.mediaSource=new window.MediaSource,i("setting video src"),a.src=URL.createObjectURL(this.mediaSource),this.mediaSource.addEventListener("sourceopen",()=>{this.mediaSource&&(this.sourceBuffer=this.mediaSource.addSourceBuffer(e.codecs),this.bufferStates=[],t())}),this.videoPlayStarted=!1,a.addEventListener("canplay",()=>{this.shouldPlay()&&(this.videoPlayStarted=!0,this._playVideoElement())});let n=()=>{Lf(a,"progress",()=>{a.buffered.length?(a.currentTime=a.buffered.start(0),this.waitingForFirstBufferAfterSrcChange=!1,s({name:"playing"})):n()})};this.waitingForFirstBufferAfterSrcChange=!0,n()}_initPlayerWith(e){this.bitrate=0,this.rep=0,this.sourceBuffer=0,this.bufferStates=[],this.filesFetcher&&this.filesFetcher.abortAll(),this.filesFetcher=new Rr(lu,Ls,this.bitrateSwitcher,this.params.config.maxParallelRequests,this.params.logger),this._setVideoSrc(e,()=>this._switchToQuality(e))}_representation(e){let{logger:t,videoElement:i,playerCallback:a}=this.params,s=!1,n=null,o=null,u=null,l=null,d=!1,p=()=>{let $=s&&(!d||d===this.rep);return $||t("Not running!"),$},h=($,k,W)=>{u&&u.abort(),u=qi(this.urlResolver.resolve($,!1),k,W,()=>this._retryCallback()).withTimeout(Ls).withBitrateReporting(this.bitrateSwitcher).withRetryCount(lu).withFinally(()=>{u=null}).send()},m=($,k,W)=>{(0,Qe.assertNonNullable)(this.filesFetcher),o?.abort(),o=this.filesFetcher.requestData(this.urlResolver.resolve($,!1),k,W,()=>this._retryCallback()).withFinally(()=>{o=null}).send()},b=$=>{let k=i.playbackRate;i.playbackRate!==$&&(t(`Playback rate switch: ${k}=>${$}`),i.playbackRate=$)},v=$=>{this.lowLatency=$,t(`lowLatency changed to ${$}`),T()},T=()=>{if(!this.lowLatency&&!this.params.config.isLiveCatchUpMode)b(1);else{let $=this._getBufferSizeSec();if(this.bufferStates.length<5){b(1);return}let W=Te()-1e4,Y=0;for(let K=0;K<this.bufferStates.length;K++){let E=this.bufferStates[K];$=Math.min($,E.buf),E.ts<W&&Y++}this.bufferStates.splice(0,Y),t(`update playback rate; minBuffer=${$} drop=${Y} jitter=${this.sourceJitter}`);let X=$-$k;this.sourceJitter>=0?X-=this.sourceJitter/2:this.sourceJitter-=1,X>3?b(1.15):X>1?b(1.1):X>.3?b(1.05):b(1)}},I=$=>{let k,W=()=>k&&k.start?k.start.length:0,Y=M=>k.start[M]/1e3,X=M=>k.dur[M]/1e3,K=M=>k.fragIndex+M,E=(M,Z)=>({chunkIdx:K(M),startTS:Y(M),dur:X(M),discontinuity:Z}),q=()=>{let M=0;if(k&&k.dur){let Z=this.lowLatency?this.params.config.lowLatencyMinBuffer:this.params.config.minBuffer,re=this.lowLatency?this.params.config.lowLatencyMinBufferSegments:this.params.config.minBufferSegments,ce=Z;this.sourceJitter>1&&(ce+=this.sourceJitter-1);let ge=k.dur.length-1;for(;ge>=0&&(ce-=k.dur[ge],!(ce<=0));--ge);M=Math.min(ge,k.dur.length-1-re),M=Math.max(M,0)}return E(M,!0)},C=M=>{let Z=W();if(!(Z<=0)){if((0,Qe.isNonNullable)(M)){for(let re=0;re<Z;re++)if(Y(re)>M)return E(re)}return q()}},ie=M=>{let Z=W(),re=M?M.chunkIdx+1:0,ce=re-k.fragIndex;if(!(Z<=0)){if(!M||ce<0||ce-Z>Rk)return t(`Resync: offset=${ce} bChunks=${Z} chunk=`+JSON.stringify(M)),q();if(!(ce>=Z))return E(re-k.fragIndex,!1)}},D=(M,Z,re)=>{l&&l.abort(),l=qi(this.urlResolver.resolve(M,!0,this.lowLatency),Z,re,()=>this._retryCallback()).withTimeout(Ls).withRetryCount(lu).withFinally(()=>{l=null}).withJSONResponse().send()};return{seek:(M,Z)=>{D($,re=>{if(!p())return;k=re;let ce=!!k.lowLatency;ce!==this.lowLatency&&v(ce);let ge=0;for(let Re=0;Re<k.dur.length;++Re)ge+=k.dur[Re];ge>0&&((0,Qe.assertNonNullable)(this.filesFetcher),this.filesFetcher.optimizeForSegDuration(ge/k.dur.length)),a({name:"index",zeroTime:k.zeroTime,shiftDuration:k.shiftDuration}),this.sourceJitter=k.hasOwnProperty("jitter")?Math.min(10,Math.max(.01,k.jitter/1e3)):1,M(C(Z))},()=>this._handleNetworkError())},nextChunk:ie}},A=()=>{s=!1,o&&o.abort(),u&&u.abort(),l&&l.abort(),(0,Qe.assertNonNullable)(this.filesFetcher),this.filesFetcher.abortAll()};return d={start:$=>{let{videoElement:k,logger:W}=this.params,Y=I(e.jidxUrl),X,K,E,q,C=0,ie,D,be,M=()=>{ie&&(clearTimeout(ie),ie=void 0);let H=Math.max(Mk,1e3*(this._getBufferSizeSec()-this.sourceJitter-5)),Me=C+H,ke=Te(),ve=Math.min(1e4,Me-ke);C=ke;let We=()=>{l||p()&&Y.seek(()=>{p()&&(C=Te(),Z(),M())})};ve>0?ie=window.setTimeout(()=>{this.paused?M():We()},ve):We()},Z=()=>{let H;for(;H=Y.nextChunk(q);)q=H,$e(H);let Me=Y.nextChunk(E);if(Me){if(E&&Me.discontinuity){W("Detected discontinuity; restarting playback"),this.paused?M():(A(),this._initPlayerWith(e));return}Re(Me)}else M()},re=(H,Me)=>{if(!p()||!this.sourceBuffer)return;let ke,ve,We,Mt=lt=>{window.setTimeout(()=>{p()&&re(H,Me)},lt)};if(this.sourceBuffer.updating)W("Source buffer is updating; delaying appendBuffer"),Mt(100);else{let lt=Te(),Fe=k.currentTime;!this.paused&&k.buffered.length>1&&D===Fe&<-be>500&&(W("Stall suspected; trying to fix"),this._fixupStall()),D!==Fe&&(D=Fe,be=lt);let Ct=this._getBufferSizeSec();if(Ct>30)W(`Buffered ${Ct} seconds; delaying appendBuffer`),Mt(2e3);else try{this.sourceBuffer.appendBuffer(H),this.videoPlayStarted?(this.bufferStates.push({ts:lt,buf:Ct}),T(),this.bufferStates.length>200&&this.bufferStates.shift()):this.shouldPlay()&&(this.videoPlayStarted=!0,this._playVideoElement()),Me&&Me()}catch(ct){if(ct.name==="QuotaExceededError")W("QuotaExceededError; delaying appendBuffer"),We=this.sourceBuffer.buffered.length,We!==0&&(ke=this.sourceBuffer.buffered.start(0),ve=Fe,ve-ke>4&&this.sourceBuffer.remove(ke,ve-3)),Mt(1e3);else throw ct}}},ce=()=>{K&&X&&(W([`Appending chunk, sz=${K.byteLength}:`,JSON.stringify(E)]),re(K,function(){K=null,Z()}))},ge=H=>e.fragUrlTemplate.replace("%%id%%",H.chunkIdx),Re=H=>{p()&&m(ge(H),(Me,ke)=>{if(p()){if(ke/=1e3,K=Me,E=H,n=H.startTS,ke){let ve=Math.min(10,H.dur/ke);this.downloadRate=this.downloadRate?(1-.3)*this.downloadRate+.3*ve:ve}ce()}},()=>this._handleNetworkError())},$e=H=>{p()&&((0,Qe.assertNonNullable)(this.filesFetcher),this.filesFetcher.prefetch(this.urlResolver.resolve(ge(H),!1)))},ee=H=>{p()&&(e.cachedHeader=H,re(H,()=>{X=!0,ce()}))};s=!0,Y.seek(H=>{if(p()){if(C=Te(),!H){M();return}q=H,!(0,Qe.isNullable)($)||H.startTS>$?Re(H):(E=H,Z())}},$),e.cachedHeader?ee(e.cachedHeader):h(e.headerUrl,ee,()=>this._handleNetworkError())},stop:A,getTimestampSec:()=>n},d}_switchToQuality(e){let{logger:t,playerCallback:i}=this.params,a;e.bitrate!==this.bitrate&&(this.rep&&(a=this.rep.getTimestampSec(),(0,Qe.isNonNullable)(a)&&(a+=.1),this.rep.stop()),this.currentManifestEntry=e,this.rep=this._representation(e),t(`switch to quality: codecs=${e.codecs}; headerUrl=${e.headerUrl}; bitrate=${e.bitrate}`),this.bitrate=e.bitrate,(0,Qe.assertNonNullable)(this.bitrateSwitcher),this.bitrateSwitcher.notifySwitch(this.bitrate),this.rep.start(a),i({name:"qualitySwitch",quality:e}))}_qualityAvailable(e){return(0,Qe.isNonNullable)(this.manifest.find(t=>t.name===e))}_initBitrateSwitcher(){let{logger:e,playerCallback:t}=this.params,i=p=>{if(!this.autoQuality)return;let h,m,b;if(this.currentManifestEntry&&this._qualityAvailable(this.currentManifestEntry.name)&&p<this.bitrate&&(m=this._getBufferSizeSec(),b=p/this.bitrate,m>10&&b>.8||m>15&&b>.5||m>20&&b>.3)){e(`Not switching: buffer=${Math.floor(m)}; bitrate=${this.bitrate}; newRate=${Math.floor(p)}`);return}h=this._selectQuality(p),h?this._switchToQuality(h):e(`Could not find quality by bitrate ${p}`)},s={updateChunk:(h,m)=>{let b=Te();if(this.chunkRateEstimator.addInterval(h,b,m)){let T=this.chunkRateEstimator.getBitRate();return t({name:"bandwidth",size:m,duration:b-h,speed:T}),!0}},get:()=>{let h=this.chunkRateEstimator.getBitRate();return h?h*.85:0}},n=-1/0,o,u=!0,l=()=>{let p=s.get();if(p&&o&&this.autoQuality){if(u&&p>o&&ou(n)<3e4)return;i(p)}u=this.autoQuality};return{updateChunk:(p,h)=>{let m=s.updateChunk(p,h);return m&&l(),m},notifySwitch:p=>{let h=Te();p<o&&(n=h),o=p}}}_fetchManifest(e,t,i){this.manifestRequest=qi(this.urlResolver.resolve(e,!0),t,i,()=>this._retryCallback()).withJSONResponse().withTimeout(Ls).withRetryCount(this.params.config.manifestRetryMaxCount).withRetryInterval(this.params.config.manifestRetryInterval,this.params.config.manifestRetryMaxInterval).send().withFinally(()=>{this.manifestRequest=void 0})}_playVideoElement(){let{videoElement:e}=this.params;_e(e,()=>{this.soundProhibitedEvent$.next()}).then(t=>{t||(this.params.liveOffset.pause(),this.params.videoState.setState("paused"))})}_handleManifestUpdate(e){let{logger:t,playerCallback:i,videoElement:a}=this.params,s=n=>{let o=[];return n?.length?(n.forEach((u,l)=>{u.video&&a.canPlayType(u.codecs).replace(/no/,"")&&window.MediaSource?.isTypeSupported?.(u.codecs)&&(u.index=l,o.push(u))}),o.sort(function(u,l){return u.video&&l.video?l.video.height-u.video.height:l.bitrate-u.bitrate}),o):(i({name:"error",type:"empty_manifest"}),[])};this.manifest=s(e),t(`Valid manifest entries: ${this.manifest.length}/${e.length}`),i({name:"manifest",manifest:this.manifest})}_refetchManifest(e){this.destroyed||(this.manifestRefetchTimer&&clearTimeout(this.manifestRefetchTimer),this.manifestRefetchTimer=window.setTimeout(()=>{this._fetchManifest(e,t=>{this.destroyed||(this._handleManifestUpdate(t),this._refetchManifest(e))},()=>this._refetchManifest(e))},Lk))}_initManifest(){this._fetchManifest(this.manifestUrl,e=>{this.destroyed||(this._handleManifestUpdate(e),this._refetchManifest(this.manifestUrl))},()=>this._handleNetworkError())}};var Cf=U(Li(),1),ue=require("@vkontakte/videoplayer-shared"),cu=class{constructor(){this.onDroopedVideoFramesLimit$=new ue.Subject;this.subscription=new ue.Subscription;this.playing=!1;this.tracks=[];this.forceChecker$=new ue.Subject;this.isForceCheckCounter=0;this.prevTotalVideoFrames=0;this.prevDroppedVideoFrames=0;this.limitCounts={};this.handleChangeVideoQuality=()=>{let e=this.tracks.find(({size:t})=>t?.height===this.video.videoHeight&&t?.width===this.video.videoWidth);e&&!(0,ue.isInvariantQuality)(e.quality)&&this.onChangeQuality(e.quality)};this.checkDroppedFrames=()=>{let{totalVideoFrames:e,droppedVideoFrames:t}=this.video.getVideoPlaybackQuality(),i=e-this.prevTotalVideoFrames,a=t-this.prevDroppedVideoFrames,s=1-(i-a)/i;!isNaN(s)&&s>0&&this.log({message:`[dropped]. current dropped percent: ${s}, limit: ${this.droppedFramesChecker.percentLimit}`}),!isNaN(s)&&s>=this.droppedFramesChecker.percentLimit&&(0,ue.isHigher)(this.currentQuality,this.droppedFramesChecker.minQualityBanLimit)&&(this.limitCounts[this.currentQuality]=(this.limitCounts[this.currentQuality]??0)+1,this.maxQualityLimit=this.getMaxQualityLimit(this.currentQuality),this.currentTimer&&window.clearTimeout(this.currentTimer),this.currentTimer=window.setTimeout(()=>this.maxQualityLimit=this.getMaxQualityLimit(),this.droppedFramesChecker.qualityUpWaitingTime),this.onDroopedVideoFramesLimitTrigger()),this.savePrevFrameCounts(e,t)}}connect(e){this.log=e.logger.createComponentLog("DroppedFramesManager"),this.video=e.video,this.isAuto=e.isAuto,this.tracks=e.tracks,this.droppedFramesChecker=e.droppedFramesChecker,this.subscription.add(e.playing$.subscribe(()=>this.playing=!0)),this.subscription.add(e.pause$.subscribe(()=>this.playing=!1)),this.isEnabled&&this.subscribe()}destroy(){this.currentTimer&&window.clearTimeout(this.currentTimer),this.subscription.unsubscribe()}get droppedVideoMaxQualityLimit(){return this.maxQualityLimit}subscribe(){this.subscription.add((0,ue.fromEvent)(this.video,"resize").subscribe(this.handleChangeVideoQuality));let e=(0,ue.interval)(this.droppedFramesChecker.checkTime).pipe((0,ue.filter)(()=>this.playing),(0,ue.filter)(()=>{let a=!!this.isForceCheckCounter;return a&&(this.isForceCheckCounter-=1),!a})),t=this.forceChecker$.pipe((0,ue.debounce)(this.droppedFramesChecker.checkTime)),i=(0,ue.merge)(e,t);this.subscription.add(i.subscribe(this.checkDroppedFrames))}onChangeQuality(e){this.currentQuality=e;let{totalVideoFrames:t,droppedVideoFrames:i}=this.video.getVideoPlaybackQuality();this.savePrevFrameCounts(t,i),this.isForceCheckCounter=this.droppedFramesChecker.tickCountAfterQualityChange,this.forceChecker$.next()}onDroopedVideoFramesLimitTrigger(){this.isAuto.getState()&&(this.log({message:`[onDroopedVideoFramesLimit]. maxQualityLimit: ${this.maxQualityLimit}`}),this.onDroopedVideoFramesLimit$.next())}getMaxQualityLimit(e){let t=(0,Cf.default)(this.limitCounts).filter(([,i])=>i>=this.droppedFramesChecker.countLimit).sort(([i],[a])=>(0,ue.isLower)(i,a)?-1:1)?.[0]?.[0];return e??t}get isEnabled(){return this.droppedFramesChecker.enabled&&this.isDroppedFramesCheckerSupport}get isDroppedFramesCheckerSupport(){return!!this.video&&typeof this.video.getVideoPlaybackQuality=="function"}savePrevFrameCounts(e,t){this.prevTotalVideoFrames=e,this.prevDroppedVideoFrames=t}},Rs=cu;var $s=require("@vkontakte/videoplayer-shared"),Df=require("@vkontakte/videoplayer-shared");var Mr=()=>!!window.documentPictureInPicture?.window||!!document.pictureInPictureElement;var Ck=(r,e)=>new $s.Observable(t=>{if(!window.IntersectionObserver)return;let i={root:null},a=new IntersectionObserver((n,o)=>{n.forEach(u=>t.next(u.isIntersecting||Mr()))},{...i,...e});a.observe(r);let s=(0,Df.fromEvent)(document,"visibilitychange").pipe((0,$s.map)(n=>!document.hidden||Mr())).subscribe(n=>t.next(n));return()=>{a.unobserve(r),s.unsubscribe()}}),Je=Ck;var Dk=["paused","playing","ready"],Vk=["paused","playing","ready"],Cr=class{constructor(e){this.subscription=new V.Subscription;this.videoState=new j("stopped");this.representations$=new V.ValueSubject([]);this.droppedFramesManager=new Rs;this.maxSeekBackTime$=new V.ValueSubject(1/0);this.zeroTime$=new V.ValueSubject(void 0);this.liveOffset=new oi;this._dashCb=e=>{switch(e.name){case"buffering":{let t=e.isBuffering;this.params.output.isBuffering$.next(t);break}case"error":{this.params.output.error$.next({id:`DashLiveProviderInternal:${e.type}`,category:V.ErrorCategory.WTF,message:"LiveDashPlayer reported error"});break}case"manifest":{let t=e.manifest,i=[];for(let a of t){let s=a.name??a.index.toString(10),n=qt(a.name)??(0,V.videoSizeToQuality)(a.video),o=a.bitrate/1e3,u={...a.video};if(!n)continue;let l={id:s,quality:n,bitrate:o,size:u};i.push({track:l,representation:a})}this.representations$.next(i),this.params.output.availableVideoTracks$.next(i.map(({track:a})=>a)),this.videoState.getTransition()?.to==="manifest_ready"&&this.videoState.setState("manifest_ready");break}case"qualitySwitch":{let t=e.quality,i=this.representations$.getValue().find(({representation:a})=>a===t)?.track;this.params.output.hostname$.next(new URL(t.headerUrl,this.params.source.url).hostname),(0,V.isNonNullable)(i)&&this.params.output.currentVideoTrack$.next(i);break}case"bandwidth":{let{size:t,duration:i}=e;this.params.dependencies.throughputEstimator.addRawSpeed(t,i);break}case"index":{this.maxSeekBackTime$.next(e.shiftDuration||0),this.zeroTime$.next(e.zeroTime);break}}};this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.videoState.getTransition(),i=this.params.desiredState.playbackState.getState(),a=this.params.desiredState.playbackState.getTransition(),s=this.params.desiredState.seekState.getState();if(this.log({message:`[syncPlayback] videoState: ${e}; videoTransition: ${JSON.stringify(t)}; desiredPlaybackState: ${i}; seekState: ${JSON.stringify(s)};`}),i==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.dash.destroy(),this.video.removeAttribute("src"),this.video.load(),this.videoState.setState("stopped"));return}if(t)return;let n=this.params.desiredState.videoTrack.getTransition(),o=this.params.desiredState.autoVideoTrackSwitching.getTransition();if((0,du.default)(Vk,e)&&(n||o)){this.prepare();return}if(a?.to!=="paused"&&s.state==="requested"&&(0,du.default)(Dk,e)){this.seek(s.position-this.liveOffset.getTotalPausedTime());return}switch(e){case"stopped":this.videoState.startTransitionTo("manifest_ready"),this.dash.attachSource(xe(this.params.source.url));return;case"manifest_ready":this.videoState.startTransitionTo("ready"),this.prepare();break;case"ready":if(i==="paused")this.videoState.setState("paused");else if(i==="playing"){this.videoState.startTransitionTo("playing");let u=a?.from;u&&u==="ready"&&this.dash.catchUp(),this.dash.play()}return;case"playing":i==="paused"&&(this.videoState.startTransitionTo("paused"),this.liveOffset.pause(),this.dash.pause());return;case"paused":if(i==="playing")if(this.videoState.startTransitionTo("playing"),this.liveOffset.getTotalPausedTime()<this.params.config.maxPausedTime&&this.liveOffset.getTotalOffset()<this.maxSeekBackTime$.getValue())this.liveOffset.resume(),this.dash.play(),this.params.output.position$.next(-this.liveOffset.getTotalOffset()/1e3);else{let u=this.liveOffset.getTotalOffset();u>=this.maxSeekBackTime$.getValue()&&(u=0,this.liveOffset.resetTo(u)),this.liveOffset.resume(),this.params.output.position$.next(-u/1e3),this.dash.reinit(xe(this.params.source.url,u))}return;default:return(0,V.assertNever)(e)}};this.textTracksManager=new Xe(e.source.url),this.params=e,this.log=this.params.dependencies.logger.createComponentLog("DashLiveProvider");let t=a=>{e.output.error$.next({id:"DashLiveProvider",category:V.ErrorCategory.WTF,message:"DashLiveProvider internal logic error",thrown:a})};this.subscription.add((0,V.merge)(this.videoState.stateChangeStarted$.pipe((0,V.map)(a=>({transition:a,type:"start"}))),this.videoState.stateChangeEnded$.pipe((0,V.map)(a=>({transition:a,type:"end"})))).subscribe(({transition:a,type:s})=>{this.log({message:`[videoState change] ${s}: ${JSON.stringify(a)}`})})),this.video=De(e.container,e.tuning),this.params.output.element$.next(this.video),this.dash=this.createLiveDashPlayer(),this.subscription.add(this.dash.soundProhibitedEvent$.subscribe(this.params.output.soundProhibitedEvent$)),this.params.output.duration$.next(1/0),this.params.output.position$.next(0),this.params.output.isLive$.next(!0),this.params.output.canChangePlaybackSpeed$.next(!1),this.params.output.hostname$.next(ye(this.params.source.url)),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.textTracksManager.connect(this.video,this.params.desiredState,this.params.output);let i=Oe(this.video);this.subscription.add(()=>i.destroy()),this.subscription.add(this.representations$.pipe((0,V.map)(a=>a.map(({track:s})=>s)),(0,V.filter)(a=>!!a.length),(0,V.once)()).subscribe(a=>this.droppedFramesManager.connect({logger:this.params.dependencies.logger,video:this.video,droppedFramesChecker:this.params.tuning.droppedFramesChecker,isAuto:this.params.desiredState.autoVideoTrackSwitching,playing$:i.playing$,pause$:i.pause$,tracks:a}))),this.subscription.add(i.canplay$.subscribe(()=>{this.videoState.getTransition()?.to==="ready"&&this.videoState.setState("ready")},t)).add(i.pause$.subscribe(()=>{this.videoState.setState("paused")},t)).add(i.playing$.subscribe(()=>{this.params.desiredState.seekState.getState().state==="applying"&&this.params.output.seekedEvent$.next(),this.videoState.setState("playing")},t)).add(i.error$.subscribe(this.params.output.error$)).add(this.maxSeekBackTime$.pipe((0,V.filterChanged)(),(0,V.map)(a=>-a/1e3)).subscribe(this.params.output.duration$)).add((0,V.combine)({zeroTime:this.zeroTime$.pipe((0,V.filter)(V.isNonNullable)),position:i.timeUpdate$}).subscribe(({zeroTime:a,position:s})=>this.params.output.liveTime$.next(a+s*1e3),t)).add(gt(this.video,this.params.desiredState.isLooped,t)).add(Be(this.video,this.params.desiredState.volume,i.volumeState$,t)).add(i.volumeState$.subscribe(this.params.output.volume$,t)).add(Ke(this.video,this.params.desiredState.playbackRate,i.playbackRateState$,t)).add(i.loadStart$.subscribe(this.params.output.firstBytesEvent$)).add(i.loadedMetadata$.subscribe(this.params.output.loadedMetadataEvent$)).add(i.playing$.subscribe(this.params.output.firstFrameEvent$)).add(i.canplay$.subscribe(this.params.output.canplay$)).add(i.inPiP$.subscribe(this.params.output.inPiP$)).add(i.inFullscreen$.subscribe(this.params.output.inFullscreen$)).add(Je(this.video).subscribe(this.params.output.elementVisible$)).add(this.params.desiredState.autoVideoTrackLimits.stateChangeStarted$.subscribe(({to:{max:a,min:s}})=>{this.dash.setAutoQualityLimits({max:a&&(0,V.videoQualityToHeight)(a),min:s&&(0,V.videoQualityToHeight)(s)}),this.params.output.autoVideoTrackLimits$.next({max:a,min:s})})).add(this.videoState.stateChangeEnded$.subscribe(a=>{switch(a.to){case"stopped":this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.desiredState.playbackState.setState("stopped");break;case"manifest_ready":case"ready":this.params.desiredState.playbackState.getTransition()?.to==="ready"&&this.params.desiredState.playbackState.setState("ready");break;case"paused":this.params.desiredState.playbackState.setState("paused");break;case"playing":this.params.desiredState.playbackState.setState("playing");break;default:return(0,V.assertNever)(a.to)}},t)).add((0,V.merge)(e.desiredState.playbackState.stateChangeStarted$,e.desiredState.seekState.stateChangeEnded$,e.desiredState.videoTrack.stateChangeStarted$,e.desiredState.autoVideoTrackSwitching.stateChangeStarted$,this.videoState.stateChangeEnded$,this.droppedFramesManager.onDroopedVideoFramesLimit$,(0,V.observableFrom)(["init"])).pipe((0,V.debounce)(0)).subscribe(this.syncPlayback,t))}destroy(){this.subscription.unsubscribe(),this.textTracksManager.destroy(),this.droppedFramesManager.destroy(),this.dash.destroy(),this.params.output.element$.next(void 0),Ve(this.video)}createLiveDashPlayer(){let e=new $r({videoElement:this.video,videoState:this.videoState,liveOffset:this.liveOffset,config:{maxParallelRequests:this.params.config.maxParallelRequests,minBuffer:this.params.tuning.live.minBuffer,minBufferSegments:this.params.tuning.live.minBufferSegments,lowLatencyMinBuffer:this.params.tuning.live.lowLatencyMinBuffer,lowLatencyMinBufferSegments:this.params.tuning.live.lowLatencyMinBufferSegments,isLiveCatchUpMode:this.params.tuning.live.isLiveCatchUpMode,manifestRetryInterval:this.params.tuning.manifestRetryInterval,manifestRetryMaxInterval:this.params.tuning.manifestRetryMaxInterval,manifestRetryMaxCount:this.params.tuning.manifestRetryMaxCount},playerCallback:this._dashCb,logger:t=>{this.params.dependencies.logger.log({message:String(t),component:"LiveDashPlayer"})}});return e.pause(),e}prepare(){let e=this.representations$.getValue(),t=this.params.desiredState.videoTrack.getTransition()?.to??this.params.desiredState.videoTrack.getState(),i=this.params.desiredState.autoVideoTrackSwitching.getTransition()?.to??this.params.desiredState.autoVideoTrackSwitching.getState(),a=!i&&(0,V.isNonNullable)(t)?t:jt(e.map(({track:l})=>l),{container:this.video.getBoundingClientRect(),panelSize:this.params.panelSize,estimatedThroughput:this.params.dependencies.throughputEstimator.throughput$.getValue(),tuning:this.params.tuning.autoTrackSelection,limits:this.params.desiredState.autoVideoTrackLimits.getState(),droppedVideoMaxQualityLimit:this.droppedFramesManager.droppedVideoMaxQualityLimit,abrLogger:this.params.dependencies.abrLogger}),s=a?.id,n=this.params.desiredState.videoTrack.getTransition(),o=this.params.desiredState.videoTrack.getState()?.id,u=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(a&&(n||s!==o)&&this.setVideoTrack(a),u&&this.setAutoQuality(i),n||u||s!==o){let l=e.find(({track:d})=>d.id===s)?.representation;(0,V.assertNonNullable)(l,"Representations missing"),this.dash.startPlay(l,i)}}setVideoTrack(e){let t=this.representations$.getValue().find(({track:i})=>i.id===e.id)?.representation;(0,V.assertNonNullable)(t,`No such representation ${e.id}`),this.dash.switchByName(t.name),this.params.desiredState.videoTrack.setState(e)}setAutoQuality(e){this.dash.setAutoQualityEnabled(e),this.params.desiredState.autoVideoTrackSwitching.setState(e)}seek(e){this.log({message:`[seek] position: ${e}`}),this.params.output.willSeekEvent$.next();let t=this.params.desiredState.playbackState.getState(),i=this.videoState.getState(),a=t==="paused"&&i==="paused",s=-e,n=s<=this.maxSeekBackTime$.getValue()?s:0;this.params.output.position$.next(e/1e3),this.dash.reinit(xe(this.params.source.url,n)),a&&this.dash.pause(),this.liveOffset.resetTo(n,a)}};var Vf=Cr;var Hg=U(ze(),1);var Ui=(r,e)=>{let t=0;for(let i=0;i<r.length;i++){let a=r.start(i)*1e3,s=r.end(i)*1e3;a<=e&&e<=s&&(t=s)}return Math.max(t-e,0)};var N=require("@vkontakte/videoplayer-shared");var Ms=class{constructor(){Object.defineProperty(this,"listeners",{value:{},writable:!0,configurable:!0})}addEventListener(e,t,i){e in this.listeners||(this.listeners[e]=[]),this.listeners[e].push({callback:t,options:i})}removeEventListener(e,t){if(!(e in this.listeners))return;let i=this.listeners[e];for(let a=0,s=i.length;a<s;a++)if(i[a].callback===t){i.splice(a,1);return}}dispatchEvent(e){if(!(e.type in this.listeners))return;let i=this.listeners[e.type].slice();for(let a=0,s=i.length;a<s;a++){let n=i[a];try{n.callback.call(this,e)}catch(o){Promise.resolve().then(()=>{throw o})}n.options&&n.options.once&&this.removeEventListener(e.type,n.callback)}return!e.defaultPrevented}},Hi=class extends Ms{constructor(){super(),this.listeners||Ms.call(this),Object.defineProperty(this,"aborted",{value:!1,writable:!0,configurable:!0}),Object.defineProperty(this,"onabort",{value:null,writable:!0,configurable:!0}),Object.defineProperty(this,"reason",{value:void 0,writable:!0,configurable:!0})}toString(){return"[object AbortSignal]"}dispatchEvent(e){e.type==="abort"&&(this.aborted=!0,typeof this.onabort=="function"&&this.onabort.call(this,e)),super.dispatchEvent(e)}},Dr=class{constructor(){Object.defineProperty(this,"signal",{value:new Hi,writable:!0,configurable:!0})}abort(e){let t;try{t=new Event("abort")}catch{typeof document<"u"?document.createEvent?(t=document.createEvent("Event"),t.initEvent("abort",!1,!1)):(t=document.createEventObject(),t.type="abort"):t={type:"abort",bubbles:!1,cancelable:!1}}let i=e;if(i===void 0)if(typeof document>"u")i=new Error("This operation was aborted"),i.name="AbortError";else try{i=new DOMException("signal is aborted without reason")}catch{i=new Error("This operation was aborted"),i.name="AbortError"}this.signal.reason=i,this.signal.dispatchEvent(t)}toString(){return"[object AbortController]"}};typeof Symbol<"u"&&Symbol.toStringTag&&(Dr.prototype[Symbol.toStringTag]="AbortController",Hi.prototype[Symbol.toStringTag]="AbortSignal");function Cs(r){return r.__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL?(console.log("__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL=true is set, will force install polyfill"),!0):typeof r.Request=="function"&&!r.Request.prototype.hasOwnProperty("signal")||!r.AbortController}function pu(r){typeof r=="function"&&(r={fetch:r});let{fetch:e,Request:t=e.Request,AbortController:i,__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL:a=!1}=r;if(!Cs({fetch:e,Request:t,AbortController:i,__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL:a}))return{fetch:e,Request:s};let s=t;(s&&!s.prototype.hasOwnProperty("signal")||a)&&(s=function(l,d){let p;d&&d.signal&&(p=d.signal,delete d.signal);let h=new t(l,d);return p&&Object.defineProperty(h,"signal",{writable:!1,enumerable:!1,configurable:!0,value:p}),h},s.prototype=t.prototype);let n=e;return{fetch:(u,l)=>{let d=s&&s.prototype.isPrototypeOf(u)?u.signal:l?l.signal:void 0;if(d){let p;try{p=new DOMException("Aborted","AbortError")}catch{p=new Error("Aborted"),p.name="AbortError"}if(d.aborted)return Promise.reject(p);let h=new Promise((m,b)=>{d.addEventListener("abort",()=>b(p),{once:!0})});return l&&l.signal&&delete l.signal,Promise.race([h,n(u,l)])}return n(u,l)},Request:s}}var Vr=Cs({fetch:window.fetch,Request:window.Request,AbortController:window.AbortController}),Bf=Vr?pu({fetch:window.fetch,Request:window.Request,AbortController:window.AbortController}):void 0,St=Vr?Bf.fetch:window.fetch,f0=Vr?Bf.Request:window.Request,Pe=Vr?Dr:window.AbortController,b0=Vr?Hi:window.AbortSignal;var Uu=U(mu(),1);var Ib=U(Tb(),1),ji=require("@vkontakte/videoplayer-shared"),Eb=r=>{if(!r)return{id:"EmptyResponse",category:ji.ErrorCategory.PARSER,message:"Empty response"};if(r.length<=2&&r.match(/^\d+$/))return{id:`UVError#${r}`,category:ji.ErrorCategory.NETWORK,message:`UV Error ${r}`};let e=(0,Ib.default)(r).substring(0,100).toLowerCase();if(e.startsWith("<!doctype")||e.startsWith("<html>")||e.startsWith("<body>")||e.startsWith("<head>"))return{id:"UnexpectedHTML",category:ji.ErrorCategory.NETWORK,message:"Received unexpected HTML, possibly a ISP block"};if(e.startsWith("<?xml"))return new DOMParser().parseFromString(r,"text/xml").querySelector("parsererror")?{id:"InvalidXML",category:ji.ErrorCategory.PARSER,message:"XML parsing error"}:{id:"XMLParserLogicError",category:ji.ErrorCategory.PARSER,message:"Response is valid XML, but parser failed"}};var Qt=(r,e,t=0)=>{for(let i=0;i<r.length;i++)if(r.start(i)*1e3-t<=e&&r.end(i)*1e3+t>e)return!0;return!1};var g=require("@vkontakte/videoplayer-shared");var Ds=U(ze(),1),Wi=U(Ut(),1),Vs=U(mu(),1);var yw=(r,e={})=>{let i=e.timeout||1,a=performance.now();return window.setTimeout(()=>{r({get didTimeout(){return e.timeout?!1:performance.now()-a-1>i},timeRemaining(){return Math.max(0,1+(performance.now()-a))}})},1)},Tw=r=>window.clearTimeout(r),xb=r=>typeof r=="function"&&r?.toString().endsWith("{ [native code] }"),Pb=!xb(window.requestIdleCallback)||!xb(window.cancelIdleCallback),Su=Pb?yw:window.requestIdleCallback,Or=Pb?Tw:window.cancelIdleCallback;var $g=U(gs(),1);var Gt=require("@vkontakte/videoplayer-shared");var Iw=18,kb=!1;try{kb=z.browser.isSafari&&!!z.browser.safariVersion&&z.browser.safariVersion<=Iw}catch(r){console.error(r)}var yu=class{constructor(e){this.bufferFull$=new Gt.Subject;this.error$=new Gt.Subject;this.queue=[];this.currentTask=null;this.destroyed=!1;this.abortRequested=!1;this.completeTask=()=>{try{if(this.currentTask){let e=this.currentTask.signal?.aborted;this.currentTask.callback(!e),this.currentTask=null}this.queue.length&&this.pull()}catch(e){this.error$.next({id:"BufferTaskQueueUnknown",category:Gt.ErrorCategory.VIDEO_PIPELINE,message:"Buffer appending or removal failed",thrown:e})}};this.buffer=e,this.buffer.addEventListener("updateend",this.completeTask)}async append(e,t){return t&&t.aborted?!1:new Promise(i=>{let a={operation:"append",data:e,signal:t,callback:i};this.queue.push(a),this.pull()})}async remove(e,t,i){return i&&i.aborted?!1:new Promise(a=>{let s={operation:"remove",from:e,to:t,signal:i,callback:a};this.queue.unshift(s),this.pull()})}async abort(e){return new Promise(t=>{let i,a=s=>{this.abortRequested=!1,t(s)};kb&&e?i={operation:"safariAbort",init:e,callback:a}:i={operation:"abort",callback:a};for(let{callback:s}of this.queue)s(!1);this.abortRequested=!0,i&&(this.queue=[i]),this.pull()})}destroy(){this.destroyed=!0,this.buffer.removeEventListener("updateend",this.completeTask),this.queue=[],this.currentTask=null;try{this.buffer.abort()}catch(e){if(!(e instanceof DOMException&&e.name==="InvalidStateError"))throw e}}pull(){if((this.buffer.updating||this.currentTask||this.destroyed)&&!this.abortRequested)return;let e=this.queue.shift();if(!e)return;if(e.signal?.aborted){e.callback(!1),this.pull();return}this.currentTask=e;let{operation:t}=this.currentTask;try{this.execute(this.currentTask)}catch(a){a instanceof DOMException&&a.name==="QuotaExceededError"&&t==="append"?this.bufferFull$.next(this.currentTask.data.byteLength):a instanceof DOMException&&a.name==="InvalidStateError"||this.error$.next({id:`BufferTaskQueue:${t}`,category:Gt.ErrorCategory.VIDEO_PIPELINE,message:"Buffer operation failed",thrown:a}),this.currentTask.callback(!1),this.currentTask=null}this.currentTask&&this.currentTask.operation==="abort"&&this.completeTask()}execute(e){let{operation:t}=e;switch(t){case"append":this.buffer.appendBuffer(e.data);break;case"remove":this.buffer.remove(e.from/1e3,e.to/1e3);break;case"abort":this.buffer.abort();break;case"safariAbort":{this.buffer.abort(),this.buffer.appendBuffer(e.init);break}default:(0,Gt.assertNever)(t)}}},wb=yu;var Tu=r=>{let e=0;for(let t=0;t<r.length;t++)e+=r.end(t)-r.start(t);return e*1e3};var y=require("@vkontakte/videoplayer-shared");var J=class{constructor(e,t){this.cursor=0;this.source=e,this.boxParser=t,this.children=[];let i=this.readUint32();this.type=this.readString(4),this.size32=i<=e.buffer.byteLength-e.byteOffset?i:NaN;let a=this.size32?this.size32-8:void 0,s=e.byteOffset+this.cursor;this.size64=0,this.usertype=0,this.content=new DataView(e.buffer,s,a)}get id(){return this.type}get size(){return this.size32}scanForBoxes(e){return this.boxParser.parse(e)}readString(e,t="ascii"){let a=new TextDecoder(t).decode(new DataView(this.source.buffer,this.source.byteOffset+this.cursor,e));return this.cursor+=e,a}readUint8(){let e=this.source.getUint8(this.cursor);return this.cursor+=1,e}readUint16(){let e=this.source.getUint16(this.cursor);return this.cursor+=2,e}readUint32(){let e=this.source.getUint32(this.cursor);return this.cursor+=4,e}readUint64(){let e=this.source.getBigInt64(this.cursor);return this.cursor+=8,e}};var Qi=class extends J{};var _r=class extends J{constructor(t,i){super(t,i);this.ondemandPrefix="ondemandlivejson";this.ondemandDataReceivedKey="t-in";this.ondemandDataPreparedKey="t-out";let a=this.content.byteOffset,s=a+this.content.byteLength,n=new TextDecoder("ascii").decode(this.content.buffer.slice(a,s)).split(this.ondemandPrefix)[1],o=JSON.parse(n);this.serverDataReceivedTimestamp=o[this.ondemandDataReceivedKey],this.serverDataPreparedTime=o[this.ondemandDataPreparedKey]}};var Nr=class extends J{constructor(e,t){super(e,t),this.compatibleBrands=[],this.majorBrand=this.readString(4),this.minorVersion=this.readUint32();let i=this.size-this.cursor;for(;i;){let a=this.readString(4);this.compatibleBrands.push(a),i-=4}}};var Fr=class extends J{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var se=class extends J{constructor(e,t){super(e,t);let i=this.readUint32();this.version=i>>>24,this.flags=i&16777215}};var qr=class extends se{constructor(e,t){super(e,t),this.creationTime=this.readUint32(),this.modificationTime=this.readUint32(),this.timescale=this.readUint32(),this.duration=this.readUint32(),this.rate=this.readUint32(),this.volume=this.readUint16()}};var Ur=class extends J{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Hr=class extends J{constructor(e,t){super(e,t),this.data=this.content}};var ui=class extends se{get earliestPresentationTime(){return this.earliestPresentationTime32}get firstOffset(){return this.firstOffset32}constructor(e,t){super(e,t),this.segments=[],this.referenceId=this.readUint32(),this.timescale=this.readUint32(),this.earliestPresentationTime32=this.readUint32(),this.firstOffset32=this.readUint32(),this.earliestPresentationTime64=0,this.firstOffset64=0,this.referenceCount=this.readUint32()&65535;for(let i=0;i<this.referenceCount;i++){let a=this.readUint32(),s=a>>>31,n=a<<1>>>1,o=this.readUint32();a=this.readUint32();let u=a>>>28,l=a<<3>>>3;this.segments.push({referenceType:s,referencedSize:n,subsegmentDuration:o,SAPType:u,SAPDeltaTime:l})}}};var jr=class extends J{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Qr=class extends J{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Gr=class extends se{constructor(e,t){switch(super(e,t),this.readUint8()){case 0:this.stereoMode=0;break;case 1:this.stereoMode=1;break;case 2:this.stereoMode=2;break;case 3:this.stereoMode=3;break;case 4:this.stereoMode=4;break}this.cursor+=1}};var Wr=class extends se{constructor(e,t){super(e,t),this.poseYawDegrees=this.readUint32(),this.posePitchDegrees=this.readUint32(),this.poseRollDegrees=this.readUint32()}};var Yr=class extends se{constructor(e,t){super(e,t),this.projectionBoundsTop=this.readUint32(),this.projectionBoundsBottom=this.readUint32(),this.projectionBoundsLeft=this.readUint32(),this.projectionBoundsRight=this.readUint32()}};var zr=class extends J{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Kr=class extends se{constructor(e,t){super(e,t),this.creationTime=this.readUint32(),this.modificationTime=this.readUint32(),this.trackId=this.readUint32(),this.cursor+=4,this.duration=this.readUint32(),this.cursor+=8,this.layer=this.readUint16(),this.alternateGroup=this.readUint16(),this.cursor+=2,this.cursor+=2,this.matrix=[[this.readUint32(),this.readUint32(),this.readUint32()],[this.readUint32(),this.readUint32(),this.readUint32()],[this.readUint32(),this.readUint32(),this.readUint32()]],this.width=this.readUint32(),this.height=this.readUint32()}};var Xr=class extends J{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Jr=class extends J{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Zr=class extends se{constructor(e,t){super(e,t),this.sequenceNumber=this.readUint32()}};var ea=class extends J{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var ta=class extends se{constructor(e,t){super(e,t),this.trackId=this.readUint32(),this.flags&1&&(this.baseDataOffset=this.readUint64()),this.flags&2&&(this.sampleDescriptionIndex=this.readUint32()),this.flags&8&&(this.defaultSampleDuration=this.readUint32()),this.flags&16&&(this.defaultSampleSize=this.readUint32()),this.flags&32&&(this.defaultSampleFlags=this.readUint32())}};var ia=class extends se{constructor(t,i){super(t,i);this.baseMediaDecodeTime32=0;this.baseMediaDecodeTime64=BigInt(0);this.version===1?this.baseMediaDecodeTime64=this.readUint64():this.baseMediaDecodeTime32=this.readUint32()}get baseMediaDecodeTime(){return this.version===1?this.baseMediaDecodeTime64:this.baseMediaDecodeTime32}};var ra=class extends se{constructor(t,i){super(t,i);this.sampleDuration=[];this.sampleSize=[];this.sampleFlags=[];this.sampleCompositionTimeOffset=[];this.optionalFields=0;this.sampleCount=this.readUint32(),this.flags&1&&(this.dataOffset=this.readUint32()),this.flags&4&&(this.firstSampleFlags=this.readUint32());for(let a=0;a<this.sampleCount;a++)this.flags&256&&this.sampleDuration.push(this.readUint32()),this.flags&512&&this.sampleSize.push(this.readUint32()),this.flags&1024&&this.sampleFlags.push(this.readUint32()),this.flags&2048&&this.sampleCompositionTimeOffset.push(this.readUint32())}};var aa=class extends J{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var sa=class extends se{constructor(e,t){super(e,t),this.entryCount=this.readUint32(),this.children=this.scanForBoxes(new DataView(this.content.buffer,this.content.byteOffset+8,this.content.byteLength-8))}};var na=class extends J{constructor(e,t){super(e,t),this.children=this.scanForBoxes(new DataView(this.content.buffer,this.content.byteOffset+78,this.content.byteLength-78))}};var xw={ftyp:Nr,moov:Fr,mvhd:qr,moof:Ur,mdat:Hr,sidx:ui,trak:jr,mdia:zr,mfhd:Zr,tkhd:Kr,traf:ea,tfhd:ta,tfdt:ia,trun:ra,minf:Xr,sv3d:Qr,st3d:Gr,prhd:Wr,proj:Jr,equi:Yr,uuid:_r,stbl:aa,stsd:sa,avc1:na,unknown:Qi},wt=class r{constructor(e={}){this.options={offset:0,...e}}parse(e){let t=[],i=this.options.offset;for(;i<e.byteLength;)try{let s=new TextDecoder("ascii").decode(new DataView(e.buffer,e.byteOffset+i+4,4)),n=this.createBox(s,new DataView(e.buffer,e.byteOffset+i));if(!n.size)break;t.push(n),i+=n.size}catch{break}return t}createBox(e,t){let i=xw[e];return i?new i(t,new r):new Qi(t,new r)}};var Wt=class{constructor(e){this.index={},this.indexBoxLevel(e)}indexBoxLevel(e){e.forEach(t=>{this.index[t.type]??=[],this.index[t.type].push(t),t.children.length>0&&this.indexBoxLevel(t.children)})}find(e){return this.index[e]&&this.index[e][0]?this.index[e][0]:null}findAll(e){return this.index[e]||[]}};var kw=new TextDecoder("ascii"),ww=r=>kw.decode(new DataView(r.buffer,r.byteOffset+4,4))==="ftyp",Aw=r=>{let e=new ui(r,new wt),t=e.earliestPresentationTime/e.timescale*1e3,i=r.byteOffset+r.byteLength+e.firstOffset;return e.segments.map(s=>{if(s.referenceType!==0)throw new Error("Unsupported multilevel sidx");let n=s.subsegmentDuration/e.timescale*1e3,o={status:"none",time:{from:t,to:t+n},byte:{from:i,to:i+s.referencedSize-1}};return t+=n,i+=s.referencedSize,o})},Lw=(r,e)=>{let i=new wt().parse(r),a=new Wt(i),s=a.findAll("moof"),n=e?a.findAll("uuid"):a.findAll("mdat");if(!(n.length&&s.length))return null;let o=s[0],u=n[n.length-1],l=o.source.byteOffset,p=u.source.byteOffset-o.source.byteOffset+u.size;return new DataView(r.buffer,l,p)},Rw=r=>{let t=new wt().parse(r),i=new Wt(t),a={},s=i.findAll("uuid");return s.length?s[s.length-1]:a},$w=r=>{let t=new wt().parse(r);return new Wt(t).find("sidx")?.timescale},Mw=(r,e)=>{let i=new wt().parse(r),s=new Wt(i).findAll("traf"),n=s[s.length-1].children.find(p=>p.type==="tfhd"),o=s[s.length-1].children.find(p=>p.type==="tfdt"),u=s[s.length-1].children.find(p=>p.type==="trun"),l=0;return u.sampleDuration.length?l=u.sampleDuration.reduce((p,h)=>p+h,0):l=n.defaultSampleDuration*u.sampleCount,(Number(o.baseMediaDecodeTime)+l)/e*1e3},Cw=r=>{let e={is3dVideo:!1,stereoMode:0,projectionType:1,projectionData:{pose:{yaw:0,pitch:0,roll:0},bounds:{top:0,bottom:0,left:0,right:0}}},i=new wt().parse(r),a=new Wt(i);if(a.find("sv3d")){e.is3dVideo=!0;let n=a.find("st3d");n&&(e.stereoMode=n.stereoMode);let o=a.find("prhd");o&&(e.projectionData.pose.yaw=o.poseYawDegrees,e.projectionData.pose.pitch=o.posePitchDegrees,e.projectionData.pose.roll=o.poseRollDegrees);let u=a.find("equi");u&&(e.projectionData.bounds.top=u.projectionBoundsTop,e.projectionData.bounds.right=u.projectionBoundsRight,e.projectionData.bounds.bottom=u.projectionBoundsBottom,e.projectionData.bounds.left=u.projectionBoundsLeft)}return e},Ab={validateData:ww,parseInit:Cw,getIndexRange:()=>{},parseSegments:Aw,parseFeedableSegmentChunk:Lw,getChunkEndTime:Mw,getServerLatencyTimestamps:Rw,getTimescaleFromIndex:$w};var ua=U(ze(),1),At=require("@vkontakte/videoplayer-shared");var Rb=require("@vkontakte/videoplayer-shared");var Lb={440786851:{type:"master"},17030:{type:"uint"},17143:{type:"uint"},17138:{type:"uint"},17139:{type:"uint"},17026:{type:"string"},17031:{type:"uint"},17029:{type:"uint"},236:{type:"binary"},408125543:{type:"master"},290298740:{type:"master"},19899:{type:"master"},21419:{type:"binary"},21420:{type:"uint"},357149030:{type:"master"},2807729:{type:"uint"},17545:{type:"float"},374648427:{type:"master"},174:{type:"master"},224:{type:"master"},30320:{type:"master"},30321:{type:"uint"},30322:{type:"master"},272869232:{type:"master"},524531317:{type:"master"},231:{type:"uint"},22612:{type:"master"},22743:{type:"uint"},167:{type:"uint"},171:{type:"uint"},163:{type:"binary"},160:{type:"master"},175:{type:"binary"},423732329:{type:"master"},307544935:{type:"master"},475249515:{type:"master"},187:{type:"master"},179:{type:"uint"},183:{type:"master"},247:{type:"uint"},241:{type:"uint"},240:{type:"uint"},178:{type:"uint"},21368:{type:"uint"},234:{type:"uint"},219:{type:"master"},150:{type:"uint"}},$b=r=>{let e=r.getUint8(0),t=0;e&128?t=1:e&64?t=2:e&32?t=3:e&16&&(t=4);let i=oa(r,t),a=i in Lb,s=a?Lb[i].type:"binary",n=r.getUint8(t),o=0;n&128?o=1:n&64?o=2:n&32?o=3:n&16?o=4:n&8?o=5:n&4?o=6:n&2?o=7:n&1&&(o=8);let u=new DataView(r.buffer,r.byteOffset+t+1,o-1),l=n&255>>o,d=oa(u),p=l*2**((o-1)*8)+d,h=t+o,m;return h+p>r.byteLength?m=new DataView(r.buffer,r.byteOffset+h):m=new DataView(r.buffer,r.byteOffset+h,p),{tag:a?i:"0x"+i.toString(16).toUpperCase(),type:s,tagHeaderSize:h,tagSize:h+p,value:m,valueSize:p}},oa=(r,e=r.byteLength)=>{switch(e){case 1:return r.getUint8(0);case 2:return r.getUint16(0);case 3:return r.getUint8(0)*2**16+r.getUint16(1);case 4:return r.getUint32(0);case 5:return r.getUint8(0)*2**32+r.getUint32(1);case 6:return r.getUint16(0)*2**32+r.getUint32(2);case 7:{let t=r.getUint8(0)*281474976710656+r.getUint16(1)*4294967296+r.getUint32(3);if(Number.isSafeInteger(t))return t}case 8:throw new ReferenceError("Int64 is not supported")}return 0},ot=(r,e)=>{switch(e){case"int":return r.getInt8(0);case"uint":return oa(r);case"float":return r.byteLength===4?r.getFloat32(0):r.getFloat64(0);case"string":return new TextDecoder("ascii").decode(r);case"utf8":return new TextDecoder("utf-8").decode(r);case"date":return new Date(Date.UTC(2001,0)+r.getInt8(0)).getTime();case"master":return r;case"binary":return r;default:(0,Rb.assertNever)(e)}},li=(r,e)=>{let t=0;for(;t<r.byteLength;){let i=new DataView(r.buffer,r.byteOffset+t),a=$b(i);if(!e(a))return;a.type==="master"&&li(a.value,e),t=a.value.byteOffset-r.byteOffset+a.valueSize}},Mb=r=>{if(r.getUint32(0)!==440786851)return!1;let e,t,i,a=$b(r);return li(a.value,({tag:s,type:n,value:o})=>(s===17143?e=ot(o,n):s===17026?t=ot(o,n):s===17029&&(i=ot(o,n)),!0)),(e===void 0||e<=1)&&t!==void 0&&t==="webm"&&(i===void 0||i<=2)};var Cb=[357149030,290298740,374648427,174,224,30320,30321,30322,272869232,524531317,475249515,423732329,307544935],Dw=[231,22612,22743,167,171,163,160,175],Vw=r=>{let e,t,i,a,s=!1,n=!1,o=!1,u,l,d=!1,p=0;return li(r,({tag:h,type:m,value:b,valueSize:v})=>{if(h===21419){let T=ot(b,m);l=oa(T)}else h!==21420&&(l=void 0);return h===408125543?(e=b.byteOffset,t=b.byteOffset+v):h===357149030?s=!0:h===290298740?n=!0:h===2807729?i=ot(b,m):h===17545?a=ot(b,m):h===21420&&l===475249515?u=ot(b,m):h===374648427?li(b,({tag:T,type:I,value:A})=>T===30321?(d=ot(A,I)===1,!1):!0):s&&n&&(0,ua.default)(Cb,h)&&(o=!0),!o}),(0,At.assertNonNullable)(e,"Failed to parse webm Segment start"),(0,At.assertNonNullable)(t,"Failed to parse webm Segment end"),(0,At.assertNonNullable)(a,"Failed to parse webm Segment duration"),i=i??1e6,{segmentStart:Math.round(e/1e9*i*1e3),segmentEnd:Math.round(t/1e9*i*1e3),timeScale:i,segmentDuration:Math.round(a/1e9*i*1e3),cuesSeekPosition:u,is3dVideo:d,stereoMode:p,projectionType:1,projectionData:{pose:{yaw:0,pitch:0,roll:0},bounds:{top:0,bottom:0,left:0,right:0}}}},Bw=r=>{if((0,At.isNullable)(r.cuesSeekPosition))return;let e=r.segmentStart+r.cuesSeekPosition,t=1024*1024;return{from:e,to:e+t}},Ow=(r,e)=>{let t=!1,i=!1,a=o=>(0,At.isNonNullable)(o.time)&&(0,At.isNonNullable)(o.position),s=[],n;return li(r,({tag:o,type:u,value:l})=>{switch(o){case 475249515:t=!0;break;case 187:n&&a(n)&&s.push(n),n={};break;case 179:n&&(n.time=ot(l,u));break;case 183:break;case 241:n&&(n.position=ot(l,u));break;default:t&&(0,ua.default)(Cb,o)&&(i=!0)}return!(t&&i)}),n&&a(n)&&s.push(n),s.map((o,u)=>{let{time:l,position:d}=o,p=s[u+1];return{status:"none",time:{from:l,to:p?p.time:e.segmentDuration},byte:{from:e.segmentStart+d,to:p?e.segmentStart+p.position-1:e.segmentEnd-1}}})},_w=r=>{let e=0,t=!1;try{li(r,i=>i.tag===524531317?i.tagSize<=r.byteLength?(e=i.tagSize,!1):(e+=i.tagHeaderSize,!0):(0,ua.default)(Dw,i.tag)?(e+i.tagSize<=r.byteLength&&(e+=i.tagSize,t||=(0,ua.default)([163,160,175],i.tag)),!0):!1)}catch{}return e>0&&e<=r.byteLength&&t?new DataView(r.buffer,r.byteOffset,e):null},Db={validateData:Mb,parseInit:Vw,getIndexRange:Bw,parseSegments:Ow,parseFeedableSegmentChunk:_w};var la=r=>{let e=/^(.+)\/([^;]+)(?:;.*)?$/.exec(r);if(e){let[,t,i]=e;if(t==="audio"||t==="video")switch(i){case"webm":return Db;case"mp4":return Ab}}throw new ReferenceError(`Unsupported mime type ${r}`)};var Du=U(eg(),1),kg=U(Li(),1),wg=U(bg(),1),Ag=U(Ut(),1),Vu=U(Ni(),1);var gg=U(ze(),1),Au=r=>{let e=r.split("."),[t,...i]=e;if(!t)return!1;switch(t){case"av01":{let[a,s,n]=i;return!!(n&&parseInt(n,10)>8)}case"vp09":{let[a,s,n]=i;return!!(a&&parseInt(a,10)>=2&&n&&parseInt(n,10)>8)}case"avc1":{let a=i[0];if(!a||a.length!==6)return!1;let[s,n]=a.toUpperCase(),o=s+n;return(0,gg.default)(["6E","7A","F4"],o)}}return!1};var da=require("@vkontakte/videoplayer-shared");var vg=r=>{if(r.includes("/")){let e=r.split("/");return parseInt(e[0])/parseInt(e[1])}else return parseFloat(r)};var Sg=r=>{try{let e=CA(),t=r.match(e),{groups:i}=t??{};if(i){let a={};if(i.extensions){let o=i.extensions.toLowerCase().match(/(?:[0-9a-wy-z](?:-[a-z0-9]{2,8})+)/g);Array.from(o||[]).forEach(u=>{a[u[0]]=u.slice(2)})}let s=i.variants?.split(/-/).filter(o=>o!==""),n={extlang:i.extlang,langtag:i.langtag,language:i.language,privateuse:i.privateuse||i.privateuse2,region:i.region,script:i.script,extensions:a,variants:s};return Object.keys(n).forEach(o=>{let u=n[o];(typeof u>"u"||u==="")&&delete n[o]}),n}return null}catch{return null}};function CA(){let r="(?<extlang>(?:[a-z]{3}(?:-[a-z]{3}){0,2}))",e="x(?:-[a-z0-9]{1,8})+",d=`^(?:(?<langtag>${`
|
|
64
|
-
|
|
96
|
+
`}),A},Yn=(s,e,t,{estimatedThroughput:i,tuning:r,playbackRate:a,forwardBufferHealth:n,history:o,abrLogger:u,stallsPredictedThroughput:l})=>{(0,L.assertNotEmptyArray)(t,zn);let c=r.considerPlaybackRate&&(0,L.isNonNullable)(a)?a:1,p=ng.get(t);p||(p=[...t].sort(kr(-1)),ng.set(t,p));let d=s.bitrate;(0,L.assertNonNullable)(d);let h=c*jn(n??.5,r.bitrateAudioFactorAtEmptyBuffer,r.bitrateAudioFactorAtFullBuffer),m,g=Ts(s,e,t,r.minVideoAudioRatio),y=l||i;(0,L.isNonNullable)(y)&&isFinite(y)&&(m=p.find(x=>(0,L.isNonNullable)(x.bitrate)&&(0,L.isNonNullable)(g?.bitrate)?y-d>=x.bitrate*h&&x.bitrate>=g.bitrate:!1)),m||(m=g);let T=o?.last,A=m&&Gn(r,u,m,o);return(0,L.isNonNullable)(o)&&A?.bitrate!==T?.bitrate&&u({message:`
|
|
97
|
+
[AUDIO TRACKS ABR]
|
|
98
|
+
[available audio tracks]
|
|
99
|
+
${t.map(x=>`{ id: ${x.id}, bitrate: ${x.bitrate} }`).join(`
|
|
100
|
+
`)}
|
|
101
|
+
|
|
102
|
+
[tuning]
|
|
103
|
+
${(0,Ji.default)(r??{}).map(([x,M])=>`${x}: ${M}`).join(`
|
|
104
|
+
`)}
|
|
105
|
+
|
|
106
|
+
[limit params]
|
|
107
|
+
estimatedThroughput: ${i},
|
|
108
|
+
stallsPredictedThroughput: ${l},
|
|
109
|
+
reserve: ${d},
|
|
110
|
+
playbackRate: ${a},
|
|
111
|
+
playbackRateFactor: ${c},
|
|
112
|
+
forwardBufferHealth: ${n},
|
|
113
|
+
bitrateFactor: ${h},
|
|
114
|
+
minBufferToSwitchUp: ${r.minBufferToSwitchUp},
|
|
115
|
+
|
|
116
|
+
[selected audio track] ${A?.id}
|
|
117
|
+
`}),A};var Ne=s=>new URL(s).hostname;var Q=require("@vkontakte/videoplayer-shared");var gg=U(Ht(),1);var hg=U(At(),1),pg=s=>{if(s instanceof DOMException&&(0,hg.default)(["Failed to load because no supported source was found.","The element has no supported sources."],s.message))throw s;return!(s instanceof DOMException&&(s.code===20||s.name==="AbortError"))},et=async(s,e)=>{let t=s.muted;try{await s.play()}catch(i){if(!pg(i))return!1;if(e&&e(),t)return console.warn(i),!1;s.muted=!0;try{await s.play()}catch(r){return pg(r)&&(s.muted=!1,console.warn(r)),!1}}return!0};var Lt=require("@vkontakte/videoplayer-shared");var fg=U(Ki(),1),ei=require("@vkontakte/videoplayer-shared");function Ge(){return(0,ei.now)()}function Nl(s){return Ge()-s}function Ul(s){let e=s.split("/"),t=e.slice(0,e.length-1).join("/"),i=/^([a-z]+:)?\/\//i,r=n=>i.test(n);return{resolve:(n,o,u=!1)=>{r(n)||(n.startsWith("/")||(n="/"+n),n=t+n);let l=n.indexOf("?")>-1?"&":"?";return u&&(n+=l+"lowLat=1",l="&"),o&&(n+=l+"_rnd="+Math.floor(999999999*Math.random())),n}}}function mg(s,e,t){let i=(...r)=>{t.apply(null,r),s.removeEventListener(e,i)};s.addEventListener(e,i)}function Rr(s,e,t,i){let r=window.XMLHttpRequest,a,n,o,u=!1,l=0,c,p,d=!1,h="arraybuffer",m=7e3,g=2e3,y=()=>{if(u)return;(0,ei.assertNonNullable)(c);let k=Nl(c),R;if(k<g){R=g-k,setTimeout(y,R);return}g*=2,g>m&&(g=m),n&&n.abort(),n=new r,F()},T=k=>(a=k,j),A=k=>(p=k,j),x=()=>(h="json",j),M=()=>{if(!u){if(--l>=0){y(),i&&i();return}u=!0,p&&p(),t&&t()}},$=k=>(d=k,j),F=()=>{c=Ge(),n=new r,n.open("get",s);let k=0,R,V=0,ge=()=>((0,ei.assertNonNullable)(c),Math.max(c,Math.max(R||0,V||0)));if(a&&n.addEventListener("progress",N=>{let re=Ge();a.updateChunk&&N.loaded>k&&(a.updateChunk(ge(),N.loaded-k),k=N.loaded,R=re)}),o&&(n.timeout=o,n.addEventListener("timeout",()=>M())),n.addEventListener("load",()=>{if(u)return;(0,ei.assertNonNullable)(n);let N=n.status;if(N>=200&&N<300){let{response:re,responseType:ce}=n,Te=re?.byteLength;if(typeof Te=="number"&&a){let Be=Te-k;Be&&a.updateChunk&&a.updateChunk(ge(),Be)}ce==="json"&&(!re||!(0,fg.default)(re).length)?M():(p&&p(),e(re))}else M()}),n.addEventListener("error",()=>{M()}),d){let N=()=>{(0,ei.assertNonNullable)(n),n.readyState===XMLHttpRequest.HEADERS_RECEIVED&&(V=Ge(),n.removeEventListener("readystatechange",N))};n.addEventListener("readystatechange",N)}return n.responseType=h,n.send(),j},j={withBitrateReporting:T,withParallel:$,withJSONResponse:x,withRetryCount:k=>(l=k,j),withRetryInterval:(k,R)=>((0,ei.isNonNullable)(k)&&(g=k),(0,ei.isNonNullable)(R)&&(m=R),j),withTimeout:k=>(o=k,j),withFinally:A,send:F,abort:()=>{n&&(n.abort(),n=void 0),u=!0,p&&p()}};return j}var Is=class{constructor(e){this.intervals=[];this.currentRate=0;this.logger=e}_updateRate(e){let t=.2;this.currentRate&&(e<this.currentRate*.1?t=.8:e<this.currentRate*.5?t=.5:e<this.currentRate*.7&&(t=.3)),e=Math.max(1,Math.min(e,100*1024*1024)),this.currentRate=this.currentRate?this.currentRate*(1-t)+e*t:e}_createInterval(e,t,i){return{start:e,end:t,bytes:i}}_doMergeIntervals(e,t){e.start=Math.min(t.start,e.start),e.end=Math.max(t.end,e.end),e.bytes+=t.bytes}_mergeIntervals(e,t){return e.start<=t.end&&t.start<=e.end?(this._doMergeIntervals(e,t),!0):!1}_flushIntervals(){if(!this.intervals.length)return!1;let e=this.intervals[0].start,t=this.intervals[this.intervals.length-1].end-500;if(t-e>2e3){let i=0,r=0;for(;this.intervals.length>0;){let a=this.intervals[0];if(a.end<=t)i+=a.end-a.start,r+=a.bytes,this.intervals.splice(0,1);else{if(a.start>=t)break;{let n=t-a.start,o=a.end-a.start;i+=n;let u=a.bytes*n/o;r+=u,a.start=t,a.bytes-=u}}}if(r>0&&i>0){let a=r*8/(i/1e3);return this._updateRate(a),this.logger(`rate updated, new=${Math.round(a/1024)}K; average=${Math.round(this.currentRate/1024)}K bytes/ms=${Math.round(r)}/${Math.round(i)} interval=${Math.round(t-e)}`),!0}}return!1}_joinIntervals(){let e;do{e=!1;for(let t=0;t<this.intervals.length-1;++t)this._mergeIntervals(this.intervals[t],this.intervals[t+1])&&(this.intervals.splice(t+1,1),e=!0)}while(e)}addInterval(e,t,i){return this.intervals.push(this._createInterval(e,t,i)),this._joinIntervals(),this.intervals.length>100&&(this.logger(`too many intervals (${this.intervals.length}); will merge`,{type:"warn"}),this._doMergeIntervals(this.intervals[1],this.intervals[0]),this.intervals.splice(0,1)),this._flushIntervals()}getBitRate(){return this.currentRate}};var bg=U(Ki(),1);var xs=class{constructor(e,t,i,r,a){this.pendingQueue=[];this.activeRequests={};this.completeRequests={};this.averageSegmentDuration=2e3;this.lastPrefetchStart=0;this.throttleTimeout=null;this.RETRY_COUNT=e,this.TIMEOUT=t,this.BITRATE_ESTIMATOR=i,this.MAX_PARALLEL_REQUESTS=r,this.logger=a}limitCompleteCount(){let e;for(;(e=Object.keys(this.completeRequests)).length>this._getParallelRequestCount()+2;){let t=e[Math.floor(Math.random()*e.length)];this.logger(`Dropping completed request for url ${t}`,{type:"warn"}),delete this.completeRequests[t]}}_sendRequest(e,t){let i=Ge(),r=u=>{delete this.activeRequests[t],this.limitCompleteCount(),this.completeRequests[t]=e,this._sendPending(),e._error=1,e._errorMsg=u,e._errorCB?e._errorCB(u):(this.limitCompleteCount(),this.completeRequests[t]=e)},a=u=>{e._complete=1,e._responseData=u,e._downloadTime=Ge()-i,delete this.activeRequests[t],this._sendPending(),e._cb?e._cb(u,e._downloadTime):(this.limitCompleteCount(),this.completeRequests[t]=e)},n=()=>{e._finallyCB&&e._finallyCB()},o=()=>{e._retry=1,e._retryCB&&e._retryCB()};e._request=Rr(t,a,()=>r("error"),o),e._request.withRetryCount(this.RETRY_COUNT).withTimeout(this.TIMEOUT).withBitrateReporting(this.BITRATE_ESTIMATOR).withParallel(this._getParallelRequestCount()>1).withFinally(n),this.activeRequests[t]=e,e._request.send(),this.lastPrefetchStart=Ge()}_getParallelRequestCount(){return Math.min(this.MAX_PARALLEL_REQUESTS,this.averageSegmentDuration<3e3?3:2)}_getPrefetchDelay(){return Math.max(100,Math.min(5e3,this.averageSegmentDuration/3))}_canSendPending(){let e=this._getParallelRequestCount(),t=Ge();if(Object.keys(this.activeRequests).length>=e)return!1;let i=this._getPrefetchDelay()-(t-this.lastPrefetchStart);return this.throttleTimeout&&clearTimeout(this.throttleTimeout),i>0?(this.throttleTimeout=window.setTimeout(()=>this._sendPending(),i),!1):!0}_sendPending(){for(;this._canSendPending();){let e=this.pendingQueue.pop();if(e){if(this.activeRequests[e]||this.completeRequests[e])continue;this.logger(`Submitting pending request url=${e}`),this._sendRequest({},e)}else return}}_removeFromActive(e){delete this.completeRequests[e],delete this.activeRequests[e]}abortAll(){(0,bg.default)(this.activeRequests).forEach(e=>{e&&e._request&&e._request.abort()}),this.activeRequests={},this.pendingQueue=[],this.completeRequests={}}requestData(e,t,i,r){let a={};return a.send=()=>{let n=this.activeRequests[e]||this.completeRequests[e];if(n)n._cb=t,n._errorCB=i,n._retryCB=r,n._finallyCB=a._finallyCB,n._error||n._complete?(this._removeFromActive(e),setTimeout(()=>{n._complete?(this.logger(`Requested url already prefetched, url=${e}`),t(n._responseData,n._downloadTime)):(this.logger(`Requested url already prefetched with error, url=${e}`),i(n._errorMsg)),a._finallyCB&&a._finallyCB()},0)):this.logger(`Attached to active request, url=${e}`);else{let o=this.pendingQueue.indexOf(e);o!==-1&&this.pendingQueue.splice(o,1),this.logger(`Request not prefetched, starting new request, url=${e}${o===-1?"":"; removed pending"}`),this._sendRequest(a,e)}},a._cb=t,a._errorCB=i,a._retryCB=r,a.abort=function(){a.request&&a.request.abort()},a.withFinally=n=>(a._finallyCB=n,a),a}prefetch(e){this.activeRequests[e]||this.completeRequests[e]?this.logger(`Request already active for url=${e}`):(this.logger(`Added to pending queue; url=${e}`),this.pendingQueue.unshift(e),this._sendPending())}optimizeForSegDuration(e){this.averageSegmentDuration=e}};var Sg=require("@vkontakte/videoplayer-shared");var Kn=1e4,ql=3;var Pk=6e4,wk=10,Ak=1,kk=500,Es=class{constructor(e){this.paused=!1;this.autoQuality=!0;this.autoQualityLimits=void 0;this.buffering=!0;this.destroyed=!1;this.videoPlayStarted=!1;this.lowLatency=!1;this.bitrate=0;this.manifest=[];this.sourceBuffer=0;this.bufferStates=[];this.sourceJitter=-1;this.waitingForFirstBufferAfterSrcChange=!1;this.params=e,this.soundProhibitedEvent$=new Sg.Subject,this.chunkRateEstimator=new Is(this.params.logger),this._initVideo()}attachSource(e){this.manifestUrl=e,this.urlResolver=Ul(e),this.bitrateSwitcher=this._initBitrateSwitcher(),this._initManifest()}setAutoQualityEnabled(e){this.autoQuality=e}setAutoQualityLimits(e){this.autoQualityLimits=e}switchByName(e){let t;for(let i=0;i<this.manifest.length;++i)if(t=this.manifest[i],t.name===e){this._switchToQuality(t);return}}catchUp(){this.rep&&this.rep.stop(),this.currentManifestEntry&&(this.paused=!1,this._initPlayerWith(this.currentManifestEntry),this._notifyBuffering(!0))}stop(){this.params.videoElement.pause(),this.rep&&(this.rep.stop(),this.rep=null)}pause(){this.paused=!0,this.params.videoElement.pause(),this.videoPlayStarted=!1,this._notifyBuffering(!1)}play(){this.paused=!1;let e=this.lowLatency&&this._getBufferSizeSec()>this.sourceJitter+5;this.rep&&!e?(this.bufferStates=[],this.videoPlayStarted=!1,this.shouldPlay()?this._playVideoElement():this._notifyBuffering(!0)):this.catchUp()}startPlay(e,t){this.autoQuality=t,this._initPlayerWith(e)}destroy(){this.destroyed=!0,this.rep&&(this.rep.stop(),this.rep=null),this.manifestRequest&&this.manifestRequest.abort(),this.manifestRefetchTimer&&(clearTimeout(this.manifestRefetchTimer),this.manifestRefetchTimer=void 0)}reinit(e){this.manifestUrl=e,this.urlResolver=Ul(e),this.catchUp()}_handleNetworkError(){this.params.logger("Fatal network error"),this.params.playerCallback({name:"error",type:"network"})}_retryCallback(){this.params.playerCallback({name:"retry"})}_getBufferSizeSec(){let e=this.params.videoElement,t=0,i=e.buffered.length;return i!==0&&(t=e.buffered.end(i-1)-Math.max(e.currentTime,e.buffered.start(0))),t}_notifyBuffering(e){this.destroyed||(this.params.logger(`buffering: ${e}`),this.params.playerCallback({name:"buffering",isBuffering:e}),this.buffering=e)}_initVideo(){let{videoElement:e,logger:t}=this.params;e.addEventListener("error",()=>{!!e.error&&!this.destroyed&&(t(`Video element error: ${e.error?.code}`),this.params.playerCallback({name:"error",type:"media"}))}),e.addEventListener("timeupdate",()=>{let i=this._getBufferSizeSec();!this.paused&&i<.3?this.buffering||(this.buffering=!0,window.setTimeout(()=>{!this.paused&&this.buffering&&this._notifyBuffering(!0)},(i+.1)*1e3)):this.buffering&&this.videoPlayStarted&&this._notifyBuffering(!1)}),e.addEventListener("playing",()=>{t("playing")}),e.addEventListener("stalled",()=>this._fixupStall()),e.addEventListener("waiting",()=>this._fixupStall())}_fixupStall(){let{logger:e,videoElement:t}=this.params,i=t.buffered.length,r;i!==0&&!this.waitingForFirstBufferAfterSrcChange&&(r=t.buffered.start(i-1),t.currentTime<r&&(e("Fixup stall"),t.currentTime=r))}_selectQuality(e){let{videoElement:t}=this.params,i,r,a,n=t&&1.62*(W.display.pixelRatio||1)*t.offsetHeight||520;for(let o=0;o<this.manifest.length;++o){a=this.manifest[o];let{max:u,min:l}=this.autoQualityLimits||{};!ag({limits:this.autoQualityLimits,highestAvailableHeight:this.manifest[0].video.height,lowestAvailableHeight:(0,gg.default)(this.manifest,-1).video.height})&&(u&&a.video.height>u||l&&a.video.height<l)||(a.bitrate<e&&n>Math.min(a.video.height,a.video.width)?(!r||a.bitrate>r.bitrate)&&(r=a):(!i||i.bitrate>a.bitrate)&&(i=a))}return r||i}shouldPlay(){if(this.paused)return!1;let t=this._getBufferSizeSec()-Math.max(1,this.sourceJitter);return t>3||(0,Lt.isNonNullable)(this.downloadRate)&&(this.downloadRate>1.5&&t>2||this.downloadRate>2&&t>1)}_setVideoSrc(e,t){let{logger:i,videoElement:r,playerCallback:a}=this.params;this.mediaSource=new window.MediaSource,i("setting video src"),r.src=URL.createObjectURL(this.mediaSource),this.mediaSource.addEventListener("sourceopen",()=>{this.mediaSource&&(this.sourceBuffer=this.mediaSource.addSourceBuffer(e.codecs),this.bufferStates=[],t())}),this.videoPlayStarted=!1,r.addEventListener("canplay",()=>{this.shouldPlay()&&(this.videoPlayStarted=!0,this._playVideoElement())});let n=()=>{mg(r,"progress",()=>{r.buffered.length?(r.currentTime=r.buffered.start(0),this.waitingForFirstBufferAfterSrcChange=!1,a({name:"playing"})):n()})};this.waitingForFirstBufferAfterSrcChange=!0,n()}_initPlayerWith(e){this.bitrate=0,this.rep=0,this.sourceBuffer=0,this.bufferStates=[],this.filesFetcher&&this.filesFetcher.abortAll(),this.filesFetcher=new xs(ql,Kn,this.bitrateSwitcher,this.params.config.maxParallelRequests,this.params.logger),this._setVideoSrc(e,()=>this._switchToQuality(e))}_representation(e){let{logger:t,videoElement:i,playerCallback:r}=this.params,a=!1,n=null,o=null,u=null,l=null,c=!1,p=()=>{let M=a&&(!c||c===this.rep);return M||t("Not running!"),M},d=(M,$,F)=>{u&&u.abort(),u=Rr(this.urlResolver.resolve(M,!1),$,F,()=>this._retryCallback()).withTimeout(Kn).withBitrateReporting(this.bitrateSwitcher).withRetryCount(ql).withFinally(()=>{u=null}).send()},h=(M,$,F)=>{(0,Lt.assertNonNullable)(this.filesFetcher),o?.abort(),o=this.filesFetcher.requestData(this.urlResolver.resolve(M,!1),$,F,()=>this._retryCallback()).withFinally(()=>{o=null}).send()},m=M=>{let $=i.playbackRate;i.playbackRate!==M&&(t(`Playback rate switch: ${$}=>${M}`),i.playbackRate=M)},g=M=>{this.lowLatency=M,t(`lowLatency changed to ${M}`),y()},y=()=>{if(!this.lowLatency&&!this.params.config.isLiveCatchUpMode)m(1);else{let M=this._getBufferSizeSec();if(this.bufferStates.length<5){m(1);return}let F=Ge()-1e4,G=0;for(let D=0;D<this.bufferStates.length;D++){let I=this.bufferStates[D];M=Math.min(M,I.buf),I.ts<F&&G++}this.bufferStates.splice(0,G),t(`update playback rate; minBuffer=${M} drop=${G} jitter=${this.sourceJitter}`);let B=M-Ak;this.sourceJitter>=0?B-=this.sourceJitter/2:this.sourceJitter-=1,B>3?m(1.15):B>1?m(1.1):B>.3?m(1.05):m(1)}},T=M=>{let $,F=()=>$&&$.start?$.start.length:0,G=N=>$.start[N]/1e3,B=N=>$.dur[N]/1e3,D=N=>$.fragIndex+N,I=(N,re)=>({chunkIdx:D(N),startTS:G(N),dur:B(N),discontinuity:re}),j=()=>{let N=0;if($&&$.dur){let re=this.lowLatency?this.params.config.lowLatencyMinBuffer:this.params.config.minBuffer,ce=this.lowLatency?this.params.config.lowLatencyMinBufferSegments:this.params.config.minBufferSegments,Te=re;this.sourceJitter>1&&(Te+=this.sourceJitter-1);let Be=$.dur.length-1;for(;Be>=0&&(Te-=$.dur[Be],!(Te<=0));--Be);N=Math.min(Be,$.dur.length-1-ce),N=Math.max(N,0)}return I(N,!0)},k=N=>{let re=F();if(!(re<=0)){if((0,Lt.isNonNullable)(N)){for(let ce=0;ce<re;ce++)if(G(ce)>N)return I(ce)}return j()}},R=N=>{let re=F(),ce=N?N.chunkIdx+1:0,Te=ce-$.fragIndex;if(!(re<=0)){if(!N||Te<0||Te-re>wk)return t(`Resync: offset=${Te} bChunks=${re} chunk=`+JSON.stringify(N)),j();if(!(Te>=re))return I(ce-$.fragIndex,!1)}},V=(N,re,ce)=>{l&&l.abort(),l=Rr(this.urlResolver.resolve(N,!0,this.lowLatency),re,ce,()=>this._retryCallback()).withTimeout(Kn).withRetryCount(ql).withFinally(()=>{l=null}).withJSONResponse().send()};return{seek:(N,re)=>{V(M,ce=>{if(!p())return;$=ce;let Te=!!$.lowLatency;Te!==this.lowLatency&&g(Te);let Be=0;for(let Ie=0;Ie<$.dur.length;++Ie)Be+=$.dur[Ie];Be>0&&((0,Lt.assertNonNullable)(this.filesFetcher),this.filesFetcher.optimizeForSegDuration(Be/$.dur.length)),r({name:"index",zeroTime:$.zeroTime,shiftDuration:$.shiftDuration}),this.sourceJitter=$.hasOwnProperty("jitter")?Math.min(10,Math.max(.01,$.jitter/1e3)):1,N(k(re))},()=>this._handleNetworkError())},nextChunk:R}},A=()=>{a=!1,o&&o.abort(),u&&u.abort(),l&&l.abort(),(0,Lt.assertNonNullable)(this.filesFetcher),this.filesFetcher.abortAll()};return c={start:M=>{let{videoElement:$,logger:F}=this.params,G=T(e.jidxUrl),B,D,I,j,k=0,R,V,ge,N=()=>{R&&(clearTimeout(R),R=void 0);let z=Math.max(kk,1e3*(this._getBufferSizeSec()-this.sourceJitter-5)),qe=k+z,De=Ge(),he=Math.min(1e4,qe-De);k=De;let Ve=()=>{l||p()&&G.seek(()=>{p()&&(k=Ge(),re(),N())})};he>0?R=window.setTimeout(()=>{this.paused?N():Ve()},he):Ve()},re=()=>{let z;for(;z=G.nextChunk(j);)j=z,de(z);let qe=G.nextChunk(I);if(qe){if(I&&qe.discontinuity){F("Detected discontinuity; restarting playback"),this.paused?N():(A(),this._initPlayerWith(e));return}Ie(qe)}else N()},ce=(z,qe)=>{if(!p()||!this.sourceBuffer)return;let De,he,Ve,bt=it=>{window.setTimeout(()=>{p()&&ce(z,qe)},it)};if(this.sourceBuffer.updating)F("Source buffer is updating; delaying appendBuffer"),bt(100);else{let it=Ge(),Ae=$.currentTime;!this.paused&&$.buffered.length>1&&V===Ae&&it-ge>500&&(F("Stall suspected; trying to fix"),this._fixupStall()),V!==Ae&&(V=Ae,ge=it);let gt=this._getBufferSizeSec();if(gt>30)F(`Buffered ${gt} seconds; delaying appendBuffer`),bt(2e3);else try{this.sourceBuffer.appendBuffer(z),this.videoPlayStarted?(this.bufferStates.push({ts:it,buf:gt}),y(),this.bufferStates.length>200&&this.bufferStates.shift()):this.shouldPlay()&&(this.videoPlayStarted=!0,this._playVideoElement()),qe&&qe()}catch(Ue){if(Ue.name==="QuotaExceededError")F("QuotaExceededError; delaying appendBuffer"),Ve=this.sourceBuffer.buffered.length,Ve!==0&&(De=this.sourceBuffer.buffered.start(0),he=Ae,he-De>4&&this.sourceBuffer.remove(De,he-3)),bt(1e3);else throw Ue}}},Te=()=>{D&&B&&(F([`Appending chunk, sz=${D.byteLength}:`,JSON.stringify(I)]),ce(D,function(){D=null,re()}))},Be=z=>e.fragUrlTemplate.replace("%%id%%",z.chunkIdx),Ie=z=>{p()&&h(Be(z),(qe,De)=>{if(p()){if(De/=1e3,D=qe,I=z,n=z.startTS,De){let he=Math.min(10,z.dur/De);this.downloadRate=this.downloadRate?(1-.3)*this.downloadRate+.3*he:he}Te()}},()=>this._handleNetworkError())},de=z=>{p()&&((0,Lt.assertNonNullable)(this.filesFetcher),this.filesFetcher.prefetch(this.urlResolver.resolve(Be(z),!1)))},O=z=>{p()&&(e.cachedHeader=z,ce(z,()=>{B=!0,Te()}))};a=!0,G.seek(z=>{if(p()){if(k=Ge(),!z){N();return}j=z,!(0,Lt.isNullable)(M)||z.startTS>M?Ie(z):(I=z,re())}},M),e.cachedHeader?O(e.cachedHeader):d(e.headerUrl,O,()=>this._handleNetworkError())},stop:A,getTimestampSec:()=>n},c}_switchToQuality(e){let{logger:t,playerCallback:i}=this.params,r;e.bitrate!==this.bitrate&&(this.rep&&(r=this.rep.getTimestampSec(),(0,Lt.isNonNullable)(r)&&(r+=.1),this.rep.stop()),this.currentManifestEntry=e,this.rep=this._representation(e),t(`switch to quality: codecs=${e.codecs}; headerUrl=${e.headerUrl}; bitrate=${e.bitrate}`),this.bitrate=e.bitrate,(0,Lt.assertNonNullable)(this.bitrateSwitcher),this.bitrateSwitcher.notifySwitch(this.bitrate),this.rep.start(r),i({name:"qualitySwitch",quality:e}))}_qualityAvailable(e){return(0,Lt.isNonNullable)(this.manifest.find(t=>t.name===e))}_initBitrateSwitcher(){let{logger:e,playerCallback:t}=this.params,i=p=>{if(!this.autoQuality)return;let d,h,m;if(this.currentManifestEntry&&this._qualityAvailable(this.currentManifestEntry.name)&&p<this.bitrate&&(h=this._getBufferSizeSec(),m=p/this.bitrate,h>10&&m>.8||h>15&&m>.5||h>20&&m>.3)){e(`Not switching: buffer=${Math.floor(h)}; bitrate=${this.bitrate}; newRate=${Math.floor(p)}`);return}d=this._selectQuality(p),d?this._switchToQuality(d):e(`Could not find quality by bitrate ${p}`)},a={updateChunk:(d,h)=>{let m=Ge();if(this.chunkRateEstimator.addInterval(d,m,h)){let y=this.chunkRateEstimator.getBitRate();return t({name:"bandwidth",size:h,duration:m-d,speed:y}),!0}},get:()=>{let d=this.chunkRateEstimator.getBitRate();return d?d*.85:0}},n=-1/0,o,u=!0,l=()=>{let p=a.get();if(p&&o&&this.autoQuality){if(u&&p>o&&Nl(n)<3e4)return;i(p)}u=this.autoQuality};return{updateChunk:(p,d)=>{let h=a.updateChunk(p,d);return h&&l(),h},notifySwitch:p=>{let d=Ge();p<o&&(n=d),o=p}}}_fetchManifest(e,t,i){this.manifestRequest=Rr(this.urlResolver.resolve(e,!0),t,i,()=>this._retryCallback()).withJSONResponse().withTimeout(Kn).withRetryCount(this.params.config.manifestRetryMaxCount).withRetryInterval(this.params.config.manifestRetryInterval,this.params.config.manifestRetryMaxInterval).send().withFinally(()=>{this.manifestRequest=void 0})}_playVideoElement(){let{videoElement:e}=this.params;et(e,()=>{this.soundProhibitedEvent$.next()}).then(t=>{t||(this.params.liveOffset.pause(),this.params.videoState.setState("paused"))})}_handleManifestUpdate(e){let{logger:t,playerCallback:i,videoElement:r}=this.params,a=n=>{let o=[];return n?.length?(n.forEach((u,l)=>{u.video&&r.canPlayType(u.codecs).replace(/no/,"")&&window.MediaSource?.isTypeSupported?.(u.codecs)&&(u.index=l,o.push(u))}),o.sort(function(u,l){return u.video&&l.video?l.video.height-u.video.height:l.bitrate-u.bitrate}),o):(i({name:"error",type:"empty_manifest"}),[])};this.manifest=a(e),t(`Valid manifest entries: ${this.manifest.length}/${e.length}`),i({name:"manifest",manifest:this.manifest})}_refetchManifest(e){this.destroyed||(this.manifestRefetchTimer&&clearTimeout(this.manifestRefetchTimer),this.manifestRefetchTimer=window.setTimeout(()=>{this._fetchManifest(e,t=>{this.destroyed||(this._handleManifestUpdate(t),this._refetchManifest(e))},()=>this._refetchManifest(e))},Pk))}_initManifest(){this._fetchManifest(this.manifestUrl,e=>{this.destroyed||(this._handleManifestUpdate(e),this._refetchManifest(this.manifestUrl))},()=>this._handleNetworkError())}};var vg=U(ji(),1),ke=require("@vkontakte/videoplayer-shared"),Hl=class{constructor(){this.onDroopedVideoFramesLimit$=new ke.Subject;this.subscription=new ke.Subscription;this.playing=!1;this.tracks=[];this.forceChecker$=new ke.Subject;this.isForceCheckCounter=0;this.prevTotalVideoFrames=0;this.prevDroppedVideoFrames=0;this.limitCounts={};this.handleChangeVideoQuality=()=>{let e=this.tracks.find(({size:t})=>t?.height===this.video.videoHeight&&t?.width===this.video.videoWidth);e&&!(0,ke.isInvariantQuality)(e.quality)&&this.onChangeQuality(e.quality)};this.checkDroppedFrames=()=>{let{totalVideoFrames:e,droppedVideoFrames:t}=this.video.getVideoPlaybackQuality(),i=e-this.prevTotalVideoFrames,r=t-this.prevDroppedVideoFrames,a=1-(i-r)/i;!isNaN(a)&&a>0&&this.log({message:`[dropped]. current dropped percent: ${a}, limit: ${this.droppedFramesChecker.percentLimit}`}),!isNaN(a)&&a>=this.droppedFramesChecker.percentLimit&&(0,ke.isHigher)(this.currentQuality,this.droppedFramesChecker.minQualityBanLimit)&&(this.limitCounts[this.currentQuality]=(this.limitCounts[this.currentQuality]??0)+1,this.maxQualityLimit=this.getMaxQualityLimit(this.currentQuality),this.currentTimer&&window.clearTimeout(this.currentTimer),this.currentTimer=window.setTimeout(()=>this.maxQualityLimit=this.getMaxQualityLimit(),this.droppedFramesChecker.qualityUpWaitingTime),this.onDroopedVideoFramesLimitTrigger()),this.savePrevFrameCounts(e,t)}}connect(e){this.log=e.logger.createComponentLog("DroppedFramesManager"),this.video=e.video,this.isAuto=e.isAuto,this.tracks=e.tracks,this.droppedFramesChecker=e.droppedFramesChecker,this.subscription.add(e.playing$.subscribe(()=>this.playing=!0)),this.subscription.add(e.pause$.subscribe(()=>this.playing=!1)),this.isEnabled&&this.subscribe()}destroy(){this.currentTimer&&window.clearTimeout(this.currentTimer),this.subscription.unsubscribe()}get droppedVideoMaxQualityLimit(){return this.maxQualityLimit}subscribe(){this.subscription.add((0,ke.fromEvent)(this.video,"resize").subscribe(this.handleChangeVideoQuality));let e=(0,ke.interval)(this.droppedFramesChecker.checkTime).pipe((0,ke.filter)(()=>this.playing),(0,ke.filter)(()=>{let r=!!this.isForceCheckCounter;return r&&(this.isForceCheckCounter-=1),!r})),t=this.forceChecker$.pipe((0,ke.debounce)(this.droppedFramesChecker.checkTime)),i=(0,ke.merge)(e,t);this.subscription.add(i.subscribe(this.checkDroppedFrames))}onChangeQuality(e){this.currentQuality=e;let{totalVideoFrames:t,droppedVideoFrames:i}=this.video.getVideoPlaybackQuality();this.savePrevFrameCounts(t,i),this.isForceCheckCounter=this.droppedFramesChecker.tickCountAfterQualityChange,this.forceChecker$.next()}onDroopedVideoFramesLimitTrigger(){this.isAuto.getState()&&(this.log({message:`[onDroopedVideoFramesLimit]. maxQualityLimit: ${this.maxQualityLimit}`}),this.onDroopedVideoFramesLimit$.next())}getMaxQualityLimit(e){let t=(0,vg.default)(this.limitCounts).filter(([,i])=>i>=this.droppedFramesChecker.countLimit).sort(([i],[r])=>(0,ke.isLower)(i,r)?-1:1)?.[0]?.[0];return e??t}get isEnabled(){return this.droppedFramesChecker.enabled&&this.isDroppedFramesCheckerSupport}get isDroppedFramesCheckerSupport(){return!!this.video&&typeof this.video.getVideoPlaybackQuality=="function"}savePrevFrameCounts(e,t){this.prevTotalVideoFrames=e,this.prevDroppedVideoFrames=t}},Lr=Hl;var Xn=require("@vkontakte/videoplayer-shared"),yg=require("@vkontakte/videoplayer-shared");var Ps=()=>!!window.documentPictureInPicture?.window||!!document.pictureInPictureElement;var Rk=(s,e)=>new Xn.Observable(t=>{if(!window.IntersectionObserver)return;let i={root:null},r=new IntersectionObserver((n,o)=>{n.forEach(u=>t.next(u.isIntersecting||Ps()))},{...i,...e});r.observe(s);let a=(0,yg.fromEvent)(document,"visibilitychange").pipe((0,Xn.map)(n=>!document.hidden||Ps())).subscribe(n=>t.next(n));return()=>{r.unobserve(s),a.unsubscribe()}}),ht=Rk;var Lk=["paused","playing","ready"],Mk=["paused","playing","ready"],ws=class{constructor(e){this.subscription=new Q.Subscription;this.videoState=new K("stopped");this.representations$=new Q.ValueSubject([]);this.droppedFramesManager=new Lr;this.maxSeekBackTime$=new Q.ValueSubject(1/0);this.zeroTime$=new Q.ValueSubject(void 0);this.liveOffset=new Xi;this._dashCb=e=>{switch(e.name){case"buffering":{let t=e.isBuffering;this.params.output.isBuffering$.next(t);break}case"error":{this.params.output.error$.next({id:`DashLiveProviderInternal:${e.type}`,category:Q.ErrorCategory.WTF,message:"LiveDashPlayer reported error"});break}case"manifest":{let t=e.manifest,i=[];for(let r of t){let a=r.name??r.index.toString(10),n=Jt(r.name)??(0,Q.videoSizeToQuality)(r.video),o=r.bitrate/1e3,u={...r.video};if(!n)continue;let l={id:a,quality:n,bitrate:o,size:u};i.push({track:l,representation:r})}this.representations$.next(i),this.params.output.availableVideoTracks$.next(i.map(({track:r})=>r)),this.videoState.getTransition()?.to==="manifest_ready"&&this.videoState.setState("manifest_ready");break}case"qualitySwitch":{let t=e.quality,i=this.representations$.getValue().find(({representation:r})=>r===t)?.track;this.params.output.hostname$.next(new URL(t.headerUrl,this.params.source.url).hostname),(0,Q.isNonNullable)(i)&&this.params.output.currentVideoTrack$.next(i);break}case"bandwidth":{let{size:t,duration:i}=e;this.params.dependencies.throughputEstimator.addRawSpeed(t,i);break}case"index":{this.maxSeekBackTime$.next(e.shiftDuration||0),this.zeroTime$.next(e.zeroTime);break}}};this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.videoState.getTransition(),i=this.params.desiredState.playbackState.getState(),r=this.params.desiredState.playbackState.getTransition(),a=this.params.desiredState.seekState.getState();if(this.log({message:`[syncPlayback] videoState: ${e}; videoTransition: ${JSON.stringify(t)}; desiredPlaybackState: ${i}; seekState: ${JSON.stringify(a)};`}),i==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.dash.destroy(),this.video.removeAttribute("src"),this.video.load(),this.videoState.setState("stopped"));return}if(t)return;let n=this.params.desiredState.videoTrack.getTransition(),o=this.params.desiredState.autoVideoTrackSwitching.getTransition();if((0,jl.default)(Mk,e)&&(n||o)){this.prepare();return}if(r?.to!=="paused"&&a.state==="requested"&&(0,jl.default)(Lk,e)){this.seek(a.position-this.liveOffset.getTotalPausedTime());return}switch(e){case"stopped":this.videoState.startTransitionTo("manifest_ready"),this.dash.attachSource($e(this.params.source.url));return;case"manifest_ready":this.videoState.startTransitionTo("ready"),this.prepare();break;case"ready":if(i==="paused")this.videoState.setState("paused");else if(i==="playing"){this.videoState.startTransitionTo("playing");let u=r?.from;u&&u==="ready"&&this.dash.catchUp(),this.dash.play()}return;case"playing":i==="paused"&&(this.videoState.startTransitionTo("paused"),this.liveOffset.pause(),this.dash.pause());return;case"paused":if(i==="playing")if(this.videoState.startTransitionTo("playing"),this.liveOffset.getTotalPausedTime()<this.params.config.maxPausedTime&&this.liveOffset.getTotalOffset()<this.maxSeekBackTime$.getValue())this.liveOffset.resume(),this.dash.play(),this.params.output.position$.next(-this.liveOffset.getTotalOffset()/1e3);else{let u=this.liveOffset.getTotalOffset();u>=this.maxSeekBackTime$.getValue()&&(u=0,this.liveOffset.resetTo(u)),this.liveOffset.resume(),this.params.output.position$.next(-u/1e3),this.dash.reinit($e(this.params.source.url,u))}return;default:return(0,Q.assertNever)(e)}};this.textTracksManager=new pt(e.source.url),this.params=e,this.log=this.params.dependencies.logger.createComponentLog("DashLiveProvider");let t=r=>{e.output.error$.next({id:"DashLiveProvider",category:Q.ErrorCategory.WTF,message:"DashLiveProvider internal logic error",thrown:r})};this.subscription.add((0,Q.merge)(this.videoState.stateChangeStarted$.pipe((0,Q.map)(r=>({transition:r,type:"start"}))),this.videoState.stateChangeEnded$.pipe((0,Q.map)(r=>({transition:r,type:"end"})))).subscribe(({transition:r,type:a})=>{this.log({message:`[videoState change] ${a}: ${JSON.stringify(r)}`})})),this.video=Ke(e.container,e.tuning),this.params.output.element$.next(this.video),this.dash=this.createLiveDashPlayer(),this.subscription.add(this.dash.soundProhibitedEvent$.subscribe(this.params.output.soundProhibitedEvent$)),this.params.output.duration$.next(1/0),this.params.output.position$.next(0),this.params.output.isLive$.next(!0),this.params.output.canChangePlaybackSpeed$.next(!1),this.params.output.hostname$.next(Ne(this.params.source.url)),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.textTracksManager.connect(this.video,this.params.desiredState,this.params.output);let i=Ze(this.video);this.subscription.add(()=>i.destroy()),this.subscription.add(this.representations$.pipe((0,Q.map)(r=>r.map(({track:a})=>a)),(0,Q.filter)(r=>!!r.length),(0,Q.once)()).subscribe(r=>this.droppedFramesManager.connect({logger:this.params.dependencies.logger,video:this.video,droppedFramesChecker:this.params.tuning.droppedFramesChecker,isAuto:this.params.desiredState.autoVideoTrackSwitching,playing$:i.playing$,pause$:i.pause$,tracks:r}))),this.subscription.add(i.canplay$.subscribe(()=>{this.videoState.getTransition()?.to==="ready"&&this.videoState.setState("ready")},t)).add(i.pause$.subscribe(()=>{this.videoState.setState("paused")},t)).add(i.playing$.subscribe(()=>{this.params.desiredState.seekState.getState().state==="applying"&&this.params.output.seekedEvent$.next(),this.videoState.setState("playing")},t)).add(i.error$.subscribe(this.params.output.error$)).add(this.maxSeekBackTime$.pipe((0,Q.filterChanged)(),(0,Q.map)(r=>-r/1e3)).subscribe(this.params.output.duration$)).add((0,Q.combine)({zeroTime:this.zeroTime$.pipe((0,Q.filter)(Q.isNonNullable)),position:i.timeUpdate$}).subscribe(({zeroTime:r,position:a})=>this.params.output.liveTime$.next(r+a*1e3),t)).add($t(this.video,this.params.desiredState.isLooped,t)).add(Je(this.video,this.params.desiredState.volume,i.volumeState$,t)).add(i.volumeState$.subscribe(this.params.output.volume$,t)).add(dt(this.video,this.params.desiredState.playbackRate,i.playbackRateState$,t)).add(i.loadStart$.subscribe(this.params.output.firstBytesEvent$)).add(i.loadedMetadata$.subscribe(this.params.output.loadedMetadataEvent$)).add(i.playing$.subscribe(this.params.output.firstFrameEvent$)).add(i.canplay$.subscribe(this.params.output.canplay$)).add(i.inPiP$.subscribe(this.params.output.inPiP$)).add(i.inFullscreen$.subscribe(this.params.output.inFullscreen$)).add(ht(this.video).subscribe(this.params.output.elementVisible$)).add(this.params.desiredState.autoVideoTrackLimits.stateChangeStarted$.subscribe(({to:{max:r,min:a}})=>{this.dash.setAutoQualityLimits({max:r&&(0,Q.videoQualityToHeight)(r),min:a&&(0,Q.videoQualityToHeight)(a)}),this.params.output.autoVideoTrackLimits$.next({max:r,min:a})})).add(this.videoState.stateChangeEnded$.subscribe(r=>{switch(r.to){case"stopped":this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.desiredState.playbackState.setState("stopped");break;case"manifest_ready":case"ready":this.params.desiredState.playbackState.getTransition()?.to==="ready"&&this.params.desiredState.playbackState.setState("ready");break;case"paused":this.params.desiredState.playbackState.setState("paused");break;case"playing":this.params.desiredState.playbackState.setState("playing");break;default:return(0,Q.assertNever)(r.to)}},t)).add((0,Q.merge)(e.desiredState.playbackState.stateChangeStarted$,e.desiredState.seekState.stateChangeEnded$,e.desiredState.videoTrack.stateChangeStarted$,e.desiredState.autoVideoTrackSwitching.stateChangeStarted$,this.videoState.stateChangeEnded$,this.droppedFramesManager.onDroopedVideoFramesLimit$,(0,Q.observableFrom)(["init"])).pipe((0,Q.debounce)(0)).subscribe(this.syncPlayback,t))}destroy(){this.subscription.unsubscribe(),this.textTracksManager.destroy(),this.droppedFramesManager.destroy(),this.dash.destroy(),this.params.output.element$.next(void 0),Xe(this.video)}createLiveDashPlayer(){let e=new Es({videoElement:this.video,videoState:this.videoState,liveOffset:this.liveOffset,config:{maxParallelRequests:this.params.config.maxParallelRequests,minBuffer:this.params.tuning.live.minBuffer,minBufferSegments:this.params.tuning.live.minBufferSegments,lowLatencyMinBuffer:this.params.tuning.live.lowLatencyMinBuffer,lowLatencyMinBufferSegments:this.params.tuning.live.lowLatencyMinBufferSegments,isLiveCatchUpMode:this.params.tuning.live.isLiveCatchUpMode,manifestRetryInterval:this.params.tuning.manifestRetryInterval,manifestRetryMaxInterval:this.params.tuning.manifestRetryMaxInterval,manifestRetryMaxCount:this.params.tuning.manifestRetryMaxCount},playerCallback:this._dashCb,logger:t=>{this.params.dependencies.logger.log({message:String(t),component:"LiveDashPlayer"})}});return e.pause(),e}prepare(){let e=this.representations$.getValue(),t=this.params.desiredState.videoTrack.getTransition()?.to??this.params.desiredState.videoTrack.getState(),i=this.params.desiredState.autoVideoTrackSwitching.getTransition()?.to??this.params.desiredState.autoVideoTrackSwitching.getState(),r=!i&&(0,Q.isNonNullable)(t)?t:Zt(e.map(({track:l})=>l),{container:this.video.getBoundingClientRect(),panelSize:this.params.panelSize,estimatedThroughput:this.params.dependencies.throughputEstimator.throughput$.getValue(),tuning:this.params.tuning.autoTrackSelection,limits:this.params.desiredState.autoVideoTrackLimits.getState(),droppedVideoMaxQualityLimit:this.droppedFramesManager.droppedVideoMaxQualityLimit,abrLogger:this.params.dependencies.abrLogger}),a=r?.id,n=this.params.desiredState.videoTrack.getTransition(),o=this.params.desiredState.videoTrack.getState()?.id,u=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(r&&(n||a!==o)&&this.setVideoTrack(r),u&&this.setAutoQuality(i),n||u||a!==o){let l=e.find(({track:c})=>c.id===a)?.representation;(0,Q.assertNonNullable)(l,"Representations missing"),this.dash.startPlay(l,i)}}setVideoTrack(e){let t=this.representations$.getValue().find(({track:i})=>i.id===e.id)?.representation;(0,Q.assertNonNullable)(t,`No such representation ${e.id}`),this.dash.switchByName(t.name),this.params.desiredState.videoTrack.setState(e)}setAutoQuality(e){this.dash.setAutoQualityEnabled(e),this.params.desiredState.autoVideoTrackSwitching.setState(e)}seek(e){this.log({message:`[seek] position: ${e}`}),this.params.output.willSeekEvent$.next();let t=this.params.desiredState.playbackState.getState(),i=this.videoState.getState(),r=t==="paused"&&i==="paused",a=-e,n=a<=this.maxSeekBackTime$.getValue()?a:0;this.params.output.position$.next(e/1e3),this.dash.reinit($e(this.params.source.url,n)),r&&this.dash.pause(),this.liveOffset.resetTo(n,r)}};var Tg=ws;var Iv=U(At(),1);var Qe=(s,e)=>{let t=0;for(let i=0;i<s.length;i++){let r=s.start(i)*1e3,a=s.end(i)*1e3;r<=e&&e<=a&&(t=a)}return Math.max(t-e,0)};var ee=require("@vkontakte/videoplayer-shared");var Jn=class{constructor(){Object.defineProperty(this,"listeners",{value:{},writable:!0,configurable:!0})}addEventListener(e,t,i){e in this.listeners||(this.listeners[e]=[]),this.listeners[e].push({callback:t,options:i})}removeEventListener(e,t){if(!(e in this.listeners))return;let i=this.listeners[e];for(let r=0,a=i.length;r<a;r++)if(i[r].callback===t){i.splice(r,1);return}}dispatchEvent(e){if(!(e.type in this.listeners))return;let i=this.listeners[e.type].slice();for(let r=0,a=i.length;r<a;r++){let n=i[r];try{n.callback.call(this,e)}catch(o){Promise.resolve().then(()=>{throw o})}n.options&&n.options.once&&this.removeEventListener(e.type,n.callback)}return!e.defaultPrevented}},Mr=class extends Jn{constructor(){super(),this.listeners||Jn.call(this),Object.defineProperty(this,"aborted",{value:!1,writable:!0,configurable:!0}),Object.defineProperty(this,"onabort",{value:null,writable:!0,configurable:!0}),Object.defineProperty(this,"reason",{value:void 0,writable:!0,configurable:!0})}toString(){return"[object AbortSignal]"}dispatchEvent(e){e.type==="abort"&&(this.aborted=!0,typeof this.onabort=="function"&&this.onabort.call(this,e)),super.dispatchEvent(e)}},As=class{constructor(){Object.defineProperty(this,"signal",{value:new Mr,writable:!0,configurable:!0})}abort(e){let t;try{t=new Event("abort")}catch{typeof document<"u"?document.createEvent?(t=document.createEvent("Event"),t.initEvent("abort",!1,!1)):(t=document.createEventObject(),t.type="abort"):t={type:"abort",bubbles:!1,cancelable:!1}}let i=e;if(i===void 0)if(typeof document>"u")i=new Error("This operation was aborted"),i.name="AbortError";else try{i=new DOMException("signal is aborted without reason")}catch{i=new Error("This operation was aborted"),i.name="AbortError"}this.signal.reason=i,this.signal.dispatchEvent(t)}toString(){return"[object AbortController]"}};typeof Symbol<"u"&&Symbol.toStringTag&&(As.prototype[Symbol.toStringTag]="AbortController",Mr.prototype[Symbol.toStringTag]="AbortSignal");function Zn(s){return s.__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL?(console.log("__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL=true is set, will force install polyfill"),!0):typeof s.Request=="function"&&!s.Request.prototype.hasOwnProperty("signal")||!s.AbortController}function zl(s){typeof s=="function"&&(s={fetch:s});let{fetch:e,Request:t=e.Request,AbortController:i,__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL:r=!1}=s;if(!Zn({fetch:e,Request:t,AbortController:i,__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL:r}))return{fetch:e,Request:a};let a=t;(a&&!a.prototype.hasOwnProperty("signal")||r)&&(a=function(l,c){let p;c&&c.signal&&(p=c.signal,delete c.signal);let d=new t(l,c);return p&&Object.defineProperty(d,"signal",{writable:!1,enumerable:!1,configurable:!0,value:p}),d},a.prototype=t.prototype);let n=e;return{fetch:(u,l)=>{let c=a&&a.prototype.isPrototypeOf(u)?u.signal:l?l.signal:void 0;if(c){let p;try{p=new DOMException("Aborted","AbortError")}catch{p=new Error("Aborted"),p.name="AbortError"}if(c.aborted)return Promise.reject(p);let d=new Promise((h,m)=>{c.addEventListener("abort",()=>m(p),{once:!0})});return l&&l.signal&&delete l.signal,Promise.race([d,n(u,l)])}return n(u,l)},Request:a}}var ks=Zn({fetch:window.fetch,Request:window.Request,AbortController:window.AbortController}),Ig=ks?zl({fetch:window.fetch,Request:window.Request,AbortController:window.AbortController}):void 0,Bt=ks?Ig.fetch:window.fetch,DV=ks?Ig.Request:window.Request,pe=ks?As:window.AbortController,CV=ks?Mr:window.AbortSignal;var Sc=U(Rs(),1);var uS=U(oS(),1),$r=require("@vkontakte/videoplayer-shared"),eo=s=>{if(!s)return{id:"EmptyResponse",category:$r.ErrorCategory.PARSER,message:"Empty response"};if(s.length<=2&&s.match(/^\d+$/))return{id:`UVError#${s}`,category:$r.ErrorCategory.NETWORK,message:`UV Error ${s}`};let e=(0,uS.default)(s).substring(0,100).toLowerCase();if(e.startsWith("<!doctype")||e.startsWith("<html>")||e.startsWith("<body>")||e.startsWith("<head>"))return{id:"UnexpectedHTML",category:$r.ErrorCategory.NETWORK,message:"Received unexpected HTML, possibly a ISP block"};if(e.startsWith("<?xml"))return new DOMParser().parseFromString(s,"text/xml").querySelector("parsererror")?{id:"InvalidXML",category:$r.ErrorCategory.PARSER,message:"XML parsing error"}:{id:"XMLParserLogicError",category:$r.ErrorCategory.PARSER,message:"Response is valid XML, but parser failed"}};var tt=(s,e,t=0)=>{for(let i=0;i<s.length;i++)if(s.start(i)*1e3-t<=e&&s.end(i)*1e3+t>e)return!0;return!1};var v=require("@vkontakte/videoplayer-shared");var io=U(At(),1),_r=U(Ht(),1),ro=U(Rs(),1);var bR=(s,e={})=>{let i=e.timeout||1,r=performance.now();return window.setTimeout(()=>{s({get didTimeout(){return e.timeout?!1:performance.now()-r-1>i},timeRemaining(){return Math.max(0,1+(performance.now()-r))}})},1)},gR=s=>window.clearTimeout(s),lS=s=>typeof s=="function"&&s?.toString().endsWith("{ [native code] }"),cS=!lS(window.requestIdleCallback)||!lS(window.cancelIdleCallback),Br=cS?bR:window.requestIdleCallback,ti=cS?gR:window.cancelIdleCallback;var pv=U(gs(),1);var $i=require("@vkontakte/videoplayer-shared");var SR=18,dS=!1;try{dS=W.browser.isSafari&&!!W.browser.safariVersion&&W.browser.safariVersion<=SR}catch(s){console.error(s)}var Xl=class{constructor(e){this.bufferFull$=new $i.Subject;this.error$=new $i.Subject;this.queue=[];this.currentTask=null;this.destroyed=!1;this.abortRequested=!1;this.completeTask=()=>{try{if(this.currentTask){let e=this.currentTask.signal?.aborted;this.currentTask.callback(!e),this.currentTask=null}this.queue.length&&this.pull()}catch(e){this.error$.next({id:"BufferTaskQueueUnknown",category:$i.ErrorCategory.VIDEO_PIPELINE,message:"Buffer appending or removal failed",thrown:e})}};this.buffer=e,this.buffer.addEventListener("updateend",this.completeTask)}async append(e,t){return t&&t.aborted?!1:new Promise(i=>{let r={operation:"append",data:e,signal:t,callback:i};this.queue.push(r),this.pull()})}async remove(e,t,i){return i&&i.aborted?!1:new Promise(r=>{let a={operation:"remove",from:e,to:t,signal:i,callback:r};this.queue.unshift(a),this.pull()})}async abort(e){return new Promise(t=>{let i,r=a=>{this.abortRequested=!1,t(a)};dS&&e?i={operation:"safariAbort",init:e,callback:r}:i={operation:"abort",callback:r};for(let{callback:a}of this.queue)a(!1);this.abortRequested=!0,i&&(this.queue=[i]),this.pull()})}destroy(){this.destroyed=!0,this.buffer.removeEventListener("updateend",this.completeTask),this.queue=[],this.currentTask=null;try{this.buffer.abort()}catch(e){if(!(e instanceof DOMException&&e.name==="InvalidStateError"))throw e}}pull(){if((this.buffer.updating||this.currentTask||this.destroyed)&&!this.abortRequested)return;let e=this.queue.shift();if(!e)return;if(e.signal?.aborted){e.callback(!1),this.pull();return}this.currentTask=e;let{operation:t}=this.currentTask;try{this.execute(this.currentTask)}catch(r){r instanceof DOMException&&r.name==="QuotaExceededError"&&t==="append"?this.bufferFull$.next(this.currentTask.data.byteLength):r instanceof DOMException&&r.name==="InvalidStateError"||this.error$.next({id:`BufferTaskQueue:${t}`,category:$i.ErrorCategory.VIDEO_PIPELINE,message:"Buffer operation failed",thrown:r}),this.currentTask.callback(!1),this.currentTask=null}this.currentTask&&this.currentTask.operation==="abort"&&this.completeTask()}execute(e){let{operation:t}=e;switch(t){case"append":this.buffer.appendBuffer(e.data);break;case"remove":this.buffer.remove(e.from/1e3,e.to/1e3);break;case"abort":this.buffer.abort();break;case"safariAbort":{this.buffer.abort(),this.buffer.appendBuffer(e.init);break}default:(0,$i.assertNever)(t)}}},pS=Xl;var Dr=s=>{let e=0;for(let t=0;t<s.length;t++)e+=s.end(t)-s.start(t);return e*1e3};var P=require("@vkontakte/videoplayer-shared");var ne=class{constructor(e,t){this.cursor=0;this.source=e,this.boxParser=t,this.children=[];let i=this.readUint32();this.type=this.readString(4),this.size32=i<=e.buffer.byteLength-e.byteOffset?i:NaN;let r=this.size32?this.size32-8:void 0,a=e.byteOffset+this.cursor;this.size64=0,this.usertype=0,this.content=new DataView(e.buffer,a,r)}get id(){return this.type}get size(){return this.size32}scanForBoxes(e){return this.boxParser.parse(e)}readString(e,t="ascii"){let r=new TextDecoder(t).decode(new DataView(this.source.buffer,this.source.byteOffset+this.cursor,e));return this.cursor+=e,r}readUint8(){let e=this.source.getUint8(this.cursor);return this.cursor+=1,e}readUint16(){let e=this.source.getUint16(this.cursor);return this.cursor+=2,e}readUint32(){let e=this.source.getUint32(this.cursor);return this.cursor+=4,e}readUint64(){let e=this.source.getBigInt64(this.cursor);return this.cursor+=8,e}};var Cr=class extends ne{};var Ms=class extends ne{constructor(t,i){super(t,i);this.ondemandPrefix="ondemandlivejson";this.ondemandDataReceivedKey="t-in";this.ondemandDataPreparedKey="t-out";let r=this.content.byteOffset,a=r+this.content.byteLength,n=new TextDecoder("ascii").decode(this.content.buffer.slice(r,a)).split(this.ondemandPrefix)[1],o=JSON.parse(n);this.serverDataReceivedTimestamp=o[this.ondemandDataReceivedKey],this.serverDataPreparedTime=o[this.ondemandDataPreparedKey]}};var $s=class extends ne{constructor(e,t){super(e,t),this.compatibleBrands=[],this.majorBrand=this.readString(4),this.minorVersion=this.readUint32();let i=this.size-this.cursor;for(;i;){let r=this.readString(4);this.compatibleBrands.push(r),i-=4}}};var Bs=class extends ne{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Se=class extends ne{constructor(e,t){super(e,t);let i=this.readUint32();this.version=i>>>24,this.flags=i&16777215}};var Ds=class extends Se{constructor(e,t){super(e,t),this.creationTime=this.readUint32(),this.modificationTime=this.readUint32(),this.timescale=this.readUint32(),this.duration=this.readUint32(),this.rate=this.readUint32(),this.volume=this.readUint16()}};var Cs=class extends ne{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Vs=class extends ne{constructor(e,t){super(e,t),this.data=this.content}};var Zi=class extends Se{get earliestPresentationTime(){return this.earliestPresentationTime32}get firstOffset(){return this.firstOffset32}constructor(e,t){super(e,t),this.segments=[],this.referenceId=this.readUint32(),this.timescale=this.readUint32(),this.earliestPresentationTime32=this.readUint32(),this.firstOffset32=this.readUint32(),this.earliestPresentationTime64=0,this.firstOffset64=0,this.referenceCount=this.readUint32()&65535;for(let i=0;i<this.referenceCount;i++){let r=this.readUint32(),a=r>>>31,n=r<<1>>>1,o=this.readUint32();r=this.readUint32();let u=r>>>28,l=r<<3>>>3;this.segments.push({referenceType:a,referencedSize:n,subsegmentDuration:o,SAPType:u,SAPDeltaTime:l})}}};var Os=class extends ne{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var _s=class extends ne{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Fs=class extends Se{constructor(e,t){switch(super(e,t),this.readUint8()){case 0:this.stereoMode=0;break;case 1:this.stereoMode=1;break;case 2:this.stereoMode=2;break;case 3:this.stereoMode=3;break;case 4:this.stereoMode=4;break}this.cursor+=1}};var Ns=class extends Se{constructor(e,t){super(e,t),this.poseYawDegrees=this.readUint32(),this.posePitchDegrees=this.readUint32(),this.poseRollDegrees=this.readUint32()}};var Us=class extends Se{constructor(e,t){super(e,t),this.projectionBoundsTop=this.readUint32(),this.projectionBoundsBottom=this.readUint32(),this.projectionBoundsLeft=this.readUint32(),this.projectionBoundsRight=this.readUint32()}};var qs=class extends ne{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Hs=class extends Se{constructor(e,t){super(e,t),this.creationTime=this.readUint32(),this.modificationTime=this.readUint32(),this.trackId=this.readUint32(),this.cursor+=4,this.duration=this.readUint32(),this.cursor+=8,this.layer=this.readUint16(),this.alternateGroup=this.readUint16(),this.cursor+=2,this.cursor+=2,this.matrix=[[this.readUint32(),this.readUint32(),this.readUint32()],[this.readUint32(),this.readUint32(),this.readUint32()],[this.readUint32(),this.readUint32(),this.readUint32()]],this.width=this.readUint32(),this.height=this.readUint32()}};var js=class extends ne{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var zs=class extends ne{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Gs=class extends Se{constructor(e,t){super(e,t),this.sequenceNumber=this.readUint32()}};var Qs=class extends ne{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Ws=class extends Se{constructor(e,t){super(e,t),this.trackId=this.readUint32(),this.flags&1&&(this.baseDataOffset=this.readUint64()),this.flags&2&&(this.sampleDescriptionIndex=this.readUint32()),this.flags&8&&(this.defaultSampleDuration=this.readUint32()),this.flags&16&&(this.defaultSampleSize=this.readUint32()),this.flags&32&&(this.defaultSampleFlags=this.readUint32())}};var Ys=class extends Se{constructor(t,i){super(t,i);this.baseMediaDecodeTime32=0;this.baseMediaDecodeTime64=BigInt(0);this.version===1?this.baseMediaDecodeTime64=this.readUint64():this.baseMediaDecodeTime32=this.readUint32()}get baseMediaDecodeTime(){return this.version===1?this.baseMediaDecodeTime64:this.baseMediaDecodeTime32}};var Ks=class extends Se{constructor(t,i){super(t,i);this.sampleDuration=[];this.sampleSize=[];this.sampleFlags=[];this.sampleCompositionTimeOffset=[];this.optionalFields=0;this.sampleCount=this.readUint32(),this.flags&1&&(this.dataOffset=this.readUint32()),this.flags&4&&(this.firstSampleFlags=this.readUint32());for(let r=0;r<this.sampleCount;r++)this.flags&256&&this.sampleDuration.push(this.readUint32()),this.flags&512&&this.sampleSize.push(this.readUint32()),this.flags&1024&&this.sampleFlags.push(this.readUint32()),this.flags&2048&&this.sampleCompositionTimeOffset.push(this.readUint32())}};var Xs=class extends ne{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Js=class extends Se{constructor(e,t){super(e,t),this.entryCount=this.readUint32(),this.children=this.scanForBoxes(new DataView(this.content.buffer,this.content.byteOffset+8,this.content.byteLength-8))}};var Zs=class extends ne{constructor(e,t){super(e,t),this.children=this.scanForBoxes(new DataView(this.content.buffer,this.content.byteOffset+78,this.content.byteLength-78))}};var yR={ftyp:$s,moov:Bs,mvhd:Ds,moof:Cs,mdat:Vs,sidx:Zi,trak:Os,mdia:qs,mfhd:Gs,tkhd:Hs,traf:Qs,tfhd:Ws,tfdt:Ys,trun:Ks,minf:js,sv3d:_s,st3d:Fs,prhd:Ns,proj:zs,equi:Us,uuid:Ms,stbl:Xs,stsd:Js,avc1:Zs,unknown:Cr},mi=class s{constructor(e={}){this.options={offset:0,...e}}parse(e){let t=[],i=this.options.offset;for(;i<e.byteLength;)try{let a=new TextDecoder("ascii").decode(new DataView(e.buffer,e.byteOffset+i+4,4)),n=this.createBox(a,new DataView(e.buffer,e.byteOffset+i));if(!n.size)break;t.push(n),i+=n.size}catch{break}return t}createBox(e,t){let i=yR[e];return i?new i(t,new s):new Cr(t,new s)}};var Bi=class{constructor(e){this.index={},this.indexBoxLevel(e)}indexBoxLevel(e){e.forEach(t=>{this.index[t.type]??=[],this.index[t.type].push(t),t.children.length>0&&this.indexBoxLevel(t.children)})}find(e){return this.index[e]&&this.index[e][0]?this.index[e][0]:null}findAll(e){return this.index[e]||[]}};var IR=new TextDecoder("ascii"),xR=s=>IR.decode(new DataView(s.buffer,s.byteOffset+4,4))==="ftyp",ER=s=>{let e=new Zi(s,new mi),t=e.earliestPresentationTime/e.timescale*1e3,i=s.byteOffset+s.byteLength+e.firstOffset;return e.segments.map(a=>{if(a.referenceType!==0)throw new Error("Unsupported multilevel sidx");let n=a.subsegmentDuration/e.timescale*1e3,o={status:"none",time:{from:t,to:t+n},byte:{from:i,to:i+a.referencedSize-1}};return t+=n,i+=a.referencedSize,o})},PR=(s,e)=>{let i=new mi().parse(s),r=new Bi(i),a=r.findAll("moof"),n=e?r.findAll("uuid"):r.findAll("mdat");if(!(n.length&&a.length))return null;let o=a[0],u=n[n.length-1],l=o.source.byteOffset,p=u.source.byteOffset-o.source.byteOffset+u.size;return new DataView(s.buffer,l,p)},wR=s=>{let t=new mi().parse(s),i=new Bi(t),r={},a=i.findAll("uuid");return a.length?a[a.length-1]:r},AR=s=>{let t=new mi().parse(s);return new Bi(t).find("sidx")?.timescale},kR=(s,e)=>{let i=new mi().parse(s),a=new Bi(i).findAll("traf"),n=a[a.length-1].children.find(p=>p.type==="tfhd"),o=a[a.length-1].children.find(p=>p.type==="tfdt"),u=a[a.length-1].children.find(p=>p.type==="trun"),l=0;return u.sampleDuration.length?l=u.sampleDuration.reduce((p,d)=>p+d,0):l=n.defaultSampleDuration*u.sampleCount,(Number(o.baseMediaDecodeTime)+l)/e*1e3},RR=s=>{let e={is3dVideo:!1,stereoMode:0,projectionType:1,projectionData:{pose:{yaw:0,pitch:0,roll:0},bounds:{top:0,bottom:0,left:0,right:0}}},i=new mi().parse(s),r=new Bi(i);if(r.find("sv3d")){e.is3dVideo=!0;let n=r.find("st3d");n&&(e.stereoMode=n.stereoMode);let o=r.find("prhd");o&&(e.projectionData.pose.yaw=o.poseYawDegrees,e.projectionData.pose.pitch=o.posePitchDegrees,e.projectionData.pose.roll=o.poseRollDegrees);let u=r.find("equi");u&&(e.projectionData.bounds.top=u.projectionBoundsTop,e.projectionData.bounds.right=u.projectionBoundsRight,e.projectionData.bounds.bottom=u.projectionBoundsBottom,e.projectionData.bounds.left=u.projectionBoundsLeft)}return e},hS={validateData:xR,parseInit:RR,getIndexRange:()=>{},parseSegments:ER,parseFeedableSegmentChunk:PR,getChunkEndTime:kR,getServerLatencyTimestamps:wR,getTimescaleFromIndex:AR};var ta=U(At(),1),bi=require("@vkontakte/videoplayer-shared");var mS=require("@vkontakte/videoplayer-shared");var fS={440786851:{type:"master"},17030:{type:"uint"},17143:{type:"uint"},17138:{type:"uint"},17139:{type:"uint"},17026:{type:"string"},17031:{type:"uint"},17029:{type:"uint"},236:{type:"binary"},408125543:{type:"master"},290298740:{type:"master"},19899:{type:"master"},21419:{type:"binary"},21420:{type:"uint"},357149030:{type:"master"},2807729:{type:"uint"},17545:{type:"float"},374648427:{type:"master"},174:{type:"master"},224:{type:"master"},30320:{type:"master"},30321:{type:"uint"},30322:{type:"master"},272869232:{type:"master"},524531317:{type:"master"},231:{type:"uint"},22612:{type:"master"},22743:{type:"uint"},167:{type:"uint"},171:{type:"uint"},163:{type:"binary"},160:{type:"master"},175:{type:"binary"},423732329:{type:"master"},307544935:{type:"master"},475249515:{type:"master"},187:{type:"master"},179:{type:"uint"},183:{type:"master"},247:{type:"uint"},241:{type:"uint"},240:{type:"uint"},178:{type:"uint"},21368:{type:"uint"},234:{type:"uint"},219:{type:"master"},150:{type:"uint"}},bS=s=>{let e=s.getUint8(0),t=0;e&128?t=1:e&64?t=2:e&32?t=3:e&16&&(t=4);let i=ea(s,t),r=i in fS,a=r?fS[i].type:"binary",n=s.getUint8(t),o=0;n&128?o=1:n&64?o=2:n&32?o=3:n&16?o=4:n&8?o=5:n&4?o=6:n&2?o=7:n&1&&(o=8);let u=new DataView(s.buffer,s.byteOffset+t+1,o-1),l=n&255>>o,c=ea(u),p=l*2**((o-1)*8)+c,d=t+o,h;return d+p>s.byteLength?h=new DataView(s.buffer,s.byteOffset+d):h=new DataView(s.buffer,s.byteOffset+d,p),{tag:r?i:"0x"+i.toString(16).toUpperCase(),type:a,tagHeaderSize:d,tagSize:d+p,value:h,valueSize:p}},ea=(s,e=s.byteLength)=>{switch(e){case 1:return s.getUint8(0);case 2:return s.getUint16(0);case 3:return s.getUint8(0)*2**16+s.getUint16(1);case 4:return s.getUint32(0);case 5:return s.getUint8(0)*2**32+s.getUint32(1);case 6:return s.getUint16(0)*2**32+s.getUint32(2);case 7:{let t=s.getUint8(0)*281474976710656+s.getUint16(1)*4294967296+s.getUint32(3);if(Number.isSafeInteger(t))return t}case 8:throw new ReferenceError("Int64 is not supported")}return 0},jt=(s,e)=>{switch(e){case"int":return s.getInt8(0);case"uint":return ea(s);case"float":return s.byteLength===4?s.getFloat32(0):s.getFloat64(0);case"string":return new TextDecoder("ascii").decode(s);case"utf8":return new TextDecoder("utf-8").decode(s);case"date":return new Date(Date.UTC(2001,0)+s.getInt8(0)).getTime();case"master":return s;case"binary":return s;default:(0,mS.assertNever)(e)}},er=(s,e)=>{let t=0;for(;t<s.byteLength;){let i=new DataView(s.buffer,s.byteOffset+t),r=bS(i);if(!e(r))return;r.type==="master"&&er(r.value,e),t=r.value.byteOffset-s.byteOffset+r.valueSize}},gS=s=>{if(s.getUint32(0)!==440786851)return!1;let e,t,i,r=bS(s);return er(r.value,({tag:a,type:n,value:o})=>(a===17143?e=jt(o,n):a===17026?t=jt(o,n):a===17029&&(i=jt(o,n)),!0)),(e===void 0||e<=1)&&t!==void 0&&t==="webm"&&(i===void 0||i<=2)};var SS=[357149030,290298740,374648427,174,224,30320,30321,30322,272869232,524531317,475249515,423732329,307544935],LR=[231,22612,22743,167,171,163,160,175],MR=s=>{let e,t,i,r,a=!1,n=!1,o=!1,u,l,c=!1,p=0;return er(s,({tag:d,type:h,value:m,valueSize:g})=>{if(d===21419){let y=jt(m,h);l=ea(y)}else d!==21420&&(l=void 0);return d===408125543?(e=m.byteOffset,t=m.byteOffset+g):d===357149030?a=!0:d===290298740?n=!0:d===2807729?i=jt(m,h):d===17545?r=jt(m,h):d===21420&&l===475249515?u=jt(m,h):d===374648427?er(m,({tag:y,type:T,value:A})=>y===30321?(c=jt(A,T)===1,!1):!0):a&&n&&(0,ta.default)(SS,d)&&(o=!0),!o}),(0,bi.assertNonNullable)(e,"Failed to parse webm Segment start"),(0,bi.assertNonNullable)(t,"Failed to parse webm Segment end"),(0,bi.assertNonNullable)(r,"Failed to parse webm Segment duration"),i=i??1e6,{segmentStart:Math.round(e/1e9*i*1e3),segmentEnd:Math.round(t/1e9*i*1e3),timeScale:i,segmentDuration:Math.round(r/1e9*i*1e3),cuesSeekPosition:u,is3dVideo:c,stereoMode:p,projectionType:1,projectionData:{pose:{yaw:0,pitch:0,roll:0},bounds:{top:0,bottom:0,left:0,right:0}}}},$R=s=>{if((0,bi.isNullable)(s.cuesSeekPosition))return;let e=s.segmentStart+s.cuesSeekPosition,t=1024*1024;return{from:e,to:e+t}},BR=(s,e)=>{let t=!1,i=!1,r=o=>(0,bi.isNonNullable)(o.time)&&(0,bi.isNonNullable)(o.position),a=[],n;return er(s,({tag:o,type:u,value:l})=>{switch(o){case 475249515:t=!0;break;case 187:n&&r(n)&&a.push(n),n={};break;case 179:n&&(n.time=jt(l,u));break;case 183:break;case 241:n&&(n.position=jt(l,u));break;default:t&&(0,ta.default)(SS,o)&&(i=!0)}return!(t&&i)}),n&&r(n)&&a.push(n),a.map((o,u)=>{let{time:l,position:c}=o,p=a[u+1];return{status:"none",time:{from:l,to:p?p.time:e.segmentDuration},byte:{from:e.segmentStart+c,to:p?e.segmentStart+p.position-1:e.segmentEnd-1}}})},DR=s=>{let e=0,t=!1;try{er(s,i=>i.tag===524531317?i.tagSize<=s.byteLength?(e=i.tagSize,!1):(e+=i.tagHeaderSize,!0):(0,ta.default)(LR,i.tag)?(e+i.tagSize<=s.byteLength&&(e+=i.tagSize,t||=(0,ta.default)([163,160,175],i.tag)),!0):!1)}catch{}return e>0&&e<=s.byteLength&&t?new DataView(s.buffer,s.byteOffset,e):null},vS={validateData:gS,parseInit:MR,getIndexRange:$R,parseSegments:BR,parseFeedableSegmentChunk:DR};var ia=s=>{let e=/^(.+)\/([^;]+)(?:;.*)?$/.exec(s);if(e){let[,t,i]=e;if(t==="audio"||t==="video")switch(i){case"webm":return vS;case"mp4":return hS}}throw new ReferenceError(`Unsupported mime type ${s}`)};var dc=U(sc(),1),uv=U(ji(),1),lv=U(ac(),1),cv=U(Ht(),1),pc=U(Ki(),1);var ev=U(At(),1),Or=s=>{let e=s.split("."),[t,...i]=e;if(!t)return!1;switch(t){case"av01":{let[r,a,n]=i;return!!(n&&parseInt(n,10)>8)}case"vp09":{let[r,a,n]=i;return!!(r&&parseInt(r,10)>=2&&n&&parseInt(n,10)>8)}case"avc1":{let r=i[0];if(!r||r.length!==6)return!1;let[a,n]=r.toUpperCase(),o=a+n;return(0,ev.default)(["6E","7A","F4"],o)}}return!1};var sa=require("@vkontakte/videoplayer-shared");var to=s=>{if(s.includes("/")){let e=s.split("/");return parseInt(e[0])/parseInt(e[1])}else return parseFloat(s)};var tv=s=>{try{let e=RL(),t=s.match(e),{groups:i}=t??{};if(i){let r={};if(i.extensions){let o=i.extensions.toLowerCase().match(/(?:[0-9a-wy-z](?:-[a-z0-9]{2,8})+)/g);Array.from(o||[]).forEach(u=>{r[u[0]]=u.slice(2)})}let a=i.variants?.split(/-/).filter(o=>o!==""),n={extlang:i.extlang,langtag:i.langtag,language:i.language,privateuse:i.privateuse||i.privateuse2,region:i.region,script:i.script,extensions:r,variants:a};return Object.keys(n).forEach(o=>{let u=n[o];(typeof u>"u"||u==="")&&delete n[o]}),n}return null}catch{return null}};function RL(){let s="(?<extlang>(?:[a-z]{3}(?:-[a-z]{3}){0,2}))",e="x(?:-[a-z0-9]{1,8})+",c=`^(?:(?<langtag>${`
|
|
118
|
+
(?<language>${`(?:[a-z]{2,3}(?:-${s})?|[a-z]{4}|[a-z]{5,8})`})
|
|
65
119
|
(-(?<script>[a-z]{4}))?
|
|
66
120
|
(-(?<region>(?:[a-z]{2}|[0-9]{3})))?
|
|
67
121
|
(?<variants>(?:-(?:[a-z0-9]{5,8}|[0-9][a-z0-9]{3}))*)
|
|
68
122
|
(?<extensions>(?:-[0-9a-wy-z](?:-[a-z0-9]{2,8})+)*)
|
|
69
123
|
(?:-(?<privateuse>(?:${e})))?
|
|
70
|
-
`})|(?<privateuse2>${e}))$`.replace(/[\s\t\n]/g,"");return new RegExp(d,"i")}var Ru=U(Ut(),1);var yg=require("@vkontakte/videoplayer-shared"),Tg=({id:r,width:e,height:t,bitrate:i,fps:a,quality:s,streamId:n})=>{let o=(s?qt(s):void 0)??(0,yg.videoSizeToQuality)({width:e,height:t});return o&&{id:r,quality:o,bitrate:i,size:{width:e,height:t},fps:a,streamId:n}},Ig=({id:r,bitrate:e})=>({id:r,bitrate:e}),Eg=({language:r,label:e},{id:t,url:i,isAuto:a})=>({id:t,url:i,isAuto:a,type:"internal",language:r,label:e}),xg=({language:r,label:e,id:t,url:i,isAuto:a})=>({id:t,url:i,isAuto:a,type:"internal",language:r,label:e}),$u=({id:r,language:e,label:t,codecs:i,isDefault:a})=>({id:r,language:e,label:t,codec:(0,Ru.default)(i.split("."),0),isDefault:a}),Mu=({id:r,language:e,label:t,hdr:i,codecs:a})=>({id:r,language:e,hdr:i,label:t,codec:(0,Ru.default)(a.split("."),0)}),Cu=r=>"url"in r,Le=r=>r.type==="template",ca=r=>r instanceof DOMException&&(r.name==="AbortError"||r.code===20);var Pg=r=>{if(!r?.startsWith("P"))return;let e=(n,o)=>{let u=n?parseFloat(n.replace(",",".")):NaN;return(isNaN(u)?0:u)*o},i=/^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/.exec(r),a=i?.[1]==="-"?-1:1,s={days:e(i?.[5],a),hours:e(i?.[6],a),minutes:e(i?.[7],a),seconds:e(i?.[8],a)};return s.days*24*60*60*1e3+s.hours*60*60*1e3+s.minutes*60*1e3+s.seconds*1e3},Lt=(r,e)=>{let t=r;t=(0,Du.default)(t,"$$","$");let i={RepresentationID:e.representationId,Number:e.segmentNumber,Bandwidth:e.bandwidth,Time:e.segmentTime};for(let[a,s]of(0,kg.default)(i)){let n=new RegExp(`\\$${a}(?:%0(\\d+)d)?\\$`,"g");t=(0,Du.default)(t,n,(o,u)=>(0,da.isNullable)(s)?o:(0,da.isNullable)(u)?s:(0,wg.default)(s,parseInt(u,10),"0"))}return t},Lg=(r,e)=>{let i=new DOMParser().parseFromString(r,"application/xml"),a={video:[],audio:[],text:[]},s=i.children[0],n=Array.from(s.querySelectorAll("MPD > BaseURL").values()).map(K=>K.textContent?.trim()??""),o=(0,Ag.default)(n,0)??"",u=s.getAttribute("type")==="dynamic",l=s.getAttribute("availabilityStartTime"),d=s.getAttribute("publishTime"),p=s.getElementsByTagName("vk:Attrs")[0],h=p?.getElementsByTagName("vk:XLatestSegmentPublishTime")[0].textContent,m=p?.getElementsByTagName("vk:XStreamIsLive")[0].textContent,b=p?.getElementsByTagName("vk:XStreamIsUnpublished")[0].textContent,v=p?.getElementsByTagName("vk:XPlaybackDuration")[0].textContent,T;u&&(T={availabilityStartTime:l?new Date(l).getTime():0,publishTime:d?new Date(d).getTime():0,latestSegmentPublishTime:h?new Date(h).getTime():0,streamIsAlive:m==="yes",streamIsUnpublished:b==="yes"});let I,A=s.getAttribute("mediaPresentationDuration"),P=[...s.getElementsByTagName("Period")],$=P.reduce((K,E)=>({...K,[E.id]:E.children}),{}),k=P.reduce((K,E)=>({...K,[E.id]:E.getAttribute("duration")}),{});A?I=Pg(A):(0,Vu.default)(k).filter(K=>K).length&&!u?I=(0,Vu.default)(k).reduce((K,E)=>K+(Pg(E)??0),0):v&&(I=parseInt(v,10));let W=0,Y=s.getAttribute("profiles")?.split(",")??[];for(let K of P.map(E=>E.id))for(let E of $[K]){let q=E.getAttribute("id")??"id"+(W++).toString(10),C=E.getAttribute("mimeType")??"",ie=E.getAttribute("codecs")??"",D=E.getAttribute("contentType")??C?.split("/")[0],be=E.getAttribute("profiles")?.split(",")??[],M=Sg(E.getAttribute("lang")??"")??{},Z=E.querySelector("Label")?.textContent?.trim()??void 0,re=E.querySelectorAll("Representation"),ce=E.querySelector("SegmentTemplate"),ge=E.querySelector("Role")?.getAttribute("value")??void 0,Re=D,$e={id:q,language:M.language,isDefault:ge==="main",label:Z,codecs:ie,hdr:Re==="video"&&Au(ie),mime:C,representations:[]};for(let ee of re){let H=ee.getAttribute("lang")??void 0,Me=Z??E.getAttribute("label")??ee.getAttribute("label")??void 0,ke=ee.querySelector("BaseURL")?.textContent?.trim()??"",ve=new URL(ke||o,e).toString(),We=ee.getAttribute("mimeType")??C,Mt=ee.getAttribute("codecs")??ie??"",lt;if(D==="text"){let Fe=ee.getAttribute("id")||"",Ct=M.privateuse?.includes("x-auto")||Fe.includes("_auto"),ct=ee.querySelector("SegmentTemplate");if(ct){let Ki={representationId:ee.getAttribute("id")??void 0,bandwidth:ee.getAttribute("bandwidth")??void 0},Aa=parseInt(ee.getAttribute("bandwidth")??"",10)/1e3,La=parseInt(ct.getAttribute("startNumber")??"",10)??1,mi=parseInt(ct.getAttribute("timescale")??"",10),en=ct.querySelectorAll("SegmentTimeline S")??[],fi=ct.getAttribute("media");if(!fi)continue;let Ra=[],$a=0,Ma="",bi=0,Xi=La,we=0;for(let et of en){let zt=parseInt(et.getAttribute("d")??"",10),Ye=parseInt(et.getAttribute("r")??"",10)||0,Dt=parseInt(et.getAttribute("t")??"",10);we=Number.isFinite(Dt)?Dt:we;let Kt=zt/mi*1e3,gi=we/mi*1e3;for(let dt=0;dt<Ye+1;dt++){let Vt=Lt(fi,{...Ki,segmentNumber:Xi.toString(10),segmentTime:(we+dt*zt).toString(10)}),vi=(gi??0)+dt*Kt,Zi=vi+Kt;Xi++,Ra.push({time:{from:vi,to:Zi},url:Vt})}we+=(Ye+1)*zt,$a+=(Ye+1)*Kt}bi=we/mi*1e3,Ma=Lt(fi,{...Ki,segmentNumber:Xi.toString(10),segmentTime:we.toString(10)});let Ji={time:{from:bi,to:1/0},url:Ma},Tt={type:"template",baseUrl:ve,segmentTemplateUrl:fi,initUrl:"",totalSegmentsDurationMs:$a,segments:Ra,nextSegmentBeyondManifest:Ji,timescale:mi};lt={id:Fe,kind:"text",segmentReference:Tt,profiles:[],duration:I,bitrate:Aa,mime:"",codecs:"",width:0,height:0,isAuto:Ct}}else lt={id:Fe,isAuto:Ct,kind:"text",url:ve}}else{let Fe=ee.getAttribute("contentType")??We?.split("/")[0]??D,Ct=E.getAttribute("profiles")?.split(",")??[],ct=parseInt(ee.getAttribute("width")??"",10),Ki=parseInt(ee.getAttribute("height")??"",10),Aa=parseInt(ee.getAttribute("bandwidth")??"",10)/1e3,La=ee.getAttribute("frameRate")??"",mi=ee.getAttribute("quality")??void 0,en=La?vg(La):void 0,fi=ee.getAttribute("id")??"id"+(W++).toString(10),Ra=Fe==="video"?`${Ki}p`:Fe==="audio"?`${Aa}Kbps`:Mt,$a=`${fi}@${Ra}`,Ma=[...Y,...be,...Ct],bi,Xi=ee.querySelector("SegmentBase"),we=ee.querySelector("SegmentTemplate")??ce;if(Xi){let Tt=ee.querySelector("SegmentBase Initialization")?.getAttribute("range")??"",[et,zt]=Tt.split("-").map(Vt=>parseInt(Vt,10)),Ye={from:et,to:zt},Dt=ee.querySelector("SegmentBase")?.getAttribute("indexRange"),[Kt,gi]=Dt?Dt.split("-").map(Vt=>parseInt(Vt,10)):[],dt=Dt?{from:Kt,to:gi}:void 0;bi={type:"byteRange",url:ve,initRange:Ye,indexRange:dt}}else if(we){let Tt={representationId:ee.getAttribute("id")??void 0,bandwidth:ee.getAttribute("bandwidth")??void 0},et=parseInt(we.getAttribute("timescale")??"",10),zt=we.getAttribute("initialization")??"",Ye=we.getAttribute("media"),Dt=parseInt(we.getAttribute("startNumber")??"",10)??1,Kt=Lt(zt,Tt);if(!Ye)throw new ReferenceError("No media attribute in SegmentTemplate");let gi=we.querySelectorAll("SegmentTimeline S")??[],dt=[],Vt=0,vi="",Zi=0;if(gi.length){let Ca=Dt,tt=0;for(let Si of gi){let pt=parseInt(Si.getAttribute("d")??"",10),Xt=parseInt(Si.getAttribute("r")??"",10)||0,Da=parseInt(Si.getAttribute("t")??"",10);tt=Number.isFinite(Da)?Da:tt;let tn=pt/et*1e3,mv=tt/et*1e3;for(let Va=0;Va<Xt+1;Va++){let fv=Lt(Ye,{...Tt,segmentNumber:Ca.toString(10),segmentTime:(tt+Va*pt).toString(10)}),Ju=(mv??0)+Va*tn,bv=Ju+tn;Ca++,dt.push({time:{from:Ju,to:bv},url:fv})}tt+=(Xt+1)*pt,Vt+=(Xt+1)*tn}Zi=tt/et*1e3,vi=Lt(Ye,{...Tt,segmentNumber:Ca.toString(10),segmentTime:tt.toString(10)})}else if((0,da.isNonNullable)(I)){let tt=parseInt(we.getAttribute("duration")??"",10)/et*1e3,Si=Math.ceil(I/tt),pt=0;for(let Xt=1;Xt<Si;Xt++){let Da=Lt(Ye,{...Tt,segmentNumber:Xt.toString(10),segmentTime:pt.toString(10)});dt.push({time:{from:pt,to:pt+tt},url:Da}),pt+=tt}Zi=pt,vi=Lt(Ye,{...Tt,segmentNumber:Si.toString(10),segmentTime:pt.toString(10)})}let hv={time:{from:Zi,to:1/0},url:vi};bi={type:"template",baseUrl:ve,segmentTemplateUrl:Ye,initUrl:Kt,totalSegmentsDurationMs:Vt,segments:dt,nextSegmentBeyondManifest:hv,timescale:et}}else throw new ReferenceError("Unknown MPD segment referencing type");if(!Fe||!We)continue;let Ji={video:"video",audio:"audio",text:"text"}[Fe];if(!Ji)continue;Re||=Ji,lt={id:$a,kind:Ji,segmentReference:bi,profiles:Ma,duration:I,bitrate:Aa,mime:We,codecs:Mt,width:ct,height:Ki,fps:en,quality:mi}}$e.language||=H,$e.label||=Me,$e.mime||=We,$e.codecs||=Mt,$e.hdr||=Re==="video"&&Au(Mt),$e.representations.push(lt)}if(Re){let ee=a[Re].find(H=>H.id===$e.id);if(ee&&$e.representations.every(H=>Le(H.segmentReference)))for(let H of ee.representations){let ke=$e.representations.find(We=>We.id===H.id)?.segmentReference,ve=H.segmentReference;ve.segments.push(...ke.segments),ve.nextSegmentBeyondManifest=ke.nextSegmentBeyondManifest}else a[Re].push($e)}}return{duration:I,streams:a,baseUrls:n,live:T}};var Rg=U(ze(),1),Ou=require("@vkontakte/videoplayer-shared"),pe=(r,e)=>(0,Ou.isNonNullable)(r)&&(0,Ou.isNonNullable)(e)&&r.readyState==="open"&&(0,Rg.default)([...r.activeSourceBuffers],e);var pa=class{constructor(e,t,i,{fetcher:a,tuning:s,getCurrentPosition:n,isActiveLowLatency:o,compatibilityMode:u=!1,manifest:l}){this.currentLiveSegmentServerLatency$=new y.ValueSubject(0);this.currentLowLatencySegmentLength$=new y.ValueSubject(0);this.currentSegmentLength$=new y.ValueSubject(0);this.onLastSegment$=new y.ValueSubject(!1);this.fullyBuffered$=new y.ValueSubject(!1);this.playingRepresentation$=new y.ValueSubject(void 0);this.playingRepresentationInit$=new y.ValueSubject(void 0);this.error$=new y.Subject;this.gaps=[];this.subscription=new y.Subscription;this.allInitsLoaded=!1;this.activeSegments=new Set;this.downloadAbortController=new Pe;this.switchAbortController=new Pe;this.destroyAbortController=new Pe;this.bufferLimit=1/0;this.failedDownloads=0;this.baseUrls=[];this.baseUrlsIndex=0;this.isLive=!1;this.liveUpdateSegmentIndex=0;this.liveInitialAdditionalOffset=0;this.isSeekingLive=!1;this.index=0;this.lastDataObtainedTimestampMs=0;this.loadByteRangeSegmentsTimeoutId=0;this.startWith=(0,y.abortable)(this.destroyAbortController.signal,async function*(e){let t=this.representations.get(e);(0,y.assertNonNullable)(t,`Cannot find representation ${e}`),this.playingRepresentationId=e,this.downloadingRepresentationId=e,this.sourceBuffer=this.mediaSource.addSourceBuffer(`${t.mime}; codecs="${t.codecs}"`),this.sourceBufferTaskQueue=new wb(this.sourceBuffer),this.subscription.add((0,y.fromEvent)(this.sourceBuffer,"updateend").subscribe(()=>{this.checkEjectedSegments(),this.maintain()},n=>{let o,u=this.mediaSource.readyState;u!=="open"&&(o={id:`SegmentEjection_source_${u}`,category:y.ErrorCategory.VIDEO_PIPELINE,message:"Error when trying to clear segments ejected by browser",thrown:n}),o??={id:"SegmentEjection",category:y.ErrorCategory.VIDEO_PIPELINE,message:"Error when trying to clear segments ejected by browser",thrown:n},this.error$.next(o)})),this.subscription.add((0,y.fromEvent)(this.sourceBuffer,"error").subscribe(()=>this.error$.next({id:"SourceBuffer",category:y.ErrorCategory.VIDEO_PIPELINE,message:"SourceBuffer Error event fired"}))),this.subscription.add(this.sourceBufferTaskQueue.bufferFull$.subscribe(n=>{let o=this.getCurrentPosition();if(!this.sourceBuffer||!o||!pe(this.mediaSource,this.sourceBuffer))return;let u=Math.min(this.bufferLimit,Tu(this.sourceBuffer.buffered)*.8);this.bufferLimit=u;let l=this.getForwardBufferDuration(o),d=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(o,n*2,l<d).catch(p=>{this.handleAsyncError(p,"pruneBuffer")})})),this.subscription.add(this.sourceBufferTaskQueue.error$.subscribe(n=>this.error$.next(n))),yield this.loadInit(t,"high",!0);let i=this.initData.get(t.id),a=this.segments.get(t.id),s=this.parsedInitData.get(t.id);(0,y.assertNonNullable)(i,"No init buffer for starting representation"),(0,y.assertNonNullable)(a,"No segments for starting representation"),i instanceof ArrayBuffer&&(this.searchGaps(a,t),yield this.sourceBufferTaskQueue.append(i,this.destroyAbortController.signal),this.playingRepresentation$.next(this.playingRepresentationId),this.playingRepresentationInit$.next(s))}.bind(this));this.switchTo=(0,y.abortable)(this.destroyAbortController.signal,async function*(e,t=!1){if(!pe(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);(0,y.assertNonNullable)(i,`No such representation ${e}`);let a=this.segments.get(e),s=this.initData.get(e);if((0,y.isNullable)(s)||(0,y.isNullable)(a)?yield this.loadInit(i,"high",!1):s instanceof Promise&&(yield s),a=this.segments.get(e),(0,y.assertNonNullable)(a,"No segments for starting representation"),s=this.initData.get(e),!(!s||!(s instanceof ArrayBuffer)||!this.sourceBuffer||!pe(this.mediaSource,this.sourceBuffer))){if(yield this.abort(),yield this.sourceBufferTaskQueue.append(s,this.downloadAbortController.signal),t)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e,yield this.dropBuffer();else{let n=this.getCurrentPosition();(0,y.isNonNullable)(n)&&!this.isLive&&(this.bufferLimit=1/0,await this.pruneBuffer(n,1/0,!0)),this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e}this.maintain()}}.bind(this));this.switchToOld=(0,y.abortable)(this.destroyAbortController.signal,async function*(e,t=!1){if(!pe(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);(0,y.assertNonNullable)(i,`No such representation ${e}`);let a=this.segments.get(e),s=this.initData.get(e);if((0,y.isNullable)(s)||(0,y.isNullable)(a)?yield this.loadInit(i,"high",!1):s instanceof Promise&&(yield s),a=this.segments.get(e),(0,y.assertNonNullable)(a,"No segments for starting representation"),s=this.initData.get(e),!(!s||!(s instanceof ArrayBuffer)||!this.sourceBuffer||!pe(this.mediaSource,this.sourceBuffer)))if(yield this.abort(),yield this.sourceBufferTaskQueue.append(s,this.downloadAbortController.signal),t)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e,yield this.dropBuffer(),this.maintain();else{let n=this.getCurrentPosition();(0,y.isNonNullable)(n)&&(this.isLive||(this.bufferLimit=1/0,await this.pruneBuffer(n,1/0,!0)),this.maintain(n)),this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e}}.bind(this));this.seekLive=(0,y.abortable)(this.destroyAbortController.signal,async function*(e){let t=(0,Vs.default)(e,u=>u.representations)??[];if(this.isSeekingLive=!0,!this.downloadingRepresentationId||!t)return;for(let u of this.representations.keys()){let l=t.find(h=>h.id===u);l&&this.representations.set(u,l);let d=this.representations.get(u);if(!d||!Le(d.segmentReference))return;let p=this.getActualLiveStartingSegments(d.segmentReference);this.segments.set(d.id,p)}let i=this.switchingToRepresentationId??this.downloadingRepresentationId,a=this.representations.get(i);(0,y.assertNonNullable)(a);let s=this.segments.get(i);(0,y.assertNonNullable)(s,"No segments for starting representation");let n=this.initData.get(i);if((0,y.assertNonNullable)(n,"No init buffer for starting representation"),!(n instanceof ArrayBuffer))return;let o=this.getDebugBufferState();this.liveUpdateSegmentIndex=0,yield this.abort(),o&&(yield this.sourceBufferTaskQueue.remove(o.from*1e3,o.to*1e3,this.destroyAbortController.signal)),this.searchGaps(s,a),yield this.sourceBufferTaskQueue.append(n,this.destroyAbortController.signal),this.isSeekingLive=!1}.bind(this));this.fetcher=a,this.tuning=s,this.compatibilityMode=u,this.forwardBufferTarget=s.dash.forwardBufferTargetAuto,this.getCurrentPosition=n,this.isActiveLowLatency=o,this.isLive=!!l?.live,this.baseUrls=l?.baseUrls??[],this.initData=new Map(i.map(d=>[d.id,null])),this.segments=new Map,this.parsedInitData=new Map,this.representations=new Map(i.map(d=>[d.id,d])),this.kind=e,this.mediaSource=t,this.sourceBuffer=null}switchToWithPreviousAbort(e,t=!1){!pe(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId||(this.switchAbortController.abort(),this.switchAbortController=new Pe,(0,y.abortable)(this.switchAbortController.signal,async function*(i,a=!1){this.switchingToRepresentationId=i;let s=this.representations.get(i);(0,y.assertNonNullable)(s,`No such representation ${i}`);let n=this.segments.get(i),o=this.initData.get(i);if((0,y.isNullable)(o)||(0,y.isNullable)(n)?yield this.loadInit(s,"high",!1):o instanceof Promise&&(yield o),n=this.segments.get(i),(0,y.assertNonNullable)(n,"No segments for starting representation"),o=this.initData.get(i),!(!(o instanceof ArrayBuffer)||!this.sourceBuffer||!pe(this.mediaSource,this.sourceBuffer))){if(yield this.abort(),yield this.sourceBufferTaskQueue.append(o,this.downloadAbortController.signal),a)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=i,yield this.dropBuffer();else{let u=this.getCurrentPosition();(0,y.isNonNullable)(u)&&!this.isLive&&(this.bufferLimit=this.forwardBufferTarget,yield this.pruneBuffer(u,1/0,!0)),this.downloadingRepresentationId=i,this.switchingToRepresentationId=void 0}this.maintain()}}.bind(this))(e,t))}warmUpMediaSource(){!(0,y.isNullable)(this.sourceBuffer)&&!this.sourceBuffer.updating&&(this.sourceBuffer.mode="segments")}async abort(){for(let e of this.activeSegments)this.abortSegment(e.segment);return this.activeSegments.clear(),this.downloadAbortController.abort(),this.downloadAbortController=new Pe,this.abortBuffer()}maintain(e=this.getCurrentPosition()){if((0,y.isNullable)(e)||(0,y.isNullable)(this.downloadingRepresentationId)||(0,y.isNullable)(this.playingRepresentationId)||(0,y.isNullable)(this.sourceBuffer)||!pe(this.mediaSource,this.sourceBuffer)||(0,y.isNonNullable)(this.switchingToRepresentationId)||this.isSeekingLive)return;let t=this.representations.get(this.downloadingRepresentationId),i=this.segments.get(this.downloadingRepresentationId);if((0,y.assertNonNullable)(t,`No such representation ${this.downloadingRepresentationId}`),!i)return;let a=i.find(d=>e>=d.time.from&&e<d.time.to);(0,y.isNonNullable)(a)&&isFinite(a.time.from)&&isFinite(a.time.to)&&this.currentSegmentLength$.next(a?.time.to-a.time.from);let s=e,n=100;if(this.playingRepresentationId!==this.downloadingRepresentationId){let d=this.getForwardBufferDuration(e),p=a?a.time.to+n:-1/0;a&&a.time.to-e<this.tuning.dash.maxSegmentDurationLeftToSelectNextSegment&&d>=a.time.to-e+n&&(s=p)}if(isFinite(this.bufferLimit)&&Tu(this.sourceBuffer.buffered)>=this.bufferLimit){let d=this.getForwardBufferDuration(e),p=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(e,1/0,d<p).catch(h=>{this.handleAsyncError(h,"pruneBuffer")});return}let u=[];if(!this.activeSegments.size&&(u=this.selectForwardBufferSegments(i,t.segmentReference.type,s),u.length)){let d="auto";if(this.tuning.dash.useFetchPriorityHints&&a)if((0,Ds.default)(u,a))d="high";else{let p=(0,Wi.default)(u,0);p&&p.time.from-a.time.to>=this.forwardBufferTarget/2&&(d="low")}this.loadSegments(u,t,d).catch(p=>{this.handleAsyncError(p,"loadSegments")})}(!this.preloadOnly&&!this.allInitsLoaded&&a&&a.status==="fed"&&!u.length&&this.getForwardBufferDuration(e)>3e3||this.isActiveLowLatency())&&this.loadNextInit();let l=(0,Wi.default)(i,-1);!this.isLive&&l&&(this.fullyBuffered$.next(l.time.to-e-this.getForwardBufferDuration(e)<n),this.onLastSegment$.next(e-l.time.from>0))}get lastDataObtainedTimestamp(){return this.lastDataObtainedTimestampMs}searchGaps(e,t){this.gaps=[];let i=0,a=this.isLive?this.liveInitialAdditionalOffset:0;for(let s of e)Math.trunc(s.time.from-i)>0&&this.gaps.push({representation:t.id,from:i,to:s.time.from+a}),i=s.time.to;(0,y.isNonNullable)(t.duration)&&t.duration-i>0&&!this.isLive&&this.gaps.push({representation:t.id,from:i,to:t.duration})}getActualLiveStartingSegments(e){let t=e.segments,i=this.isActiveLowLatency()?this.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.tuning.dashCmafLive.maxActiveLiveOffset,a=[],s=0,n=t.length-1;do a.unshift(t[n]),s+=t[n].time.to-t[n].time.from,n--;while(s<i&&n>=0);return this.liveInitialAdditionalOffset=s-i,this.isActiveLowLatency()?[a[0]]:a}getLiveSegmentsToLoadState(e){let t=(0,Vs.default)(e?.streams[this.kind],a=>a.representations).find(a=>a.id===this.downloadingRepresentationId);if(!t)return;let i=this.segments.get(t.id);if(i?.length)return{from:i[0].time.from,to:i[i.length-1].time.to}}updateLive(e){let t=(0,Vs.default)(e?.streams[this.kind],i=>i.representations)??[];if(![...this.segments.values()].every(i=>!i.length))for(let i of t){if(!i||!Le(i.segmentReference))return;let a=i.segmentReference.segments.map(l=>({...l,status:"none",size:void 0})),s=100,n=this.segments.get(i.id)??[],o=(0,Wi.default)(n,-1)?.time.to??0,u=a?.findIndex(l=>o>=l.time.from+s&&o<=l.time.to+s);if(u===-1){this.liveUpdateSegmentIndex=0;let l=this.getActualLiveStartingSegments(i.segmentReference);this.segments.set(i.id,l)}else{let l=a.slice(u+1);this.segments.set(i.id,[...n,...l])}}}proceedLowLatencyLive(){let e=this.downloadingRepresentationId;(0,y.assertNonNullable)(e);let t=this.segments.get(e);if(t?.length){let i=t[t.length-1];this.updateLowLatencyLiveIfNeeded(i)}}updateLowLatencyLiveIfNeeded(e){let t=0;for(let i of this.representations.values()){let a=i.segmentReference;if(!Le(a))return;let s=this.segments.get(i.id)??[],n=s.find(u=>Math.floor(u.time.from)===Math.floor(e.time.from));if(n&&!isFinite(n.time.to)&&(n.time.to=e.time.to,t=n.time.to-n.time.from),!!!s.find(u=>Math.floor(u.time.from)===Math.floor(e.time.to))&&this.isActiveLowLatency()){let u=Math.round(e.time.to*a.timescale/1e3).toString(10),l=Lt(a.segmentTemplateUrl,{segmentTime:u});s.push({status:"none",time:{from:e.time.to,to:1/0},url:l})}}this.currentLowLatencySegmentLength$.next(t)}findSegmentStartTime(e){let t=this.switchingToRepresentationId??this.downloadingRepresentationId??this.playingRepresentationId;if(!t)return;let i=this.segments.get(t);return i?i.find(s=>s.time.from<=e&&s.time.to>=e)?.time.from??void 0:void 0}setTarget(e){this.forwardBufferTarget=e}setPreloadOnly(e){this.preloadOnly=e}destroy(){if(this.initData.clear(),this.segments.clear(),this.parsedInitData.clear(),this.representations.clear(),this.sourceBufferTaskQueue?.destroy(),this.gapDetectionIdleCallback&&Or&&Or(this.gapDetectionIdleCallback),this.initLoadIdleCallback&&Or&&Or(this.initLoadIdleCallback),this.subscription.unsubscribe(),this.sourceBuffer)try{this.mediaSource.removeSourceBuffer(this.sourceBuffer)}catch(e){if(!(e instanceof DOMException&&e.name==="NotFoundError"))throw e}this.sourceBuffer=null,this.downloadAbortController.abort(),this.switchAbortController.abort(),this.destroyAbortController.abort(),window.clearTimeout(this.loadByteRangeSegmentsTimeoutId)}selectForwardBufferSegments(e,t,i){return this.isLive?this.selectForwardBufferSegmentsLive(e,i):this.selectForwardBufferSegmentsRecord(e,t,i)}selectForwardBufferSegmentsLive(e,t){let i=e.findIndex(a=>t>=a.time.from&&t<a.time.to);return this.playingRepresentationId!==this.downloadingRepresentationId&&(this.liveUpdateSegmentIndex=i),this.liveUpdateSegmentIndex<e.length?e.slice(this.liveUpdateSegmentIndex++):[]}selectForwardBufferSegmentsRecord(e,t,i){let a=e.findIndex(({status:p,time:{from:h,to:m}},b)=>{let v=h<=i&&m>=i,T=h>i||v||b===0&&i===0,I=Math.min(this.forwardBufferTarget,this.bufferLimit),A=this.preloadOnly&&h<=i+I||m<=i+I;return(p==="none"||p==="partially_ejected"&&T&&A&&this.sourceBuffer&&pe(this.mediaSource,this.sourceBuffer)&&!(Qt(this.sourceBuffer.buffered,h)&&Qt(this.sourceBuffer.buffered,m)))&&T&&A});if(a===-1)return[];if(t!=="byteRange")return e.slice(a,a+1);let s=e,n=0,o=0,u=[],l=this.preloadOnly?0:this.tuning.dash.segmentRequestSize,d=this.preloadOnly?this.forwardBufferTarget:0;for(let p=a;p<s.length&&(n<=l||o<=d);p++){let h=s[p];if(n+=h.byte.to+1-h.byte.from,o+=h.time.to+1-h.time.from,h.status==="none"||h.status==="partially_ejected")u.push(h);else break}return u}async loadSegments(e,t,i="auto"){Le(t.segmentReference)?await this.loadTemplateSegment(e[0],t,i):await this.loadByteRangeSegments(e,t,i)}async loadTemplateSegment(e,t,i="auto"){e.status="downloading";let a={segment:e,loadedBytes:0,feedingBytes:0,fedBytes:0,representationId:t.id};this.activeSegments.add(a);let{range:s,url:n,signal:o,onProgress:u,onProgressTasks:l}=this.prepareTemplateFetchSegmentParams(e,t);this.failedDownloads&&o&&(await(0,y.abortable)(o,async function*(){let d=(0,y.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(p=>setTimeout(p,d))}.bind(this))(),o.aborted&&this.abortActiveSegments([e]));try{let d=await this.fetcher.fetch(n,{range:s,signal:o,onProgress:u,priority:i,isLowLatency:this.isActiveLowLatency()});if(this.lastDataObtainedTimestampMs=(0,y.now)(),!d)return;let p=new DataView(d),h=la(t.mime);if(!isFinite(a.segment.time.to)){let v=t.segmentReference.timescale;a.segment.time.to=h.getChunkEndTime(p,v)}u&&a.feedingBytes&&l?await Promise.all(l):await this.sourceBufferTaskQueue.append(p,o);let{serverDataReceivedTimestamp:m,serverDataPreparedTime:b}=h.getServerLatencyTimestamps(p);m&&b&&this.currentLiveSegmentServerLatency$.next(b-m),a.segment.status="downloaded",this.onSegmentFullyAppended(a,t.id),this.failedDownloads=0}catch(d){this.abortActiveSegments([e]),ca(d)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}}updateRepresentationsBaseUrlIfNeeded(){if(!this.tuning.dash.enableBaseUrlSupport||!this.baseUrls.length||this.failedDownloads<=this.tuning.dash.maxSegmentRetryCount)return;this.baseUrlsIndex=(this.baseUrlsIndex+1)%this.baseUrls.length;let e=this.baseUrls[this.baseUrlsIndex];for(let t of this.representations.values())Le(t.segmentReference)?t.segmentReference.baseUrl=e:t.segmentReference.url=e}async loadByteRangeSegments(e,t,i="auto"){if(!e.length)return;for(let u of e)u.status="downloading",this.activeSegments.add({segment:u,loadedBytes:0,feedingBytes:0,fedBytes:0,representationId:t.id});let{range:a,url:s,signal:n,onProgress:o}=this.prepareByteRangeFetchSegmentParams(e,t);this.failedDownloads&&n&&(await(0,y.abortable)(n,async function*(){let u=(0,y.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(l=>{this.loadByteRangeSegmentsTimeoutId=window.setTimeout(l,u),(0,y.fromEvent)(window,"online").pipe((0,y.once)()).subscribe(()=>{l(),window.clearTimeout(this.loadByteRangeSegmentsTimeoutId)})})}.bind(this))(),n.aborted&&this.abortActiveSegments(e));try{await this.fetcher.fetch(s,{range:a,onProgress:o,signal:n,priority:i}),this.lastDataObtainedTimestampMs=(0,y.now)(),this.failedDownloads=0}catch(u){this.abortActiveSegments(e),ca(u)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}}prepareByteRangeFetchSegmentParams(e,t){if(Le(t.segmentReference))throw new Error("Representation is not byte range type");let i=t.segmentReference.url,a={from:(0,Wi.default)(e,0).byte.from,to:(0,Wi.default)(e,-1).byte.to},{signal:s}=this.downloadAbortController;return{url:i,range:a,signal:s,onProgress:async(o,u)=>{if(!s.aborted)try{this.lastDataObtainedTimestampMs=(0,y.now)(),await this.onSomeByteRangesDataLoaded({dataView:o,loaded:u,signal:s,onSegmentAppendFailed:()=>this.abort(),globalFrom:a?a.from:0,representationId:t.id})}catch(l){this.error$.next({id:"SegmentFeeding",category:y.ErrorCategory.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:l})}}}}prepareTemplateFetchSegmentParams(e,t){if(!Le(t.segmentReference))throw new Error("Representation is not template type");let i=new URL(e.url,t.segmentReference.baseUrl);this.isActiveLowLatency()&&i.searchParams.set("low-latency","yes");let a=i.toString(),{signal:s}=this.downloadAbortController,n=[],u=this.isActiveLowLatency()||this.tuning.dash.enableSubSegmentBufferFeeding&&this.liveUpdateSegmentIndex<3?(l,d)=>{if(!s.aborted)try{this.lastDataObtainedTimestampMs=(0,y.now)();let p=this.onSomeTemplateDataLoaded({dataView:l,loaded:d,signal:s,onSegmentAppendFailed:()=>this.abort(),representationId:t.id});n.push(p)}catch(p){this.error$.next({id:"SegmentFeeding",category:y.ErrorCategory.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:p})}}:void 0;return{url:a,signal:s,onProgress:u,onProgressTasks:n}}abortActiveSegments(e){for(let t of this.activeSegments)(0,Ds.default)(e,t.segment)&&this.abortSegment(t.segment)}async onSomeTemplateDataLoaded({dataView:e,representationId:t,loaded:i,onSegmentAppendFailed:a,signal:s}){if(!this.activeSegments.size||!pe(this.mediaSource,this.sourceBuffer))return;let n=this.representations.get(t);if(n)for(let o of this.activeSegments){let{segment:u}=o;if(o.representationId===t){if(s.aborted){a();continue}if(o.loadedBytes=i,o.loadedBytes>o.feedingBytes){let l=new DataView(e.buffer,e.byteOffset+o.feedingBytes,o.loadedBytes-o.feedingBytes),d=la(n.mime).parseFeedableSegmentChunk(l,this.isLive);d?.byteLength&&(u.status="partially_fed",o.feedingBytes+=d.byteLength,await this.sourceBufferTaskQueue.append(d),o.fedBytes+=d.byteLength)}}}}async onSomeByteRangesDataLoaded({dataView:e,representationId:t,globalFrom:i,loaded:a,signal:s,onSegmentAppendFailed:n}){if(!this.activeSegments.size||!pe(this.mediaSource,this.sourceBuffer))return;let o=this.representations.get(t);if(o)for(let u of this.activeSegments){let{segment:l}=u;if(u.representationId!==t)continue;if(s.aborted){await n();continue}let d=l.byte.from-i,p=l.byte.to-i,h=p-d+1,m=d<a,b=p<=a;if(!m)continue;let v=la(o.mime);if(l.status==="downloading"&&b){l.status="downloaded";let T=new DataView(e.buffer,e.byteOffset+d,h);await this.sourceBufferTaskQueue.append(T,s)&&!s.aborted?this.onSegmentFullyAppended(u,t):await n()}else if(this.tuning.dash.enableSubSegmentBufferFeeding&&(l.status==="downloading"||l.status==="partially_fed")&&(u.loadedBytes=Math.min(h,a-d),u.loadedBytes>u.feedingBytes)){let T=new DataView(e.buffer,e.byteOffset+d+u.feedingBytes,u.loadedBytes-u.feedingBytes),I=u.loadedBytes===h?T:v.parseFeedableSegmentChunk(T);I?.byteLength&&(l.status="partially_fed",u.feedingBytes+=I.byteLength,await this.sourceBufferTaskQueue.append(I,s)&&!s.aborted?(u.fedBytes+=I.byteLength,u.fedBytes===h&&this.onSegmentFullyAppended(u,t)):await n())}}}onSegmentFullyAppended(e,t){if(!((0,y.isNullable)(this.sourceBuffer)||!pe(this.mediaSource,this.sourceBuffer))){!this.isLive&&z.browser.isSafari&&this.tuning.useSafariEndlessRequestBugfix&&(Qt(this.sourceBuffer.buffered,e.segment.time.from,100)&&Qt(this.sourceBuffer.buffered,e.segment.time.to,100)||this.error$.next({id:"EmptyAppendBuffer",category:y.ErrorCategory.VIDEO_PIPELINE,message:"Browser stuck on empty result of adding segment to source buffer"})),this.playingRepresentationId=t,this.playingRepresentation$.next(this.playingRepresentationId),this.playingRepresentationInit$.next(this.parsedInitData.get(this.playingRepresentationId)),e.segment.status="fed",Cu(e.segment)&&(e.segment.size=e.fedBytes);for(let i of this.representations.values())if(i.id!==t)for(let a of this.segments.get(i.id)??[])a.status==="fed"&&Math.round(a.time.from)===Math.round(e.segment.time.from)&&Math.round(a.time.to)===Math.round(e.segment.time.to)&&(a.status="none");this.updateLowLatencyLiveIfNeeded(e.segment),this.activeSegments.delete(e),this.detectGapsWhenIdle(t,[e.segment])}}abortSegment(e){e.status==="partially_fed"?e.status="partially_ejected":e.status!=="partially_ejected"&&(e.status="none");for(let t of this.activeSegments.values())if(t.segment===e){this.activeSegments.delete(t);break}}loadNextInit(){if(this.allInitsLoaded||this.initLoadIdleCallback)return;let e=null,t=!1;for(let[a,s]of this.initData.entries()){let n=s instanceof Promise;t||=n,s===null&&(e=a)}if(!e){this.allInitsLoaded=!0;return}if(t)return;let i=this.representations.get(e);i&&(this.initLoadIdleCallback=Su(()=>(0,$g.default)(this.loadInit(i,"low",!1),()=>this.initLoadIdleCallback=null)))}async loadInit(e,t="auto",i=!1){let a=this.tuning.dash.useFetchPriorityHints?t:"auto",n=(!i&&this.failedDownloads>0?(0,y.abortable)(this.destroyAbortController.signal,async function*(){let o=(0,y.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(u=>setTimeout(u,o))}.bind(this))():Promise.resolve()).then(()=>this.fetcher.fetchRepresentation(e.segmentReference,la(e.mime),a)).then(async o=>{if(!o)return;let{init:u,dataView:l,segments:d}=o,p=l.buffer.slice(l.byteOffset,l.byteOffset+l.byteLength);this.initData.set(e.id,p);let h=d;this.isLive&&Le(e.segmentReference)&&(h=this.getActualLiveStartingSegments(e.segmentReference)),(!this.isLive||!this.segments.has(e.id))&&this.segments.set(e.id,h),u&&this.parsedInitData.set(e.id,u)}).then(()=>this.failedDownloads=0,o=>{this.initData.set(e.id,null),i&&this.error$.next({id:"LoadInits",category:y.ErrorCategory.WTF,message:"loadInit threw",thrown:o})});return this.initData.set(e.id,n),n}async dropBuffer(){for(let e of this.segments.values())for(let t of e)t.status="none";await this.pruneBuffer(0,1/0,!0)}async pruneBuffer(e,t,i=!1){if(!this.sourceBuffer||!pe(this.mediaSource,this.sourceBuffer)||!this.playingRepresentationId||(0,y.isNullable)(e))return!1;let a=[],s=0,n=u=>{u.sort((d,p)=>d.from-p.from);let l=[u[0]];for(let d=1;d<u.length;d++){let{from:p,to:h}=u[d],m=l[l.length-1];m.to>=p?m.to=Math.max(m.to,h):l.push(u[d])}return l},o=u=>{if(s>=t)return a;a.push({...u.time}),a=n(a);let l=Cu(u)?u.size??0:u.byte.to-u.byte.from;s+=l};for(let u of this.segments.values())for(let l of u){let d=l.time.to<=e-this.tuning.dash.bufferPruningSafeZone,p=l.time.from>=e+Math.min(this.forwardBufferTarget,this.bufferLimit);(d||p)&&l.status==="fed"&&o(l)}for(let u=0;u<this.sourceBuffer.buffered.length;u++){let l=this.sourceBuffer.buffered.start(u)*1e3,d=this.sourceBuffer.buffered.end(u)*1e3,p=0;for(let h of this.segments.values())for(let m of h)(0,Ds.default)(["none","partially_ejected"],m.status)&&Math.round(m.time.from)<=Math.round(l)&&Math.round(m.time.to)>=Math.round(d)&&p++;if(p===this.segments.size){let h={time:{from:l,to:d},url:"",status:"none"};o(h)}}if(a.length&&i){let u=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;for(let l of this.segments.values())for(let d of l)d.time.from>=e+u&&d.status==="fed"&&o(d)}return a.length?(await Promise.all(a.map(l=>this.sourceBufferTaskQueue.remove(l.from,l.to)))).reduce((l,d)=>l||d,!1):!1}async abortBuffer(){if(!this.sourceBuffer||!pe(this.mediaSource,this.sourceBuffer))return!1;let e=this.playingRepresentationId&&this.initData.get(this.playingRepresentationId),t=e instanceof ArrayBuffer?e:void 0;return this.sourceBufferTaskQueue.abort(t)}getDebugBufferState(){if(!(!this.sourceBuffer||!pe(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length))return{from:this.sourceBuffer.buffered.start(0),to:this.sourceBuffer.buffered.end(this.sourceBuffer.buffered.length-1)}}getForwardBufferDuration(e=this.getCurrentPosition()){return!this.sourceBuffer||!pe(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length||(0,y.isNullable)(e)?0:Ui(this.sourceBuffer.buffered,e)}detectGaps(e,t){if(!(!this.sourceBuffer||!pe(this.mediaSource,this.sourceBuffer))){if(this.tuning.useRefactoredSearchGap)for(let i=0;i<this.sourceBuffer.buffered.length;i++)this.gaps=this.gaps.filter(a=>this.sourceBuffer&&(Math.round(a.from)<Math.round(this.sourceBuffer.buffered.start(i)*1e3)||Math.round(a.to)>Math.round(this.sourceBuffer.buffered.end(i)*1e3)));for(let i of t){let a={representation:e,from:i.time.from,to:i.time.to};for(let s=0;s<this.sourceBuffer.buffered.length;s++){let n=this.sourceBuffer.buffered.start(s)*1e3,o=this.sourceBuffer.buffered.end(s)*1e3;if(!(o<=i.time.from||n>=i.time.to)){if(n<=i.time.from&&o>=i.time.to){a=void 0;break}o>i.time.from&&o<i.time.to&&(a.from=o),n<i.time.to&&n>i.time.from&&(a.to=n)}}a&&a.to-a.from>1&&!this.gaps.some(s=>a&&s.from===a.from&&s.to===a.to)&&this.gaps.push(a)}}}detectGapsWhenIdle(e,t){if(!(this.gapDetectionIdleCallback||!this.sourceBuffer||!pe(this.mediaSource,this.sourceBuffer))){if(!this.tuning.useRefactoredSearchGap)for(let i=0;i<this.sourceBuffer.buffered.length;i++)this.gaps=this.gaps.filter(a=>this.sourceBuffer&&(Math.round(a.from)<Math.round(this.sourceBuffer.buffered.start(i)*1e3)||Math.round(a.to)>Math.round(this.sourceBuffer.buffered.end(i)*1e3)));this.gapDetectionIdleCallback=Su(()=>{try{this.detectGaps(e,t)}catch(i){this.error$.next({id:"GapDetection",category:y.ErrorCategory.WTF,message:"detectGaps threw",thrown:i})}finally{this.gapDetectionIdleCallback=null}})}}checkEjectedSegments(){if((0,y.isNullable)(this.sourceBuffer)||!pe(this.mediaSource,this.sourceBuffer)||(0,y.isNullable)(this.playingRepresentationId))return;let e=[];for(let i=0;i<this.sourceBuffer.buffered.length;i++){let a=Math.floor(this.sourceBuffer.buffered.start(i)*1e3),s=Math.ceil(this.sourceBuffer.buffered.end(i)*1e3);e.push({from:a,to:s})}let t=100;for(let i of this.segments.values())for(let a of i){let{status:s}=a;if(s!=="fed"&&s!=="partially_ejected")continue;let n=Math.floor(a.time.from),o=Math.ceil(a.time.to),u=e.some(d=>d.from-t<=n&&d.to+t>=o),l=e.filter(d=>n>=d.from&&n<d.to-t||o>d.from+t&&o<=d.to);u||(l.length===1?a.status="partially_ejected":this.gaps.some(d=>d.from===a.time.from||d.to===a.time.to)?a.status="partially_ejected":a.status="none")}}handleAsyncError(e,t){this.error$.next({id:t,category:y.ErrorCategory.VIDEO_PIPELINE,thrown:e,message:"Something went wrong"})}};var ha=r=>{let e=new URL(r);return e.searchParams.set("quic","1"),e.toString()};var Mg=r=>{let e=r.get("X-Delivery-Type"),t=r.get("X-Reused"),i=e===null?"http1":e??void 0,a=t===null?void 0:{1:!0,0:!1}[t]??void 0;return{type:i,reused:a}};var _=require("@vkontakte/videoplayer-shared");var Cg=r=>{let e=new URL(r);return e.searchParams.set("enable-subtitles","yes"),e.toString()};var Os=class{constructor({throughputEstimator:e,requestQuic:t,tracer:i,compatibilityMode:a=!1,useEnableSubtitlesParam:s=!1}){this.lastConnectionType$=new _.ValueSubject(void 0);this.lastConnectionReused$=new _.ValueSubject(void 0);this.lastRequestFirstBytes$=new _.ValueSubject(void 0);this.recoverableError$=new _.Subject;this.error$=new _.Subject;this.abortAllController=new Pe;this.subscription=new _.Subscription;this.fetchManifest=(0,_.abortable)(this.abortAllController.signal,async function*(e){let t=this.tracer.createComponentTracer("FetchManifest"),i=e;this.requestQuic&&(i=ha(i)),!this.compatibilityMode&&this.useEnableSubtitlesParam&&(i=Cg(i));let a=yield this.doFetch(i,{signal:this.abortAllController.signal}).catch(Bs);return a?(t.log("success",(0,_.flattenObject)({url:i,message:"Request successfully executed"})),t.end(),this.onHeadersReceived(a.headers),a.text()):(t.error("error",(0,_.flattenObject)({url:i,message:"No data in request manifest"})),t.end(),null)}.bind(this));this.fetch=(0,_.abortable)(this.abortAllController.signal,async function*(e,{rangeMethod:t=this.compatibilityMode?0:1,range:i,onProgress:a,priority:s="auto",signal:n,measureThroughput:o=!0,isLowLatency:u=!1}={}){let l=e,d=new Headers,p=this.tracer.createComponentTracer("Fetch");if(i)switch(t){case 0:{d.append("Range",`bytes=${i.from}-${i.to}`);break}case 1:{let q=new URL(l,location.href);q.searchParams.append("bytes",`${i.from}-${i.to}`),l=q.toString();break}default:(0,_.assertNever)(t)}this.requestQuic&&(l=ha(l));let h=this.abortAllController.signal,m;if(n){let q=new Pe;if(m=(0,_.merge)((0,_.fromEvent)(this.abortAllController.signal,"abort"),(0,_.fromEvent)(n,"abort")).subscribe(()=>{try{q.abort()}catch(C){Bs(C)}}),this.subscription.add(m),this.abortAllController.signal.aborted||n.aborted)try{q.abort()}catch(C){Bs(C)}h=q.signal}let b=(0,_.now)();p.log("startRequest",(0,_.flattenObject)({url:l,priority:s,rangeMethod:t,range:i,isLowLatency:u,requestStartedAt:b}));let v=yield this.doFetch(l,{priority:s,headers:d,signal:h}),T=(0,_.now)();if(!v)return p.error("error",{message:"No response in request"}),p.end(),m?.unsubscribe(),null;if(this.throughputEstimator?.addRawRtt(T-b),!v.ok||!v.body){m?.unsubscribe();let q=`Fetch error ${v.status}: ${v.statusText}`;return p.error("error",{message:q}),p.end(),Promise.reject(new Error(`Fetch error ${v.status}: ${v.statusText}`))}if(this.onHeadersReceived(v.headers),!a&&!o){m?.unsubscribe();let q=(0,_.now)(),C={requestStartedAt:b,requestEndedAt:q,duration:q-b};return p.log("endRequest",(0,_.flattenObject)(C)),p.end(),v.arrayBuffer()}let[I,A]=v.body.tee(),P=I.getReader();o&&this.throughputEstimator?.trackStream(A,u);let $=0,k=new Uint8Array(0),W=!1,Y=q=>{m?.unsubscribe(),W=!0,Bs(q)},X=(0,_.abortable)(h,async function*({done:q,value:C}){if($===0&&this.lastRequestFirstBytes$.next((0,_.now)()-b),h.aborted){m?.unsubscribe();return}if(!q&&C){let ie=new Uint8Array(k.length+C.length);ie.set(k),ie.set(C,k.length),k=ie,$+=C.byteLength,a?.(new DataView(k.buffer),$),yield P?.read().then(X,Y)}}.bind(this));yield P?.read().then(X,Y),m?.unsubscribe();let K=(0,_.now)(),E={failed:W,requestStartedAt:b,requestEndedAt:K,duration:K-b};return W?(p.error("endRequest",(0,_.flattenObject)(E)),p.end(),null):(p.log("endRequest",(0,_.flattenObject)(E)),p.end(),k.buffer)}.bind(this));this.fetchByteRangeRepresentation=(0,_.abortable)(this.abortAllController.signal,async function*(e,t,i){if(e.type!=="byteRange")return null;let{from:a,to:s}=e.initRange,n=a,o=s,u=!1,l,d;e.indexRange&&(l=e.indexRange.from,d=e.indexRange.to,u=s+1===l,u&&(n=Math.min(l,a),o=Math.max(d,s))),n=Math.min(n,0);let p=yield this.fetch(e.url,{range:{from:n,to:o},priority:i,measureThroughput:!1});if(!p)return null;let h=new DataView(p,a-n,s-n+1);if(!t.validateData(h))throw new Error("Invalid media file");let m=t.parseInit(h),b=e.indexRange??t.getIndexRange(m);if(!b)throw new ReferenceError("No way to load representation index");let v;if(u)v=new DataView(p,b.from-n,b.to-b.from+1);else{let I=yield this.fetch(e.url,{range:b,priority:i,measureThroughput:!1});if(!I)return null;v=new DataView(I)}let T=t.parseSegments(v,m,b);return{init:m,dataView:new DataView(p),segments:T}}.bind(this));this.fetchTemplateRepresentation=(0,_.abortable)(this.abortAllController.signal,async function*(e,t){if(e.type!=="template")return null;let i=new URL(e.initUrl,e.baseUrl).toString(),a=yield this.fetch(i,{priority:t,measureThroughput:!1});return a?{init:null,segments:e.segments.map(n=>({...n,status:"none",size:void 0})),dataView:new DataView(a)}:null}.bind(this));this.throughputEstimator=e,this.requestQuic=t,this.compatibilityMode=a,this.tracer=i.createComponentTracer("Fetcher"),this.useEnableSubtitlesParam=s}onHeadersReceived(e){let{type:t,reused:i}=Mg(e);this.lastConnectionType$.next(t),this.lastConnectionReused$.next(i)}async fetchRepresentation(e,t,i="auto"){let{type:a}=e;switch(a){case"byteRange":return await this.fetchByteRangeRepresentation(e,t,i)??null;case"template":return await this.fetchTemplateRepresentation(e,i)??null;default:(0,_.assertNever)(a)}}destroy(){this.abortAllController.abort(),this.subscription.unsubscribe(),this.tracer.end()}async doFetch(e,t){let i=await St(e,t);if(i.ok)return i;let a=await i.text(),s=parseInt(a);if(!isNaN(s))switch(s){case 1:this.recoverableError$.next({id:"VideoDataLinkExpiredError",message:"Video data links have expired",category:_.ErrorCategory.FATAL});break;case 8:this.recoverableError$.next({id:"VideoDataLinkBlockedForFloodError",message:"Url blocked for flood",category:_.ErrorCategory.FATAL});break;case 18:this.recoverableError$.next({id:"VideoDataLinkIllegalIpChangeError",message:"Client IP has changed",category:_.ErrorCategory.FATAL});break;case 21:this.recoverableError$.next({id:"VideoDataLinkIllegalHostChangeError",message:"Request HOST has changed",category:_.ErrorCategory.FATAL});break;default:this.error$.next({id:"GeneralVideoDataFetchError",message:`Generic video data fetch error (${s})`,category:_.ErrorCategory.FATAL})}}},Bs=r=>{if(!ca(r))throw r};var ci=(r,e,t)=>t*e+(1-t)*r,_u=(r,e)=>r.reduce((t,i)=>t+i,0)/e,Dg=(r,e,t,i)=>{let a=0,s=t,n=_u(r,e),o=e<i?e:i;for(let u=0;u<o;u++)r[s]>n?a++:a--,s=(r.length+s-1)%r.length;return Math.abs(a)===o};var ma=require("@vkontakte/videoplayer-shared"),Yt=class{constructor(e){this.prevReported=void 0;this.pastMeasures=[];this.takenMeasures=0;this.measuresCursor=0;this.params=e,this.pastMeasures=Array(e.deviationDepth),this.smoothed=this.prevReported=e.initial,this.smoothed$=new ma.ValueSubject(e.initial),this.debounced$=new ma.ValueSubject(e.initial);let t=e.label??"value"+Math.random().toString(16).substring(2,6);this.rawSeries$=new Ae(`raw_${t}`),this.smoothedSeries$=new Ae(`smoothed_${t}`),this.reportedSeries$=new Ae(`reported_${t}`),this.rawSeries$.next(e.initial),this.smoothedSeries$.next(e.initial),this.reportedSeries$.next(e.initial)}next(e){let t=0,i=0;for(let o=0;o<this.pastMeasures.length;o++)this.pastMeasures[o]!==void 0&&(t+=(this.pastMeasures[o]-this.smoothed)**2,i++);this.takenMeasures=i,t/=i;let a=Math.sqrt(t),s=this.smoothed+this.params.deviationFactor*a,n=this.smoothed-this.params.deviationFactor*a;this.pastMeasures[this.measuresCursor]=e,this.measuresCursor=(this.measuresCursor+1)%this.pastMeasures.length,this.rawSeries$.next(e),this.updateSmoothedValue(e),this.smoothed$.next(this.smoothed),this.smoothedSeries$.next(this.smoothed),!(this.smoothed>s||this.smoothed<n)&&((0,ma.isNullable)(this.prevReported)||Math.abs(this.smoothed-this.prevReported)/this.prevReported>=this.params.changeThreshold)&&(this.prevReported=this.smoothed,this.debounced$.next(this.smoothed),this.reportedSeries$.next(this.smoothed))}};var _s=class extends Yt{constructor(e){super(e),this.slow=this.fast=e.initial}updateSmoothedValue(e){this.slow=ci(this.slow,e,this.params.emaAlphaSlow),this.fast=ci(this.fast,e,this.params.emaAlphaFast);let t=this.params.fastDirection>0?Math.max:Math.min;this.smoothed=t(this.slow,this.fast)}};var Ns=class extends Yt{constructor(e){super(e),this.emaSmoothed=e.initial}updateSmoothedValue(e){let t=_u(this.pastMeasures,this.takenMeasures);this.emaSmoothed=ci(this.emaSmoothed,e,this.params.emaAlpha);let i=Dg(this.pastMeasures,this.takenMeasures,this.measuresCursor-1,this.params.basisTrendChangeCount);this.smoothed=i?this.emaSmoothed:t}};var Fs=class extends Yt{constructor(t){super(t);this.furtherValues=[];this.currentTopExtremumValue=0;this.extremumInterval=t.extremumInterval}next(t){this.currentTopExtremumValue<=t?(this.currentTopExtremumValue=t,this.furtherValues=[]):this.furtherValues.length===this.extremumInterval?(super.next(this.currentTopExtremumValue),this.currentTopExtremumValue=t,this.furtherValues=[]):this.furtherValues.push(t)}updateSmoothedValue(t){this.smoothed=this.smoothed?ci(this.smoothed,t,this.params.emaAlpha):t}};var di=class{static getSmoothedValue(e,t,i){return i.type==="TwoEma"?new _s({initial:e,emaAlphaSlow:i.emaAlphaSlow,emaAlphaFast:i.emaAlphaFast,changeThreshold:i.changeThreshold,fastDirection:t,deviationDepth:i.deviationDepth,deviationFactor:i.deviationFactor,label:"throughput"}):new Ns({initial:e,emaAlpha:i.emaAlpha,basisTrendChangeCount:i.basisTrendChangeCount,changeThreshold:i.changeThreshold,deviationDepth:i.deviationDepth,deviationFactor:i.deviationFactor,label:"throughput"})}static getLiveBufferSmoothedValue(e,t){return new Fs({initial:e,label:"liveEdgeDelay",...t})}};var Nu=(r,e)=>{r&&r.playbackRate!==e&&(r.playbackRate=e)};var qs=require("@vkontakte/videoplayer-shared");var fa=class r{constructor(e,t){this.currentRepresentation$=new qs.ValueSubject(null);this.maxRepresentations=4;this.representationsCursor=0;this.representations=[];this.currentSegment=null;this.getCurrentPosition=t.getCurrentPosition,this.processStreams(e)}updateLive(e){this.processStreams(e?.streams.text)}seekLive(e){this.processStreams(e)}maintain(e=this.getCurrentPosition()){if(!(0,qs.isNullable)(e))for(let t of this.representations)for(let i of t){let a=i.segmentReference,s=a.segments.length,n=a.segments[0].time.from,o=a.segments[s-1].time.to;if(e<n||e>o)continue;let u=a.segments.find(l=>l.time.from<=e&&l.time.to>=e);!u||this.currentSegment?.time.from===u.time.from&&this.currentSegment.time.to===u.time.to||(this.currentSegment=u,this.currentRepresentation$.next({...i,label:"Live Text",language:"ru",isAuto:!0,url:new URL(u.url,a.baseUrl).toString()}))}}destroy(){this.currentRepresentation$.next(null),this.currentSegment=null,this.representations=[]}processStreams(e){for(let t of e??[]){let i=r.filterRepresentations(t.representations);if(i){this.representations[this.representationsCursor]=i,this.representationsCursor=(this.representationsCursor+1)%this.maxRepresentations;break}}}static isSupported(e){return!!e?.some(t=>r.filterRepresentations(t.representations))}static filterRepresentations(e){return e?.filter(t=>t.kind==="text"&&"segmentReference"in t&&Le(t.segmentReference))}};var Hs=U(Ut(),1);var ba=require("@vkontakte/videoplayer-shared");var Vg=(r,{useHlsJs:e,useManagedMediaSource:t,useOldMSEDetection:i})=>{let{containers:a,protocols:s,codecs:n,nativeHlsSupported:o}=z.video,u=(n.h264||n.h265)&&n.aac,l=s.mse&&(!i||!!window.MediaStreamTrack)||s.mms&&t;return r.filter(d=>{switch(d){case"DASH_SEP":return l&&a.mp4&&u;case"DASH_WEBM":return l&&a.webm&&n.vp9&&n.opus;case"DASH_WEBM_AV1":return l&&a.webm&&n.av1&&n.opus;case"DASH_STREAMS":return l&&(a.mp4&&u||a.webm&&(n.vp9||n.av1)&&(n.opus||n.aac));case"DASH_LIVE":return l&&a.mp4&&u;case"DASH_LIVE_CMAF":return l&&a.mp4&&u&&a.cmaf;case"DASH_ONDEMAND":return l&&a.mp4&&u;case"HLS":case"HLS_ONDEMAND":return o||e&&l&&a.mp4&&u;case"HLS_LIVE":case"HLS_LIVE_CMAF":return o;case"MPEG":return a.mp4;case"DASH":case"DASH_LIVE_WEBM":return!1;case"WEB_RTC_LIVE":return s.webrtc&&s.ws&&n.h264&&(a.mp4||a.webm);default:return(0,ba.assertNever)(d)}})},Us=r=>{let{webmDecodingInfo:e}=z.video,t="DASH_WEBM",i="DASH_WEBM_AV1";switch(r){case"vp9":return[t,i];case"av1":return[i,t];case"none":return[];case"smooth":return e?e[i].smooth?[i,t]:e[t].smooth?[t,i]:[i,t]:[t,i];case"power_efficient":return e?e[i].powerEfficient?[i,t]:e[t].powerEfficient?[t,i]:[i,t]:[t,i];default:(0,ba.assertNever)(r)}return[t,i]},Bg=({webmCodec:r,androidPreferredFormat:e,preferMultiStream:t})=>{let i=[...t?["DASH_STREAMS"]:[],...Us(r),"DASH_SEP","DASH_ONDEMAND",...t?[]:["DASH_STREAMS"]],a=[...t?["DASH_STREAMS"]:[],"DASH_SEP","DASH_ONDEMAND",...t?[]:["DASH_STREAMS"]];if(z.device.isAndroid)switch(e){case"mpeg":return["MPEG",...i,"HLS","HLS_ONDEMAND"];case"hls":return["HLS","HLS_ONDEMAND",...i,"MPEG"];case"dash":return[...i,"HLS","HLS_ONDEMAND","MPEG"];case"dash_any_mpeg":return[...a,"MPEG",...Us(r),"HLS","HLS_ONDEMAND"];case"dash_any_webm":return[...Us(r),"MPEG",...a,"HLS","HLS_ONDEMAND"];case"dash_sep":return["DASH_SEP","MPEG",...Us(r),...a,"HLS","HLS_ONDEMAND"];default:(0,ba.assertNever)(e)}return z.video.nativeHlsSupported?[...i,"HLS","HLS_ONDEMAND","MPEG"]:[...i,"HLS","HLS_ONDEMAND","MPEG"]},Og=({androidPreferredFormat:r,preferCMAF:e,preferWebRTC:t})=>{let i=e?["DASH_LIVE_CMAF","DASH_LIVE"]:["DASH_LIVE","DASH_LIVE_CMAF"],a=e?["HLS_LIVE_CMAF","HLS_LIVE"]:["HLS_LIVE","HLS_LIVE_CMAF"],s=[...i,...a],n=[...a,...i],o,u=z.device.isMac&&z.browser.isSafari;if(z.device.isAndroid)switch(r){case"dash":case"dash_any_mpeg":case"dash_any_webm":case"dash_sep":{o=s;break}case"hls":case"mpeg":{o=n;break}default:(0,ba.assertNever)(r)}else z.video.nativeHlsSupported&&!u?o=n:u?o=e?["DASH_LIVE_CMAF","HLS_LIVE_CMAF","HLS_LIVE","DASH_LIVE"]:["HLS_LIVE","DASH_LIVE","DASH_LIVE_CMAF","HLS_LIVE_CMAF"]:o=s;return t?["WEB_RTC_LIVE",...o]:[...o,"WEB_RTC_LIVE"]},Fu=r=>r?["HLS_LIVE","HLS_LIVE_CMAF","DASH_LIVE_CMAF"]:["DASH_WEBM","DASH_WEBM_AV1","DASH_SEP","DASH_ONDEMAND","HLS","HLS_ONDEMAND","MPEG"],_g=r=>{if(r.size===0)return;if(r.size===1){let t=r.values().next();return(0,Hs.default)(t.value.split("."),0)}for(let t of r){let i=(0,Hs.default)(t.split("."),0);if(i==="opus"||i==="vp09"||i==="av01")return i}let e=r.values().next();return(0,Hs.default)(e.value.split("."),0)};var NA=["timeupdate","progress","play","seeked","stalled","waiting"],FA=["timeupdate","progress","loadeddata","playing","seeked"];var js=class{constructor(e){this.element=null;this.manifestUrlString="";this.source=null;this.manifest=null;this.subscription=new g.Subscription;this.representationSubscription=new g.Subscription;this.state$=new j("none");this.currentVideoRepresentation$=new g.ValueSubject(void 0);this.currentVideoRepresentationInit$=new g.ValueSubject(void 0);this.currentAudioRepresentation$=new g.ValueSubject(void 0);this.currentVideoSegmentLength$=new g.ValueSubject(0);this.currentAudioSegmentLength$=new g.ValueSubject(0);this.error$=new g.Subject;this.lastConnectionType$=new g.ValueSubject(void 0);this.lastConnectionReused$=new g.ValueSubject(void 0);this.lastRequestFirstBytes$=new g.ValueSubject(void 0);this.currentLiveTextRepresentation$=new g.ValueSubject(null);this.isLive$=new g.ValueSubject(!1);this.isActiveLive$=new g.ValueSubject(!1);this.isLowLatency$=new g.ValueSubject(!1);this.liveDuration$=new g.ValueSubject(0);this.liveSeekableDuration$=new g.ValueSubject(0);this.liveAvailabilityStartTime$=new g.ValueSubject(0);this.liveStreamStatus$=new g.ValueSubject(void 0);this.bufferLength$=new g.ValueSubject(0);this.liveLatency$=new g.ValueSubject(void 0);this.liveLoadBufferLength$=new g.ValueSubject(0);this.livePositionFromPlayer$=new g.ValueSubject(0);this.currentStallDuration$=new g.ValueSubject(0);this.videoLastDataObtainedTimestamp$=new g.ValueSubject(0);this.fetcherRecoverableError$=new g.Subject;this.fetcherError$=new g.Subject;this.liveStreamEndTimestamp=0;this.isUpdatingLive=!1;this.isJumpGapAfterSeekLive=!1;this.forceEnded$=new g.Subject;this.gapWatchdogActive=!1;this.destroyController=new Pe;this.initManifest=(0,g.abortable)(this.destroyController.signal,async function*(e,t,i){this.tracer.log("initManifest"),this.element=e,this.manifestUrlString=xe(t,i,2),this.state$.startTransitionTo("manifest_ready"),this.manifest=yield this.updateManifest(),this.manifest?.streams.video.length?this.state$.setState("manifest_ready"):this.error$.next({id:"NoRepresentations",category:g.ErrorCategory.PARSER,message:"No playable video representations"})}.bind(this));this.updateManifest=(0,g.abortable)(this.destroyController.signal,async function*(){this.tracer.log("updateManifestStart",{manifestUrl:this.manifestUrlString});let e=yield this.fetcher.fetchManifest(this.manifestUrlString).catch(n=>{!this.manifest&&!this.bufferLength$.getValue()&&this.error$.next({id:"LoadManifest",category:g.ErrorCategory.NETWORK,message:"Failed to load manifest",thrown:n})});if(!e)return null;let t=null;try{t=Lg(e??"",this.manifestUrlString)}catch(n){let o=Eb(e)??{id:"ManifestParsing",category:g.ErrorCategory.PARSER,message:"Failed to parse MPD manifest",thrown:n};this.error$.next(o)}if(!t)return null;let i=(n,o,u)=>!!(this.element?.canPlayType?.(o)&&nt()?.isTypeSupported?.(`${o}; codecs="${u}"`)||n==="text");if(t.live){this.isLive$.next(!!t.live);let{availabilityStartTime:n,latestSegmentPublishTime:o,streamIsUnpublished:u,streamIsAlive:l}=t.live,d=(t.duration??0)/1e3;this.liveSeekableDuration$.next(-1*d),this.liveDuration$.next((o-n)/1e3),this.liveAvailabilityStartTime$.next(t.live.availabilityStartTime);let p="active";l||(p=u?"unpublished":"unexpectedly_down"),this.liveStreamStatus$.next(p)}let a={text:t.streams.text,video:[],audio:[]};for(let n of["video","audio"]){let u=t.streams[n].filter(({mime:p,codecs:h})=>i(n,p,h)),l=new Set(u.map(({codecs:p})=>p)),d=_g(l);if(d&&(a[n]=u.filter(({codecs:p})=>p.startsWith(d))),n==="video"){let p=this.tuning.preferHDR,h=a.video.some(b=>b.hdr),m=a.video.some(b=>!b.hdr);z.display.isHDR&&p&&h?a.video=a.video.filter(b=>b.hdr):m&&(a.video=a.video.filter(b=>!b.hdr))}}let s={...t,streams:a};return this.tracer.log("updateManifestEnd",(0,g.flattenObject)(s)),s}.bind(this));this.initRepresentations=(0,g.abortable)(this.destroyController.signal,async function*(e,t,i){this.tracer.log("initRepresentationsStart",(0,g.flattenObject)({initialVideo:e,initialAudio:t,sourceHls:i})),(0,g.assertNonNullable)(this.manifest),(0,g.assertNonNullable)(this.element),this.representationSubscription.unsubscribe(),this.state$.startTransitionTo("representations_ready");let a=h=>{this.representationSubscription.add((0,g.fromEvent)(h,"error").pipe((0,g.filter)(m=>!!this.element?.played.length)).subscribe(m=>{this.error$.next({id:"VideoSource",category:g.ErrorCategory.VIDEO_PIPELINE,message:"Unexpected video source error",thrown:m})}))};this.source=this.tuning.useManagedMediaSource?af():new MediaSource;let s=document.createElement("source");if(a(s),s.src=URL.createObjectURL(this.source),this.element.appendChild(s),this.tuning.useManagedMediaSource&&xs())if(i){let h=document.createElement("source");a(h),h.type="application/x-mpegurl",h.src=i.url,this.element.appendChild(h)}else this.element.disableRemotePlayback=!0;this.isActiveLive$.next(this.isLive$.getValue());let n={fetcher:this.fetcher,tuning:this.tuning,getCurrentPosition:()=>this.element?this.element.currentTime*1e3:void 0,isActiveLowLatency:()=>this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),manifest:this.manifest},o=this.manifest.streams.video.reduce((h,m)=>[...h,...m.representations],[]);if(this.videoBufferManager=new pa("video",this.source,o,n),this.bufferManagers=[this.videoBufferManager],(0,g.isNonNullable)(t)){let h=this.manifest.streams.audio.reduce((m,b)=>[...m,...b.representations],[]);this.audioBufferManager=new pa("audio",this.source,h,n),this.bufferManagers.push(this.audioBufferManager)}fa.isSupported(this.manifest.streams.text)&&!this.isLowLatency$.getValue()&&(this.liveTextManager=new fa(this.manifest.streams.text,n)),this.representationSubscription.add(this.fetcher.lastConnectionType$.subscribe(this.lastConnectionType$)),this.representationSubscription.add(this.fetcher.lastConnectionReused$.subscribe(this.lastConnectionReused$)),this.representationSubscription.add(this.fetcher.lastRequestFirstBytes$.subscribe(this.lastRequestFirstBytes$));let u=()=>{this.stallWatchdogSubscription?.unsubscribe(),this.currentStallDuration$.next(0)};if(this.representationSubscription.add((0,g.merge)(...FA.map(h=>(0,g.fromEvent)(this.element,h))).pipe((0,g.map)(h=>this.element?Ui(this.element.buffered,this.element.currentTime*1e3):0),(0,g.filterChanged)(),(0,g.tap)(h=>{h>this.tuning.dash.bufferEmptinessTolerance&&u()})).subscribe(this.bufferLength$)),this.representationSubscription.add((0,g.merge)((0,g.fromEvent)(this.element,"ended"),this.forceEnded$).subscribe(()=>{u()})),this.isLive$.getValue()){this.subscription.add(this.liveDuration$.pipe((0,g.filterChanged)()).subscribe(m=>this.liveStreamEndTimestamp=(0,g.now)())),this.subscription.add((0,g.fromEvent)(this.element,"pause").subscribe(()=>{this.livePauseWatchdogSubscription=(0,g.interval)(1e3).subscribe(m=>{let b=vs(this.manifestUrlString,2);this.manifestUrlString=xe(this.manifestUrlString,b+1e3,2),this.liveStreamStatus$.getValue()==="active"&&this.updateManifest()}),this.subscription.add(this.livePauseWatchdogSubscription)})).add((0,g.fromEvent)(this.element,"play").subscribe(m=>this.livePauseWatchdogSubscription?.unsubscribe())),this.representationSubscription.add((0,g.combine)({isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe((0,g.map)(({isActiveLive:m,isLowLatency:b})=>m&&b),(0,g.filterChanged)()).subscribe(m=>{this.isManualDecreasePlaybackInLive()||Nu(this.element,1)})),this.representationSubscription.add((0,g.combine)({bufferLength:this.bufferLength$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe((0,g.filter)(({bufferLength:m,isActiveLive:b,isLowLatency:v})=>b&&v&&!!m)).subscribe(({bufferLength:m})=>this.liveBuffer.next(m))),this.representationSubscription.add(this.videoBufferManager.currentLowLatencySegmentLength$.subscribe(m=>{if(!this.isActiveLive$.getValue()&&!this.isLowLatency$.getValue()&&!m)return;let b=this.liveSeekableDuration$.getValue()-m/1e3;this.liveSeekableDuration$.next(Math.max(b,-1*this.tuning.dashCmafLive.maxLiveDuration)),this.liveDuration$.next(this.liveDuration$.getValue()+m/1e3)})),this.representationSubscription.add((0,g.combine)({isLive:this.isLive$,rtt:this.throughputEstimator.rtt$,bufferLength:this.bufferLength$,segmentServerLatency:this.videoBufferManager.currentLiveSegmentServerLatency$}).pipe((0,g.filter)(({isLive:m})=>m),(0,g.filterChanged)((m,b)=>b.bufferLength<m.bufferLength),(0,g.map)(({rtt:m,bufferLength:b,segmentServerLatency:v})=>{let T=vs(this.manifestUrlString,2);return(m/2+b+v+T)/1e3})).subscribe(this.liveLatency$)),this.representationSubscription.add((0,g.combine)({liveBuffer:this.liveBuffer.smoothed$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).subscribe(({liveBuffer:m,isActiveLive:b,isLowLatency:v})=>{if(!v||!b)return;let T=this.tuning.dashCmafLive.lowLatency.maxTargetOffset,I=this.tuning.dashCmafLive.lowLatency.maxTargetOffsetDeviation,A=this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup,P=m-T;if(this.isManualDecreasePlaybackInLive())return;let $=1;Math.abs(P)>I&&($=1+Math.sign(P)*A),Nu(this.element,$)})),this.representationSubscription.add(this.bufferLength$.subscribe(m=>{let b=0;if(m){let v=(this.element?.currentTime??0)*1e3;b=Math.min(...this.bufferManagers.map(I=>I.getLiveSegmentsToLoadState(this.manifest)?.to??v))-v}this.liveLoadBufferLength$.getValue()!==b&&this.liveLoadBufferLength$.next(b)}));let h=0;this.representationSubscription.add((0,g.combine)({liveLoadBufferLength:this.liveLoadBufferLength$,bufferLength:this.bufferLength$}).pipe((0,g.throttle)(1e3)).subscribe(async({liveLoadBufferLength:m,bufferLength:b})=>{if(!this.element||this.isUpdatingLive)return;let v=this.element.playbackRate,T=vs(this.manifestUrlString,2),I=Math.abs(this.livePositionFromPlayer$.getValue())*1e3,A=Math.min(I,this.tuning.dashCmafLive.normalizedTargetMinBufferSize*v),P=this.tuning.dashCmafLive.normalizedActualBufferOffset*v,$=this.tuning.dashCmafLive.normalizedLiveMinBufferSize*v,k=isFinite(m)?m:b,W=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),Y=I<=this.tuning.live.activeLiveDelay;this.isActiveLive$.next(Y);let X="none";if(W?X="active_low_latency":this.isLowLatency$.getValue()&&Y?(this.bufferManagers.forEach(K=>K.proceedLowLatencyLive()),X="active_low_latency"):T!==0&&k<A?X="live_forward_buffering":k<A+$&&(X="live_with_target_offset"),isFinite(m)&&(h=m>h?m:h),X==="live_forward_buffering"||X==="live_with_target_offset"){let K=h-(A+P),E=this.normolizeLiveOffset(Math.trunc(T+K/v)),q=Math.abs(E-T),C=0;!m||q<=this.tuning.dashCmafLive.offsetCalculationError?C=T:E>0&&q>this.tuning.dashCmafLive.offsetCalculationError&&(C=E),this.manifestUrlString=xe(this.manifestUrlString,C,2)}(X==="live_with_target_offset"||X==="live_forward_buffering")&&(h=0,await this.updateLive())},m=>{this.error$.next({id:"updateLive",category:g.ErrorCategory.VIDEO_PIPELINE,thrown:m,message:"Failed to update live with subscription"})}))}let l=(0,g.merge)(...this.bufferManagers.map(h=>h.fullyBuffered$)).pipe((0,g.map)(()=>this.bufferManagers.every(h=>h.fullyBuffered$.getValue()))),d=(0,g.merge)(...this.bufferManagers.map(h=>h.onLastSegment$)).pipe((0,g.map)(()=>this.bufferManagers.some(h=>h.onLastSegment$.getValue()))),p=(0,g.combine)({allBuffersFull:l,someBufferEnded:d}).pipe((0,g.filterChanged)(),(0,g.map)(({allBuffersFull:h,someBufferEnded:m})=>h&&m),(0,g.filter)(h=>h));if(this.representationSubscription.add((0,g.merge)(this.forceEnded$,p).subscribe(()=>{if(this.source&&this.source.readyState==="open"&&Array.from(this.source.sourceBuffers).every(h=>!h.updating))try{this.source?.endOfStream()}catch(h){this.error$.next({id:"EndOfStream",category:g.ErrorCategory.VIDEO_PIPELINE,message:"Failed to end MediaSource stream",thrown:h})}})),this.representationSubscription.add((0,g.merge)(...this.bufferManagers.map(h=>h.error$)).subscribe(this.error$)),this.representationSubscription.add(this.videoBufferManager.playingRepresentation$.subscribe(this.currentVideoRepresentation$)),this.representationSubscription.add(this.videoBufferManager.playingRepresentationInit$.subscribe(this.currentVideoRepresentationInit$)),this.representationSubscription.add(this.videoBufferManager.currentSegmentLength$.subscribe(this.currentVideoSegmentLength$)),this.audioBufferManager&&(this.representationSubscription.add(this.audioBufferManager.playingRepresentation$.subscribe(this.currentAudioRepresentation$)),this.representationSubscription.add(this.audioBufferManager.currentSegmentLength$.subscribe(this.currentAudioSegmentLength$))),this.liveTextManager&&this.representationSubscription.add(this.liveTextManager.currentRepresentation$.subscribe(this.currentLiveTextRepresentation$)),this.source.readyState!=="open"){let h=this.tuning.dash.sourceOpenTimeout>=0;yield new Promise((m,b)=>{h&&(this.timeoutSourceOpenId=setTimeout(()=>{if(this.source?.readyState==="open"){m();return}this.tuning.dash.rejectOnSourceOpenTimeout?b(new Error("Timeout reject when wait sourceopen event")):m()},this.tuning.dash.sourceOpenTimeout)),this.source?.addEventListener("sourceopen",()=>{this.timeoutSourceOpenId&&clearTimeout(this.timeoutSourceOpenId),m()},{once:!0})})}if(!this.isLive$.getValue()){let h=[this.manifest.duration??0,...(0,Uu.default)((0,Uu.default)([...this.manifest.streams.audio,...this.manifest.streams.video],m=>m.representations),m=>{let b=[];return m.duration&&b.push(m.duration),Le(m.segmentReference)&&m.segmentReference.totalSegmentsDurationMs&&b.push(m.segmentReference.totalSegmentsDurationMs),b})];this.source.duration=Math.max(...h)/1e3}this.audioBufferManager&&(0,g.isNonNullable)(t)?yield Promise.all([this.videoBufferManager.startWith(e),this.audioBufferManager.startWith(t)]):yield this.videoBufferManager.startWith(e),this.state$.setState("representations_ready"),this.tracer.log("initRepresentationsEnd")}.bind(this));this.tick=()=>{if(!this.element||!this.videoBufferManager||this.source?.readyState!=="open")return;let e=this.element.currentTime*1e3;this.videoBufferManager.maintain(e),this.audioBufferManager?.maintain(e),this.liveTextManager?.maintain(e),(this.videoBufferManager.gaps.length||this.audioBufferManager?.gaps.length)&&!this.gapWatchdogActive&&(this.gapWatchdogActive=!0,this.gapWatchdogSubscription=(0,g.interval)(this.tuning.gapWatchdogInterval).subscribe(()=>this.jumpGap(),t=>{this.error$.next({id:"GapWatchdog",category:g.ErrorCategory.WTF,message:"Error handling gaps",thrown:t})}),this.subscription.add(this.gapWatchdogSubscription))};this.throughputEstimator=e.throughputEstimator,this.tuning=e.tuning,this.tracer=e.tracer.createComponentTracer(this.constructor.name),this.fetcher=new Os({throughputEstimator:this.throughputEstimator,requestQuic:this.tuning.requestQuick,compatibilityMode:e.compatibilityMode,tracer:this.tracer,useEnableSubtitlesParam:e.tuning.useEnableSubtitlesParam}),this.subscription.add(this.fetcher.recoverableError$.subscribe(this.fetcherRecoverableError$)),this.subscription.add(this.fetcher.error$.subscribe(this.fetcherError$)),this.liveBuffer=di.getLiveBufferSmoothedValue(this.tuning.dashCmafLive.lowLatency.maxTargetOffset,{...e.tuning.dashCmafLive.lowLatency.bufferEstimator}),this.initTracerSubscription()}async seekLive(e){(0,g.assertNonNullable)(this.element);let t=this.liveStreamStatus$.getValue()!=="active"?(0,g.now)()-this.liveStreamEndTimestamp:0,i=this.normolizeLiveOffset(e+t);this.isActiveLive$.next(i===0),this.manifestUrlString=xe(this.manifestUrlString,i,2),this.manifest=await this.updateManifest(),this.manifest&&(this.isJumpGapAfterSeekLive=!0,await this.videoBufferManager?.seekLive(this.manifest.streams.video),await this.audioBufferManager?.seekLive(this.manifest.streams.audio),this.liveTextManager?.seekLive(this.manifest.streams.text))}initBuffer(){(0,g.assertNonNullable)(this.element),this.state$.setState("running"),this.subscription.add((0,g.merge)(...NA.map(e=>(0,g.fromEvent)(this.element,e)),(0,g.fromEvent)(window,"online")).subscribe(()=>this.tick(),e=>{this.error$.next({id:"DashVKPlayer",category:g.ErrorCategory.WTF,message:"Internal logic error",thrown:e})})),this.subscription.add((0,g.fromEvent)(this.element,"progress").subscribe(()=>{this.element&&this.element.readyState===2&&!this.element.seeking&&(this.element.currentTime=this.element.currentTime)})),this.subscription.add((0,g.fromEvent)(this.element,"waiting").subscribe(()=>{this.element&&this.element.readyState===2&&!this.element.seeking&&Qt(this.element.buffered,this.element.currentTime*1e3)&&(this.element.currentTime=this.element.currentTime);let e=()=>{if(!this.element||this.source?.readyState!=="open")return;let t=this.currentStallDuration$.getValue();t+=50,this.currentStallDuration$.next(t);let i={timeInWaiting:t},a=(0,g.now)(),s=100,n=this.videoBufferManager?.lastDataObtainedTimestamp??0;this.videoLastDataObtainedTimestamp$.next(n);let o=this.audioBufferManager?.lastDataObtainedTimestamp??0,u=this.videoBufferManager?.getForwardBufferDuration()??0,l=this.audioBufferManager?.getForwardBufferDuration()??0,d=u<s&&a-n>this.tuning.dash.crashOnStallTWithoutDataTimeout,p=this.audioBufferManager&&l<s&&a-o>this.tuning.dash.crashOnStallTWithoutDataTimeout;if((d||p)&&t>this.tuning.dash.crashOnStallTWithoutDataTimeout||t>=this.tuning.dash.crashOnStallTimeout)throw new Error(`Stall timeout exceeded: ${t} ms`);if(this.isLive$.getValue()&&t%2e3===0){let h=this.normolizeLiveOffset(-1*this.livePositionFromPlayer$.getValue()*1e3);this.seekLive(h).catch(m=>{this.error$.next({id:"stallIntervalCallback",category:g.ErrorCategory.VIDEO_PIPELINE,message:"stallIntervalCallback failed",thrown:m})}),i.liveLastOffset=h}else{let h=this.element.currentTime*1e3;this.videoBufferManager?.maintain(h),this.audioBufferManager?.maintain(h),i.position=h}this.tracer.log("stallIntervalCallback",(0,g.flattenObject)(i))};this.stallWatchdogSubscription?.unsubscribe(),this.stallWatchdogSubscription=(0,g.interval)(50).subscribe(e,t=>{this.error$.next({id:"StallWatchdogCallback",category:g.ErrorCategory.NETWORK,message:"Can't restore DASH after stall.",thrown:t})}),this.subscription.add(this.stallWatchdogSubscription)})),this.tick()}async switchRepresentation(e,t,i=!1){let a={video:this.videoBufferManager,audio:this.audioBufferManager,text:null}[e];return this.tuning.useNewSwitchTo?this.currentStallDuration$.getValue()>0?a?.switchToWithPreviousAbort(t,i):a?.switchTo(t,i):a?.switchToOld(t,i)}async seek(e,t){(0,g.assertNonNullable)(this.element),(0,g.assertNonNullable)(this.videoBufferManager);let i;t||this.element.duration*1e3<=this.tuning.dashSeekInSegmentDurationThreshold||Math.abs(this.element.currentTime*1e3-e)<=this.tuning.dashSeekInSegmentAlwaysSeekDelta?i=e:i=Math.max(this.videoBufferManager.findSegmentStartTime(e)??e,this.audioBufferManager?.findSegmentStartTime(e)??e),this.warmUpMediaSourceIfNeeded(i),Qt(this.element.buffered,i)||await Promise.all([this.videoBufferManager.abort(),this.audioBufferManager?.abort()]),!((0,g.isNullable)(this.element)||(0,g.isNullable)(this.videoBufferManager))&&(this.videoBufferManager.maintain(i),this.audioBufferManager?.maintain(i),this.element.currentTime=i/1e3,this.tracer.log("seek",(0,g.flattenObject)({requestedPosition:e,forcePrecise:t,position:i})))}warmUpMediaSourceIfNeeded(e=this.element?.currentTime){(0,g.isNonNullable)(this.element)&&(0,g.isNonNullable)(this.source)&&(0,g.isNonNullable)(e)&&this.source?.readyState==="ended"&&this.element.duration*1e3-e>this.tuning.dash.seekBiasInTheEnd&&this.bufferManagers.forEach(t=>t.warmUpMediaSource())}get isStreamEnded(){return this.source?.readyState==="ended"}stop(){this.tracer.log("stop"),this.element?.querySelectorAll("source").forEach(e=>{URL.revokeObjectURL(e.src),e.remove()}),this.element=null,this.source=null,this.manifest=null,this.currentVideoRepresentation$.next(void 0),this.videoBufferManager?.destroy(),this.videoBufferManager=null,this.audioBufferManager?.destroy(),this.audioBufferManager=null,this.bufferManagers=[],this.state$.setState("none")}setBufferTarget(e){for(let t of this.bufferManagers)t.setTarget(e)}getStreams(){return this.manifest?.streams}setPreloadOnly(e){for(let t of this.bufferManagers)t.setPreloadOnly(e)}destroy(){this.subscription.unsubscribe(),this.representationSubscription.unsubscribe(),this.timeoutSourceOpenId&&clearTimeout(this.timeoutSourceOpenId),this.destroyController.abort(),this.fetcher.destroy(),this.stop(),this.source?.readyState==="open"&&Array.from(this.source.sourceBuffers).every(e=>!e.updating)&&this.source.endOfStream(),this.source=null,this.tracer.end()}initTracerSubscription(){let e=(0,g.getTraceSubscriptionMethod)(this.tracer.error.bind(this.tracer));this.subscription.add(this.error$.subscribe(e("error")))}isManualDecreasePlaybackInLive(){return!this.element||!this.isLive$.getValue()?!1:1-this.element.playbackRate>this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup}normolizeLiveOffset(e){return Math.trunc(e/1e3)*1e3}async updateLive(){this.isUpdatingLive=!0,this.manifest=await this.updateManifest(),this.manifest&&(this.bufferManagers?.forEach(e=>e.updateLive(this.manifest)),this.liveTextManager?.updateLive(this.manifest)),this.isUpdatingLive=!1}jumpGap(){if(!this.element||!this.videoBufferManager)return;let e=this.videoBufferManager.getDebugBufferState();if(!e)return;let t=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),i={isJumpGapAfterSeekLive:this.isJumpGapAfterSeekLive,isActiveLowLatency:t,initialCurrentTime:this.element.currentTime};this.isJumpGapAfterSeekLive&&!t&&this.element.currentTime>e.to&&(this.isJumpGapAfterSeekLive=!1,this.element.currentTime=0);let a=this.element.currentTime*1e3,s=[],n=this.element.readyState===1?this.tuning.endGapTolerance:0;for(let o of this.bufferManagers)for(let u of o.gaps)o.playingRepresentation$.getValue()===u.representation&&u.from-n<=a&&u.to+n>a&&(this.element.duration*1e3-u.to<this.tuning.endGapTolerance?s.push(1/0):s.push(u.to));if(s.length){let o=Math.max(...s)+10;this.gapWatchdogSubscription.unsubscribe(),this.gapWatchdogActive=!1,o===1/0?this.forceEnded$.next():(this.element.currentTime=o/1e3,i={...i,gapEnds:s,jumpTo:o,resultCurrentTime:this.element.currentTime},this.tracer.log("jumpGap",(0,g.flattenObject)(i)))}}};var Qs=class{constructor(e,t){this.fov=e,this.orientation=t}};var Gs=class{constructor(e,t){this.rotating=!1;this.fading=!1;this.lastTickTS=0;this.lastCameraTurnTS=0;this.fadeStartSpeed=null;this.fadeTime=0;this.camera=e,this.options=t,this.rotationSpeed={x:0,y:0,z:0},this.fadeCorrection=1/(this.options.speedFadeTime/1e3)**2}turnCamera(e=0,t=0,i=0){this.pointCameraTo(this.camera.orientation.x+e,this.camera.orientation.y+t,this.camera.orientation.z+i)}pointCameraTo(e=0,t=0,i=0){t=this.limitCameraRotationY(t);let a=e-this.camera.orientation.x,s=t-this.camera.orientation.y,n=i-this.camera.orientation.z;this.camera.orientation.x=e,this.camera.orientation.y=t,this.camera.orientation.z=i,this.lastCameraTurn={x:a,y:s,z:n},this.lastCameraTurnTS=Date.now()}setRotationSpeed(e,t,i){this.rotationSpeed.x=e??this.rotationSpeed.x,this.rotationSpeed.y=t??this.rotationSpeed.y,this.rotationSpeed.z=i??this.rotationSpeed.z}startRotation(){this.rotating=!0}stopRotation(e=!1){e?(this.setRotationSpeed(0,0,0),this.fadeStartSpeed=null):this.startFading(this.rotationSpeed.x,this.rotationSpeed.y,this.rotationSpeed.z),this.rotating=!1}onCameraRelease(){if(this.lastCameraTurn&&this.lastCameraTurnTS){let e=Date.now()-this.lastCameraTurnTS;if(e<this.options.speedFadeThreshold){let t=(1-e/this.options.speedFadeThreshold)*this.options.rotationSpeedCorrection;this.startFading(this.lastCameraTurn.x*t,this.lastCameraTurn.y*t,this.lastCameraTurn.z*t)}}}startFading(e,t,i){this.setRotationSpeed(e,t,i),this.fadeStartSpeed={...this.rotationSpeed},this.fading=!0}stopFading(){this.fadeStartSpeed=null,this.fading=!0,this.fadeTime=0}limitCameraRotationY(e){return Math.max(-this.options.maxYawAngle,Math.min(e,this.options.maxYawAngle))}tick(e){if(!this.lastTickTS){this.lastTickTS=e,this.lastCameraTurnTS=Date.now();return}let t=e-this.lastTickTS,i=t/1e3;if(this.rotating)this.turnCamera(this.rotationSpeed.x*this.options.rotationSpeedCorrection*i,this.rotationSpeed.y*this.options.rotationSpeedCorrection*i,this.rotationSpeed.z*this.options.rotationSpeedCorrection*i);else if(this.fading&&this.fadeStartSpeed){let a=-this.fadeCorrection*(this.fadeTime/1e3)**2+1;this.setRotationSpeed(this.fadeStartSpeed.x*a,this.fadeStartSpeed.y*a,this.fadeStartSpeed.z*a),a>0?this.turnCamera(this.rotationSpeed.x*this.options.rotationSpeedCorrection*i,this.rotationSpeed.y*this.options.rotationSpeedCorrection*i,this.rotationSpeed.z*this.options.rotationSpeedCorrection*i):(this.stopRotation(!0),this.stopFading()),this.fadeTime=Math.min(this.fadeTime+t,this.options.speedFadeTime)}this.lastTickTS=e}};var Fg=`attribute vec2 a_vertex;
|
|
124
|
+
`})|(?<privateuse2>${e}))$`.replace(/[\s\t\n]/g,"");return new RegExp(c,"i")}var oc=U(Ht(),1);var iv=require("@vkontakte/videoplayer-shared"),rv=({id:s,width:e,height:t,bitrate:i,fps:r,quality:a,streamId:n})=>{let o=(a?Jt(a):void 0)??(0,iv.videoSizeToQuality)({width:e,height:t});return o&&{id:s,quality:o,bitrate:i,size:{width:e,height:t},fps:r,streamId:n}},sv=({id:s,bitrate:e})=>({id:s,bitrate:e}),av=({language:s,label:e},{id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:s,label:e}),nv=({language:s,label:e,id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:s,label:e}),uc=({id:s,language:e,label:t,codecs:i,isDefault:r})=>({id:s,language:e,label:t,codec:(0,oc.default)(i.split("."),0),isDefault:r}),lc=({id:s,language:e,label:t,hdr:i,codecs:r})=>({id:s,language:e,hdr:i,label:t,codec:(0,oc.default)(r.split("."),0)}),cc=s=>"url"in s,lt=s=>s.type==="template",ra=s=>s instanceof DOMException&&(s.name==="AbortError"||s.code===20);var ov=s=>{if(!s?.startsWith("P"))return;let e=(n,o)=>{let u=n?parseFloat(n.replace(",",".")):NaN;return(isNaN(u)?0:u)*o},i=/^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/.exec(s),r=i?.[1]==="-"?-1:1,a={days:e(i?.[5],r),hours:e(i?.[6],r),minutes:e(i?.[7],r),seconds:e(i?.[8],r)};return a.days*24*60*60*1e3+a.hours*60*60*1e3+a.minutes*60*1e3+a.seconds*1e3},gi=(s,e)=>{let t=s;t=(0,dc.default)(t,"$$","$");let i={RepresentationID:e.representationId,Number:e.segmentNumber,Bandwidth:e.bandwidth,Time:e.segmentTime};for(let[r,a]of(0,uv.default)(i)){let n=new RegExp(`\\$${r}(?:%0(\\d+)d)?\\$`,"g");t=(0,dc.default)(t,n,(o,u)=>(0,sa.isNullable)(a)?o:(0,sa.isNullable)(u)?a:(0,lv.default)(a,parseInt(u,10),"0"))}return t},dv=(s,e)=>{let i=new DOMParser().parseFromString(s,"application/xml"),r={video:[],audio:[],text:[]},a=i.children[0],n=Array.from(a.querySelectorAll("MPD > BaseURL").values()).map(D=>D.textContent?.trim()??""),o=(0,cv.default)(n,0)??"",u=a.getAttribute("type")==="dynamic",l=a.getAttribute("availabilityStartTime"),c=a.getAttribute("publishTime"),p=a.getElementsByTagName("vk:Attrs")[0],d=p?.getElementsByTagName("vk:XLatestSegmentPublishTime")[0].textContent,h=p?.getElementsByTagName("vk:XStreamIsLive")[0].textContent,m=p?.getElementsByTagName("vk:XStreamIsUnpublished")[0].textContent,g=p?.getElementsByTagName("vk:XPlaybackDuration")[0].textContent,y;u&&(y={availabilityStartTime:l?new Date(l).getTime():0,publishTime:c?new Date(c).getTime():0,latestSegmentPublishTime:d?new Date(d).getTime():0,streamIsAlive:h==="yes",streamIsUnpublished:m==="yes"});let T,A=a.getAttribute("mediaPresentationDuration"),x=[...a.getElementsByTagName("Period")],M=x.reduce((D,I)=>({...D,[I.id]:I.children}),{}),$=x.reduce((D,I)=>({...D,[I.id]:I.getAttribute("duration")}),{});A?T=ov(A):(0,pc.default)($).filter(D=>D).length&&!u?T=(0,pc.default)($).reduce((D,I)=>D+(ov(I)??0),0):g&&(T=parseInt(g,10));let F=0,G=a.getAttribute("profiles")?.split(",")??[];for(let D of x.map(I=>I.id))for(let I of M[D]){let j=I.getAttribute("id")??"id"+(F++).toString(10),k=I.getAttribute("mimeType")??"",R=I.getAttribute("codecs")??"",V=I.getAttribute("contentType")??k?.split("/")[0],ge=I.getAttribute("profiles")?.split(",")??[],N=tv(I.getAttribute("lang")??"")??{},re=I.querySelector("Label")?.textContent?.trim()??void 0,ce=I.querySelectorAll("Representation"),Te=I.querySelector("SegmentTemplate"),Be=I.querySelector("Role")?.getAttribute("value")??void 0,Ie=V,de={id:j,language:N.language,isDefault:Be==="main",label:re,codecs:R,hdr:Ie==="video"&&Or(R),mime:k,representations:[]};for(let O of ce){let z=O.getAttribute("lang")??void 0,qe=re??I.getAttribute("label")??O.getAttribute("label")??void 0,De=O.querySelector("BaseURL")?.textContent?.trim()??"",he=new URL(De||o,e).toString(),Ve=O.getAttribute("mimeType")??k,bt=O.getAttribute("codecs")??R??"",it;if(V==="text"){let Ae=O.getAttribute("id")||"",gt=N.privateuse?.includes("x-auto")||Ae.includes("_auto"),Ue=O.querySelector("SegmentTemplate");if(Ue){let Ct={representationId:O.getAttribute("id")??void 0,bandwidth:O.getAttribute("bandwidth")??void 0},ri=parseInt(O.getAttribute("bandwidth")??"",10)/1e3,si=parseInt(Ue.getAttribute("startNumber")??"",10)??1,St=parseInt(Ue.getAttribute("timescale")??"",10),_i=Ue.querySelectorAll("SegmentTimeline S")??[],vt=Ue.getAttribute("media");if(!vt)continue;let ai=[],ni=0,oi="",yt=0,Vt=si,ue=0;for(let xe of _i){let rt=parseInt(xe.getAttribute("d")??"",10),fe=parseInt(xe.getAttribute("r")??"",10)||0,He=parseInt(xe.getAttribute("t")??"",10);ue=Number.isFinite(He)?He:ue;let st=rt/St*1e3,Tt=ue/St*1e3;for(let Re=0;Re<fe+1;Re++){let je=gi(vt,{...Ct,segmentNumber:Vt.toString(10),segmentTime:(ue+Re*rt).toString(10)}),It=(Tt??0)+Re*st,_t=It+st;Vt++,ai.push({time:{from:It,to:_t},url:je})}ue+=(fe+1)*rt,ni+=(fe+1)*st}yt=ue/St*1e3,oi=gi(vt,{...Ct,segmentNumber:Vt.toString(10),segmentTime:ue.toString(10)});let Ot={time:{from:yt,to:1/0},url:oi},Oe={type:"template",baseUrl:he,segmentTemplateUrl:vt,initUrl:"",totalSegmentsDurationMs:ni,segments:ai,nextSegmentBeyondManifest:Ot,timescale:St};it={id:Ae,kind:"text",segmentReference:Oe,profiles:[],duration:T,bitrate:ri,mime:"",codecs:"",width:0,height:0,isAuto:gt}}else it={id:Ae,isAuto:gt,kind:"text",url:he}}else{let Ae=O.getAttribute("contentType")??Ve?.split("/")[0]??V,gt=I.getAttribute("profiles")?.split(",")??[],Ue=parseInt(O.getAttribute("width")??"",10),Ct=parseInt(O.getAttribute("height")??"",10),ri=parseInt(O.getAttribute("bandwidth")??"",10)/1e3,si=O.getAttribute("frameRate")??"",St=O.getAttribute("quality")??void 0,_i=si?to(si):void 0,vt=O.getAttribute("id")??"id"+(F++).toString(10),ai=Ae==="video"?`${Ct}p`:Ae==="audio"?`${ri}Kbps`:bt,ni=`${vt}@${ai}`,oi=[...G,...ge,...gt],yt,Vt=O.querySelector("SegmentBase"),ue=O.querySelector("SegmentTemplate")??Te;if(Vt){let Oe=O.querySelector("SegmentBase Initialization")?.getAttribute("range")??"",[xe,rt]=Oe.split("-").map(je=>parseInt(je,10)),fe={from:xe,to:rt},He=O.querySelector("SegmentBase")?.getAttribute("indexRange"),[st,Tt]=He?He.split("-").map(je=>parseInt(je,10)):[],Re=He?{from:st,to:Tt}:void 0;yt={type:"byteRange",url:he,initRange:fe,indexRange:Re}}else if(ue){let Oe={representationId:O.getAttribute("id")??void 0,bandwidth:O.getAttribute("bandwidth")??void 0},xe=parseInt(ue.getAttribute("timescale")??"",10),rt=ue.getAttribute("initialization")??"",fe=ue.getAttribute("media"),He=parseInt(ue.getAttribute("startNumber")??"",10)??1,st=gi(rt,Oe);if(!fe)throw new ReferenceError("No media attribute in SegmentTemplate");let Tt=ue.querySelectorAll("SegmentTimeline S")??[],Re=[],je=0,It="",_t=0;if(Tt.length){let ui=He,Ee=0;for(let xt of Tt){let Le=parseInt(xt.getAttribute("d")??"",10),at=parseInt(xt.getAttribute("r")??"",10)||0,li=parseInt(xt.getAttribute("t")??"",10);Ee=Number.isFinite(li)?li:Ee;let Fi=Le/xe*1e3,Co=Ee/xe*1e3;for(let ci=0;ci<at+1;ci++){let Vo=gi(fe,{...Oe,segmentNumber:ui.toString(10),segmentTime:(Ee+ci*Le).toString(10)}),zr=(Co??0)+ci*Fi,Oo=zr+Fi;ui++,Re.push({time:{from:zr,to:Oo},url:Vo})}Ee+=(at+1)*Le,je+=(at+1)*Fi}_t=Ee/xe*1e3,It=gi(fe,{...Oe,segmentNumber:ui.toString(10),segmentTime:Ee.toString(10)})}else if((0,sa.isNonNullable)(T)){let Ee=parseInt(ue.getAttribute("duration")??"",10)/xe*1e3,xt=Math.ceil(T/Ee),Le=0;for(let at=1;at<xt;at++){let li=gi(fe,{...Oe,segmentNumber:at.toString(10),segmentTime:Le.toString(10)});Re.push({time:{from:Le,to:Le+Ee},url:li}),Le+=Ee}_t=Le,It=gi(fe,{...Oe,segmentNumber:xt.toString(10),segmentTime:Le.toString(10)})}let Do={time:{from:_t,to:1/0},url:It};yt={type:"template",baseUrl:he,segmentTemplateUrl:fe,initUrl:st,totalSegmentsDurationMs:je,segments:Re,nextSegmentBeyondManifest:Do,timescale:xe}}else throw new ReferenceError("Unknown MPD segment referencing type");if(!Ae||!Ve)continue;let Ot={video:"video",audio:"audio",text:"text"}[Ae];if(!Ot)continue;Ie||=Ot,it={id:ni,kind:Ot,segmentReference:yt,profiles:oi,duration:T,bitrate:ri,mime:Ve,codecs:bt,width:Ue,height:Ct,fps:_i,quality:St}}de.language||=z,de.label||=qe,de.mime||=Ve,de.codecs||=bt,de.hdr||=Ie==="video"&&Or(bt),de.representations.push(it)}if(Ie){let O=r[Ie].find(z=>z.id===de.id);if(O&&de.representations.every(z=>lt(z.segmentReference)))for(let z of O.representations){let De=de.representations.find(Ve=>Ve.id===z.id)?.segmentReference,he=z.segmentReference;he.segments.push(...De.segments),he.nextSegmentBeyondManifest=De.nextSegmentBeyondManifest}else r[Ie].push(de)}}return{duration:T,streams:r,baseUrls:n,live:y}};var fc=require("@vkontakte/videoplayer-shared"),Z=(s,e)=>(0,fc.isNonNullable)(s)&&(0,fc.isNonNullable)(e)&&s.readyState==="open"&&LL(s,e);function LL(s,e){for(let t=0;t<s.activeSourceBuffers.length;++t)if(s.activeSourceBuffers[t]===e)return!0;return!1}var aa=class{constructor(e,t,i,{fetcher:r,tuning:a,getCurrentPosition:n,isActiveLowLatency:o,compatibilityMode:u=!1,manifest:l}){this.currentLiveSegmentServerLatency$=new P.ValueSubject(0);this.currentLowLatencySegmentLength$=new P.ValueSubject(0);this.currentSegmentLength$=new P.ValueSubject(0);this.onLastSegment$=new P.ValueSubject(!1);this.fullyBuffered$=new P.ValueSubject(!1);this.playingRepresentation$=new P.ValueSubject(void 0);this.playingRepresentationInit$=new P.ValueSubject(void 0);this.error$=new P.Subject;this.gaps=[];this.subscription=new P.Subscription;this.allInitsLoaded=!1;this.activeSegments=new Set;this.downloadAbortController=new pe;this.switchAbortController=new pe;this.destroyAbortController=new pe;this.bufferLimit=1/0;this.failedDownloads=0;this.baseUrls=[];this.baseUrlsIndex=0;this.isLive=!1;this.liveUpdateSegmentIndex=0;this.liveInitialAdditionalOffset=0;this.isSeekingLive=!1;this.index=0;this.lastDataObtainedTimestampMs=0;this.loadByteRangeSegmentsTimeoutId=0;this.startWith=(0,P.abortable)(this.destroyAbortController.signal,async function*(e){let t=this.representations.get(e);(0,P.assertNonNullable)(t,`Cannot find representation ${e}`),this.playingRepresentationId=e,this.downloadingRepresentationId=e,this.sourceBuffer=this.mediaSource.addSourceBuffer(`${t.mime}; codecs="${t.codecs}"`),this.sourceBufferTaskQueue=new pS(this.sourceBuffer),this.subscription.add((0,P.fromEvent)(this.sourceBuffer,"updateend").subscribe(()=>{this.checkEjectedSegments(),this.maintain()},n=>{let o,u=this.mediaSource.readyState;u!=="open"&&(o={id:`SegmentEjection_source_${u}`,category:P.ErrorCategory.VIDEO_PIPELINE,message:"Error when trying to clear segments ejected by browser",thrown:n}),o??={id:"SegmentEjection",category:P.ErrorCategory.VIDEO_PIPELINE,message:"Error when trying to clear segments ejected by browser",thrown:n},this.error$.next(o)})),this.subscription.add((0,P.fromEvent)(this.sourceBuffer,"error").subscribe(()=>this.error$.next({id:"SourceBuffer",category:P.ErrorCategory.VIDEO_PIPELINE,message:"SourceBuffer Error event fired"}))),this.subscription.add(this.sourceBufferTaskQueue.bufferFull$.subscribe(n=>{let o=this.getCurrentPosition();if(!this.sourceBuffer||!o||!Z(this.mediaSource,this.sourceBuffer))return;let u=Math.min(this.bufferLimit,Dr(this.sourceBuffer.buffered)*.8);this.bufferLimit=u;let l=this.getForwardBufferDuration(o),c=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(o,n*2,l<c).catch(p=>{this.handleAsyncError(p,"pruneBuffer")})})),this.subscription.add(this.sourceBufferTaskQueue.error$.subscribe(n=>this.error$.next(n))),yield this.loadInit(t,"high",!0);let i=this.initData.get(t.id),r=this.segments.get(t.id),a=this.parsedInitData.get(t.id);(0,P.assertNonNullable)(i,"No init buffer for starting representation"),(0,P.assertNonNullable)(r,"No segments for starting representation"),i instanceof ArrayBuffer&&(this.searchGaps(r,t),yield this.sourceBufferTaskQueue.append(i,this.destroyAbortController.signal),this.playingRepresentation$.next(this.playingRepresentationId),this.playingRepresentationInit$.next(a))}.bind(this));this.switchTo=(0,P.abortable)(this.destroyAbortController.signal,async function*(e,t=!1){if(!Z(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);(0,P.assertNonNullable)(i,`No such representation ${e}`);let r=this.segments.get(e),a=this.initData.get(e);if((0,P.isNullable)(a)||(0,P.isNullable)(r)?yield this.loadInit(i,"high",!1):a instanceof Promise&&(yield a),r=this.segments.get(e),(0,P.assertNonNullable)(r,"No segments for starting representation"),a=this.initData.get(e),!(!a||!(a instanceof ArrayBuffer)||!this.sourceBuffer||!Z(this.mediaSource,this.sourceBuffer))){if(yield this.abort(),yield this.sourceBufferTaskQueue.append(a,this.downloadAbortController.signal),t)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e,yield this.dropBuffer();else{let n=this.getCurrentPosition();(0,P.isNonNullable)(n)&&!this.isLive&&(this.bufferLimit=1/0,await this.pruneBuffer(n,1/0,!0)),this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e}this.maintain()}}.bind(this));this.switchToOld=(0,P.abortable)(this.destroyAbortController.signal,async function*(e,t=!1){if(!Z(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);(0,P.assertNonNullable)(i,`No such representation ${e}`);let r=this.segments.get(e),a=this.initData.get(e);if((0,P.isNullable)(a)||(0,P.isNullable)(r)?yield this.loadInit(i,"high",!1):a instanceof Promise&&(yield a),r=this.segments.get(e),(0,P.assertNonNullable)(r,"No segments for starting representation"),a=this.initData.get(e),!(!a||!(a instanceof ArrayBuffer)||!this.sourceBuffer||!Z(this.mediaSource,this.sourceBuffer)))if(yield this.abort(),yield this.sourceBufferTaskQueue.append(a,this.downloadAbortController.signal),t)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e,yield this.dropBuffer(),this.maintain();else{let n=this.getCurrentPosition();(0,P.isNonNullable)(n)&&(this.isLive||(this.bufferLimit=1/0,await this.pruneBuffer(n,1/0,!0)),this.maintain(n)),this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e}}.bind(this));this.seekLive=(0,P.abortable)(this.destroyAbortController.signal,async function*(e){let t=(0,ro.default)(e,u=>u.representations)??[];if(this.isSeekingLive=!0,!this.downloadingRepresentationId||!t)return;for(let u of this.representations.keys()){let l=t.find(d=>d.id===u);l&&this.representations.set(u,l);let c=this.representations.get(u);if(!c||!lt(c.segmentReference))return;let p=this.getActualLiveStartingSegments(c.segmentReference);this.segments.set(c.id,p)}let i=this.switchingToRepresentationId??this.downloadingRepresentationId,r=this.representations.get(i);(0,P.assertNonNullable)(r);let a=this.segments.get(i);(0,P.assertNonNullable)(a,"No segments for starting representation");let n=this.initData.get(i);if((0,P.assertNonNullable)(n,"No init buffer for starting representation"),!(n instanceof ArrayBuffer))return;let o=this.getDebugBufferState();this.liveUpdateSegmentIndex=0,yield this.abort(),o&&(yield this.sourceBufferTaskQueue.remove(o.from*1e3,o.to*1e3,this.destroyAbortController.signal)),this.searchGaps(a,r),yield this.sourceBufferTaskQueue.append(n,this.destroyAbortController.signal),this.isSeekingLive=!1}.bind(this));this.fetcher=r,this.tuning=a,this.compatibilityMode=u,this.forwardBufferTarget=a.dash.forwardBufferTargetAuto,this.getCurrentPosition=n,this.isActiveLowLatency=o,this.isLive=!!l?.live,this.baseUrls=l?.baseUrls??[],this.initData=new Map(i.map(c=>[c.id,null])),this.segments=new Map,this.parsedInitData=new Map,this.representations=new Map(i.map(c=>[c.id,c])),this.kind=e,this.mediaSource=t,this.sourceBuffer=null}switchToWithPreviousAbort(e,t=!1){!Z(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId||(this.switchAbortController.abort(),this.switchAbortController=new pe,(0,P.abortable)(this.switchAbortController.signal,async function*(i,r=!1){this.switchingToRepresentationId=i;let a=this.representations.get(i);(0,P.assertNonNullable)(a,`No such representation ${i}`);let n=this.segments.get(i),o=this.initData.get(i);if((0,P.isNullable)(o)||(0,P.isNullable)(n)?yield this.loadInit(a,"high",!1):o instanceof Promise&&(yield o),n=this.segments.get(i),(0,P.assertNonNullable)(n,"No segments for starting representation"),o=this.initData.get(i),!(!(o instanceof ArrayBuffer)||!this.sourceBuffer||!Z(this.mediaSource,this.sourceBuffer))){if(yield this.abort(),yield this.sourceBufferTaskQueue.append(o,this.downloadAbortController.signal),r)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=i,yield this.dropBuffer();else{let u=this.getCurrentPosition();(0,P.isNonNullable)(u)&&!this.isLive&&(this.bufferLimit=this.forwardBufferTarget,yield this.pruneBuffer(u,1/0,!0)),this.downloadingRepresentationId=i,this.switchingToRepresentationId=void 0}this.maintain()}}.bind(this))(e,t))}warmUpMediaSource(){!(0,P.isNullable)(this.sourceBuffer)&&!this.sourceBuffer.updating&&(this.sourceBuffer.mode="segments")}async abort(){for(let e of this.activeSegments)this.abortSegment(e.segment);return this.activeSegments.clear(),this.downloadAbortController.abort(),this.downloadAbortController=new pe,this.abortBuffer()}maintain(e=this.getCurrentPosition()){if((0,P.isNullable)(e)||(0,P.isNullable)(this.downloadingRepresentationId)||(0,P.isNullable)(this.playingRepresentationId)||(0,P.isNullable)(this.sourceBuffer)||!Z(this.mediaSource,this.sourceBuffer)||(0,P.isNonNullable)(this.switchingToRepresentationId)||this.isSeekingLive)return;let t=this.representations.get(this.downloadingRepresentationId),i=this.segments.get(this.downloadingRepresentationId);if((0,P.assertNonNullable)(t,`No such representation ${this.downloadingRepresentationId}`),!i)return;let r=i.find(c=>e>=c.time.from&&e<c.time.to);(0,P.isNonNullable)(r)&&isFinite(r.time.from)&&isFinite(r.time.to)&&this.currentSegmentLength$.next(r?.time.to-r.time.from);let a=e,n=100;if(this.playingRepresentationId!==this.downloadingRepresentationId){let c=this.getForwardBufferDuration(e),p=r?r.time.to+n:-1/0;r&&r.time.to-e<this.tuning.dash.maxSegmentDurationLeftToSelectNextSegment&&c>=r.time.to-e+n&&(a=p)}if(isFinite(this.bufferLimit)&&Dr(this.sourceBuffer.buffered)>=this.bufferLimit){let c=this.getForwardBufferDuration(e),p=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(e,1/0,c<p).catch(d=>{this.handleAsyncError(d,"pruneBuffer")});return}let u=[];if(!this.activeSegments.size&&(u=this.selectForwardBufferSegments(i,t.segmentReference.type,a),u.length)){let c="auto";if(this.tuning.dash.useFetchPriorityHints&&r)if((0,io.default)(u,r))c="high";else{let p=(0,_r.default)(u,0);p&&p.time.from-r.time.to>=this.forwardBufferTarget/2&&(c="low")}this.loadSegments(u,t,c).catch(p=>{this.handleAsyncError(p,"loadSegments")})}(!this.preloadOnly&&!this.allInitsLoaded&&r&&r.status==="fed"&&!u.length&&this.getForwardBufferDuration(e)>3e3||this.isActiveLowLatency())&&this.loadNextInit();let l=(0,_r.default)(i,-1);!this.isLive&&l&&(this.fullyBuffered$.next(l.time.to-e-this.getForwardBufferDuration(e)<n),this.onLastSegment$.next(e-l.time.from>0))}get lastDataObtainedTimestamp(){return this.lastDataObtainedTimestampMs}searchGaps(e,t){this.gaps=[];let i=0,r=this.isLive?this.liveInitialAdditionalOffset:0;for(let a of e)Math.trunc(a.time.from-i)>0&&this.gaps.push({representation:t.id,from:i,to:a.time.from+r}),i=a.time.to;(0,P.isNonNullable)(t.duration)&&t.duration-i>0&&!this.isLive&&this.gaps.push({representation:t.id,from:i,to:t.duration})}getActualLiveStartingSegments(e){let t=e.segments,i=this.isActiveLowLatency()?this.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.tuning.dashCmafLive.maxActiveLiveOffset,r=[],a=0,n=t.length-1;do r.unshift(t[n]),a+=t[n].time.to-t[n].time.from,n--;while(a<i&&n>=0);return this.liveInitialAdditionalOffset=a-i,this.isActiveLowLatency()?[r[0]]:r}getLiveSegmentsToLoadState(e){let t=(0,ro.default)(e?.streams[this.kind],r=>r.representations).find(r=>r.id===this.downloadingRepresentationId);if(!t)return;let i=this.segments.get(t.id);if(i?.length)return{from:i[0].time.from,to:i[i.length-1].time.to}}updateLive(e){let t=(0,ro.default)(e?.streams[this.kind],i=>i.representations)??[];if(![...this.segments.values()].every(i=>!i.length))for(let i of t){if(!i||!lt(i.segmentReference))return;let r=i.segmentReference.segments.map(l=>({...l,status:"none",size:void 0})),a=100,n=this.segments.get(i.id)??[],o=(0,_r.default)(n,-1)?.time.to??0,u=r?.findIndex(l=>o>=l.time.from+a&&o<=l.time.to+a);if(u===-1){this.liveUpdateSegmentIndex=0;let l=this.getActualLiveStartingSegments(i.segmentReference);this.segments.set(i.id,l)}else{let l=r.slice(u+1);this.segments.set(i.id,[...n,...l])}}}proceedLowLatencyLive(){let e=this.downloadingRepresentationId;(0,P.assertNonNullable)(e);let t=this.segments.get(e);if(t?.length){let i=t[t.length-1];this.updateLowLatencyLiveIfNeeded(i)}}updateLowLatencyLiveIfNeeded(e){let t=0;for(let i of this.representations.values()){let r=i.segmentReference;if(!lt(r))return;let a=this.segments.get(i.id)??[],n=a.find(u=>Math.floor(u.time.from)===Math.floor(e.time.from));if(n&&!isFinite(n.time.to)&&(n.time.to=e.time.to,t=n.time.to-n.time.from),!!!a.find(u=>Math.floor(u.time.from)===Math.floor(e.time.to))&&this.isActiveLowLatency()){let u=Math.round(e.time.to*r.timescale/1e3).toString(10),l=gi(r.segmentTemplateUrl,{segmentTime:u});a.push({status:"none",time:{from:e.time.to,to:1/0},url:l})}}this.currentLowLatencySegmentLength$.next(t)}findSegmentStartTime(e){let t=this.switchingToRepresentationId??this.downloadingRepresentationId??this.playingRepresentationId;if(!t)return;let i=this.segments.get(t);return i?i.find(a=>a.time.from<=e&&a.time.to>=e)?.time.from??void 0:void 0}setTarget(e){this.forwardBufferTarget=e}setPreloadOnly(e){this.preloadOnly=e}destroy(){if(this.initData.clear(),this.segments.clear(),this.parsedInitData.clear(),this.representations.clear(),this.sourceBufferTaskQueue?.destroy(),this.gapDetectionIdleCallback&&ti&&ti(this.gapDetectionIdleCallback),this.initLoadIdleCallback&&ti&&ti(this.initLoadIdleCallback),this.subscription.unsubscribe(),this.sourceBuffer)try{this.mediaSource.removeSourceBuffer(this.sourceBuffer)}catch(e){if(!(e instanceof DOMException&&e.name==="NotFoundError"))throw e}this.sourceBuffer=null,this.downloadAbortController.abort(),this.switchAbortController.abort(),this.destroyAbortController.abort(),window.clearTimeout(this.loadByteRangeSegmentsTimeoutId)}selectForwardBufferSegments(e,t,i){return this.isLive?this.selectForwardBufferSegmentsLive(e,i):this.selectForwardBufferSegmentsRecord(e,t,i)}selectForwardBufferSegmentsLive(e,t){let i=e.findIndex(r=>t>=r.time.from&&t<r.time.to);return this.playingRepresentationId!==this.downloadingRepresentationId&&(this.liveUpdateSegmentIndex=i),this.liveUpdateSegmentIndex<e.length?e.slice(this.liveUpdateSegmentIndex++):[]}selectForwardBufferSegmentsRecord(e,t,i){let r=e.findIndex(({status:p,time:{from:d,to:h}},m)=>{let g=d<=i&&h>=i,y=d>i||g||m===0&&i===0,T=Math.min(this.forwardBufferTarget,this.bufferLimit),A=this.preloadOnly&&d<=i+T||h<=i+T;return(p==="none"||p==="partially_ejected"&&y&&A&&this.sourceBuffer&&Z(this.mediaSource,this.sourceBuffer)&&!(tt(this.sourceBuffer.buffered,d)&&tt(this.sourceBuffer.buffered,h)))&&y&&A});if(r===-1)return[];if(t!=="byteRange")return e.slice(r,r+1);let a=e,n=0,o=0,u=[],l=this.preloadOnly?0:this.tuning.dash.segmentRequestSize,c=this.preloadOnly?this.forwardBufferTarget:0;for(let p=r;p<a.length&&(n<=l||o<=c);p++){let d=a[p];if(n+=d.byte.to+1-d.byte.from,o+=d.time.to+1-d.time.from,d.status==="none"||d.status==="partially_ejected")u.push(d);else break}return u}async loadSegments(e,t,i="auto"){lt(t.segmentReference)?await this.loadTemplateSegment(e[0],t,i):await this.loadByteRangeSegments(e,t,i)}async loadTemplateSegment(e,t,i="auto"){e.status="downloading";let r={segment:e,loadedBytes:0,feedingBytes:0,fedBytes:0,representationId:t.id};this.activeSegments.add(r);let{range:a,url:n,signal:o,onProgress:u,onProgressTasks:l}=this.prepareTemplateFetchSegmentParams(e,t);this.failedDownloads&&o&&(await(0,P.abortable)(o,async function*(){let c=(0,P.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(p=>setTimeout(p,c))}.bind(this))(),o.aborted&&this.abortActiveSegments([e]));try{let c=await this.fetcher.fetch(n,{range:a,signal:o,onProgress:u,priority:i,isLowLatency:this.isActiveLowLatency()});if(this.lastDataObtainedTimestampMs=(0,P.now)(),!c)return;let p=new DataView(c),d=ia(t.mime);if(!isFinite(r.segment.time.to)){let g=t.segmentReference.timescale;r.segment.time.to=d.getChunkEndTime(p,g)}u&&r.feedingBytes&&l?await Promise.all(l):await this.sourceBufferTaskQueue.append(p,o);let{serverDataReceivedTimestamp:h,serverDataPreparedTime:m}=d.getServerLatencyTimestamps(p);h&&m&&this.currentLiveSegmentServerLatency$.next(m-h),r.segment.status="downloaded",this.onSegmentFullyAppended(r,t.id),this.failedDownloads=0}catch(c){this.abortActiveSegments([e]),ra(c)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}}updateRepresentationsBaseUrlIfNeeded(){if(!this.tuning.dash.enableBaseUrlSupport||!this.baseUrls.length||this.failedDownloads<=this.tuning.dash.maxSegmentRetryCount)return;this.baseUrlsIndex=(this.baseUrlsIndex+1)%this.baseUrls.length;let e=this.baseUrls[this.baseUrlsIndex];for(let t of this.representations.values())lt(t.segmentReference)?t.segmentReference.baseUrl=e:t.segmentReference.url=e}async loadByteRangeSegments(e,t,i="auto"){if(!e.length)return;for(let u of e)u.status="downloading",this.activeSegments.add({segment:u,loadedBytes:0,feedingBytes:0,fedBytes:0,representationId:t.id});let{range:r,url:a,signal:n,onProgress:o}=this.prepareByteRangeFetchSegmentParams(e,t);this.failedDownloads&&n&&(await(0,P.abortable)(n,async function*(){let u=(0,P.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(l=>{this.loadByteRangeSegmentsTimeoutId=window.setTimeout(l,u),(0,P.fromEvent)(window,"online").pipe((0,P.once)()).subscribe(()=>{l(),window.clearTimeout(this.loadByteRangeSegmentsTimeoutId)})})}.bind(this))(),n.aborted&&this.abortActiveSegments(e));try{await this.fetcher.fetch(a,{range:r,onProgress:o,signal:n,priority:i}),this.lastDataObtainedTimestampMs=(0,P.now)(),this.failedDownloads=0}catch(u){this.abortActiveSegments(e),ra(u)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}}prepareByteRangeFetchSegmentParams(e,t){if(lt(t.segmentReference))throw new Error("Representation is not byte range type");let i=t.segmentReference.url,r={from:(0,_r.default)(e,0).byte.from,to:(0,_r.default)(e,-1).byte.to},{signal:a}=this.downloadAbortController;return{url:i,range:r,signal:a,onProgress:async(o,u)=>{if(!a.aborted)try{this.lastDataObtainedTimestampMs=(0,P.now)(),await this.onSomeByteRangesDataLoaded({dataView:o,loaded:u,signal:a,onSegmentAppendFailed:()=>this.abort(),globalFrom:r?r.from:0,representationId:t.id})}catch(l){this.error$.next({id:"SegmentFeeding",category:P.ErrorCategory.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:l})}}}}prepareTemplateFetchSegmentParams(e,t){if(!lt(t.segmentReference))throw new Error("Representation is not template type");let i=new URL(e.url,t.segmentReference.baseUrl);this.isActiveLowLatency()&&i.searchParams.set("low-latency","yes");let r=i.toString(),{signal:a}=this.downloadAbortController,n=[],u=this.isActiveLowLatency()||this.tuning.dash.enableSubSegmentBufferFeeding&&this.liveUpdateSegmentIndex<3?(l,c)=>{if(!a.aborted)try{this.lastDataObtainedTimestampMs=(0,P.now)();let p=this.onSomeTemplateDataLoaded({dataView:l,loaded:c,signal:a,onSegmentAppendFailed:()=>this.abort(),representationId:t.id});n.push(p)}catch(p){this.error$.next({id:"SegmentFeeding",category:P.ErrorCategory.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:p})}}:void 0;return{url:r,signal:a,onProgress:u,onProgressTasks:n}}abortActiveSegments(e){for(let t of this.activeSegments)(0,io.default)(e,t.segment)&&this.abortSegment(t.segment)}async onSomeTemplateDataLoaded({dataView:e,representationId:t,loaded:i,onSegmentAppendFailed:r,signal:a}){if(!this.activeSegments.size||!Z(this.mediaSource,this.sourceBuffer))return;let n=this.representations.get(t);if(n)for(let o of this.activeSegments){let{segment:u}=o;if(o.representationId===t){if(a.aborted){r();continue}if(o.loadedBytes=i,o.loadedBytes>o.feedingBytes){let l=new DataView(e.buffer,e.byteOffset+o.feedingBytes,o.loadedBytes-o.feedingBytes),c=ia(n.mime).parseFeedableSegmentChunk(l,this.isLive);c?.byteLength&&(u.status="partially_fed",o.feedingBytes+=c.byteLength,await this.sourceBufferTaskQueue.append(c),o.fedBytes+=c.byteLength)}}}}async onSomeByteRangesDataLoaded({dataView:e,representationId:t,globalFrom:i,loaded:r,signal:a,onSegmentAppendFailed:n}){if(!this.activeSegments.size||!Z(this.mediaSource,this.sourceBuffer))return;let o=this.representations.get(t);if(o)for(let u of this.activeSegments){let{segment:l}=u;if(u.representationId!==t)continue;if(a.aborted){await n();continue}let c=l.byte.from-i,p=l.byte.to-i,d=p-c+1,h=c<r,m=p<=r;if(!h)continue;let g=ia(o.mime);if(l.status==="downloading"&&m){l.status="downloaded";let y=new DataView(e.buffer,e.byteOffset+c,d);await this.sourceBufferTaskQueue.append(y,a)&&!a.aborted?this.onSegmentFullyAppended(u,t):await n()}else if(this.tuning.dash.enableSubSegmentBufferFeeding&&(l.status==="downloading"||l.status==="partially_fed")&&(u.loadedBytes=Math.min(d,r-c),u.loadedBytes>u.feedingBytes)){let y=new DataView(e.buffer,e.byteOffset+c+u.feedingBytes,u.loadedBytes-u.feedingBytes),T=u.loadedBytes===d?y:g.parseFeedableSegmentChunk(y);T?.byteLength&&(l.status="partially_fed",u.feedingBytes+=T.byteLength,await this.sourceBufferTaskQueue.append(T,a)&&!a.aborted?(u.fedBytes+=T.byteLength,u.fedBytes===d&&this.onSegmentFullyAppended(u,t)):await n())}}}onSegmentFullyAppended(e,t){if(!((0,P.isNullable)(this.sourceBuffer)||!Z(this.mediaSource,this.sourceBuffer))){!this.isLive&&W.browser.isSafari&&this.tuning.useSafariEndlessRequestBugfix&&(tt(this.sourceBuffer.buffered,e.segment.time.from,100)&&tt(this.sourceBuffer.buffered,e.segment.time.to,100)||this.error$.next({id:"EmptyAppendBuffer",category:P.ErrorCategory.VIDEO_PIPELINE,message:"Browser stuck on empty result of adding segment to source buffer"})),this.playingRepresentationId=t,this.playingRepresentation$.next(this.playingRepresentationId),this.playingRepresentationInit$.next(this.parsedInitData.get(this.playingRepresentationId)),e.segment.status="fed",cc(e.segment)&&(e.segment.size=e.fedBytes);for(let i of this.representations.values())if(i.id!==t)for(let r of this.segments.get(i.id)??[])r.status==="fed"&&Math.round(r.time.from)===Math.round(e.segment.time.from)&&Math.round(r.time.to)===Math.round(e.segment.time.to)&&(r.status="none");this.updateLowLatencyLiveIfNeeded(e.segment),this.activeSegments.delete(e),this.detectGapsWhenIdle(t,[e.segment])}}abortSegment(e){e.status==="partially_fed"?e.status="partially_ejected":e.status!=="partially_ejected"&&(e.status="none");for(let t of this.activeSegments.values())if(t.segment===e){this.activeSegments.delete(t);break}}loadNextInit(){if(this.allInitsLoaded||this.initLoadIdleCallback)return;let e=null,t=!1;for(let[r,a]of this.initData.entries()){let n=a instanceof Promise;t||=n,a===null&&(e=r)}if(!e){this.allInitsLoaded=!0;return}if(t)return;let i=this.representations.get(e);i&&(this.initLoadIdleCallback=Br(()=>(0,pv.default)(this.loadInit(i,"low",!1),()=>this.initLoadIdleCallback=null)))}async loadInit(e,t="auto",i=!1){let r=this.tuning.dash.useFetchPriorityHints?t:"auto",n=(!i&&this.failedDownloads>0?(0,P.abortable)(this.destroyAbortController.signal,async function*(){let o=(0,P.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(u=>setTimeout(u,o))}.bind(this))():Promise.resolve()).then(()=>this.fetcher.fetchRepresentation(e.segmentReference,ia(e.mime),r)).then(async o=>{if(!o)return;let{init:u,dataView:l,segments:c}=o,p=l.buffer.slice(l.byteOffset,l.byteOffset+l.byteLength);this.initData.set(e.id,p);let d=c;this.isLive&<(e.segmentReference)&&(d=this.getActualLiveStartingSegments(e.segmentReference)),(!this.isLive||!this.segments.has(e.id))&&this.segments.set(e.id,d),u&&this.parsedInitData.set(e.id,u)}).then(()=>this.failedDownloads=0,o=>{this.initData.set(e.id,null),i&&this.error$.next({id:"LoadInits",category:P.ErrorCategory.WTF,message:"loadInit threw",thrown:o})});return this.initData.set(e.id,n),n}async dropBuffer(){for(let e of this.segments.values())for(let t of e)t.status="none";await this.pruneBuffer(0,1/0,!0)}async pruneBuffer(e,t,i=!1){if(!this.sourceBuffer||!Z(this.mediaSource,this.sourceBuffer)||!this.playingRepresentationId||(0,P.isNullable)(e))return!1;let r=[],a=0,n=u=>{u.sort((c,p)=>c.from-p.from);let l=[u[0]];for(let c=1;c<u.length;c++){let{from:p,to:d}=u[c],h=l[l.length-1];h.to>=p?h.to=Math.max(h.to,d):l.push(u[c])}return l},o=u=>{if(a>=t)return r;r.push({...u.time}),r=n(r);let l=cc(u)?u.size??0:u.byte.to-u.byte.from;a+=l};for(let u of this.segments.values())for(let l of u){let c=l.time.to<=e-this.tuning.dash.bufferPruningSafeZone,p=l.time.from>=e+Math.min(this.forwardBufferTarget,this.bufferLimit);(c||p)&&l.status==="fed"&&o(l)}for(let u=0;u<this.sourceBuffer.buffered.length;u++){let l=this.sourceBuffer.buffered.start(u)*1e3,c=this.sourceBuffer.buffered.end(u)*1e3,p=0;for(let d of this.segments.values())for(let h of d)(0,io.default)(["none","partially_ejected"],h.status)&&Math.round(h.time.from)<=Math.round(l)&&Math.round(h.time.to)>=Math.round(c)&&p++;if(p===this.segments.size){let d={time:{from:l,to:c},url:"",status:"none"};o(d)}}if(r.length&&i){let u=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;for(let l of this.segments.values())for(let c of l)c.time.from>=e+u&&c.status==="fed"&&o(c)}return r.length?(await Promise.all(r.map(l=>this.sourceBufferTaskQueue.remove(l.from,l.to)))).reduce((l,c)=>l||c,!1):!1}async abortBuffer(){if(!this.sourceBuffer||!Z(this.mediaSource,this.sourceBuffer))return!1;let e=this.playingRepresentationId&&this.initData.get(this.playingRepresentationId),t=e instanceof ArrayBuffer?e:void 0;return this.sourceBufferTaskQueue.abort(t)}getDebugBufferState(){if(!(!this.sourceBuffer||!Z(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length))return{from:this.sourceBuffer.buffered.start(0),to:this.sourceBuffer.buffered.end(this.sourceBuffer.buffered.length-1)}}getForwardBufferDuration(e=this.getCurrentPosition()){return!this.sourceBuffer||!Z(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length||(0,P.isNullable)(e)?0:Qe(this.sourceBuffer.buffered,e)}detectGaps(e,t){if(!(!this.sourceBuffer||!Z(this.mediaSource,this.sourceBuffer))){if(this.tuning.useRefactoredSearchGap)for(let i=0;i<this.sourceBuffer.buffered.length;i++)this.gaps=this.gaps.filter(r=>this.sourceBuffer&&(Math.round(r.from)<Math.round(this.sourceBuffer.buffered.start(i)*1e3)||Math.round(r.to)>Math.round(this.sourceBuffer.buffered.end(i)*1e3)));for(let i of t){let r={representation:e,from:i.time.from,to:i.time.to};for(let a=0;a<this.sourceBuffer.buffered.length;a++){let n=this.sourceBuffer.buffered.start(a)*1e3,o=this.sourceBuffer.buffered.end(a)*1e3;if(!(o<=i.time.from||n>=i.time.to)){if(n<=i.time.from&&o>=i.time.to){r=void 0;break}o>i.time.from&&o<i.time.to&&(r.from=o),n<i.time.to&&n>i.time.from&&(r.to=n)}}r&&r.to-r.from>1&&!this.gaps.some(a=>r&&a.from===r.from&&a.to===r.to)&&this.gaps.push(r)}}}detectGapsWhenIdle(e,t){if(!(this.gapDetectionIdleCallback||!this.sourceBuffer||!Z(this.mediaSource,this.sourceBuffer))){if(!this.tuning.useRefactoredSearchGap)for(let i=0;i<this.sourceBuffer.buffered.length;i++)this.gaps=this.gaps.filter(r=>this.sourceBuffer&&(Math.round(r.from)<Math.round(this.sourceBuffer.buffered.start(i)*1e3)||Math.round(r.to)>Math.round(this.sourceBuffer.buffered.end(i)*1e3)));this.gapDetectionIdleCallback=Br(()=>{try{this.detectGaps(e,t)}catch(i){this.error$.next({id:"GapDetection",category:P.ErrorCategory.WTF,message:"detectGaps threw",thrown:i})}finally{this.gapDetectionIdleCallback=null}})}}checkEjectedSegments(){if((0,P.isNullable)(this.sourceBuffer)||!Z(this.mediaSource,this.sourceBuffer)||(0,P.isNullable)(this.playingRepresentationId))return;let e=[];for(let i=0;i<this.sourceBuffer.buffered.length;i++){let r=Math.floor(this.sourceBuffer.buffered.start(i)*1e3),a=Math.ceil(this.sourceBuffer.buffered.end(i)*1e3);e.push({from:r,to:a})}let t=100;for(let i of this.segments.values())for(let r of i){let{status:a}=r;if(a!=="fed"&&a!=="partially_ejected")continue;let n=Math.floor(r.time.from),o=Math.ceil(r.time.to),u=e.some(c=>c.from-t<=n&&c.to+t>=o),l=e.filter(c=>n>=c.from&&n<c.to-t||o>c.from+t&&o<=c.to);u||(l.length===1?r.status="partially_ejected":this.gaps.some(c=>c.from===r.time.from||c.to===r.time.to)?r.status="partially_ejected":r.status="none")}}handleAsyncError(e,t){this.error$.next({id:t,category:P.ErrorCategory.VIDEO_PIPELINE,thrown:e,message:"Something went wrong"})}};var Di=s=>{let e=new URL(s);return e.searchParams.set("quic","1"),e.toString()};var so=s=>{let e=s.get("X-Delivery-Type"),t=s.get("X-Reused"),i=e===null?"http1":e??void 0,r=t===null?void 0:{1:!0,0:!1}[t]??void 0;return{type:i,reused:r}};var X=require("@vkontakte/videoplayer-shared");var ao=s=>{let e=new URL(s);return e.searchParams.set("enable-subtitles","yes"),e.toString()};var oo=class{constructor({throughputEstimator:e,requestQuic:t,tracer:i,compatibilityMode:r=!1,useEnableSubtitlesParam:a=!1}){this.lastConnectionType$=new X.ValueSubject(void 0);this.lastConnectionReused$=new X.ValueSubject(void 0);this.lastRequestFirstBytes$=new X.ValueSubject(void 0);this.recoverableError$=new X.Subject;this.error$=new X.Subject;this.abortAllController=new pe;this.subscription=new X.Subscription;this.fetchManifest=(0,X.abortable)(this.abortAllController.signal,async function*(e){let t=this.tracer.createComponentTracer("FetchManifest"),i=e;this.requestQuic&&(i=Di(i)),!this.compatibilityMode&&this.useEnableSubtitlesParam&&(i=ao(i));let r=yield this.doFetch(i,{signal:this.abortAllController.signal}).catch(no);return r?(t.log("success",(0,X.flattenObject)({url:i,message:"Request successfully executed"})),t.end(),this.onHeadersReceived(r.headers),r.text()):(t.error("error",(0,X.flattenObject)({url:i,message:"No data in request manifest"})),t.end(),null)}.bind(this));this.fetch=(0,X.abortable)(this.abortAllController.signal,async function*(e,{rangeMethod:t=this.compatibilityMode?0:1,range:i,onProgress:r,priority:a="auto",signal:n,measureThroughput:o=!0,isLowLatency:u=!1}={}){let l=e,c=new Headers,p=this.tracer.createComponentTracer("Fetch");if(i)switch(t){case 0:{c.append("Range",`bytes=${i.from}-${i.to}`);break}case 1:{let j=new URL(l,location.href);j.searchParams.append("bytes",`${i.from}-${i.to}`),l=j.toString();break}default:(0,X.assertNever)(t)}this.requestQuic&&(l=Di(l));let d=this.abortAllController.signal,h;if(n){let j=new pe;if(h=(0,X.merge)((0,X.fromEvent)(this.abortAllController.signal,"abort"),(0,X.fromEvent)(n,"abort")).subscribe(()=>{try{j.abort()}catch(k){no(k)}}),this.subscription.add(h),this.abortAllController.signal.aborted||n.aborted)try{j.abort()}catch(k){no(k)}d=j.signal}let m=(0,X.now)();p.log("startRequest",(0,X.flattenObject)({url:l,priority:a,rangeMethod:t,range:i,isLowLatency:u,requestStartedAt:m}));let g=yield this.doFetch(l,{priority:a,headers:c,signal:d}),y=(0,X.now)();if(!g)return p.error("error",{message:"No response in request"}),p.end(),h?.unsubscribe(),null;if(this.throughputEstimator?.addRawRtt(y-m),!g.ok||!g.body){h?.unsubscribe();let j=`Fetch error ${g.status}: ${g.statusText}`;return p.error("error",{message:j}),p.end(),Promise.reject(new Error(`Fetch error ${g.status}: ${g.statusText}`))}if(this.onHeadersReceived(g.headers),!r&&!o){h?.unsubscribe();let j=(0,X.now)(),k={requestStartedAt:m,requestEndedAt:j,duration:j-m};return p.log("endRequest",(0,X.flattenObject)(k)),p.end(),g.arrayBuffer()}let[T,A]=g.body.tee(),x=T.getReader();o&&this.throughputEstimator?.trackStream(A,u);let M=0,$=new Uint8Array(0),F=!1,G=j=>{h?.unsubscribe(),F=!0,no(j)},B=(0,X.abortable)(d,async function*({done:j,value:k}){if(M===0&&this.lastRequestFirstBytes$.next((0,X.now)()-m),d.aborted){h?.unsubscribe();return}if(!j&&k){let R=new Uint8Array($.length+k.length);R.set($),R.set(k,$.length),$=R,M+=k.byteLength,r?.(new DataView($.buffer),M),yield x?.read().then(B,G)}}.bind(this));yield x?.read().then(B,G),h?.unsubscribe();let D=(0,X.now)(),I={failed:F,requestStartedAt:m,requestEndedAt:D,duration:D-m};return F?(p.error("endRequest",(0,X.flattenObject)(I)),p.end(),null):(p.log("endRequest",(0,X.flattenObject)(I)),p.end(),$.buffer)}.bind(this));this.fetchByteRangeRepresentation=(0,X.abortable)(this.abortAllController.signal,async function*(e,t,i){if(e.type!=="byteRange")return null;let{from:r,to:a}=e.initRange,n=r,o=a,u=!1,l,c;e.indexRange&&(l=e.indexRange.from,c=e.indexRange.to,u=a+1===l,u&&(n=Math.min(l,r),o=Math.max(c,a))),n=Math.min(n,0);let p=yield this.fetch(e.url,{range:{from:n,to:o},priority:i,measureThroughput:!1});if(!p)return null;let d=new DataView(p,r-n,a-n+1);if(!t.validateData(d))throw new Error("Invalid media file");let h=t.parseInit(d),m=e.indexRange??t.getIndexRange(h);if(!m)throw new ReferenceError("No way to load representation index");let g;if(u)g=new DataView(p,m.from-n,m.to-m.from+1);else{let T=yield this.fetch(e.url,{range:m,priority:i,measureThroughput:!1});if(!T)return null;g=new DataView(T)}let y=t.parseSegments(g,h,m);return{init:h,dataView:new DataView(p),segments:y}}.bind(this));this.fetchTemplateRepresentation=(0,X.abortable)(this.abortAllController.signal,async function*(e,t){if(e.type!=="template")return null;let i=new URL(e.initUrl,e.baseUrl).toString(),r=yield this.fetch(i,{priority:t,measureThroughput:!1});return r?{init:null,segments:e.segments.map(n=>({...n,status:"none",size:void 0})),dataView:new DataView(r)}:null}.bind(this));this.throughputEstimator=e,this.requestQuic=t,this.compatibilityMode=r,this.tracer=i.createComponentTracer("Fetcher"),this.useEnableSubtitlesParam=a}onHeadersReceived(e){let{type:t,reused:i}=so(e);this.lastConnectionType$.next(t),this.lastConnectionReused$.next(i)}async fetchRepresentation(e,t,i="auto"){let{type:r}=e;switch(r){case"byteRange":return await this.fetchByteRangeRepresentation(e,t,i)??null;case"template":return await this.fetchTemplateRepresentation(e,i)??null;default:(0,X.assertNever)(r)}}destroy(){this.abortAllController.abort(),this.subscription.unsubscribe(),this.tracer.end()}async doFetch(e,t){let i=await Bt(e,t);if(i.ok)return i;let r=await i.text(),a=parseInt(r);if(!isNaN(a))switch(a){case 1:this.recoverableError$.next({id:"VideoDataLinkExpiredError",message:"Video data links have expired",category:X.ErrorCategory.FATAL});break;case 8:this.recoverableError$.next({id:"VideoDataLinkBlockedForFloodError",message:"Url blocked for flood",category:X.ErrorCategory.FATAL});break;case 18:this.recoverableError$.next({id:"VideoDataLinkIllegalIpChangeError",message:"Client IP has changed",category:X.ErrorCategory.FATAL});break;case 21:this.recoverableError$.next({id:"VideoDataLinkIllegalHostChangeError",message:"Request HOST has changed",category:X.ErrorCategory.FATAL});break;default:this.error$.next({id:"GeneralVideoDataFetchError",message:`Generic video data fetch error (${a})`,category:X.ErrorCategory.FATAL})}}},no=s=>{if(!ra(s))throw s};var Si=(s,e,t)=>t*e+(1-t)*s,mc=(s,e)=>s.reduce((t,i)=>t+i,0)/e,hv=(s,e,t,i)=>{let r=0,a=t,n=mc(s,e),o=e<i?e:i;for(let u=0;u<o;u++)s[a]>n?r++:r--,a=(s.length+a-1)%s.length;return Math.abs(r)===o};var na=require("@vkontakte/videoplayer-shared"),Ci=class{constructor(e){this.prevReported=void 0;this.pastMeasures=[];this.takenMeasures=0;this.measuresCursor=0;this.params=e,this.pastMeasures=Array(e.deviationDepth),this.smoothed=this.prevReported=e.initial,this.smoothed$=new na.ValueSubject(e.initial),this.debounced$=new na.ValueSubject(e.initial);let t=e.label??"value"+Math.random().toString(16).substring(2,6);this.rawSeries$=new ot(`raw_${t}`),this.smoothedSeries$=new ot(`smoothed_${t}`),this.reportedSeries$=new ot(`reported_${t}`),this.rawSeries$.next(e.initial),this.smoothedSeries$.next(e.initial),this.reportedSeries$.next(e.initial)}next(e){let t=0,i=0;for(let o=0;o<this.pastMeasures.length;o++)this.pastMeasures[o]!==void 0&&(t+=(this.pastMeasures[o]-this.smoothed)**2,i++);this.takenMeasures=i,t/=i;let r=Math.sqrt(t),a=this.smoothed+this.params.deviationFactor*r,n=this.smoothed-this.params.deviationFactor*r;this.pastMeasures[this.measuresCursor]=e,this.measuresCursor=(this.measuresCursor+1)%this.pastMeasures.length,this.rawSeries$.next(e),this.updateSmoothedValue(e),this.smoothed$.next(this.smoothed),this.smoothedSeries$.next(this.smoothed),!(this.smoothed>a||this.smoothed<n)&&((0,na.isNullable)(this.prevReported)||Math.abs(this.smoothed-this.prevReported)/this.prevReported>=this.params.changeThreshold)&&(this.prevReported=this.smoothed,this.debounced$.next(this.smoothed),this.reportedSeries$.next(this.smoothed))}};var uo=class extends Ci{constructor(e){super(e),this.slow=this.fast=e.initial}updateSmoothedValue(e){this.slow=Si(this.slow,e,this.params.emaAlphaSlow),this.fast=Si(this.fast,e,this.params.emaAlphaFast);let t=this.params.fastDirection>0?Math.max:Math.min;this.smoothed=t(this.slow,this.fast)}};var lo=class extends Ci{constructor(e){super(e),this.emaSmoothed=e.initial}updateSmoothedValue(e){let t=mc(this.pastMeasures,this.takenMeasures);this.emaSmoothed=Si(this.emaSmoothed,e,this.params.emaAlpha);let i=hv(this.pastMeasures,this.takenMeasures,this.measuresCursor-1,this.params.basisTrendChangeCount);this.smoothed=i?this.emaSmoothed:t}};var co=class extends Ci{constructor(t){super(t);this.furtherValues=[];this.currentTopExtremumValue=0;this.extremumInterval=t.extremumInterval}next(t){this.currentTopExtremumValue<=t?(this.currentTopExtremumValue=t,this.furtherValues=[]):this.furtherValues.length===this.extremumInterval?(super.next(this.currentTopExtremumValue),this.currentTopExtremumValue=t,this.furtherValues=[]):this.furtherValues.push(t)}updateSmoothedValue(t){this.smoothed=this.smoothed?Si(this.smoothed,t,this.params.emaAlpha):t}};var vi=class{static getSmoothedValue(e,t,i){return i.type==="TwoEma"?new uo({initial:e,emaAlphaSlow:i.emaAlphaSlow,emaAlphaFast:i.emaAlphaFast,changeThreshold:i.changeThreshold,fastDirection:t,deviationDepth:i.deviationDepth,deviationFactor:i.deviationFactor,label:"throughput"}):new lo({initial:e,emaAlpha:i.emaAlpha,basisTrendChangeCount:i.basisTrendChangeCount,changeThreshold:i.changeThreshold,deviationDepth:i.deviationDepth,deviationFactor:i.deviationFactor,label:"throughput"})}static getLiveBufferSmoothedValue(e,t){return new co({initial:e,label:"liveEdgeDelay",...t})}};var Fr=(s,e)=>{s&&s.playbackRate!==e&&(s.playbackRate=e)};var po=require("@vkontakte/videoplayer-shared");var oa=class s{constructor(e,t){this.currentRepresentation$=new po.ValueSubject(null);this.maxRepresentations=4;this.representationsCursor=0;this.representations=[];this.currentSegment=null;this.getCurrentPosition=t.getCurrentPosition,this.processStreams(e)}updateLive(e){this.processStreams(e?.streams.text)}seekLive(e){this.processStreams(e)}maintain(e=this.getCurrentPosition()){if(!(0,po.isNullable)(e))for(let t of this.representations)for(let i of t){let r=i.segmentReference,a=r.segments.length,n=r.segments[0].time.from,o=r.segments[a-1].time.to;if(e<n||e>o)continue;let u=r.segments.find(l=>l.time.from<=e&&l.time.to>=e);!u||this.currentSegment?.time.from===u.time.from&&this.currentSegment.time.to===u.time.to||(this.currentSegment=u,this.currentRepresentation$.next({...i,label:"Live Text",language:"ru",isAuto:!0,url:new URL(u.url,r.baseUrl).toString()}))}}destroy(){this.currentRepresentation$.next(null),this.currentSegment=null,this.representations=[]}processStreams(e){for(let t of e??[]){let i=s.filterRepresentations(t.representations);if(i){this.representations[this.representationsCursor]=i,this.representationsCursor=(this.representationsCursor+1)%this.maxRepresentations;break}}}static isSupported(e){return!!e?.some(t=>s.filterRepresentations(t.representations))}static filterRepresentations(e){return e?.filter(t=>t.kind==="text"&&"segmentReference"in t&<(t.segmentReference))}};var fo=U(Ht(),1);var ua=require("@vkontakte/videoplayer-shared");var fv=(s,{useHlsJs:e,useManagedMediaSource:t,useOldMSEDetection:i})=>{let{containers:r,protocols:a,codecs:n,nativeHlsSupported:o}=W.video,u=(n.h264||n.h265)&&n.aac,l=a.mse&&(!i||!!window.MediaStreamTrack)||a.mms&&t;return s.filter(c=>{switch(c){case"DASH_SEP":return l&&r.mp4&&u;case"DASH_WEBM":return l&&r.webm&&n.vp9&&n.opus;case"DASH_WEBM_AV1":return l&&r.webm&&n.av1&&n.opus;case"DASH_STREAMS":return l&&(r.mp4&&u||r.webm&&(n.vp9||n.av1)&&(n.opus||n.aac));case"DASH_LIVE":return l&&r.mp4&&u;case"DASH_LIVE_CMAF":return l&&r.mp4&&u&&r.cmaf;case"DASH_ONDEMAND":return l&&r.mp4&&u;case"HLS":case"HLS_ONDEMAND":return o||e&&l&&r.mp4&&u;case"HLS_LIVE":case"HLS_LIVE_CMAF":return o;case"MPEG":return r.mp4;case"DASH":case"DASH_LIVE_WEBM":return!1;case"WEB_RTC_LIVE":return a.webrtc&&a.ws&&n.h264&&(r.mp4||r.webm);default:return(0,ua.assertNever)(c)}})},ho=s=>{let{webmDecodingInfo:e}=W.video,t="DASH_WEBM",i="DASH_WEBM_AV1";switch(s){case"vp9":return[t,i];case"av1":return[i,t];case"none":return[];case"smooth":return e?e[i].smooth?[i,t]:e[t].smooth?[t,i]:[i,t]:[t,i];case"power_efficient":return e?e[i].powerEfficient?[i,t]:e[t].powerEfficient?[t,i]:[i,t]:[t,i];default:(0,ua.assertNever)(s)}return[t,i]},mv=({webmCodec:s,androidPreferredFormat:e,preferMultiStream:t})=>{let i=[...t?["DASH_STREAMS"]:[],...ho(s),"DASH_SEP","DASH_ONDEMAND",...t?[]:["DASH_STREAMS"]],r=[...t?["DASH_STREAMS"]:[],"DASH_SEP","DASH_ONDEMAND",...t?[]:["DASH_STREAMS"]];if(W.device.isAndroid)switch(e){case"mpeg":return["MPEG",...i,"HLS","HLS_ONDEMAND"];case"hls":return["HLS","HLS_ONDEMAND",...i,"MPEG"];case"dash":return[...i,"HLS","HLS_ONDEMAND","MPEG"];case"dash_any_mpeg":return[...r,"MPEG",...ho(s),"HLS","HLS_ONDEMAND"];case"dash_any_webm":return[...ho(s),"MPEG",...r,"HLS","HLS_ONDEMAND"];case"dash_sep":return["DASH_SEP","MPEG",...ho(s),...r,"HLS","HLS_ONDEMAND"];default:(0,ua.assertNever)(e)}return W.video.nativeHlsSupported?[...i,"HLS","HLS_ONDEMAND","MPEG"]:[...i,"HLS","HLS_ONDEMAND","MPEG"]},bv=({androidPreferredFormat:s,preferCMAF:e,preferWebRTC:t})=>{let i=e?["DASH_LIVE_CMAF","DASH_LIVE"]:["DASH_LIVE","DASH_LIVE_CMAF"],r=e?["HLS_LIVE_CMAF","HLS_LIVE"]:["HLS_LIVE","HLS_LIVE_CMAF"],a=[...i,...r],n=[...r,...i],o,u=W.device.isMac&&W.browser.isSafari;if(W.device.isAndroid)switch(s){case"dash":case"dash_any_mpeg":case"dash_any_webm":case"dash_sep":{o=a;break}case"hls":case"mpeg":{o=n;break}default:(0,ua.assertNever)(s)}else W.video.nativeHlsSupported&&!u?o=n:u?o=e?["DASH_LIVE_CMAF","HLS_LIVE_CMAF","HLS_LIVE","DASH_LIVE"]:["HLS_LIVE","DASH_LIVE","DASH_LIVE_CMAF","HLS_LIVE_CMAF"]:o=a;return t?["WEB_RTC_LIVE",...o]:[...o,"WEB_RTC_LIVE"]},bc=s=>s?["HLS_LIVE","HLS_LIVE_CMAF","DASH_LIVE_CMAF"]:["DASH_WEBM","DASH_WEBM_AV1","DASH_SEP","DASH_ONDEMAND","HLS","HLS_ONDEMAND","MPEG"],mo=s=>{if(s.size===0)return;if(s.size===1){let t=s.values().next();return(0,fo.default)(t.value.split("."),0)}for(let t of s){let i=(0,fo.default)(t.split("."),0);if(i==="opus"||i==="vp09"||i==="av01")return i}let e=s.values().next();return(0,fo.default)(e.value.split("."),0)};var CL=["timeupdate","progress","play","seeked","stalled","waiting"],VL=["timeupdate","progress","loadeddata","playing","seeked"];var bo=class{constructor(e){this.element=null;this.manifestUrlString="";this.source=null;this.manifest=null;this.subscription=new v.Subscription;this.representationSubscription=new v.Subscription;this.state$=new K("none");this.currentVideoRepresentation$=new v.ValueSubject(void 0);this.currentVideoRepresentationInit$=new v.ValueSubject(void 0);this.currentAudioRepresentation$=new v.ValueSubject(void 0);this.currentVideoSegmentLength$=new v.ValueSubject(0);this.currentAudioSegmentLength$=new v.ValueSubject(0);this.error$=new v.Subject;this.lastConnectionType$=new v.ValueSubject(void 0);this.lastConnectionReused$=new v.ValueSubject(void 0);this.lastRequestFirstBytes$=new v.ValueSubject(void 0);this.currentLiveTextRepresentation$=new v.ValueSubject(null);this.isLive$=new v.ValueSubject(!1);this.isActiveLive$=new v.ValueSubject(!1);this.isLowLatency$=new v.ValueSubject(!1);this.liveDuration$=new v.ValueSubject(0);this.liveSeekableDuration$=new v.ValueSubject(0);this.liveAvailabilityStartTime$=new v.ValueSubject(0);this.liveStreamStatus$=new v.ValueSubject(void 0);this.bufferLength$=new v.ValueSubject(0);this.liveLatency$=new v.ValueSubject(void 0);this.liveLoadBufferLength$=new v.ValueSubject(0);this.livePositionFromPlayer$=new v.ValueSubject(0);this.currentStallDuration$=new v.ValueSubject(0);this.videoLastDataObtainedTimestamp$=new v.ValueSubject(0);this.fetcherRecoverableError$=new v.Subject;this.fetcherError$=new v.Subject;this.liveStreamEndTimestamp=0;this.isUpdatingLive=!1;this.isJumpGapAfterSeekLive=!1;this.forceEnded$=new v.Subject;this.gapWatchdogActive=!1;this.destroyController=new pe;this.initManifest=(0,v.abortable)(this.destroyController.signal,async function*(e,t,i){this.tracer.log("initManifest"),this.element=e,this.manifestUrlString=$e(t,i,2),this.state$.startTransitionTo("manifest_ready"),this.manifest=yield this.updateManifest(),this.manifest?.streams.video.length?this.state$.setState("manifest_ready"):this.error$.next({id:"NoRepresentations",category:v.ErrorCategory.PARSER,message:"No playable video representations"})}.bind(this));this.updateManifest=(0,v.abortable)(this.destroyController.signal,async function*(){this.tracer.log("updateManifestStart",{manifestUrl:this.manifestUrlString});let e=yield this.fetcher.fetchManifest(this.manifestUrlString).catch(n=>{!this.manifest&&!this.bufferLength$.getValue()&&this.error$.next({id:"LoadManifest",category:v.ErrorCategory.NETWORK,message:"Failed to load manifest",thrown:n})});if(!e)return null;let t=null;try{t=dv(e??"",this.manifestUrlString)}catch(n){let o=eo(e)??{id:"ManifestParsing",category:v.ErrorCategory.PARSER,message:"Failed to parse MPD manifest",thrown:n};this.error$.next(o)}if(!t)return null;let i=(n,o,u)=>!!(this.element?.canPlayType?.(o)&&Rt()?.isTypeSupported?.(`${o}; codecs="${u}"`)||n==="text");if(t.live){this.isLive$.next(!!t.live);let{availabilityStartTime:n,latestSegmentPublishTime:o,streamIsUnpublished:u,streamIsAlive:l}=t.live,c=(t.duration??0)/1e3;this.liveSeekableDuration$.next(-1*c),this.liveDuration$.next((o-n)/1e3),this.liveAvailabilityStartTime$.next(t.live.availabilityStartTime);let p="active";l||(p=u?"unpublished":"unexpectedly_down"),this.liveStreamStatus$.next(p)}let r={text:t.streams.text,video:[],audio:[]};for(let n of["video","audio"]){let u=t.streams[n].filter(({mime:p,codecs:d})=>i(n,p,d)),l=new Set(u.map(({codecs:p})=>p)),c=mo(l);if(c&&(r[n]=u.filter(({codecs:p})=>p.startsWith(c))),n==="video"){let p=this.tuning.preferHDR,d=r.video.some(m=>m.hdr),h=r.video.some(m=>!m.hdr);W.display.isHDR&&p&&d?r.video=r.video.filter(m=>m.hdr):h&&(r.video=r.video.filter(m=>!m.hdr))}}let a={...t,streams:r};return this.tracer.log("updateManifestEnd",(0,v.flattenObject)(a)),a}.bind(this));this.initRepresentations=(0,v.abortable)(this.destroyController.signal,async function*(e,t,i){this.tracer.log("initRepresentationsStart",(0,v.flattenObject)({initialVideo:e,initialAudio:t,sourceHls:i})),(0,v.assertNonNullable)(this.manifest),(0,v.assertNonNullable)(this.element),this.representationSubscription.unsubscribe(),this.state$.startTransitionTo("representations_ready");let r=d=>{this.representationSubscription.add((0,v.fromEvent)(d,"error").pipe((0,v.filter)(h=>!!this.element?.played.length)).subscribe(h=>{this.error$.next({id:"VideoSource",category:v.ErrorCategory.VIDEO_PIPELINE,message:"Unexpected video source error",thrown:h})}))};this.source=this.tuning.useManagedMediaSource?Fn():new MediaSource;let a=document.createElement("source");if(r(a),a.src=URL.createObjectURL(this.source),this.element.appendChild(a),this.tuning.useManagedMediaSource&&wr())if(i){let d=document.createElement("source");r(d),d.type="application/x-mpegurl",d.src=i.url,this.element.appendChild(d)}else this.element.disableRemotePlayback=!0;this.isActiveLive$.next(this.isLive$.getValue());let n={fetcher:this.fetcher,tuning:this.tuning,getCurrentPosition:()=>this.element?this.element.currentTime*1e3:void 0,isActiveLowLatency:()=>this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),manifest:this.manifest},o=this.manifest.streams.video.reduce((d,h)=>[...d,...h.representations],[]);if(this.videoBufferManager=new aa("video",this.source,o,n),this.bufferManagers=[this.videoBufferManager],(0,v.isNonNullable)(t)){let d=this.manifest.streams.audio.reduce((h,m)=>[...h,...m.representations],[]);this.audioBufferManager=new aa("audio",this.source,d,n),this.bufferManagers.push(this.audioBufferManager)}oa.isSupported(this.manifest.streams.text)&&!this.isLowLatency$.getValue()&&(this.liveTextManager=new oa(this.manifest.streams.text,n)),this.representationSubscription.add(this.fetcher.lastConnectionType$.subscribe(this.lastConnectionType$)),this.representationSubscription.add(this.fetcher.lastConnectionReused$.subscribe(this.lastConnectionReused$)),this.representationSubscription.add(this.fetcher.lastRequestFirstBytes$.subscribe(this.lastRequestFirstBytes$));let u=()=>{this.stallWatchdogSubscription?.unsubscribe(),this.currentStallDuration$.next(0)};if(this.representationSubscription.add((0,v.merge)(...VL.map(d=>(0,v.fromEvent)(this.element,d))).pipe((0,v.map)(d=>this.element?Qe(this.element.buffered,this.element.currentTime*1e3):0),(0,v.filterChanged)(),(0,v.tap)(d=>{d>this.tuning.dash.bufferEmptinessTolerance&&u()})).subscribe(this.bufferLength$)),this.representationSubscription.add((0,v.merge)((0,v.fromEvent)(this.element,"ended"),this.forceEnded$).subscribe(()=>{u()})),this.isLive$.getValue()){this.subscription.add(this.liveDuration$.pipe((0,v.filterChanged)()).subscribe(h=>this.liveStreamEndTimestamp=(0,v.now)())),this.subscription.add((0,v.fromEvent)(this.element,"pause").subscribe(()=>{this.livePauseWatchdogSubscription=(0,v.interval)(1e3).subscribe(h=>{let m=ki(this.manifestUrlString,2);this.manifestUrlString=$e(this.manifestUrlString,m+1e3,2),this.liveStreamStatus$.getValue()==="active"&&this.updateManifest()}),this.subscription.add(this.livePauseWatchdogSubscription)})).add((0,v.fromEvent)(this.element,"play").subscribe(h=>this.livePauseWatchdogSubscription?.unsubscribe())),this.representationSubscription.add((0,v.combine)({isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe((0,v.map)(({isActiveLive:h,isLowLatency:m})=>h&&m),(0,v.filterChanged)()).subscribe(h=>{this.isManualDecreasePlaybackInLive()||Fr(this.element,1)})),this.representationSubscription.add((0,v.combine)({bufferLength:this.bufferLength$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe((0,v.filter)(({bufferLength:h,isActiveLive:m,isLowLatency:g})=>m&&g&&!!h)).subscribe(({bufferLength:h})=>this.liveBuffer.next(h))),this.representationSubscription.add(this.videoBufferManager.currentLowLatencySegmentLength$.subscribe(h=>{if(!this.isActiveLive$.getValue()&&!this.isLowLatency$.getValue()&&!h)return;let m=this.liveSeekableDuration$.getValue()-h/1e3;this.liveSeekableDuration$.next(Math.max(m,-1*this.tuning.dashCmafLive.maxLiveDuration)),this.liveDuration$.next(this.liveDuration$.getValue()+h/1e3)})),this.representationSubscription.add((0,v.combine)({isLive:this.isLive$,rtt:this.throughputEstimator.rtt$,bufferLength:this.bufferLength$,segmentServerLatency:this.videoBufferManager.currentLiveSegmentServerLatency$}).pipe((0,v.filter)(({isLive:h})=>h),(0,v.filterChanged)((h,m)=>m.bufferLength<h.bufferLength),(0,v.map)(({rtt:h,bufferLength:m,segmentServerLatency:g})=>{let y=ki(this.manifestUrlString,2);return(h/2+m+g+y)/1e3})).subscribe(this.liveLatency$)),this.representationSubscription.add((0,v.combine)({liveBuffer:this.liveBuffer.smoothed$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).subscribe(({liveBuffer:h,isActiveLive:m,isLowLatency:g})=>{if(!g||!m)return;let y=this.tuning.dashCmafLive.lowLatency.maxTargetOffset,T=this.tuning.dashCmafLive.lowLatency.maxTargetOffsetDeviation,A=this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup,x=h-y;if(this.isManualDecreasePlaybackInLive())return;let M=1;Math.abs(x)>T&&(M=1+Math.sign(x)*A),Fr(this.element,M)})),this.representationSubscription.add(this.bufferLength$.subscribe(h=>{let m=0;if(h){let g=(this.element?.currentTime??0)*1e3;m=Math.min(...this.bufferManagers.map(T=>T.getLiveSegmentsToLoadState(this.manifest)?.to??g))-g}this.liveLoadBufferLength$.getValue()!==m&&this.liveLoadBufferLength$.next(m)}));let d=0;this.representationSubscription.add((0,v.combine)({liveLoadBufferLength:this.liveLoadBufferLength$,bufferLength:this.bufferLength$}).pipe((0,v.throttle)(1e3)).subscribe(async({liveLoadBufferLength:h,bufferLength:m})=>{if(!this.element||this.isUpdatingLive)return;let g=this.element.playbackRate,y=ki(this.manifestUrlString,2),T=Math.abs(this.livePositionFromPlayer$.getValue())*1e3,A=Math.min(T,this.tuning.dashCmafLive.normalizedTargetMinBufferSize*g),x=this.tuning.dashCmafLive.normalizedActualBufferOffset*g,M=this.tuning.dashCmafLive.normalizedLiveMinBufferSize*g,$=isFinite(h)?h:m,F=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),G=T<=this.tuning.live.activeLiveDelay;this.isActiveLive$.next(G);let B="none";if(F?B="active_low_latency":this.isLowLatency$.getValue()&&G?(this.bufferManagers.forEach(D=>D.proceedLowLatencyLive()),B="active_low_latency"):y!==0&&$<A?B="live_forward_buffering":$<A+M&&(B="live_with_target_offset"),isFinite(h)&&(d=h>d?h:d),B==="live_forward_buffering"||B==="live_with_target_offset"){let D=d-(A+x),I=this.normolizeLiveOffset(Math.trunc(y+D/g)),j=Math.abs(I-y),k=0;!h||j<=this.tuning.dashCmafLive.offsetCalculationError?k=y:I>0&&j>this.tuning.dashCmafLive.offsetCalculationError&&(k=I),this.manifestUrlString=$e(this.manifestUrlString,k,2)}(B==="live_with_target_offset"||B==="live_forward_buffering")&&(d=0,await this.updateLive())},h=>{this.error$.next({id:"updateLive",category:v.ErrorCategory.VIDEO_PIPELINE,thrown:h,message:"Failed to update live with subscription"})}))}let l=(0,v.merge)(...this.bufferManagers.map(d=>d.fullyBuffered$)).pipe((0,v.map)(()=>this.bufferManagers.every(d=>d.fullyBuffered$.getValue()))),c=(0,v.merge)(...this.bufferManagers.map(d=>d.onLastSegment$)).pipe((0,v.map)(()=>this.bufferManagers.some(d=>d.onLastSegment$.getValue()))),p=(0,v.combine)({allBuffersFull:l,someBufferEnded:c}).pipe((0,v.filterChanged)(),(0,v.map)(({allBuffersFull:d,someBufferEnded:h})=>d&&h),(0,v.filter)(d=>d));if(this.representationSubscription.add((0,v.merge)(this.forceEnded$,p).subscribe(()=>{if(this.source&&this.source.readyState==="open"&&Array.from(this.source.sourceBuffers).every(d=>!d.updating))try{this.source?.endOfStream()}catch(d){this.error$.next({id:"EndOfStream",category:v.ErrorCategory.VIDEO_PIPELINE,message:"Failed to end MediaSource stream",thrown:d})}})),this.representationSubscription.add((0,v.merge)(...this.bufferManagers.map(d=>d.error$)).subscribe(this.error$)),this.representationSubscription.add(this.videoBufferManager.playingRepresentation$.subscribe(this.currentVideoRepresentation$)),this.representationSubscription.add(this.videoBufferManager.playingRepresentationInit$.subscribe(this.currentVideoRepresentationInit$)),this.representationSubscription.add(this.videoBufferManager.currentSegmentLength$.subscribe(this.currentVideoSegmentLength$)),this.audioBufferManager&&(this.representationSubscription.add(this.audioBufferManager.playingRepresentation$.subscribe(this.currentAudioRepresentation$)),this.representationSubscription.add(this.audioBufferManager.currentSegmentLength$.subscribe(this.currentAudioSegmentLength$))),this.liveTextManager&&this.representationSubscription.add(this.liveTextManager.currentRepresentation$.subscribe(this.currentLiveTextRepresentation$)),this.source.readyState!=="open"){let d=this.tuning.dash.sourceOpenTimeout>=0;yield new Promise((h,m)=>{d&&(this.timeoutSourceOpenId=setTimeout(()=>{if(this.source?.readyState==="open"){h();return}this.tuning.dash.rejectOnSourceOpenTimeout?m(new Error("Timeout reject when wait sourceopen event")):h()},this.tuning.dash.sourceOpenTimeout)),this.source?.addEventListener("sourceopen",()=>{this.timeoutSourceOpenId&&clearTimeout(this.timeoutSourceOpenId),h()},{once:!0})})}if(!this.isLive$.getValue()){let d=[this.manifest.duration??0,...(0,Sc.default)((0,Sc.default)([...this.manifest.streams.audio,...this.manifest.streams.video],h=>h.representations),h=>{let m=[];return h.duration&&m.push(h.duration),lt(h.segmentReference)&&h.segmentReference.totalSegmentsDurationMs&&m.push(h.segmentReference.totalSegmentsDurationMs),m})];this.source.duration=Math.max(...d)/1e3}this.audioBufferManager&&(0,v.isNonNullable)(t)?yield Promise.all([this.videoBufferManager.startWith(e),this.audioBufferManager.startWith(t)]):yield this.videoBufferManager.startWith(e),this.state$.setState("representations_ready"),this.tracer.log("initRepresentationsEnd")}.bind(this));this.tick=()=>{if(!this.element||!this.videoBufferManager||this.source?.readyState!=="open")return;let e=this.element.currentTime*1e3;this.videoBufferManager.maintain(e),this.audioBufferManager?.maintain(e),this.liveTextManager?.maintain(e),(this.videoBufferManager.gaps.length||this.audioBufferManager?.gaps.length)&&!this.gapWatchdogActive&&(this.gapWatchdogActive=!0,this.gapWatchdogSubscription=(0,v.interval)(this.tuning.gapWatchdogInterval).subscribe(()=>this.jumpGap(),t=>{this.error$.next({id:"GapWatchdog",category:v.ErrorCategory.WTF,message:"Error handling gaps",thrown:t})}),this.subscription.add(this.gapWatchdogSubscription))};this.throughputEstimator=e.throughputEstimator,this.tuning=e.tuning,this.tracer=e.tracer.createComponentTracer(this.constructor.name),this.fetcher=new oo({throughputEstimator:this.throughputEstimator,requestQuic:this.tuning.requestQuick,compatibilityMode:e.compatibilityMode,tracer:this.tracer,useEnableSubtitlesParam:e.tuning.useEnableSubtitlesParam}),this.subscription.add(this.fetcher.recoverableError$.subscribe(this.fetcherRecoverableError$)),this.subscription.add(this.fetcher.error$.subscribe(this.fetcherError$)),this.liveBuffer=vi.getLiveBufferSmoothedValue(this.tuning.dashCmafLive.lowLatency.maxTargetOffset,{...e.tuning.dashCmafLive.lowLatency.bufferEstimator}),this.initTracerSubscription()}async seekLive(e){(0,v.assertNonNullable)(this.element);let t=this.liveStreamStatus$.getValue()!=="active"?(0,v.now)()-this.liveStreamEndTimestamp:0,i=this.normolizeLiveOffset(e+t);this.isActiveLive$.next(i===0),this.manifestUrlString=$e(this.manifestUrlString,i,2),this.manifest=await this.updateManifest(),this.manifest&&(this.isJumpGapAfterSeekLive=!0,await this.videoBufferManager?.seekLive(this.manifest.streams.video),await this.audioBufferManager?.seekLive(this.manifest.streams.audio),this.liveTextManager?.seekLive(this.manifest.streams.text))}initBuffer(){(0,v.assertNonNullable)(this.element),this.state$.setState("running"),this.subscription.add((0,v.merge)(...CL.map(e=>(0,v.fromEvent)(this.element,e)),(0,v.fromEvent)(window,"online")).subscribe(()=>this.tick(),e=>{this.error$.next({id:"DashVKPlayer",category:v.ErrorCategory.WTF,message:"Internal logic error",thrown:e})})),this.subscription.add((0,v.fromEvent)(this.element,"progress").subscribe(()=>{this.element&&this.element.readyState===2&&!this.element.seeking&&(this.element.currentTime=this.element.currentTime)})),this.subscription.add((0,v.fromEvent)(this.element,"waiting").subscribe(()=>{this.element&&this.element.readyState===2&&!this.element.seeking&&tt(this.element.buffered,this.element.currentTime*1e3)&&(this.element.currentTime=this.element.currentTime);let e=()=>{if(!this.element||this.source?.readyState!=="open")return;let t=this.currentStallDuration$.getValue();t+=50,this.currentStallDuration$.next(t);let i={timeInWaiting:t},r=(0,v.now)(),a=100,n=this.videoBufferManager?.lastDataObtainedTimestamp??0;this.videoLastDataObtainedTimestamp$.next(n);let o=this.audioBufferManager?.lastDataObtainedTimestamp??0,u=this.videoBufferManager?.getForwardBufferDuration()??0,l=this.audioBufferManager?.getForwardBufferDuration()??0,c=u<a&&r-n>this.tuning.dash.crashOnStallTWithoutDataTimeout,p=this.audioBufferManager&&l<a&&r-o>this.tuning.dash.crashOnStallTWithoutDataTimeout;if((c||p)&&t>this.tuning.dash.crashOnStallTWithoutDataTimeout||t>=this.tuning.dash.crashOnStallTimeout)throw new Error(`Stall timeout exceeded: ${t} ms`);if(this.isLive$.getValue()&&t%2e3===0){let d=this.normolizeLiveOffset(-1*this.livePositionFromPlayer$.getValue()*1e3);this.seekLive(d).catch(h=>{this.error$.next({id:"stallIntervalCallback",category:v.ErrorCategory.VIDEO_PIPELINE,message:"stallIntervalCallback failed",thrown:h})}),i.liveLastOffset=d}else{let d=this.element.currentTime*1e3;this.videoBufferManager?.maintain(d),this.audioBufferManager?.maintain(d),i.position=d}this.tracer.log("stallIntervalCallback",(0,v.flattenObject)(i))};this.stallWatchdogSubscription?.unsubscribe(),this.stallWatchdogSubscription=(0,v.interval)(50).subscribe(e,t=>{this.error$.next({id:"StallWatchdogCallback",category:v.ErrorCategory.NETWORK,message:"Can't restore DASH after stall.",thrown:t})}),this.subscription.add(this.stallWatchdogSubscription)})),this.tick()}async switchRepresentation(e,t,i=!1){let r={video:this.videoBufferManager,audio:this.audioBufferManager,text:null}[e];return this.tuning.useNewSwitchTo?this.currentStallDuration$.getValue()>0?r?.switchToWithPreviousAbort(t,i):r?.switchTo(t,i):r?.switchToOld(t,i)}async seek(e,t){(0,v.assertNonNullable)(this.element),(0,v.assertNonNullable)(this.videoBufferManager);let i;t||this.element.duration*1e3<=this.tuning.dashSeekInSegmentDurationThreshold||Math.abs(this.element.currentTime*1e3-e)<=this.tuning.dashSeekInSegmentAlwaysSeekDelta?i=e:i=Math.max(this.videoBufferManager.findSegmentStartTime(e)??e,this.audioBufferManager?.findSegmentStartTime(e)??e),this.warmUpMediaSourceIfNeeded(i),tt(this.element.buffered,i)||await Promise.all([this.videoBufferManager.abort(),this.audioBufferManager?.abort()]),!((0,v.isNullable)(this.element)||(0,v.isNullable)(this.videoBufferManager))&&(this.videoBufferManager.maintain(i),this.audioBufferManager?.maintain(i),this.element.currentTime=i/1e3,this.tracer.log("seek",(0,v.flattenObject)({requestedPosition:e,forcePrecise:t,position:i})))}warmUpMediaSourceIfNeeded(e=this.element?.currentTime){(0,v.isNonNullable)(this.element)&&(0,v.isNonNullable)(this.source)&&(0,v.isNonNullable)(e)&&this.source?.readyState==="ended"&&this.element.duration*1e3-e>this.tuning.dash.seekBiasInTheEnd&&this.bufferManagers.forEach(t=>t.warmUpMediaSource())}get isStreamEnded(){return this.source?.readyState==="ended"}stop(){this.tracer.log("stop"),this.element?.querySelectorAll("source").forEach(e=>{URL.revokeObjectURL(e.src),e.remove()}),this.element=null,this.source=null,this.manifest=null,this.currentVideoRepresentation$.next(void 0),this.videoBufferManager?.destroy(),this.videoBufferManager=null,this.audioBufferManager?.destroy(),this.audioBufferManager=null,this.bufferManagers=[],this.state$.setState("none")}setBufferTarget(e){for(let t of this.bufferManagers)t.setTarget(e)}getStreams(){return this.manifest?.streams}setPreloadOnly(e){for(let t of this.bufferManagers)t.setPreloadOnly(e)}destroy(){this.subscription.unsubscribe(),this.representationSubscription.unsubscribe(),this.timeoutSourceOpenId&&clearTimeout(this.timeoutSourceOpenId),this.destroyController.abort(),this.fetcher.destroy(),this.stop(),this.source?.readyState==="open"&&Array.from(this.source.sourceBuffers).every(e=>!e.updating)&&this.source.endOfStream(),this.source=null,this.tracer.end()}initTracerSubscription(){let e=(0,v.getTraceSubscriptionMethod)(this.tracer.error.bind(this.tracer));this.subscription.add(this.error$.subscribe(e("error")))}isManualDecreasePlaybackInLive(){return!this.element||!this.isLive$.getValue()?!1:1-this.element.playbackRate>this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup}normolizeLiveOffset(e){return Math.trunc(e/1e3)*1e3}async updateLive(){this.isUpdatingLive=!0,this.manifest=await this.updateManifest(),this.manifest&&(this.bufferManagers?.forEach(e=>e.updateLive(this.manifest)),this.liveTextManager?.updateLive(this.manifest)),this.isUpdatingLive=!1}jumpGap(){if(!this.element||!this.videoBufferManager)return;let e=this.videoBufferManager.getDebugBufferState();if(!e)return;let t=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),i={isJumpGapAfterSeekLive:this.isJumpGapAfterSeekLive,isActiveLowLatency:t,initialCurrentTime:this.element.currentTime};this.isJumpGapAfterSeekLive&&!t&&this.element.currentTime>e.to&&(this.isJumpGapAfterSeekLive=!1,this.element.currentTime=0);let r=this.element.currentTime*1e3,a=[],n=this.element.readyState===1?this.tuning.endGapTolerance:0;for(let o of this.bufferManagers)for(let u of o.gaps)o.playingRepresentation$.getValue()===u.representation&&u.from-n<=r&&u.to+n>r&&(this.element.duration*1e3-u.to<this.tuning.endGapTolerance?a.push(1/0):a.push(u.to));if(a.length){let o=Math.max(...a)+10;this.gapWatchdogSubscription.unsubscribe(),this.gapWatchdogActive=!1,o===1/0?this.forceEnded$.next():(this.element.currentTime=o/1e3,i={...i,gapEnds:a,jumpTo:o,resultCurrentTime:this.element.currentTime},this.tracer.log("jumpGap",(0,v.flattenObject)(i)))}}};var go=class{constructor(e,t){this.fov=e,this.orientation=t}};var So=class{constructor(e,t){this.rotating=!1;this.fading=!1;this.lastTickTS=0;this.lastCameraTurnTS=0;this.fadeStartSpeed=null;this.fadeTime=0;this.camera=e,this.options=t,this.rotationSpeed={x:0,y:0,z:0},this.fadeCorrection=1/(this.options.speedFadeTime/1e3)**2}turnCamera(e=0,t=0,i=0){this.pointCameraTo(this.camera.orientation.x+e,this.camera.orientation.y+t,this.camera.orientation.z+i)}pointCameraTo(e=0,t=0,i=0){t=this.limitCameraRotationY(t);let r=e-this.camera.orientation.x,a=t-this.camera.orientation.y,n=i-this.camera.orientation.z;this.camera.orientation.x=e,this.camera.orientation.y=t,this.camera.orientation.z=i,this.lastCameraTurn={x:r,y:a,z:n},this.lastCameraTurnTS=Date.now()}setRotationSpeed(e,t,i){this.rotationSpeed.x=e??this.rotationSpeed.x,this.rotationSpeed.y=t??this.rotationSpeed.y,this.rotationSpeed.z=i??this.rotationSpeed.z}startRotation(){this.rotating=!0}stopRotation(e=!1){e?(this.setRotationSpeed(0,0,0),this.fadeStartSpeed=null):this.startFading(this.rotationSpeed.x,this.rotationSpeed.y,this.rotationSpeed.z),this.rotating=!1}onCameraRelease(){if(this.lastCameraTurn&&this.lastCameraTurnTS){let e=Date.now()-this.lastCameraTurnTS;if(e<this.options.speedFadeThreshold){let t=(1-e/this.options.speedFadeThreshold)*this.options.rotationSpeedCorrection;this.startFading(this.lastCameraTurn.x*t,this.lastCameraTurn.y*t,this.lastCameraTurn.z*t)}}}startFading(e,t,i){this.setRotationSpeed(e,t,i),this.fadeStartSpeed={...this.rotationSpeed},this.fading=!0}stopFading(){this.fadeStartSpeed=null,this.fading=!0,this.fadeTime=0}limitCameraRotationY(e){return Math.max(-this.options.maxYawAngle,Math.min(e,this.options.maxYawAngle))}tick(e){if(!this.lastTickTS){this.lastTickTS=e,this.lastCameraTurnTS=Date.now();return}let t=e-this.lastTickTS,i=t/1e3;if(this.rotating)this.turnCamera(this.rotationSpeed.x*this.options.rotationSpeedCorrection*i,this.rotationSpeed.y*this.options.rotationSpeedCorrection*i,this.rotationSpeed.z*this.options.rotationSpeedCorrection*i);else if(this.fading&&this.fadeStartSpeed){let r=-this.fadeCorrection*(this.fadeTime/1e3)**2+1;this.setRotationSpeed(this.fadeStartSpeed.x*r,this.fadeStartSpeed.y*r,this.fadeStartSpeed.z*r),r>0?this.turnCamera(this.rotationSpeed.x*this.options.rotationSpeedCorrection*i,this.rotationSpeed.y*this.options.rotationSpeedCorrection*i,this.rotationSpeed.z*this.options.rotationSpeedCorrection*i):(this.stopRotation(!0),this.stopFading()),this.fadeTime=Math.min(this.fadeTime+t,this.options.speedFadeTime)}this.lastTickTS=e}};var vv=`attribute vec2 a_vertex;
|
|
71
125
|
attribute vec2 a_texel;
|
|
72
126
|
|
|
73
127
|
varying vec2 v_texel;
|
|
@@ -78,7 +132,7 @@ void main(void) {
|
|
|
78
132
|
// save texel vector to pass to fragment shader
|
|
79
133
|
v_texel = a_texel;
|
|
80
134
|
}
|
|
81
|
-
`;var
|
|
135
|
+
`;var yv=`#ifdef GL_ES
|
|
82
136
|
precision highp float;
|
|
83
137
|
precision highp int;
|
|
84
138
|
#else
|
|
@@ -121,6 +175,13 @@ void main(void) {
|
|
|
121
175
|
// sample using new coordinates
|
|
122
176
|
gl_FragColor = texture2D(u_texture, tc);
|
|
123
177
|
}
|
|
124
|
-
`;var Ws=class{constructor(e,t,i){this.videoInitialized=!1;this.active=!1;this.container=e,this.sourceVideoElement=t,this.params=i,this.canvas=this.createCanvas();let a=this.canvas.getContext("webgl");if(!a)throw new Error("Could not initialize WebGL context");this.gl=a,this.container.appendChild(this.canvas),this.camera=new Qs(this.params.fov,this.params.orientation),this.cameraRotationManager=new Gs(this.camera,{rotationSpeed:this.params.rotationSpeed,maxYawAngle:this.params.maxYawAngle,rotationSpeedCorrection:this.params.rotationSpeedCorrection,degreeToPixelCorrection:this.params.degreeToPixelCorrection,speedFadeTime:this.params.speedFadeTime,speedFadeThreshold:this.params.speedFadeThreshold}),this.updateFrameSize(),this.vertexBuffer=this.createVertexBuffer(),this.textureMappingBuffer=this.createTextureMappingBuffer(),this.updateTextureMappingBuffer(),this.program=this.createProgram(),this.videoTexture=this.createTexture(),this.gl.useProgram(this.program),this.videoElementDataLoadedFn=this.onDataLoadedHandler.bind(this),this.renderFn=this.render.bind(this)}play(){this.active||(this.videoInitialized?this.doPlay():this.sourceVideoElement.readyState>=2?(this.videoInitialized=!0,this.doPlay()):this.sourceVideoElement.addEventListener("loadeddata",this.videoElementDataLoadedFn))}stop(){this.active=!1}startCameraManualRotation(e,t){this.cameraRotationManager.setRotationSpeed(e*this.params.rotationSpeed,t*this.params.rotationSpeed,0),this.cameraRotationManager.startRotation()}stopCameraManualRotation(e=!1){this.cameraRotationManager.stopRotation(e)}turnCamera(e,t){this.cameraRotationManager.turnCamera(e,t)}pointCameraTo(e,t){this.cameraRotationManager.pointCameraTo(e,t)}pixelToDegree(e){return{x:this.params.degreeToPixelCorrection*this.params.fov.x*-e.x/this.viewportWidth,y:this.params.degreeToPixelCorrection*this.params.fov.y*e.y/this.viewportHeight}}getCameraRotation(){return this.camera.orientation}holdCamera(){this.cameraRotationManager.stopRotation(!0)}releaseCamera(){this.cameraRotationManager.onCameraRelease()}destroy(){this.sourceVideoElement.removeEventListener("loadeddata",this.videoElementDataLoadedFn),this.stop(),this.canvas.remove()}setViewportSize(e,t){this.viewportWidth=e,this.viewportHeight=t,this.canvas.width=this.viewportWidth,this.canvas.height=this.viewportHeight,this.gl.viewport(0,0,this.canvas.width,this.canvas.height)}onDataLoadedHandler(){this.videoInitialized=!0,this.doPlay()}doPlay(){this.updateFrameSize(),this.vertexBuffer=this.createVertexBuffer(),this.active=!0,this.sourceVideoElement.removeEventListener("loadeddata",this.videoElementDataLoadedFn),requestAnimationFrame(this.renderFn)}render(e){this.cameraRotationManager.tick(e),this.updateTexture(),this.updateTextureMappingBuffer();let t=this.gl.getAttribLocation(this.program,"a_vertex"),i=this.gl.getAttribLocation(this.program,"a_texel"),a=this.gl.getUniformLocation(this.program,"u_texture"),s=this.gl.getUniformLocation(this.program,"u_focus");this.gl.enableVertexAttribArray(t),this.gl.enableVertexAttribArray(i),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,this.vertexBuffer),this.gl.vertexAttribPointer(t,2,this.gl.FLOAT,!1,0,0),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,this.textureMappingBuffer),this.gl.vertexAttribPointer(i,2,this.gl.FLOAT,!1,0,0),this.gl.activeTexture(this.gl.TEXTURE0),this.gl.bindTexture(this.gl.TEXTURE_2D,this.videoTexture),this.gl.uniform1i(a,0),this.gl.uniform2f(s,-this.camera.orientation.x,-this.camera.orientation.y),this.gl.drawArrays(this.gl.TRIANGLE_FAN,0,4),this.gl.bindTexture(this.gl.TEXTURE_2D,null),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,null),this.gl.disableVertexAttribArray(t),this.gl.disableVertexAttribArray(i),this.active&&requestAnimationFrame(this.renderFn)}createShader(e,t){let i=this.gl.createShader(t);if(!i)throw this.destroy(),new Error(`Could not create shader (${t})`);if(this.gl.shaderSource(i,e),this.gl.compileShader(i),!this.gl.getShaderParameter(i,this.gl.COMPILE_STATUS))throw this.destroy(),new Error("An error occurred while compiling the shader: "+this.gl.getShaderInfoLog(i));return i}createProgram(){let e=this.gl.createProgram();if(!e)throw this.destroy(),new Error("Could not create shader program");let t=this.createShader(Fg,this.gl.VERTEX_SHADER),i=this.createShader(qg,this.gl.FRAGMENT_SHADER);if(this.gl.attachShader(e,t),this.gl.attachShader(e,i),this.gl.linkProgram(e),!this.gl.getProgramParameter(e,this.gl.LINK_STATUS))throw this.destroy(),new Error("Could not link shader program.");return e}createTexture(){let e=this.gl.createTexture();if(!e)throw this.destroy(),new Error("Could not create texture");return this.gl.bindTexture(this.gl.TEXTURE_2D,e),this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_MAG_FILTER,this.gl.LINEAR),this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_MIN_FILTER,this.gl.LINEAR),this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_WRAP_S,this.gl.CLAMP_TO_EDGE),this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_WRAP_T,this.gl.CLAMP_TO_EDGE),this.gl.bindTexture(this.gl.TEXTURE_2D,null),e}updateTexture(){this.gl.bindTexture(this.gl.TEXTURE_2D,this.videoTexture),this.gl.pixelStorei(this.gl.UNPACK_FLIP_Y_WEBGL,!0),this.gl.texImage2D(this.gl.TEXTURE_2D,0,this.gl.RGBA,this.gl.RGBA,this.gl.UNSIGNED_BYTE,this.sourceVideoElement),this.gl.bindTexture(this.gl.TEXTURE_2D,null)}createVertexBuffer(){let e=this.gl.createBuffer();if(!e)throw this.destroy(),new Error("Could not create vertex buffer");let t=1,i=1,a=this.frameHeight/(this.frameWidth/this.viewportWidth);return a>this.viewportHeight?t=this.viewportHeight/a:i=a/this.viewportHeight,this.gl.bindBuffer(this.gl.ARRAY_BUFFER,e),this.gl.bufferData(this.gl.ARRAY_BUFFER,new Float32Array([-t,-i,t,-i,t,i,-t,i]),this.gl.STATIC_DRAW),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,null),e}createTextureMappingBuffer(){let e=this.gl.createBuffer();if(!e)throw this.destroy(),new Error("Could not create texture mapping buffer");return e}calculateTexturePosition(){let e=.5-this.camera.orientation.x/360,t=.5-this.camera.orientation.y/180,i=this.camera.fov.x/360/2,a=this.camera.fov.y/180/2,s=e-i,n=t-a,o=e+i,u=t-a,l=e+i,d=t+a,p=e-i,h=t+a;return[s,n,o,u,l,d,p,h]}updateTextureMappingBuffer(){this.gl.bindBuffer(this.gl.ARRAY_BUFFER,this.textureMappingBuffer),this.gl.bufferData(this.gl.ARRAY_BUFFER,new Float32Array([...this.calculateTexturePosition()]),this.gl.STATIC_DRAW),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,null)}updateFrameSize(){this.frameWidth=this.sourceVideoElement.videoWidth,this.frameHeight=this.sourceVideoElement.videoHeight}createCanvas(){let e=document.createElement("canvas");return e.style.position="absolute",e.style.left="0",e.style.top="0",e.style.width="100%",e.style.height="100%",e}};var he=require("@vkontakte/videoplayer-shared"),Hu=class{constructor(){this.isSeeked$=new he.ValueSubject(!1);this.isBuffering$=new he.ValueSubject(!1);this.currentStallsCount=0;this.maxQualityLimit=void 0;this.lastUniqueVideoTrackSelectedTimestamp=0;this.predictedThroughputWithoutData=0;this.subscription=new he.Subscription;this.severeStallOccurred$=new he.ValueSubject(!1)}connect(e){this.currentStallDuration$=e.currentStallDuration$,this.videoLastDataObtainedTimestamp$=e.videoLastDataObtainedTimestamp$,this.throughput$=e.throughput$,this.rtt$=e.rtt$,this.qualityLimitsOnStall=e.qualityLimitsOnStall,this.subscription.add(e.isSeeked$.subscribe(this.isSeeked$)),this.subscription.add(e.isBuffering$.subscribe(this.isBuffering$)),this.subscription.add(e.looped$.subscribe(t=>this.currentStallsCount=0)),this.subscription.add((0,he.combine)({isBuffering:this.isBuffering$,isSeeked:this.isSeeked$}).pipe((0,he.debounce)(this.qualityLimitsOnStall.stallDurationToBeCount),(0,he.filter)(({isBuffering:t,isSeeked:i})=>t&&!i)).subscribe(t=>{this.currentStallsCount++})),this.subscription.add((0,he.combine)({currentStallDuration:this.currentStallDuration$}).subscribe(({currentStallDuration:t})=>{let{stallDurationNoDataBeforeQualityDecrease:i,stallCountBeforeQualityDecrease:a,resetQualityRestrictionTimeout:s,ignoreStallsOnSeek:n}=this.qualityLimitsOnStall;if((0,he.isNullable)(this.lastUniqueVideoTrackSelected)||n&&this.isSeeked$.getValue())return;let o=this.rtt$.getValue(),u=this.throughput$.getValue(),l=this.videoLastDataObtainedTimestamp$.getValue(),d=(0,he.now)(),p=a&&this.currentStallsCount>=a,h=i&&d-this.lastUniqueVideoTrackSelectedTimestamp>=i+o&&d-l>=i+o&&t>=i;(p||h)&&(this.severeStallOccurred$.next(!0),window.clearTimeout(this.qualityRestrictionTimer),this.maxQualityLimit=this.lastUniqueVideoTrackSelected.quality,(0,he.isNonNullable)(this.lastUniqueVideoTrackSelected.bitrate)&&u>this.lastUniqueVideoTrackSelected.bitrate&&(this.predictedThroughputWithoutData=this.lastUniqueVideoTrackSelected.bitrate)),t||(this.severeStallOccurred$.next(!1),window.clearTimeout(this.qualityRestrictionTimer),this.qualityRestrictionTimer=window.setTimeout(()=>{this.maxQualityLimit=void 0,this.predictedThroughputWithoutData=0},s))}))}get videoMaxQualityLimit(){return this.maxQualityLimit}get predictedThroughput(){return this.predictedThroughputWithoutData}set lastVideoTrackSelected(e){this.lastUniqueVideoTrackSelected?.id!==e.id&&(this.lastUniqueVideoTrackSelected=e,this.lastUniqueVideoTrackSelectedTimestamp=(0,he.now)(),this.currentStallsCount=0)}destroy(){window.clearTimeout(this.qualityRestrictionTimer),this.subscription.unsubscribe()}},Ug=Hu;var Ne=require("@vkontakte/videoplayer-shared"),Ys=class{constructor(){this.subscription=new Ne.Subscription;this.pipSize$=new Ne.ValueSubject(void 0);this.videoSize$=new Ne.ValueSubject(void 0);this.elementSize$=new Ne.ValueSubject(void 0);this.pictureInPictureWindowRemoveEventListener=Ne.noop}connect({observableVideo:e,video:t}){let i=a=>{let s=a.target;this.pipSize$.next({width:s.width,height:s.height})};this.subscription.add((0,Ne.observeElementSize)(t).subscribe(this.videoSize$)).add(e.enterPip$.subscribe(({pictureInPictureWindow:a})=>{this.pipSize$.next({width:a.width,height:a.height}),a.addEventListener("resize",i),this.pictureInPictureWindowRemoveEventListener=()=>{a.removeEventListener("resize",i)}})).add(e.leavePip$.subscribe(()=>{this.pictureInPictureWindowRemoveEventListener()})).add((0,Ne.combine)({videoSize:this.videoSize$,pipSize:this.pipSize$,inPip:e.inPiP$}).pipe((0,Ne.map)(({videoSize:a,inPip:s,pipSize:n})=>s?n:a)).subscribe(this.elementSize$))}getValue(){return this.elementSize$.getValue()}subscribe(e,t){return this.elementSize$.subscribe(e,t)}getObservable(){return this.elementSize$}destroy(){this.pictureInPictureWindowRemoveEventListener(),this.subscription.unsubscribe()}};var pi=class{constructor(e){this.subscription=new N.Subscription;this.videoState=new j("stopped");this.droppedFramesManager=new Rs;this.stallsManager=new Ug;this.elementSizeManager=new Ys;this.videoTracksMap=new Map;this.audioTracksMap=new Map;this.textTracksMap=new Map;this.videoStreamsMap=new Map;this.audioStreamsMap=new Map;this.videoTrackSwitchHistory=new Ar;this.audioTrackSwitchHistory=new Ar;this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),i=this.params.desiredState.playbackState.getTransition(),a=this.params.desiredState.seekState.getState();if(!this.videoState.getTransition()){if(a.state==="requested"&&i?.to!=="paused"&&e!=="stopped"&&t!=="stopped"&&this.seek(a.position,a.forcePrecise),t==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.player.stop(),this.video.load(),this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),w(this.params.desiredState.playbackState,"stopped",!0));return}switch(e){case"stopped":this.videoState.startTransitionTo("ready"),this.prepare();return;case"ready":t==="paused"?(this.videoState.setState("paused"),w(this.params.desiredState.playbackState,"paused")):t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):i?.to==="ready"&&w(this.params.desiredState.playbackState,"ready");return;case"playing":t==="paused"?(this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()):t==="playing"&&this.video.paused?this.playIfAllowed():i?.to==="playing"&&w(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):i?.to==="paused"&&w(this.params.desiredState.playbackState,"paused");return;default:return(0,N.assertNever)(e)}}};this.init3DScene=e=>{if(this.scene3D)return;this.scene3D=new Ws(this.params.container,this.video,{fov:this.params.tuning.spherical.fov,orientation:this.params.tuning.spherical.orientation||{x:e.projectionData?.pose.yaw||0,y:e.projectionData?.pose.pitch||0,z:e.projectionData?.pose.roll||0},rotationSpeed:this.params.tuning.spherical.rotationSpeed,maxYawAngle:this.params.tuning.spherical.maxYawAngle,rotationSpeedCorrection:this.params.tuning.spherical.rotationSpeedCorrection,degreeToPixelCorrection:this.params.tuning.spherical.degreeToPixelCorrection,speedFadeTime:this.params.tuning.spherical.speedFadeTime,speedFadeThreshold:this.params.tuning.spherical.speedFadeThreshold});let t=this.elementSizeManager.getValue();t&&this.scene3D.setViewportSize(t.width,t.height)};this.destroy3DScene=()=>{this.scene3D&&(this.scene3D.destroy(),this.scene3D=void 0)};this.textTracksManager=new Xe(e.source.url),this.params=e,this.video=De(e.container,e.tuning),this.tracer=e.dependencies.tracer.createComponentTracer(this.constructor.name),this.params.output.element$.next(this.video),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(ye(this.params.source.url)),this.params.output.isLive$.next(!1),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.player=new js({throughputEstimator:this.params.dependencies.throughputEstimator,tuning:this.params.tuning,compatibilityMode:this.params.source.compatibilityMode,tracer:this.tracer}),this.subscribe()}getProviderSubscriptionInfo(){let{output:e,desiredState:t}=this.params,i=Oe(this.video);this.subscription.add(()=>i.destroy());let a=this.constructor.name,s=o=>{e.error$.next({id:a,category:N.ErrorCategory.WTF,message:`${a} internal logic error`,thrown:o})};return{output:e,desiredState:t,observableVideo:i,genericErrorListener:s,connect:(o,u)=>this.subscription.add(o.subscribe(u,s))}}subscribe(){let{output:e,desiredState:t,observableVideo:i,genericErrorListener:a,connect:s}=this.getProviderSubscriptionInfo();this.subscription.add(this.params.output.availableVideoTracks$.pipe((0,N.filter)(l=>!!l.length),(0,N.once)()).subscribe(l=>{this.droppedFramesManager.connect({logger:this.params.dependencies.logger,video:this.video,droppedFramesChecker:this.params.tuning.droppedFramesChecker,isAuto:this.params.desiredState.autoVideoTrackSwitching,playing$:i.playing$,pause$:i.pause$,tracks:l})}));let n=this.params.desiredState.seekState.stateChangeEnded$.pipe((0,N.map)(l=>l.to.state!=="none"),(0,N.filterChanged)());this.stallsManager.connect({isSeeked$:n,currentStallDuration$:this.player.currentStallDuration$.pipe((0,N.filterChanged)()),videoLastDataObtainedTimestamp$:this.player.videoLastDataObtainedTimestamp$,throughput$:this.params.dependencies.throughputEstimator.throughput$,rtt$:this.params.dependencies.throughputEstimator.rtt$,qualityLimitsOnStall:this.params.tuning.dash.qualityLimitsOnStall,isBuffering$:i.isBuffering$,looped$:i.looped$}),s(i.ended$,e.endedEvent$),s(i.looped$,e.loopedEvent$),s(i.error$,e.error$),s(i.isBuffering$,e.isBuffering$),s(i.currentBuffer$,e.currentBuffer$),s(i.playing$,e.firstFrameEvent$),s(i.canplay$,e.canplay$),s(i.inPiP$,e.inPiP$),s(i.inFullscreen$,e.inFullscreen$),s(i.loadedMetadata$,e.loadedMetadataEvent$),s(this.player.error$,e.error$),s(this.player.fetcherRecoverableError$,e.fetcherRecoverableError$),s(this.player.fetcherError$,e.fetcherError$),s(this.player.lastConnectionType$,e.httpConnectionType$),s(this.player.lastConnectionReused$,e.httpConnectionReused$),s(this.player.isLive$,e.isLive$),s(this.player.lastRequestFirstBytes$.pipe((0,N.filter)(N.isNonNullable),(0,N.once)()),e.firstBytesEvent$),s(this.stallsManager.severeStallOccurred$,e.severeStallOccurred$),s(this.videoState.stateChangeEnded$.pipe((0,N.map)(l=>l.to)),this.params.output.playbackState$),this.subscription.add(i.loopExpected$.subscribe(l=>{t.seekState.setState({state:"requested",position:0,forcePrecise:!1})})),this.subscription.add(i.looped$.subscribe(()=>this.player.warmUpMediaSourceIfNeeded(),a)),this.subscription.add(i.seeked$.subscribe(e.seekedEvent$,a)),this.subscription.add(gt(this.video,t.isLooped,a)),this.subscription.add(Be(this.video,t.volume,i.volumeState$,a)),this.subscription.add(i.volumeState$.subscribe(this.params.output.volume$,a)),this.subscription.add(Ke(this.video,t.playbackRate,i.playbackRateState$,a)),this.elementSizeManager.connect({video:this.video,observableVideo:i}),s(Je(this.video,{threshold:this.params.tuning.autoTrackSelection.activeVideoAreaThreshold}),e.elementVisible$),this.subscription.add(i.playing$.subscribe(()=>{this.videoState.setState("playing"),w(t.playbackState,"playing"),this.scene3D&&this.scene3D.play()},a)).add(i.pause$.subscribe(()=>{this.videoState.setState("paused"),w(t.playbackState,"paused")},a)).add(i.canplay$.subscribe(()=>{this.videoState.getState()==="playing"&&this.playIfAllowed()},a)),this.subscription.add(this.player.state$.stateChangeEnded$.subscribe(({to:l})=>{if(l==="manifest_ready"){this.videoTracksMap=new Map,this.audioTracksMap=new Map,this.textTracksMap=new Map;let d=this.player.getStreams();if((0,N.assertNonNullable)(d,"Manifest not loaded or empty"),!this.params.tuning.isAudioDisabled){let h=[];for(let m of d.audio){h.push($u(m));let b=[];for(let v of m.representations){let T=Ig(v);b.push(T),this.audioTracksMap.set(T,{stream:m,representation:v})}this.audioStreamsMap.set(m,b)}this.params.output.availableAudioStreams$.next(h)}let p=[];for(let h of d.video){p.push(Mu(h));let m=[];for(let b of h.representations){let v=Tg({...b,streamId:h.id});v&&(m.push(v),this.videoTracksMap.set(v,{stream:h,representation:b}))}this.videoStreamsMap.set(h,m)}this.params.output.availableVideoStreams$.next(p);for(let h of d.text)for(let m of h.representations){let b=Eg(h,m);this.textTracksMap.set(b,{stream:h,representation:m})}this.params.output.availableVideoTracks$.next(Array.from(this.videoTracksMap.keys())),this.params.output.availableAudioTracks$.next(Array.from(this.audioTracksMap.keys())),this.params.output.isAudioAvailable$.next(!!this.audioTracksMap.size),this.audioTracksMap.size&&this.textTracksMap.size&&this.params.desiredState.internalTextTracks.startTransitionTo(Array.from(this.textTracksMap.keys()))}else l==="representations_ready"&&(this.videoState.setState("ready"),this.player.initBuffer())},a)),this.subscription.add((0,N.merge)(this.player.currentStallDuration$,this.player.state$.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.transitionStarted$,this.params.dependencies.throughputEstimator.rttAdjustedThroughput$,t.autoVideoTrackLimits.stateChangeStarted$,this.elementSizeManager.getObservable(),this.params.output.elementVisible$,this.droppedFramesManager.onDroopedVideoFramesLimit$,(0,N.fromEvent)(this.video,"progress")).pipe((0,N.filter)(()=>this.videoTracksMap.size>0)).subscribe(async()=>{let l=this.player.state$.getState(),d=this.player.state$.getTransition();if(!(0,Hg.default)(["manifest_ready","running"],l)||d)return;t.autoVideoTrackSwitching.getTransition()&&t.autoVideoTrackSwitching.setState(t.autoVideoTrackSwitching.getState());let p=this.selectVideoAudioRepresentations();if(!p)return;let[h,m]=p,b=[...this.videoTracksMap.keys()].find(T=>this.videoTracksMap.get(T)?.representation.id===h.id);(0,N.isNonNullable)(b)&&(this.stallsManager.lastVideoTrackSelected=b);let v=this.params.desiredState.autoVideoTrackLimits.getTransition();if(v&&this.params.output.autoVideoTrackLimits$.next(v.to),l==="manifest_ready")await this.player.initRepresentations(h.id,m?.id,this.params.sourceHls);else if(await this.player.switchRepresentation("video",h.id),m){let T=!!t.audioStream.getTransition();await this.player.switchRepresentation("audio",m.id,T)}},a)),this.subscription.add(t.cameraOrientation.stateChangeEnded$.subscribe(({to:l})=>{this.scene3D&&l&&this.scene3D.pointCameraTo(l.x,l.y)})),this.subscription.add(this.elementSizeManager.subscribe(l=>{this.scene3D&&l&&this.scene3D.setViewportSize(l.width,l.height)})),this.subscription.add(this.player.currentVideoRepresentation$.pipe((0,N.filterChanged)()).subscribe(l=>{let d=[...this.videoTracksMap.entries()].find(([,{representation:b}])=>b.id===l);if(!d){e.currentVideoTrack$.next(void 0),e.currentVideoStream$.next(void 0);return}let[p,{stream:h}]=d,m=this.params.desiredState.videoStream.getTransition();m&&m.to&&m.to.id===h.id&&this.params.desiredState.videoStream.setState(m.to),e.currentVideoTrack$.next(p),e.currentVideoStream$.next(Mu(h))},a)),this.subscription.add(this.player.currentAudioRepresentation$.pipe((0,N.filterChanged)()).subscribe(l=>{let d=[...this.audioTracksMap.entries()].find(([,{representation:b}])=>b.id===l);if(!d){e.currentAudioStream$.next(void 0);return}let[p,{stream:h}]=d,m=this.params.desiredState.audioStream.getTransition();m&&m.to&&m.to.id===h.id&&this.params.desiredState.audioStream.setState(m.to),e.currentAudioStream$.next($u(h))},a)),this.subscription.add(this.player.currentVideoRepresentationInit$.subscribe(l=>{if(l?.is3dVideo&&this.params.tuning.spherical?.enabled)try{this.init3DScene(l),e.is3DVideo$.next(!0)}catch(d){e.warning$.next({id:"DashProvider",message:`DashProvider could not initialize 3D-scene: ${d}`})}else this.destroy3DScene(),this.params.tuning.spherical?.enabled&&e.is3DVideo$.next(!1)},a)),this.subscription.add(this.player.currentVideoSegmentLength$.subscribe(e.currentVideoSegmentLength$,a)),this.subscription.add(this.player.currentAudioSegmentLength$.subscribe(e.currentAudioSegmentLength$,a)),this.textTracksManager.connect(this.video,t,e);let o=t.playbackState.stateChangeStarted$.pipe((0,N.map)(({to:l})=>l==="ready"),(0,N.filterChanged)());this.subscription.add((0,N.merge)(o,t.autoVideoTrackSwitching.stateChangeStarted$,this.player.state$.stateChangeEnded$,(0,N.observableFrom)(["init"])).subscribe(()=>{let l=t.autoVideoTrackSwitching.getState(),p=t.playbackState.getState()==="ready"?this.params.tuning.dash.forwardBufferTargetPreload:l?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;this.player.setBufferTarget(p)})),this.subscription.add((0,N.merge)(o,this.player.state$.stateChangeEnded$,(0,N.observableFrom)(["init"])).subscribe(()=>this.player.setPreloadOnly(t.playbackState.getState()==="ready")));let u=(0,N.merge)(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,(0,N.observableFrom)(["init"])).pipe((0,N.debounce)(0));this.subscription.add(u.subscribe(this.syncPlayback,a))}selectVideoAudioRepresentations(){if(this.player.isStreamEnded)return;let{desiredState:e,output:t}=this.params,i=e.autoVideoTrackSwitching.getState(),a=e.videoTrack.getState()?.id,n=[...this.videoTracksMap.keys()].find(({id:Y})=>Y===a),o=t.currentVideoTrack$.getValue(),u=e.videoStream.getState()??(n&&this.videoTracksMap.get(n)?.stream)??this.videoStreamsMap.size===1?this.videoStreamsMap.keys().next().value:void 0;if(!u)return;let l=[...this.videoStreamsMap.keys()].find(({id:Y})=>Y===u.id),d=l&&this.videoStreamsMap.get(l);if(!d)return;let p=Ui(this.video.buffered,this.video.currentTime*1e3),h;this.player.isActiveLive$.getValue()?h=this.player.isLowLatency$.getValue()?this.params.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.params.tuning.dashCmafLive.normalizedLiveMinBufferSize:this.player.isLive$.getValue()?h=this.params.tuning.dashCmafLive.normalizedTargetMinBufferSize:h=i?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;let m=(this.video.duration*1e3||1/0)-this.video.currentTime*1e3,b=Math.min(p/Math.min(h,m||1/0),1),v=e.audioStream.getState()??(this.audioStreamsMap.size===1?this.audioStreamsMap.keys().next().value:void 0),T=[...this.audioStreamsMap.keys()].find(({id:Y})=>Y===v?.id)??this.audioStreamsMap.keys().next().value,I=0;if(T){if(n&&!i){let Y=As(n,d,this.audioStreamsMap.get(T)??[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);I=Math.max(I,Y?.bitrate??-1/0)}if(o){let Y=As(o,d,this.audioStreamsMap.get(T)??[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);I=Math.max(I,Y?.bitrate??-1/0)}}let A=jt(d,{container:this.elementSizeManager.getValue(),panelSize:this.params.panelSize,estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),tuning:this.params.tuning.autoTrackSelection,limits:this.params.desiredState.autoVideoTrackLimits.getState(),reserve:I,forwardBufferHealth:b,current:o,visible:this.params.output.elementVisible$.getValue(),history:this.videoTrackSwitchHistory,playbackRate:this.video.playbackRate,droppedVideoMaxQualityLimit:this.droppedFramesManager.droppedVideoMaxQualityLimit,stallsVideoMaxQualityLimit:this.stallsManager.videoMaxQualityLimit,stallsPredictedThroughput:this.stallsManager.predictedThroughput,abrLogger:this.params.dependencies.abrLogger}),P=i?A??n:n??A,$=T&&Pf(P,d,this.audioStreamsMap.get(T)??[],{estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),stallsPredictedThroughput:this.stallsManager.predictedThroughput,tuning:this.params.tuning.autoTrackSelection,forwardBufferHealth:b,history:this.audioTrackSwitchHistory,playbackRate:this.video.playbackRate,abrLogger:this.params.dependencies.abrLogger}),k=this.videoTracksMap.get(P)?.representation,W=$&&this.audioTracksMap.get($)?.representation;if(k&&W)return[k,W];if(k&&!W&&this.audioTracksMap.size===0)return[k,void 0]}prepare(e=0){this.player.initManifest(this.video,this.params.source.url,e)}playIfAllowed(){_e(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),w(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:N.ErrorCategory.DOM,thrown:e}))}destroy(){this.subscription.unsubscribe(),this.droppedFramesManager.destroy(),this.stallsManager.destroy(),this.elementSizeManager.destroy(),this.destroy3DScene(),this.textTracksManager.destroy(),this.player.destroy(),this.params.output.element$.next(void 0),this.params.output.currentVideoStream$.next(void 0),Ve(this.video),this.tracer.end()}};var ga=class extends pi{subscribe(){super.subscribe();let{output:e,observableVideo:t,connect:i}=this.getProviderSubscriptionInfo();i(t.timeUpdate$,e.position$),i(t.durationChange$,e.duration$)}seek(e,t){this.params.output.willSeekEvent$.next(),this.player.seek(e,t)}};var ae=require("@vkontakte/videoplayer-shared");var va=class extends pi{constructor(e){super(e),this.textTracksManager.destroy()}subscribe(){super.subscribe();let e=-1,{output:t,observableVideo:i,desiredState:a,connect:s}=this.getProviderSubscriptionInfo();this.params.output.position$.next(0),this.params.output.isLive$.next(!0),s(i.timeUpdate$,t.liveBufferTime$),s(this.player.liveSeekableDuration$,t.duration$),s(this.player.liveLatency$,t.liveLatency$);let n=new ae.ValueSubject(1);s(i.playbackRateState$,n),this.subscription.add(this.params.output.position$.subscribe(this.player.livePositionFromPlayer$)).add(a.isLowLatency.stateChangeEnded$.pipe((0,ae.map)(o=>o.to)).subscribe(this.player.isLowLatency$)).add((0,ae.combine)({liveBufferTime:t.liveBufferTime$,liveAvailabilityStartTime:this.player.liveAvailabilityStartTime$}).pipe((0,ae.map)(({liveBufferTime:o,liveAvailabilityStartTime:u})=>o&&u?o+u:void 0)).subscribe(t.liveTime$)).add(this.player.liveStreamStatus$.pipe((0,ae.filter)(o=>(0,ae.isNonNullable)(o))).subscribe(o=>t.isLiveEnded$.next(o!=="active"&&t.position$.getValue()===0))).add((0,ae.combine)({liveDuration:this.player.liveDuration$,liveStreamStatus:this.player.liveStreamStatus$,playbackRate:(0,ae.merge)(i.playbackRateState$,new ae.ValueSubject(1))}).pipe((0,ae.filter)(({liveStreamStatus:o,liveDuration:u})=>o==="active"&&!!u)).subscribe(({liveDuration:o,playbackRate:u})=>{let l=t.liveBufferTime$.getValue(),d=t.position$.getValue(),{playbackCatchupSpeedup:p}=this.params.tuning.dashCmafLive.lowLatency;d||u<1-p||this.video.paused||(0,ae.isNullable)(l)||(e=o-l)})).add((0,ae.combine)({time:t.liveBufferTime$,liveDuration:this.player.liveDuration$,playbackRate:(0,ae.merge)(i.playbackRateState$,new ae.ValueSubject(1))}).pipe((0,ae.filterChanged)((o,u)=>this.player.liveStreamStatus$.getValue()==="active"?o.liveDuration===u.liveDuration:o.time===u.time)).subscribe(({time:o,liveDuration:u,playbackRate:l})=>{let d=t.position$.getValue(),{playbackCatchupSpeedup:p}=this.params.tuning.dashCmafLive.lowLatency;if(!d&&!this.video.paused&&l>=1-p||(0,ae.isNullable)(o)||(0,ae.isNullable)(u))return;let h=-1*(u-o-e);t.position$.next(Math.min(h,0))})).add(this.player.currentLiveTextRepresentation$.subscribe(o=>{if(o){let u=xg(o);this.params.output.availableTextTracks$.next([u])}}))}seek(e){this.params.output.willSeekEvent$.next();let t=-e,i=Math.trunc(t/1e3<=Math.abs(this.params.output.duration$.getValue())?t:0);this.player.seekLive(i).then(()=>{this.params.output.position$.next(e/1e3)})}};var jg=U(gs(),1);var G=require("@vkontakte/videoplayer-shared"),ut={};var Yi=(r,e)=>new G.Observable(t=>{let i=(a,s)=>t.next(s);return r.on(e,i),()=>r.off(e,i)}),Sa=class{constructor(e){this.subscription=new G.Subscription;this.videoState=new j("initializing");this.trackLevels=new Map;this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),i=this.params.desiredState.playbackState.getTransition(),a=this.params.desiredState.seekState.getState();if(e!=="initializing")switch(i?.to!=="paused"&&a.state==="requested"&&this.seek(a.position),t){case"stopped":switch(e){case"stopped":break;case"ready":case"playing":case"paused":this.stop();break;default:(0,G.assertNever)(e)}break;case"ready":switch(e){case"stopped":this.prepare();break;case"ready":case"playing":case"paused":break;default:(0,G.assertNever)(e)}break;case"playing":switch(e){case"playing":break;case"stopped":this.prepare();break;case"ready":case"paused":this.playIfAllowed();break;default:(0,G.assertNever)(e)}break;case"paused":switch(e){case"paused":break;case"stopped":this.prepare();break;case"ready":this.videoState.setState("paused"),w(this.params.desiredState.playbackState,"paused");break;case"playing":this.pause();break;default:(0,G.assertNever)(e)}break;default:(0,G.assertNever)(t)}};this.textTracksManager=new Xe(e.source.url),this.video=De(e.container,e.tuning),this.params=e,this.params.output.element$.next(this.video),this.params.output.isLive$.next(!1),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(ye(this.params.source.url)),this.loadHlsJs()}destroy(){this.subscription.unsubscribe(),this.trackLevels.clear(),this.textTracksManager.destroy(),this.hls?.detachMedia(),this.hls?.destroy(),this.params.output.element$.next(void 0),Ve(this.video)}loadHlsJs(){let e=!1,t=a=>{e||this.params.output.error$.next({id:a==="timeout"?"HlsJsTimeout":"HlsJsLoadError",category:G.ErrorCategory.NETWORK,message:"Failed to load Hls.js",thrown:a}),e=!0},i=window.setTimeout(()=>t("timeout"),this.params.tuning.dynamicImportTimeout);(0,jg.default)(import("hls.js").then(a=>{e||(ut.Hls=a.default,ut.Events=a.default.Events,this.init())},t),()=>{window.clearTimeout(i),e=!0})}init(){(0,G.assertNonNullable)(ut.Hls,"hls.js not loaded"),this.hls=new ut.Hls({fragLoadingMaxRetry:5,levelLoadingMaxRetry:2,manifestLoadingMaxRetry:2,fragLoadingMaxRetryTimeout:16e3,manifestLoadingMaxRetryTimeout:2e3,levelLoadingMaxRetryTimeout:2e3}),this.subscribe(),this.videoState.setState("stopped")}subscribe(){(0,G.assertNonNullable)(ut.Events,"hls.js not loaded");let{desiredState:e,output:t}=this.params,i=l=>{t.error$.next({id:"HlsJsProvider",category:G.ErrorCategory.WTF,message:"HlsJsProvider internal logic error",thrown:l})},a=Oe(this.video);this.subscription.add(()=>a.destroy());let s=(l,d)=>this.subscription.add(l.subscribe(d,i));s(a.timeUpdate$,t.position$),s(a.durationChange$,t.duration$),s(a.ended$,t.endedEvent$),s(a.looped$,t.loopedEvent$),s(a.error$,t.error$),s(a.isBuffering$,t.isBuffering$),s(a.currentBuffer$,t.currentBuffer$),s(a.loadStart$,t.firstBytesEvent$),s(a.loadedMetadata$,t.loadedMetadataEvent$),s(a.playing$,t.firstFrameEvent$),s(a.canplay$,t.canplay$),s(a.seeked$,t.seekedEvent$),s(a.inPiP$,t.inPiP$),s(a.inFullscreen$,t.inFullscreen$),this.subscription.add(gt(this.video,e.isLooped,i)),this.subscription.add(Be(this.video,e.volume,a.volumeState$,i)),this.subscription.add(a.volumeState$.subscribe(this.params.output.volume$)),this.subscription.add(Ke(this.video,e.playbackRate,a.playbackRateState$,i)),s(Je(this.video),t.elementVisible$),s(this.videoState.stateChangeEnded$.pipe((0,G.map)(l=>l.to)),this.params.output.playbackState$),this.subscription.add(Yi(this.hls,ut.Events.ERROR).subscribe(l=>{l.fatal&&t.error$.next({id:["HlsJsFatal",l.type,l.details].join("_"),category:G.ErrorCategory.WTF,message:`HlsJs fatal ${l.type} ${l.details}, ${l.err?.message} ${l.reason}`,thrown:l.error})})),this.subscription.add(a.playing$.subscribe(()=>{this.videoState.setState("playing"),w(e.playbackState,"playing")},i)).add(a.pause$.subscribe(()=>{this.videoState.setState("paused"),w(e.playbackState,"paused")},i)).add(a.canplay$.subscribe(()=>{this.videoState.getTransition()?.to==="ready"&&this.videoState.setState("ready"),this.videoState.getState()==="playing"&&this.playIfAllowed()},i)),s(Yi(this.hls,ut.Events.MANIFEST_PARSED).pipe((0,G.map)(({levels:l})=>l.reduce((d,p)=>{let h=p.name||p.height.toString(10),{width:m,height:b}=p,v=qt(p.attrs.QUALITY??"")??(0,G.videoSizeToQuality)({width:m,height:b});if(!v)return d;let T=p.attrs["FRAME-RATE"]?parseFloat(p.attrs["FRAME-RATE"]):void 0,I={id:h.toString(),quality:v,bitrate:p.bitrate/1e3,size:{width:m,height:b},fps:T};return this.trackLevels.set(h,{track:I,level:p}),d.push(I),d},[]))),t.availableVideoTracks$),s(Yi(this.hls,ut.Events.MANIFEST_PARSED),l=>{if(l.subtitleTracks.length>0){let d=[];for(let p of l.subtitleTracks){let h=p.name,m=p.attrs.URI||"",b=p.lang;d.push({id:h,url:m,language:b,type:"internal"})}e.internalTextTracks.startTransitionTo(d)}}),s(Yi(this.hls,ut.Events.LEVEL_LOADING).pipe((0,G.map)(({url:l})=>ye(l))),t.hostname$),s(Yi(this.hls,ut.Events.FRAG_CHANGED),l=>{let{video:d,audio:p}=l.frag.elementaryStreams;t.currentVideoSegmentLength$.next(((d?.endPTS??0)-(d?.startPTS??0))*1e3),t.currentAudioSegmentLength$.next(((p?.endPTS??0)-(p?.startPTS??0))*1e3)}),this.subscription.add(Ft(e.autoVideoTrackSwitching,()=>this.hls.autoLevelEnabled,l=>{this.hls.nextLevel=l?-1:this.hls.currentLevel,this.hls.loadLevel=l?-1:this.hls.loadLevel},{onError:i}));let n=l=>Array.from(this.trackLevels.values()).find(({level:d})=>d===l)?.track,o=Yi(this.hls,ut.Events.LEVEL_SWITCHED).pipe((0,G.map)(({level:l})=>n(this.hls.levels[l])));o.pipe((0,G.filter)(G.isNonNullable)).subscribe(t.currentVideoTrack$,i),this.subscription.add(Ft(e.videoTrack,()=>n(this.hls.levels[this.hls.currentLevel]),l=>{if((0,G.isNullable)(l))return;let d=this.trackLevels.get(l.id)?.level;if(!d)return;let p=this.hls.levels.indexOf(d),h=this.hls.currentLevel,m=this.hls.levels[h];!m||d.bitrate>m.bitrate?this.hls.nextLevel=p:(this.hls.loadLevel=p,this.hls.loadLevel=p)},{changed$:o,onError:i})),s(a.progress$,()=>{this.params.dependencies.throughputEstimator.addRawThroughput(this.hls.bandwidthEstimate/1e3)}),this.textTracksManager.connect(this.video,e,t);let u=(0,G.merge)(e.playbackState.stateChangeStarted$,e.videoTrack.stateChangeStarted$,e.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,(0,G.observableFrom)(["init"])).pipe((0,G.debounce)(0));this.subscription.add(u.subscribe(this.syncPlayback,i))}prepare(){this.videoState.startTransitionTo("ready"),this.hls.attachMedia(this.video),this.hls.loadSource(this.params.source.url)}async playIfAllowed(){this.videoState.startTransitionTo("playing"),await _e(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).catch(t=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:G.ErrorCategory.DOM,thrown:t}))||(this.videoState.setState("paused"),w(this.params.desiredState.playbackState,"paused",!0))}pause(){this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()}seek(e){this.params.output.willSeekEvent$.next(),this.video.currentTime=e/1e3}stop(){this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.hls.stopLoad(),this.hls.detachMedia(),this.video.removeAttribute("src"),this.video.load(),this.videoState.setState("stopped"),w(this.params.desiredState.playbackState,"stopped",!0)}};var Qg="X-Playback-Duration",ju=async r=>{let e=await St(r),t=await e.text(),i=/#EXT-X-VK-PLAYBACK-DURATION:(\d+)/m.exec(t)?.[1];return i?parseInt(i,10):e.headers.has(Qg)?parseInt(e.headers.get(Qg),10):void 0};var Q=require("@vkontakte/videoplayer-shared");var Gu=U(oo(),1);var zs=require("@vkontakte/videoplayer-shared");var jA=r=>{let e=null;if(r.QUALITY&&(e=qt(r.QUALITY)),!e&&r.RESOLUTION){let[t,i]=r.RESOLUTION.split("x").map(a=>parseInt(a,10));e=(0,zs.videoSizeToQuality)({width:t,height:i})}return e??null},QA=(r,e)=>{let t=r.split(`
|
|
125
|
-
|
|
126
|
-
`),s=0;for(let n=0;n<a.length;++n){let o=a[n];switch(!0){case o.startsWith("#EXTINF:"):{let u=a[++n],l=new URL(u,t).toString(),d=Number(this.extractPlaylistRowValue("#EXTINF:",o))*1e3;if(i.segments.push({time:{from:s,to:s+d},url:l}),s=s+d,!i.segmentStartTime){let p=new Date(i.vkStartTime).valueOf(),h=new Date(i.programDateTime).valueOf();i.segmentStartTime=h-p}break}case o.startsWith("#EXT-X-TARGETDURATION:"):i.targetDuration=Number(this.extractPlaylistRowValue("#EXT-X-TARGETDURATION:",o));break;case o.startsWith("#EXT-X-MEDIA-SEQUENCE:"):i.mediaSequence=Number(this.extractPlaylistRowValue("#EXT-X-MEDIA-SEQUENCE:",o));break;case o.startsWith("#EXT-X-VK-PLAYBACK-DURATION:"):i.vkPlaybackDuration=Number(this.extractPlaylistRowValue("#EXT-X-VK-PLAYBACK-DURATION:",o));break;case o.startsWith("#EXT-X-PROGRAM-DATE-TIME:"):{let u=this.extractPlaylistRowValue("#EXT-X-PROGRAM-DATE-TIME:",o);i.programDateTime=u;let l=new Date(u);l.setMilliseconds(0),s=l.valueOf();break}case o.startsWith("#EXT-X-VK-START-TIME:"):i.vkStartTime=this.extractPlaylistRowValue("#EXT-X-VK-START-TIME:",o);break}}return i}extractPlaylistRowValue(e,t){switch(e){case"#EXTINF:":return t.substring(e.length,t.length-1);default:return t.substring(e.length)}}processLiveTime(e){if((0,Ge.isNonNullable)(e)&&this.currentTextTrackData){let{segments:t}=this.currentTextTrackData.playlist,{from:i}=t[0].time,{to:a}=t[t.length-1].time;if(e<i||e>a)return;a-e<this.params.downloadThreshold&&this.fetchNextManifestData();for(let n of t)if(n.time.from<=e&&n.time.to>=e){this.availableTextTracks$.next([{...this.currentTextTrackData.textTrack,url:n.url,isAuto:!0}]);break}}}async fetchNextManifestData(){try{if(this.abortControllers.nextManifest)return;this.abortControllers.nextManifest=new Pe;let{textTracks:e}=await this.fetchManifestData(),t=await this.parseTextTracks(e,this.params.sourceUrl);this.currentTextTrackData&&t&&(this.currentTextTrackData.playlist.segments=t.playlist.segments)}catch(e){this.error("fetchNextManifestData",e)}finally{this.abortControllers.nextManifest=null}}async fetchManifestData(){let e=this.prepareUrl??this.params.sourceUrl;return await this.params.fetchManifestData(e,{signal:this.abortControllers.destroy.signal})}error(e,t){this.error$.next({id:"[LiveTextManager][HLS_LIVE_CMAF]",category:Ge.ErrorCategory.WTF,thrown:t,message:e})}};var ya=class{constructor(e){this.subscription=new Q.Subscription;this.videoState=new j("stopped");this.textTracksManager=null;this.liveTextManager=null;this.manifests$=new Q.ValueSubject([]);this.liveOffset=new oi;this.manifestStartTime$=new Q.ValueSubject(void 0);this.syncPlayback=()=>{if(!this.manifests$.getValue().length)return;let t=this.videoState.getState(),i=this.params.desiredState.playbackState.getState(),a=this.params.desiredState.playbackState.getTransition(),s=this.params.desiredState.videoTrack.getTransition(),n=this.params.desiredState.autoVideoTrackSwitching.getTransition(),o=this.params.desiredState.autoVideoTrackLimits.getTransition();if(i==="stopped"){t!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.video.removeAttribute("src"),this.video.load(),this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),w(this.params.desiredState.playbackState,"stopped",!0));return}if(this.videoState.getTransition())return;let l=this.params.desiredState.seekState.getState();if(t==="stopped"){this.videoState.startTransitionTo("ready"),this.prepare();return}if(s||n||o){let d=this.videoState.getState();this.videoState.setState("changing_manifest"),this.videoState.startTransitionTo(d),this.prepare(),o&&this.params.output.autoVideoTrackLimits$.next(o.to),l.state==="none"&&this.params.desiredState.seekState.setState({state:"requested",position:-this.liveOffset.getTotalOffset(),forcePrecise:!0});return}if(a?.to!=="paused"&&l.state==="requested"){this.videoState.startTransitionTo("ready"),this.seek(l.position&&l.position-this.liveOffset.getTotalPausedTime()),this.prepare();return}switch(t){case"ready":i==="ready"?w(this.params.desiredState.playbackState,"ready"):i==="paused"?(this.videoState.setState("paused"),this.liveOffset.pause(),w(this.params.desiredState.playbackState,"paused")):i==="playing"&&(this.videoState.startTransitionTo("playing"),this.playIfAllowed());return;case"playing":i==="paused"?(this.videoState.startTransitionTo("paused"),this.liveOffset.pause(),this.video.paused?this.videoState.setState("paused"):this.video.pause()):a?.to==="playing"&&w(this.params.desiredState.playbackState,"playing");return;case"paused":if(i==="playing")if(this.videoState.startTransitionTo("playing"),this.liveOffset.getTotalPausedTime()<this.params.config.maxPausedTime&&this.liveOffset.getTotalOffset()<this.maxSeekBackTime$.getValue())this.liveOffset.resume(),this.playIfAllowed(),this.params.output.position$.next(-this.liveOffset.getTotalOffset()/1e3);else{let d=this.liveOffset.getTotalOffset();d>=this.maxSeekBackTime$.getValue()&&(d=0,this.liveOffset.resetTo(d)),this.liveOffset.resume(),this.params.output.position$.next(-d/1e3),this.prepare()}else a?.to==="paused"&&(w(this.params.desiredState.playbackState,"paused"),this.liveOffset.pause());return;case"changing_manifest":break;default:return(0,Q.assertNever)(t)}};this.params=e,this.video=De(e.container,e.tuning),this.params.output.element$.next(this.video),this.masterManifest={id:"master",quality:Q.VideoQuality.INVARIANT,url:this.params.source.url};let t=(i,a)=>Ks(i,this.params.source.url,{manifestRetryInterval:this.params.tuning.manifestRetryInterval,manifestRetryMaxInterval:this.params.tuning.manifestRetryMaxInterval,manifestRetryMaxCount:this.params.tuning.manifestRetryMaxCount},a);this.params.tuning.useHlsLiveNewTextManager?this.liveTextManager=new Xs(this.params.output.liveTime$,this.video,t,this.params.source.url,this.params.tuning.hlsLiveNewTextManagerDownloadThreshold):this.textTracksManager=new Xe(e.source.url),t(this.generateLiveUrl()).then(({qualityManifests:i,textTracks:a})=>{i.length===0&&this.params.output.error$.next({id:"HlsLiveProviderInternal:empty_manifest",category:Q.ErrorCategory.WTF,message:"HlsLiveProvider: there are no qualities in manifest"}),this.liveTextManager?.processTextTracks(a,this.params.source.url),this.manifests$.next([this.masterManifest,...i])}).catch(i=>{this.params.output.error$.next({id:"ExtractHlsQualities",category:Q.ErrorCategory.NETWORK,message:"Error fetching manifest and extracting qualities",thrown:i})}),this.params.output.isLive$.next(!0),this.params.output.canChangePlaybackSpeed$.next(!1),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(ye(this.params.source.url)),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.maxSeekBackTime$=new Q.ValueSubject(e.source.maxSeekBackTime??1/0),this.subscribe()}selectManifest(){let{autoVideoTrackSwitching:e,videoTrack:t}=this.params.desiredState,i=e.getState(),a=t.getTransition(),s=a?.to?.id??t.getState()?.id??"master",n=this.manifests$.getValue();if(!n.length)return;let o=i?"master":s;return i&&!a&&t.startTransitionTo(this.masterManifest),n.find(u=>u.id===o)}subscribe(){let{output:e,desiredState:t}=this.params,i=o=>{e.error$.next({id:"HlsLiveProvider",category:Q.ErrorCategory.WTF,message:"HlsLiveProvider internal logic error",thrown:o})},a=Oe(this.video);this.subscription.add(()=>a.destroy());let s=(o,u)=>this.subscription.add(o.subscribe(u,i));s(a.ended$,e.endedEvent$),s(a.error$,e.error$),s(a.isBuffering$,e.isBuffering$),s(a.currentBuffer$,e.currentBuffer$),s(a.loadedMetadata$,e.firstBytesEvent$),s(a.loadedMetadata$,e.loadedMetadataEvent$),s(a.playing$,e.firstFrameEvent$),s(a.canplay$,e.canplay$),s(a.inPiP$,e.inPiP$),s(a.inFullscreen$,e.inFullscreen$),this.subscription.add(t.isLooped.stateChangeStarted$.subscribe(()=>t.isLooped.setState(!1),i)),this.subscription.add(Be(this.video,t.volume,a.volumeState$,i)),this.subscription.add(a.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(Ke(this.video,t.playbackRate,a.playbackRateState$,i)),s(Je(this.video),e.elementVisible$),this.liveTextManager?(s(this.liveTextManager.getCurrentTime$,this.params.output.getCurrentTime$),s(this.liveTextManager.error$,this.params.output.error$)):this.textTracksManager&&this.textTracksManager.connect(this.video,t,e),this.subscription.add(a.playing$.subscribe(()=>{this.videoState.setState("playing"),w(t.playbackState,"playing")},i)).add(a.pause$.subscribe(()=>{this.videoState.setState("paused"),w(t.playbackState,"paused")},i)).add(a.canplay$.subscribe(()=>{this.videoState.getTransition()?.to==="ready"&&this.videoState.setState("ready"),this.videoState.getState()==="playing"&&this.playIfAllowed()},i)),this.liveTextManager&&this.subscription.add(this.liveTextManager.availableTextTracks$.subscribe(o=>{o&&this.params.output.availableTextTracks$.next(o)})),this.subscription.add(this.maxSeekBackTime$.pipe((0,Q.filterChanged)(),(0,Q.map)(o=>-o/1e3)).subscribe(this.params.output.duration$,i)),this.subscription.add(a.loadedMetadata$.subscribe(()=>{let o=this.params.desiredState.seekState.getState(),u=this.videoState.getTransition(),l=this.params.desiredState.videoTrack.getTransition(),d=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(l&&(0,Q.isNonNullable)(l.to)){let p=l.to.id;this.params.desiredState.videoTrack.setState(l.to);let h=this.manifests$.getValue().find(m=>m.id===p);h&&(this.params.output.currentVideoTrack$.next(h),this.params.output.hostname$.next(ye(h.url)))}d&&this.params.desiredState.autoVideoTrackSwitching.setState(d.to),u&&u.from==="changing_manifest"&&this.videoState.setState(u.to),o&&o.state==="requested"&&this.seek(o.position)},i)),this.subscription.add(a.loadedData$.subscribe(()=>{let o=this.video?.getStartDate?.()?.getTime();this.manifestStartTime$.next(o||void 0)},i)),this.subscription.add((0,Q.combine)({startTime:this.manifestStartTime$.pipe((0,Q.filter)(Q.isNonNullable)),currentTime:a.timeUpdate$}).subscribe(({startTime:o,currentTime:u})=>this.params.output.liveTime$.next(o+u*1e3),i)),this.subscription.add(this.manifests$.pipe((0,Q.map)(o=>o.map(({id:u,quality:l,size:d,bandwidth:p,fps:h})=>({id:u,quality:l,size:d,fps:h,bitrate:p})))).subscribe(this.params.output.availableVideoTracks$,i));let n=(0,Q.merge)(t.playbackState.stateChangeStarted$,t.seekState.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.stateChangeStarted$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,this.manifests$,(0,Q.observableFrom)(["init"])).pipe((0,Q.debounce)(0));this.subscription.add(n.subscribe(this.syncPlayback,i))}destroy(){this.subscription.unsubscribe(),this.textTracksManager?.destroy(),this.liveTextManager?.destroy(),this.params.output.element$.next(void 0),Ve(this.video)}prepare(){let e=this.selectManifest();if((0,Q.isNullable)(e))return;let t=this.params.desiredState.autoVideoTrackLimits.getTransition(),i=this.params.desiredState.autoVideoTrackLimits.getState(),a=new URL(e.url);if((t||i)&&e.id===this.masterManifest.id){let{max:o,min:u}=t?.to??i??{};for(let[l,d]of[[o,"mq"],[u,"lq"]]){let p=String(parseFloat(l||""));d&&l&&a.searchParams.set(d,p)}}let s=this.params.format==="HLS_LIVE_CMAF"?2:0,n=xe(a.toString(),this.liveOffset.getTotalOffset(),s);this.liveTextManager?.prepare(n),this.video.setAttribute("src",n),this.video.load(),ju(n).then(o=>{if(!(0,Q.isNullable)(o))this.maxSeekBackTime$.next(o);else{let u=this.params.source.maxSeekBackTime??this.maxSeekBackTime$.getValue();((0,Q.isNullable)(u)||!isFinite(u))&&St(n).then(l=>l.text()).then(l=>{let d=/#EXT-X-STREAM-INF[^\n]+\n(.+)/m.exec(l)?.[1];if(d){let p=new URL(d,n).toString();ju(p).then(h=>{(0,Q.isNullable)(h)||this.maxSeekBackTime$.next(h)})}}).catch(()=>{})}})}playIfAllowed(){_e(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),this.liveOffset.pause(),w(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:Q.ErrorCategory.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next();let t=-e,i=t<this.maxSeekBackTime$.getValue()?t:0;this.liveOffset.resetTo(i),this.params.output.position$.next(-i/1e3),this.params.output.seekedEvent$.next()}generateLiveUrl(){let e=xe(this.params.source.url);if(this.params.tuning.useHlsLiveNewTextManager){let t=new URL(e);t.searchParams.set("enable-subtitles","yes"),e=t.toString()}return e}};var te=require("@vkontakte/videoplayer-shared");var Ta=class{constructor(e){this.subscription=new te.Subscription;this.videoState=new j("stopped");this.manifests$=new te.ValueSubject([]);this.syncPlayback=()=>{if(!this.manifests$.getValue().length)return;let t=this.videoState.getState(),i=this.params.desiredState.playbackState.getState(),a=this.params.desiredState.playbackState.getTransition(),s=this.params.desiredState.videoTrack.getTransition(),n=this.params.desiredState.autoVideoTrackSwitching.getTransition(),o=this.params.desiredState.autoVideoTrackLimits.getTransition();if(i==="stopped"){t!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.video.removeAttribute("src"),this.video.load(),this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),w(this.params.desiredState.playbackState,"stopped",!0));return}if(this.videoState.getTransition())return;let l=this.params.desiredState.seekState.getState();if(t==="stopped"){this.videoState.startTransitionTo("ready"),this.prepare();return}if(s||n||o){let d=this.videoState.getState();this.videoState.setState("changing_manifest"),this.videoState.startTransitionTo(d);let{currentTime:p}=this.video;this.prepare(),o&&this.params.output.autoVideoTrackLimits$.next(o.to),l.state==="none"&&this.params.desiredState.seekState.setState({state:"requested",position:p*1e3,forcePrecise:!0});return}switch(a?.to!=="paused"&&l.state==="requested"&&this.seek(l.position),t){case"ready":i==="ready"?w(this.params.desiredState.playbackState,"ready"):i==="paused"?(this.videoState.setState("paused"),w(this.params.desiredState.playbackState,"paused")):i==="playing"&&(this.videoState.startTransitionTo("playing"),this.playIfAllowed());return;case"playing":i==="paused"?(this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()):a?.to==="playing"&&w(this.params.desiredState.playbackState,"playing");return;case"paused":i==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):a?.to==="paused"&&w(this.params.desiredState.playbackState,"paused");return;case"changing_manifest":break;default:return(0,te.assertNever)(t)}};this.textTracksManager=new Xe(e.source.url),this.params=e,this.video=De(e.container,e.tuning),this.params.output.element$.next(this.video),this.masterManifest={id:"master",quality:te.VideoQuality.INVARIANT,url:this.params.source.url},this.params.output.isLive$.next(!1),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(ye(this.params.source.url)),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),Ks(xe(this.params.source.url),this.params.source.url,{manifestRetryInterval:this.params.tuning.manifestRetryInterval,manifestRetryMaxInterval:this.params.tuning.manifestRetryMaxInterval,manifestRetryMaxCount:this.params.tuning.manifestRetryMaxCount}).then(({qualityManifests:t,textTracks:i})=>{this.manifests$.next([this.masterManifest,...t]),this.params.tuning.useNativeHLSTextTracks||this.params.desiredState.internalTextTracks.startTransitionTo(i)},t=>this.params.output.error$.next({id:"ExtractHlsQualities",category:te.ErrorCategory.NETWORK,message:"Error fetching manifest and extracting qualities",thrown:t})),this.subscribe()}selectManifest(){let{autoVideoTrackSwitching:e,videoTrack:t}=this.params.desiredState,i=e.getState(),a=t.getTransition(),s=a?.to?.id??t.getState()?.id??"master",n=this.manifests$.getValue();if(!n.length)return;let o=i?"master":s;return i&&(!a||!a.from)&&t.startTransitionTo(this.masterManifest),n.find(u=>u.id===o)}subscribe(){let{output:e,desiredState:t}=this.params,i=o=>{e.error$.next({id:"HlsProvider",category:te.ErrorCategory.WTF,message:"HlsProvider internal logic error",thrown:o})},a=Oe(this.video);this.subscription.add(()=>a.destroy());let s=(o,u)=>this.subscription.add(o.subscribe(u));if(s(a.timeUpdate$,e.position$),s(a.durationChange$,e.duration$),s(a.ended$,e.endedEvent$),s(a.looped$,e.loopedEvent$),s(a.error$,e.error$),s(a.isBuffering$,e.isBuffering$),s(a.currentBuffer$,e.currentBuffer$),s(a.loadedMetadata$,e.firstBytesEvent$),s(a.loadedMetadata$,e.loadedMetadataEvent$),s(a.playing$,e.firstFrameEvent$),s(a.canplay$,e.canplay$),s(a.seeked$,e.seekedEvent$),s(a.inPiP$,e.inPiP$),s(a.inFullscreen$,e.inFullscreen$),s(this.videoState.stateChangeEnded$.pipe((0,te.map)(o=>o.to)),this.params.output.playbackState$),this.subscription.add(gt(this.video,t.isLooped,i)),this.subscription.add(Be(this.video,t.volume,a.volumeState$,i)),this.subscription.add(a.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(Ke(this.video,t.playbackRate,a.playbackRateState$,i)),this.textTracksManager.connect(this.video,t,e),this.subscription.add(a.playing$.subscribe(()=>{this.videoState.setState("playing"),w(t.playbackState,"playing")},i)).add(a.pause$.subscribe(()=>{this.videoState.setState("paused"),w(t.playbackState,"paused")},i)).add(a.canplay$.subscribe(()=>{this.videoState.getTransition()?.to==="ready"&&this.videoState.setState("ready"),this.videoState.getState()==="playing"&&this.playIfAllowed()},i).add(a.loadedMetadata$.subscribe(()=>{let o=this.params.desiredState.seekState.getState(),u=this.videoState.getTransition(),l=this.params.desiredState.videoTrack.getTransition(),d=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(l&&(0,te.isNonNullable)(l.to)){let m=l.to.id;this.params.desiredState.videoTrack.setState(l.to);let b=this.manifests$.getValue().find(v=>v.id===m);b&&(this.params.output.currentVideoTrack$.next(b),this.params.output.hostname$.next(ye(b.url)))}let p=this.params.desiredState.playbackRate.getState(),h=this.params.output.element$.getValue()?.playbackRate;if(p!==h){let m=this.params.output.element$.getValue();m&&(this.params.desiredState.playbackRate.setState(p),m.playbackRate=p)}d&&this.params.desiredState.autoVideoTrackSwitching.setState(d.to),u&&u.from==="changing_manifest"&&this.videoState.setState(u.to),o.state==="requested"&&this.seek(o.position)},i))),this.subscription.add(this.manifests$.pipe((0,te.map)(o=>o.map(({id:u,quality:l,size:d,bandwidth:p,fps:h})=>({id:u,quality:l,size:d,fps:h,bitrate:p})))).subscribe(this.params.output.availableVideoTracks$,i)),!z.device.isIOS||!this.params.tuning.useNativeHLSTextTracks){let{textTracks:o}=this.video;this.subscription.add((0,te.merge)((0,te.fromEvent)(o,"addtrack"),(0,te.fromEvent)(o,"removetrack"),(0,te.fromEvent)(o,"change"),(0,te.observableFrom)(["init"])).subscribe(()=>{for(let u=0;u<o.length;u++)o[u].mode="hidden"},i))}let n=(0,te.merge)(t.playbackState.stateChangeStarted$,t.seekState.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.stateChangeStarted$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,this.manifests$,(0,te.observableFrom)(["init"])).pipe((0,te.debounce)(0));this.subscription.add(n.subscribe(this.syncPlayback,i))}destroy(){this.subscription.unsubscribe(),this.textTracksManager.destroy(),this.params.output.element$.next(void 0),Ve(this.video)}prepare(){let e=this.selectManifest();if((0,te.isNullable)(e))return;let t=this.params.desiredState.autoVideoTrackLimits.getTransition(),i=this.params.desiredState.autoVideoTrackLimits.getState(),a=new URL(e.url);if((t||i)&&e.id===this.masterManifest.id){let{max:s,min:n}=t?.to??i??{};for(let[o,u]of[[s,"mq"],[n,"lq"]]){let l=String(parseFloat(o||""));u&&o&&a.searchParams.set(u,l)}}this.video.setAttribute("src",a.toString()),this.video.load()}playIfAllowed(){_e(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),w(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:te.ErrorCategory.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next(),this.video.currentTime=e/1e3}};var Wg=U(Li(),1),Wu=U(Ni(),1),Yg=U(Ut(),1);var ne=require("@vkontakte/videoplayer-shared");var Ia=class{constructor(e){this.subscription=new ne.Subscription;this.videoState=new j("stopped");this.trackUrls={};this.textTracksManager=new Xe;this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),i=this.params.desiredState.playbackState.getTransition();if(t==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.video.removeAttribute("src"),this.video.load(),this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),w(this.params.desiredState.playbackState,"stopped",!0));return}if(this.videoState.getTransition())return;let s=this.params.desiredState.autoVideoTrackLimits.getTransition(),n=this.params.desiredState.videoTrack.getTransition(),o=this.params.desiredState.seekState.getState();if(s&&e!=="ready"&&!n){this.handleQualityLimitTransition(s.to);return}if(e==="stopped"){this.videoState.startTransitionTo("ready"),this.prepare();return}if(n){let{currentTime:u}=this.video;this.prepare(),o.state==="none"&&this.params.desiredState.seekState.setState({state:"requested",position:u*1e3,forcePrecise:!0});return}switch(i?.to!=="paused"&&o.state==="requested"&&this.seek(o.position),e){case"ready":t==="ready"?w(this.params.desiredState.playbackState,"ready"):t==="paused"?(this.videoState.setState("paused"),w(this.params.desiredState.playbackState,"paused")):t==="playing"&&(this.videoState.startTransitionTo("playing"),this.playIfAllowed());return;case"playing":t==="paused"?(this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()):i?.to==="playing"&&w(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):i?.to==="paused"&&w(this.params.desiredState.playbackState,"paused");return;default:return(0,ne.assertNever)(e)}};this.params=e,this.video=De(e.container,e.tuning),this.params.output.element$.next(this.video),(0,Wg.default)(this.params.source).reverse().forEach(([t,i],a)=>{let s=a.toString(10);this.trackUrls[s]={track:{quality:t,id:s},url:i}}),this.params.output.isLive$.next(!1),this.params.output.availableVideoTracks$.next((0,Wu.default)(this.trackUrls).map(({track:t})=>t)),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.desiredState.autoVideoTrackSwitching.setState(!1),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),this.subscribe()}subscribe(){let{output:e,desiredState:t}=this.params,i=o=>{e.error$.next({id:"MpegProvider",category:ne.ErrorCategory.WTF,message:"MpegProvider internal logic error",thrown:o})},a=Oe(this.video);this.subscription.add(()=>a.destroy());let s=(o,u)=>this.subscription.add(o.subscribe(u,i));s(a.timeUpdate$,e.position$),s(a.durationChange$,e.duration$),s(a.ended$,e.endedEvent$),s(a.looped$,e.loopedEvent$),s(a.error$,e.error$),s(a.isBuffering$,e.isBuffering$),s(a.currentBuffer$,e.currentBuffer$),s(a.loadedMetadata$,e.firstBytesEvent$),s(a.loadedMetadata$,e.loadedMetadataEvent$),s(a.playing$,e.firstFrameEvent$),s(a.canplay$,e.canplay$),s(a.seeked$,e.seekedEvent$),s(a.inPiP$,e.inPiP$),s(a.inFullscreen$,e.inFullscreen$),s(this.videoState.stateChangeEnded$.pipe((0,ne.map)(o=>o.to)),this.params.output.playbackState$),this.subscription.add(gt(this.video,t.isLooped,i)),this.subscription.add(Be(this.video,t.volume,a.volumeState$,i)),this.subscription.add(a.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(Ke(this.video,t.playbackRate,a.playbackRateState$,i)),s(Je(this.video),e.elementVisible$),this.subscription.add(a.playing$.subscribe(()=>{this.videoState.setState("playing"),w(t.playbackState,"playing")},i)).add(a.pause$.subscribe(()=>{this.videoState.setState("paused"),w(t.playbackState,"paused")},i)).add(a.canplay$.subscribe(()=>{this.videoState.getTransition()?.to==="ready"&&this.videoState.setState("ready");let o=this.params.desiredState.videoTrack.getTransition();if(o&&(0,ne.isNonNullable)(o.to)){this.params.desiredState.videoTrack.setState(o.to),this.params.output.currentVideoTrack$.next(this.trackUrls[o.to.id].track);let u=this.params.desiredState.playbackRate.getState(),l=this.params.output.element$.getValue()?.playbackRate;if(u!==l){let d=this.params.output.element$.getValue();d&&(this.params.desiredState.playbackRate.setState(u),d.playbackRate=u)}}this.videoState.getState()==="playing"&&this.playIfAllowed()},i)),this.textTracksManager.connect(this.video,t,e);let n=(0,ne.merge)(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,(0,ne.observableFrom)(["init"])).pipe((0,ne.debounce)(0));this.subscription.add(n.subscribe(this.syncPlayback,i))}destroy(){this.subscription.unsubscribe(),this.textTracksManager.destroy(),this.trackUrls={},this.params.output.element$.next(void 0),Ve(this.video)}prepare(){let e=this.params.desiredState.videoTrack.getState()?.id;(0,ne.assertNonNullable)(e,"MpegProvider: track is not selected");let{url:t}=this.trackUrls[e];(0,ne.assertNonNullable)(t,`MpegProvider: No url for ${e}`),this.params.tuning.requestQuick&&(t=ha(t)),this.video.setAttribute("src",t),this.video.load(),this.params.output.hostname$.next(ye(t))}playIfAllowed(){_e(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),w(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:ne.ErrorCategory.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next(),this.video.currentTime=e/1e3}handleQualityLimitTransition(e){this.params.output.autoVideoTrackLimits$.next(e);let t=l=>{this.params.output.currentVideoTrack$.next(l),this.params.desiredState.videoTrack.startTransitionTo(l)},i=l=>{let d=jt(n,{container:this.video.getBoundingClientRect(),panelSize:this.params.panelSize,estimatedThroughput:this.params.dependencies.throughputEstimator.throughput$.getValue(),tuning:this.params.tuning.autoTrackSelection,forwardBufferHealth:0,limits:l,abrLogger:this.params.dependencies.abrLogger});t(d)},a=this.params.output.currentVideoTrack$.getValue()?.quality,s=!!(e.max||e.min),n=(0,Wu.default)(this.trackUrls).map(l=>l.track);if(!a||!s||wr({limits:e,lowestAvailableQuality:(0,Yg.default)(n,-1)?.quality,highestAvailableQuality:n[0].quality})){i();return}let o=e.max?(0,ne.isLowerOrEqual)(a,e.max):!0,u=e.min?(0,ne.isHigherOrEqual)(a,e.min):!0;o&&u||i(e)}};var oe=require("@vkontakte/videoplayer-shared");var Kg=require("@vkontakte/videoplayer-shared"),zg=["stun:videostun.mycdn.me:80"],WA=1e3,YA=3,Yu=()=>null,Js=class{constructor(e,t){this.ws=null;this.peerConnection=null;this.serverUrl="";this.streamKey="";this.stream=null;this.signalingType="JOIN";this.retryCount=0;this.externalStartCallback=Yu;this.externalStopCallback=Yu;this.externalErrorCallback=Yu;this.options=this.normalizeOptions(t);let i=e.split("/");this.serverUrl=i.slice(0,i.length-1).join("/"),this.streamKey=i[i.length-1]}onStart(e){try{this.externalStartCallback=e}catch(t){this.handleSystemError(t)}}onStop(e){try{this.externalStopCallback=e}catch(t){this.handleSystemError(t)}}onError(e){try{this.externalErrorCallback=e}catch(t){this.handleSystemError(t)}}connect(){this.connectWS()}disconnect(){try{this.externalStopCallback(),this.closeConnections()}catch(e){this.handleSystemError(e)}}connectWS(){this.ws||(this.ws=new WebSocket(this.serverUrl),this.ws.onopen=this.onSocketOpen.bind(this),this.ws.onmessage=this.onSocketMessage.bind(this),this.ws.onclose=this.onSocketClose.bind(this),this.ws.onerror=this.onSocketError.bind(this))}onSocketOpen(){this.handleLogin()}onSocketClose(e){try{if(!this.ws)return;this.ws=null,e.code>1e3?(this.retryCount++,this.retryCount>this.options.maxRetryNumber?this.handleNetworkError():this.scheduleRetry()):this.externalStopCallback()}catch(t){this.handleRTCError(t)}}onSocketError(e){try{this.externalErrorCallback(new Error(e.toString()))}catch(t){this.handleRTCError(t)}}onSocketMessage(e){try{let t=this.parseMessage(e.data);switch(t.type){case"JOIN":case"CALL_JOIN":this.handleJoinMessage(t);break;case"UPDATE":this.handleUpdateMessage(t);break;case"STATUS":this.handleStatusMessage(t);break}}catch(t){this.handleRTCError(t)}}handleJoinMessage(e){switch(e.inviteType){case"ANSWER":this.handleAnswer(e.sdp);break;case"CANDIDATE":this.handleCandidate(e.candidate);break}}handleStatusMessage(e){switch(e.status){case"UNPUBLISHED":this.handleUnpublished();break}}async handleUpdateMessage(e){try{let t=await this.createOffer();this.peerConnection&&await this.peerConnection.setLocalDescription(t),this.handleAnswer(e.sdp)}catch(t){this.handleRTCError(t)}}async handleLogin(){try{let e={iceServers:[{urls:zg}]};this.peerConnection=new RTCPeerConnection(e),this.peerConnection.ontrack=this.onPeerConnectionStream.bind(this),this.peerConnection.onicecandidate=this.onPeerConnectionIceCandidate.bind(this),this.peerConnection.oniceconnectionstatechange=this.onPeerConnectionIceConnectionStateChange.bind(this);let t=await this.createOffer();await this.peerConnection.setLocalDescription(t),this.send({type:this.signalingType,inviteType:"OFFER",streamKey:this.streamKey,sdp:t.sdp,callSupport:!1})}catch(e){this.handleRTCError(e)}}async handleAnswer(e){try{this.peerConnection&&await this.peerConnection.setRemoteDescription(new RTCSessionDescription({type:"answer",sdp:e}))}catch(t){this.handleRTCError(t)}}async handleCandidate(e){if(e)try{this.peerConnection&&await this.peerConnection.addIceCandidate(e)}catch(t){this.handleRTCError(t)}}handleUnpublished(){try{this.closeConnections(),this.externalStopCallback()}catch(e){this.handleRTCError(e)}}handleSystemError(e){this.options.errorChanel&&this.options.errorChanel.next({id:"webrtc-provider-error",category:Kg.ErrorCategory.WTF,message:e.message})}async onPeerConnectionStream(e){let t=e.streams[0];this.stream&&this.stream.id===t.id||(this.stream=t,this.externalStartCallback(this.stream))}onPeerConnectionIceCandidate(e){e.candidate&&this.send({type:this.signalingType,inviteType:"CANDIDATE",candidate:e.candidate})}onPeerConnectionIceConnectionStateChange(){if(this.peerConnection){let e=this.peerConnection.iceConnectionState;["failed","closed"].indexOf(e)>-1&&(this.retryCount++,this.retryCount>this.options.maxRetryNumber?this.handleNetworkError():(this.closeConnections(),this.scheduleRetry()))}}async createOffer(){let e={offerToReceiveAudio:!0,offerToReceiveVideo:!0,voiceActivityDetection:!1};if(!this.peerConnection)throw new Error("Can not create offer - no peer connection instance ");let t=await this.peerConnection.createOffer(e),i=t.sdp||"";if(!/^a=rtpmap:\d+ H264\/\d+$/m.test(i))throw new Error("No h264 codec support error");return t}handleRTCError(e){try{this.externalErrorCallback(e||new Error("RTC connection error"))}catch(t){this.handleSystemError(t)}}handleNetworkError(){try{this.externalErrorCallback(new Error("Network error"))}catch(e){this.handleSystemError(e)}}send(e){this.ws&&this.ws.send(JSON.stringify(e))}parseMessage(e){try{return JSON.parse(e)}catch{throw new Error("Can not parse socket message")}}closeConnections(){let e=this.ws;e&&(this.ws=null,e.close(1e3)),this.removePeerConnection()}removePeerConnection(){let e=this.peerConnection;e&&(this.peerConnection=null,e.close(),e.ontrack=null,e.onicecandidate=null,e.oniceconnectionstatechange=null,e=null)}scheduleRetry(){this.retryTimeout=setTimeout(this.connectWS.bind(this),WA)}normalizeOptions(e={}){let t={stunServerList:zg,maxRetryNumber:YA,errorChanel:null};return e.stunServerList&&(t.stunServerList=e.stunServerList),e.maxRetryNumber&&e.maxRetryNumber>0&&(t.maxRetryNumber=e.maxRetryNumber),t}};var Ea=class{constructor(e){this.videoState=new j("stopped");this.maxSeekBackTime$=new oe.ValueSubject(0);this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),i=this.params.desiredState.playbackState.getTransition();if(t==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.video.pause(),this.video.srcObject=null,this.params.output.position$.next(0),this.params.output.duration$.next(0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),w(this.params.desiredState.playbackState,"stopped",!0));return}if(this.videoState.getTransition())return;let s=this.params.desiredState.videoTrack.getTransition();if(e==="stopped"){this.videoState.startTransitionTo("ready"),this.prepare();return}if(s){this.prepare();return}switch(e){case"ready":t==="paused"?(this.videoState.setState("paused"),w(this.params.desiredState.playbackState,"paused")):t==="playing"&&(this.videoState.startTransitionTo("playing"),this.playIfAllowed());return;case"playing":t==="paused"?(this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()):i?.to==="playing"&&w(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):i?.to==="paused"&&w(this.params.desiredState.playbackState,"paused");return;default:return(0,oe.assertNever)(e)}};this.subscription=new oe.Subscription,this.params=e,this.log=this.params.dependencies.logger.createComponentLog("WebRTCLiveProvider"),this.video=De(e.container,e.tuning),this.liveStreamClient=new Js(this.params.source.url,{maxRetryNumber:this.params.tuning.webrtc.connectionRetryMaxNumber,errorChanel:this.params.output.error$}),this.liveStreamClient.onStart(this.onLiveStreamStart.bind(this)),this.liveStreamClient.onStop(this.onLiveStreamStop.bind(this)),this.liveStreamClient.onError(this.onLiveStreamError.bind(this)),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.subscribe()}destroy(){this.subscription.unsubscribe(),this.liveStreamClient.disconnect(),this.params.output.element$.next(void 0),Ve(this.video)}subscribe(){let{output:e,desiredState:t}=this.params,i=n=>{e.error$.next({id:"WebRTCLiveProvider",category:oe.ErrorCategory.WTF,message:"WebRTCLiveProvider internal logic error",thrown:n})};this.subscription.add((0,oe.merge)(this.videoState.stateChangeStarted$.pipe((0,oe.map)(n=>({transition:n,type:"start"}))),this.videoState.stateChangeEnded$.pipe((0,oe.map)(n=>({transition:n,type:"end"})))).subscribe(({transition:n,type:o})=>{this.log({message:`[videoState change] ${o}: ${JSON.stringify(n)}`})}));let a=Oe(this.video);this.subscription.add(()=>a.destroy());let s=(n,o)=>this.subscription.add(n.subscribe(o,i));s(a.timeUpdate$,e.liveTime$),s(a.ended$,e.endedEvent$),s(a.looped$,e.loopedEvent$),s(a.error$,e.error$),s(a.isBuffering$,e.isBuffering$),s(a.currentBuffer$,e.currentBuffer$),s(Je(this.video),this.params.output.elementVisible$),this.subscription.add(a.durationChange$.subscribe(n=>{e.duration$.next(n===1/0?0:n)})).add(a.canplay$.subscribe(()=>{this.videoState.getTransition()?.to==="ready"&&this.videoState.setState("ready")},i)).add(a.pause$.subscribe(()=>{this.videoState.setState("paused")},i)).add(a.playing$.subscribe(()=>{this.videoState.setState("playing")},i)).add(a.error$.subscribe(e.error$)).add(this.maxSeekBackTime$.subscribe(this.params.output.duration$)).add(Be(this.video,t.volume,a.volumeState$,i)).add(a.volumeState$.subscribe(e.volume$,i)).add(this.videoState.stateChangeEnded$.subscribe(n=>{switch(n.to){case"stopped":e.position$.next(0),e.duration$.next(0),t.playbackState.setState("stopped");break;case"ready":break;case"paused":t.playbackState.setState("paused");break;case"playing":t.playbackState.setState("playing");break;default:return(0,oe.assertNever)(n.to)}},i)).add((0,oe.merge)(t.playbackState.stateChangeStarted$,this.videoState.stateChangeEnded$,(0,oe.observableFrom)(["init"])).pipe((0,oe.debounce)(0)).subscribe(this.syncPlayback.bind(this),i)),this.subscription.add(t.isLooped.stateChangeStarted$.subscribe(()=>t.isLooped.setState(!1),i)),this.subscription.add(t.autoVideoTrackSwitching.stateChangeStarted$.subscribe(()=>t.autoVideoTrackSwitching.setState(!1),i))}onLiveStreamStart(e){this.params.output.element$.next(this.video),this.params.output.duration$.next(0),this.params.output.position$.next(0),this.params.output.isLive$.next(!0),this.params.output.canChangePlaybackSpeed$.next(!1),this.params.output.hostname$.next(ye(this.params.source.url)),this.params.output.autoVideoTrackLimitingAvailable$.next(!1),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.currentVideoTrack$.next({id:"webrtc",quality:oe.VideoQuality.INVARIANT}),this.video.srcObject=e,w(this.params.desiredState.playbackState,"playing")}onLiveStreamStop(){this.videoState.startTransitionTo("stopped"),this.syncPlayback(),this.params.output.position$.next(0),this.params.output.duration$.next(0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.params.output.endedEvent$.next()}onLiveStreamError(e){this.onLiveStreamStop(),this.params.output.error$.next({id:"WebRTC stream runtime error",category:oe.ErrorCategory.EXTERNAL_API,message:e.message,thrown:e})}playIfAllowed(){_e(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),w(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:oe.ErrorCategory.DOM,thrown:e}))}prepare(){this.liveStreamClient.connect()}};var xa=class{constructor(e){this.iterator=e[Symbol.iterator](),this.next()}next(){this.current=this.iterator.next()}getValue(){if(this.current.done)throw new Error("Iterable is completed");return this.current.value}isCompleted(){return!!this.current.done}};var S=require("@vkontakte/videoplayer-shared");var Rt=require("@vkontakte/videoplayer-shared"),Xg=r=>new Rt.Observable(e=>{let t=new Rt.Subscription,i=r.desiredPlaybackState$.stateChangeStarted$.pipe((0,Rt.map)(({from:l,to:d})=>`${l}-${d}`)),a=r.desiredPlaybackState$.stateChangeEnded$,s=r.providerChanged$.pipe((0,Rt.map)(({type:l})=>l!==void 0)),n=new Rt.Subject,o=0,u="unknown";return t.add(i.subscribe(l=>{o&&window.clearTimeout(o),u=l,o=window.setTimeout(()=>n.next(l),r.maxTransitionInterval)})),t.add(a.subscribe(()=>{window.clearTimeout(o),u="unknown",o=0})),t.add(s.subscribe(l=>{o&&(window.clearTimeout(o),o=0,l&&(o=window.setTimeout(()=>n.next(u),r.maxTransitionInterval)))})),t.add(n.subscribe(e)),()=>{window.clearTimeout(o),t.unsubscribe()}});var Ze=require("@vkontakte/videoplayer-shared");function Jg(){return new(window.AudioContext||window.webkitAudioContext)}var zi=class r{constructor(e,t,i,a){this.providerOutput=e;this.provider$=t;this.volumeMultiplierError$=i;this.volumeMultiplier=a;this.destroyController=new Pe;this.subscriptions=new Ze.Subscription;this.audioContext=null;this.gainNode=null;this.mediaElementSource=null;this.subscriptions.add(this.provider$.pipe((0,Ze.filter)(s=>!!s.type),(0,Ze.once)()).subscribe(({type:s})=>this.subscribe(s)))}static{this.errorId="VolumeMultiplierManager"}subscribe(e){z.browser.isSafari&&e!=="MPEG"||this.subscriptions.add((0,Ze.combine)({video:this.providerOutput.element$,playbackState:this.providerOutput.playbackState$,volume:this.providerOutput.volume$}).pipe((0,Ze.filter)(({playbackState:t,video:i,volume:{muted:a,volume:s}})=>t==="playing"&&!!i&&!a&&!!s),(0,Ze.once)()).subscribe(({video:t})=>{this.initAudioContextOnce(t).then(i=>{i||this.destroy()}).catch(i=>{this.handleError(i),this.destroy()})}))}static isSupported(){return"AudioContext"in window&&"GainNode"in window&&"MediaElementAudioSourceNode"in window}async initAudioContextOnce(e){let{volumeMultiplier:t}=this,i=Jg();this.audioContext=i;let a=i.createGain();if(this.gainNode=a,a.gain.value=t,a.connect(i.destination),i.state==="suspended"&&(await i.resume(),this.destroyController.signal.aborted))return!1;let s=i.createMediaElementSource(e);return this.mediaElementSource=s,s.connect(a),!0}cleanup(){this.mediaElementSource&&(this.mediaElementSource.disconnect(),this.mediaElementSource=null),this.gainNode&&(this.gainNode.disconnect(),this.gainNode=null),this.audioContext&&(this.audioContext.state!=="closed"&&this.audioContext.close(),this.audioContext=null)}destroy(){this.destroyController.abort(),this.subscriptions.unsubscribe(),this.cleanup()}handleError(e){this.volumeMultiplierError$.next({id:r.errorId,category:Ze.ErrorCategory.VIDEO_PIPELINE,message:e?.message??`${r.errorId} exception`,thrown:e})}};var zA={chunkDuration:5e3,maxParallelRequests:5},Pa=class{constructor(e){this.current$=new S.ValueSubject({type:void 0});this.providerError$=new S.Subject;this.noAvailableProvidersError$=new S.Subject;this.volumeMultiplierError$=new S.Subject;this.providerOutput={position$:new S.ValueSubject(0),duration$:new S.ValueSubject(1/0),volume$:new S.ValueSubject({muted:!1,volume:1}),availableVideoStreams$:new S.ValueSubject([]),currentVideoStream$:new S.ValueSubject(void 0),availableVideoTracks$:new S.ValueSubject([]),currentVideoTrack$:new S.ValueSubject(void 0),availableAudioStreams$:new S.ValueSubject([]),currentAudioStream$:new S.ValueSubject(void 0),availableAudioTracks$:new S.ValueSubject([]),currentVideoSegmentLength$:new S.ValueSubject(0),currentAudioSegmentLength$:new S.ValueSubject(0),isAudioAvailable$:new S.ValueSubject(!0),autoVideoTrackLimitingAvailable$:new S.ValueSubject(!1),autoVideoTrackLimits$:new S.ValueSubject(void 0),currentBuffer$:new S.ValueSubject(void 0),isBuffering$:new S.ValueSubject(!0),error$:new S.Subject,fetcherError$:new S.Subject,fetcherRecoverableError$:new S.Subject,warning$:new S.Subject,willSeekEvent$:new S.Subject,soundProhibitedEvent$:new S.Subject,seekedEvent$:new S.Subject,loopedEvent$:new S.Subject,endedEvent$:new S.Subject,firstBytesEvent$:new S.Subject,loadedMetadataEvent$:new S.Subject,firstFrameEvent$:new S.Subject,canplay$:new S.Subject,isLive$:new S.ValueSubject(void 0),isLiveEnded$:new S.ValueSubject(null),isLowLatency$:new S.ValueSubject(!1),canChangePlaybackSpeed$:new S.ValueSubject(!0),liveTime$:new S.ValueSubject(void 0),liveBufferTime$:new S.ValueSubject(void 0),liveLatency$:new S.ValueSubject(void 0),severeStallOccurred$:new S.Subject,availableTextTracks$:new S.ValueSubject([]),currentTextTrack$:new S.ValueSubject(void 0),hostname$:new S.ValueSubject(void 0),httpConnectionType$:new S.ValueSubject(void 0),httpConnectionReused$:new S.ValueSubject(void 0),inPiP$:new S.ValueSubject(!1),inFullscreen$:new S.ValueSubject(!1),element$:new S.ValueSubject(void 0),elementVisible$:new S.ValueSubject(!0),availableSources$:new S.ValueSubject(void 0),is3DVideo$:new S.ValueSubject(!1),playbackState$:new S.ValueSubject(""),getCurrentTime$:new S.ValueSubject(null)};this.subscription=new S.Subscription;this.volumeMultiplierManager=null;this.params=e,this.log=this.params.dependencies.logger.createComponentLog("ProviderContainer"),this.tracer=e.dependencies.tracer.createComponentTracer(this.constructor.name);let t=Vg([...Og(this.params.tuning),...Bg(this.params.tuning)],this.params.tuning).filter(l=>(0,S.isNonNullable)(e.sources[l])),{forceFormat:i,formatsToAvoid:a}=this.params.tuning,s=[];i?s=[i]:a.length?s=[...t.filter(l=>!(0,zu.default)(a,l)),...t.filter(l=>(0,zu.default)(a,l))]:s=t,this.log({message:`Selected formats: ${s.join(" > ")}`}),this.tracer.log("Selected formats",(0,S.flattenObject)(s)),this.screenFormatsIterator=new xa(s);let n=[...Fu(!0),...Fu(!1)];this.chromecastFormatsIterator=new xa(n.filter(l=>(0,S.isNonNullable)(e.sources[l]))),this.providerOutput.availableSources$.next(e.sources);let{volumeMultiplier:o=1,tuning:{useVolumeMultiplier:u}}=this.params;u&&o!==1&&zi.isSupported()&&(this.volumeMultiplierManager=new zi(this.providerOutput,this.current$,this.volumeMultiplierError$,o))}init(){this.subscription.add(this.initProviderErrorHandling()),this.subscription.add(this.params.dependencies.chromecastInitializer.connection$.subscribe(()=>{this.reinitProvider()}))}destroy(){this.destroyProvider(),this.current$.next({type:void 0}),this.subscription.unsubscribe(),this.volumeMultiplierManager?.destroy(),this.volumeMultiplierManager=null,this.tracer.end()}initProvider(){let e=this.chooseDestination(),t=this.chooseFormat(e);if((0,S.isNullable)(t)){this.handleNoFormatsError(e);return}let i;try{i=this.createProvider(e,t)}catch(a){this.providerError$.next({id:"ProviderNotConstructed",category:S.ErrorCategory.WTF,message:"Failed to create provider",thrown:a})}i?this.current$.next({type:t,provider:i,destination:e}):this.current$.next({type:void 0})}reinitProvider(){this.tracer.log("reinitProvider"),this.destroyProvider(),this.initProvider()}switchToNextProvider(e){this.tracer.log("switchToNextProvider",{destination:e}),this.destroyProvider(),this.failoverIndex=void 0,this.skipFormat(e),this.initProvider()}destroyProvider(){let e=this.current$.getValue().provider;if(!e)return;this.log({message:"destroyProvider"}),this.tracer.log("destroyProvider");let t=this.providerOutput.position$.getValue()*1e3,i=this.params.desiredState.seekState.getState(),a=i.state!=="none";if(this.params.desiredState.seekState.setState({state:"requested",position:a?i.position:t,forcePrecise:a?i.forcePrecise:!1}),e.scene3D){let n=e.scene3D.getCameraRotation();this.params.desiredState.cameraOrientation.setState({x:n.x,y:n.y})}e.destroy();let s=this.providerOutput.isBuffering$;s.getValue()||s.next(!0)}createProvider(e,t){switch(this.log({message:`createProvider: ${e}:${t}`}),this.tracer.log("createProvider",{destination:e,format:t}),e){case"SCREEN":return this.createScreenProvider(t);case"CHROMECAST":return this.createChromecastProvider(t);default:return(0,S.assertNever)(e)}}createScreenProvider(e){let{sources:t,container:i,desiredState:a,panelSize:s}=this.params,n=this.providerOutput,o={container:i,source:null,desiredState:a,output:n,dependencies:this.params.dependencies,tuning:this.params.tuning,panelSize:s};switch(e){case"DASH_SEP":case"DASH_WEBM":case"DASH_WEBM_AV1":case"DASH_ONDEMAND":case"DASH_STREAMS":{let u=this.applyFailoverHost(t[e]),l=this.applyFailoverHost(t.HLS_ONDEMAND||t.HLS);return(0,S.assertNonNullable)(u),new ga({...o,source:u,sourceHls:l})}case"DASH_LIVE_CMAF":{let u=this.applyFailoverHost(t[e]);return(0,S.assertNonNullable)(u),new va({...o,source:u})}case"HLS":case"HLS_ONDEMAND":{let u=this.applyFailoverHost(t[e]);return(0,S.assertNonNullable)(u),z.video.nativeHlsSupported||!this.params.tuning.useHlsJs?new Ta({...o,source:u}):new Sa({...o,source:u})}case"HLS_LIVE":case"HLS_LIVE_CMAF":{let u=this.applyFailoverHost(t[e]);return(0,S.assertNonNullable)(u),new ya({...o,source:u,config:{maxPausedTime:this.params.tuning.live.maxPausedTime},format:e})}case"MPEG":{let u=this.applyFailoverHost(t[e]);return(0,S.assertNonNullable)(u),new Ia({...o,source:u})}case"DASH_LIVE":{let u=this.applyFailoverHost(t[e]);return(0,S.assertNonNullable)(u),new Vf({...o,source:u,config:{...zA,maxPausedTime:this.params.tuning.live.maxPausedTime}})}case"WEB_RTC_LIVE":{let u=this.applyFailoverHost(t[e]);return(0,S.assertNonNullable)(u),new Ea({container:i,source:u,desiredState:a,output:n,dependencies:this.params.dependencies,tuning:this.params.tuning})}case"DASH":case"DASH_LIVE_WEBM":throw new Error(`${e} is no longer supported`);default:return(0,S.assertNever)(e)}}createChromecastProvider(e){let{sources:t,container:i,desiredState:a,meta:s}=this.params,n=this.providerOutput,o=this.params.dependencies.chromecastInitializer.connection$.getValue();return(0,S.assertNonNullable)(o),new Pr({connection:o,meta:s,container:i,source:t,format:e,desiredState:a,output:n,dependencies:this.params.dependencies,tuning:this.params.tuning})}chooseDestination(){return this.params.dependencies.chromecastInitializer.connection$.getValue()?"CHROMECAST":"SCREEN"}chooseFormat(e){switch(e){case"SCREEN":return this.screenFormatsIterator.isCompleted()?void 0:this.screenFormatsIterator.getValue();case"CHROMECAST":return this.chromecastFormatsIterator.isCompleted()?void 0:this.chromecastFormatsIterator.getValue();default:return(0,S.assertNever)(e)}}skipFormat(e){switch(e){case"SCREEN":return this.screenFormatsIterator.next();case"CHROMECAST":return this.chromecastFormatsIterator.next();default:return(0,S.assertNever)(e)}}handleNoFormatsError(e){switch(e){case"SCREEN":this.noAvailableProvidersError$.next(this.params.tuning.forceFormat),this.current$.next({type:void 0});return;case"CHROMECAST":this.params.dependencies.chromecastInitializer.disconnect();return;default:return(0,S.assertNever)(e)}}applyFailoverHost(e){if(this.failoverIndex===void 0)return e;let t=this.params.failoverHosts[this.failoverIndex];if(!t)return e;let i=a=>{let s=new URL(a);return s.host=t,s.toString()};if(e===void 0)return e;if("type"in e){if(e.type==="raw")return e;if(e.type==="url")return{...e,url:i(e.url)}}return(0,ev.default)((0,Zg.default)(e).map(([a,s])=>[a,i(s)]))}initProviderErrorHandling(){let e=new S.Subscription,t=!1,i=0;return e.add((0,S.merge)(this.providerOutput.error$.pipe((0,S.filter)(a=>!this.params.tuning.ignoreAudioRendererError||!a.message||!/AUDIO_RENDERER_ERROR/ig.test(a.message))),Xg({desiredPlaybackState$:this.params.desiredState.playbackState,maxTransitionInterval:this.params.tuning.maxPlaybackTransitionInterval,position$:this.providerOutput.position$,providerChanged$:this.current$}).pipe((0,S.map)(a=>({id:`ProviderHangup:${a}`,category:S.ErrorCategory.WTF,message:`A ${a} transition failed to complete within reasonable time`})))).subscribe(this.providerError$)),e.add(this.providerOutput.fetcherError$.subscribe(this.providerError$)),e.add(this.current$.subscribe(()=>{t=!1;let a=this.params.desiredState.playbackState.transitionEnded$.pipe((0,S.filter)(({to:s})=>s==="playing"),(0,S.once)()).subscribe(()=>t=!0);e.add(a)})),e.add(this.providerError$.subscribe(a=>{let s=this.current$.getValue().destination,n={error:a,currentDestination:s};if(s==="CHROMECAST")this.destroyProvider(),this.params.dependencies.chromecastInitializer.stopMedia().then(()=>this.switchToNextProvider("SCREEN"),()=>this.params.dependencies.chromecastInitializer.disconnect());else{let o=a.category===S.ErrorCategory.NETWORK,u=a.category===S.ErrorCategory.FATAL,l=this.params.failoverHosts.length>0&&(this.failoverIndex===void 0||this.failoverIndex<this.params.failoverHosts.length-1),d=i<this.params.tuning.providerErrorLimit&&!u,p=l&&!u&&(o&&t||!d);n={...n,isNetworkError:o,isFatalError:u,haveFailoverHost:l,tryFailover:p,canReinitProvider:d},d?(i++,this.reinitProvider()):p?(this.failoverIndex=this.failoverIndex===void 0?0:this.failoverIndex+1,this.reinitProvider()):(i=0,this.switchToNextProvider(s??"SCREEN"))}this.tracer.error("providerError",(0,S.flattenObject)(n))})),e}};var O=require("@vkontakte/videoplayer-shared");var KA=5e3,tv="one_video_throughput",iv="one_video_rtt",ka=window.navigator.connection,rv=()=>{let r=ka?.downlink;if((0,O.isNonNullable)(r)&&r!==10)return r*1e3},av=()=>{let r=ka?.rtt;if((0,O.isNonNullable)(r)&&r!==3e3)return r},sv=(r,e,t)=>{let i=t*8,a=i/r;return i/(a+e)},Ku=class r{constructor(e){this.subscription=new O.Subscription;this.concurrentDownloads=new Set;this.tuningConfig=e;let t=r.load(tv)||(e.useBrowserEstimation?rv():void 0)||KA,i=r.load(iv)??(e.useBrowserEstimation?av():void 0)??0;if(this.throughput$=new O.ValueSubject(t),this.rtt$=new O.ValueSubject(i),this.rttAdjustedThroughput$=new O.ValueSubject(sv(t,i,e.rttPenaltyRequestSize)),this.throughput=di.getSmoothedValue(t,-1,e),this.rtt=di.getSmoothedValue(i,1,e),e.useBrowserEstimation){let a=()=>{let n=rv();n&&this.throughput.next(n);let o=av();(0,O.isNonNullable)(o)&&this.rtt.next(o)};ka&&"onchange"in ka&&this.subscription.add((0,O.fromEvent)(ka,"change").subscribe(a)),a()}this.subscription.add(this.throughput.smoothed$.subscribe(a=>{O.safeStorage.set(tv,a.toFixed(0))})),this.subscription.add(this.rtt.smoothed$.subscribe(a=>{O.safeStorage.set(iv,a.toFixed(0))})),this.subscription.add(this.throughput.debounced$.subscribe(this.throughput$)),this.subscription.add(this.rtt.debounced$.subscribe(this.rtt$)),this.subscription.add((0,O.combine)({throughput:this.throughput.smoothed$,rtt:this.rtt.smoothed$}).pipe((0,O.map)(({throughput:a,rtt:s})=>sv(a,s,e.rttPenaltyRequestSize)),(0,O.filter)(a=>{let s=this.rttAdjustedThroughput$.getValue()||0;return Math.abs(a-s)/s>=e.changeThreshold})).subscribe(this.rttAdjustedThroughput$))}destroy(){this.concurrentDownloads.clear(),this.subscription.unsubscribe()}trackXHR(e){let t=0,i=(0,O.now)(),a=new O.Subscription;switch(this.subscription.add(a),this.concurrentDownloads.add(e),e.readyState){case 4:break;case 3:case 2:a.add((0,O.fromEvent)(e,"progress").pipe((0,O.once)()).subscribe(s=>{t=s.loaded,i=(0,O.now)()}));break;case 1:case 0:a.add((0,O.fromEvent)(e,"loadstart").subscribe(()=>{t=0,i=(0,O.now)()}));break}a.add((0,O.fromEvent)(e,"loadend").subscribe(s=>{if(e.status===200){let n=s.loaded,o=(0,O.now)(),u=n-t,l=o-i;this.addRawSpeed(u,l,1)}this.concurrentDownloads.delete(e),a.unsubscribe()}))}trackStream(e,t=!1){let i=e.getReader();if(!i){e.cancel("Could not get reader");return}let a=0,s=(0,O.now)(),n=0,o=(0,O.now)(),u=d=>{this.concurrentDownloads.delete(e),i.releaseLock(),e.cancel(`Throughput Estimator error: ${d}`).catch(()=>{})},l=async({done:d,value:p})=>{if(d)!t&&this.addRawSpeed(a,(0,O.now)()-s,1),this.concurrentDownloads.delete(e);else if(p){if(t){let h=(0,O.now)();if(h-o>this.tuningConfig.lowLatency.continuesByteSequenceInterval||h-s>this.tuningConfig.lowLatency.maxLastEvaluationTimeout){let b=o-s;b&&this.addRawSpeed(n,b,1,t),n=p.byteLength,s=(0,O.now)()}else n+=p.byteLength;o=(0,O.now)()}else a+=p.byteLength,n+=p.byteLength,n>=this.tuningConfig.streamMinSampleSize&&(0,O.now)()-o>=this.tuningConfig.streamMinSampleTime&&(this.addRawSpeed(n,(0,O.now)()-o,this.concurrentDownloads.size),n=0,o=(0,O.now)());await i?.read().then(l,u)}};this.concurrentDownloads.add(e),i?.read().then(l,u)}addRawSpeed(e,t,i=1,a=!1){if(r.sanityCheck(e,t,a)){let s=e*8/t;this.throughput.next(s*i)}}addRawThroughput(e){this.throughput.next(e)}addRawRtt(e){this.rtt.next(e)}static sanityCheck(e,t,i=!1){let a=e*8/t;return!(!a||!isFinite(a)||a>1e6||a<30||i&&e<1e4||!i&&e<10*1024||!i&&t<=20)}static load(e){let t=O.safeStorage.get(e);if((0,O.isNonNullable)(t))return parseInt(t,10)??void 0}},nv=Ku;var hi=require("@vkontakte/videoplayer-shared"),ov={configName:["core"],throughputEstimator:{type:"EmaAndMa",emaAlphaSlow:.2,emaAlphaFast:.7,emaAlpha:.45,basisTrendChangeCount:10,changeThreshold:.05,useBrowserEstimation:!0,rttPenaltyRequestSize:1*1024*1024,streamMinSampleSize:10*1024,streamMinSampleTime:300,deviationDepth:20,deviationFactor:.5,lowLatency:{continuesByteSequenceInterval:50,maxLastEvaluationTimeout:300}},autoTrackSelection:{bitrateFactorAtEmptyBuffer:2.8,bitrateAudioFactorAtEmptyBuffer:10,bitrateFactorAtFullBuffer:2,bitrateAudioFactorAtFullBuffer:7,minVideoAudioRatio:5,minAvailableThroughputAudioRatio:5,usePixelRatio:!0,pixelRatioMultiplier:void 0,pixelRatioLogBase:3,pixelRatioLogCoefficients:[1,0,1],limitByContainer:!0,containerSizeFactor:1.3,lazyQualitySwitch:!0,minBufferToSwitchUp:.4,considerPlaybackRate:!1,trackCooldownIncreaseQuality:15e3,trackCooldownDecreaseQuality:3e3,backgroundVideoQualityLimit:hi.VideoQuality.Q_4320P,activeVideoAreaThreshold:.1,highQualityLimit:hi.VideoQuality.Q_720P,trafficSavingLimit:hi.VideoQuality.Q_480P},droppedFramesChecker:{enabled:!1,percentLimit:.1,checkTime:1e3,countLimit:3,tickCountAfterQualityChange:5,qualityUpWaitingTime:5e3,minQualityBanLimit:hi.VideoQuality.Q_480P},dash:{forwardBufferTarget:6e4,forwardBufferTargetAuto:6e4,forwardBufferTargetManual:5*6e4,forwardBufferTargetPreload:5e3,seekBiasInTheEnd:2e3,maxSegmentDurationLeftToSelectNextSegment:3e3,minSafeBufferThreshold:.5,bufferPruningSafeZone:1e3,segmentRequestSize:1*1024*1024,representationSwitchForwardBufferGap:3e3,crashOnStallTimeout:25e3,crashOnStallTWithoutDataTimeout:5e3,enableSubSegmentBufferFeeding:!0,bufferEmptinessTolerance:100,useFetchPriorityHints:!0,qualityLimitsOnStall:{stallDurationNoDataBeforeQualityDecrease:500,stallDurationToBeCount:100,stallCountBeforeQualityDecrease:3,resetQualityRestrictionTimeout:1e4,ignoreStallsOnSeek:!1},enableBaseUrlSupport:!0,maxSegmentRetryCount:5,sourceOpenTimeout:1e3,rejectOnSourceOpenTimeout:!1},dashCmafLive:{maxActiveLiveOffset:1e4,normalizedTargetMinBufferSize:6e4,normalizedLiveMinBufferSize:5e3,normalizedActualBufferOffset:1e4,offsetCalculationError:3e3,maxLiveDuration:7200,lowLatency:{maxTargetOffset:3e3,maxTargetOffsetDeviation:250,playbackCatchupSpeedup:.05,isActiveOnDefault:!1,bufferEstimator:{emaAlpha:.45,changeThreshold:.05,deviationDepth:20,deviationFactor:.5,extremumInterval:5}}},live:{minBuffer:3e3,minBufferSegments:3,lowLatencyMinBuffer:1e3,lowLatencyMinBufferSegments:1,isLiveCatchUpMode:!1,lowLatencyActiveLiveDelay:3e3,activeLiveDelay:5e3,maxPausedTime:5e3},downloadBackoff:{bufferThreshold:100,start:100,factor:2,max:3*1e3,random:.1},enableWakeLock:!0,enableTelemetryAtStart:!1,forceFormat:void 0,formatsToAvoid:[],disableChromecast:!1,chromecastReceiverId:"07A4434E",useWebmBigRequest:!1,webmCodec:"vp9",androidPreferredFormat:"dash",preferCMAF:!1,preferWebRTC:!1,preferMultiStream:!1,preferHDR:!1,bigRequestMinInitSize:50*1024,bigRequestMinDataSize:1*1024*1024,stripRangeHeader:!0,flushShortLoopedBuffers:!0,insufficientBufferRuleMargin:1e4,seekNearDurationBias:1,dashSeekInSegmentDurationThreshold:3*60*1e3,dashSeekInSegmentAlwaysSeekDelta:1e4,endGapTolerance:300,stallIgnoreThreshold:33,gapWatchdogInterval:50,requestQuick:!1,useHlsJs:!1,useNativeHLSTextTracks:!1,useManagedMediaSource:!0,useNewSwitchTo:!1,useSafariEndlessRequestBugfix:!0,useRefactoredSearchGap:!1,isAudioDisabled:!1,autoplayOnlyInActiveTab:!0,dynamicImportTimeout:5e3,maxPlaybackTransitionInterval:2e4,providerErrorLimit:3,manifestRetryInterval:300,manifestRetryMaxInterval:1e4,manifestRetryMaxCount:10,audioVideoSyncRate:20,webrtc:{connectionRetryMaxNumber:3},spherical:{enabled:!1,fov:{x:135,y:76},rotationSpeed:45,maxYawAngle:175,rotationSpeedCorrection:10,degreeToPixelCorrection:5,speedFadeTime:2e3,speedFadeThreshold:50},useVolumeMultiplier:!1,ignoreAudioRendererError:!1,useEnableSubtitlesParam:!1,useOldMSEDetection:!1,useHlsLiveNewTextManager:!1,exposeInternalsToGlobal:!1,hlsLiveNewTextManagerDownloadThreshold:4e3,disableYandexPiP:!1,asyncResolveClientChecker:!1,autostartOnlyIfVisible:!1},uv=r=>({...(0,hi.fillWithDefault)(r,ov),configName:[...r.configName??[],...ov.configName]});var c=require("@vkontakte/videoplayer-shared");var $t=require("@vkontakte/videoplayer-shared"),Xu=({seekState:r,position$:e})=>(0,$t.merge)(r.stateChangeEnded$.pipe((0,$t.map)(({to:t})=>t.state==="none"?void 0:(t.position??NaN)/1e3),(0,$t.filter)($t.isNonNullable)),e.pipe((0,$t.filter)(()=>r.getState().state==="none")));var lv=require("@vkontakte/videoplayer-shared"),cv=r=>{let e=typeof r.container=="string"?document.getElementById(r.container):r.container;return(0,lv.assertNonNullable)(e,`Wrong container or containerId {${r.container}}`),e};var Zs=require("@vkontakte/videoplayer-shared"),dv=(r,e,t,i)=>{r!==void 0&&e.getState()===void 0&&e.getPrevState()===void 0&&t?.getValue().length===0?t.pipe((0,Zs.filter)(a=>a.length>0),(0,Zs.once)()).subscribe(a=>{a.find(i)&&e.startTransitionTo(r)}):(r===void 0||t?.getValue().find(i))&&e.startTransitionTo(r)};var wa=class{constructor(e={configName:[]},t=c.Tracer.createRootTracer(!1)){this.subscription=new c.Subscription;this.logger=new c.Logger;this.abrLogger=this.logger.createComponentLog("ABR");this.internalsExposure=null;this.isPlaybackStarted=!1;this.hasLiveOffsetByPaused=new c.ValueSubject(!1);this.hasLiveOffsetByPausedTimer=0;this.playerInitRequest=0;this.playerInited=new c.ValueSubject(!1);this.wasSetStartedQuality=!1;this.desiredState={playbackState:new j("stopped"),seekState:new j({state:"none"}),volume:new j({volume:1,muted:!1}),videoTrack:new j(void 0),videoStream:new j(void 0),audioStream:new j(void 0),autoVideoTrackSwitching:new j(!0),autoVideoTrackLimits:new j({}),isLooped:new j(!1),isLowLatency:new j(!1),playbackRate:new j(1),externalTextTracks:new j([]),internalTextTracks:new j([]),currentTextTrack:new j(void 0),textTrackCuesSettings:new j({}),cameraOrientation:new j({x:0,y:0})};this.info={playbackState$:new c.ValueSubject(void 0),position$:new c.ValueSubject(0),duration$:new c.ValueSubject(1/0),muted$:new c.ValueSubject(!1),volume$:new c.ValueSubject(1),availableVideoStreams$:new c.ValueSubject([]),currentVideoStream$:new c.ValueSubject(void 0),availableQualities$:new c.ValueSubject([]),availableQualitiesFps$:new c.ValueSubject({}),currentQuality$:new c.ValueSubject(void 0),isAutoQualityEnabled$:new c.ValueSubject(!0),autoQualityLimitingAvailable$:new c.ValueSubject(!1),autoQualityLimits$:new c.ValueSubject({}),predefinedQualityLimitType$:new c.ValueSubject("unknown"),availableAudioStreams$:new c.ValueSubject([]),currentAudioStream$:new c.ValueSubject(void 0),availableAudioTracks$:new c.ValueSubject([]),isAudioAvailable$:new c.ValueSubject(!0),currentPlaybackRate$:new c.ValueSubject(1),currentBuffer$:new c.ValueSubject({start:0,end:0}),isBuffering$:new c.ValueSubject(!0),isStalled$:new c.ValueSubject(!1),isEnded$:new c.ValueSubject(!1),isLooped$:new c.ValueSubject(!1),isLive$:new c.ValueSubject(void 0),isLiveEnded$:new c.ValueSubject(null),canChangePlaybackSpeed$:new c.ValueSubject(void 0),atLiveEdge$:new c.ValueSubject(void 0),atLiveDurationEdge$:new c.ValueSubject(void 0),liveTime$:new c.ValueSubject(void 0),liveBufferTime$:new c.ValueSubject(void 0),liveLatency$:new c.ValueSubject(void 0),currentFormat$:new c.ValueSubject(void 0),availableTextTracks$:new c.ValueSubject([]),currentTextTrack$:new c.ValueSubject(void 0),throughputEstimation$:new c.ValueSubject(void 0),rttEstimation$:new c.ValueSubject(void 0),videoBitrate$:new c.ValueSubject(void 0),hostname$:new c.ValueSubject(void 0),httpConnectionType$:new c.ValueSubject(void 0),httpConnectionReused$:new c.ValueSubject(void 0),surface$:new c.ValueSubject("none"),chromecastState$:new c.ValueSubject("NOT_AVAILABLE"),chromecastDeviceName$:new c.ValueSubject(void 0),intrinsicVideoSize$:new c.ValueSubject(void 0),availableSources$:new c.ValueSubject(void 0),is3DVideo$:new c.ValueSubject(!1),currentVideoSegmentLength$:new c.ValueSubject(0),currentAudioSegmentLength$:new c.ValueSubject(0)};this.events={inited$:new c.Subject,ready$:new c.Subject,started$:new c.Subject,playing$:new c.Subject,paused$:new c.Subject,stopped$:new c.Subject,willStart$:new c.Subject,willResume$:new c.Subject,willPause$:new c.Subject,willStop$:new c.Subject,willDestruct$:new c.Subject,watchCoverageRecord$:new c.Subject,watchCoverageLive$:new c.Subject,managedError$:new c.Subject,fatalError$:new c.Subject,fetcherRecoverableError$:new c.Subject,ended$:new c.Subject,looped$:new c.Subject,seeked$:new c.Subject,willSeek$:new c.Subject,autoplaySoundProhibited$:new c.Subject,firstBytes$:new c.Subject,loadedMetadata$:new c.Subject,firstFrame$:new c.Subject,canplay$:new c.Subject,log$:new c.Subject,fetcherError$:new c.Subject,severeStallOccured$:new c.Subject};this.experimental={element$:new c.ValueSubject(void 0),tuningConfigName$:new c.ValueSubject([]),enableDebugTelemetry$:new c.ValueSubject(!1),dumpTelemetry:vf,getCurrentTime$:new c.ValueSubject(null)};if(this.initLogs(),this.tuning=uv(e),this.tracer=t,this.experimental.tuningConfigName$.next(this.tuning.configName),this.chromecastInitializer=new Ha({receiverApplicationId:e.chromecastReceiverId,isDisabled:e.disableChromecast,dependencies:{logger:this.logger}}),this.throughputEstimator=new nv(this.tuning.throughputEstimator),e.exposeInternalsToGlobal&&(this.internalsExposure=new c.InternalsExposure("CORE"),this.internalsExposure.expose({player:this})),this.initChromecastSubscription(),this.initDesiredStateSubscriptions(),Proxy&&Reflect)return new Proxy(this,{get:(i,a,s)=>{let n=Reflect.get(i,a,s);return typeof n!="function"?n:(...o)=>{try{return n.apply(i,o)}catch(u){let l=o.map(h=>JSON.stringify(h,(m,b)=>{let v=typeof b;return(0,pv.default)(["number","string","boolean"],v)?b:b===null?null:`<${v}>`})),d=`Player.${String(a)}`,p=`Exception calling ${d} (${l.join(", ")})`;throw this.events.fatalError$.next({id:d,category:c.ErrorCategory.WTF,message:p,thrown:u}),u}}}})}initVideo(e){this.config=e,this.internalsExposure?.expose({config:e,logger:this.logger,tuning:this.tuning});let t=()=>{let{container:s,...n}=e;this.tracer.log("initVideo",(0,c.flattenObject)(n)),this.domContainer=cv(e),this.chromecastInitializer.contentId=e.meta?.videoId,this.providerContainer=new Pa({sources:e.sources,meta:e.meta??{},failoverHosts:e.failoverHosts??[],container:this.domContainer,desiredState:this.desiredState,dependencies:{throughputEstimator:this.throughputEstimator,chromecastInitializer:this.chromecastInitializer,tracer:this.tracer,logger:this.logger,abrLogger:this.abrLogger},tuning:this.tuning,volumeMultiplier:e.volumeMultiplier,panelSize:e.panelSize}),this.initProviderContainerSubscription(this.providerContainer),this.initStartingVideoTrack(this.providerContainer),this.initTracerSubscription(),this.providerContainer.init(),this.setLiveLowLatency(this.tuning.dashCmafLive.lowLatency.isActiveOnDefault),this.setMuted(this.tuning.isAudioDisabled),this.initDebugTelemetry(),this.initWakeLock(),this.playerInited.next(!0)},i=()=>{this.tuning.autostartOnlyIfVisible&&window.requestAnimationFrame?this.playerInitRequest=window.requestAnimationFrame(()=>t()):t()},a=()=>{this.tuning.asyncResolveClientChecker?z.isInited$.pipe((0,c.filter)(s=>!!s),(0,c.once)()).subscribe(()=>{console.log("Core SDK async start"),i()}):i()};return this.isNotActiveTabCase()?(this.tracer.log("request play from hidden tab"),(0,c.fromEvent)(document,"visibilitychange").pipe((0,c.once)()).subscribe(a)):a(),this}destroy(){this.tracer.log("destroy"),window.clearTimeout(this.hasLiveOffsetByPausedTimer),this.playerInitRequest&&window.cancelAnimationFrame(this.playerInitRequest),this.events.willDestruct$.next(),this.stop(),this.providerContainer?.destroy(),this.throughputEstimator.destroy(),this.chromecastInitializer.destroy(),this.subscription.unsubscribe(),this.tracer.end(),this.internalsExposure?.destroy()}prepare(){return this.subscription.add(this.playerInited.pipe((0,c.filter)(e=>!!e),(0,c.once)()).subscribe(()=>{let e=this.desiredState.playbackState;this.tracer.log("prepare",{currentPlayBackState:e.getState()}),e.getState()==="stopped"&&e.startTransitionTo("ready")})),this}play(){return this.subscription.add(this.playerInited.pipe((0,c.filter)(e=>!!e),(0,c.once)()).subscribe(()=>{let e=this.desiredState.playbackState;this.tracer.log("play",{currentPlayBackState:e.getState()}),e.getState()!=="playing"&&e.startTransitionTo("playing")})),this}pause(){return this.subscription.add(this.playerInited.pipe((0,c.filter)(e=>!!e),(0,c.once)()).subscribe(()=>{let e=this.desiredState.playbackState;this.tracer.log("pause",{currentPlayBackState:e.getState()}),e.getState()!=="paused"&&e.startTransitionTo("paused")})),this}stop(){return this.subscription.add(this.playerInited.pipe((0,c.filter)(e=>!!e),(0,c.once)()).subscribe(()=>{let e=this.desiredState.playbackState;this.tracer.log("stop",{currentPlayBackState:e.getState()}),e.getState()!=="stopped"&&e.startTransitionTo("stopped")})),this}seekTime(e,t=!0){return this.subscription.add(this.playerInited.pipe((0,c.filter)(i=>!!i),(0,c.once)()).subscribe(()=>{let i=this.info.duration$.getValue(),a=this.info.isLive$.getValue(),s=e;e>=i&&!a&&(s=i-this.tuning.seekNearDurationBias),this.tracer.log("seekTime",{duration:i,isLive:a,time:e,calculatedTime:s,forcePrecise:t}),Number.isFinite(s)&&(this.events.willSeek$.next({from:this.getExactTime(),to:s}),this.desiredState.seekState.setState({state:"requested",position:s*1e3,forcePrecise:t}))})),this}seekPercent(e){return this.subscription.add(this.playerInited.pipe((0,c.filter)(t=>!!t),(0,c.once)()).subscribe(()=>{let t=this.info.duration$.getValue();this.tracer.log("seekPercent",{percent:e,duration:t}),isFinite(t)&&this.seekTime(Math.abs(t)*e,!1)})),this}setVolume(e,t){return this.subscription.add(this.playerInited.pipe((0,c.filter)(i=>!!i),(0,c.once)()).subscribe(()=>{let i=this.desiredState.volume,s=i.getTransition()?.to.muted??this.info.muted$.getValue(),n=t??(this.tuning.isAudioDisabled||s);this.tracer.log("setVolume",{volume:e,isAudioDisabled:this.tuning.isAudioDisabled,chromecastState:this.chromecastInitializer.castState$.getValue(),muted:n}),this.chromecastInitializer.castState$.getValue()==="CONNECTED"?this.chromecastInitializer.setVolume(e):i.startTransitionTo({volume:e,muted:n})})),this}setMuted(e){return this.subscription.add(this.playerInited.pipe((0,c.filter)(t=>!!t),(0,c.once)()).subscribe(()=>{let t=this.desiredState.volume,i=this.tuning.isAudioDisabled||e,s=t.getTransition()?.to.volume??this.info.volume$.getValue();this.tracer.log("setMuted",{isMuted:e,nextMuted:i,volume:s,isAudioDisabled:this.tuning.isAudioDisabled,chromecastState:this.chromecastInitializer.castState$.getValue()}),this.chromecastInitializer.castState$.getValue()==="CONNECTED"?this.chromecastInitializer.setMuted(i):t.startTransitionTo({volume:s,muted:i})})),this}setVideoStream(e){return this.subscription.add(this.playerInited.pipe((0,c.filter)(t=>!!t),(0,c.once)()).subscribe(()=>{this.desiredState.videoStream.startTransitionTo(e)})),this}setAudioStream(e){return this.subscription.add(this.playerInited.pipe((0,c.filter)(t=>!!t),(0,c.once)()).subscribe(()=>{this.desiredState.audioStream.startTransitionTo(e)})),this}setQuality(e){return this.subscription.add(this.playerInited.pipe((0,c.filter)(t=>!!t),(0,c.once)()).subscribe(()=>{(0,c.assertNonNullable)(this.providerContainer);let t=this.providerContainer.providerOutput.availableVideoTracks$.getValue();this.tracer.log("setQuality",{isDelayed:t.length===0,quality:e}),this.desiredState.videoTrack.getState()===void 0&&this.desiredState.videoTrack.getPrevState()===void 0&&t.length===0?this.wasSetStartedQuality?this.providerContainer.providerOutput.availableVideoTracks$.pipe((0,c.filter)(i=>i.length>0),(0,c.once)()).subscribe(i=>{this.setVideoTrackIdByQuality(i,e)}):this.explicitInitialQuality=e:t.length>0&&this.setVideoTrackIdByQuality(t,e)})),this}setAutoQuality(e){return this.subscription.add(this.playerInited.pipe((0,c.filter)(t=>!!t),(0,c.once)()).subscribe(()=>{this.tracer.log("setAutoQuality",{enable:e}),this.desiredState.autoVideoTrackSwitching.startTransitionTo(e)})),this}setAutoQualityLimits(e){return this.subscription.add(this.playerInited.pipe((0,c.filter)(t=>!!t),(0,c.once)()).subscribe(()=>{this.tracer.log("setAutoQualityLimits",(0,c.flattenObject)(e)),this.desiredState.autoVideoTrackLimits.startTransitionTo(e)})),this}setPredefinedQualityLimits(e){return this.subscription.add(this.playerInited.pipe((0,c.filter)(t=>!!t),(0,c.once)()).subscribe(()=>{if(this.info.predefinedQualityLimitType$.getValue()===e)return this;let{highQualityLimit:t,trafficSavingLimit:i}=this.tuning.autoTrackSelection,a;switch(e){case"high_quality":a={min:t,max:void 0};break;case"traffic_saving":a={max:i,min:void 0};break;default:a={max:void 0,min:void 0}}this.setAutoQualityLimits(a)})),this}setPlaybackRate(e){return this.subscription.add(this.playerInited.pipe((0,c.filter)(t=>!!t),(0,c.once)()).subscribe(()=>{(0,c.assertNonNullable)(this.providerContainer);let t=this.providerContainer?.providerOutput.element$.getValue();this.tracer.log("setPlaybackRate",{playbackRate:e,isVideoElementAvailable:!!t}),t&&(this.desiredState.playbackRate.setState(e),t.playbackRate=e)})),this}setExternalTextTracks(e){return this.subscription.add(this.playerInited.pipe((0,c.filter)(t=>!!t),(0,c.once)()).subscribe(()=>{e.length&&this.tracer.log("setExternalTextTracks",(0,c.flattenObject)(e)),this.desiredState.externalTextTracks.startTransitionTo(e.map(t=>({type:"external",...t})))})),this}selectTextTrack(e){return this.subscription.add(this.playerInited.pipe((0,c.filter)(t=>!!t),(0,c.once)()).subscribe(()=>{dv(e,this.desiredState.currentTextTrack,this.providerContainer?.providerOutput.availableTextTracks$,t=>t.id===e),this.tracer.log("selectTextTrack",{textTrackId:e})})),this}setTextTrackCueSettings(e){return this.subscription.add(this.playerInited.pipe((0,c.filter)(t=>!!t),(0,c.once)()).subscribe(()=>{this.tracer.log("setTextTrackCueSettings",{...e}),this.desiredState.textTrackCuesSettings.startTransitionTo(e)})),this}setLiveLowLatency(e){let t=this.info.isLive$.getValue(),i=this.desiredState.isLowLatency.getState();return!t||i===e?this:(this.tracer.log("live switch to low latency "+e),this.desiredState.isLowLatency.setState(e),this.seekTime(0))}setLooped(e){return this.subscription.add(this.playerInited.pipe((0,c.filter)(t=>!!t),(0,c.once)()).subscribe(()=>{this.tracer.log("setLooped",{isLooped:e}),this.desiredState.isLooped.startTransitionTo(e)})),this}toggleChromecast(){this.tracer.log("toggleChromecast"),this.chromecastInitializer.toggleConnection()}startCameraManualRotation(e,t){return this.subscription.add(this.playerInited.pipe((0,c.filter)(i=>!!i),(0,c.once)()).subscribe(()=>{let i=this.getScene3D();this.tracer.log("startCameraManualRotation",{isScene3DAvailable:!!i,mx:e,my:t}),i&&i.startCameraManualRotation(e,t)})),this}stopCameraManualRotation(e=!1){return this.subscription.add(this.playerInited.pipe((0,c.filter)(t=>!!t),(0,c.once)()).subscribe(()=>{let t=this.getScene3D();this.tracer.log("stopCameraManualRotation",{isScene3DAvailable:!!t,immediate:e}),t&&t.stopCameraManualRotation(e)})),this}moveCameraFocusPX(e,t){return this.subscription.add(this.playerInited.pipe((0,c.filter)(i=>!!i),(0,c.once)()).subscribe(()=>{let i=this.getScene3D();if(this.tracer.log("moveCameraFocusPX",{isScene3DAvailable:!!i,dxpx:e,dypx:t}),i){let a=i.getCameraRotation(),s=i.pixelToDegree({x:e,y:t});this.desiredState.cameraOrientation.setState({x:a.x+s.x,y:a.y+s.y})}})),this}holdCamera(){return this.subscription.add(this.playerInited.pipe((0,c.filter)(e=>e),(0,c.once)()).subscribe(()=>{let e=this.getScene3D();e&&e.holdCamera()})),this}releaseCamera(){return this.subscription.add(this.playerInited.pipe((0,c.filter)(e=>!!e),(0,c.once)()).subscribe(()=>{let e=this.getScene3D();e&&e.releaseCamera()})),this}getExactTime(){if(!this.providerContainer)return 0;let e=this.providerContainer.providerOutput.element$.getValue();if((0,c.isNullable)(e))return this.info.position$.getValue();let t=this.desiredState.seekState.getState(),i=t.state==="none"?void 0:t.position;return(0,c.isNonNullable)(i)?i/1e3:e.currentTime}getAllLogs(){return this.logger.getAllLogs()}getScene3D(){let e=this.providerContainer?.current$.getValue();if(e?.provider?.scene3D)return e.provider.scene3D}setIntrinsicVideoSize(...e){let t={width:e.reduce((i,{width:a})=>i||a||0,0),height:e.reduce((i,{height:a})=>i||a||0,0)};t.width&&t.height&&this.info.intrinsicVideoSize$.next({width:t.width,height:t.height})}initDesiredStateSubscriptions(){this.subscription.add((0,c.merge)(this.desiredState.playbackState.stateChangeStarted$,this.desiredState.playbackState.forceChanged$).pipe((0,c.map)(e=>e.to)).subscribe(this.info.playbackState$)).add(this.desiredState.isLooped.stateChangeEnded$.pipe((0,c.map)(e=>e.to)).subscribe(this.info.isLooped$)).add(this.desiredState.playbackRate.stateChangeEnded$.pipe((0,c.map)(e=>e.to)).subscribe(this.info.currentPlaybackRate$)).add(this.desiredState.autoVideoTrackSwitching.stateChangeEnded$.pipe((0,c.map)(e=>e.to)).subscribe(this.info.isAutoQualityEnabled$)).add(this.desiredState.autoVideoTrackLimits.stateChangeEnded$.pipe((0,c.map)(e=>e.to)).subscribe(e=>{this.info.autoQualityLimits$.next(e);let{highQualityLimit:t,trafficSavingLimit:i}=this.tuning.autoTrackSelection;this.info.predefinedQualityLimitType$.next(au({limits:e,highQualityLimit:t,trafficSavingLimit:i}))})),this.subscription.add(this.desiredState.playbackState.stateChangeStarted$.pipe((0,c.filter)(({from:e})=>e==="stopped"),(0,c.once)()).subscribe(()=>{this.initedAt=(0,c.now)(),this.events.inited$.next()})).add(this.desiredState.playbackState.stateChangeEnded$.subscribe(e=>{switch(e.to){case"ready":this.events.ready$.next();break;case"playing":this.isPlaybackStarted||this.events.started$.next(),this.isPlaybackStarted=!0,this.events.playing$.next();break;case"paused":this.events.paused$.next();break;case"stopped":this.events.stopped$.next()}})).add(this.desiredState.playbackState.stateChangeStarted$.subscribe(e=>{switch(e.to){case"paused":this.events.willPause$.next();break;case"playing":this.isPlaybackStarted?this.events.willResume$.next():this.events.willStart$.next();break;case"stopped":this.events.willStop$.next();break;default:}}))}initProviderContainerSubscription(e){this.subscription.add(e.providerOutput.willSeekEvent$.subscribe(()=>{let n=this.desiredState.seekState.getState();this.tracer.log("willSeekEvent",(0,c.flattenObject)(n)),n.state==="requested"?this.desiredState.seekState.setState({...n,state:"applying"}):this.events.managedError$.next({id:`WillSeekIn${n.state}`,category:c.ErrorCategory.WTF,message:"Received unexpeceted willSeek$"})})).add(e.providerOutput.soundProhibitedEvent$.pipe((0,c.once)()).subscribe(this.events.autoplaySoundProhibited$)).add(e.providerOutput.severeStallOccurred$.subscribe(this.events.severeStallOccured$)).add(e.providerOutput.seekedEvent$.subscribe(()=>{let n=this.desiredState.seekState.getState();this.tracer.log("seekedEvent",(0,c.flattenObject)(n)),n.state==="applying"&&(this.desiredState.seekState.setState({state:"none"}),this.events.seeked$.next())})).add(e.current$.pipe((0,c.map)(n=>n.type)).subscribe(this.info.currentFormat$)).add(e.current$.pipe((0,c.map)(n=>n.destination),(0,c.filterChanged)()).subscribe(()=>this.isPlaybackStarted=!1)).add(e.providerOutput.availableVideoStreams$.subscribe(this.info.availableVideoStreams$)).add((0,c.combine)({availableVideoTracks:e.providerOutput.availableVideoTracks$,currentVideoStream:e.providerOutput.currentVideoStream$}).pipe((0,c.map)(({availableVideoTracks:n,currentVideoStream:o})=>n.filter(u=>o?o.id===u.streamId:!0).map(({quality:u})=>u).sort((u,l)=>(0,c.isInvariantQuality)(u)?1:(0,c.isInvariantQuality)(l)?-1:(0,c.isHigher)(l,u)?1:-1))).subscribe(this.info.availableQualities$)).add(e.providerOutput.availableVideoTracks$.subscribe(n=>{let o={};for(let u of n)u.fps&&(o[u.quality]=u.fps);this.info.availableQualitiesFps$.next(o)})).add(e.providerOutput.availableAudioStreams$.subscribe(this.info.availableAudioStreams$)).add(e.providerOutput.currentVideoStream$.subscribe(this.info.currentVideoStream$)).add(e.providerOutput.currentAudioStream$.subscribe(this.info.currentAudioStream$)).add(e.providerOutput.availableAudioTracks$.subscribe(this.info.availableAudioTracks$)).add(e.providerOutput.isAudioAvailable$.pipe((0,c.filterChanged)()).subscribe(this.info.isAudioAvailable$)).add(e.providerOutput.currentVideoTrack$.pipe((0,c.filter)(n=>(0,c.isNonNullable)(n))).subscribe(n=>{this.info.currentQuality$.next(n?.quality),this.info.videoBitrate$.next(n?.bitrate)})).add(e.providerOutput.currentVideoSegmentLength$.pipe((0,c.filterChanged)((n,o)=>Math.round(n)===Math.round(o))).subscribe(this.info.currentVideoSegmentLength$)).add(e.providerOutput.currentAudioSegmentLength$.pipe((0,c.filterChanged)((n,o)=>Math.round(n)===Math.round(o))).subscribe(this.info.currentAudioSegmentLength$)).add(e.providerOutput.hostname$.pipe((0,c.filterChanged)()).subscribe(this.info.hostname$)).add(e.providerOutput.httpConnectionType$.pipe((0,c.filterChanged)()).subscribe(this.info.httpConnectionType$)).add(e.providerOutput.httpConnectionReused$.pipe((0,c.filterChanged)()).subscribe(this.info.httpConnectionReused$)).add(e.providerOutput.currentTextTrack$.subscribe(this.info.currentTextTrack$)).add(e.providerOutput.availableTextTracks$.subscribe(this.info.availableTextTracks$)).add(e.providerOutput.autoVideoTrackLimitingAvailable$.subscribe(this.info.autoQualityLimitingAvailable$)).add(e.providerOutput.autoVideoTrackLimits$.subscribe(n=>{this.desiredState.autoVideoTrackLimits.setState(n??{})})).add(e.providerOutput.currentBuffer$.pipe((0,c.map)(n=>n?{start:n.from,end:n.to}:{start:0,end:0})).subscribe(this.info.currentBuffer$)).add(e.providerOutput.duration$.subscribe(this.info.duration$)).add(e.providerOutput.isBuffering$.subscribe(this.info.isBuffering$)).add(e.providerOutput.isLive$.subscribe(this.info.isLive$)).add(e.providerOutput.isLiveEnded$.pipe((0,c.tap)(n=>n&&this.stop())).subscribe(this.info.isLiveEnded$)).add(e.providerOutput.canChangePlaybackSpeed$.subscribe(this.info.canChangePlaybackSpeed$)).add(e.providerOutput.liveTime$.subscribe(this.info.liveTime$)).add(e.providerOutput.liveBufferTime$.subscribe(this.info.liveBufferTime$)).add(e.providerOutput.liveLatency$.subscribe(this.info.liveLatency$)).add((0,c.combine)({hasLiveOffsetByPaused:(0,c.merge)(this.desiredState.playbackState.stateChangeStarted$,this.desiredState.playbackState.forceChanged$).pipe((0,c.map)(n=>n.to),(0,c.filterChanged)(),(0,c.map)(n=>n==="paused")),isLowLatency:e.providerOutput.isLowLatency$}).subscribe(({hasLiveOffsetByPaused:n,isLowLatency:o})=>{if(window.clearTimeout(this.hasLiveOffsetByPausedTimer),n){this.hasLiveOffsetByPausedTimer=window.setTimeout(()=>{this.hasLiveOffsetByPaused.next(!0)},this.getActiveLiveDelay(o));return}this.hasLiveOffsetByPaused.next(!1)})).add((0,c.combine)({atLiveEdge:(0,c.combine)({isLive:e.providerOutput.isLive$,isLowLatency:e.providerOutput.isLowLatency$,position:Xu({seekState:this.desiredState.seekState,position$:e.providerOutput.position$})}).pipe((0,c.map)(({isLive:n,position:o,isLowLatency:u})=>{let l=this.getActiveLiveDelay(u);return n&&Math.abs(o)<l/1e3}),(0,c.filterChanged)(),(0,c.tap)(n=>n&&this.setPlaybackRate(1))),hasPausedTimeoutCase:this.hasLiveOffsetByPaused}).pipe((0,c.map)(({atLiveEdge:n,hasPausedTimeoutCase:o})=>n&&!o)).subscribe(this.info.atLiveEdge$)).add((0,c.combine)({isLive:e.providerOutput.isLive$,position:e.providerOutput.position$,duration:e.providerOutput.duration$}).pipe((0,c.map)(({isLive:n,position:o,duration:u})=>n&&(Math.abs(u)-Math.abs(o))*1e3<this.tuning.live.activeLiveDelay),(0,c.filterChanged)(),(0,c.tap)(n=>n&&this.setPlaybackRate(1))).subscribe(this.info.atLiveDurationEdge$)).add(e.providerOutput.volume$.pipe((0,c.map)(n=>n.muted),(0,c.filterChanged)()).subscribe(this.info.muted$)).add(e.providerOutput.volume$.pipe((0,c.map)(n=>n.volume),(0,c.filterChanged)()).subscribe(this.info.volume$)).add(Xu({seekState:this.desiredState.seekState,position$:e.providerOutput.position$}).subscribe(this.info.position$)).add((0,c.merge)(e.providerOutput.endedEvent$.pipe((0,c.mapTo)(!0)),e.providerOutput.seekedEvent$.pipe((0,c.mapTo)(!1))).pipe((0,c.filterChanged)()).subscribe(this.info.isEnded$)).add(e.providerOutput.endedEvent$.subscribe(this.events.ended$)).add(e.providerOutput.loopedEvent$.subscribe(this.events.looped$)).add(e.providerError$.subscribe(this.events.managedError$)).add(e.providerOutput.fetcherRecoverableError$.subscribe(this.events.fetcherRecoverableError$)).add(e.providerOutput.fetcherError$.subscribe(this.events.fatalError$)).add(e.volumeMultiplierError$.subscribe(this.events.managedError$)).add(e.noAvailableProvidersError$.pipe((0,c.map)(n=>({id:n?`No${n}`:"NoProviders",category:c.ErrorCategory.VIDEO_PIPELINE,message:n?`${n} was forced but failed or not available`:"No suitable providers or all providers failed"}))).subscribe(this.events.fatalError$)).add(e.providerOutput.element$.subscribe(this.experimental.element$)).add(e.providerOutput.getCurrentTime$.subscribe(this.experimental.getCurrentTime$)).add(e.providerOutput.firstBytesEvent$.pipe((0,c.once)(),(0,c.map)(n=>n??(0,c.now)()-this.initedAt)).subscribe(this.events.firstBytes$)).add(e.providerOutput.loadedMetadataEvent$.subscribe(this.events.loadedMetadata$)).add(e.providerOutput.firstFrameEvent$.pipe((0,c.once)(),(0,c.map)(()=>(0,c.now)()-this.initedAt)).subscribe(this.events.firstFrame$)).add(e.providerOutput.canplay$.pipe((0,c.once)(),(0,c.map)(()=>(0,c.now)()-this.initedAt)).subscribe(this.events.canplay$)).add(this.throughputEstimator.throughput$.subscribe(this.info.throughputEstimation$)).add(this.throughputEstimator.rtt$.subscribe(this.info.rttEstimation$)).add(e.providerOutput.availableSources$.subscribe(this.info.availableSources$));let t=new c.ValueSubject(!1);this.subscription.add(e.providerOutput.seekedEvent$.subscribe(()=>t.next(!1))).add(e.providerOutput.willSeekEvent$.subscribe(()=>t.next(!0)));let i=new c.ValueSubject(!0);this.subscription.add(e.current$.subscribe(()=>i.next(!0))).add(this.desiredState.playbackState.stateChangeEnded$.pipe((0,c.filter)(({to:n})=>n==="playing"),(0,c.once)()).subscribe(()=>i.next(!1)));let a=0,s=(0,c.merge)(e.providerOutput.isBuffering$,t,i).pipe((0,c.map)(()=>{let n=e.providerOutput.isBuffering$.getValue(),o=t.getValue()||i.getValue();return n&&!o}),(0,c.filterChanged)());this.subscription.add(s.subscribe(n=>{n?a=window.setTimeout(()=>this.info.isStalled$.next(!0),this.tuning.stallIgnoreThreshold):(window.clearTimeout(a),this.info.isStalled$.next(!1))})),this.subscription.add((0,c.merge)(e.providerOutput.canplay$,e.providerOutput.firstFrameEvent$,e.providerOutput.firstBytesEvent$).subscribe(()=>{let n=e.providerOutput.element$.getValue();this.setIntrinsicVideoSize({width:n?.videoWidth,height:n?.videoHeight})})).add(e.providerOutput.currentVideoTrack$.subscribe(n=>{let o=e.providerOutput.element$.getValue();this.setIntrinsicVideoSize({width:n?.size?.width,height:n?.size?.height},{width:o?.videoWidth,height:o?.videoHeight})})).add(e.providerOutput.is3DVideo$.subscribe(this.info.is3DVideo$)),this.subscription.add((0,c.merge)(e.providerOutput.inPiP$,e.providerOutput.inFullscreen$,e.providerOutput.element$,e.providerOutput.elementVisible$,this.chromecastInitializer.castState$).subscribe(()=>{let n=e.providerOutput.inPiP$.getValue(),o=e.providerOutput.inFullscreen$.getValue(),u=e.providerOutput.element$.getValue(),l=e.providerOutput.elementVisible$.getValue(),d=this.chromecastInitializer.castState$.getValue(),p;d==="CONNECTED"?p="second_screen":u?l?n?p="pip":o?p="fullscreen":p="inline":p="invisible":p="none",this.info.surface$.getValue()!==p&&this.info.surface$.next(p)}))}initChromecastSubscription(){this.subscription.add(this.chromecastInitializer.castState$.subscribe(this.info.chromecastState$)),this.subscription.add(this.chromecastInitializer.connection$.pipe((0,c.map)(e=>e?.castDevice.friendlyName)).subscribe(this.info.chromecastDeviceName$)),this.subscription.add(this.chromecastInitializer.errorEvent$.subscribe(this.events.managedError$))}initStartingVideoTrack(e){let t=new c.Subscription;this.subscription.add(t),this.subscription.add(e.current$.pipe((0,c.filterChanged)((i,a)=>i.provider===a.provider)).subscribe(()=>{t.unsubscribe(),t.add(e.providerOutput.availableVideoTracks$.pipe((0,c.filter)(i=>i.length>0),(0,c.once)()).subscribe(i=>{this.setStartingVideoTrack(i)}))}))}setStartingVideoTrack(e){let t;this.wasSetStartedQuality=!0;let i=this.explicitInitialQuality??this.info.currentQuality$.getValue();i&&(t=e.find(({quality:a})=>a===i),t||this.setAutoQuality(!0)),t||(t=jt(e,{container:this.domContainer.getBoundingClientRect(),panelSize:this.config.panelSize,estimatedThroughput:this.throughputEstimator.throughput$.getValue(),tuning:this.tuning.autoTrackSelection,limits:this.desiredState.autoVideoTrackLimits.getState(),playbackRate:this.info.currentPlaybackRate$.getValue(),forwardBufferHealth:0,abrLogger:this.abrLogger})),this.desiredState.videoTrack.startTransitionTo(t),this.info.currentQuality$.next(t.quality),this.info.videoBitrate$.next(t.bitrate)}initLogs(){this.subscription.add((0,c.merge)(this.desiredState.videoTrack.stateChangeStarted$.pipe((0,c.map)(e=>({transition:e,entity:"quality",type:"start"}))),this.desiredState.videoTrack.stateChangeEnded$.pipe((0,c.map)(e=>({transition:e,entity:"quality",type:"end"}))),this.desiredState.autoVideoTrackSwitching.stateChangeStarted$.pipe((0,c.map)(e=>({transition:e,entity:"autoQualityEnabled",type:"start"}))),this.desiredState.autoVideoTrackSwitching.stateChangeEnded$.pipe((0,c.map)(e=>({transition:e,entity:"autoQualityEnabled",type:"end"}))),this.desiredState.seekState.stateChangeStarted$.pipe((0,c.map)(e=>({transition:e,entity:"seekState",type:"start"}))),this.desiredState.seekState.stateChangeEnded$.pipe((0,c.map)(e=>({transition:e,entity:"seekState",type:"end"}))),this.desiredState.playbackState.stateChangeStarted$.pipe((0,c.map)(e=>({transition:e,entity:"playbackState",type:"start"}))),this.desiredState.playbackState.stateChangeEnded$.pipe((0,c.map)(e=>({transition:e,entity:"playbackState",type:"end"})))).pipe((0,c.map)(e=>({component:"desiredState",message:`[${e.entity} change] ${e.type}: ${JSON.stringify(e.transition)}`}))).subscribe(this.logger.log)),this.subscription.add(this.logger.log$.subscribe(this.events.log$))}initDebugTelemetry(){let e=this.providerContainer?.providerOutput;(0,c.assertNonNullable)(this.providerContainer),(0,c.assertNonNullable)(e),gf(),this.experimental.enableDebugTelemetry$.next(this.tuning.enableTelemetryAtStart),[this.experimental.enableDebugTelemetry$.subscribe(t=>bf(t)),this.providerContainer.current$.subscribe(({type:t})=>kr("provider",t)),e.duration$.subscribe(t=>kr("duration",t)),e.availableVideoTracks$.pipe((0,c.filter)(t=>!!t.length),(0,c.once)()).subscribe(t=>kr("tracks",t)),this.events.fatalError$.subscribe(new Ae("fatalError")),this.events.managedError$.subscribe(new Ae("managedError")),e.position$.subscribe(new Ae("position")),e.currentVideoTrack$.pipe((0,c.map)(t=>t?.quality)).subscribe(new Ae("quality")),this.info.currentBuffer$.subscribe(new Ae("buffer")),e.isBuffering$.subscribe(new Ae("isBuffering"))].forEach(t=>this.subscription.add(t)),kr("codecs",z.video.supportedCodecs)}initTracerSubscription(){let e=(0,c.getTraceSubscriptionMethod)(this.tracer.log.bind(this.tracer)),t=(0,c.getTraceSubscriptionMethod)(this.tracer.error.bind(this.tracer));this.subscription.add(this.info.playbackState$.subscribe(e("playbackState"))).add(this.info.isLooped$.subscribe(e("isLooped"))).add(this.info.currentPlaybackRate$.pipe((0,c.filterChanged)()).subscribe(e("currentPlaybackRate"))).add(this.info.isAutoQualityEnabled$.subscribe(e("isAutoQualityEnabled"))).add(this.info.autoQualityLimits$.subscribe(e("autoQualityLimits"))).add(this.info.currentFormat$.subscribe(e("currentFormat"))).add(this.info.availableQualities$.subscribe(e("availableQualities"))).add(this.info.availableQualitiesFps$.subscribe(e("availableQualitiesFps"))).add(this.info.availableAudioTracks$.subscribe(e("availableAudioTracks"))).add(this.info.isAudioAvailable$.subscribe(e("isAudioAvailable"))).add((0,c.combine)({currentQuality:this.info.currentQuality$,videoBitrate:this.info.videoBitrate$}).pipe((0,c.filter)(({currentQuality:i,videoBitrate:a})=>!!i&&!!a),(0,c.filterChanged)((i,a)=>i.currentQuality===a.currentQuality)).subscribe(e("currentVideoTrack"))).add(this.info.currentVideoSegmentLength$.pipe((0,c.filter)(i=>i>0),(0,c.filterChanged)()).subscribe(e("currentVideoSegmentLength"))).add(this.info.currentAudioSegmentLength$.pipe((0,c.filter)(i=>i>0),(0,c.filterChanged)()).subscribe(e("currentAudioSegmentLength"))).add(this.info.hostname$.subscribe(e("hostname"))).add(this.info.currentTextTrack$.subscribe(e("currentTextTrack"))).add(this.info.availableTextTracks$.subscribe(e("availableTextTracks"))).add(this.info.autoQualityLimitingAvailable$.subscribe(e("autoQualityLimitingAvailable"))).add((0,c.combine)({currentBuffer:this.info.currentBuffer$.pipe((0,c.filter)(i=>i.end>0),(0,c.filterChanged)((i,a)=>i.end===a.end&&i.start===a.start)),position:this.info.position$.pipe((0,c.filterChanged)())}).pipe((0,c.throttle)(1e3)).subscribe(e("currentBufferAndPosition"))).add(this.info.duration$.pipe((0,c.filterChanged)()).subscribe(e("duration"))).add(this.info.isBuffering$.subscribe(e("isBuffering"))).add(this.info.isLive$.pipe((0,c.filterChanged)()).subscribe(e("isLive"))).add(this.info.canChangePlaybackSpeed$.pipe((0,c.filterChanged)()).subscribe(e("canChangePlaybackSpeed"))).add((0,c.combine)({liveTime:this.info.liveTime$,liveBufferTime:this.info.liveBufferTime$,position:this.info.position$}).pipe((0,c.filter)(({liveTime:i,liveBufferTime:a})=>!!i&&!!a),(0,c.throttle)(1e3)).subscribe(e("liveBufferAndPosition"))).add(this.info.atLiveEdge$.pipe((0,c.filterChanged)(),(0,c.filter)(i=>i===!0)).subscribe(e("atLiveEdge"))).add(this.info.atLiveDurationEdge$.pipe((0,c.filterChanged)(),(0,c.filter)(i=>i===!0)).subscribe(e("atLiveDurationEdge"))).add(this.info.muted$.pipe((0,c.filterChanged)()).subscribe(e("muted"))).add(this.info.volume$.pipe((0,c.filterChanged)()).subscribe(e("volume"))).add(this.info.isEnded$.pipe((0,c.filterChanged)(),(0,c.filter)(i=>i===!0)).subscribe(e("isEnded"))).add(this.info.availableSources$.subscribe(e("availableSources"))).add((0,c.combine)({throughputEstimation:this.info.throughputEstimation$,rtt:this.info.rttEstimation$}).pipe((0,c.filter)(({throughputEstimation:i,rtt:a})=>!!i&&!!a),(0,c.throttle)(3e3)).subscribe(e("throughputEstimation"))).add(this.info.isStalled$.subscribe(e("isStalled"))).add(this.info.is3DVideo$.pipe((0,c.filterChanged)(),(0,c.filter)(i=>i===!0)).subscribe(e("is3DVideo"))).add(this.info.surface$.subscribe(e("surface"))).add(this.events.ended$.subscribe(e("ended"))).add(this.events.looped$.subscribe(e("looped"))).add(this.events.managedError$.subscribe(t("managedError"))).add(this.events.fatalError$.subscribe(t("fatalError"))).add(this.events.firstBytes$.subscribe(e("firstBytes"))).add(this.events.firstFrame$.subscribe(e("firstFrame"))).add(this.events.canplay$.subscribe(e("canplay")))}initWakeLock(){if(!window.navigator.wakeLock||!this.tuning.enableWakeLock)return;let e,t=()=>{e?.release(),e=void 0},i=async()=>{t(),e=await window.navigator.wakeLock.request("screen").catch(a=>{a instanceof DOMException&&a.name==="NotAllowedError"||this.events.managedError$.next({id:"WakeLock",category:c.ErrorCategory.DOM,message:String(a)})})};this.subscription.add((0,c.merge)((0,c.fromEvent)(document,"visibilitychange"),(0,c.fromEvent)(document,"fullscreenchange"),this.desiredState.playbackState.stateChangeEnded$).subscribe(()=>{let a=document.visibilityState==="visible",s=this.desiredState.playbackState.getState()==="playing",n=!!e&&!e?.released;a&&s?n||i():t()})).add(this.events.willDestruct$.subscribe(t))}setVideoTrackIdByQuality(e,t){let i=e.find(a=>a.quality===t);this.tracer.log("setVideoTrackIdByQuality",(0,c.flattenObject)({quality:t,availableTracks:(0,c.flattenObject)(e),track:(0,c.flattenObject)(i),isAutoQuality:!i})),i?this.desiredState.videoTrack.startTransitionTo(i):this.setAutoQuality(!0)}getActiveLiveDelay(e=!1){return e?this.tuning.live.lowLatencyActiveLiveDelay:this.tuning.live.activeLiveDelay}isNotActiveTabCase(){return document.hidden&&this.tuning.autoplayOnlyInActiveTab&&!Mr()}};var yt=require("@vkontakte/videoplayer-shared"),XA=`@vkontakte/videoplayer-core@${rn}`;
|
|
178
|
+
`;var Nr=class{constructor(e,t,i){this.videoInitialized=!1;this.active=!1;this.container=e,this.sourceVideoElement=t,this.params=i,this.canvas=this.createCanvas();let r=this.canvas.getContext("webgl");if(!r)throw new Error("Could not initialize WebGL context");this.gl=r,this.container.appendChild(this.canvas),this.camera=new go(this.params.fov,this.params.orientation),this.cameraRotationManager=new So(this.camera,{rotationSpeed:this.params.rotationSpeed,maxYawAngle:this.params.maxYawAngle,rotationSpeedCorrection:this.params.rotationSpeedCorrection,degreeToPixelCorrection:this.params.degreeToPixelCorrection,speedFadeTime:this.params.speedFadeTime,speedFadeThreshold:this.params.speedFadeThreshold}),this.updateFrameSize(),this.vertexBuffer=this.createVertexBuffer(),this.textureMappingBuffer=this.createTextureMappingBuffer(),this.updateTextureMappingBuffer(),this.program=this.createProgram(),this.videoTexture=this.createTexture(),this.gl.useProgram(this.program),this.videoElementDataLoadedFn=this.onDataLoadedHandler.bind(this),this.renderFn=this.render.bind(this)}play(){this.active||(this.videoInitialized?this.doPlay():this.sourceVideoElement.readyState>=2?(this.videoInitialized=!0,this.doPlay()):this.sourceVideoElement.addEventListener("loadeddata",this.videoElementDataLoadedFn))}stop(){this.active=!1}startCameraManualRotation(e,t){this.cameraRotationManager.setRotationSpeed(e*this.params.rotationSpeed,t*this.params.rotationSpeed,0),this.cameraRotationManager.startRotation()}stopCameraManualRotation(e=!1){this.cameraRotationManager.stopRotation(e)}turnCamera(e,t){this.cameraRotationManager.turnCamera(e,t)}pointCameraTo(e,t){this.cameraRotationManager.pointCameraTo(e,t)}pixelToDegree(e){return{x:this.params.degreeToPixelCorrection*this.params.fov.x*-e.x/this.viewportWidth,y:this.params.degreeToPixelCorrection*this.params.fov.y*e.y/this.viewportHeight}}getCameraRotation(){return this.camera.orientation}holdCamera(){this.cameraRotationManager.stopRotation(!0)}releaseCamera(){this.cameraRotationManager.onCameraRelease()}destroy(){this.sourceVideoElement.removeEventListener("loadeddata",this.videoElementDataLoadedFn),this.stop(),this.canvas.remove()}setViewportSize(e,t){this.viewportWidth=e,this.viewportHeight=t,this.canvas.width=this.viewportWidth,this.canvas.height=this.viewportHeight,this.gl.viewport(0,0,this.canvas.width,this.canvas.height)}onDataLoadedHandler(){this.videoInitialized=!0,this.doPlay()}doPlay(){this.updateFrameSize(),this.vertexBuffer=this.createVertexBuffer(),this.active=!0,this.sourceVideoElement.removeEventListener("loadeddata",this.videoElementDataLoadedFn),requestAnimationFrame(this.renderFn)}render(e){this.cameraRotationManager.tick(e),this.updateTexture(),this.updateTextureMappingBuffer();let t=this.gl.getAttribLocation(this.program,"a_vertex"),i=this.gl.getAttribLocation(this.program,"a_texel"),r=this.gl.getUniformLocation(this.program,"u_texture"),a=this.gl.getUniformLocation(this.program,"u_focus");this.gl.enableVertexAttribArray(t),this.gl.enableVertexAttribArray(i),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,this.vertexBuffer),this.gl.vertexAttribPointer(t,2,this.gl.FLOAT,!1,0,0),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,this.textureMappingBuffer),this.gl.vertexAttribPointer(i,2,this.gl.FLOAT,!1,0,0),this.gl.activeTexture(this.gl.TEXTURE0),this.gl.bindTexture(this.gl.TEXTURE_2D,this.videoTexture),this.gl.uniform1i(r,0),this.gl.uniform2f(a,-this.camera.orientation.x,-this.camera.orientation.y),this.gl.drawArrays(this.gl.TRIANGLE_FAN,0,4),this.gl.bindTexture(this.gl.TEXTURE_2D,null),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,null),this.gl.disableVertexAttribArray(t),this.gl.disableVertexAttribArray(i),this.active&&requestAnimationFrame(this.renderFn)}createShader(e,t){let i=this.gl.createShader(t);if(!i)throw this.destroy(),new Error(`Could not create shader (${t})`);if(this.gl.shaderSource(i,e),this.gl.compileShader(i),!this.gl.getShaderParameter(i,this.gl.COMPILE_STATUS))throw this.destroy(),new Error("An error occurred while compiling the shader: "+this.gl.getShaderInfoLog(i));return i}createProgram(){let e=this.gl.createProgram();if(!e)throw this.destroy(),new Error("Could not create shader program");let t=this.createShader(vv,this.gl.VERTEX_SHADER),i=this.createShader(yv,this.gl.FRAGMENT_SHADER);if(this.gl.attachShader(e,t),this.gl.attachShader(e,i),this.gl.linkProgram(e),!this.gl.getProgramParameter(e,this.gl.LINK_STATUS))throw this.destroy(),new Error("Could not link shader program.");return e}createTexture(){let e=this.gl.createTexture();if(!e)throw this.destroy(),new Error("Could not create texture");return this.gl.bindTexture(this.gl.TEXTURE_2D,e),this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_MAG_FILTER,this.gl.LINEAR),this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_MIN_FILTER,this.gl.LINEAR),this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_WRAP_S,this.gl.CLAMP_TO_EDGE),this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_WRAP_T,this.gl.CLAMP_TO_EDGE),this.gl.bindTexture(this.gl.TEXTURE_2D,null),e}updateTexture(){this.gl.bindTexture(this.gl.TEXTURE_2D,this.videoTexture),this.gl.pixelStorei(this.gl.UNPACK_FLIP_Y_WEBGL,!0),this.gl.texImage2D(this.gl.TEXTURE_2D,0,this.gl.RGBA,this.gl.RGBA,this.gl.UNSIGNED_BYTE,this.sourceVideoElement),this.gl.bindTexture(this.gl.TEXTURE_2D,null)}createVertexBuffer(){let e=this.gl.createBuffer();if(!e)throw this.destroy(),new Error("Could not create vertex buffer");let t=1,i=1,r=this.frameHeight/(this.frameWidth/this.viewportWidth);return r>this.viewportHeight?t=this.viewportHeight/r:i=r/this.viewportHeight,this.gl.bindBuffer(this.gl.ARRAY_BUFFER,e),this.gl.bufferData(this.gl.ARRAY_BUFFER,new Float32Array([-t,-i,t,-i,t,i,-t,i]),this.gl.STATIC_DRAW),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,null),e}createTextureMappingBuffer(){let e=this.gl.createBuffer();if(!e)throw this.destroy(),new Error("Could not create texture mapping buffer");return e}calculateTexturePosition(){let e=.5-this.camera.orientation.x/360,t=.5-this.camera.orientation.y/180,i=this.camera.fov.x/360/2,r=this.camera.fov.y/180/2,a=e-i,n=t-r,o=e+i,u=t-r,l=e+i,c=t+r,p=e-i,d=t+r;return[a,n,o,u,l,c,p,d]}updateTextureMappingBuffer(){this.gl.bindBuffer(this.gl.ARRAY_BUFFER,this.textureMappingBuffer),this.gl.bufferData(this.gl.ARRAY_BUFFER,new Float32Array([...this.calculateTexturePosition()]),this.gl.STATIC_DRAW),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,null)}updateFrameSize(){this.frameWidth=this.sourceVideoElement.videoWidth,this.frameHeight=this.sourceVideoElement.videoHeight}createCanvas(){let e=document.createElement("canvas");return e.style.position="absolute",e.style.left="0",e.style.top="0",e.style.width="100%",e.style.height="100%",e}};var Pe=require("@vkontakte/videoplayer-shared");var vo="stalls_manager_metrics",Tv="stalls_manager_abr_params",vc=class{constructor(){this.isSeeked$=new Pe.ValueSubject(!1);this.isBuffering$=new Pe.ValueSubject(!1);this.maxQualityLimit=void 0;this.currentStallsCount=0;this.sumStallsDuration=0;this.lastStallDuration=0;this.providerStartWatchingTimestamp=0;this.lastUniqueVideoTrackSelectedTimestamp=0;this.predictedThroughputWithoutData=0;this.subscription=new Pe.Subscription;this.severeStallOccurred$=new Pe.ValueSubject(!1)}connect(e){this.currentStallDuration$=e.currentStallDuration$,this.videoLastDataObtainedTimestamp$=e.videoLastDataObtainedTimestamp$,this.throughput$=e.throughput$,this.rtt$=e.rtt$,this.tuning=e.tuning,this.abrParams=e.abrParams,this.subscribe(e)}get videoMaxQualityLimit(){return this.maxQualityLimit}get predictedThroughput(){return this.predictedThroughputWithoutData}get abrTuningParams(){return{...this.abrParams,...this.getStoredData(Tv)}}set lastVideoTrackSelected(e){this.lastUniqueVideoTrackSelected?.id!==e.id&&(this.lastUniqueVideoTrackSelected=e,this.lastUniqueVideoTrackSelectedTimestamp=(0,Pe.now)(),this.currentStallsCount=0)}destroy(){window.clearTimeout(this.qualityRestrictionTimer),this.subscription.unsubscribe(),this.currentStallDuration$.getValue()!==0&&this.updateStallData();let e=((0,Pe.now)()-this.providerStartWatchingTimestamp-this.sumStallsDuration)/1e3,t=this.sumStallsDuration;this.addStallInfoToHistory(e,t),this.updateStoredAbrParams()}updateStoredAbrParams(){let e=[],t=this.getStoredData(vo,"[]");if(t.length<this.tuning.stallsMetricsHistoryLength)return;if(this.tuning.useTotalStallsDurationPerTvt){let r=t.reduce((o,u)=>o+u.tvt,0),n=t.reduce((o,u)=>o+u.stallsDuration,0)/r;e.push(this.calculateOptimalAbrParams(n))}if(this.tuning.useAverageStallsDurationPerTvt){let r=t.reduce((a,n)=>a+n.stallsDurationPerTvt,0)/t.length;e.push(this.calculateOptimalAbrParams(r))}this.tuning.useEmaStallsDurationPerTvt&&e.push(this.calculateOptimalAbrParams(t[t.length-1].stallsDurationPerTvtSmoothed));let i={bitrateFactorAtEmptyBuffer:Math.max(...e.map(r=>r.bitrateFactorAtEmptyBuffer)),bitrateFactorAtFullBuffer:Math.max(...e.map(r=>r.bitrateFactorAtFullBuffer)),containerSizeFactor:Math.min(...e.map(r=>r.containerSizeFactor))};this.setStoredData(vo,[]),this.setStoredData(Tv,i)}calculateOptimalAbrParams(e){let{targetStallsDurationPerTvt:t,deviationStallsDurationPerTvt:i,criticalStallsDurationPerTvt:r,abrAdjustingSpeed:a}=this.tuning,n=this.abrTuningParams;return e<t-i?n={bitrateFactorAtEmptyBuffer:Math.max(n.bitrateFactorAtEmptyBuffer-a,this.abrParams.minBitrateFactorAtEmptyBuffer),bitrateFactorAtFullBuffer:Math.max(n.bitrateFactorAtFullBuffer-a,this.abrParams.minBitrateFactorAtFullBuffer),containerSizeFactor:Math.min(n.containerSizeFactor+a,this.abrParams.maxContainerSizeFactor)}:e>t+i&&(n={bitrateFactorAtEmptyBuffer:Math.min(n.bitrateFactorAtEmptyBuffer+a,this.abrParams.maxBitrateFactorAtEmptyBuffer),bitrateFactorAtFullBuffer:Math.min(n.bitrateFactorAtFullBuffer+a,this.abrParams.maxBitrateFactorAtFullBuffer),containerSizeFactor:Math.max(n.containerSizeFactor-a,this.abrParams.minContainerSizeFactor)}),e>r&&(n={bitrateFactorAtEmptyBuffer:Math.max(n.bitrateFactorAtEmptyBuffer,this.abrParams.bitrateFactorAtEmptyBuffer),bitrateFactorAtFullBuffer:Math.max(n.bitrateFactorAtFullBuffer,this.abrParams.bitrateFactorAtFullBuffer),containerSizeFactor:Math.min(n.containerSizeFactor,this.abrParams.containerSizeFactor)}),n}getStoredData(e,t="{}"){return JSON.parse(Pe.safeStorage.get(e)??t)}setStoredData(e,t){Pe.safeStorage.set(e,JSON.stringify(t))}addStallInfoToHistory(e,t){if(e<this.tuning.minTvtToBeCounted||e>this.tuning.maxTvtToBeCounted||e*1e3<t)return;let i=this.getStoredData(vo,"[]"),r=t/e,a=i.length?Si(i[i.length-1].stallsDurationPerTvtSmoothed,t/e,this.tuning.emaAlpha):r,n={tvt:e,stallsDuration:t,stallsDurationPerTvt:r,stallsDurationPerTvtSmoothed:a};i.push(n),i.length>this.tuning.stallsMetricsHistoryLength&&i.shift(),this.setStoredData(vo,i)}updateStallData(){this.providerStartWatchingTimestamp&&!this.isSeeked$.getValue()&&(this.sumStallsDuration+=Math.min(this.lastStallDuration,this.tuning.maxPossibleStallDuration),this.currentStallsCount++)}subscribe(e){this.subscription.add(e.isSeeked$.subscribe(this.isSeeked$)),this.subscription.add(e.isBuffering$.subscribe(this.isBuffering$)),this.subscription.add(e.looped$.subscribe(t=>this.currentStallsCount=0)),this.subscription.add(e.playing$.pipe((0,Pe.once)()).subscribe(t=>this.providerStartWatchingTimestamp=(0,Pe.now)())),this.subscription.add(this.currentStallDuration$.pipe((0,Pe.filterChanged)()).subscribe(t=>{let{stallDurationNoDataBeforeQualityDecrease:i,stallCountBeforeQualityDecrease:r,resetQualityRestrictionTimeout:a,ignoreStallsOnSeek:n}=this.tuning;if((0,Pe.isNullable)(this.lastUniqueVideoTrackSelected)||n&&this.isSeeked$.getValue())return;let o=this.rtt$.getValue(),u=this.throughput$.getValue(),l=this.videoLastDataObtainedTimestamp$.getValue(),c=(0,Pe.now)(),p=r&&this.currentStallsCount>=r,d=i&&c-this.lastUniqueVideoTrackSelectedTimestamp>=i+o&&c-l>=i+o&&t>=i;(p||d)&&(this.severeStallOccurred$.next(!0),window.clearTimeout(this.qualityRestrictionTimer),this.maxQualityLimit=this.lastUniqueVideoTrackSelected.quality,(0,Pe.isNonNullable)(this.lastUniqueVideoTrackSelected.bitrate)&&u>this.lastUniqueVideoTrackSelected.bitrate&&(this.predictedThroughputWithoutData=this.lastUniqueVideoTrackSelected.bitrate)),!t&&(0,Pe.now)()-this.providerStartWatchingTimestamp>this.lastStallDuration&&(this.updateStallData(),this.severeStallOccurred$.next(!1),window.clearTimeout(this.qualityRestrictionTimer),this.qualityRestrictionTimer=window.setTimeout(()=>{this.maxQualityLimit=void 0,this.predictedThroughputWithoutData=0},a)),this.lastStallDuration=t}))}},yo=vc;var ft=require("@vkontakte/videoplayer-shared"),To=class{constructor(){this.subscription=new ft.Subscription;this.pipSize$=new ft.ValueSubject(void 0);this.videoSize$=new ft.ValueSubject(void 0);this.elementSize$=new ft.ValueSubject(void 0);this.pictureInPictureWindowRemoveEventListener=ft.noop}connect({observableVideo:e,video:t}){let i=r=>{let a=r.target;this.pipSize$.next({width:a.width,height:a.height})};this.subscription.add((0,ft.observeElementSize)(t).subscribe(this.videoSize$)).add(e.enterPip$.subscribe(({pictureInPictureWindow:r})=>{this.pipSize$.next({width:r.width,height:r.height}),r.addEventListener("resize",i),this.pictureInPictureWindowRemoveEventListener=()=>{r.removeEventListener("resize",i)}})).add(e.leavePip$.subscribe(()=>{this.pictureInPictureWindowRemoveEventListener()})).add((0,ft.combine)({videoSize:this.videoSize$,pipSize:this.pipSize$,inPip:e.inPiP$}).pipe((0,ft.map)(({videoSize:r,inPip:a,pipSize:n})=>a?n:r)).subscribe(this.elementSize$))}getValue(){return this.elementSize$.getValue()}subscribe(e,t){return this.elementSize$.subscribe(e,t)}getObservable(){return this.elementSize$}destroy(){this.pictureInPictureWindowRemoveEventListener(),this.subscription.unsubscribe()}};var tr=class{constructor(e){this.subscription=new ee.Subscription;this.videoState=new K("stopped");this.droppedFramesManager=new Lr;this.stallsManager=new yo;this.elementSizeManager=new To;this.videoTracksMap=new Map;this.audioTracksMap=new Map;this.textTracksMap=new Map;this.videoStreamsMap=new Map;this.audioStreamsMap=new Map;this.videoTrackSwitchHistory=new Mi;this.audioTrackSwitchHistory=new Mi;this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),i=this.params.desiredState.playbackState.getTransition(),r=this.params.desiredState.seekState.getState();if(!this.videoState.getTransition()){if(r.state==="requested"&&i?.to!=="paused"&&e!=="stopped"&&t!=="stopped"&&this.seek(r.position,r.forcePrecise),t==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.player.stop(),this.video.load(),this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),C(this.params.desiredState.playbackState,"stopped",!0));return}switch(e){case"stopped":this.videoState.startTransitionTo("ready"),this.prepare();return;case"ready":t==="paused"?(this.videoState.setState("paused"),C(this.params.desiredState.playbackState,"paused")):t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):i?.to==="ready"&&C(this.params.desiredState.playbackState,"ready");return;case"playing":t==="paused"?(this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()):t==="playing"&&this.video.paused?this.playIfAllowed():i?.to==="playing"&&C(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):i?.to==="paused"&&C(this.params.desiredState.playbackState,"paused");return;default:return(0,ee.assertNever)(e)}}};this.init3DScene=e=>{if(this.scene3D)return;this.scene3D=new Nr(this.params.container,this.video,{fov:this.params.tuning.spherical.fov,orientation:this.params.tuning.spherical.orientation||{x:e.projectionData?.pose.yaw||0,y:e.projectionData?.pose.pitch||0,z:e.projectionData?.pose.roll||0},rotationSpeed:this.params.tuning.spherical.rotationSpeed,maxYawAngle:this.params.tuning.spherical.maxYawAngle,rotationSpeedCorrection:this.params.tuning.spherical.rotationSpeedCorrection,degreeToPixelCorrection:this.params.tuning.spherical.degreeToPixelCorrection,speedFadeTime:this.params.tuning.spherical.speedFadeTime,speedFadeThreshold:this.params.tuning.spherical.speedFadeThreshold});let t=this.elementSizeManager.getValue();t&&this.scene3D.setViewportSize(t.width,t.height)};this.destroy3DScene=()=>{this.scene3D&&(this.scene3D.destroy(),this.scene3D=void 0)};this.textTracksManager=new pt(e.source.url),this.params=e,this.video=Ke(e.container,e.tuning),this.tracer=e.dependencies.tracer.createComponentTracer(this.constructor.name),this.params.output.element$.next(this.video),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(Ne(this.params.source.url)),this.params.output.isLive$.next(!1),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.player=new bo({throughputEstimator:this.params.dependencies.throughputEstimator,tuning:this.params.tuning,compatibilityMode:this.params.source.compatibilityMode,tracer:this.tracer}),this.subscribe()}getProviderSubscriptionInfo(){let{output:e,desiredState:t}=this.params,i=Ze(this.video);this.subscription.add(()=>i.destroy());let r=this.constructor.name,a=o=>{e.error$.next({id:r,category:ee.ErrorCategory.WTF,message:`${r} internal logic error`,thrown:o})};return{output:e,desiredState:t,observableVideo:i,genericErrorListener:a,connect:(o,u)=>this.subscription.add(o.subscribe(u,a))}}subscribe(){let{output:e,desiredState:t,observableVideo:i,genericErrorListener:r,connect:a}=this.getProviderSubscriptionInfo();this.subscription.add(this.params.output.availableVideoTracks$.pipe((0,ee.filter)(l=>!!l.length),(0,ee.once)()).subscribe(l=>{this.droppedFramesManager.connect({logger:this.params.dependencies.logger,video:this.video,droppedFramesChecker:this.params.tuning.droppedFramesChecker,isAuto:this.params.desiredState.autoVideoTrackSwitching,playing$:i.playing$,pause$:i.pause$,tracks:l})}));let n=this.params.desiredState.seekState.stateChangeEnded$.pipe((0,ee.map)(l=>l.to.state!=="none"),(0,ee.filterChanged)());this.stallsManager.connect({isSeeked$:n,currentStallDuration$:this.player.currentStallDuration$,videoLastDataObtainedTimestamp$:this.player.videoLastDataObtainedTimestamp$,throughput$:this.params.dependencies.throughputEstimator.throughput$,rtt$:this.params.dependencies.throughputEstimator.rtt$,tuning:this.params.tuning.stallsManager,abrParams:this.params.tuning.autoTrackSelection,isBuffering$:i.isBuffering$,looped$:i.looped$,playing$:i.playing$}),a(i.ended$,e.endedEvent$),a(i.looped$,e.loopedEvent$),a(i.error$,e.error$),a(i.isBuffering$,e.isBuffering$),a(i.currentBuffer$,e.currentBuffer$),a(i.playing$,e.firstFrameEvent$),a(i.canplay$,e.canplay$),a(i.inPiP$,e.inPiP$),a(i.inFullscreen$,e.inFullscreen$),a(i.loadedMetadata$,e.loadedMetadataEvent$),a(this.player.error$,e.error$),a(this.player.fetcherRecoverableError$,e.fetcherRecoverableError$),a(this.player.fetcherError$,e.fetcherError$),a(this.player.lastConnectionType$,e.httpConnectionType$),a(this.player.lastConnectionReused$,e.httpConnectionReused$),a(this.player.isLive$,e.isLive$),a(this.player.lastRequestFirstBytes$.pipe((0,ee.filter)(ee.isNonNullable),(0,ee.once)()),e.firstBytesEvent$),a(this.stallsManager.severeStallOccurred$,e.severeStallOccurred$),a(this.videoState.stateChangeEnded$.pipe((0,ee.map)(l=>l.to)),this.params.output.playbackState$),this.subscription.add(i.loopExpected$.subscribe(l=>{t.seekState.setState({state:"requested",position:0,forcePrecise:!1})})),this.subscription.add(i.looped$.subscribe(()=>this.player.warmUpMediaSourceIfNeeded(),r)),this.subscription.add(i.seeked$.subscribe(e.seekedEvent$,r)),this.subscription.add($t(this.video,t.isLooped,r)),this.subscription.add(Je(this.video,t.volume,i.volumeState$,r)),this.subscription.add(i.volumeState$.subscribe(this.params.output.volume$,r)),this.subscription.add(dt(this.video,t.playbackRate,i.playbackRateState$,r)),this.elementSizeManager.connect({video:this.video,observableVideo:i}),a(ht(this.video,{threshold:this.params.tuning.autoTrackSelection.activeVideoAreaThreshold}),e.elementVisible$),this.subscription.add(i.playing$.subscribe(()=>{this.videoState.setState("playing"),C(t.playbackState,"playing"),this.scene3D&&this.scene3D.play()},r)).add(i.pause$.subscribe(()=>{this.videoState.setState("paused"),C(t.playbackState,"paused")},r)).add(i.canplay$.subscribe(()=>{this.videoState.getState()==="playing"&&this.playIfAllowed()},r)),this.subscription.add(this.player.state$.stateChangeEnded$.subscribe(({to:l})=>{if(l==="manifest_ready"){this.videoTracksMap=new Map,this.audioTracksMap=new Map,this.textTracksMap=new Map;let c=this.player.getStreams();if((0,ee.assertNonNullable)(c,"Manifest not loaded or empty"),!this.params.tuning.isAudioDisabled){let d=[];for(let h of c.audio){d.push(uc(h));let m=[];for(let g of h.representations){let y=sv(g);m.push(y),this.audioTracksMap.set(y,{stream:h,representation:g})}this.audioStreamsMap.set(h,m)}this.params.output.availableAudioStreams$.next(d)}let p=[];for(let d of c.video){p.push(lc(d));let h=[];for(let m of d.representations){let g=rv({...m,streamId:d.id});g&&(h.push(g),this.videoTracksMap.set(g,{stream:d,representation:m}))}this.videoStreamsMap.set(d,h)}this.params.output.availableVideoStreams$.next(p);for(let d of c.text)for(let h of d.representations){let m=av(d,h);this.textTracksMap.set(m,{stream:d,representation:h})}this.params.output.availableVideoTracks$.next(Array.from(this.videoTracksMap.keys())),this.params.output.availableAudioTracks$.next(Array.from(this.audioTracksMap.keys())),this.params.output.isAudioAvailable$.next(!!this.audioTracksMap.size),this.audioTracksMap.size&&this.textTracksMap.size&&this.params.desiredState.internalTextTracks.startTransitionTo(Array.from(this.textTracksMap.keys()))}else l==="representations_ready"&&(this.videoState.setState("ready"),this.player.initBuffer())},r)),this.subscription.add((0,ee.merge)(this.player.currentStallDuration$,this.player.state$.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.transitionStarted$,this.params.dependencies.throughputEstimator.rttAdjustedThroughput$,t.autoVideoTrackLimits.stateChangeStarted$,this.elementSizeManager.getObservable(),this.params.output.elementVisible$,this.droppedFramesManager.onDroopedVideoFramesLimit$,(0,ee.fromEvent)(this.video,"progress")).pipe((0,ee.filter)(()=>this.videoTracksMap.size>0)).subscribe(async()=>{let l=this.player.state$.getState(),c=this.player.state$.getTransition();if(!(0,Iv.default)(["manifest_ready","running"],l)||c)return;t.autoVideoTrackSwitching.getTransition()&&t.autoVideoTrackSwitching.setState(t.autoVideoTrackSwitching.getState());let p=this.selectVideoAudioRepresentations();if(!p)return;let[d,h]=p,m=[...this.videoTracksMap.keys()].find(y=>this.videoTracksMap.get(y)?.representation.id===d.id);(0,ee.isNonNullable)(m)&&(this.stallsManager.lastVideoTrackSelected=m);let g=this.params.desiredState.autoVideoTrackLimits.getTransition();if(g&&this.params.output.autoVideoTrackLimits$.next(g.to),l==="manifest_ready")await this.player.initRepresentations(d.id,h?.id,this.params.sourceHls);else if(await this.player.switchRepresentation("video",d.id),h){let y=!!t.audioStream.getTransition();await this.player.switchRepresentation("audio",h.id,y)}},r)),this.subscription.add(t.cameraOrientation.stateChangeEnded$.subscribe(({to:l})=>{this.scene3D&&l&&this.scene3D.pointCameraTo(l.x,l.y)})),this.subscription.add(this.elementSizeManager.subscribe(l=>{this.scene3D&&l&&this.scene3D.setViewportSize(l.width,l.height)})),this.subscription.add(this.player.currentVideoRepresentation$.pipe((0,ee.filterChanged)()).subscribe(l=>{let c=[...this.videoTracksMap.entries()].find(([,{representation:m}])=>m.id===l);if(!c){e.currentVideoTrack$.next(void 0),e.currentVideoStream$.next(void 0);return}let[p,{stream:d}]=c,h=this.params.desiredState.videoStream.getTransition();h&&h.to&&h.to.id===d.id&&this.params.desiredState.videoStream.setState(h.to),e.currentVideoTrack$.next(p),e.currentVideoStream$.next(lc(d))},r)),this.subscription.add(this.player.currentAudioRepresentation$.pipe((0,ee.filterChanged)()).subscribe(l=>{let c=[...this.audioTracksMap.entries()].find(([,{representation:m}])=>m.id===l);if(!c){e.currentAudioStream$.next(void 0);return}let[p,{stream:d}]=c,h=this.params.desiredState.audioStream.getTransition();h&&h.to&&h.to.id===d.id&&this.params.desiredState.audioStream.setState(h.to),e.currentAudioStream$.next(uc(d))},r)),this.subscription.add(this.player.currentVideoRepresentationInit$.subscribe(l=>{if(l?.is3dVideo&&this.params.tuning.spherical?.enabled)try{this.init3DScene(l),e.is3DVideo$.next(!0)}catch(c){e.warning$.next({id:"DashProvider",message:`DashProvider could not initialize 3D-scene: ${c}`})}else this.destroy3DScene(),this.params.tuning.spherical?.enabled&&e.is3DVideo$.next(!1)},r)),this.subscription.add(this.player.currentVideoSegmentLength$.subscribe(e.currentVideoSegmentLength$,r)),this.subscription.add(this.player.currentAudioSegmentLength$.subscribe(e.currentAudioSegmentLength$,r)),this.textTracksManager.connect(this.video,t,e);let o=t.playbackState.stateChangeStarted$.pipe((0,ee.map)(({to:l})=>l==="ready"),(0,ee.filterChanged)());this.subscription.add((0,ee.merge)(o,t.autoVideoTrackSwitching.stateChangeStarted$,this.player.state$.stateChangeEnded$,(0,ee.observableFrom)(["init"])).subscribe(()=>{let l=t.autoVideoTrackSwitching.getState(),p=t.playbackState.getState()==="ready"?this.params.tuning.dash.forwardBufferTargetPreload:l?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;this.player.setBufferTarget(p)})),this.subscription.add((0,ee.merge)(o,this.player.state$.stateChangeEnded$,(0,ee.observableFrom)(["init"])).subscribe(()=>this.player.setPreloadOnly(t.playbackState.getState()==="ready")));let u=(0,ee.merge)(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,(0,ee.observableFrom)(["init"])).pipe((0,ee.debounce)(0));this.subscription.add(u.subscribe(this.syncPlayback,r))}selectVideoAudioRepresentations(){if(this.player.isStreamEnded)return;let e=this.params.tuning.useNewAutoSelectVideoTrack?Ts:ys,t=this.params.tuning.useNewAutoSelectVideoTrack?Yn:Wn,i=this.params.tuning.useNewAutoSelectVideoTrack?Zt:Qn,{desiredState:r,output:a}=this.params,n=r.autoVideoTrackSwitching.getState(),o=r.videoTrack.getState()?.id,l=[...this.videoTracksMap.keys()].find(({id:I})=>I===o),c=a.currentVideoTrack$.getValue(),p=r.videoStream.getState()??(l&&this.videoTracksMap.get(l)?.stream)??this.videoStreamsMap.size===1?this.videoStreamsMap.keys().next().value:void 0;if(!p)return;let d=[...this.videoStreamsMap.keys()].find(({id:I})=>I===p.id),h=d&&this.videoStreamsMap.get(d);if(!h)return;let m=Qe(this.video.buffered,this.video.currentTime*1e3),g;this.player.isActiveLive$.getValue()?g=this.player.isLowLatency$.getValue()?this.params.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.params.tuning.dashCmafLive.normalizedLiveMinBufferSize:this.player.isLive$.getValue()?g=this.params.tuning.dashCmafLive.normalizedTargetMinBufferSize:g=n?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;let y=(this.video.duration*1e3||1/0)-this.video.currentTime*1e3,T=Math.min(m/Math.min(g,y||1/0),1),A=r.audioStream.getState()??(this.audioStreamsMap.size===1?this.audioStreamsMap.keys().next().value:void 0),x=[...this.audioStreamsMap.keys()].find(({id:I})=>I===A?.id)??this.audioStreamsMap.keys().next().value,M=0;if(x){if(l&&!n){let I=e(l,h,this.audioStreamsMap.get(x)??[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);M=Math.max(M,I?.bitrate??-1/0)}if(c){let I=e(c,h,this.audioStreamsMap.get(x)??[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);M=Math.max(M,I?.bitrate??-1/0)}}let $=i(h,{container:this.elementSizeManager.getValue(),panelSize:this.params.panelSize,estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),tuning:this.stallsManager.abrTuningParams,limits:this.params.desiredState.autoVideoTrackLimits.getState(),reserve:M,forwardBufferHealth:T,current:c,visible:this.params.output.elementVisible$.getValue(),history:this.videoTrackSwitchHistory,playbackRate:this.video.playbackRate,droppedVideoMaxQualityLimit:this.droppedFramesManager.droppedVideoMaxQualityLimit,stallsVideoMaxQualityLimit:this.stallsManager.videoMaxQualityLimit,stallsPredictedThroughput:this.stallsManager.predictedThroughput,abrLogger:this.params.dependencies.abrLogger}),F=n?$??l:l??$,G=x&&t(F,h,this.audioStreamsMap.get(x)??[],{estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),stallsPredictedThroughput:this.stallsManager.predictedThroughput,tuning:this.stallsManager.abrTuningParams,forwardBufferHealth:T,history:this.audioTrackSwitchHistory,playbackRate:this.video.playbackRate,abrLogger:this.params.dependencies.abrLogger}),B=this.videoTracksMap.get(F)?.representation,D=G&&this.audioTracksMap.get(G)?.representation;if(B&&D)return[B,D];if(B&&!D&&this.audioTracksMap.size===0)return[B,void 0]}prepare(e=0){this.player.initManifest(this.video,this.params.source.url,e)}playIfAllowed(){et(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),C(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:ee.ErrorCategory.DOM,thrown:e}))}destroy(){this.subscription.unsubscribe(),this.droppedFramesManager.destroy(),this.stallsManager.destroy(),this.elementSizeManager.destroy(),this.destroy3DScene(),this.textTracksManager.destroy(),this.player.destroy(),this.params.output.element$.next(void 0),this.params.output.currentVideoStream$.next(void 0),Xe(this.video),this.tracer.end()}};var la=class extends tr{subscribe(){super.subscribe();let{output:e,observableVideo:t,connect:i}=this.getProviderSubscriptionInfo();i(t.timeUpdate$,e.position$),i(t.durationChange$,e.duration$)}seek(e,t){this.params.output.willSeekEvent$.next(),this.player.seek(e,t)}};var me=require("@vkontakte/videoplayer-shared");var ca=class extends tr{constructor(e){super(e),this.textTracksManager.destroy()}subscribe(){super.subscribe();let e=-1,{output:t,observableVideo:i,desiredState:r,connect:a}=this.getProviderSubscriptionInfo();this.params.output.position$.next(0),this.params.output.isLive$.next(!0),a(i.timeUpdate$,t.liveBufferTime$),a(this.player.liveSeekableDuration$,t.duration$),a(this.player.liveLatency$,t.liveLatency$);let n=new me.ValueSubject(1);a(i.playbackRateState$,n),this.subscription.add(this.params.output.position$.subscribe(this.player.livePositionFromPlayer$)).add(r.isLowLatency.stateChangeEnded$.pipe((0,me.map)(o=>o.to)).subscribe(this.player.isLowLatency$)).add((0,me.combine)({liveBufferTime:t.liveBufferTime$,liveAvailabilityStartTime:this.player.liveAvailabilityStartTime$}).pipe((0,me.map)(({liveBufferTime:o,liveAvailabilityStartTime:u})=>o&&u?o+u:void 0)).subscribe(t.liveTime$)).add(this.player.liveStreamStatus$.pipe((0,me.filter)(o=>(0,me.isNonNullable)(o))).subscribe(o=>t.isLiveEnded$.next(o!=="active"&&t.position$.getValue()===0))).add((0,me.combine)({liveDuration:this.player.liveDuration$,liveStreamStatus:this.player.liveStreamStatus$,playbackRate:(0,me.merge)(i.playbackRateState$,new me.ValueSubject(1))}).pipe((0,me.filter)(({liveStreamStatus:o,liveDuration:u})=>o==="active"&&!!u)).subscribe(({liveDuration:o,playbackRate:u})=>{let l=t.liveBufferTime$.getValue(),c=t.position$.getValue(),{playbackCatchupSpeedup:p}=this.params.tuning.dashCmafLive.lowLatency;c||u<1-p||this.video.paused||(0,me.isNullable)(l)||(e=o-l)})).add((0,me.combine)({time:t.liveBufferTime$,liveDuration:this.player.liveDuration$,playbackRate:(0,me.merge)(i.playbackRateState$,new me.ValueSubject(1))}).pipe((0,me.filterChanged)((o,u)=>this.player.liveStreamStatus$.getValue()==="active"?o.liveDuration===u.liveDuration:o.time===u.time)).subscribe(({time:o,liveDuration:u,playbackRate:l})=>{let c=t.position$.getValue(),{playbackCatchupSpeedup:p}=this.params.tuning.dashCmafLive.lowLatency;if(!c&&!this.video.paused&&l>=1-p||(0,me.isNullable)(o)||(0,me.isNullable)(u))return;let d=-1*(u-o-e);t.position$.next(Math.min(d,0))})).add(this.player.currentLiveTextRepresentation$.subscribe(o=>{if(o){let u=nv(o);this.params.output.availableTextTracks$.next([u])}}))}seek(e){this.params.output.willSeekEvent$.next();let t=-e,i=Math.trunc(t/1e3<=Math.abs(this.params.output.duration$.getValue())?t:0);this.player.seekLive(i).then(()=>{this.params.output.position$.next(e/1e3)})}};var ie=require("@vkontakte/videoplayer-shared");var Mc=U(Rs(),1);var S=require("@vkontakte/videoplayer-shared");var Io=U(At(),1),qr=U(Ht(),1),xo=U(Rs(),1);var jv=U(gs(),1);var Vi=require("@vkontakte/videoplayer-shared");var NL=18,xv=!1;try{xv=W.browser.isSafari&&!!W.browser.safariVersion&&W.browser.safariVersion<=NL}catch(s){console.error(s)}var yc=class{constructor(e){this.bufferFull$=new Vi.Subject;this.error$=new Vi.Subject;this.queue=[];this.currentTask=null;this.destroyed=!1;this.abortRequested=!1;this.completeTask=()=>{try{if(this.currentTask){let e=this.currentTask.signal?.aborted;this.currentTask.callback(!e),this.currentTask=null}this.queue.length&&this.pull()}catch(e){this.error$.next({id:"BufferTaskQueueUnknown",category:Vi.ErrorCategory.VIDEO_PIPELINE,message:"Buffer appending or removal failed",thrown:e})}};this.buffer=e,this.buffer.addEventListener("updateend",this.completeTask)}async append(e,t){return t&&t.aborted?!1:new Promise(i=>{let r={operation:"append",data:e,signal:t,callback:i};this.queue.push(r),this.pull()})}async remove(e,t,i){return i&&i.aborted?!1:new Promise(r=>{let a={operation:"remove",from:e,to:t,signal:i,callback:r};this.queue.unshift(a),this.pull()})}async abort(e){return new Promise(t=>{let i,r=a=>{this.abortRequested=!1,t(a)};xv&&e?i={operation:"safariAbort",init:e,callback:r}:i={operation:"abort",callback:r};for(let{callback:a}of this.queue)a(!1);this.abortRequested=!0,i&&(this.queue=[i]),this.pull()})}destroy(){this.destroyed=!0,this.buffer.removeEventListener("updateend",this.completeTask),this.queue=[],this.currentTask=null;try{this.buffer.abort()}catch(e){if(!(e instanceof DOMException&&e.name==="InvalidStateError"))throw e}}pull(){if((this.buffer.updating||this.currentTask||this.destroyed)&&!this.abortRequested)return;let e=this.queue.shift();if(!e)return;if(e.signal?.aborted){e.callback(!1),this.pull();return}this.currentTask=e;let{operation:t}=this.currentTask;try{this.execute(this.currentTask)}catch(r){r instanceof DOMException&&r.name==="QuotaExceededError"&&t==="append"?this.bufferFull$.next(this.currentTask.data.byteLength):r instanceof DOMException&&r.name==="InvalidStateError"||this.error$.next({id:`BufferTaskQueue:${t}`,category:Vi.ErrorCategory.VIDEO_PIPELINE,message:"Buffer operation failed",thrown:r}),this.currentTask.callback(!1),this.currentTask=null}this.currentTask&&this.currentTask.operation==="abort"&&this.completeTask()}execute(e){let{operation:t}=e;switch(t){case"append":this.buffer.appendBuffer(e.data);break;case"remove":this.buffer.remove(e.from/1e3,e.to/1e3);break;case"abort":this.buffer.abort();break;case"safariAbort":{this.buffer.abort(),this.buffer.appendBuffer(e.init);break}default:(0,Vi.assertNever)(t)}}},Ev=yc;var w=require("@vkontakte/videoplayer-shared");var oe=class{constructor(e,t){this.cursor=0;this.source=e,this.boxParser=t,this.children=[];let i=this.readUint32();this.type=this.readString(4),i>e.byteLength-e.byteOffset&&(this.size32=NaN);let r=this.size32?this.size32-8:void 0,a=e.byteOffset+this.cursor;this.size64=0,this.usertype=0,this.content=new DataView(e.buffer,a,r)}get id(){return this.type}get size(){return this.size32}scanForBoxes(e){return this.boxParser.parse(e)}readString(e,t="ascii"){let r=new TextDecoder(t).decode(new DataView(this.source.buffer,this.source.byteOffset+this.cursor,e));return this.cursor+=e,r}readUint8(){let e=this.source.getUint8(this.cursor);return this.cursor+=1,e}readUint16(){let e=this.source.getUint16(this.cursor);return this.cursor+=2,e}readUint32(){let e=this.source.getUint32(this.cursor);return this.cursor+=4,e}readUint64(){let e=this.source.getBigInt64(this.cursor);return this.cursor+=8,e}};var Ur=class extends oe{};var da=class extends oe{constructor(t,i){super(t,i);this.ondemandPrefix="ondemandlivejson";this.ondemandDataReceivedKey="t-in";this.ondemandDataPreparedKey="t-out";let r=this.content.byteOffset,a=r+this.content.byteLength,n=new TextDecoder("ascii").decode(this.content.buffer.slice(r,a)).split(this.ondemandPrefix)[1],o=JSON.parse(n);this.serverDataReceivedTimestamp=o[this.ondemandDataReceivedKey],this.serverDataPreparedTime=o[this.ondemandDataPreparedKey]}};var pa=class extends oe{constructor(e,t){super(e,t),this.compatibleBrands=[],this.majorBrand=this.readString(4),this.minorVersion=this.readUint32();let i=this.size-this.cursor;for(;i;){let r=this.readString(4);this.compatibleBrands.push(r),i-=4}}};var ha=class extends oe{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var ve=class extends oe{constructor(e,t){super(e,t);let i=this.readUint32();this.version=i>>>24,this.flags=i&16777215}};var fa=class extends ve{constructor(e,t){super(e,t),this.creationTime=this.readUint32(),this.modificationTime=this.readUint32(),this.timescale=this.readUint32(),this.duration=this.readUint32(),this.rate=this.readUint32(),this.volume=this.readUint16()}};var ma=class extends oe{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var ba=class extends oe{constructor(e,t){super(e,t),this.data=this.content}};var ir=class extends ve{get earliestPresentationTime(){return this.earliestPresentationTime32}get firstOffset(){return this.firstOffset32}constructor(e,t){super(e,t),this.segments=[],this.referenceId=this.readUint32(),this.timescale=this.readUint32(),this.earliestPresentationTime32=this.readUint32(),this.firstOffset32=this.readUint32(),this.earliestPresentationTime64=0,this.firstOffset64=0,this.referenceCount=this.readUint32()&65535;for(let i=0;i<this.referenceCount;i++){let r=this.readUint32(),a=r>>>31,n=r<<1>>>1,o=this.readUint32();r=this.readUint32();let u=r>>>28,l=r<<3>>>3;this.segments.push({referenceType:a,referencedSize:n,subsegmentDuration:o,SAPType:u,SAPDeltaTime:l})}}};var ga=class extends oe{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Sa=class extends oe{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var va=class extends ve{constructor(e,t){switch(super(e,t),this.readUint8()){case 0:this.stereoMode=0;break;case 1:this.stereoMode=1;break;case 2:this.stereoMode=2;break;case 3:this.stereoMode=3;break;case 4:this.stereoMode=4;break}this.cursor+=1}};var ya=class extends ve{constructor(e,t){super(e,t),this.poseYawDegrees=this.readUint32(),this.posePitchDegrees=this.readUint32(),this.poseRollDegrees=this.readUint32()}};var Ta=class extends ve{constructor(e,t){super(e,t),this.projectionBoundsTop=this.readUint32(),this.projectionBoundsBottom=this.readUint32(),this.projectionBoundsLeft=this.readUint32(),this.projectionBoundsRight=this.readUint32()}};var Ia=class extends oe{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var xa=class extends ve{constructor(e,t){super(e,t),this.creationTime=this.readUint32(),this.modificationTime=this.readUint32(),this.trackId=this.readUint32(),this.cursor+=4,this.duration=this.readUint32(),this.cursor+=8,this.layer=this.readUint16(),this.alternateGroup=this.readUint16(),this.cursor+=2,this.cursor+=2,this.matrix=[[this.readUint32(),this.readUint32(),this.readUint32()],[this.readUint32(),this.readUint32(),this.readUint32()],[this.readUint32(),this.readUint32(),this.readUint32()]],this.width=this.readUint32(),this.height=this.readUint32()}};var Ea=class extends oe{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Pa=class extends oe{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var wa=class extends ve{constructor(e,t){super(e,t),this.sequenceNumber=this.readUint32()}};var Aa=class extends oe{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var ka=class extends ve{constructor(e,t){super(e,t),this.trackId=this.readUint32(),this.flags&1&&(this.baseDataOffset=this.readUint64()),this.flags&2&&(this.sampleDescriptionIndex=this.readUint32()),this.flags&8&&(this.defaultSampleDuration=this.readUint32()),this.flags&16&&(this.defaultSampleSize=this.readUint32()),this.flags&32&&(this.defaultSampleFlags=this.readUint32())}};var Ra=class extends ve{constructor(t,i){super(t,i);this.baseMediaDecodeTime32=0;this.baseMediaDecodeTime64=BigInt(0);this.version===1?this.baseMediaDecodeTime64=this.readUint64():this.baseMediaDecodeTime32=this.readUint32()}get baseMediaDecodeTime(){return this.version===1?this.baseMediaDecodeTime64:this.baseMediaDecodeTime32}};var La=class extends ve{constructor(t,i){super(t,i);this.sampleDuration=[];this.sampleSize=[];this.sampleFlags=[];this.sampleCompositionTimeOffset=[];this.optionalFields=0;this.sampleCount=this.readUint32(),this.flags&1&&(this.dataOffset=this.readUint32()),this.flags&4&&(this.firstSampleFlags=this.readUint32());for(let r=0;r<this.sampleCount;r++)this.flags&256&&this.sampleDuration.push(this.readUint32()),this.flags&512&&this.sampleSize.push(this.readUint32()),this.flags&1024&&this.sampleFlags.push(this.readUint32()),this.flags&2048&&this.sampleCompositionTimeOffset.push(this.readUint32())}};var Ma=class extends oe{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var $a=class extends ve{constructor(e,t){super(e,t),this.entryCount=this.readUint32(),this.children=this.scanForBoxes(new DataView(this.content.buffer,this.content.byteOffset+8,this.content.byteLength-8))}};var Ba=class extends oe{constructor(e,t){super(e,t),this.children=this.scanForBoxes(new DataView(this.content.buffer,this.content.byteOffset+78,this.content.byteLength-78))}};var qL={ftyp:pa,moov:ha,mvhd:fa,moof:ma,mdat:ba,sidx:ir,trak:ga,mdia:Ia,mfhd:wa,tkhd:xa,traf:Aa,tfhd:ka,tfdt:Ra,trun:La,minf:Ea,sv3d:Sa,st3d:va,prhd:ya,proj:Pa,equi:Ta,uuid:da,stbl:Ma,stsd:$a,avc1:Ba,unknown:Ur},yi=class s{constructor(e={}){this.options={offset:0,...e}}parse(e){let t=[],i=this.options.offset;for(;i<e.byteLength;)try{let a=new TextDecoder("ascii").decode(new DataView(e.buffer,e.byteOffset+i+4,4)),n=this.createBox(a,new DataView(e.buffer,e.byteOffset+i,e.byteLength-i));if(!n.size)break;t.push(n),i+=n.size}catch{break}return t}createBox(e,t){let i=qL[e];return i?new i(t,new s):new Ur(t,new s)}};var Oi=class{constructor(e){this.index={},this.indexBoxLevel(e)}indexBoxLevel(e){e.forEach(t=>{this.index[t.type]??=[],this.index[t.type].push(t),t.children.length>0&&this.indexBoxLevel(t.children)})}find(e){return this.index[e]&&this.index[e][0]?this.index[e][0]:null}findAll(e){return this.index[e]||[]}};var jL=new TextDecoder("ascii"),zL=s=>jL.decode(new DataView(s.buffer,s.byteOffset+4,4))==="ftyp",GL=s=>{let e=new ir(s,new yi),t=e.earliestPresentationTime/e.timescale*1e3,i=s.byteOffset+s.byteLength+e.firstOffset;return e.segments.map(a=>{if(a.referenceType!==0)throw new Error("Unsupported multilevel sidx");let n=a.subsegmentDuration/e.timescale*1e3,o={status:"none",time:{from:t,to:t+n},byte:{from:i,to:i+a.referencedSize-1}};return t+=n,i+=a.referencedSize,o})},QL=(s,e)=>{let i=new yi().parse(s),r=new Oi(i),a=r.findAll("moof"),n=e?r.findAll("uuid"):r.findAll("mdat");if(!(n.length&&a.length))return null;let o=a[0],u=n[n.length-1],l=o.source.byteOffset,p=u.source.byteOffset-o.source.byteOffset+u.size;return new DataView(s.buffer,l,p)},WL=s=>{let t=new yi().parse(s),i=new Oi(t),r={},a=i.findAll("uuid");return a.length?a[a.length-1]:r},YL=s=>{let t=new yi().parse(s);return new Oi(t).find("sidx")?.timescale},KL=(s,e)=>{let i=new yi().parse(s),a=new Oi(i).findAll("traf"),n=a[a.length-1].children.find(p=>p.type==="tfhd"),o=a[a.length-1].children.find(p=>p.type==="tfdt"),u=a[a.length-1].children.find(p=>p.type==="trun"),l=0;return u.sampleDuration.length?l=u.sampleDuration.reduce((p,d)=>p+d,0):l=n.defaultSampleDuration*u.sampleCount,(Number(o.baseMediaDecodeTime)+l)/e*1e3},XL=s=>{let e={is3dVideo:!1,stereoMode:0,projectionType:1,projectionData:{pose:{yaw:0,pitch:0,roll:0},bounds:{top:0,bottom:0,left:0,right:0}}},i=new yi().parse(s),r=new Oi(i);if(r.find("sv3d")){e.is3dVideo=!0;let n=r.find("st3d");n&&(e.stereoMode=n.stereoMode);let o=r.find("prhd");o&&(e.projectionData.pose.yaw=o.poseYawDegrees,e.projectionData.pose.pitch=o.posePitchDegrees,e.projectionData.pose.roll=o.poseRollDegrees);let u=r.find("equi");u&&(e.projectionData.bounds.top=u.projectionBoundsTop,e.projectionData.bounds.right=u.projectionBoundsRight,e.projectionData.bounds.bottom=u.projectionBoundsBottom,e.projectionData.bounds.left=u.projectionBoundsLeft)}return e},Pv={validateData:zL,parseInit:XL,getIndexRange:()=>{},parseSegments:GL,parseFeedableSegmentChunk:QL,getChunkEndTime:KL,getServerLatencyTimestamps:WL,getTimescaleFromIndex:YL};var Ca=U(At(),1),Ti=require("@vkontakte/videoplayer-shared");var Av=require("@vkontakte/videoplayer-shared");var wv={440786851:{type:"master"},17030:{type:"uint"},17143:{type:"uint"},17138:{type:"uint"},17139:{type:"uint"},17026:{type:"string"},17031:{type:"uint"},17029:{type:"uint"},236:{type:"binary"},408125543:{type:"master"},290298740:{type:"master"},19899:{type:"master"},21419:{type:"binary"},21420:{type:"uint"},357149030:{type:"master"},2807729:{type:"uint"},17545:{type:"float"},374648427:{type:"master"},174:{type:"master"},224:{type:"master"},30320:{type:"master"},30321:{type:"uint"},30322:{type:"master"},272869232:{type:"master"},524531317:{type:"master"},231:{type:"uint"},22612:{type:"master"},22743:{type:"uint"},167:{type:"uint"},171:{type:"uint"},163:{type:"binary"},160:{type:"master"},175:{type:"binary"},423732329:{type:"master"},307544935:{type:"master"},475249515:{type:"master"},187:{type:"master"},179:{type:"uint"},183:{type:"master"},247:{type:"uint"},241:{type:"uint"},240:{type:"uint"},178:{type:"uint"},21368:{type:"uint"},234:{type:"uint"},219:{type:"master"},150:{type:"uint"}},kv=s=>{let e=s.getUint8(0),t=0;e&128?t=1:e&64?t=2:e&32?t=3:e&16&&(t=4);let i=Da(s,t),r=i in wv,a=r?wv[i].type:"binary",n=s.getUint8(t),o=0;n&128?o=1:n&64?o=2:n&32?o=3:n&16?o=4:n&8?o=5:n&4?o=6:n&2?o=7:n&1&&(o=8);let u=new DataView(s.buffer,s.byteOffset+t+1,o-1),l=n&255>>o,c=Da(u),p=l*2**((o-1)*8)+c,d=t+o,h;return d+p>s.byteLength?h=new DataView(s.buffer,s.byteOffset+d):h=new DataView(s.buffer,s.byteOffset+d,p),{tag:r?i:"0x"+i.toString(16).toUpperCase(),type:a,tagHeaderSize:d,tagSize:d+p,value:h,valueSize:p}},Da=(s,e=s.byteLength)=>{switch(e){case 1:return s.getUint8(0);case 2:return s.getUint16(0);case 3:return s.getUint8(0)*2**16+s.getUint16(1);case 4:return s.getUint32(0);case 5:return s.getUint8(0)*2**32+s.getUint32(1);case 6:return s.getUint16(0)*2**32+s.getUint32(2);case 7:{let t=s.getUint8(0)*281474976710656+s.getUint16(1)*4294967296+s.getUint32(3);if(Number.isSafeInteger(t))return t}case 8:throw new ReferenceError("Int64 is not supported")}return 0},zt=(s,e)=>{switch(e){case"int":return s.getInt8(0);case"uint":return Da(s);case"float":return s.byteLength===4?s.getFloat32(0):s.getFloat64(0);case"string":return new TextDecoder("ascii").decode(s);case"utf8":return new TextDecoder("utf-8").decode(s);case"date":return new Date(Date.UTC(2001,0)+s.getInt8(0)).getTime();case"master":return s;case"binary":return s;default:(0,Av.assertNever)(e)}},rr=(s,e)=>{let t=0;for(;t<s.byteLength;){let i=new DataView(s.buffer,s.byteOffset+t),r=kv(i);if(!e(r))return;r.type==="master"&&rr(r.value,e),t=r.value.byteOffset-s.byteOffset+r.valueSize}},Rv=s=>{if(s.getUint32(0)!==440786851)return!1;let e,t,i,r=kv(s);return rr(r.value,({tag:a,type:n,value:o})=>(a===17143?e=zt(o,n):a===17026?t=zt(o,n):a===17029&&(i=zt(o,n)),!0)),(e===void 0||e<=1)&&t!==void 0&&t==="webm"&&(i===void 0||i<=2)};var Lv=[357149030,290298740,374648427,174,224,30320,30321,30322,272869232,524531317,475249515,423732329,307544935],JL=[231,22612,22743,167,171,163,160,175],ZL=s=>{let e,t,i,r,a=!1,n=!1,o=!1,u,l,c=!1,p=0;return rr(s,({tag:d,type:h,value:m,valueSize:g})=>{if(d===21419){let y=zt(m,h);l=Da(y)}else d!==21420&&(l=void 0);return d===408125543?(e=m.byteOffset,t=m.byteOffset+g):d===357149030?a=!0:d===290298740?n=!0:d===2807729?i=zt(m,h):d===17545?r=zt(m,h):d===21420&&l===475249515?u=zt(m,h):d===374648427?rr(m,({tag:y,type:T,value:A})=>y===30321?(c=zt(A,T)===1,!1):!0):a&&n&&(0,Ca.default)(Lv,d)&&(o=!0),!o}),(0,Ti.assertNonNullable)(e,"Failed to parse webm Segment start"),(0,Ti.assertNonNullable)(t,"Failed to parse webm Segment end"),(0,Ti.assertNonNullable)(r,"Failed to parse webm Segment duration"),i=i??1e6,{segmentStart:Math.round(e/1e9*i*1e3),segmentEnd:Math.round(t/1e9*i*1e3),timeScale:i,segmentDuration:Math.round(r/1e9*i*1e3),cuesSeekPosition:u,is3dVideo:c,stereoMode:p,projectionType:1,projectionData:{pose:{yaw:0,pitch:0,roll:0},bounds:{top:0,bottom:0,left:0,right:0}}}},eM=s=>{if((0,Ti.isNullable)(s.cuesSeekPosition))return;let e=s.segmentStart+s.cuesSeekPosition,t=1024*1024;return{from:e,to:e+t}},tM=(s,e)=>{let t=!1,i=!1,r=o=>(0,Ti.isNonNullable)(o.time)&&(0,Ti.isNonNullable)(o.position),a=[],n;return rr(s,({tag:o,type:u,value:l})=>{switch(o){case 475249515:t=!0;break;case 187:n&&r(n)&&a.push(n),n={};break;case 179:n&&(n.time=zt(l,u));break;case 183:break;case 241:n&&(n.position=zt(l,u));break;default:t&&(0,Ca.default)(Lv,o)&&(i=!0)}return!(t&&i)}),n&&r(n)&&a.push(n),a.map((o,u)=>{let{time:l,position:c}=o,p=a[u+1];return{status:"none",time:{from:l,to:p?p.time:e.segmentDuration},byte:{from:e.segmentStart+c,to:p?e.segmentStart+p.position-1:e.segmentEnd-1}}})},iM=s=>{let e=0,t=!1;try{rr(s,i=>i.tag===524531317?i.tagSize<=s.byteLength?(e=i.tagSize,!1):(e+=i.tagHeaderSize,!0):(0,Ca.default)(JL,i.tag)?(e+i.tagSize<=s.byteLength&&(e+=i.tagSize,t||=(0,Ca.default)([163,160,175],i.tag)),!0):!1)}catch{}return e>0&&e<=s.byteLength&&t?new DataView(s.buffer,s.byteOffset,e):null},Mv={validateData:Rv,parseInit:ZL,getIndexRange:eM,parseSegments:tM,parseFeedableSegmentChunk:iM};var Va=s=>{let e=/^(.+)\/([^;]+)(?:;.*)?$/.exec(s);if(e){let[,t,i]=e;if(t==="audio"||t==="video")switch(i){case"webm":return Mv;case"mp4":return Pv}}throw new ReferenceError(`Unsupported mime type ${s}`)};var Ac=U(sc(),1),Nv=U(ji(),1),Uv=U(ac(),1),qv=U(Ht(),1),kc=U(Ki(),1);var _a=require("@vkontakte/videoplayer-shared");var $v=s=>{try{let e=rM(),t=s.match(e),{groups:i}=t??{};if(i){let r={};if(i.extensions){let o=i.extensions.toLowerCase().match(/(?:[0-9a-wy-z](?:-[a-z0-9]{2,8})+)/g);Array.from(o||[]).forEach(u=>{r[u[0]]=u.slice(2)})}let a=i.variants?.split(/-/).filter(o=>o!==""),n={extlang:i.extlang,langtag:i.langtag,language:i.language,privateuse:i.privateuse||i.privateuse2,region:i.region,script:i.script,extensions:r,variants:a};return Object.keys(n).forEach(o=>{let u=n[o];(typeof u>"u"||u==="")&&delete n[o]}),n}return null}catch{return null}};function rM(){let s="(?<extlang>(?:[a-z]{3}(?:-[a-z]{3}){0,2}))",e="x(?:-[a-z0-9]{1,8})+",c=`^(?:(?<langtag>${`
|
|
179
|
+
(?<language>${`(?:[a-z]{2,3}(?:-${s})?|[a-z]{4}|[a-z]{5,8})`})
|
|
180
|
+
(-(?<script>[a-z]{4}))?
|
|
181
|
+
(-(?<region>(?:[a-z]{2}|[0-9]{3})))?
|
|
182
|
+
(?<variants>(?:-(?:[a-z0-9]{5,8}|[0-9][a-z0-9]{3}))*)
|
|
183
|
+
(?<extensions>(?:-[0-9a-wy-z](?:-[a-z0-9]{2,8})+)*)
|
|
184
|
+
(?:-(?<privateuse>(?:${e})))?
|
|
185
|
+
`})|(?<privateuse2>${e}))$`.replace(/[\s\t\n]/g,"");return new RegExp(c,"i")}var xc=U(Ht(),1);var Bv=require("@vkontakte/videoplayer-shared"),Dv=({id:s,width:e,height:t,bitrate:i,fps:r,quality:a,streamId:n})=>{let o=(a?Jt(a):void 0)??(0,Bv.videoSizeToQuality)({width:e,height:t});return o&&{id:s,quality:o,bitrate:i,size:{width:e,height:t},fps:r,streamId:n}},Cv=({id:s,bitrate:e})=>({id:s,bitrate:e}),Vv=({language:s,label:e},{id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:s,label:e}),Ov=({language:s,label:e,id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:s,label:e}),Ec=({id:s,language:e,label:t,codecs:i,isDefault:r})=>({id:s,language:e,label:t,codec:(0,xc.default)(i.split("."),0),isDefault:r}),Pc=({id:s,language:e,label:t,hdr:i,codecs:r})=>({id:s,language:e,hdr:i,label:t,codec:(0,xc.default)(r.split("."),0)}),wc=s=>"url"in s,ct=s=>s.type==="template",Oa=s=>s instanceof DOMException&&(s.name==="AbortError"||s.code===20);var _v=s=>{s.sort((t,i)=>t.from-i.from);let e=[s[0]];for(let t=1;t<s.length;t++){let{from:i,to:r}=s[t],a=e[e.length-1];a.to>=i?a.to=Math.max(a.to,r):e.push(s[t])}return e},sr=(s,e)=>{for(let t of s)if(e(t))return t;return null};var Fv=s=>{if(!s?.startsWith("P"))return;let e=(n,o)=>{let u=n?parseFloat(n.replace(",",".")):NaN;return(isNaN(u)?0:u)*o},i=/^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/.exec(s),r=i?.[1]==="-"?-1:1,a={days:e(i?.[5],r),hours:e(i?.[6],r),minutes:e(i?.[7],r),seconds:e(i?.[8],r)};return a.days*24*60*60*1e3+a.hours*60*60*1e3+a.minutes*60*1e3+a.seconds*1e3},Ii=(s,e)=>{let t=s;t=(0,Ac.default)(t,"$$","$");let i={RepresentationID:e.representationId,Number:e.segmentNumber,Bandwidth:e.bandwidth,Time:e.segmentTime};for(let[r,a]of(0,Nv.default)(i)){let n=new RegExp(`\\$${r}(?:%0(\\d+)d)?\\$`,"g");t=(0,Ac.default)(t,n,(o,u)=>(0,_a.isNullable)(a)?o:(0,_a.isNullable)(u)?a:(0,Uv.default)(a,parseInt(u,10),"0"))}return t},Hv=(s,e)=>{let i=new DOMParser().parseFromString(s,"application/xml"),r={video:[],audio:[],text:[]},a=i.children[0],n=Array.from(a.querySelectorAll("MPD > BaseURL").values()).map(D=>D.textContent?.trim()??""),o=(0,qv.default)(n,0)??"",u=a.getAttribute("type")==="dynamic",l=a.getAttribute("availabilityStartTime"),c=a.getAttribute("publishTime"),p=a.getElementsByTagName("vk:Attrs")[0],d=p?.getElementsByTagName("vk:XLatestSegmentPublishTime")[0].textContent,h=p?.getElementsByTagName("vk:XStreamIsLive")[0].textContent,m=p?.getElementsByTagName("vk:XStreamIsUnpublished")[0].textContent,g=p?.getElementsByTagName("vk:XPlaybackDuration")[0].textContent,y;u&&(y={availabilityStartTime:l?new Date(l).getTime():0,publishTime:c?new Date(c).getTime():0,latestSegmentPublishTime:d?new Date(d).getTime():0,streamIsAlive:h==="yes",streamIsUnpublished:m==="yes"});let T,A=a.getAttribute("mediaPresentationDuration"),x=[...a.getElementsByTagName("Period")],M=x.reduce((D,I)=>({...D,[I.id]:I.children}),{}),$=x.reduce((D,I)=>({...D,[I.id]:I.getAttribute("duration")}),{});A?T=Fv(A):(0,kc.default)($).filter(D=>D).length&&!u?T=(0,kc.default)($).reduce((D,I)=>D+(Fv(I)??0),0):g&&(T=parseInt(g,10));let F=0,G=a.getAttribute("profiles")?.split(",")??[];for(let D of x.map(I=>I.id))for(let I of M[D]){let j=I.getAttribute("id")??"id"+(F++).toString(10),k=I.getAttribute("mimeType")??"",R=I.getAttribute("codecs")??"",V=I.getAttribute("contentType")??k?.split("/")[0],ge=I.getAttribute("profiles")?.split(",")??[],N=$v(I.getAttribute("lang")??"")??{},re=I.querySelector("Label")?.textContent?.trim()??void 0,ce=I.querySelectorAll("Representation"),Te=I.querySelector("SegmentTemplate"),Be=I.querySelector("Role")?.getAttribute("value")??void 0,Ie=V,de={id:j,language:N.language,isDefault:Be==="main",label:re,codecs:R,hdr:Ie==="video"&&Or(R),mime:k,representations:[]};for(let O of ce){let z=O.getAttribute("lang")??void 0,qe=re??I.getAttribute("label")??O.getAttribute("label")??void 0,De=O.querySelector("BaseURL")?.textContent?.trim()??"",he=new URL(De||o,e).toString(),Ve=O.getAttribute("mimeType")??k,bt=O.getAttribute("codecs")??R??"",it;if(V==="text"){let Ae=O.getAttribute("id")||"",gt=N.privateuse?.includes("x-auto")||Ae.includes("_auto"),Ue=O.querySelector("SegmentTemplate");if(Ue){let Ct={representationId:O.getAttribute("id")??void 0,bandwidth:O.getAttribute("bandwidth")??void 0},ri=parseInt(O.getAttribute("bandwidth")??"",10)/1e3,si=parseInt(Ue.getAttribute("startNumber")??"",10)??1,St=parseInt(Ue.getAttribute("timescale")??"",10),_i=Ue.querySelectorAll("SegmentTimeline S")??[],vt=Ue.getAttribute("media");if(!vt)continue;let ai=[],ni=0,oi="",yt=0,Vt=si,ue=0;for(let xe of _i){let rt=parseInt(xe.getAttribute("d")??"",10),fe=parseInt(xe.getAttribute("r")??"",10)||0,He=parseInt(xe.getAttribute("t")??"",10);ue=Number.isFinite(He)?He:ue;let st=rt/St*1e3,Tt=ue/St*1e3;for(let Re=0;Re<fe+1;Re++){let je=Ii(vt,{...Ct,segmentNumber:Vt.toString(10),segmentTime:(ue+Re*rt).toString(10)}),It=(Tt??0)+Re*st,_t=It+st;Vt++,ai.push({time:{from:It,to:_t},url:je})}ue+=(fe+1)*rt,ni+=(fe+1)*st}yt=ue/St*1e3,oi=Ii(vt,{...Ct,segmentNumber:Vt.toString(10),segmentTime:ue.toString(10)});let Ot={time:{from:yt,to:1/0},url:oi},Oe={type:"template",baseUrl:he,segmentTemplateUrl:vt,initUrl:"",totalSegmentsDurationMs:ni,segments:ai,nextSegmentBeyondManifest:Ot,timescale:St};it={id:Ae,kind:"text",segmentReference:Oe,profiles:[],duration:T,bitrate:ri,mime:"",codecs:"",width:0,height:0,isAuto:gt}}else it={id:Ae,isAuto:gt,kind:"text",url:he}}else{let Ae=O.getAttribute("contentType")??Ve?.split("/")[0]??V,gt=I.getAttribute("profiles")?.split(",")??[],Ue=parseInt(O.getAttribute("width")??"",10),Ct=parseInt(O.getAttribute("height")??"",10),ri=parseInt(O.getAttribute("bandwidth")??"",10)/1e3,si=O.getAttribute("frameRate")??"",St=O.getAttribute("quality")??void 0,_i=si?to(si):void 0,vt=O.getAttribute("id")??"id"+(F++).toString(10),ai=Ae==="video"?`${Ct}p`:Ae==="audio"?`${ri}Kbps`:bt,ni=`${vt}@${ai}`,oi=[...G,...ge,...gt],yt,Vt=O.querySelector("SegmentBase"),ue=O.querySelector("SegmentTemplate")??Te;if(Vt){let Oe=O.querySelector("SegmentBase Initialization")?.getAttribute("range")??"",[xe,rt]=Oe.split("-").map(je=>parseInt(je,10)),fe={from:xe,to:rt},He=O.querySelector("SegmentBase")?.getAttribute("indexRange"),[st,Tt]=He?He.split("-").map(je=>parseInt(je,10)):[],Re=He?{from:st,to:Tt}:void 0;yt={type:"byteRange",url:he,initRange:fe,indexRange:Re}}else if(ue){let Oe={representationId:O.getAttribute("id")??void 0,bandwidth:O.getAttribute("bandwidth")??void 0},xe=parseInt(ue.getAttribute("timescale")??"",10),rt=ue.getAttribute("initialization")??"",fe=ue.getAttribute("media"),He=parseInt(ue.getAttribute("startNumber")??"",10)??1,st=Ii(rt,Oe);if(!fe)throw new ReferenceError("No media attribute in SegmentTemplate");let Tt=ue.querySelectorAll("SegmentTimeline S")??[],Re=[],je=0,It="",_t=0;if(Tt.length){let ui=He,Ee=0;for(let xt of Tt){let Le=parseInt(xt.getAttribute("d")??"",10),at=parseInt(xt.getAttribute("r")??"",10)||0,li=parseInt(xt.getAttribute("t")??"",10);Ee=Number.isFinite(li)?li:Ee;let Fi=Le/xe*1e3,Co=Ee/xe*1e3;for(let ci=0;ci<at+1;ci++){let Vo=Ii(fe,{...Oe,segmentNumber:ui.toString(10),segmentTime:(Ee+ci*Le).toString(10)}),zr=(Co??0)+ci*Fi,Oo=zr+Fi;ui++,Re.push({time:{from:zr,to:Oo},url:Vo})}Ee+=(at+1)*Le,je+=(at+1)*Fi}_t=Ee/xe*1e3,It=Ii(fe,{...Oe,segmentNumber:ui.toString(10),segmentTime:Ee.toString(10)})}else if((0,_a.isNonNullable)(T)){let Ee=parseInt(ue.getAttribute("duration")??"",10)/xe*1e3,xt=Math.ceil(T/Ee),Le=0;for(let at=1;at<xt;at++){let li=Ii(fe,{...Oe,segmentNumber:at.toString(10),segmentTime:Le.toString(10)});Re.push({time:{from:Le,to:Le+Ee},url:li}),Le+=Ee}_t=Le,It=Ii(fe,{...Oe,segmentNumber:xt.toString(10),segmentTime:Le.toString(10)})}let Do={time:{from:_t,to:1/0},url:It};yt={type:"template",baseUrl:he,segmentTemplateUrl:fe,initUrl:st,totalSegmentsDurationMs:je,segments:Re,nextSegmentBeyondManifest:Do,timescale:xe}}else throw new ReferenceError("Unknown MPD segment referencing type");if(!Ae||!Ve)continue;let Ot={video:"video",audio:"audio",text:"text"}[Ae];if(!Ot)continue;Ie||=Ot,it={id:ni,kind:Ot,segmentReference:yt,profiles:oi,duration:T,bitrate:ri,mime:Ve,codecs:bt,width:Ue,height:Ct,fps:_i,quality:St}}de.language||=z,de.label||=qe,de.mime||=Ve,de.codecs||=bt,de.hdr||=Ie==="video"&&Or(bt),de.representations.push(it)}if(Ie){let O=r[Ie].find(z=>z.id===de.id);if(O&&de.representations.every(z=>ct(z.segmentReference)))for(let z of O.representations){let De=de.representations.find(Ve=>Ve.id===z.id)?.segmentReference,he=z.segmentReference;he.segments.push(...De.segments),he.nextSegmentBeyondManifest=De.nextSegmentBeyondManifest}else r[Ie].push(de)}}return{duration:T,streams:r,baseUrls:n,live:y}};var Fa=class{constructor(e,t,i,{fetcher:r,tuning:a,getCurrentPosition:n,isActiveLowLatency:o,compatibilityMode:u=!1,manifest:l}){this.currentLiveSegmentServerLatency$=new w.ValueSubject(0);this.currentLowLatencySegmentLength$=new w.ValueSubject(0);this.currentSegmentLength$=new w.ValueSubject(0);this.onLastSegment$=new w.ValueSubject(!1);this.fullyBuffered$=new w.ValueSubject(!1);this.playingRepresentation$=new w.ValueSubject(void 0);this.playingRepresentationInit$=new w.ValueSubject(void 0);this.error$=new w.Subject;this.gaps=[];this.subscription=new w.Subscription;this.allInitsLoaded=!1;this.activeSegments=new Set;this.downloadAbortController=new pe;this.switchAbortController=new pe;this.destroyAbortController=new pe;this.bufferLimit=1/0;this.failedDownloads=0;this.baseUrls=[];this.baseUrlsIndex=0;this.isLive=!1;this.liveUpdateSegmentIndex=0;this.liveInitialAdditionalOffset=0;this.isSeekingLive=!1;this.index=0;this.lastDataObtainedTimestampMs=0;this.loadByteRangeSegmentsTimeoutId=0;this.startWith=(0,w.abortable)(this.destroyAbortController.signal,async function*(e){let t=this.representations.get(e);(0,w.assertNonNullable)(t,`Cannot find representation ${e}`),this.playingRepresentationId=e,this.downloadingRepresentationId=e,this.sourceBuffer=this.mediaSource.addSourceBuffer(`${t.mime}; codecs="${t.codecs}"`),this.sourceBufferTaskQueue=new Ev(this.sourceBuffer),this.subscription.add((0,w.fromEvent)(this.sourceBuffer,"updateend").subscribe(()=>{this.checkEjectedSegments(),this.maintain()},n=>{let o,u=this.mediaSource.readyState;u!=="open"&&(o={id:`SegmentEjection_source_${u}`,category:w.ErrorCategory.VIDEO_PIPELINE,message:"Error when trying to clear segments ejected by browser",thrown:n}),o??={id:"SegmentEjection",category:w.ErrorCategory.VIDEO_PIPELINE,message:"Error when trying to clear segments ejected by browser",thrown:n},this.error$.next(o)})),this.subscription.add((0,w.fromEvent)(this.sourceBuffer,"error").subscribe(()=>this.error$.next({id:"SourceBuffer",category:w.ErrorCategory.VIDEO_PIPELINE,message:"SourceBuffer Error event fired"}))),this.subscription.add(this.sourceBufferTaskQueue.bufferFull$.subscribe(n=>{let o=this.getCurrentPosition();if(!this.sourceBuffer||!o||!Z(this.mediaSource,this.sourceBuffer))return;let u=Math.min(this.bufferLimit,Dr(this.sourceBuffer.buffered)*.8);this.bufferLimit=u;let l=Qe(this.sourceBuffer.buffered,o),c=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(o,n*2,l<c).catch(p=>{this.handleAsyncError(p,"pruneBuffer")})})),this.subscription.add(this.sourceBufferTaskQueue.error$.subscribe(n=>this.error$.next(n))),yield this.loadInit(t,"high",!0);let i=this.initData.get(t.id),r=this.segments.get(t.id),a=this.parsedInitData.get(t.id);(0,w.assertNonNullable)(i,"No init buffer for starting representation"),(0,w.assertNonNullable)(r,"No segments for starting representation"),i instanceof ArrayBuffer&&(this.searchGaps(r,t),yield this.sourceBufferTaskQueue.append(i,this.destroyAbortController.signal),this.playingRepresentation$.next(this.playingRepresentationId),this.playingRepresentationInit$.next(a))}.bind(this));this.switchTo=(0,w.abortable)(this.destroyAbortController.signal,async function*(e,t=!1){if(!Z(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);(0,w.assertNonNullable)(i,`No such representation ${e}`);let r=this.segments.get(e),a=this.initData.get(e);if((0,w.isNullable)(a)||(0,w.isNullable)(r)?yield this.loadInit(i,"high",!1):a instanceof Promise&&(yield a),r=this.segments.get(e),(0,w.assertNonNullable)(r,"No segments for starting representation"),a=this.initData.get(e),!(!a||!(a instanceof ArrayBuffer)||!this.sourceBuffer||!Z(this.mediaSource,this.sourceBuffer))){if(yield this.abort(),yield this.sourceBufferTaskQueue.append(a,this.downloadAbortController.signal),t)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e,yield this.dropBuffer();else{let n=this.getCurrentPosition();(0,w.isNonNullable)(n)&&!this.isLive&&(this.bufferLimit=1/0,await this.pruneBuffer(n,1/0,!0)),this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e}this.maintain()}}.bind(this));this.switchToOld=(0,w.abortable)(this.destroyAbortController.signal,async function*(e,t=!1){if(!Z(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);(0,w.assertNonNullable)(i,`No such representation ${e}`);let r=this.segments.get(e),a=this.initData.get(e);if((0,w.isNullable)(a)||(0,w.isNullable)(r)?yield this.loadInit(i,"high",!1):a instanceof Promise&&(yield a),r=this.segments.get(e),(0,w.assertNonNullable)(r,"No segments for starting representation"),a=this.initData.get(e),!(!a||!(a instanceof ArrayBuffer)||!this.sourceBuffer||!Z(this.mediaSource,this.sourceBuffer)))if(yield this.abort(),yield this.sourceBufferTaskQueue.append(a,this.downloadAbortController.signal),t)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e,yield this.dropBuffer(),this.maintain();else{let n=this.getCurrentPosition();(0,w.isNonNullable)(n)&&(this.isLive||(this.bufferLimit=1/0,await this.pruneBuffer(n,1/0,!0)),this.maintain(n)),this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e}}.bind(this));this.seekLive=(0,w.abortable)(this.destroyAbortController.signal,async function*(e){let t=(0,xo.default)(e,u=>u.representations)??[];if(this.isSeekingLive=!0,!this.downloadingRepresentationId||!t)return;for(let u of this.representations.keys()){let l=t.find(d=>d.id===u);l&&this.representations.set(u,l);let c=this.representations.get(u);if(!c||!ct(c.segmentReference))return;let p=this.getActualLiveStartingSegments(c.segmentReference);this.segments.set(c.id,p)}let i=this.switchingToRepresentationId??this.downloadingRepresentationId,r=this.representations.get(i);(0,w.assertNonNullable)(r);let a=this.segments.get(i);(0,w.assertNonNullable)(a,"No segments for starting representation");let n=this.initData.get(i);if((0,w.assertNonNullable)(n,"No init buffer for starting representation"),!(n instanceof ArrayBuffer))return;let o=this.getDebugBufferState();this.liveUpdateSegmentIndex=0,yield this.abort(),o&&(yield this.sourceBufferTaskQueue.remove(o.from*1e3,o.to*1e3,this.destroyAbortController.signal)),this.searchGaps(a,r),yield this.sourceBufferTaskQueue.append(n,this.destroyAbortController.signal),this.isSeekingLive=!1}.bind(this));this.fetcher=r,this.tuning=a,this.compatibilityMode=u,this.forwardBufferTarget=a.dash.forwardBufferTargetAuto,this.getCurrentPosition=n,this.isActiveLowLatency=o,this.isLive=!!l?.live,this.baseUrls=l?.baseUrls??[],this.initData=new Map(i.map(c=>[c.id,null])),this.segments=new Map,this.parsedInitData=new Map,this.representations=new Map(i.map(c=>[c.id,c])),this.kind=e,this.mediaSource=t,this.sourceBuffer=null}switchToWithPreviousAbort(e,t=!1){!Z(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId||(this.switchAbortController.abort(),this.switchAbortController=new pe,(0,w.abortable)(this.switchAbortController.signal,async function*(i,r=!1){this.switchingToRepresentationId=i;let a=this.representations.get(i);(0,w.assertNonNullable)(a,`No such representation ${i}`);let n=this.segments.get(i),o=this.initData.get(i);if((0,w.isNullable)(o)||(0,w.isNullable)(n)?yield this.loadInit(a,"high",!1):o instanceof Promise&&(yield o),n=this.segments.get(i),(0,w.assertNonNullable)(n,"No segments for starting representation"),o=this.initData.get(i),!(!(o instanceof ArrayBuffer)||!this.sourceBuffer||!Z(this.mediaSource,this.sourceBuffer))){if(yield this.abort(),yield this.sourceBufferTaskQueue.append(o,this.downloadAbortController.signal),r)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=i,yield this.dropBuffer();else{let u=this.getCurrentPosition();(0,w.isNonNullable)(u)&&!this.isLive&&(this.bufferLimit=this.forwardBufferTarget,yield this.pruneBuffer(u,1/0,!0)),this.downloadingRepresentationId=i,this.switchingToRepresentationId=void 0}this.maintain()}}.bind(this))(e,t))}warmUpMediaSource(){!(0,w.isNullable)(this.sourceBuffer)&&!this.sourceBuffer.updating&&(this.sourceBuffer.mode="segments")}async abort(){for(let e of this.activeSegments)this.abortSegment(e.segment);return this.activeSegments.clear(),this.downloadAbortController.abort(),this.downloadAbortController=new pe,this.abortBuffer()}maintain(e=this.getCurrentPosition()){if((0,w.isNullable)(e)||(0,w.isNullable)(this.downloadingRepresentationId)||(0,w.isNullable)(this.playingRepresentationId)||(0,w.isNullable)(this.sourceBuffer)||!Z(this.mediaSource,this.sourceBuffer)||(0,w.isNonNullable)(this.switchingToRepresentationId)||this.isSeekingLive)return;let t=this.representations.get(this.downloadingRepresentationId),i=this.segments.get(this.downloadingRepresentationId);if((0,w.assertNonNullable)(t,`No such representation ${this.downloadingRepresentationId}`),!i)return;let r=i.find(c=>e>=c.time.from&&e<c.time.to);(0,w.isNonNullable)(r)&&isFinite(r.time.from)&&isFinite(r.time.to)&&this.currentSegmentLength$.next(r?.time.to-r.time.from);let a=e,n=100;if(this.playingRepresentationId!==this.downloadingRepresentationId){let c=Qe(this.sourceBuffer.buffered,e),p=r?r.time.to+n:-1/0;r&&r.time.to-e<this.tuning.dash.maxSegmentDurationLeftToSelectNextSegment&&c>=r.time.to-e+n&&(a=p)}if(isFinite(this.bufferLimit)&&Dr(this.sourceBuffer.buffered)>=this.bufferLimit){let c=Qe(this.sourceBuffer.buffered,e),p=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(e,1/0,c<p).catch(d=>{this.handleAsyncError(d,"pruneBuffer")});return}let u=null;if(!this.activeSegments.size&&(u=this.selectForwardBufferSegments(i,t.segmentReference.type,a),u?.length)){let c="auto";if(this.tuning.dash.useFetchPriorityHints&&r)if((0,Io.default)(u,r))c="high";else{let p=(0,qr.default)(u,0);p&&p.time.from-r.time.to>=this.forwardBufferTarget/2&&(c="low")}this.loadSegments(u,t,c).catch(p=>{this.handleAsyncError(p,"loadSegments")})}(!this.preloadOnly&&!this.allInitsLoaded&&r&&r.status==="fed"&&!u?.length&&Qe(this.sourceBuffer.buffered,e)>3e3||this.isActiveLowLatency())&&this.loadNextInit();let l=(0,qr.default)(i,-1);!this.isLive&&l&&(this.fullyBuffered$.next(l.time.to-e-Qe(this.sourceBuffer.buffered,e)<n),this.onLastSegment$.next(e-l.time.from>0))}get lastDataObtainedTimestamp(){return this.lastDataObtainedTimestampMs}searchGaps(e,t){this.gaps=[];let i=0,r=this.isLive?this.liveInitialAdditionalOffset:0;for(let a of e)Math.trunc(a.time.from-i)>0&&this.gaps.push({representation:t.id,from:i,to:a.time.from+r}),i=a.time.to;(0,w.isNonNullable)(t.duration)&&t.duration-i>0&&!this.isLive&&this.gaps.push({representation:t.id,from:i,to:t.duration})}getActualLiveStartingSegments(e){let t=e.segments,i=this.isActiveLowLatency()?this.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.tuning.dashCmafLive.maxActiveLiveOffset,r=[],a=0,n=t.length-1;do r.unshift(t[n]),a+=t[n].time.to-t[n].time.from,n--;while(a<i&&n>=0);return this.liveInitialAdditionalOffset=a-i,this.isActiveLowLatency()?[r[0]]:r}getLiveSegmentsToLoadState(e){let t=(0,xo.default)(e?.streams[this.kind],r=>r.representations).find(r=>r.id===this.downloadingRepresentationId);if(!t)return;let i=this.segments.get(t.id);if(i?.length)return{from:i[0].time.from,to:i[i.length-1].time.to}}updateLive(e){let t=(0,xo.default)(e?.streams[this.kind],i=>i.representations)??[];if(![...this.segments.values()].every(i=>!i.length))for(let i of t){if(!i||!ct(i.segmentReference))return;let r=i.segmentReference.segments.map(l=>({...l,status:"none",size:void 0})),a=100,n=this.segments.get(i.id)??[],o=(0,qr.default)(n,-1)?.time.to??0,u=r?.findIndex(l=>o>=l.time.from+a&&o<=l.time.to+a);if(u===-1){this.liveUpdateSegmentIndex=0;let l=this.getActualLiveStartingSegments(i.segmentReference);this.segments.set(i.id,l)}else{let l=r.slice(u+1);this.segments.set(i.id,[...n,...l])}}}proceedLowLatencyLive(){let e=this.downloadingRepresentationId;(0,w.assertNonNullable)(e);let t=this.segments.get(e);if(t?.length){let i=t[t.length-1];this.updateLowLatencyLiveIfNeeded(i)}}updateLowLatencyLiveIfNeeded(e){let t=0;for(let i of this.representations.values()){let r=i.segmentReference;if(!ct(r))return;let a=this.segments.get(i.id);if(!a)continue;let n=a.find(u=>Math.floor(u.time.from)===Math.floor(e.time.from));if(n&&!isFinite(n.time.to)&&(n.time.to=e.time.to,t=n.time.to-n.time.from),!!!a.find(u=>Math.floor(u.time.from)===Math.floor(e.time.to))&&this.isActiveLowLatency()){let u=Math.round(e.time.to*r.timescale/1e3).toString(10),l=Ii(r.segmentTemplateUrl,{segmentTime:u});a.push({status:"none",time:{from:e.time.to,to:1/0},url:l})}}this.currentLowLatencySegmentLength$.next(t)}findSegmentStartTime(e){let t=this.switchingToRepresentationId??this.downloadingRepresentationId??this.playingRepresentationId;if(!t)return;let i=this.segments.get(t);return i?i.find(a=>a.time.from<=e&&a.time.to>=e)?.time.from??void 0:void 0}setTarget(e){this.forwardBufferTarget=e}setPreloadOnly(e){this.preloadOnly=e}destroy(){if(this.initData.clear(),this.segments.clear(),this.parsedInitData.clear(),this.representations.clear(),this.sourceBufferTaskQueue?.destroy(),this.gapDetectionIdleCallback&&ti&&ti(this.gapDetectionIdleCallback),this.initLoadIdleCallback&&ti&&ti(this.initLoadIdleCallback),this.subscription.unsubscribe(),this.sourceBuffer)try{this.mediaSource.removeSourceBuffer(this.sourceBuffer)}catch(e){if(!(e instanceof DOMException&&e.name==="NotFoundError"))throw e}this.sourceBuffer=null,this.downloadAbortController.abort(),this.switchAbortController.abort(),this.destroyAbortController.abort(),window.clearTimeout(this.loadByteRangeSegmentsTimeoutId)}selectForwardBufferSegments(e,t,i){return this.isLive?this.selectForwardBufferSegmentsLive(e,i):this.selectForwardBufferSegmentsRecord(e,t,i)}selectForwardBufferSegmentsLive(e,t){if(this.playingRepresentationId!==this.downloadingRepresentationId){let i=e.findIndex(r=>t>=r.time.from&&t<r.time.to);this.liveUpdateSegmentIndex=i}return this.liveUpdateSegmentIndex<e.length?e.slice(this.liveUpdateSegmentIndex++):null}selectForwardBufferSegmentsRecord(e,t,i){let r=e.findIndex(({status:p,time:{from:d,to:h}},m)=>{let g=d<=i&&h>=i,y=d>i||g||m===0&&i===0,T=Math.min(this.forwardBufferTarget,this.bufferLimit),A=this.preloadOnly&&d<=i+T||h<=i+T;return(p==="none"||p==="partially_ejected"&&y&&A&&this.sourceBuffer&&Z(this.mediaSource,this.sourceBuffer)&&!(tt(this.sourceBuffer.buffered,d)&&tt(this.sourceBuffer.buffered,h)))&&y&&A});if(r===-1)return null;if(t!=="byteRange")return e.slice(r,r+1);let a=e,n=0,o=0,u=[],l=this.preloadOnly?0:this.tuning.dash.segmentRequestSize,c=this.preloadOnly?this.forwardBufferTarget:0;for(let p=r;p<a.length&&(n<=l||o<=c);p++){let d=a[p];if(n+=d.byte.to+1-d.byte.from,o+=d.time.to+1-d.time.from,d.status==="none"||d.status==="partially_ejected")u.push(d);else break}return u}async loadSegments(e,t,i="auto"){ct(t.segmentReference)?await this.loadTemplateSegment(e[0],t,i):await this.loadByteRangeSegments(e,t,i)}async loadTemplateSegment(e,t,i="auto"){e.status="downloading";let r={segment:e,loadedBytes:0,feedingBytes:0,fedBytes:0,representationId:t.id};this.activeSegments.add(r);let{range:a,url:n,signal:o,onProgress:u,onProgressTasks:l}=this.prepareTemplateFetchSegmentParams(e,t);this.failedDownloads&&o&&(await(0,w.abortable)(o,async function*(){let c=(0,w.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(p=>setTimeout(p,c))}.bind(this))(),o.aborted&&this.abortActiveSegments([e]));try{let c=await this.fetcher.fetch(n,{range:a,signal:o,onProgress:u,priority:i,isLowLatency:this.isActiveLowLatency()});if(this.lastDataObtainedTimestampMs=(0,w.now)(),!c)return;let p=new DataView(c),d=Va(t.mime);if(!isFinite(r.segment.time.to)){let g=t.segmentReference.timescale;r.segment.time.to=d.getChunkEndTime(p,g)}u&&r.feedingBytes&&l?await Promise.all(l):await this.sourceBufferTaskQueue.append(p,o);let{serverDataReceivedTimestamp:h,serverDataPreparedTime:m}=d.getServerLatencyTimestamps(p);h&&m&&this.currentLiveSegmentServerLatency$.next(m-h),r.segment.status="downloaded",this.onSegmentFullyAppended(r,t.id),this.failedDownloads=0}catch(c){this.abortActiveSegments([e]),Oa(c)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}}updateRepresentationsBaseUrlIfNeeded(){if(!this.tuning.dash.enableBaseUrlSupport||!this.baseUrls.length||this.failedDownloads<=this.tuning.dash.maxSegmentRetryCount)return;this.baseUrlsIndex=(this.baseUrlsIndex+1)%this.baseUrls.length;let e=this.baseUrls[this.baseUrlsIndex];for(let t of this.representations.values())ct(t.segmentReference)?t.segmentReference.baseUrl=e:t.segmentReference.url=e}async loadByteRangeSegments(e,t,i="auto"){if(!e.length)return;for(let u of e)u.status="downloading",this.activeSegments.add({segment:u,loadedBytes:0,feedingBytes:0,fedBytes:0,representationId:t.id});let{range:r,url:a,signal:n,onProgress:o}=this.prepareByteRangeFetchSegmentParams(e,t);this.failedDownloads&&n&&(await(0,w.abortable)(n,async function*(){let u=(0,w.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(l=>{this.loadByteRangeSegmentsTimeoutId=window.setTimeout(l,u),(0,w.fromEvent)(window,"online").pipe((0,w.once)()).subscribe(()=>{l(),window.clearTimeout(this.loadByteRangeSegmentsTimeoutId)})})}.bind(this))(),n.aborted&&this.abortActiveSegments(e));try{await this.fetcher.fetch(a,{range:r,onProgress:o,signal:n,priority:i}),this.lastDataObtainedTimestampMs=(0,w.now)(),this.failedDownloads=0}catch(u){this.abortActiveSegments(e),Oa(u)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}}prepareByteRangeFetchSegmentParams(e,t){if(ct(t.segmentReference))throw new Error("Representation is not byte range type");let i=t.segmentReference.url,r={from:(0,qr.default)(e,0).byte.from,to:(0,qr.default)(e,-1).byte.to},{signal:a}=this.downloadAbortController;return{url:i,range:r,signal:a,onProgress:async(o,u)=>{if(!a.aborted)try{this.lastDataObtainedTimestampMs=(0,w.now)(),await this.onSomeByteRangesDataLoaded({dataView:o,loaded:u,signal:a,onSegmentAppendFailed:()=>this.abort(),globalFrom:r?r.from:0,representationId:t.id})}catch(l){this.error$.next({id:"SegmentFeeding",category:w.ErrorCategory.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:l})}}}}prepareTemplateFetchSegmentParams(e,t){if(!ct(t.segmentReference))throw new Error("Representation is not template type");let i=new URL(e.url,t.segmentReference.baseUrl);this.isActiveLowLatency()&&i.searchParams.set("low-latency","yes");let r=i.toString(),{signal:a}=this.downloadAbortController,n=[],u=this.isActiveLowLatency()||this.tuning.dash.enableSubSegmentBufferFeeding&&this.liveUpdateSegmentIndex<3?(l,c)=>{if(!a.aborted)try{this.lastDataObtainedTimestampMs=(0,w.now)();let p=this.onSomeTemplateDataLoaded({dataView:l,loaded:c,signal:a,onSegmentAppendFailed:()=>this.abort(),representationId:t.id});n.push(p)}catch(p){this.error$.next({id:"SegmentFeeding",category:w.ErrorCategory.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:p})}}:void 0;return{url:r,signal:a,onProgress:u,onProgressTasks:n}}abortActiveSegments(e){for(let t of this.activeSegments)(0,Io.default)(e,t.segment)&&this.abortSegment(t.segment)}async onSomeTemplateDataLoaded({dataView:e,representationId:t,loaded:i,onSegmentAppendFailed:r,signal:a}){if(!this.activeSegments.size||!Z(this.mediaSource,this.sourceBuffer))return;let n=this.representations.get(t);if(n)for(let o of this.activeSegments){let{segment:u}=o;if(o.representationId===t){if(a.aborted){r();continue}if(o.loadedBytes=i,o.loadedBytes>o.feedingBytes){let l=new DataView(e.buffer,e.byteOffset+o.feedingBytes,o.loadedBytes-o.feedingBytes),c=Va(n.mime).parseFeedableSegmentChunk(l,this.isLive);c?.byteLength&&(u.status="partially_fed",o.feedingBytes+=c.byteLength,await this.sourceBufferTaskQueue.append(c),o.fedBytes+=c.byteLength)}}}}async onSomeByteRangesDataLoaded({dataView:e,representationId:t,globalFrom:i,loaded:r,signal:a,onSegmentAppendFailed:n}){if(!this.activeSegments.size||!Z(this.mediaSource,this.sourceBuffer))return;let o=this.representations.get(t);if(o)for(let u of this.activeSegments){if(u.representationId!==t)continue;if(a.aborted){await n();continue}let{segment:l}=u,c=l.byte.from-i,p=l.byte.to-i,d=p-c+1,h=c<r,m=p<=r;if(h){if(l.status==="downloading"&&m){l.status="downloaded";let g=new DataView(e.buffer,e.byteOffset+c,d);await this.sourceBufferTaskQueue.append(g,a)&&!a.aborted?this.onSegmentFullyAppended(u,t):await n()}else if(this.tuning.dash.enableSubSegmentBufferFeeding&&(l.status==="downloading"||l.status==="partially_fed")&&(u.loadedBytes=Math.min(d,r-c),u.loadedBytes>u.feedingBytes)){let g=new DataView(e.buffer,e.byteOffset+c+u.feedingBytes,u.loadedBytes-u.feedingBytes),y=u.loadedBytes===d?g:Va(o.mime).parseFeedableSegmentChunk(g);y?.byteLength&&(l.status="partially_fed",u.feedingBytes+=y.byteLength,await this.sourceBufferTaskQueue.append(y,a)&&!a.aborted?(u.fedBytes+=y.byteLength,u.fedBytes===d&&this.onSegmentFullyAppended(u,t)):await n())}}}}onSegmentFullyAppended(e,t){if(!((0,w.isNullable)(this.sourceBuffer)||!Z(this.mediaSource,this.sourceBuffer))){!this.isLive&&W.browser.isSafari&&this.tuning.useSafariEndlessRequestBugfix&&(tt(this.sourceBuffer.buffered,e.segment.time.from,100)&&tt(this.sourceBuffer.buffered,e.segment.time.to,100)||this.error$.next({id:"EmptyAppendBuffer",category:w.ErrorCategory.VIDEO_PIPELINE,message:"Browser stuck on empty result of adding segment to source buffer"})),this.playingRepresentationId=t,this.playingRepresentation$.next(this.playingRepresentationId),this.playingRepresentationInit$.next(this.parsedInitData.get(this.playingRepresentationId)),e.segment.status="fed",wc(e.segment)&&(e.segment.size=e.fedBytes);for(let i of this.representations.values()){if(i.id===t)continue;let r=this.segments.get(i.id);if(r)for(let a of r)a.status==="fed"&&Math.round(a.time.from)===Math.round(e.segment.time.from)&&Math.round(a.time.to)===Math.round(e.segment.time.to)&&(a.status="none")}this.isActiveLowLatency()&&this.updateLowLatencyLiveIfNeeded(e.segment),this.activeSegments.delete(e),this.detectGapsWhenIdle(t,e.segment)}}abortSegment(e){e.status==="partially_fed"?e.status="partially_ejected":e.status!=="partially_ejected"&&(e.status="none");for(let t of this.activeSegments.values())if(t.segment===e){this.activeSegments.delete(t);break}}loadNextInit(){if(this.allInitsLoaded||this.initLoadIdleCallback)return;let e=null,t=!1;for(let[r,a]of this.initData.entries()){let n=a instanceof Promise;t||=n,a===null&&(e=r)}if(!e){this.allInitsLoaded=!0;return}if(t)return;let i=this.representations.get(e);i&&(this.initLoadIdleCallback=Br(()=>(0,jv.default)(this.loadInit(i,"low",!1),()=>this.initLoadIdleCallback=null)))}async loadInit(e,t="auto",i=!1){let r=this.tuning.dash.useFetchPriorityHints?t:"auto",n=(!i&&this.failedDownloads>0?(0,w.abortable)(this.destroyAbortController.signal,async function*(){let o=(0,w.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(u=>setTimeout(u,o))}.bind(this))():Promise.resolve()).then(()=>this.fetcher.fetchRepresentation(e.segmentReference,Va(e.mime),r)).then(o=>{if(!o)return;let{init:u,dataView:l,segments:c}=o,p=l.buffer.slice(l.byteOffset,l.byteOffset+l.byteLength);this.initData.set(e.id,p);let d=c;this.isLive&&ct(e.segmentReference)&&(d=this.getActualLiveStartingSegments(e.segmentReference)),(!this.isLive||!this.segments.has(e.id))&&this.segments.set(e.id,d),u&&this.parsedInitData.set(e.id,u)}).then(()=>this.failedDownloads=0,o=>{this.initData.set(e.id,null),i&&this.error$.next({id:"LoadInits",category:w.ErrorCategory.WTF,message:"loadInit threw",thrown:o})});return this.initData.set(e.id,n),n}async dropBuffer(){for(let e of this.segments.values())for(let t of e)t.status="none";await this.pruneBuffer(0,1/0,!0)}async pruneBuffer(e,t,i=!1){if(!this.sourceBuffer||!Z(this.mediaSource,this.sourceBuffer)||!this.playingRepresentationId||(0,w.isNullable)(e))return!1;let r=[],a=0,n=o=>{if(a>=t)return;r.push({...o.time});let u=wc(o)?o.size??0:o.byte.to-o.byte.from;a+=u};for(let o of this.segments.values())for(let u of o){let l=u.time.to<=e-this.tuning.dash.bufferPruningSafeZone,c=u.time.from>=e+Math.min(this.forwardBufferTarget,this.bufferLimit);(l||c)&&u.status==="fed"&&n(u)}for(let o=0;o<this.sourceBuffer.buffered.length;o++){let u=this.sourceBuffer.buffered.start(o)*1e3,l=this.sourceBuffer.buffered.end(o)*1e3,c=0;for(let p of this.segments.values())for(let d of p)(0,Io.default)(["none","partially_ejected"],d.status)&&Math.round(d.time.from)<=Math.round(u)&&Math.round(d.time.to)>=Math.round(l)&&c++;if(c===this.segments.size){let p={time:{from:u,to:l},url:"",status:"none"};n(p)}}if(r.length&&i){let o=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;for(let u of this.segments.values())for(let l of u)l.time.from>=e+o&&l.status==="fed"&&n(l)}return r.length?(r=_v(r),(await Promise.all(r.map(u=>this.sourceBufferTaskQueue.remove(u.from,u.to)))).reduce((u,l)=>u||l,!1)):!1}async abortBuffer(){if(!this.sourceBuffer||!Z(this.mediaSource,this.sourceBuffer))return!1;let e=this.playingRepresentationId&&this.initData.get(this.playingRepresentationId),t=e instanceof ArrayBuffer?e:void 0;return this.sourceBufferTaskQueue.abort(t)}getDebugBufferState(){if(!(!this.sourceBuffer||!Z(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length))return{from:this.sourceBuffer.buffered.start(0),to:this.sourceBuffer.buffered.end(this.sourceBuffer.buffered.length-1)}}getBufferedTo(){return!this.sourceBuffer||!Z(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length?null:this.sourceBuffer.buffered.end(this.sourceBuffer.buffered.length-1)}getForwardBufferDuration(e=this.getCurrentPosition()){return!this.sourceBuffer||!Z(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length||(0,w.isNullable)(e)?0:Qe(this.sourceBuffer.buffered,e)}detectGaps(e,t){if(!this.sourceBuffer||!Z(this.mediaSource,this.sourceBuffer))return;if(this.tuning.useRefactoredSearchGap)for(let r=0;r<this.sourceBuffer.buffered.length;r++)this.gaps=this.gaps.filter(a=>this.sourceBuffer&&(Math.round(a.from)<Math.round(this.sourceBuffer.buffered.start(r)*1e3)||Math.round(a.to)>Math.round(this.sourceBuffer.buffered.end(r)*1e3)));let i={representation:e,from:t.time.from,to:t.time.to};for(let r=0;r<this.sourceBuffer.buffered.length;r++){let a=this.sourceBuffer.buffered.start(r)*1e3,n=this.sourceBuffer.buffered.end(r)*1e3;if(!(n<=t.time.from||a>=t.time.to)){if(a<=t.time.from&&n>=t.time.to){i=void 0;break}n>t.time.from&&n<t.time.to&&(i.from=n),a<t.time.to&&a>t.time.from&&(i.to=a)}}i&&i.to-i.from>1&&!this.gaps.some(r=>i&&r.from===i.from&&r.to===i.to)&&this.gaps.push(i)}detectGapsWhenIdle(e,t){if(!(this.gapDetectionIdleCallback||!this.sourceBuffer||!Z(this.mediaSource,this.sourceBuffer))){if(!this.tuning.useRefactoredSearchGap)for(let i=0;i<this.sourceBuffer.buffered.length;i++)this.gaps=this.gaps.filter(r=>this.sourceBuffer&&(Math.round(r.from)<Math.round(this.sourceBuffer.buffered.start(i)*1e3)||Math.round(r.to)>Math.round(this.sourceBuffer.buffered.end(i)*1e3)));this.gapDetectionIdleCallback=Br(()=>{try{this.detectGaps(e,t)}catch(i){this.error$.next({id:"GapDetection",category:w.ErrorCategory.WTF,message:"detectGaps threw",thrown:i})}finally{this.gapDetectionIdleCallback=null}})}}checkEjectedSegments(){if((0,w.isNullable)(this.sourceBuffer)||!Z(this.mediaSource,this.sourceBuffer)||(0,w.isNullable)(this.playingRepresentationId))return;let e=[];for(let i=0;i<this.sourceBuffer.buffered.length;i++){let r=Math.floor(this.sourceBuffer.buffered.start(i)*1e3),a=Math.ceil(this.sourceBuffer.buffered.end(i)*1e3);e.push({from:r,to:a})}let t=100;for(let i of this.segments.values())for(let r of i){let{status:a}=r;if(a!=="fed"&&a!=="partially_ejected")continue;let n=Math.floor(r.time.from),o=Math.ceil(r.time.to),u=e.some(c=>c.from-t<=n&&c.to+t>=o),l=e.filter(c=>n>=c.from&&n<c.to-t||o>c.from+t&&o<=c.to);u||(l.length===1?r.status="partially_ejected":this.gaps.some(c=>c.from===r.time.from||c.to===r.time.to)?r.status="partially_ejected":r.status="none")}}handleAsyncError(e,t){this.error$.next({id:t,category:w.ErrorCategory.VIDEO_PIPELINE,thrown:e,message:"Something went wrong"})}};var J=require("@vkontakte/videoplayer-shared");var Po=class{constructor({throughputEstimator:e,requestQuic:t,tracer:i,compatibilityMode:r=!1,useEnableSubtitlesParam:a=!1}){this.lastConnectionType$=new J.ValueSubject(void 0);this.lastConnectionReused$=new J.ValueSubject(void 0);this.lastRequestFirstBytes$=new J.ValueSubject(void 0);this.recoverableError$=new J.Subject;this.error$=new J.Subject;this.abortAllController=new pe;this.subscription=new J.SubscriptionRemovable;this.fetchManifest=(0,J.abortable)(this.abortAllController.signal,async function*(e){let t=this.tracer.createComponentTracer("FetchManifest"),i=e;this.requestQuic&&(i=Di(i)),!this.compatibilityMode&&this.useEnableSubtitlesParam&&(i=ao(i));let r=yield this.doFetch(i,{signal:this.abortAllController.signal}).catch(Eo);return r?(t.log("success",(0,J.flattenObject)({url:i,message:"Request successfully executed"})),t.end(),this.onHeadersReceived(r.headers),r.text()):(t.error("error",(0,J.flattenObject)({url:i,message:"No data in request manifest"})),t.end(),null)}.bind(this));this.fetch=(0,J.abortable)(this.abortAllController.signal,async function*(e,{rangeMethod:t=this.compatibilityMode?0:1,range:i,onProgress:r,priority:a="auto",signal:n,measureThroughput:o=!0,isLowLatency:u=!1}={}){let l=e,c=new Headers,p=this.tracer.createComponentTracer("Fetch");if(i)switch(t){case 0:{c.append("Range",`bytes=${i.from}-${i.to}`);break}case 1:{let k=new URL(l,location.href);k.searchParams.append("bytes",`${i.from}-${i.to}`),l=k.toString();break}default:(0,J.assertNever)(t)}this.requestQuic&&(l=Di(l));let d=this.abortAllController.signal,h;if(n){let k=new pe;if(h=(0,J.merge)((0,J.fromEvent)(this.abortAllController.signal,"abort"),(0,J.fromEvent)(n,"abort")).subscribe(()=>{try{k.abort()}catch(R){Eo(R)}}),this.abortAllController.signal.aborted||n.aborted)try{k.abort()}catch(R){Eo(R)}d=k.signal}let m=(0,J.now)();p.log("startRequest",(0,J.flattenObject)({url:l,priority:a,rangeMethod:t,range:i,isLowLatency:u,requestStartedAt:m}));let g=yield this.doFetch(l,{priority:a,headers:c,signal:d}),y=(0,J.now)();if(!g)return p.error("error",{message:"No response in request"}),p.end(),this.unsubscribeAbortSubscription(h),null;if(this.throughputEstimator?.addRawRtt(y-m),!g.ok||!g.body){this.unsubscribeAbortSubscription(h);let k=`Fetch error ${g.status}: ${g.statusText}`;return p.error("error",{message:k}),p.end(),Promise.reject(new Error(`Fetch error ${g.status}: ${g.statusText}`))}if(this.onHeadersReceived(g.headers),!r&&!o){this.unsubscribeAbortSubscription(h);let k=(0,J.now)(),R={requestStartedAt:m,requestEndedAt:k,duration:k-m};return p.log("endRequest",(0,J.flattenObject)(R)),p.end(),g.arrayBuffer()}let T=g.body;if(o){let k;[T,k]=g.body.tee(),this.throughputEstimator?.trackStream(k,u)}let A=T.getReader(),x,M=parseInt(g.headers.get("content-length")??"",10);Number.isFinite(M)&&(x=M),!x&&i&&(x=i.to-i.from+1);let $=0,F=x?new Uint8Array(x):new Uint8Array(0),G=!1,B=k=>{this.unsubscribeAbortSubscription(h),G=!0,Eo(k)},D=(0,J.abortable)(d,async function*({done:k,value:R}){if($===0&&this.lastRequestFirstBytes$.next((0,J.now)()-m),d.aborted){this.unsubscribeAbortSubscription(h);return}if(!k&&R){if(x)F.set(R,$),$+=R.byteLength;else{let V=new Uint8Array(F.length+R.length);V.set(F),V.set(R,F.length),F=V,$+=R.byteLength}r?.(new DataView(F.buffer),$),yield A?.read().then(D,B)}}.bind(this));yield A?.read().then(D,B),this.unsubscribeAbortSubscription(h);let I=(0,J.now)(),j={failed:G,requestStartedAt:m,requestEndedAt:I,duration:I-m};return G?(p.error("endRequest",(0,J.flattenObject)(j)),p.end(),null):(p.log("endRequest",(0,J.flattenObject)(j)),p.end(),F.buffer)}.bind(this));this.fetchByteRangeRepresentation=(0,J.abortable)(this.abortAllController.signal,async function*(e,t,i){if(e.type!=="byteRange")return null;let{from:r,to:a}=e.initRange,n=r,o=a,u=!1,l,c;e.indexRange&&(l=e.indexRange.from,c=e.indexRange.to,u=a+1===l,u&&(n=Math.min(l,r),o=Math.max(c,a))),n=Math.min(n,0);let p=yield this.fetch(e.url,{range:{from:n,to:o},priority:i,measureThroughput:!1});if(!p)return null;let d=new DataView(p,r-n,a-n+1);if(!t.validateData(d))throw new Error("Invalid media file");let h=t.parseInit(d),m=e.indexRange??t.getIndexRange(h);if(!m)throw new ReferenceError("No way to load representation index");let g;if(u)g=new DataView(p,m.from-n,m.to-m.from+1);else{let T=yield this.fetch(e.url,{range:m,priority:i,measureThroughput:!1});if(!T)return null;g=new DataView(T)}let y=t.parseSegments(g,h,m);return{init:h,dataView:new DataView(p),segments:y}}.bind(this));this.fetchTemplateRepresentation=(0,J.abortable)(this.abortAllController.signal,async function*(e,t){if(e.type!=="template")return null;let i=new URL(e.initUrl,e.baseUrl).toString(),r=yield this.fetch(i,{priority:t,measureThroughput:!1});return r?{init:null,segments:e.segments.map(n=>({...n,status:"none",size:void 0})),dataView:new DataView(r)}:null}.bind(this));this.throughputEstimator=e,this.requestQuic=t,this.compatibilityMode=r,this.tracer=i.createComponentTracer("Fetcher"),this.useEnableSubtitlesParam=a}onHeadersReceived(e){let{type:t,reused:i}=so(e);this.lastConnectionType$.next(t),this.lastConnectionReused$.next(i)}async fetchRepresentation(e,t,i="auto"){let{type:r}=e;switch(r){case"byteRange":return await this.fetchByteRangeRepresentation(e,t,i)??null;case"template":return await this.fetchTemplateRepresentation(e,i)??null;default:(0,J.assertNever)(r)}}destroy(){this.abortAllController.abort(),this.tracer.end(),this.subscription.unsubscribe()}async doFetch(e,t){let i=await Bt(e,t);if(i.ok)return i;let r=await i.text(),a=parseInt(r);if(!isNaN(a))switch(a){case 1:this.recoverableError$.next({id:"VideoDataLinkExpiredError",message:"Video data links have expired",category:J.ErrorCategory.FATAL});break;case 8:this.recoverableError$.next({id:"VideoDataLinkBlockedForFloodError",message:"Url blocked for flood",category:J.ErrorCategory.FATAL});break;case 18:this.recoverableError$.next({id:"VideoDataLinkIllegalIpChangeError",message:"Client IP has changed",category:J.ErrorCategory.FATAL});break;case 21:this.recoverableError$.next({id:"VideoDataLinkIllegalHostChangeError",message:"Request HOST has changed",category:J.ErrorCategory.FATAL});break;default:this.error$.next({id:"GeneralVideoDataFetchError",message:`Generic video data fetch error (${a})`,category:J.ErrorCategory.FATAL})}}unsubscribeAbortSubscription(e){e&&(e.unsubscribe(),this.subscription.remove(e))}},Eo=s=>{if(!Oa(s))throw s};var wo=require("@vkontakte/videoplayer-shared");var Na=class s{constructor(e,t){this.currentRepresentation$=new wo.ValueSubject(null);this.maxRepresentations=4;this.representationsCursor=0;this.representations=[];this.currentSegment=null;this.getCurrentPosition=t.getCurrentPosition,this.processStreams(e)}updateLive(e){this.processStreams(e?.streams.text)}seekLive(e){this.processStreams(e)}maintain(e=this.getCurrentPosition()){if(!(0,wo.isNullable)(e))for(let t of this.representations)for(let i of t){let r=i.segmentReference,a=r.segments.length,n=r.segments[0].time.from,o=r.segments[a-1].time.to;if(e<n||e>o)continue;let u=r.segments.find(l=>l.time.from<=e&&l.time.to>=e);!u||this.currentSegment?.time.from===u.time.from&&this.currentSegment.time.to===u.time.to||(this.currentSegment=u,this.currentRepresentation$.next({...i,label:"Live Text",language:"ru",isAuto:!0,url:new URL(u.url,r.baseUrl).toString()}))}}destroy(){this.currentRepresentation$.next(null),this.currentSegment=null,this.representations=[]}processStreams(e){for(let t of e??[]){let i=s.filterRepresentations(t.representations);if(i){this.representations[this.representationsCursor]=i,this.representationsCursor=(this.representationsCursor+1)%this.maxRepresentations;break}}}static isSupported(e){return!!e?.some(t=>s.filterRepresentations(t.representations))}static filterRepresentations(e){return e?.filter(t=>t.kind==="text"&&"segmentReference"in t&&ct(t.segmentReference))}};var nM=["timeupdate","progress","play","seeked","stalled","waiting"],oM=["timeupdate","progress","loadeddata","playing","seeked"];var Ao=class{constructor(e){this.element=null;this.manifestUrlString="";this.source=null;this.manifest=null;this.subscription=new S.Subscription;this.representationSubscription=new S.Subscription;this.state$=new K("none");this.currentVideoRepresentation$=new S.ValueSubject(void 0);this.currentVideoRepresentationInit$=new S.ValueSubject(void 0);this.currentAudioRepresentation$=new S.ValueSubject(void 0);this.currentVideoSegmentLength$=new S.ValueSubject(0);this.currentAudioSegmentLength$=new S.ValueSubject(0);this.error$=new S.Subject;this.lastConnectionType$=new S.ValueSubject(void 0);this.lastConnectionReused$=new S.ValueSubject(void 0);this.lastRequestFirstBytes$=new S.ValueSubject(void 0);this.currentLiveTextRepresentation$=new S.ValueSubject(null);this.isLive$=new S.ValueSubject(!1);this.isActiveLive$=new S.ValueSubject(!1);this.isLowLatency$=new S.ValueSubject(!1);this.liveDuration$=new S.ValueSubject(0);this.liveSeekableDuration$=new S.ValueSubject(0);this.liveAvailabilityStartTime$=new S.ValueSubject(0);this.liveStreamStatus$=new S.ValueSubject(void 0);this.bufferLength$=new S.ValueSubject(0);this.liveLatency$=new S.ValueSubject(void 0);this.liveLoadBufferLength$=new S.ValueSubject(0);this.livePositionFromPlayer$=new S.ValueSubject(0);this.currentStallDuration$=new S.ValueSubject(0);this.videoLastDataObtainedTimestamp$=new S.ValueSubject(0);this.fetcherRecoverableError$=new S.Subject;this.fetcherError$=new S.Subject;this.liveStreamEndTimestamp=0;this.isUpdatingLive=!1;this.isJumpGapAfterSeekLive=!1;this.forceEnded$=new S.Subject;this.gapWatchdogActive=!1;this.destroyController=new pe;this.initManifest=(0,S.abortable)(this.destroyController.signal,async function*(e,t,i){this.tracer.log("initManifest"),this.element=e,this.manifestUrlString=$e(t,i,2),this.state$.startTransitionTo("manifest_ready"),this.manifest=yield this.updateManifest(),this.manifest?.streams.video.length?this.state$.setState("manifest_ready"):this.error$.next({id:"NoRepresentations",category:S.ErrorCategory.PARSER,message:"No playable video representations"})}.bind(this));this.updateManifest=(0,S.abortable)(this.destroyController.signal,async function*(){this.tracer.log("updateManifestStart",{manifestUrl:this.manifestUrlString});let e=yield this.fetcher.fetchManifest(this.manifestUrlString).catch(n=>{!this.manifest&&!this.bufferLength$.getValue()&&this.error$.next({id:"LoadManifest",category:S.ErrorCategory.NETWORK,message:"Failed to load manifest",thrown:n})});if(!e)return null;let t=null;try{t=Hv(e??"",this.manifestUrlString)}catch(n){let o=eo(e)??{id:"ManifestParsing",category:S.ErrorCategory.PARSER,message:"Failed to parse MPD manifest",thrown:n};this.error$.next(o)}if(!t)return null;let i=(n,o,u)=>!!(this.element?.canPlayType?.(o)&&Rt()?.isTypeSupported?.(`${o}; codecs="${u}"`)||n==="text");if(t.live){this.isLive$.next(!!t.live);let{availabilityStartTime:n,latestSegmentPublishTime:o,streamIsUnpublished:u,streamIsAlive:l}=t.live,c=(t.duration??0)/1e3;this.liveSeekableDuration$.next(-1*c),this.liveDuration$.next((o-n)/1e3),this.liveAvailabilityStartTime$.next(t.live.availabilityStartTime);let p="active";l||(p=u?"unpublished":"unexpectedly_down"),this.liveStreamStatus$.next(p)}let r={text:t.streams.text,video:[],audio:[]};for(let n of["video","audio"]){let u=t.streams[n].filter(({mime:p,codecs:d})=>i(n,p,d)),l=new Set(u.map(({codecs:p})=>p)),c=mo(l);if(c&&(r[n]=u.filter(({codecs:p})=>p.startsWith(c))),n==="video"){let p=this.tuning.preferHDR,d=r.video.some(m=>m.hdr),h=r.video.some(m=>!m.hdr);W.display.isHDR&&p&&d?r.video=r.video.filter(m=>m.hdr):h&&(r.video=r.video.filter(m=>!m.hdr))}}let a={...t,streams:r};return this.tracer.log("updateManifestEnd",(0,S.flattenObject)(a)),a}.bind(this));this.initRepresentations=(0,S.abortable)(this.destroyController.signal,async function*(e,t,i){this.tracer.log("initRepresentationsStart",(0,S.flattenObject)({initialVideo:e,initialAudio:t,sourceHls:i})),(0,S.assertNonNullable)(this.manifest),(0,S.assertNonNullable)(this.element),this.representationSubscription.unsubscribe(),this.representationSubscription=new S.Subscription,this.state$.startTransitionTo("representations_ready");let r=d=>{this.representationSubscription.add((0,S.fromEvent)(d,"error").pipe((0,S.filter)(h=>!!this.element?.played.length)).subscribe(h=>{this.error$.next({id:"VideoSource",category:S.ErrorCategory.VIDEO_PIPELINE,message:"Unexpected video source error",thrown:h})}))};this.source=this.tuning.useManagedMediaSource?Fn():new MediaSource;let a=document.createElement("source");if(r(a),a.src=URL.createObjectURL(this.source),this.element.appendChild(a),this.tuning.useManagedMediaSource&&wr())if(i){let d=document.createElement("source");r(d),d.type="application/x-mpegurl",d.src=i.url,this.element.appendChild(d)}else this.element.disableRemotePlayback=!0;this.isActiveLive$.next(this.isLive$.getValue());let n={fetcher:this.fetcher,tuning:this.tuning,getCurrentPosition:()=>this.element?this.element.currentTime*1e3:void 0,isActiveLowLatency:()=>this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),manifest:this.manifest},o=this.manifest.streams.video.reduce((d,h)=>[...d,...h.representations],[]);if(this.videoBufferManager=new Fa("video",this.source,o,n),this.bufferManagers=[this.videoBufferManager],(0,S.isNonNullable)(t)){let d=this.manifest.streams.audio.reduce((h,m)=>[...h,...m.representations],[]);this.audioBufferManager=new Fa("audio",this.source,d,n),this.bufferManagers.push(this.audioBufferManager)}Na.isSupported(this.manifest.streams.text)&&!this.isLowLatency$.getValue()&&(this.liveTextManager=new Na(this.manifest.streams.text,n)),this.representationSubscription.add(this.fetcher.lastConnectionType$.subscribe(this.lastConnectionType$)),this.representationSubscription.add(this.fetcher.lastConnectionReused$.subscribe(this.lastConnectionReused$)),this.representationSubscription.add(this.fetcher.lastRequestFirstBytes$.subscribe(this.lastRequestFirstBytes$));let u=()=>{this.stallWatchdogSubscription?.unsubscribe(),this.currentStallDuration$.next(0)};if(this.representationSubscription.add((0,S.merge)(...oM.map(d=>(0,S.fromEvent)(this.element,d))).pipe((0,S.map)(d=>this.element?Qe(this.element.buffered,this.element.currentTime*1e3):0),(0,S.filterChanged)(),(0,S.tap)(d=>{d>this.tuning.dash.bufferEmptinessTolerance&&u()})).subscribe(this.bufferLength$)),this.representationSubscription.add((0,S.merge)((0,S.fromEvent)(this.element,"ended"),this.forceEnded$).subscribe(()=>{u()})),this.isLive$.getValue()){this.subscription.add(this.liveDuration$.pipe((0,S.filterChanged)()).subscribe(h=>this.liveStreamEndTimestamp=(0,S.now)())),this.subscription.add((0,S.fromEvent)(this.element,"pause").subscribe(()=>{this.livePauseWatchdogSubscription=(0,S.interval)(1e3).subscribe(h=>{let m=ki(this.manifestUrlString,2);this.manifestUrlString=$e(this.manifestUrlString,m+1e3,2),this.liveStreamStatus$.getValue()==="active"&&this.updateManifest()}),this.subscription.add(this.livePauseWatchdogSubscription)})).add((0,S.fromEvent)(this.element,"play").subscribe(h=>this.livePauseWatchdogSubscription?.unsubscribe())),this.representationSubscription.add((0,S.combine)({isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe((0,S.map)(({isActiveLive:h,isLowLatency:m})=>h&&m),(0,S.filterChanged)()).subscribe(h=>{this.isManualDecreasePlaybackInLive()||Fr(this.element,1)})),this.representationSubscription.add((0,S.combine)({bufferLength:this.bufferLength$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe((0,S.filter)(({bufferLength:h,isActiveLive:m,isLowLatency:g})=>m&&g&&!!h)).subscribe(({bufferLength:h})=>this.liveBuffer.next(h))),this.representationSubscription.add(this.videoBufferManager.currentLowLatencySegmentLength$.subscribe(h=>{if(!this.isActiveLive$.getValue()&&!this.isLowLatency$.getValue()&&!h)return;let m=this.liveSeekableDuration$.getValue()-h/1e3;this.liveSeekableDuration$.next(Math.max(m,-1*this.tuning.dashCmafLive.maxLiveDuration)),this.liveDuration$.next(this.liveDuration$.getValue()+h/1e3)})),this.representationSubscription.add((0,S.combine)({isLive:this.isLive$,rtt:this.throughputEstimator.rtt$,bufferLength:this.bufferLength$,segmentServerLatency:this.videoBufferManager.currentLiveSegmentServerLatency$}).pipe((0,S.filter)(({isLive:h})=>h),(0,S.filterChanged)((h,m)=>m.bufferLength<h.bufferLength),(0,S.map)(({rtt:h,bufferLength:m,segmentServerLatency:g})=>{let y=ki(this.manifestUrlString,2);return(h/2+m+g+y)/1e3})).subscribe(this.liveLatency$)),this.representationSubscription.add((0,S.combine)({liveBuffer:this.liveBuffer.smoothed$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).subscribe(({liveBuffer:h,isActiveLive:m,isLowLatency:g})=>{if(!g||!m)return;let y=this.tuning.dashCmafLive.lowLatency.maxTargetOffset,T=this.tuning.dashCmafLive.lowLatency.maxTargetOffsetDeviation,A=this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup,x=h-y;if(this.isManualDecreasePlaybackInLive())return;let M=1;Math.abs(x)>T&&(M=1+Math.sign(x)*A),Fr(this.element,M)})),this.representationSubscription.add(this.bufferLength$.subscribe(h=>{let m=0;if(h){let g=(this.element?.currentTime??0)*1e3;m=Math.min(...this.bufferManagers.map(T=>T.getLiveSegmentsToLoadState(this.manifest)?.to??g))-g}this.liveLoadBufferLength$.getValue()!==m&&this.liveLoadBufferLength$.next(m)}));let d=0;this.representationSubscription.add((0,S.combine)({liveLoadBufferLength:this.liveLoadBufferLength$,bufferLength:this.bufferLength$}).pipe((0,S.throttle)(1e3)).subscribe(async({liveLoadBufferLength:h,bufferLength:m})=>{if(!this.element||this.isUpdatingLive)return;let g=this.element.playbackRate,y=ki(this.manifestUrlString,2),T=Math.abs(this.livePositionFromPlayer$.getValue())*1e3,A=Math.min(T,this.tuning.dashCmafLive.normalizedTargetMinBufferSize*g),x=this.tuning.dashCmafLive.normalizedActualBufferOffset*g,M=this.tuning.dashCmafLive.normalizedLiveMinBufferSize*g,$=isFinite(h)?h:m,F=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),G=T<=this.tuning.live.activeLiveDelay;this.isActiveLive$.next(G);let B="none";if(F?B="active_low_latency":this.isLowLatency$.getValue()&&G?(this.bufferManagers.forEach(D=>D.proceedLowLatencyLive()),B="active_low_latency"):y!==0&&$<A?B="live_forward_buffering":$<A+M&&(B="live_with_target_offset"),isFinite(h)&&(d=h>d?h:d),B==="live_forward_buffering"||B==="live_with_target_offset"){let D=d-(A+x),I=this.normolizeLiveOffset(Math.trunc(y+D/g)),j=Math.abs(I-y),k=0;!h||j<=this.tuning.dashCmafLive.offsetCalculationError?k=y:I>0&&j>this.tuning.dashCmafLive.offsetCalculationError&&(k=I),this.manifestUrlString=$e(this.manifestUrlString,k,2)}(B==="live_with_target_offset"||B==="live_forward_buffering")&&(d=0,await this.updateLive())},h=>{this.error$.next({id:"updateLive",category:S.ErrorCategory.VIDEO_PIPELINE,thrown:h,message:"Failed to update live with subscription"})}))}let l=(0,S.merge)(...this.bufferManagers.map(d=>d.fullyBuffered$)).pipe((0,S.map)(()=>this.bufferManagers.every(d=>d.fullyBuffered$.getValue()))),c=(0,S.merge)(...this.bufferManagers.map(d=>d.onLastSegment$)).pipe((0,S.map)(()=>this.bufferManagers.some(d=>d.onLastSegment$.getValue()))),p=(0,S.combine)({allBuffersFull:l,someBufferEnded:c}).pipe((0,S.filterChanged)(),(0,S.map)(({allBuffersFull:d,someBufferEnded:h})=>d&&h),(0,S.filter)(d=>d));if(this.representationSubscription.add((0,S.merge)(this.forceEnded$,p).subscribe(()=>{if(this.source&&this.source.readyState==="open"&&Array.from(this.source.sourceBuffers).every(d=>!d.updating))try{this.source?.endOfStream()}catch(d){this.error$.next({id:"EndOfStream",category:S.ErrorCategory.VIDEO_PIPELINE,message:"Failed to end MediaSource stream",thrown:d})}})),this.representationSubscription.add((0,S.merge)(...this.bufferManagers.map(d=>d.error$)).subscribe(this.error$)),this.representationSubscription.add(this.videoBufferManager.playingRepresentation$.subscribe(this.currentVideoRepresentation$)),this.representationSubscription.add(this.videoBufferManager.playingRepresentationInit$.subscribe(this.currentVideoRepresentationInit$)),this.representationSubscription.add(this.videoBufferManager.currentSegmentLength$.subscribe(this.currentVideoSegmentLength$)),this.audioBufferManager&&(this.representationSubscription.add(this.audioBufferManager.playingRepresentation$.subscribe(this.currentAudioRepresentation$)),this.representationSubscription.add(this.audioBufferManager.currentSegmentLength$.subscribe(this.currentAudioSegmentLength$))),this.liveTextManager&&this.representationSubscription.add(this.liveTextManager.currentRepresentation$.subscribe(this.currentLiveTextRepresentation$)),this.source.readyState!=="open"){let d=this.tuning.dash.sourceOpenTimeout>=0;yield new Promise((h,m)=>{d&&(this.timeoutSourceOpenId=setTimeout(()=>{if(this.source?.readyState==="open"){h();return}this.tuning.dash.rejectOnSourceOpenTimeout?m(new Error("Timeout reject when wait sourceopen event")):h()},this.tuning.dash.sourceOpenTimeout)),this.source?.addEventListener("sourceopen",()=>{this.timeoutSourceOpenId&&clearTimeout(this.timeoutSourceOpenId),h()},{once:!0})})}if(!this.isLive$.getValue()){let d=[this.manifest.duration??0,...(0,Mc.default)((0,Mc.default)([...this.manifest.streams.audio,...this.manifest.streams.video],h=>h.representations),h=>{let m=[];return h.duration&&m.push(h.duration),ct(h.segmentReference)&&h.segmentReference.totalSegmentsDurationMs&&m.push(h.segmentReference.totalSegmentsDurationMs),m})];this.source.duration=Math.max(...d)/1e3}this.audioBufferManager&&(0,S.isNonNullable)(t)?yield Promise.all([this.videoBufferManager.startWith(e),this.audioBufferManager.startWith(t)]):yield this.videoBufferManager.startWith(e),this.state$.setState("representations_ready"),this.tracer.log("initRepresentationsEnd")}.bind(this));this.tick=()=>{if(!this.element||!this.videoBufferManager||this.source?.readyState!=="open")return;let e=this.element.currentTime*1e3;this.videoBufferManager.maintain(e),this.audioBufferManager?.maintain(e),this.liveTextManager?.maintain(e),(this.videoBufferManager.gaps.length||this.audioBufferManager?.gaps.length)&&!this.gapWatchdogActive&&(this.gapWatchdogActive=!0,this.gapWatchdogSubscription=(0,S.interval)(this.tuning.gapWatchdogInterval).subscribe(()=>this.jumpGap(),t=>{this.error$.next({id:"GapWatchdog",category:S.ErrorCategory.WTF,message:"Error handling gaps",thrown:t})}),this.subscription.add(this.gapWatchdogSubscription))};this.throughputEstimator=e.throughputEstimator,this.tuning=e.tuning,this.tracer=e.tracer.createComponentTracer(this.constructor.name),this.fetcher=new Po({throughputEstimator:this.throughputEstimator,requestQuic:this.tuning.requestQuick,compatibilityMode:e.compatibilityMode,tracer:this.tracer,useEnableSubtitlesParam:e.tuning.useEnableSubtitlesParam}),this.subscription.add(this.fetcher.recoverableError$.subscribe(this.fetcherRecoverableError$)),this.subscription.add(this.fetcher.error$.subscribe(this.fetcherError$)),this.liveBuffer=vi.getLiveBufferSmoothedValue(this.tuning.dashCmafLive.lowLatency.maxTargetOffset,{...e.tuning.dashCmafLive.lowLatency.bufferEstimator}),this.initTracerSubscription()}async seekLive(e){(0,S.assertNonNullable)(this.element);let t=this.liveStreamStatus$.getValue()!=="active"?(0,S.now)()-this.liveStreamEndTimestamp:0,i=this.normolizeLiveOffset(e+t);this.isActiveLive$.next(i===0),this.manifestUrlString=$e(this.manifestUrlString,i,2),this.manifest=await this.updateManifest(),this.manifest&&(this.isJumpGapAfterSeekLive=!0,await this.videoBufferManager?.seekLive(this.manifest.streams.video),await this.audioBufferManager?.seekLive(this.manifest.streams.audio),this.liveTextManager?.seekLive(this.manifest.streams.text))}initBuffer(){(0,S.assertNonNullable)(this.element),this.state$.setState("running"),this.subscription.add((0,S.merge)(...nM.map(e=>(0,S.fromEvent)(this.element,e)),(0,S.fromEvent)(window,"online")).subscribe(()=>this.tick(),e=>{this.error$.next({id:"DashVKPlayer",category:S.ErrorCategory.WTF,message:"Internal logic error",thrown:e})})),this.subscription.add((0,S.fromEvent)(this.element,"progress").subscribe(()=>{this.element&&this.element.readyState===HTMLMediaElement.HAVE_CURRENT_DATA&&!this.element.seeking&&(this.element.currentTime=this.element.currentTime)})),this.subscription.add((0,S.fromEvent)(this.element,"waiting").subscribe(()=>{this.element&&this.element.readyState===HTMLMediaElement.HAVE_CURRENT_DATA&&!this.element.seeking&&tt(this.element.buffered,this.element.currentTime*1e3)&&(this.element.currentTime=this.element.currentTime);let e=()=>{if(!this.element||this.source?.readyState!=="open")return;let t=this.currentStallDuration$.getValue();t+=50,this.currentStallDuration$.next(t);let i={timeInWaiting:t},r=(0,S.now)(),a=100,n=this.videoBufferManager?.lastDataObtainedTimestamp??0;this.videoLastDataObtainedTimestamp$.next(n);let o=this.audioBufferManager?.lastDataObtainedTimestamp??0,u=this.videoBufferManager?.getForwardBufferDuration()??0,l=this.audioBufferManager?.getForwardBufferDuration()??0,c=u<a&&r-n>this.tuning.dash.crashOnStallTWithoutDataTimeout,p=this.audioBufferManager&&l<a&&r-o>this.tuning.dash.crashOnStallTWithoutDataTimeout;if((c||p)&&t>this.tuning.dash.crashOnStallTWithoutDataTimeout||t>=this.tuning.dash.crashOnStallTimeout)throw new Error(`Stall timeout exceeded: ${t} ms`);if(this.isLive$.getValue()&&t%2e3===0){let d=this.normolizeLiveOffset(-1*this.livePositionFromPlayer$.getValue()*1e3);this.seekLive(d).catch(h=>{this.error$.next({id:"stallIntervalCallback",category:S.ErrorCategory.VIDEO_PIPELINE,message:"stallIntervalCallback failed",thrown:h})}),i.liveLastOffset=d}else{let d=this.element.currentTime*1e3;this.videoBufferManager?.maintain(d),this.audioBufferManager?.maintain(d),i.position=d}this.tracer.log("stallIntervalCallback",(0,S.flattenObject)(i))};this.stallWatchdogSubscription?.unsubscribe(),this.stallWatchdogSubscription=(0,S.interval)(50).subscribe(e,t=>{this.error$.next({id:"StallWatchdogCallback",category:S.ErrorCategory.NETWORK,message:"Can't restore DASH after stall.",thrown:t})}),this.subscription.add(this.stallWatchdogSubscription)})),this.tick()}async switchRepresentation(e,t,i=!1){let r={video:this.videoBufferManager,audio:this.audioBufferManager,text:null}[e];return this.tuning.useNewSwitchTo?this.currentStallDuration$.getValue()>0?r?.switchToWithPreviousAbort(t,i):r?.switchTo(t,i):r?.switchToOld(t,i)}async seek(e,t){(0,S.assertNonNullable)(this.element),(0,S.assertNonNullable)(this.videoBufferManager);let i;t||this.element.duration*1e3<=this.tuning.dashSeekInSegmentDurationThreshold||Math.abs(this.element.currentTime*1e3-e)<=this.tuning.dashSeekInSegmentAlwaysSeekDelta?i=e:i=Math.max(this.videoBufferManager.findSegmentStartTime(e)??e,this.audioBufferManager?.findSegmentStartTime(e)??e),this.warmUpMediaSourceIfNeeded(i),tt(this.element.buffered,i)||await Promise.all([this.videoBufferManager.abort(),this.audioBufferManager?.abort()]),!((0,S.isNullable)(this.element)||(0,S.isNullable)(this.videoBufferManager))&&(this.videoBufferManager.maintain(i),this.audioBufferManager?.maintain(i),this.element.currentTime=i/1e3,this.tracer.log("seek",(0,S.flattenObject)({requestedPosition:e,forcePrecise:t,position:i})))}warmUpMediaSourceIfNeeded(e=this.element?.currentTime){(0,S.isNonNullable)(this.element)&&(0,S.isNonNullable)(this.source)&&(0,S.isNonNullable)(e)&&this.source?.readyState==="ended"&&this.element.duration*1e3-e>this.tuning.dash.seekBiasInTheEnd&&this.bufferManagers.forEach(t=>t.warmUpMediaSource())}get isStreamEnded(){return this.source?.readyState==="ended"}stop(){this.tracer.log("stop"),this.element?.querySelectorAll("source").forEach(e=>{URL.revokeObjectURL(e.src),e.remove()}),this.element=null,this.source=null,this.manifest=null,this.currentVideoRepresentation$.next(void 0),this.videoBufferManager?.destroy(),this.videoBufferManager=null,this.audioBufferManager?.destroy(),this.audioBufferManager=null,this.bufferManagers=[],this.state$.setState("none")}setBufferTarget(e){for(let t of this.bufferManagers)t.setTarget(e)}getStreams(){return this.manifest?.streams}setPreloadOnly(e){for(let t of this.bufferManagers)t.setPreloadOnly(e)}destroy(){this.subscription.unsubscribe(),this.representationSubscription.unsubscribe(),this.timeoutSourceOpenId&&clearTimeout(this.timeoutSourceOpenId),this.destroyController.abort(),this.fetcher.destroy(),this.stop(),this.source?.readyState==="open"&&Array.from(this.source.sourceBuffers).every(e=>!e.updating)&&this.source.endOfStream(),this.source=null,this.tracer.end()}initTracerSubscription(){let e=(0,S.getTraceSubscriptionMethod)(this.tracer.error.bind(this.tracer));this.subscription.add(this.error$.subscribe(e("error")))}isManualDecreasePlaybackInLive(){return!this.element||!this.isLive$.getValue()?!1:1-this.element.playbackRate>this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup}normolizeLiveOffset(e){return Math.trunc(e/1e3)*1e3}async updateLive(){this.isUpdatingLive=!0,this.manifest=await this.updateManifest(),this.manifest&&(this.bufferManagers?.forEach(e=>e.updateLive(this.manifest)),this.liveTextManager?.updateLive(this.manifest)),this.isUpdatingLive=!1}jumpGap(){if(!this.element||!this.videoBufferManager)return;let e=this.videoBufferManager.getBufferedTo();if(e===null)return;let t=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue();this.isJumpGapAfterSeekLive&&!t&&this.element.currentTime>e&&(this.isJumpGapAfterSeekLive=!1,this.element.currentTime=0);let i=this.element.currentTime*1e3,r=null,a=this.element.readyState===HTMLMediaElement.HAVE_METADATA?this.tuning.endGapTolerance:0;for(let n of this.bufferManagers)for(let o of n.gaps)n.playingRepresentation$.getValue()===o.representation&&o.from-a<=i&&o.to+a>i&&(this.element.duration*1e3-o.to<this.tuning.endGapTolerance?r=1/0:(r===null||o.to>r)&&(r=o.to));if(r!==null){let n=r+10;this.gapWatchdogSubscription.unsubscribe(),this.gapWatchdogActive=!1,n===1/0?this.forceEnded$.next():(this.element.currentTime=n/1e3,this.tracer.log("jumpGap",(0,S.flattenObject)({isJumpGapAfterSeekLive:this.isJumpGapAfterSeekLive,isActiveLowLatency:t,initialCurrentTime:this.element.currentTime,jumpTo:n,resultCurrentTime:this.element.currentTime})))}}};var mt=require("@vkontakte/videoplayer-shared"),ko=class{constructor(){this.subscription=new mt.Subscription;this.pipSize$=new mt.ValueSubject(void 0);this.videoSize$=new mt.ValueSubject(void 0);this.elementSize$=new mt.ValueSubject(void 0);this.pictureInPictureWindowRemoveEventListener=mt.noop}connect({observableVideo:e,video:t}){let i=r=>{let a=r.target;this.pipSize$.next({width:a.width,height:a.height})};this.subscription.add((0,mt.observeElementSize)(t).subscribe(this.videoSize$)).add(e.enterPip$.subscribe(({pictureInPictureWindow:r})=>{this.pipSize$.next({width:r.width,height:r.height}),r.addEventListener("resize",i),this.pictureInPictureWindowRemoveEventListener=()=>{r.removeEventListener("resize",i)}})).add(e.leavePip$.subscribe(()=>{this.pictureInPictureWindowRemoveEventListener()})).add((0,mt.combine)({videoSize:this.videoSize$,pipSize:this.pipSize$,inPip:e.inPiP$}).pipe((0,mt.map)(({videoSize:r,inPip:a,pipSize:n})=>a?n:r)).subscribe(this.elementSize$))}getValue(){return this.elementSize$.getValue()}subscribe(e,t){return this.elementSize$.subscribe(e,t)}getObservable(){return this.elementSize$}destroy(){this.pictureInPictureWindowRemoveEventListener(),this.subscription.unsubscribe()}};var ar=class{constructor(e){this.subscription=new ie.Subscription;this.videoState=new K("stopped");this.droppedFramesManager=new Lr;this.stallsManager=new yo;this.elementSizeManager=new ko;this.videoTracksMap=new Map;this.audioTracksMap=new Map;this.textTracksMap=new Map;this.videoStreamsMap=new Map;this.audioStreamsMap=new Map;this.videoTrackSwitchHistory=new Mi;this.audioTrackSwitchHistory=new Mi;this.selectedRepresentations={audio:null,video:null};this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),i=this.params.desiredState.playbackState.getTransition(),r=this.params.desiredState.seekState.getState();if(!this.videoState.getTransition()){if(r.state==="requested"&&i?.to!=="paused"&&e!=="stopped"&&t!=="stopped"&&this.seek(r.position,r.forcePrecise),t==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.player.stop(),this.video.load(),this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),C(this.params.desiredState.playbackState,"stopped",!0));return}switch(e){case"stopped":this.videoState.startTransitionTo("ready"),this.prepare();return;case"ready":t==="paused"?(this.videoState.setState("paused"),C(this.params.desiredState.playbackState,"paused")):t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):i?.to==="ready"&&C(this.params.desiredState.playbackState,"ready");return;case"playing":t==="paused"?(this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()):t==="playing"&&this.video.paused?this.playIfAllowed():i?.to==="playing"&&C(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):i?.to==="paused"&&C(this.params.desiredState.playbackState,"paused");return;default:return(0,ie.assertNever)(e)}}};this.init3DScene=e=>{if(this.scene3D)return;this.scene3D=new Nr(this.params.container,this.video,{fov:this.params.tuning.spherical.fov,orientation:this.params.tuning.spherical.orientation||{x:e.projectionData?.pose.yaw||0,y:e.projectionData?.pose.pitch||0,z:e.projectionData?.pose.roll||0},rotationSpeed:this.params.tuning.spherical.rotationSpeed,maxYawAngle:this.params.tuning.spherical.maxYawAngle,rotationSpeedCorrection:this.params.tuning.spherical.rotationSpeedCorrection,degreeToPixelCorrection:this.params.tuning.spherical.degreeToPixelCorrection,speedFadeTime:this.params.tuning.spherical.speedFadeTime,speedFadeThreshold:this.params.tuning.spherical.speedFadeThreshold});let t=this.elementSizeManager.getValue();t&&this.scene3D.setViewportSize(t.width,t.height)};this.destroy3DScene=()=>{this.scene3D&&(this.scene3D.destroy(),this.scene3D=void 0)};this.textTracksManager=new pt(e.source.url),this.params=e,this.video=Ke(e.container,e.tuning),this.tracer=e.dependencies.tracer.createComponentTracer(this.constructor.name),this.params.output.element$.next(this.video),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(Ne(this.params.source.url)),this.params.output.isLive$.next(!1),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.player=new Ao({throughputEstimator:this.params.dependencies.throughputEstimator,tuning:this.params.tuning,compatibilityMode:this.params.source.compatibilityMode,tracer:this.tracer}),this.subscribe()}getProviderSubscriptionInfo(){let{output:e,desiredState:t}=this.params,i=Ze(this.video);this.subscription.add(()=>i.destroy());let r=this.constructor.name,a=o=>{e.error$.next({id:r,category:ie.ErrorCategory.WTF,message:`${r} internal logic error`,thrown:o})};return{output:e,desiredState:t,observableVideo:i,genericErrorListener:a,connect:(o,u)=>this.subscription.add(o.subscribe(u,a))}}subscribe(){let{output:e,desiredState:t,observableVideo:i,genericErrorListener:r,connect:a}=this.getProviderSubscriptionInfo();this.subscription.add(this.params.output.availableVideoTracks$.pipe((0,ie.filter)(l=>!!l.length),(0,ie.once)()).subscribe(l=>{this.droppedFramesManager.connect({logger:this.params.dependencies.logger,video:this.video,droppedFramesChecker:this.params.tuning.droppedFramesChecker,isAuto:this.params.desiredState.autoVideoTrackSwitching,playing$:i.playing$,pause$:i.pause$,tracks:l})}));let n=this.params.desiredState.seekState.stateChangeEnded$.pipe((0,ie.map)(l=>l.to.state!=="none"),(0,ie.filterChanged)());this.stallsManager.connect({isSeeked$:n,currentStallDuration$:this.player.currentStallDuration$,videoLastDataObtainedTimestamp$:this.player.videoLastDataObtainedTimestamp$,throughput$:this.params.dependencies.throughputEstimator.throughput$,rtt$:this.params.dependencies.throughputEstimator.rtt$,tuning:this.params.tuning.stallsManager,abrParams:this.params.tuning.autoTrackSelection,isBuffering$:i.isBuffering$,looped$:i.looped$,playing$:i.playing$}),a(i.ended$,e.endedEvent$),a(i.looped$,e.loopedEvent$),a(i.error$,e.error$),a(i.isBuffering$,e.isBuffering$),a(i.currentBuffer$,e.currentBuffer$),a(i.playing$,e.firstFrameEvent$),a(i.canplay$,e.canplay$),a(i.inPiP$,e.inPiP$),a(i.inFullscreen$,e.inFullscreen$),a(i.loadedMetadata$,e.loadedMetadataEvent$),a(this.player.error$,e.error$),a(this.player.fetcherRecoverableError$,e.fetcherRecoverableError$),a(this.player.fetcherError$,e.fetcherError$),a(this.player.lastConnectionType$,e.httpConnectionType$),a(this.player.lastConnectionReused$,e.httpConnectionReused$),a(this.player.isLive$,e.isLive$),a(this.player.lastRequestFirstBytes$.pipe((0,ie.filter)(ie.isNonNullable),(0,ie.once)()),e.firstBytesEvent$),a(this.stallsManager.severeStallOccurred$,e.severeStallOccurred$),a(this.videoState.stateChangeEnded$.pipe((0,ie.map)(l=>l.to)),this.params.output.playbackState$),this.subscription.add(i.loopExpected$.subscribe(l=>{t.seekState.setState({state:"requested",position:0,forcePrecise:!1})})),this.subscription.add(i.looped$.subscribe(()=>this.player.warmUpMediaSourceIfNeeded(),r)),this.subscription.add(i.seeked$.subscribe(e.seekedEvent$,r)),this.subscription.add($t(this.video,t.isLooped,r)),this.subscription.add(Je(this.video,t.volume,i.volumeState$,r)),this.subscription.add(i.volumeState$.subscribe(this.params.output.volume$,r)),this.subscription.add(dt(this.video,t.playbackRate,i.playbackRateState$,r)),this.elementSizeManager.connect({video:this.video,observableVideo:i}),a(ht(this.video,{threshold:this.params.tuning.autoTrackSelection.activeVideoAreaThreshold}),e.elementVisible$),this.subscription.add(i.playing$.subscribe(()=>{this.videoState.setState("playing"),C(t.playbackState,"playing"),this.scene3D&&this.scene3D.play()},r)).add(i.pause$.subscribe(()=>{this.videoState.setState("paused"),C(t.playbackState,"paused")},r)).add(i.canplay$.subscribe(()=>{this.videoState.getState()==="playing"&&this.playIfAllowed()},r)),this.subscription.add(this.player.state$.stateChangeEnded$.subscribe(({to:l})=>{if(l==="manifest_ready"){this.videoTracksMap=new Map,this.audioTracksMap=new Map,this.textTracksMap=new Map;let c=this.player.getStreams();if((0,ie.assertNonNullable)(c,"Manifest not loaded or empty"),!this.params.tuning.isAudioDisabled){let d=[];for(let h of c.audio){d.push(Ec(h));let m=[];for(let g of h.representations){let y=Cv(g);m.push(y),this.audioTracksMap.set(y,{stream:h,representation:g})}this.audioStreamsMap.set(h,m)}this.params.output.availableAudioStreams$.next(d)}let p=[];for(let d of c.video){p.push(Pc(d));let h=[];for(let m of d.representations){let g=Dv({...m,streamId:d.id});g&&(h.push(g),this.videoTracksMap.set(g,{stream:d,representation:m}))}this.videoStreamsMap.set(d,h)}this.params.output.availableVideoStreams$.next(p);for(let d of c.text)for(let h of d.representations){let m=Vv(d,h);this.textTracksMap.set(m,{stream:d,representation:h})}this.params.output.availableVideoTracks$.next(Array.from(this.videoTracksMap.keys())),this.params.output.availableAudioTracks$.next(Array.from(this.audioTracksMap.keys())),this.params.output.isAudioAvailable$.next(!!this.audioTracksMap.size),this.audioTracksMap.size&&this.textTracksMap.size&&this.params.desiredState.internalTextTracks.startTransitionTo(Array.from(this.textTracksMap.keys()))}else l==="representations_ready"&&(this.videoState.setState("ready"),this.player.initBuffer())},r)),this.subscription.add((0,ie.merge)(this.player.currentStallDuration$,this.player.state$.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.transitionStarted$,this.params.dependencies.throughputEstimator.rttAdjustedThroughput$,t.autoVideoTrackLimits.stateChangeStarted$,t.videoStream.stateChangeStarted$,t.audioStream.stateChangeStarted$,this.elementSizeManager.getObservable(),this.params.output.elementVisible$,this.droppedFramesManager.onDroopedVideoFramesLimit$,(0,ie.fromEvent)(this.video,"progress")).subscribe(async()=>{let l=this.player.state$.getState(),c=this.player.state$.getTransition();if(l!=="manifest_ready"&&l!=="running"||c)return;t.autoVideoTrackSwitching.getTransition()&&t.autoVideoTrackSwitching.setState(t.autoVideoTrackSwitching.getState()),this.selectVideoAudioRepresentations();let{video:p,audio:d}=this.selectedRepresentations;if(!p)return;let h=sr(this.videoTracksMap.keys(),g=>this.videoTracksMap.get(g)?.representation.id===p.id);(0,ie.isNonNullable)(h)&&(this.stallsManager.lastVideoTrackSelected=h);let m=this.params.desiredState.autoVideoTrackLimits.getTransition();if(m&&this.params.output.autoVideoTrackLimits$.next(m.to),l==="manifest_ready")await this.player.initRepresentations(p.id,d?.id,this.params.sourceHls);else if(await this.player.switchRepresentation("video",p.id),d){let g=!!t.audioStream.getTransition();await this.player.switchRepresentation("audio",d.id,g)}},r)),this.subscription.add(t.cameraOrientation.stateChangeEnded$.subscribe(({to:l})=>{this.scene3D&&l&&this.scene3D.pointCameraTo(l.x,l.y)})),this.subscription.add(this.elementSizeManager.subscribe(l=>{this.scene3D&&l&&this.scene3D.setViewportSize(l.width,l.height)})),this.subscription.add(this.player.currentVideoRepresentation$.pipe((0,ie.filterChanged)()).subscribe(l=>{let c=sr(this.videoTracksMap.entries(),([,{representation:m}])=>m.id===l);if(!c){e.currentVideoTrack$.next(void 0),e.currentVideoStream$.next(void 0);return}let[p,{stream:d}]=c,h=this.params.desiredState.videoStream.getTransition();h&&h.to&&h.to.id===d.id&&this.params.desiredState.videoStream.setState(h.to),e.currentVideoTrack$.next(p),e.currentVideoStream$.next(Pc(d))},r)),this.subscription.add(this.player.currentAudioRepresentation$.pipe((0,ie.filterChanged)()).subscribe(l=>{let c=sr(this.audioTracksMap.entries(),([,{representation:m}])=>m.id===l);if(!c){e.currentAudioStream$.next(void 0);return}let[p,{stream:d}]=c,h=this.params.desiredState.audioStream.getTransition();h&&h.to&&h.to.id===d.id&&this.params.desiredState.audioStream.setState(h.to),e.currentAudioStream$.next(Ec(d))},r)),this.subscription.add(this.player.currentVideoRepresentationInit$.subscribe(l=>{if(l?.is3dVideo&&this.params.tuning.spherical?.enabled)try{this.init3DScene(l),e.is3DVideo$.next(!0)}catch(c){e.warning$.next({id:"DashProvider",message:`DashProvider could not initialize 3D-scene: ${c}`})}else this.destroy3DScene(),this.params.tuning.spherical?.enabled&&e.is3DVideo$.next(!1)},r)),this.subscription.add(this.player.currentVideoSegmentLength$.subscribe(e.currentVideoSegmentLength$,r)),this.subscription.add(this.player.currentAudioSegmentLength$.subscribe(e.currentAudioSegmentLength$,r)),this.textTracksManager.connect(this.video,t,e);let o=t.playbackState.stateChangeStarted$.pipe((0,ie.map)(({to:l})=>l==="ready"),(0,ie.filterChanged)());this.subscription.add((0,ie.merge)(o,t.autoVideoTrackSwitching.stateChangeStarted$,this.player.state$.stateChangeEnded$,(0,ie.observableFrom)(["init"])).subscribe(()=>{let l=t.autoVideoTrackSwitching.getState(),p=t.playbackState.getState()==="ready"?this.params.tuning.dash.forwardBufferTargetPreload:l?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;this.player.setBufferTarget(p)})),this.subscription.add((0,ie.merge)(o,this.player.state$.stateChangeEnded$,(0,ie.observableFrom)(["init"])).subscribe(()=>this.player.setPreloadOnly(t.playbackState.getState()==="ready")));let u=(0,ie.merge)(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,(0,ie.observableFrom)(["init"])).pipe((0,ie.debounce)(0));this.subscription.add(u.subscribe(this.syncPlayback,r))}selectVideoAudioRepresentations(){if(this.player.isStreamEnded)return;let e=this.params.tuning.useNewAutoSelectVideoTrack?Ts:ys,t=this.params.tuning.useNewAutoSelectVideoTrack?Yn:Wn,i=this.params.tuning.useNewAutoSelectVideoTrack?Zt:Qn,{desiredState:r,output:a}=this.params,n=r.autoVideoTrackSwitching.getState(),o=r.videoTrack.getState()?.id,u=sr(this.videoTracksMap.keys(),B=>B.id===o),l=a.currentVideoTrack$.getValue(),c=r.videoStream.getState()??(u&&this.videoTracksMap.get(u)?.stream)??this.videoStreamsMap.size===1?this.videoStreamsMap.keys().next().value:void 0;if(!c)return;let p=sr(this.videoStreamsMap.keys(),B=>B.id===c.id),d=p&&this.videoStreamsMap.get(p);if(!d)return;let h=Qe(this.video.buffered,this.video.currentTime*1e3),m;this.player.isActiveLive$.getValue()?m=this.player.isLowLatency$.getValue()?this.params.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.params.tuning.dashCmafLive.normalizedLiveMinBufferSize:this.player.isLive$.getValue()?m=this.params.tuning.dashCmafLive.normalizedTargetMinBufferSize:m=n?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;let g=(this.video.duration*1e3||1/0)-this.video.currentTime*1e3,y=Math.min(h/Math.min(m,g||1/0),1),T=r.audioStream.getState()??(this.audioStreamsMap.size===1?this.audioStreamsMap.keys().next().value:void 0),A=T?.id&&sr(this.audioStreamsMap.keys(),B=>B.id===T.id)||this.audioStreamsMap.keys().next().value,x=0;if(A){if(u&&!n){let B=e(u,d,this.audioStreamsMap.get(A)??[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);x=Math.max(x,B?.bitrate??-1/0)}if(l){let B=e(l,d,this.audioStreamsMap.get(A)??[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);x=Math.max(x,B?.bitrate??-1/0)}}let M=u;(n||!M)&&(M=i(d,{container:this.elementSizeManager.getValue(),panelSize:this.params.panelSize,estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),tuning:this.stallsManager.abrTuningParams,limits:this.params.desiredState.autoVideoTrackLimits.getState(),reserve:x,forwardBufferHealth:y,current:l,visible:this.params.output.elementVisible$.getValue(),history:this.videoTrackSwitchHistory,playbackRate:this.video.playbackRate,droppedVideoMaxQualityLimit:this.droppedFramesManager.droppedVideoMaxQualityLimit,stallsVideoMaxQualityLimit:this.stallsManager.videoMaxQualityLimit,stallsPredictedThroughput:this.stallsManager.predictedThroughput,abrLogger:this.params.dependencies.abrLogger}));let $=A&&t(M,d,this.audioStreamsMap.get(A)??[],{estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),stallsPredictedThroughput:this.stallsManager.predictedThroughput,tuning:this.stallsManager.abrTuningParams,forwardBufferHealth:y,history:this.audioTrackSwitchHistory,playbackRate:this.video.playbackRate,abrLogger:this.params.dependencies.abrLogger}),F=this.videoTracksMap.get(M)?.representation,G=$&&this.audioTracksMap.get($)?.representation;F&&G?(this.selectedRepresentations.video=F,this.selectedRepresentations.audio=G):F&&!G&&this.audioTracksMap.size===0&&(this.selectedRepresentations.video=F,this.selectedRepresentations.audio=null)}prepare(e=0){this.player.initManifest(this.video,this.params.source.url,e)}playIfAllowed(){et(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),C(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:ie.ErrorCategory.DOM,thrown:e}))}destroy(){this.subscription.unsubscribe(),this.droppedFramesManager.destroy(),this.stallsManager.destroy(),this.elementSizeManager.destroy(),this.destroy3DScene(),this.textTracksManager.destroy(),this.player.destroy(),this.params.output.element$.next(void 0),this.params.output.currentVideoStream$.next(void 0),Xe(this.video),this.tracer.end()}};var Ua=class extends ar{subscribe(){super.subscribe();let{output:e,observableVideo:t,connect:i}=this.getProviderSubscriptionInfo();i(t.timeUpdate$,e.position$),i(t.durationChange$,e.duration$)}seek(e,t){this.params.output.willSeekEvent$.next(),this.player.seek(e,t)}};var be=require("@vkontakte/videoplayer-shared");var qa=class extends ar{constructor(e){super(e),this.textTracksManager.destroy()}subscribe(){super.subscribe();let e=-1,{output:t,observableVideo:i,desiredState:r,connect:a}=this.getProviderSubscriptionInfo();this.params.output.position$.next(0),this.params.output.isLive$.next(!0),a(i.timeUpdate$,t.liveBufferTime$),a(this.player.liveSeekableDuration$,t.duration$),a(this.player.liveLatency$,t.liveLatency$);let n=new be.ValueSubject(1);a(i.playbackRateState$,n),this.subscription.add(this.params.output.position$.subscribe(this.player.livePositionFromPlayer$)).add(r.isLowLatency.stateChangeEnded$.pipe((0,be.map)(o=>o.to)).subscribe(this.player.isLowLatency$)).add((0,be.combine)({liveBufferTime:t.liveBufferTime$,liveAvailabilityStartTime:this.player.liveAvailabilityStartTime$}).pipe((0,be.map)(({liveBufferTime:o,liveAvailabilityStartTime:u})=>o&&u?o+u:void 0)).subscribe(t.liveTime$)).add(this.player.liveStreamStatus$.pipe((0,be.filter)(o=>(0,be.isNonNullable)(o))).subscribe(o=>t.isLiveEnded$.next(o!=="active"&&t.position$.getValue()===0))).add((0,be.combine)({liveDuration:this.player.liveDuration$,liveStreamStatus:this.player.liveStreamStatus$,playbackRate:(0,be.merge)(i.playbackRateState$,new be.ValueSubject(1))}).pipe((0,be.filter)(({liveStreamStatus:o,liveDuration:u})=>o==="active"&&!!u)).subscribe(({liveDuration:o,playbackRate:u})=>{let l=t.liveBufferTime$.getValue(),c=t.position$.getValue(),{playbackCatchupSpeedup:p}=this.params.tuning.dashCmafLive.lowLatency;c||u<1-p||this.video.paused||(0,be.isNullable)(l)||(e=o-l)})).add((0,be.combine)({time:t.liveBufferTime$,liveDuration:this.player.liveDuration$,playbackRate:(0,be.merge)(i.playbackRateState$,new be.ValueSubject(1))}).pipe((0,be.filterChanged)((o,u)=>this.player.liveStreamStatus$.getValue()==="active"?o.liveDuration===u.liveDuration:o.time===u.time)).subscribe(({time:o,liveDuration:u,playbackRate:l})=>{let c=t.position$.getValue(),{playbackCatchupSpeedup:p}=this.params.tuning.dashCmafLive.lowLatency;if(!c&&!this.video.paused&&l>=1-p||(0,be.isNullable)(o)||(0,be.isNullable)(u))return;let d=-1*(u-o-e);t.position$.next(Math.min(d,0))})).add(this.player.currentLiveTextRepresentation$.subscribe(o=>{if(o){let u=Ov(o);this.params.output.availableTextTracks$.next([u])}}))}seek(e){this.params.output.willSeekEvent$.next();let t=-e,i=Math.trunc(t/1e3<=Math.abs(this.params.output.duration$.getValue())?t:0);this.player.seekLive(i).then(()=>{this.params.output.position$.next(e/1e3)})}};var Gv=U(gs(),1);var ae=require("@vkontakte/videoplayer-shared"),Gt={};var Hr=(s,e)=>new ae.Observable(t=>{let i=(r,a)=>t.next(a);return s.on(e,i),()=>s.off(e,i)}),Ha=class{constructor(e){this.subscription=new ae.Subscription;this.videoState=new K("initializing");this.trackLevels=new Map;this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),i=this.params.desiredState.playbackState.getTransition(),r=this.params.desiredState.seekState.getState();if(e!=="initializing")switch(i?.to!=="paused"&&r.state==="requested"&&this.seek(r.position),t){case"stopped":switch(e){case"stopped":break;case"ready":case"playing":case"paused":this.stop();break;default:(0,ae.assertNever)(e)}break;case"ready":switch(e){case"stopped":this.prepare();break;case"ready":case"playing":case"paused":break;default:(0,ae.assertNever)(e)}break;case"playing":switch(e){case"playing":break;case"stopped":this.prepare();break;case"ready":case"paused":this.playIfAllowed();break;default:(0,ae.assertNever)(e)}break;case"paused":switch(e){case"paused":break;case"stopped":this.prepare();break;case"ready":this.videoState.setState("paused"),C(this.params.desiredState.playbackState,"paused");break;case"playing":this.pause();break;default:(0,ae.assertNever)(e)}break;default:(0,ae.assertNever)(t)}};this.textTracksManager=new pt(e.source.url),this.video=Ke(e.container,e.tuning),this.params=e,this.params.output.element$.next(this.video),this.params.output.isLive$.next(!1),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(Ne(this.params.source.url)),this.loadHlsJs()}destroy(){this.subscription.unsubscribe(),this.trackLevels.clear(),this.textTracksManager.destroy(),this.hls?.detachMedia(),this.hls?.destroy(),this.params.output.element$.next(void 0),Xe(this.video)}loadHlsJs(){let e=!1,t=r=>{e||this.params.output.error$.next({id:r==="timeout"?"HlsJsTimeout":"HlsJsLoadError",category:ae.ErrorCategory.NETWORK,message:"Failed to load Hls.js",thrown:r}),e=!0},i=window.setTimeout(()=>t("timeout"),this.params.tuning.dynamicImportTimeout);(0,Gv.default)(import("hls.js").then(r=>{e||(Gt.Hls=r.default,Gt.Events=r.default.Events,this.init())},t),()=>{window.clearTimeout(i),e=!0})}init(){(0,ae.assertNonNullable)(Gt.Hls,"hls.js not loaded"),this.hls=new Gt.Hls({fragLoadingMaxRetry:5,levelLoadingMaxRetry:2,manifestLoadingMaxRetry:2,fragLoadingMaxRetryTimeout:16e3,manifestLoadingMaxRetryTimeout:2e3,levelLoadingMaxRetryTimeout:2e3}),this.subscribe(),this.videoState.setState("stopped")}subscribe(){(0,ae.assertNonNullable)(Gt.Events,"hls.js not loaded");let{desiredState:e,output:t}=this.params,i=l=>{t.error$.next({id:"HlsJsProvider",category:ae.ErrorCategory.WTF,message:"HlsJsProvider internal logic error",thrown:l})},r=Ze(this.video);this.subscription.add(()=>r.destroy());let a=(l,c)=>this.subscription.add(l.subscribe(c,i));a(r.timeUpdate$,t.position$),a(r.durationChange$,t.duration$),a(r.ended$,t.endedEvent$),a(r.looped$,t.loopedEvent$),a(r.error$,t.error$),a(r.isBuffering$,t.isBuffering$),a(r.currentBuffer$,t.currentBuffer$),a(r.loadStart$,t.firstBytesEvent$),a(r.loadedMetadata$,t.loadedMetadataEvent$),a(r.playing$,t.firstFrameEvent$),a(r.canplay$,t.canplay$),a(r.seeked$,t.seekedEvent$),a(r.inPiP$,t.inPiP$),a(r.inFullscreen$,t.inFullscreen$),this.subscription.add($t(this.video,e.isLooped,i)),this.subscription.add(Je(this.video,e.volume,r.volumeState$,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$)),this.subscription.add(dt(this.video,e.playbackRate,r.playbackRateState$,i)),a(ht(this.video),t.elementVisible$),a(this.videoState.stateChangeEnded$.pipe((0,ae.map)(l=>l.to)),this.params.output.playbackState$),this.subscription.add(Hr(this.hls,Gt.Events.ERROR).subscribe(l=>{l.fatal&&t.error$.next({id:["HlsJsFatal",l.type,l.details].join("_"),category:ae.ErrorCategory.WTF,message:`HlsJs fatal ${l.type} ${l.details}, ${l.err?.message} ${l.reason}`,thrown:l.error})})),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState("playing"),C(e.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),C(e.playbackState,"paused")},i)).add(r.canplay$.subscribe(()=>{this.videoState.getTransition()?.to==="ready"&&this.videoState.setState("ready"),this.videoState.getState()==="playing"&&this.playIfAllowed()},i)),a(Hr(this.hls,Gt.Events.MANIFEST_PARSED).pipe((0,ae.map)(({levels:l})=>l.reduce((c,p)=>{let d=p.name||p.height.toString(10),{width:h,height:m}=p,g=Jt(p.attrs.QUALITY??"")??(0,ae.videoSizeToQuality)({width:h,height:m});if(!g)return c;let y=p.attrs["FRAME-RATE"]?parseFloat(p.attrs["FRAME-RATE"]):void 0,T={id:d.toString(),quality:g,bitrate:p.bitrate/1e3,size:{width:h,height:m},fps:y};return this.trackLevels.set(d,{track:T,level:p}),c.push(T),c},[]))),t.availableVideoTracks$),a(Hr(this.hls,Gt.Events.MANIFEST_PARSED),l=>{if(l.subtitleTracks.length>0){let c=[];for(let p of l.subtitleTracks){let d=p.name,h=p.attrs.URI||"",m=p.lang;c.push({id:d,url:h,language:m,type:"internal"})}e.internalTextTracks.startTransitionTo(c)}}),a(Hr(this.hls,Gt.Events.LEVEL_LOADING).pipe((0,ae.map)(({url:l})=>Ne(l))),t.hostname$),a(Hr(this.hls,Gt.Events.FRAG_CHANGED),l=>{let{video:c,audio:p}=l.frag.elementaryStreams;t.currentVideoSegmentLength$.next(((c?.endPTS??0)-(c?.startPTS??0))*1e3),t.currentAudioSegmentLength$.next(((p?.endPTS??0)-(p?.startPTS??0))*1e3)}),this.subscription.add(Li(e.autoVideoTrackSwitching,()=>this.hls.autoLevelEnabled,l=>{this.hls.nextLevel=l?-1:this.hls.currentLevel,this.hls.loadLevel=l?-1:this.hls.loadLevel},{onError:i}));let n=l=>Array.from(this.trackLevels.values()).find(({level:c})=>c===l)?.track,o=Hr(this.hls,Gt.Events.LEVEL_SWITCHED).pipe((0,ae.map)(({level:l})=>n(this.hls.levels[l])));o.pipe((0,ae.filter)(ae.isNonNullable)).subscribe(t.currentVideoTrack$,i),this.subscription.add(Li(e.videoTrack,()=>n(this.hls.levels[this.hls.currentLevel]),l=>{if((0,ae.isNullable)(l))return;let c=this.trackLevels.get(l.id)?.level;if(!c)return;let p=this.hls.levels.indexOf(c),d=this.hls.currentLevel,h=this.hls.levels[d];!h||c.bitrate>h.bitrate?this.hls.nextLevel=p:(this.hls.loadLevel=p,this.hls.loadLevel=p)},{changed$:o,onError:i})),a(r.progress$,()=>{this.params.dependencies.throughputEstimator.addRawThroughput(this.hls.bandwidthEstimate/1e3)}),this.textTracksManager.connect(this.video,e,t);let u=(0,ae.merge)(e.playbackState.stateChangeStarted$,e.videoTrack.stateChangeStarted$,e.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,(0,ae.observableFrom)(["init"])).pipe((0,ae.debounce)(0));this.subscription.add(u.subscribe(this.syncPlayback,i))}prepare(){this.videoState.startTransitionTo("ready"),this.hls.attachMedia(this.video),this.hls.loadSource(this.params.source.url)}async playIfAllowed(){this.videoState.startTransitionTo("playing"),await et(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).catch(t=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:ae.ErrorCategory.DOM,thrown:t}))||(this.videoState.setState("paused"),C(this.params.desiredState.playbackState,"paused",!0))}pause(){this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()}seek(e){this.params.output.willSeekEvent$.next(),this.video.currentTime=e/1e3}stop(){this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.hls.stopLoad(),this.hls.detachMedia(),this.video.removeAttribute("src"),this.video.load(),this.videoState.setState("stopped"),C(this.params.desiredState.playbackState,"stopped",!0)}};var Qv="X-Playback-Duration",$c=async s=>{let e=await Bt(s),t=await e.text(),i=/#EXT-X-VK-PLAYBACK-DURATION:(\d+)/m.exec(t)?.[1];return i?parseInt(i,10):e.headers.has(Qv)?parseInt(e.headers.get(Qv),10):void 0};var se=require("@vkontakte/videoplayer-shared");var Dc=U(qu(),1);var Ro=require("@vkontakte/videoplayer-shared");var lM=s=>{let e=null;if(s.QUALITY&&(e=Jt(s.QUALITY)),!e&&s.RESOLUTION){let[t,i]=s.RESOLUTION.split("x").map(r=>parseInt(r,10));e=(0,Ro.videoSizeToQuality)({width:t,height:i})}return e??null},cM=(s,e)=>{let t=s.split(`
|
|
186
|
+
`),i=[],r=[];for(let a=0;a<t.length;a++){let n=t[a],o=n.match(/^#EXT-X-STREAM-INF:(.+)/),u=n.match(/^#EXT-X-MEDIA:TYPE=SUBTITLES,(.+)/);if(!(!o&&!u)){if(o){let l=(0,Dc.default)(o[1].split(",").map(y=>y.split("="))),c=l.QUALITY??`stream-${l.BANDWIDTH}`,p=lM(l),d;l.BANDWIDTH&&(d=parseInt(l.BANDWIDTH,10)/1e3||void 0),!d&&l["AVERAGE-BANDWIDTH"]&&(d=parseInt(l["AVERAGE-BANDWIDTH"],10)/1e3||void 0);let h=l["FRAME-RATE"]?parseFloat(l["FRAME-RATE"]):void 0,m;if(l.RESOLUTION){let[y,T]=l.RESOLUTION.split("x").map(A=>parseInt(A,10));y&&T&&(m={width:y,height:T})}let g=new URL(t[++a],e).toString();p&&i.push({id:c,quality:p,url:g,bandwidth:d,size:m,fps:h})}if(u){let l=(0,Dc.default)(u[1].split(",").map(h=>{let m=h.indexOf("=");return[h.substring(0,m),h.substring(m+1)]}).map(([h,m])=>[h,m.replace(/^"|"$/g,"")])),c=l.URI?.replace(/playlist$/,"subtitles.vtt"),p=l.LANGUAGE,d=l.NAME;c&&p&&r.push({type:"internal",id:p,label:d,language:p,url:c,isAuto:!1})}}}if(!i.length)throw new Error("Empty manifest");return{qualityManifests:i,textTracks:r}},dM=s=>new Promise(e=>{setTimeout(()=>{e()},s)}),Bc=0,Wv=async(s,e=s,t,i)=>{let a=await(await Bt(s,i)).text();Bc+=1;try{let{qualityManifests:n,textTracks:o}=cM(a,e);return{qualityManifests:n,textTracks:o}}catch{if(Bc<=t.manifestRetryMaxCount)return await dM((0,Ro.getExponentialDelay)(Bc-1,{start:t.manifestRetryInterval,max:t.manifestRetryMaxInterval})),Wv(s,e,t)}return{qualityManifests:[],textTracks:[]}},Lo=Wv;var Mt=require("@vkontakte/videoplayer-shared");var Mo=class{constructor(e,t,i,r,a){this.subscription=new Mt.Subscription;this.abortControllers={destroy:new pe,nextManifest:null};this.prepareUrl=void 0;this.currentTextTrackData=null;this.availableTextTracks$=new Mt.ValueSubject(null);this.getCurrentTime$=new Mt.ValueSubject(null);this.error$=new Mt.Subject;this.params={fetchManifestData:i,sourceUrl:r,downloadThreshold:a},this.subscription.add(e.pipe((0,Mt.throttle)(1e3)).subscribe(n=>{this.processLiveTime(n)})),this.getCurrentTime$.next(()=>this.currentTextTrackData?this.currentTextTrackData.playlist.segmentStartTime/1e3+t.currentTime:0)}destroy(){this.subscription.unsubscribe(),this.abortControllers.destroy.abort()}async prepare(e){try{let t=new URL(e);t.searchParams.set("enable-subtitles","yes"),this.prepareUrl=t.toString();let{textTracks:i}=await this.fetchManifestData();await this.processTextTracks(i,this.params.sourceUrl)}catch(t){this.error("prepare",t)}}async processTextTracks(e,t){try{let i=await this.parseTextTracks(e,t);i&&(this.currentTextTrackData=i)}catch(i){this.error("processTextTracks",i)}}async parseTextTracks(e,t){for(let i of e){let r=new URL(i.url,t).toString(),n=await(await Bt(r,{signal:this.abortControllers.destroy.signal})).text(),o=this.parsePlaylist(n,r);return{textTrack:i,playlist:o}}}parsePlaylist(e,t){let i={mediaSequence:0,programDateTime:"",segments:[],targetDuration:0,vkPlaybackDuration:0,segmentStartTime:0,vkStartTime:""},r=e.split(`
|
|
187
|
+
`),a=0;for(let n=0;n<r.length;++n){let o=r[n];switch(!0){case o.startsWith("#EXTINF:"):{let u=r[++n],l=new URL(u,t).toString(),c=Number(this.extractPlaylistRowValue("#EXTINF:",o))*1e3;if(i.segments.push({time:{from:a,to:a+c},url:l}),a=a+c,!i.segmentStartTime){let p=new Date(i.vkStartTime).valueOf(),d=new Date(i.programDateTime).valueOf();i.segmentStartTime=d-p}break}case o.startsWith("#EXT-X-TARGETDURATION:"):i.targetDuration=Number(this.extractPlaylistRowValue("#EXT-X-TARGETDURATION:",o));break;case o.startsWith("#EXT-X-MEDIA-SEQUENCE:"):i.mediaSequence=Number(this.extractPlaylistRowValue("#EXT-X-MEDIA-SEQUENCE:",o));break;case o.startsWith("#EXT-X-VK-PLAYBACK-DURATION:"):i.vkPlaybackDuration=Number(this.extractPlaylistRowValue("#EXT-X-VK-PLAYBACK-DURATION:",o));break;case o.startsWith("#EXT-X-PROGRAM-DATE-TIME:"):{let u=this.extractPlaylistRowValue("#EXT-X-PROGRAM-DATE-TIME:",o);i.programDateTime=u;let l=new Date(u);l.setMilliseconds(0),a=l.valueOf();break}case o.startsWith("#EXT-X-VK-START-TIME:"):i.vkStartTime=this.extractPlaylistRowValue("#EXT-X-VK-START-TIME:",o);break}}return i}extractPlaylistRowValue(e,t){switch(e){case"#EXTINF:":return t.substring(e.length,t.length-1);default:return t.substring(e.length)}}processLiveTime(e){if((0,Mt.isNonNullable)(e)&&this.currentTextTrackData){let{segments:t}=this.currentTextTrackData.playlist,{from:i}=t[0].time,{to:r}=t[t.length-1].time;if(e<i||e>r)return;r-e<this.params.downloadThreshold&&this.fetchNextManifestData();for(let n of t)if(n.time.from<=e&&n.time.to>=e){this.availableTextTracks$.next([{...this.currentTextTrackData.textTrack,url:n.url,isAuto:!0}]);break}}}async fetchNextManifestData(){try{if(this.abortControllers.nextManifest)return;this.abortControllers.nextManifest=new pe;let{textTracks:e}=await this.fetchManifestData(),t=await this.parseTextTracks(e,this.params.sourceUrl);this.currentTextTrackData&&t&&(this.currentTextTrackData.playlist.segments=t.playlist.segments)}catch(e){this.error("fetchNextManifestData",e)}finally{this.abortControllers.nextManifest=null}}async fetchManifestData(){let e=this.prepareUrl??this.params.sourceUrl;return await this.params.fetchManifestData(e,{signal:this.abortControllers.destroy.signal})}error(e,t){this.error$.next({id:"[LiveTextManager][HLS_LIVE_CMAF]",category:Mt.ErrorCategory.WTF,thrown:t,message:e})}};var ja=class{constructor(e){this.subscription=new se.Subscription;this.videoState=new K("stopped");this.textTracksManager=null;this.liveTextManager=null;this.manifests$=new se.ValueSubject([]);this.liveOffset=new Xi;this.manifestStartTime$=new se.ValueSubject(void 0);this.syncPlayback=()=>{if(!this.manifests$.getValue().length)return;let t=this.videoState.getState(),i=this.params.desiredState.playbackState.getState(),r=this.params.desiredState.playbackState.getTransition(),a=this.params.desiredState.videoTrack.getTransition(),n=this.params.desiredState.autoVideoTrackSwitching.getTransition(),o=this.params.desiredState.autoVideoTrackLimits.getTransition();if(i==="stopped"){t!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.video.removeAttribute("src"),this.video.load(),this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),C(this.params.desiredState.playbackState,"stopped",!0));return}if(this.videoState.getTransition())return;let l=this.params.desiredState.seekState.getState();if(t==="stopped"){this.videoState.startTransitionTo("ready"),this.prepare();return}if(a||n||o){let c=this.videoState.getState();this.videoState.setState("changing_manifest"),this.videoState.startTransitionTo(c),this.prepare(),o&&this.params.output.autoVideoTrackLimits$.next(o.to),l.state==="none"&&this.params.desiredState.seekState.setState({state:"requested",position:-this.liveOffset.getTotalOffset(),forcePrecise:!0});return}if(r?.to!=="paused"&&l.state==="requested"){this.videoState.startTransitionTo("ready"),this.seek(l.position&&l.position-this.liveOffset.getTotalPausedTime()),this.prepare();return}switch(t){case"ready":i==="ready"?C(this.params.desiredState.playbackState,"ready"):i==="paused"?(this.videoState.setState("paused"),this.liveOffset.pause(),C(this.params.desiredState.playbackState,"paused")):i==="playing"&&(this.videoState.startTransitionTo("playing"),this.playIfAllowed());return;case"playing":i==="paused"?(this.videoState.startTransitionTo("paused"),this.liveOffset.pause(),this.video.paused?this.videoState.setState("paused"):this.video.pause()):r?.to==="playing"&&C(this.params.desiredState.playbackState,"playing");return;case"paused":if(i==="playing")if(this.videoState.startTransitionTo("playing"),this.liveOffset.getTotalPausedTime()<this.params.config.maxPausedTime&&this.liveOffset.getTotalOffset()<this.maxSeekBackTime$.getValue())this.liveOffset.resume(),this.playIfAllowed(),this.params.output.position$.next(-this.liveOffset.getTotalOffset()/1e3);else{let c=this.liveOffset.getTotalOffset();c>=this.maxSeekBackTime$.getValue()&&(c=0,this.liveOffset.resetTo(c)),this.liveOffset.resume(),this.params.output.position$.next(-c/1e3),this.prepare()}else r?.to==="paused"&&(C(this.params.desiredState.playbackState,"paused"),this.liveOffset.pause());return;case"changing_manifest":break;default:return(0,se.assertNever)(t)}};this.params=e,this.video=Ke(e.container,e.tuning),this.params.output.element$.next(this.video),this.masterManifest={id:"master",quality:se.VideoQuality.INVARIANT,url:this.params.source.url};let t=(i,r)=>Lo(i,this.params.source.url,{manifestRetryInterval:this.params.tuning.manifestRetryInterval,manifestRetryMaxInterval:this.params.tuning.manifestRetryMaxInterval,manifestRetryMaxCount:this.params.tuning.manifestRetryMaxCount},r);this.params.tuning.useHlsLiveNewTextManager?this.liveTextManager=new Mo(this.params.output.liveTime$,this.video,t,this.params.source.url,this.params.tuning.hlsLiveNewTextManagerDownloadThreshold):this.textTracksManager=new pt(e.source.url),t(this.generateLiveUrl()).then(({qualityManifests:i,textTracks:r})=>{i.length===0&&this.params.output.error$.next({id:"HlsLiveProviderInternal:empty_manifest",category:se.ErrorCategory.WTF,message:"HlsLiveProvider: there are no qualities in manifest"}),this.liveTextManager?.processTextTracks(r,this.params.source.url),this.manifests$.next([this.masterManifest,...i])}).catch(i=>{this.params.output.error$.next({id:"ExtractHlsQualities",category:se.ErrorCategory.NETWORK,message:"Error fetching manifest and extracting qualities",thrown:i})}),this.params.output.isLive$.next(!0),this.params.output.canChangePlaybackSpeed$.next(!1),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(Ne(this.params.source.url)),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.maxSeekBackTime$=new se.ValueSubject(e.source.maxSeekBackTime??1/0),this.subscribe()}selectManifest(){let{autoVideoTrackSwitching:e,videoTrack:t}=this.params.desiredState,i=e.getState(),r=t.getTransition(),a=r?.to?.id??t.getState()?.id??"master",n=this.manifests$.getValue();if(!n.length)return;let o=i?"master":a;return i&&!r&&t.startTransitionTo(this.masterManifest),n.find(u=>u.id===o)}subscribe(){let{output:e,desiredState:t}=this.params,i=o=>{e.error$.next({id:"HlsLiveProvider",category:se.ErrorCategory.WTF,message:"HlsLiveProvider internal logic error",thrown:o})},r=Ze(this.video);this.subscription.add(()=>r.destroy());let a=(o,u)=>this.subscription.add(o.subscribe(u,i));a(r.ended$,e.endedEvent$),a(r.error$,e.error$),a(r.isBuffering$,e.isBuffering$),a(r.currentBuffer$,e.currentBuffer$),a(r.loadedMetadata$,e.firstBytesEvent$),a(r.loadedMetadata$,e.loadedMetadataEvent$),a(r.playing$,e.firstFrameEvent$),a(r.canplay$,e.canplay$),a(r.inPiP$,e.inPiP$),a(r.inFullscreen$,e.inFullscreen$),this.subscription.add(t.isLooped.stateChangeStarted$.subscribe(()=>t.isLooped.setState(!1),i)),this.subscription.add(Je(this.video,t.volume,r.volumeState$,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(dt(this.video,t.playbackRate,r.playbackRateState$,i)),a(ht(this.video),e.elementVisible$),this.liveTextManager?(a(this.liveTextManager.getCurrentTime$,this.params.output.getCurrentTime$),a(this.liveTextManager.error$,this.params.output.error$)):this.textTracksManager&&this.textTracksManager.connect(this.video,t,e),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState("playing"),C(t.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),C(t.playbackState,"paused")},i)).add(r.canplay$.subscribe(()=>{this.videoState.getTransition()?.to==="ready"&&this.videoState.setState("ready"),this.videoState.getState()==="playing"&&this.playIfAllowed()},i)),this.liveTextManager&&this.subscription.add(this.liveTextManager.availableTextTracks$.subscribe(o=>{o&&this.params.output.availableTextTracks$.next(o)})),this.subscription.add(this.maxSeekBackTime$.pipe((0,se.filterChanged)(),(0,se.map)(o=>-o/1e3)).subscribe(this.params.output.duration$,i)),this.subscription.add(r.loadedMetadata$.subscribe(()=>{let o=this.params.desiredState.seekState.getState(),u=this.videoState.getTransition(),l=this.params.desiredState.videoTrack.getTransition(),c=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(l&&(0,se.isNonNullable)(l.to)){let p=l.to.id;this.params.desiredState.videoTrack.setState(l.to);let d=this.manifests$.getValue().find(h=>h.id===p);d&&(this.params.output.currentVideoTrack$.next(d),this.params.output.hostname$.next(Ne(d.url)))}c&&this.params.desiredState.autoVideoTrackSwitching.setState(c.to),u&&u.from==="changing_manifest"&&this.videoState.setState(u.to),o&&o.state==="requested"&&this.seek(o.position)},i)),this.subscription.add(r.loadedData$.subscribe(()=>{let o=this.video?.getStartDate?.()?.getTime();this.manifestStartTime$.next(o||void 0)},i)),this.subscription.add((0,se.combine)({startTime:this.manifestStartTime$.pipe((0,se.filter)(se.isNonNullable)),currentTime:r.timeUpdate$}).subscribe(({startTime:o,currentTime:u})=>this.params.output.liveTime$.next(o+u*1e3),i)),this.subscription.add(this.manifests$.pipe((0,se.map)(o=>o.map(({id:u,quality:l,size:c,bandwidth:p,fps:d})=>({id:u,quality:l,size:c,fps:d,bitrate:p})))).subscribe(this.params.output.availableVideoTracks$,i));let n=(0,se.merge)(t.playbackState.stateChangeStarted$,t.seekState.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.stateChangeStarted$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,this.manifests$,(0,se.observableFrom)(["init"])).pipe((0,se.debounce)(0));this.subscription.add(n.subscribe(this.syncPlayback,i))}destroy(){this.subscription.unsubscribe(),this.textTracksManager?.destroy(),this.liveTextManager?.destroy(),this.params.output.element$.next(void 0),Xe(this.video)}prepare(){let e=this.selectManifest();if((0,se.isNullable)(e))return;let t=this.params.desiredState.autoVideoTrackLimits.getTransition(),i=this.params.desiredState.autoVideoTrackLimits.getState(),r=new URL(e.url);if((t||i)&&e.id===this.masterManifest.id){let{max:o,min:u}=t?.to??i??{};for(let[l,c]of[[o,"mq"],[u,"lq"]]){let p=String(parseFloat(l||""));c&&l&&r.searchParams.set(c,p)}}let a=this.params.format==="HLS_LIVE_CMAF"?2:0,n=$e(r.toString(),this.liveOffset.getTotalOffset(),a);this.liveTextManager?.prepare(n),this.video.setAttribute("src",n),this.video.load(),$c(n).then(o=>{if(!(0,se.isNullable)(o))this.maxSeekBackTime$.next(o);else{let u=this.params.source.maxSeekBackTime??this.maxSeekBackTime$.getValue();((0,se.isNullable)(u)||!isFinite(u))&&Bt(n).then(l=>l.text()).then(l=>{let c=/#EXT-X-STREAM-INF[^\n]+\n(.+)/m.exec(l)?.[1];if(c){let p=new URL(c,n).toString();$c(p).then(d=>{(0,se.isNullable)(d)||this.maxSeekBackTime$.next(d)})}}).catch(()=>{})}})}playIfAllowed(){et(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),this.liveOffset.pause(),C(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:se.ErrorCategory.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next();let t=-e,i=t<this.maxSeekBackTime$.getValue()?t:0;this.liveOffset.resetTo(i),this.params.output.position$.next(-i/1e3),this.params.output.seekedEvent$.next()}generateLiveUrl(){let e=$e(this.params.source.url);if(this.params.tuning.useHlsLiveNewTextManager){let t=new URL(e);t.searchParams.set("enable-subtitles","yes"),e=t.toString()}return e}};var le=require("@vkontakte/videoplayer-shared");var za=class{constructor(e){this.subscription=new le.Subscription;this.videoState=new K("stopped");this.manifests$=new le.ValueSubject([]);this.syncPlayback=()=>{if(!this.manifests$.getValue().length)return;let t=this.videoState.getState(),i=this.params.desiredState.playbackState.getState(),r=this.params.desiredState.playbackState.getTransition(),a=this.params.desiredState.videoTrack.getTransition(),n=this.params.desiredState.autoVideoTrackSwitching.getTransition(),o=this.params.desiredState.autoVideoTrackLimits.getTransition();if(i==="stopped"){t!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.video.removeAttribute("src"),this.video.load(),this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),C(this.params.desiredState.playbackState,"stopped",!0));return}if(this.videoState.getTransition())return;let l=this.params.desiredState.seekState.getState();if(t==="stopped"){this.videoState.startTransitionTo("ready"),this.prepare();return}if(a||n||o){let c=this.videoState.getState();this.videoState.setState("changing_manifest"),this.videoState.startTransitionTo(c);let{currentTime:p}=this.video;this.prepare(),o&&this.params.output.autoVideoTrackLimits$.next(o.to),l.state==="none"&&this.params.desiredState.seekState.setState({state:"requested",position:p*1e3,forcePrecise:!0});return}switch(r?.to!=="paused"&&l.state==="requested"&&this.seek(l.position),t){case"ready":i==="ready"?C(this.params.desiredState.playbackState,"ready"):i==="paused"?(this.videoState.setState("paused"),C(this.params.desiredState.playbackState,"paused")):i==="playing"&&(this.videoState.startTransitionTo("playing"),this.playIfAllowed());return;case"playing":i==="paused"?(this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()):r?.to==="playing"&&C(this.params.desiredState.playbackState,"playing");return;case"paused":i==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):r?.to==="paused"&&C(this.params.desiredState.playbackState,"paused");return;case"changing_manifest":break;default:return(0,le.assertNever)(t)}};this.textTracksManager=new pt(e.source.url),this.params=e,this.video=Ke(e.container,e.tuning),this.params.output.element$.next(this.video),this.masterManifest={id:"master",quality:le.VideoQuality.INVARIANT,url:this.params.source.url},this.params.output.isLive$.next(!1),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(Ne(this.params.source.url)),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),Lo($e(this.params.source.url),this.params.source.url,{manifestRetryInterval:this.params.tuning.manifestRetryInterval,manifestRetryMaxInterval:this.params.tuning.manifestRetryMaxInterval,manifestRetryMaxCount:this.params.tuning.manifestRetryMaxCount}).then(({qualityManifests:t,textTracks:i})=>{this.manifests$.next([this.masterManifest,...t]),this.params.tuning.useNativeHLSTextTracks||this.params.desiredState.internalTextTracks.startTransitionTo(i)},t=>this.params.output.error$.next({id:"ExtractHlsQualities",category:le.ErrorCategory.NETWORK,message:"Error fetching manifest and extracting qualities",thrown:t})),this.subscribe()}selectManifest(){let{autoVideoTrackSwitching:e,videoTrack:t}=this.params.desiredState,i=e.getState(),r=t.getTransition(),a=r?.to?.id??t.getState()?.id??"master",n=this.manifests$.getValue();if(!n.length)return;let o=i?"master":a;return i&&(!r||!r.from)&&t.startTransitionTo(this.masterManifest),n.find(u=>u.id===o)}subscribe(){let{output:e,desiredState:t}=this.params,i=o=>{e.error$.next({id:"HlsProvider",category:le.ErrorCategory.WTF,message:"HlsProvider internal logic error",thrown:o})},r=Ze(this.video);this.subscription.add(()=>r.destroy());let a=(o,u)=>this.subscription.add(o.subscribe(u));if(a(r.timeUpdate$,e.position$),a(r.durationChange$,e.duration$),a(r.ended$,e.endedEvent$),a(r.looped$,e.loopedEvent$),a(r.error$,e.error$),a(r.isBuffering$,e.isBuffering$),a(r.currentBuffer$,e.currentBuffer$),a(r.loadedMetadata$,e.firstBytesEvent$),a(r.loadedMetadata$,e.loadedMetadataEvent$),a(r.playing$,e.firstFrameEvent$),a(r.canplay$,e.canplay$),a(r.seeked$,e.seekedEvent$),a(r.inPiP$,e.inPiP$),a(r.inFullscreen$,e.inFullscreen$),a(this.videoState.stateChangeEnded$.pipe((0,le.map)(o=>o.to)),this.params.output.playbackState$),this.subscription.add($t(this.video,t.isLooped,i)),this.subscription.add(Je(this.video,t.volume,r.volumeState$,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(dt(this.video,t.playbackRate,r.playbackRateState$,i)),this.textTracksManager.connect(this.video,t,e),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState("playing"),C(t.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),C(t.playbackState,"paused")},i)).add(r.canplay$.subscribe(()=>{this.videoState.getTransition()?.to==="ready"&&this.videoState.setState("ready"),this.videoState.getState()==="playing"&&this.playIfAllowed()},i).add(r.loadedMetadata$.subscribe(()=>{let o=this.params.desiredState.seekState.getState(),u=this.videoState.getTransition(),l=this.params.desiredState.videoTrack.getTransition(),c=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(l&&(0,le.isNonNullable)(l.to)){let h=l.to.id;this.params.desiredState.videoTrack.setState(l.to);let m=this.manifests$.getValue().find(g=>g.id===h);m&&(this.params.output.currentVideoTrack$.next(m),this.params.output.hostname$.next(Ne(m.url)))}let p=this.params.desiredState.playbackRate.getState(),d=this.params.output.element$.getValue()?.playbackRate;if(p!==d){let h=this.params.output.element$.getValue();h&&(this.params.desiredState.playbackRate.setState(p),h.playbackRate=p)}c&&this.params.desiredState.autoVideoTrackSwitching.setState(c.to),u&&u.from==="changing_manifest"&&this.videoState.setState(u.to),o.state==="requested"&&this.seek(o.position)},i))),this.subscription.add(this.manifests$.pipe((0,le.map)(o=>o.map(({id:u,quality:l,size:c,bandwidth:p,fps:d})=>({id:u,quality:l,size:c,fps:d,bitrate:p})))).subscribe(this.params.output.availableVideoTracks$,i)),!W.device.isIOS||!this.params.tuning.useNativeHLSTextTracks){let{textTracks:o}=this.video;this.subscription.add((0,le.merge)((0,le.fromEvent)(o,"addtrack"),(0,le.fromEvent)(o,"removetrack"),(0,le.fromEvent)(o,"change"),(0,le.observableFrom)(["init"])).subscribe(()=>{for(let u=0;u<o.length;u++)o[u].mode="hidden"},i))}let n=(0,le.merge)(t.playbackState.stateChangeStarted$,t.seekState.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.stateChangeStarted$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,this.manifests$,(0,le.observableFrom)(["init"])).pipe((0,le.debounce)(0));this.subscription.add(n.subscribe(this.syncPlayback,i))}destroy(){this.subscription.unsubscribe(),this.textTracksManager.destroy(),this.params.output.element$.next(void 0),Xe(this.video)}prepare(){let e=this.selectManifest();if((0,le.isNullable)(e))return;let t=this.params.desiredState.autoVideoTrackLimits.getTransition(),i=this.params.desiredState.autoVideoTrackLimits.getState(),r=new URL(e.url);if((t||i)&&e.id===this.masterManifest.id){let{max:a,min:n}=t?.to??i??{};for(let[o,u]of[[a,"mq"],[n,"lq"]]){let l=String(parseFloat(o||""));u&&o&&r.searchParams.set(u,l)}}this.video.setAttribute("src",r.toString()),this.video.load()}playIfAllowed(){et(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),C(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:le.ErrorCategory.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next(),this.video.currentTime=e/1e3}};var Yv=U(ji(),1),Cc=U(Ki(),1),Kv=U(Ht(),1);var ye=require("@vkontakte/videoplayer-shared");var Ga=class{constructor(e){this.subscription=new ye.Subscription;this.videoState=new K("stopped");this.trackUrls={};this.textTracksManager=new pt;this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),i=this.params.desiredState.playbackState.getTransition();if(t==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.video.removeAttribute("src"),this.video.load(),this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),C(this.params.desiredState.playbackState,"stopped",!0));return}if(this.videoState.getTransition())return;let a=this.params.desiredState.autoVideoTrackLimits.getTransition(),n=this.params.desiredState.videoTrack.getTransition(),o=this.params.desiredState.seekState.getState();if(a&&e!=="ready"&&!n){this.handleQualityLimitTransition(a.to);return}if(e==="stopped"){this.videoState.startTransitionTo("ready"),this.prepare();return}if(n){let{currentTime:u}=this.video;this.prepare(),o.state==="none"&&this.params.desiredState.seekState.setState({state:"requested",position:u*1e3,forcePrecise:!0});return}switch(i?.to!=="paused"&&o.state==="requested"&&this.seek(o.position),e){case"ready":t==="ready"?C(this.params.desiredState.playbackState,"ready"):t==="paused"?(this.videoState.setState("paused"),C(this.params.desiredState.playbackState,"paused")):t==="playing"&&(this.videoState.startTransitionTo("playing"),this.playIfAllowed());return;case"playing":t==="paused"?(this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()):i?.to==="playing"&&C(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):i?.to==="paused"&&C(this.params.desiredState.playbackState,"paused");return;default:return(0,ye.assertNever)(e)}};this.params=e,this.video=Ke(e.container,e.tuning),this.params.output.element$.next(this.video),(0,Yv.default)(this.params.source).reverse().forEach(([t,i],r)=>{let a=r.toString(10);this.trackUrls[a]={track:{quality:t,id:a},url:i}}),this.params.output.isLive$.next(!1),this.params.output.availableVideoTracks$.next((0,Cc.default)(this.trackUrls).map(({track:t})=>t)),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.desiredState.autoVideoTrackSwitching.setState(!1),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),this.subscribe()}subscribe(){let{output:e,desiredState:t}=this.params,i=o=>{e.error$.next({id:"MpegProvider",category:ye.ErrorCategory.WTF,message:"MpegProvider internal logic error",thrown:o})},r=Ze(this.video);this.subscription.add(()=>r.destroy());let a=(o,u)=>this.subscription.add(o.subscribe(u,i));a(r.timeUpdate$,e.position$),a(r.durationChange$,e.duration$),a(r.ended$,e.endedEvent$),a(r.looped$,e.loopedEvent$),a(r.error$,e.error$),a(r.isBuffering$,e.isBuffering$),a(r.currentBuffer$,e.currentBuffer$),a(r.loadedMetadata$,e.firstBytesEvent$),a(r.loadedMetadata$,e.loadedMetadataEvent$),a(r.playing$,e.firstFrameEvent$),a(r.canplay$,e.canplay$),a(r.seeked$,e.seekedEvent$),a(r.inPiP$,e.inPiP$),a(r.inFullscreen$,e.inFullscreen$),a(this.videoState.stateChangeEnded$.pipe((0,ye.map)(o=>o.to)),this.params.output.playbackState$),this.subscription.add($t(this.video,t.isLooped,i)),this.subscription.add(Je(this.video,t.volume,r.volumeState$,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(dt(this.video,t.playbackRate,r.playbackRateState$,i)),a(ht(this.video),e.elementVisible$),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState("playing"),C(t.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),C(t.playbackState,"paused")},i)).add(r.canplay$.subscribe(()=>{this.videoState.getTransition()?.to==="ready"&&this.videoState.setState("ready");let o=this.params.desiredState.videoTrack.getTransition();if(o&&(0,ye.isNonNullable)(o.to)){this.params.desiredState.videoTrack.setState(o.to),this.params.output.currentVideoTrack$.next(this.trackUrls[o.to.id].track);let u=this.params.desiredState.playbackRate.getState(),l=this.params.output.element$.getValue()?.playbackRate;if(u!==l){let c=this.params.output.element$.getValue();c&&(this.params.desiredState.playbackRate.setState(u),c.playbackRate=u)}}this.videoState.getState()==="playing"&&this.playIfAllowed()},i)),this.textTracksManager.connect(this.video,t,e);let n=(0,ye.merge)(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,(0,ye.observableFrom)(["init"])).pipe((0,ye.debounce)(0));this.subscription.add(n.subscribe(this.syncPlayback,i))}destroy(){this.subscription.unsubscribe(),this.textTracksManager.destroy(),this.trackUrls={},this.params.output.element$.next(void 0),Xe(this.video)}prepare(){let e=this.params.desiredState.videoTrack.getState()?.id;(0,ye.assertNonNullable)(e,"MpegProvider: track is not selected");let{url:t}=this.trackUrls[e];(0,ye.assertNonNullable)(t,`MpegProvider: No url for ${e}`),this.params.tuning.requestQuick&&(t=Di(t)),this.video.setAttribute("src",t),this.video.load(),this.params.output.hostname$.next(Ne(t))}playIfAllowed(){et(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),C(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:ye.ErrorCategory.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next(),this.video.currentTime=e/1e3}handleQualityLimitTransition(e){this.params.output.autoVideoTrackLimits$.next(e);let t=l=>{this.params.output.currentVideoTrack$.next(l),this.params.desiredState.videoTrack.startTransitionTo(l)},i=l=>{let c=Zt(n,{container:this.video.getBoundingClientRect(),panelSize:this.params.panelSize,estimatedThroughput:this.params.dependencies.throughputEstimator.throughput$.getValue(),tuning:this.params.tuning.autoTrackSelection,forwardBufferHealth:0,limits:l,abrLogger:this.params.dependencies.abrLogger});t(c)},r=this.params.output.currentVideoTrack$.getValue()?.quality,a=!!(e.max||e.min),n=(0,Cc.default)(this.trackUrls).map(l=>l.track);if(!r||!a||Ar(e,n[0].quality,(0,Kv.default)(n,-1)?.quality)){i();return}let o=e.max?(0,ye.isLowerOrEqual)(r,e.max):!0,u=e.min?(0,ye.isHigherOrEqual)(r,e.min):!0;o&&u||i(e)}};var we=require("@vkontakte/videoplayer-shared");var Jv=require("@vkontakte/videoplayer-shared"),Xv=["stun:videostun.mycdn.me:80"],pM=1e3,hM=3,Vc=()=>null,$o=class{constructor(e,t){this.ws=null;this.peerConnection=null;this.serverUrl="";this.streamKey="";this.stream=null;this.signalingType="JOIN";this.retryCount=0;this.externalStartCallback=Vc;this.externalStopCallback=Vc;this.externalErrorCallback=Vc;this.options=this.normalizeOptions(t);let i=e.split("/");this.serverUrl=i.slice(0,i.length-1).join("/"),this.streamKey=i[i.length-1]}onStart(e){try{this.externalStartCallback=e}catch(t){this.handleSystemError(t)}}onStop(e){try{this.externalStopCallback=e}catch(t){this.handleSystemError(t)}}onError(e){try{this.externalErrorCallback=e}catch(t){this.handleSystemError(t)}}connect(){this.connectWS()}disconnect(){try{this.externalStopCallback(),this.closeConnections()}catch(e){this.handleSystemError(e)}}connectWS(){this.ws||(this.ws=new WebSocket(this.serverUrl),this.ws.onopen=this.onSocketOpen.bind(this),this.ws.onmessage=this.onSocketMessage.bind(this),this.ws.onclose=this.onSocketClose.bind(this),this.ws.onerror=this.onSocketError.bind(this))}onSocketOpen(){this.handleLogin()}onSocketClose(e){try{if(!this.ws)return;this.ws=null,e.code>1e3?(this.retryCount++,this.retryCount>this.options.maxRetryNumber?this.handleNetworkError():this.scheduleRetry()):this.externalStopCallback()}catch(t){this.handleRTCError(t)}}onSocketError(e){try{this.externalErrorCallback(new Error(e.toString()))}catch(t){this.handleRTCError(t)}}onSocketMessage(e){try{let t=this.parseMessage(e.data);switch(t.type){case"JOIN":case"CALL_JOIN":this.handleJoinMessage(t);break;case"UPDATE":this.handleUpdateMessage(t);break;case"STATUS":this.handleStatusMessage(t);break}}catch(t){this.handleRTCError(t)}}handleJoinMessage(e){switch(e.inviteType){case"ANSWER":this.handleAnswer(e.sdp);break;case"CANDIDATE":this.handleCandidate(e.candidate);break}}handleStatusMessage(e){switch(e.status){case"UNPUBLISHED":this.handleUnpublished();break}}async handleUpdateMessage(e){try{let t=await this.createOffer();this.peerConnection&&await this.peerConnection.setLocalDescription(t),this.handleAnswer(e.sdp)}catch(t){this.handleRTCError(t)}}async handleLogin(){try{let e={iceServers:[{urls:Xv}]};this.peerConnection=new RTCPeerConnection(e),this.peerConnection.ontrack=this.onPeerConnectionStream.bind(this),this.peerConnection.onicecandidate=this.onPeerConnectionIceCandidate.bind(this),this.peerConnection.oniceconnectionstatechange=this.onPeerConnectionIceConnectionStateChange.bind(this);let t=await this.createOffer();await this.peerConnection.setLocalDescription(t),this.send({type:this.signalingType,inviteType:"OFFER",streamKey:this.streamKey,sdp:t.sdp,callSupport:!1})}catch(e){this.handleRTCError(e)}}async handleAnswer(e){try{this.peerConnection&&await this.peerConnection.setRemoteDescription(new RTCSessionDescription({type:"answer",sdp:e}))}catch(t){this.handleRTCError(t)}}async handleCandidate(e){if(e)try{this.peerConnection&&await this.peerConnection.addIceCandidate(e)}catch(t){this.handleRTCError(t)}}handleUnpublished(){try{this.closeConnections(),this.externalStopCallback()}catch(e){this.handleRTCError(e)}}handleSystemError(e){this.options.errorChanel&&this.options.errorChanel.next({id:"webrtc-provider-error",category:Jv.ErrorCategory.WTF,message:e.message})}async onPeerConnectionStream(e){let t=e.streams[0];this.stream&&this.stream.id===t.id||(this.stream=t,this.externalStartCallback(this.stream))}onPeerConnectionIceCandidate(e){e.candidate&&this.send({type:this.signalingType,inviteType:"CANDIDATE",candidate:e.candidate})}onPeerConnectionIceConnectionStateChange(){if(this.peerConnection){let e=this.peerConnection.iceConnectionState;["failed","closed"].indexOf(e)>-1&&(this.retryCount++,this.retryCount>this.options.maxRetryNumber?this.handleNetworkError():(this.closeConnections(),this.scheduleRetry()))}}async createOffer(){let e={offerToReceiveAudio:!0,offerToReceiveVideo:!0,voiceActivityDetection:!1};if(!this.peerConnection)throw new Error("Can not create offer - no peer connection instance ");let t=await this.peerConnection.createOffer(e),i=t.sdp||"";if(!/^a=rtpmap:\d+ H264\/\d+$/m.test(i))throw new Error("No h264 codec support error");return t}handleRTCError(e){try{this.externalErrorCallback(e||new Error("RTC connection error"))}catch(t){this.handleSystemError(t)}}handleNetworkError(){try{this.externalErrorCallback(new Error("Network error"))}catch(e){this.handleSystemError(e)}}send(e){this.ws&&this.ws.send(JSON.stringify(e))}parseMessage(e){try{return JSON.parse(e)}catch{throw new Error("Can not parse socket message")}}closeConnections(){let e=this.ws;e&&(this.ws=null,e.close(1e3)),this.removePeerConnection()}removePeerConnection(){let e=this.peerConnection;e&&(this.peerConnection=null,e.close(),e.ontrack=null,e.onicecandidate=null,e.oniceconnectionstatechange=null,e=null)}scheduleRetry(){this.retryTimeout=setTimeout(this.connectWS.bind(this),pM)}normalizeOptions(e={}){let t={stunServerList:Xv,maxRetryNumber:hM,errorChanel:null};return e.stunServerList&&(t.stunServerList=e.stunServerList),e.maxRetryNumber&&e.maxRetryNumber>0&&(t.maxRetryNumber=e.maxRetryNumber),t}};var Qa=class{constructor(e){this.videoState=new K("stopped");this.maxSeekBackTime$=new we.ValueSubject(0);this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),i=this.params.desiredState.playbackState.getTransition();if(t==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.video.pause(),this.video.srcObject=null,this.params.output.position$.next(0),this.params.output.duration$.next(0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),C(this.params.desiredState.playbackState,"stopped",!0));return}if(this.videoState.getTransition())return;let a=this.params.desiredState.videoTrack.getTransition();if(e==="stopped"){this.videoState.startTransitionTo("ready"),this.prepare();return}if(a){this.prepare();return}switch(e){case"ready":t==="paused"?(this.videoState.setState("paused"),C(this.params.desiredState.playbackState,"paused")):t==="playing"&&(this.videoState.startTransitionTo("playing"),this.playIfAllowed());return;case"playing":t==="paused"?(this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()):i?.to==="playing"&&C(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):i?.to==="paused"&&C(this.params.desiredState.playbackState,"paused");return;default:return(0,we.assertNever)(e)}};this.subscription=new we.Subscription,this.params=e,this.log=this.params.dependencies.logger.createComponentLog("WebRTCLiveProvider"),this.video=Ke(e.container,e.tuning),this.liveStreamClient=new $o(this.params.source.url,{maxRetryNumber:this.params.tuning.webrtc.connectionRetryMaxNumber,errorChanel:this.params.output.error$}),this.liveStreamClient.onStart(this.onLiveStreamStart.bind(this)),this.liveStreamClient.onStop(this.onLiveStreamStop.bind(this)),this.liveStreamClient.onError(this.onLiveStreamError.bind(this)),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.subscribe()}destroy(){this.subscription.unsubscribe(),this.liveStreamClient.disconnect(),this.params.output.element$.next(void 0),Xe(this.video)}subscribe(){let{output:e,desiredState:t}=this.params,i=n=>{e.error$.next({id:"WebRTCLiveProvider",category:we.ErrorCategory.WTF,message:"WebRTCLiveProvider internal logic error",thrown:n})};this.subscription.add((0,we.merge)(this.videoState.stateChangeStarted$.pipe((0,we.map)(n=>({transition:n,type:"start"}))),this.videoState.stateChangeEnded$.pipe((0,we.map)(n=>({transition:n,type:"end"})))).subscribe(({transition:n,type:o})=>{this.log({message:`[videoState change] ${o}: ${JSON.stringify(n)}`})}));let r=Ze(this.video);this.subscription.add(()=>r.destroy());let a=(n,o)=>this.subscription.add(n.subscribe(o,i));a(r.timeUpdate$,e.liveTime$),a(r.ended$,e.endedEvent$),a(r.looped$,e.loopedEvent$),a(r.error$,e.error$),a(r.isBuffering$,e.isBuffering$),a(r.currentBuffer$,e.currentBuffer$),a(ht(this.video),this.params.output.elementVisible$),this.subscription.add(r.durationChange$.subscribe(n=>{e.duration$.next(n===1/0?0:n)})).add(r.canplay$.subscribe(()=>{this.videoState.getTransition()?.to==="ready"&&this.videoState.setState("ready")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused")},i)).add(r.playing$.subscribe(()=>{this.videoState.setState("playing")},i)).add(r.error$.subscribe(e.error$)).add(this.maxSeekBackTime$.subscribe(this.params.output.duration$)).add(Je(this.video,t.volume,r.volumeState$,i)).add(r.volumeState$.subscribe(e.volume$,i)).add(this.videoState.stateChangeEnded$.subscribe(n=>{switch(n.to){case"stopped":e.position$.next(0),e.duration$.next(0),t.playbackState.setState("stopped");break;case"ready":break;case"paused":t.playbackState.setState("paused");break;case"playing":t.playbackState.setState("playing");break;default:return(0,we.assertNever)(n.to)}},i)).add((0,we.merge)(t.playbackState.stateChangeStarted$,this.videoState.stateChangeEnded$,(0,we.observableFrom)(["init"])).pipe((0,we.debounce)(0)).subscribe(this.syncPlayback.bind(this),i)),this.subscription.add(t.isLooped.stateChangeStarted$.subscribe(()=>t.isLooped.setState(!1),i)),this.subscription.add(t.autoVideoTrackSwitching.stateChangeStarted$.subscribe(()=>t.autoVideoTrackSwitching.setState(!1),i))}onLiveStreamStart(e){this.params.output.element$.next(this.video),this.params.output.duration$.next(0),this.params.output.position$.next(0),this.params.output.isLive$.next(!0),this.params.output.canChangePlaybackSpeed$.next(!1),this.params.output.hostname$.next(Ne(this.params.source.url)),this.params.output.autoVideoTrackLimitingAvailable$.next(!1),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.currentVideoTrack$.next({id:"webrtc",quality:we.VideoQuality.INVARIANT}),this.video.srcObject=e,C(this.params.desiredState.playbackState,"playing")}onLiveStreamStop(){this.videoState.startTransitionTo("stopped"),this.syncPlayback(),this.params.output.position$.next(0),this.params.output.duration$.next(0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.params.output.endedEvent$.next()}onLiveStreamError(e){this.onLiveStreamStop(),this.params.output.error$.next({id:"WebRTC stream runtime error",category:we.ErrorCategory.EXTERNAL_API,message:e.message,thrown:e})}playIfAllowed(){et(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),C(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:we.ErrorCategory.DOM,thrown:e}))}prepare(){this.liveStreamClient.connect()}};var Wa=class{constructor(e){this.iterator=e[Symbol.iterator](),this.next()}next(){this.current=this.iterator.next()}getValue(){if(this.current.done)throw new Error("Iterable is completed");return this.current.value}isCompleted(){return!!this.current.done}};var E=require("@vkontakte/videoplayer-shared");var xi=require("@vkontakte/videoplayer-shared"),Zv=s=>new xi.Observable(e=>{let t=new xi.Subscription,i=s.desiredPlaybackState$.stateChangeStarted$.pipe((0,xi.map)(({from:l,to:c})=>`${l}-${c}`)),r=s.desiredPlaybackState$.stateChangeEnded$,a=s.providerChanged$.pipe((0,xi.map)(({type:l})=>l!==void 0)),n=new xi.Subject,o=0,u="unknown";return t.add(i.subscribe(l=>{o&&window.clearTimeout(o),u=l,o=window.setTimeout(()=>n.next(l),s.maxTransitionInterval)})),t.add(r.subscribe(()=>{window.clearTimeout(o),u="unknown",o=0})),t.add(a.subscribe(l=>{o&&(window.clearTimeout(o),o=0,l&&(o=window.setTimeout(()=>n.next(u),s.maxTransitionInterval)))})),t.add(n.subscribe(e)),()=>{window.clearTimeout(o),t.unsubscribe()}});var Dt=require("@vkontakte/videoplayer-shared");function ey(){return new(window.AudioContext||window.webkitAudioContext)}var jr=class s{constructor(e,t,i,r){this.providerOutput=e;this.provider$=t;this.volumeMultiplierError$=i;this.volumeMultiplier=r;this.destroyController=new pe;this.subscriptions=new Dt.Subscription;this.audioContext=null;this.gainNode=null;this.mediaElementSource=null;this.subscriptions.add(this.provider$.pipe((0,Dt.filter)(a=>!!a.type),(0,Dt.once)()).subscribe(({type:a})=>this.subscribe(a)))}static{this.errorId="VolumeMultiplierManager"}subscribe(e){W.browser.isSafari&&e!=="MPEG"||this.subscriptions.add((0,Dt.combine)({video:this.providerOutput.element$,playbackState:this.providerOutput.playbackState$,volume:this.providerOutput.volume$}).pipe((0,Dt.filter)(({playbackState:t,video:i,volume:{muted:r,volume:a}})=>t==="playing"&&!!i&&!r&&!!a),(0,Dt.once)()).subscribe(({video:t})=>{this.initAudioContextOnce(t).then(i=>{i||this.destroy()}).catch(i=>{this.handleError(i),this.destroy()})}))}static isSupported(){return"AudioContext"in window&&"GainNode"in window&&"MediaElementAudioSourceNode"in window}async initAudioContextOnce(e){let{volumeMultiplier:t}=this,i=ey();this.audioContext=i;let r=i.createGain();if(this.gainNode=r,r.gain.value=t,r.connect(i.destination),i.state==="suspended"&&(await i.resume(),this.destroyController.signal.aborted))return!1;let a=i.createMediaElementSource(e);return this.mediaElementSource=a,a.connect(r),!0}cleanup(){this.mediaElementSource&&(this.mediaElementSource.disconnect(),this.mediaElementSource=null),this.gainNode&&(this.gainNode.disconnect(),this.gainNode=null),this.audioContext&&(this.audioContext.state!=="closed"&&this.audioContext.close(),this.audioContext=null)}destroy(){this.destroyController.abort(),this.subscriptions.unsubscribe(),this.cleanup()}handleError(e){this.volumeMultiplierError$.next({id:s.errorId,category:Dt.ErrorCategory.VIDEO_PIPELINE,message:e?.message??`${s.errorId} exception`,thrown:e})}};var fM={chunkDuration:5e3,maxParallelRequests:5},Ya=class{constructor(e){this.current$=new E.ValueSubject({type:void 0});this.providerError$=new E.Subject;this.noAvailableProvidersError$=new E.Subject;this.volumeMultiplierError$=new E.Subject;this.providerOutput={position$:new E.ValueSubject(0),duration$:new E.ValueSubject(1/0),volume$:new E.ValueSubject({muted:!1,volume:1}),availableVideoStreams$:new E.ValueSubject([]),currentVideoStream$:new E.ValueSubject(void 0),availableVideoTracks$:new E.ValueSubject([]),currentVideoTrack$:new E.ValueSubject(void 0),availableAudioStreams$:new E.ValueSubject([]),currentAudioStream$:new E.ValueSubject(void 0),availableAudioTracks$:new E.ValueSubject([]),currentVideoSegmentLength$:new E.ValueSubject(0),currentAudioSegmentLength$:new E.ValueSubject(0),isAudioAvailable$:new E.ValueSubject(!0),autoVideoTrackLimitingAvailable$:new E.ValueSubject(!1),autoVideoTrackLimits$:new E.ValueSubject(void 0),currentBuffer$:new E.ValueSubject(void 0),isBuffering$:new E.ValueSubject(!0),error$:new E.Subject,fetcherError$:new E.Subject,fetcherRecoverableError$:new E.Subject,warning$:new E.Subject,willSeekEvent$:new E.Subject,soundProhibitedEvent$:new E.Subject,seekedEvent$:new E.Subject,loopedEvent$:new E.Subject,endedEvent$:new E.Subject,firstBytesEvent$:new E.Subject,loadedMetadataEvent$:new E.Subject,firstFrameEvent$:new E.Subject,canplay$:new E.Subject,isLive$:new E.ValueSubject(void 0),isLiveEnded$:new E.ValueSubject(null),isLowLatency$:new E.ValueSubject(!1),canChangePlaybackSpeed$:new E.ValueSubject(!0),liveTime$:new E.ValueSubject(void 0),liveBufferTime$:new E.ValueSubject(void 0),liveLatency$:new E.ValueSubject(void 0),severeStallOccurred$:new E.Subject,availableTextTracks$:new E.ValueSubject([]),currentTextTrack$:new E.ValueSubject(void 0),hostname$:new E.ValueSubject(void 0),httpConnectionType$:new E.ValueSubject(void 0),httpConnectionReused$:new E.ValueSubject(void 0),inPiP$:new E.ValueSubject(!1),inFullscreen$:new E.ValueSubject(!1),element$:new E.ValueSubject(void 0),elementVisible$:new E.ValueSubject(!0),availableSources$:new E.ValueSubject(void 0),is3DVideo$:new E.ValueSubject(!1),playbackState$:new E.ValueSubject(""),getCurrentTime$:new E.ValueSubject(null)};this.subscription=new E.Subscription;this.volumeMultiplierManager=null;this.params=e,this.log=this.params.dependencies.logger.createComponentLog("ProviderContainer"),this.tracer=e.dependencies.tracer.createComponentTracer(this.constructor.name);let t=fv([...bv(this.params.tuning),...mv(this.params.tuning)],this.params.tuning).filter(l=>(0,E.isNonNullable)(e.sources[l])),{forceFormat:i,formatsToAvoid:r}=this.params.tuning,a=[];i?a=[i]:r.length?a=[...t.filter(l=>!(0,Oc.default)(r,l)),...t.filter(l=>(0,Oc.default)(r,l))]:a=t,this.log({message:`Selected formats: ${a.join(" > ")}`}),this.tracer.log("Selected formats",(0,E.flattenObject)(a)),this.screenFormatsIterator=new Wa(a);let n=[...bc(!0),...bc(!1)];this.chromecastFormatsIterator=new Wa(n.filter(l=>(0,E.isNonNullable)(e.sources[l]))),this.providerOutput.availableSources$.next(e.sources);let{volumeMultiplier:o=1,tuning:{useVolumeMultiplier:u}}=this.params;u&&o!==1&&jr.isSupported()&&(this.volumeMultiplierManager=new jr(this.providerOutput,this.current$,this.volumeMultiplierError$,o))}init(){this.subscription.add(this.initProviderErrorHandling()),this.subscription.add(this.params.dependencies.chromecastInitializer.connection$.subscribe(()=>{this.reinitProvider()}))}destroy(){this.destroyProvider(),this.current$.next({type:void 0}),this.subscription.unsubscribe(),this.volumeMultiplierManager?.destroy(),this.volumeMultiplierManager=null,this.tracer.end()}initProvider(){let e=this.chooseDestination(),t=this.chooseFormat(e);if((0,E.isNullable)(t)){this.handleNoFormatsError(e);return}let i;try{i=this.createProvider(e,t)}catch(r){this.providerError$.next({id:"ProviderNotConstructed",category:E.ErrorCategory.WTF,message:"Failed to create provider",thrown:r})}i?this.current$.next({type:t,provider:i,destination:e}):this.current$.next({type:void 0})}reinitProvider(){this.tracer.log("reinitProvider"),this.destroyProvider(),this.initProvider()}switchToNextProvider(e){this.tracer.log("switchToNextProvider",{destination:e}),this.destroyProvider(),this.failoverIndex=void 0,this.skipFormat(e),this.initProvider()}destroyProvider(){let e=this.current$.getValue().provider;if(!e)return;this.log({message:"destroyProvider"}),this.tracer.log("destroyProvider"),e.destroy();let t=this.providerOutput.position$.getValue()*1e3,i=this.params.desiredState.seekState.getState(),r=i.state!=="none";if(this.params.desiredState.seekState.setState({state:"requested",position:r?i.position:t,forcePrecise:r?i.forcePrecise:!1}),e.scene3D){let n=e.scene3D.getCameraRotation();this.params.desiredState.cameraOrientation.setState({x:n.x,y:n.y})}let a=this.providerOutput.isBuffering$;a.getValue()||a.next(!0)}createProvider(e,t){switch(this.log({message:`createProvider: ${e}:${t}`}),this.tracer.log("createProvider",{destination:e,format:t}),e){case"SCREEN":return this.createScreenProvider(t);case"CHROMECAST":return this.createChromecastProvider(t);default:return(0,E.assertNever)(e)}}createScreenProvider(e){let{sources:t,container:i,desiredState:r,panelSize:a}=this.params,n=this.providerOutput,o={container:i,source:null,desiredState:r,output:n,dependencies:this.params.dependencies,tuning:this.params.tuning,panelSize:a};switch(e){case"DASH_SEP":case"DASH_WEBM":case"DASH_WEBM_AV1":case"DASH_ONDEMAND":case"DASH_STREAMS":{let u=this.applyFailoverHost(t[e]),l=this.applyFailoverHost(t.HLS_ONDEMAND||t.HLS);return(0,E.assertNonNullable)(u),this.params.tuning.useNewDashProvider?new Ua({...o,source:u,sourceHls:l}):new la({...o,source:u,sourceHls:l})}case"DASH_LIVE_CMAF":{let u=this.applyFailoverHost(t[e]);return(0,E.assertNonNullable)(u),this.params.tuning.useNewDashProvider?new qa({...o,source:u}):new ca({...o,source:u})}case"HLS":case"HLS_ONDEMAND":{let u=this.applyFailoverHost(t[e]);return(0,E.assertNonNullable)(u),W.video.nativeHlsSupported||!this.params.tuning.useHlsJs?new za({...o,source:u}):new Ha({...o,source:u})}case"HLS_LIVE":case"HLS_LIVE_CMAF":{let u=this.applyFailoverHost(t[e]);return(0,E.assertNonNullable)(u),new ja({...o,source:u,config:{maxPausedTime:this.params.tuning.live.maxPausedTime},format:e})}case"MPEG":{let u=this.applyFailoverHost(t[e]);return(0,E.assertNonNullable)(u),new Ga({...o,source:u})}case"DASH_LIVE":{let u=this.applyFailoverHost(t[e]);return(0,E.assertNonNullable)(u),new Tg({...o,source:u,config:{...fM,maxPausedTime:this.params.tuning.live.maxPausedTime}})}case"WEB_RTC_LIVE":{let u=this.applyFailoverHost(t[e]);return(0,E.assertNonNullable)(u),new Qa({container:i,source:u,desiredState:r,output:n,dependencies:this.params.dependencies,tuning:this.params.tuning})}case"DASH":case"DASH_LIVE_WEBM":throw new Error(`${e} is no longer supported`);default:return(0,E.assertNever)(e)}}createChromecastProvider(e){let{sources:t,container:i,desiredState:r,meta:a}=this.params,n=this.providerOutput,o=this.params.dependencies.chromecastInitializer.connection$.getValue();return(0,E.assertNonNullable)(o),new Ss({connection:o,meta:a,container:i,source:t,format:e,desiredState:r,output:n,dependencies:this.params.dependencies,tuning:this.params.tuning})}chooseDestination(){return this.params.dependencies.chromecastInitializer.connection$.getValue()?"CHROMECAST":"SCREEN"}chooseFormat(e){switch(e){case"SCREEN":return this.screenFormatsIterator.isCompleted()?void 0:this.screenFormatsIterator.getValue();case"CHROMECAST":return this.chromecastFormatsIterator.isCompleted()?void 0:this.chromecastFormatsIterator.getValue();default:return(0,E.assertNever)(e)}}skipFormat(e){switch(e){case"SCREEN":return this.screenFormatsIterator.next();case"CHROMECAST":return this.chromecastFormatsIterator.next();default:return(0,E.assertNever)(e)}}handleNoFormatsError(e){switch(e){case"SCREEN":this.noAvailableProvidersError$.next(this.params.tuning.forceFormat),this.current$.next({type:void 0});return;case"CHROMECAST":this.params.dependencies.chromecastInitializer.disconnect();return;default:return(0,E.assertNever)(e)}}applyFailoverHost(e){if(this.failoverIndex===void 0)return e;let t=this.params.failoverHosts[this.failoverIndex];if(!t)return e;let i=r=>{let a=new URL(r);return a.host=t,a.toString()};if(e===void 0)return e;if("type"in e){if(e.type==="raw")return e;if(e.type==="url")return{...e,url:i(e.url)}}return(0,iy.default)((0,ty.default)(e).map(([r,a])=>[r,i(a)]))}initProviderErrorHandling(){let e=new E.Subscription,t=!1,i=0;return e.add((0,E.merge)(this.providerOutput.error$.pipe((0,E.filter)(r=>!this.params.tuning.ignoreAudioRendererError||!r.message||!/AUDIO_RENDERER_ERROR/ig.test(r.message))),Zv({desiredPlaybackState$:this.params.desiredState.playbackState,maxTransitionInterval:this.params.tuning.maxPlaybackTransitionInterval,position$:this.providerOutput.position$,providerChanged$:this.current$}).pipe((0,E.map)(r=>({id:`ProviderHangup:${r}`,category:E.ErrorCategory.WTF,message:`A ${r} transition failed to complete within reasonable time`})))).subscribe(this.providerError$)),e.add(this.providerOutput.fetcherError$.subscribe(this.providerError$)),e.add(this.current$.subscribe(()=>{t=!1;let r=this.params.desiredState.playbackState.transitionEnded$.pipe((0,E.filter)(({to:a})=>a==="playing"),(0,E.once)()).subscribe(()=>t=!0);e.add(r)})),e.add(this.providerError$.subscribe(r=>{let a=this.current$.getValue().destination,n={error:r,currentDestination:a};if(a==="CHROMECAST")this.destroyProvider(),this.params.dependencies.chromecastInitializer.stopMedia().then(()=>this.switchToNextProvider("SCREEN"),()=>this.params.dependencies.chromecastInitializer.disconnect());else{let o=r.category===E.ErrorCategory.NETWORK,u=r.category===E.ErrorCategory.FATAL,l=this.params.failoverHosts.length>0&&(this.failoverIndex===void 0||this.failoverIndex<this.params.failoverHosts.length-1),c=i<this.params.tuning.providerErrorLimit&&!u,p=l&&!u&&(o&&t||!c);n={...n,isNetworkError:o,isFatalError:u,haveFailoverHost:l,tryFailover:p,canReinitProvider:c},c?(i++,this.reinitProvider()):p?(this.failoverIndex=this.failoverIndex===void 0?0:this.failoverIndex+1,this.reinitProvider()):(i=0,this.switchToNextProvider(a??"SCREEN"))}this.tracer.error("providerError",(0,E.flattenObject)(n))})),e}};var Y=require("@vkontakte/videoplayer-shared");var mM=5e3,ry="one_video_throughput",sy="one_video_rtt",Ka=window.navigator.connection,ay=()=>{let s=Ka?.downlink;if((0,Y.isNonNullable)(s)&&s!==10)return s*1e3},ny=()=>{let s=Ka?.rtt;if((0,Y.isNonNullable)(s)&&s!==3e3)return s},oy=(s,e,t)=>{let i=t*8,r=i/s;return i/(r+e)},_c=class s{constructor(e){this.subscription=new Y.Subscription;this.concurrentDownloads=new Set;this.tuningConfig=e;let t=s.load(ry)||(e.useBrowserEstimation?ay():void 0)||mM,i=s.load(sy)??(e.useBrowserEstimation?ny():void 0)??0;if(this.throughput$=new Y.ValueSubject(t),this.rtt$=new Y.ValueSubject(i),this.rttAdjustedThroughput$=new Y.ValueSubject(oy(t,i,e.rttPenaltyRequestSize)),this.throughput=vi.getSmoothedValue(t,-1,e),this.rtt=vi.getSmoothedValue(i,1,e),e.useBrowserEstimation){let r=()=>{let n=ay();n&&this.throughput.next(n);let o=ny();(0,Y.isNonNullable)(o)&&this.rtt.next(o)};Ka&&"onchange"in Ka&&this.subscription.add((0,Y.fromEvent)(Ka,"change").subscribe(r)),r()}this.subscription.add(this.throughput.smoothed$.subscribe(r=>{Y.safeStorage.set(ry,r.toFixed(0))})),this.subscription.add(this.rtt.smoothed$.subscribe(r=>{Y.safeStorage.set(sy,r.toFixed(0))})),this.subscription.add(this.throughput.debounced$.subscribe(this.throughput$)),this.subscription.add(this.rtt.debounced$.subscribe(this.rtt$)),this.subscription.add((0,Y.combine)({throughput:this.throughput.smoothed$,rtt:this.rtt.smoothed$}).pipe((0,Y.map)(({throughput:r,rtt:a})=>oy(r,a,e.rttPenaltyRequestSize)),(0,Y.filter)(r=>{let a=this.rttAdjustedThroughput$.getValue()||0;return Math.abs(r-a)/a>=e.changeThreshold})).subscribe(this.rttAdjustedThroughput$))}destroy(){this.concurrentDownloads.clear(),this.subscription.unsubscribe()}trackXHR(e){let t=0,i=(0,Y.now)(),r=new Y.Subscription;switch(this.subscription.add(r),this.concurrentDownloads.add(e),e.readyState){case 4:break;case 3:case 2:r.add((0,Y.fromEvent)(e,"progress").pipe((0,Y.once)()).subscribe(a=>{t=a.loaded,i=(0,Y.now)()}));break;case 1:case 0:r.add((0,Y.fromEvent)(e,"loadstart").subscribe(()=>{t=0,i=(0,Y.now)()}));break}r.add((0,Y.fromEvent)(e,"loadend").subscribe(a=>{if(e.status===200){let n=a.loaded,o=(0,Y.now)(),u=n-t,l=o-i;this.addRawSpeed(u,l,1)}this.concurrentDownloads.delete(e),r.unsubscribe()}))}trackStream(e,t=!1){let i=e.getReader();if(!i){e.cancel("Could not get reader");return}let r=0,a=(0,Y.now)(),n=0,o=(0,Y.now)(),u=c=>{this.concurrentDownloads.delete(e),i.releaseLock(),e.cancel(`Throughput Estimator error: ${c}`).catch(()=>{})},l=async({done:c,value:p})=>{if(c)!t&&this.addRawSpeed(r,(0,Y.now)()-a,1),this.concurrentDownloads.delete(e);else if(p){if(t){let d=(0,Y.now)();if(d-o>this.tuningConfig.lowLatency.continuesByteSequenceInterval||d-a>this.tuningConfig.lowLatency.maxLastEvaluationTimeout){let m=o-a;m&&this.addRawSpeed(n,m,1,t),n=p.byteLength,a=(0,Y.now)()}else n+=p.byteLength;o=(0,Y.now)()}else r+=p.byteLength,n+=p.byteLength,n>=this.tuningConfig.streamMinSampleSize&&(0,Y.now)()-o>=this.tuningConfig.streamMinSampleTime&&(this.addRawSpeed(n,(0,Y.now)()-o,this.concurrentDownloads.size),n=0,o=(0,Y.now)());await i?.read().then(l,u)}};this.concurrentDownloads.add(e),i?.read().then(l,u)}addRawSpeed(e,t,i=1,r=!1){if(s.sanityCheck(e,t,r)){let a=e*8/t;this.throughput.next(a*i)}}addRawThroughput(e){this.throughput.next(e)}addRawRtt(e){this.rtt.next(e)}static sanityCheck(e,t,i=!1){let r=e*8/t;return!(!r||!isFinite(r)||r>1e6||r<30||i&&e<1e4||!i&&e<10*1024||!i&&t<=20)}static load(e){let t=Y.safeStorage.get(e);if((0,Y.isNonNullable)(t))return parseInt(t,10)??void 0}},uy=_c;var nr=require("@vkontakte/videoplayer-shared"),ly={configName:["core"],throughputEstimator:{type:"EmaAndMa",emaAlphaSlow:.2,emaAlphaFast:.7,emaAlpha:.45,basisTrendChangeCount:10,changeThreshold:.05,useBrowserEstimation:!0,rttPenaltyRequestSize:1*1024*1024,streamMinSampleSize:10*1024,streamMinSampleTime:300,deviationDepth:20,deviationFactor:.5,lowLatency:{continuesByteSequenceInterval:50,maxLastEvaluationTimeout:300}},autoTrackSelection:{maxBitrateFactorAtEmptyBuffer:4,bitrateFactorAtEmptyBuffer:2.8,minBitrateFactorAtEmptyBuffer:1.5,bitrateAudioFactorAtEmptyBuffer:10,maxBitrateFactorAtFullBuffer:3,bitrateFactorAtFullBuffer:2,minBitrateFactorAtFullBuffer:1,bitrateAudioFactorAtFullBuffer:7,minVideoAudioRatio:5,minAvailableThroughputAudioRatio:5,usePixelRatio:!0,pixelRatioMultiplier:void 0,pixelRatioLogBase:3,pixelRatioLogCoefficients:[1,0,1],limitByContainer:!0,maxContainerSizeFactor:2,containerSizeFactor:1.3,minContainerSizeFactor:1,lazyQualitySwitch:!0,minBufferToSwitchUp:.4,considerPlaybackRate:!1,trackCooldownIncreaseQuality:15e3,trackCooldownDecreaseQuality:3e3,backgroundVideoQualityLimit:nr.VideoQuality.Q_4320P,activeVideoAreaThreshold:.1,highQualityLimit:nr.VideoQuality.Q_720P,trafficSavingLimit:nr.VideoQuality.Q_480P},stallsManager:{stallDurationNoDataBeforeQualityDecrease:500,stallDurationToBeCount:100,stallCountBeforeQualityDecrease:3,resetQualityRestrictionTimeout:1e4,ignoreStallsOnSeek:!1,stallsMetricsHistoryLength:5,maxPossibleStallDuration:3e4,minTvtToBeCounted:0,maxTvtToBeCounted:3*60*60,targetStallsDurationPerTvt:1,deviationStallsDurationPerTvt:.5,criticalStallsDurationPerTvt:6,abrAdjustingSpeed:.1,emaAlpha:.6,useTotalStallsDurationPerTvt:!0,useAverageStallsDurationPerTvt:!0,useEmaStallsDurationPerTvt:!0},droppedFramesChecker:{enabled:!1,percentLimit:.1,checkTime:1e3,countLimit:3,tickCountAfterQualityChange:5,qualityUpWaitingTime:5e3,minQualityBanLimit:nr.VideoQuality.Q_480P},dash:{forwardBufferTarget:6e4,forwardBufferTargetAuto:6e4,forwardBufferTargetManual:5*6e4,forwardBufferTargetPreload:5e3,seekBiasInTheEnd:2e3,maxSegmentDurationLeftToSelectNextSegment:3e3,minSafeBufferThreshold:.5,bufferPruningSafeZone:1e3,segmentRequestSize:1*1024*1024,representationSwitchForwardBufferGap:3e3,crashOnStallTimeout:25e3,crashOnStallTWithoutDataTimeout:5e3,enableSubSegmentBufferFeeding:!0,bufferEmptinessTolerance:100,useFetchPriorityHints:!0,enableBaseUrlSupport:!0,maxSegmentRetryCount:5,sourceOpenTimeout:1e3,rejectOnSourceOpenTimeout:!1},dashCmafLive:{maxActiveLiveOffset:1e4,normalizedTargetMinBufferSize:6e4,normalizedLiveMinBufferSize:5e3,normalizedActualBufferOffset:1e4,offsetCalculationError:3e3,maxLiveDuration:7200,lowLatency:{maxTargetOffset:3e3,maxTargetOffsetDeviation:250,playbackCatchupSpeedup:.05,isActiveOnDefault:!1,bufferEstimator:{emaAlpha:.45,changeThreshold:.05,deviationDepth:20,deviationFactor:.5,extremumInterval:5}}},live:{minBuffer:3e3,minBufferSegments:3,lowLatencyMinBuffer:1e3,lowLatencyMinBufferSegments:1,isLiveCatchUpMode:!1,lowLatencyActiveLiveDelay:3e3,activeLiveDelay:5e3,maxPausedTime:5e3},downloadBackoff:{bufferThreshold:100,start:100,factor:2,max:3*1e3,random:.1},enableWakeLock:!0,enableTelemetryAtStart:!1,forceFormat:void 0,formatsToAvoid:[],disableChromecast:!1,chromecastReceiverId:"07A4434E",useWebmBigRequest:!1,webmCodec:"vp9",androidPreferredFormat:"dash",preferCMAF:!1,preferWebRTC:!1,preferMultiStream:!1,preferHDR:!1,bigRequestMinInitSize:50*1024,bigRequestMinDataSize:1*1024*1024,stripRangeHeader:!0,flushShortLoopedBuffers:!0,insufficientBufferRuleMargin:1e4,seekNearDurationBias:1,dashSeekInSegmentDurationThreshold:3*60*1e3,dashSeekInSegmentAlwaysSeekDelta:1e4,endGapTolerance:300,stallIgnoreThreshold:33,gapWatchdogInterval:50,requestQuick:!1,useHlsJs:!1,useNativeHLSTextTracks:!1,useManagedMediaSource:!0,useNewSwitchTo:!1,useNewDashProvider:!1,useNewAutoSelectVideoTrack:!1,useSafariEndlessRequestBugfix:!0,useRefactoredSearchGap:!1,isAudioDisabled:!1,autoplayOnlyInActiveTab:!0,dynamicImportTimeout:5e3,maxPlaybackTransitionInterval:2e4,providerErrorLimit:3,manifestRetryInterval:300,manifestRetryMaxInterval:1e4,manifestRetryMaxCount:10,audioVideoSyncRate:20,webrtc:{connectionRetryMaxNumber:3},spherical:{enabled:!1,fov:{x:135,y:76},rotationSpeed:45,maxYawAngle:175,rotationSpeedCorrection:10,degreeToPixelCorrection:5,speedFadeTime:2e3,speedFadeThreshold:50},useVolumeMultiplier:!1,ignoreAudioRendererError:!1,useEnableSubtitlesParam:!1,useOldMSEDetection:!1,useHlsLiveNewTextManager:!1,exposeInternalsToGlobal:!1,hlsLiveNewTextManagerDownloadThreshold:4e3,disableYandexPiP:!1,asyncResolveClientChecker:!1,autostartOnlyIfVisible:!1},cy=s=>({...(0,nr.fillWithDefault)(s,ly),configName:[...s.configName??[],...ly.configName]});var f=require("@vkontakte/videoplayer-shared");var Ei=require("@vkontakte/videoplayer-shared"),Fc=({seekState:s,position$:e})=>(0,Ei.merge)(s.stateChangeEnded$.pipe((0,Ei.map)(({to:t})=>t.state==="none"?void 0:(t.position??NaN)/1e3),(0,Ei.filter)(Ei.isNonNullable)),e.pipe((0,Ei.filter)(()=>s.getState().state==="none")));var dy=require("@vkontakte/videoplayer-shared"),py=s=>{let e=typeof s.container=="string"?document.getElementById(s.container):s.container;return(0,dy.assertNonNullable)(e,`Wrong container or containerId {${s.container}}`),e};var Bo=require("@vkontakte/videoplayer-shared"),hy=(s,e,t,i)=>{s!==void 0&&e.getState()===void 0&&e.getPrevState()===void 0&&t?.getValue().length===0?t.pipe((0,Bo.filter)(r=>r.length>0),(0,Bo.once)()).subscribe(r=>{r.find(i)&&e.startTransitionTo(s)}):(s===void 0||t?.getValue().find(i))&&e.startTransitionTo(s)};var Xa=class{constructor(e={configName:[]},t=f.Tracer.createRootTracer(!1)){this.subscription=new f.Subscription;this.logger=new f.Logger;this.abrLogger=this.logger.createComponentLog("ABR");this.internalsExposure=null;this.isPlaybackStarted=!1;this.hasLiveOffsetByPaused=new f.ValueSubject(!1);this.hasLiveOffsetByPausedTimer=0;this.playerInitRequest=0;this.playerInited=new f.ValueSubject(!1);this.wasSetStartedQuality=!1;this.desiredState={playbackState:new K("stopped"),seekState:new K({state:"none"}),volume:new K({volume:1,muted:!1}),videoTrack:new K(void 0),videoStream:new K(void 0),audioStream:new K(void 0),autoVideoTrackSwitching:new K(!0),autoVideoTrackLimits:new K({}),isLooped:new K(!1),isLowLatency:new K(!1),playbackRate:new K(1),externalTextTracks:new K([]),internalTextTracks:new K([]),currentTextTrack:new K(void 0),textTrackCuesSettings:new K({}),cameraOrientation:new K({x:0,y:0})};this.info={playbackState$:new f.ValueSubject(void 0),position$:new f.ValueSubject(0),duration$:new f.ValueSubject(1/0),muted$:new f.ValueSubject(!1),volume$:new f.ValueSubject(1),availableVideoStreams$:new f.ValueSubject([]),currentVideoStream$:new f.ValueSubject(void 0),availableQualities$:new f.ValueSubject([]),availableQualitiesFps$:new f.ValueSubject({}),currentQuality$:new f.ValueSubject(void 0),isAutoQualityEnabled$:new f.ValueSubject(!0),autoQualityLimitingAvailable$:new f.ValueSubject(!1),autoQualityLimits$:new f.ValueSubject({}),predefinedQualityLimitType$:new f.ValueSubject("unknown"),availableAudioStreams$:new f.ValueSubject([]),currentAudioStream$:new f.ValueSubject(void 0),availableAudioTracks$:new f.ValueSubject([]),isAudioAvailable$:new f.ValueSubject(!0),currentPlaybackRate$:new f.ValueSubject(1),currentBuffer$:new f.ValueSubject({start:0,end:0}),isBuffering$:new f.ValueSubject(!0),isStalled$:new f.ValueSubject(!1),isEnded$:new f.ValueSubject(!1),isLooped$:new f.ValueSubject(!1),isLive$:new f.ValueSubject(void 0),isLiveEnded$:new f.ValueSubject(null),canChangePlaybackSpeed$:new f.ValueSubject(void 0),atLiveEdge$:new f.ValueSubject(void 0),atLiveDurationEdge$:new f.ValueSubject(void 0),liveTime$:new f.ValueSubject(void 0),liveBufferTime$:new f.ValueSubject(void 0),liveLatency$:new f.ValueSubject(void 0),currentFormat$:new f.ValueSubject(void 0),availableTextTracks$:new f.ValueSubject([]),currentTextTrack$:new f.ValueSubject(void 0),throughputEstimation$:new f.ValueSubject(void 0),rttEstimation$:new f.ValueSubject(void 0),videoBitrate$:new f.ValueSubject(void 0),hostname$:new f.ValueSubject(void 0),httpConnectionType$:new f.ValueSubject(void 0),httpConnectionReused$:new f.ValueSubject(void 0),surface$:new f.ValueSubject("none"),chromecastState$:new f.ValueSubject("NOT_AVAILABLE"),chromecastDeviceName$:new f.ValueSubject(void 0),intrinsicVideoSize$:new f.ValueSubject(void 0),availableSources$:new f.ValueSubject(void 0),is3DVideo$:new f.ValueSubject(!1),currentVideoSegmentLength$:new f.ValueSubject(0),currentAudioSegmentLength$:new f.ValueSubject(0)};this.events={inited$:new f.Subject,ready$:new f.Subject,started$:new f.Subject,playing$:new f.Subject,paused$:new f.Subject,stopped$:new f.Subject,willStart$:new f.Subject,willResume$:new f.Subject,willPause$:new f.Subject,willStop$:new f.Subject,willDestruct$:new f.Subject,watchCoverageRecord$:new f.Subject,watchCoverageLive$:new f.Subject,managedError$:new f.Subject,fatalError$:new f.Subject,fetcherRecoverableError$:new f.Subject,ended$:new f.Subject,looped$:new f.Subject,seeked$:new f.Subject,willSeek$:new f.Subject,autoplaySoundProhibited$:new f.Subject,firstBytes$:new f.Subject,loadedMetadata$:new f.Subject,firstFrame$:new f.Subject,canplay$:new f.Subject,log$:new f.Subject,fetcherError$:new f.Subject,severeStallOccured$:new f.Subject};this.experimental={element$:new f.ValueSubject(void 0),tuningConfigName$:new f.ValueSubject([]),enableDebugTelemetry$:new f.ValueSubject(!1),dumpTelemetry:sg,getCurrentTime$:new f.ValueSubject(null)};if(this.initLogs(),this.tuning=cy(e),this.tracer=t,this.experimental.tuningConfigName$.next(this.tuning.configName),this.chromecastInitializer=new nn({receiverApplicationId:e.chromecastReceiverId,isDisabled:e.disableChromecast,dependencies:{logger:this.logger}}),this.throughputEstimator=new uy(this.tuning.throughputEstimator),e.exposeInternalsToGlobal&&(this.internalsExposure=new f.InternalsExposure("CORE"),this.internalsExposure.expose({player:this})),this.initChromecastSubscription(),this.initDesiredStateSubscriptions(),Proxy&&Reflect)return new Proxy(this,{get:(i,r,a)=>{let n=Reflect.get(i,r,a);return typeof n!="function"?n:(...o)=>{try{return n.apply(i,o)}catch(u){let l=o.map(d=>JSON.stringify(d,(h,m)=>{let g=typeof m;return(0,fy.default)(["number","string","boolean"],g)?m:m===null?null:`<${g}>`})),c=`Player.${String(r)}`,p=`Exception calling ${c} (${l.join(", ")})`;throw this.events.fatalError$.next({id:c,category:f.ErrorCategory.WTF,message:p,thrown:u}),u}}}})}initVideo(e){this.config=e,this.internalsExposure?.expose({config:e,logger:this.logger,tuning:this.tuning}),this.setMuted(this.tuning.isAudioDisabled);let t=()=>{let{container:a,...n}=e;this.tracer.log("initVideo",(0,f.flattenObject)(n)),this.domContainer=py(e),this.chromecastInitializer.contentId=e.meta?.videoId,this.providerContainer=new Ya({sources:e.sources,meta:e.meta??{},failoverHosts:e.failoverHosts??[],container:this.domContainer,desiredState:this.desiredState,dependencies:{throughputEstimator:this.throughputEstimator,chromecastInitializer:this.chromecastInitializer,tracer:this.tracer,logger:this.logger,abrLogger:this.abrLogger},tuning:this.tuning,volumeMultiplier:e.volumeMultiplier,panelSize:e.panelSize}),this.initProviderContainerSubscription(this.providerContainer),this.initStartingVideoTrack(this.providerContainer),this.initTracerSubscription(),this.providerContainer.init(),this.setLiveLowLatency(this.tuning.dashCmafLive.lowLatency.isActiveOnDefault),this.initDebugTelemetry(),this.initWakeLock(),this.playerInited.next(!0)},i=()=>{this.tuning.autostartOnlyIfVisible&&window.requestAnimationFrame?this.playerInitRequest=window.requestAnimationFrame(()=>t()):t()},r=()=>{this.tuning.asyncResolveClientChecker?W.isInited$.pipe((0,f.filter)(a=>!!a),(0,f.once)()).subscribe(()=>{console.log("Core SDK async start"),i()}):i()};return this.isNotActiveTabCase()?(this.tracer.log("request play from hidden tab"),(0,f.fromEvent)(document,"visibilitychange").pipe((0,f.once)()).subscribe(r)):r(),this}destroy(){this.tracer.log("destroy"),window.clearTimeout(this.hasLiveOffsetByPausedTimer),this.playerInitRequest&&window.cancelAnimationFrame(this.playerInitRequest),this.events.willDestruct$.next(),this.stop(),this.providerContainer?.destroy(),this.throughputEstimator.destroy(),this.chromecastInitializer.destroy(),this.subscription.unsubscribe(),this.tracer.end(),this.internalsExposure?.destroy()}prepare(){return this.subscription.add(this.playerInited.pipe((0,f.filter)(e=>!!e),(0,f.once)()).subscribe(()=>{let e=this.desiredState.playbackState;this.tracer.log("prepare",{currentPlayBackState:e.getState()}),e.getState()==="stopped"&&e.startTransitionTo("ready")})),this}play(){return this.subscription.add(this.playerInited.pipe((0,f.filter)(e=>!!e),(0,f.once)()).subscribe(()=>{let e=this.desiredState.playbackState;this.tracer.log("play",{currentPlayBackState:e.getState()}),e.getState()!=="playing"&&e.startTransitionTo("playing")})),this}pause(){return this.subscription.add(this.playerInited.pipe((0,f.filter)(e=>!!e),(0,f.once)()).subscribe(()=>{let e=this.desiredState.playbackState;this.tracer.log("pause",{currentPlayBackState:e.getState()}),e.getState()!=="paused"&&e.startTransitionTo("paused")})),this}stop(){return this.subscription.add(this.playerInited.pipe((0,f.filter)(e=>!!e),(0,f.once)()).subscribe(()=>{let e=this.desiredState.playbackState;this.tracer.log("stop",{currentPlayBackState:e.getState()}),e.getState()!=="stopped"&&e.startTransitionTo("stopped")})),this}seekTime(e,t=!0){return this.subscription.add(this.playerInited.pipe((0,f.filter)(i=>!!i),(0,f.once)()).subscribe(()=>{let i=this.info.duration$.getValue(),r=this.info.isLive$.getValue(),a=e;e>=i&&!r&&(a=i-this.tuning.seekNearDurationBias),this.tracer.log("seekTime",{duration:i,isLive:r,time:e,calculatedTime:a,forcePrecise:t}),Number.isFinite(a)&&(this.events.willSeek$.next({from:this.getExactTime(),to:a}),this.desiredState.seekState.setState({state:"requested",position:a*1e3,forcePrecise:t}))})),this}seekPercent(e){return this.subscription.add(this.playerInited.pipe((0,f.filter)(t=>!!t),(0,f.once)()).subscribe(()=>{let t=this.info.duration$.getValue();this.tracer.log("seekPercent",{percent:e,duration:t}),isFinite(t)&&this.seekTime(Math.abs(t)*e,!1)})),this}setVolume(e,t){return this.subscription.add(this.playerInited.pipe((0,f.filter)(i=>!!i),(0,f.once)()).subscribe(()=>{let i=this.desiredState.volume,a=i.getTransition()?.to.muted??this.info.muted$.getValue(),n=t??(this.tuning.isAudioDisabled||a);this.tracer.log("setVolume",{volume:e,isAudioDisabled:this.tuning.isAudioDisabled,chromecastState:this.chromecastInitializer.castState$.getValue(),muted:n}),this.chromecastInitializer.castState$.getValue()==="CONNECTED"?this.chromecastInitializer.setVolume(e):i.startTransitionTo({volume:e,muted:n})})),this}setMuted(e){return this.subscription.add(this.playerInited.pipe((0,f.filter)(t=>!!t),(0,f.once)()).subscribe(()=>{let t=this.desiredState.volume,i=this.tuning.isAudioDisabled||e,a=t.getTransition()?.to.volume??this.info.volume$.getValue();this.tracer.log("setMuted",{isMuted:e,nextMuted:i,volume:a,isAudioDisabled:this.tuning.isAudioDisabled,chromecastState:this.chromecastInitializer.castState$.getValue()}),this.chromecastInitializer.castState$.getValue()==="CONNECTED"?this.chromecastInitializer.setMuted(i):t.startTransitionTo({volume:a,muted:i})})),this}setVideoStream(e){return this.subscription.add(this.playerInited.pipe((0,f.filter)(t=>!!t),(0,f.once)()).subscribe(()=>{this.desiredState.videoStream.startTransitionTo(e)})),this}setAudioStream(e){return this.subscription.add(this.playerInited.pipe((0,f.filter)(t=>!!t),(0,f.once)()).subscribe(()=>{this.desiredState.audioStream.startTransitionTo(e)})),this}setQuality(e){return this.subscription.add(this.playerInited.pipe((0,f.filter)(t=>!!t),(0,f.once)()).subscribe(()=>{(0,f.assertNonNullable)(this.providerContainer);let t=this.providerContainer.providerOutput.availableVideoTracks$.getValue();this.tracer.log("setQuality",{isDelayed:t.length===0,quality:e}),this.desiredState.videoTrack.getState()===void 0&&this.desiredState.videoTrack.getPrevState()===void 0&&t.length===0?this.wasSetStartedQuality?this.providerContainer.providerOutput.availableVideoTracks$.pipe((0,f.filter)(i=>i.length>0),(0,f.once)()).subscribe(i=>{this.setVideoTrackIdByQuality(i,e)}):this.explicitInitialQuality=e:t.length>0&&this.setVideoTrackIdByQuality(t,e)})),this}setAutoQuality(e){return this.subscription.add(this.playerInited.pipe((0,f.filter)(t=>!!t),(0,f.once)()).subscribe(()=>{this.tracer.log("setAutoQuality",{enable:e}),this.desiredState.autoVideoTrackSwitching.startTransitionTo(e)})),this}setAutoQualityLimits(e){return this.subscription.add(this.playerInited.pipe((0,f.filter)(t=>!!t),(0,f.once)()).subscribe(()=>{this.tracer.log("setAutoQualityLimits",(0,f.flattenObject)(e)),this.desiredState.autoVideoTrackLimits.startTransitionTo(e)})),this}setPredefinedQualityLimits(e){return this.subscription.add(this.playerInited.pipe((0,f.filter)(t=>!!t),(0,f.once)()).subscribe(()=>{if(this.info.predefinedQualityLimitType$.getValue()===e)return this;let{highQualityLimit:t,trafficSavingLimit:i}=this.tuning.autoTrackSelection,r;switch(e){case"high_quality":r={min:t,max:void 0};break;case"traffic_saving":r={max:i,min:void 0};break;default:r={max:void 0,min:void 0}}this.setAutoQualityLimits(r)})),this}setPlaybackRate(e){return this.subscription.add(this.playerInited.pipe((0,f.filter)(t=>!!t),(0,f.once)()).subscribe(()=>{(0,f.assertNonNullable)(this.providerContainer);let t=this.providerContainer?.providerOutput.element$.getValue();this.tracer.log("setPlaybackRate",{playbackRate:e,isVideoElementAvailable:!!t}),t&&(this.desiredState.playbackRate.setState(e),t.playbackRate=e)})),this}setExternalTextTracks(e){return this.subscription.add(this.playerInited.pipe((0,f.filter)(t=>!!t),(0,f.once)()).subscribe(()=>{e.length&&this.tracer.log("setExternalTextTracks",(0,f.flattenObject)(e)),this.desiredState.externalTextTracks.startTransitionTo(e.map(t=>({type:"external",...t})))})),this}selectTextTrack(e){return this.subscription.add(this.playerInited.pipe((0,f.filter)(t=>!!t),(0,f.once)()).subscribe(()=>{hy(e,this.desiredState.currentTextTrack,this.providerContainer?.providerOutput.availableTextTracks$,t=>t.id===e),this.tracer.log("selectTextTrack",{textTrackId:e})})),this}setTextTrackCueSettings(e){return this.subscription.add(this.playerInited.pipe((0,f.filter)(t=>!!t),(0,f.once)()).subscribe(()=>{this.tracer.log("setTextTrackCueSettings",{...e}),this.desiredState.textTrackCuesSettings.startTransitionTo(e)})),this}setLiveLowLatency(e){let t=this.info.isLive$.getValue(),i=this.desiredState.isLowLatency.getState();return!t||i===e?this:(this.tracer.log("live switch to low latency "+e),this.desiredState.isLowLatency.setState(e),this.seekTime(0))}setLooped(e){return this.subscription.add(this.playerInited.pipe((0,f.filter)(t=>!!t),(0,f.once)()).subscribe(()=>{this.tracer.log("setLooped",{isLooped:e}),this.desiredState.isLooped.startTransitionTo(e)})),this}toggleChromecast(){this.tracer.log("toggleChromecast"),this.chromecastInitializer.toggleConnection()}startCameraManualRotation(e,t){return this.subscription.add(this.playerInited.pipe((0,f.filter)(i=>!!i),(0,f.once)()).subscribe(()=>{let i=this.getScene3D();this.tracer.log("startCameraManualRotation",{isScene3DAvailable:!!i,mx:e,my:t}),i&&i.startCameraManualRotation(e,t)})),this}stopCameraManualRotation(e=!1){return this.subscription.add(this.playerInited.pipe((0,f.filter)(t=>!!t),(0,f.once)()).subscribe(()=>{let t=this.getScene3D();this.tracer.log("stopCameraManualRotation",{isScene3DAvailable:!!t,immediate:e}),t&&t.stopCameraManualRotation(e)})),this}moveCameraFocusPX(e,t){return this.subscription.add(this.playerInited.pipe((0,f.filter)(i=>!!i),(0,f.once)()).subscribe(()=>{let i=this.getScene3D();if(this.tracer.log("moveCameraFocusPX",{isScene3DAvailable:!!i,dxpx:e,dypx:t}),i){let r=i.getCameraRotation(),a=i.pixelToDegree({x:e,y:t});this.desiredState.cameraOrientation.setState({x:r.x+a.x,y:r.y+a.y})}})),this}holdCamera(){return this.subscription.add(this.playerInited.pipe((0,f.filter)(e=>e),(0,f.once)()).subscribe(()=>{let e=this.getScene3D();e&&e.holdCamera()})),this}releaseCamera(){return this.subscription.add(this.playerInited.pipe((0,f.filter)(e=>!!e),(0,f.once)()).subscribe(()=>{let e=this.getScene3D();e&&e.releaseCamera()})),this}getExactTime(){if(!this.providerContainer)return 0;let e=this.providerContainer.providerOutput.element$.getValue();if((0,f.isNullable)(e))return this.info.position$.getValue();let t=this.desiredState.seekState.getState(),i=t.state==="none"?void 0:t.position;return(0,f.isNonNullable)(i)?i/1e3:e.currentTime}getAllLogs(){return this.logger.getAllLogs()}getScene3D(){let e=this.providerContainer?.current$.getValue();if(e?.provider?.scene3D)return e.provider.scene3D}setIntrinsicVideoSize(...e){let t={width:e.reduce((i,{width:r})=>i||r||0,0),height:e.reduce((i,{height:r})=>i||r||0,0)};t.width&&t.height&&this.info.intrinsicVideoSize$.next({width:t.width,height:t.height})}initDesiredStateSubscriptions(){this.subscription.add((0,f.merge)(this.desiredState.playbackState.stateChangeStarted$,this.desiredState.playbackState.forceChanged$).pipe((0,f.map)(e=>e.to)).subscribe(this.info.playbackState$)).add(this.desiredState.isLooped.stateChangeEnded$.pipe((0,f.map)(e=>e.to)).subscribe(this.info.isLooped$)).add(this.desiredState.playbackRate.stateChangeEnded$.pipe((0,f.map)(e=>e.to)).subscribe(this.info.currentPlaybackRate$)).add(this.desiredState.autoVideoTrackSwitching.stateChangeEnded$.pipe((0,f.map)(e=>e.to)).subscribe(this.info.isAutoQualityEnabled$)).add(this.desiredState.autoVideoTrackLimits.stateChangeEnded$.pipe((0,f.map)(e=>e.to)).subscribe(e=>{this.info.autoQualityLimits$.next(e);let{highQualityLimit:t,trafficSavingLimit:i}=this.tuning.autoTrackSelection;this.info.predefinedQualityLimitType$.next(_l(e,t,i))})),this.subscription.add(this.desiredState.playbackState.stateChangeStarted$.pipe((0,f.filter)(({from:e})=>e==="stopped"),(0,f.once)()).subscribe(()=>{this.initedAt=(0,f.now)(),this.events.inited$.next()})).add(this.desiredState.playbackState.stateChangeEnded$.subscribe(e=>{switch(e.to){case"ready":this.events.ready$.next();break;case"playing":this.isPlaybackStarted||this.events.started$.next(),this.isPlaybackStarted=!0,this.events.playing$.next();break;case"paused":this.events.paused$.next();break;case"stopped":this.events.stopped$.next()}})).add(this.desiredState.playbackState.stateChangeStarted$.subscribe(e=>{switch(e.to){case"paused":this.events.willPause$.next();break;case"playing":this.isPlaybackStarted?this.events.willResume$.next():this.events.willStart$.next();break;case"stopped":this.events.willStop$.next();break;default:}}))}initProviderContainerSubscription(e){this.subscription.add(e.providerOutput.willSeekEvent$.subscribe(()=>{let n=this.desiredState.seekState.getState();this.tracer.log("willSeekEvent",(0,f.flattenObject)(n)),n.state==="requested"?this.desiredState.seekState.setState({...n,state:"applying"}):this.events.managedError$.next({id:`WillSeekIn${n.state}`,category:f.ErrorCategory.WTF,message:"Received unexpeceted willSeek$"})})).add(e.providerOutput.soundProhibitedEvent$.pipe((0,f.once)()).subscribe(this.events.autoplaySoundProhibited$)).add(e.providerOutput.severeStallOccurred$.subscribe(this.events.severeStallOccured$)).add(e.providerOutput.seekedEvent$.subscribe(()=>{let n=this.desiredState.seekState.getState();this.tracer.log("seekedEvent",(0,f.flattenObject)(n)),n.state==="applying"&&(this.desiredState.seekState.setState({state:"none"}),this.events.seeked$.next())})).add(e.current$.pipe((0,f.map)(n=>n.type)).subscribe(this.info.currentFormat$)).add(e.current$.pipe((0,f.map)(n=>n.destination),(0,f.filterChanged)()).subscribe(()=>this.isPlaybackStarted=!1)).add(e.providerOutput.availableVideoStreams$.subscribe(this.info.availableVideoStreams$)).add((0,f.combine)({availableVideoTracks:e.providerOutput.availableVideoTracks$,currentVideoStream:e.providerOutput.currentVideoStream$}).pipe((0,f.map)(({availableVideoTracks:n,currentVideoStream:o})=>n.filter(u=>o?o.id===u.streamId:!0).map(({quality:u})=>u).sort((u,l)=>(0,f.isInvariantQuality)(u)?1:(0,f.isInvariantQuality)(l)?-1:(0,f.isHigher)(l,u)?1:-1))).subscribe(this.info.availableQualities$)).add(e.providerOutput.availableVideoTracks$.subscribe(n=>{let o={};for(let u of n)u.fps&&(o[u.quality]=u.fps);this.info.availableQualitiesFps$.next(o)})).add(e.providerOutput.availableAudioStreams$.subscribe(this.info.availableAudioStreams$)).add(e.providerOutput.currentVideoStream$.subscribe(this.info.currentVideoStream$)).add(e.providerOutput.currentAudioStream$.subscribe(this.info.currentAudioStream$)).add(e.providerOutput.availableAudioTracks$.subscribe(this.info.availableAudioTracks$)).add(e.providerOutput.isAudioAvailable$.pipe((0,f.filterChanged)()).subscribe(this.info.isAudioAvailable$)).add(e.providerOutput.currentVideoTrack$.pipe((0,f.filter)(n=>(0,f.isNonNullable)(n))).subscribe(n=>{this.info.currentQuality$.next(n?.quality),this.info.videoBitrate$.next(n?.bitrate)})).add(e.providerOutput.currentVideoSegmentLength$.pipe((0,f.filterChanged)((n,o)=>Math.round(n)===Math.round(o))).subscribe(this.info.currentVideoSegmentLength$)).add(e.providerOutput.currentAudioSegmentLength$.pipe((0,f.filterChanged)((n,o)=>Math.round(n)===Math.round(o))).subscribe(this.info.currentAudioSegmentLength$)).add(e.providerOutput.hostname$.pipe((0,f.filterChanged)()).subscribe(this.info.hostname$)).add(e.providerOutput.httpConnectionType$.pipe((0,f.filterChanged)()).subscribe(this.info.httpConnectionType$)).add(e.providerOutput.httpConnectionReused$.pipe((0,f.filterChanged)()).subscribe(this.info.httpConnectionReused$)).add(e.providerOutput.currentTextTrack$.subscribe(this.info.currentTextTrack$)).add(e.providerOutput.availableTextTracks$.subscribe(this.info.availableTextTracks$)).add(e.providerOutput.autoVideoTrackLimitingAvailable$.subscribe(this.info.autoQualityLimitingAvailable$)).add(e.providerOutput.autoVideoTrackLimits$.subscribe(n=>{this.desiredState.autoVideoTrackLimits.setState(n??{})})).add(e.providerOutput.currentBuffer$.pipe((0,f.map)(n=>n?{start:n.from,end:n.to}:{start:0,end:0})).subscribe(this.info.currentBuffer$)).add(e.providerOutput.duration$.subscribe(this.info.duration$)).add(e.providerOutput.isBuffering$.subscribe(this.info.isBuffering$)).add(e.providerOutput.isLive$.subscribe(this.info.isLive$)).add(e.providerOutput.isLiveEnded$.pipe((0,f.tap)(n=>n&&this.stop())).subscribe(this.info.isLiveEnded$)).add(e.providerOutput.canChangePlaybackSpeed$.subscribe(this.info.canChangePlaybackSpeed$)).add(e.providerOutput.liveTime$.subscribe(this.info.liveTime$)).add(e.providerOutput.liveBufferTime$.subscribe(this.info.liveBufferTime$)).add(e.providerOutput.liveLatency$.subscribe(this.info.liveLatency$)).add((0,f.combine)({hasLiveOffsetByPaused:(0,f.merge)(this.desiredState.playbackState.stateChangeStarted$,this.desiredState.playbackState.forceChanged$).pipe((0,f.map)(n=>n.to),(0,f.filterChanged)(),(0,f.map)(n=>n==="paused")),isLowLatency:e.providerOutput.isLowLatency$}).subscribe(({hasLiveOffsetByPaused:n,isLowLatency:o})=>{if(window.clearTimeout(this.hasLiveOffsetByPausedTimer),n){this.hasLiveOffsetByPausedTimer=window.setTimeout(()=>{this.hasLiveOffsetByPaused.next(!0)},this.getActiveLiveDelay(o));return}this.hasLiveOffsetByPaused.next(!1)})).add((0,f.combine)({atLiveEdge:(0,f.combine)({isLive:e.providerOutput.isLive$,isLowLatency:e.providerOutput.isLowLatency$,position:Fc({seekState:this.desiredState.seekState,position$:e.providerOutput.position$})}).pipe((0,f.map)(({isLive:n,position:o,isLowLatency:u})=>{let l=this.getActiveLiveDelay(u);return n&&Math.abs(o)<l/1e3}),(0,f.filterChanged)(),(0,f.tap)(n=>n&&this.setPlaybackRate(1))),hasPausedTimeoutCase:this.hasLiveOffsetByPaused}).pipe((0,f.map)(({atLiveEdge:n,hasPausedTimeoutCase:o})=>n&&!o)).subscribe(this.info.atLiveEdge$)).add((0,f.combine)({isLive:e.providerOutput.isLive$,position:e.providerOutput.position$,duration:e.providerOutput.duration$}).pipe((0,f.map)(({isLive:n,position:o,duration:u})=>n&&(Math.abs(u)-Math.abs(o))*1e3<this.tuning.live.activeLiveDelay),(0,f.filterChanged)(),(0,f.tap)(n=>n&&this.setPlaybackRate(1))).subscribe(this.info.atLiveDurationEdge$)).add(e.providerOutput.volume$.pipe((0,f.map)(n=>n.muted),(0,f.filterChanged)()).subscribe(this.info.muted$)).add(e.providerOutput.volume$.pipe((0,f.map)(n=>n.volume),(0,f.filterChanged)()).subscribe(this.info.volume$)).add(Fc({seekState:this.desiredState.seekState,position$:e.providerOutput.position$}).subscribe(this.info.position$)).add((0,f.merge)(e.providerOutput.endedEvent$.pipe((0,f.mapTo)(!0)),e.providerOutput.seekedEvent$.pipe((0,f.mapTo)(!1))).pipe((0,f.filterChanged)()).subscribe(this.info.isEnded$)).add(e.providerOutput.endedEvent$.subscribe(this.events.ended$)).add(e.providerOutput.loopedEvent$.subscribe(this.events.looped$)).add(e.providerError$.subscribe(this.events.managedError$)).add(e.providerOutput.fetcherRecoverableError$.subscribe(this.events.fetcherRecoverableError$)).add(e.providerOutput.fetcherError$.subscribe(this.events.fatalError$)).add(e.volumeMultiplierError$.subscribe(this.events.managedError$)).add(e.noAvailableProvidersError$.pipe((0,f.map)(n=>({id:n?`No${n}`:"NoProviders",category:f.ErrorCategory.VIDEO_PIPELINE,message:n?`${n} was forced but failed or not available`:"No suitable providers or all providers failed"}))).subscribe(this.events.fatalError$)).add(e.providerOutput.element$.subscribe(this.experimental.element$)).add(e.providerOutput.getCurrentTime$.subscribe(this.experimental.getCurrentTime$)).add(e.providerOutput.firstBytesEvent$.pipe((0,f.once)(),(0,f.map)(n=>n??(0,f.now)()-this.initedAt)).subscribe(this.events.firstBytes$)).add(e.providerOutput.loadedMetadataEvent$.subscribe(this.events.loadedMetadata$)).add(e.providerOutput.firstFrameEvent$.pipe((0,f.once)(),(0,f.map)(()=>(0,f.now)()-this.initedAt)).subscribe(this.events.firstFrame$)).add(e.providerOutput.canplay$.pipe((0,f.once)(),(0,f.map)(()=>(0,f.now)()-this.initedAt)).subscribe(this.events.canplay$)).add(this.throughputEstimator.throughput$.subscribe(this.info.throughputEstimation$)).add(this.throughputEstimator.rtt$.subscribe(this.info.rttEstimation$)).add(e.providerOutput.availableSources$.subscribe(this.info.availableSources$));let t=new f.ValueSubject(!1);this.subscription.add(e.providerOutput.seekedEvent$.subscribe(()=>t.next(!1))).add(e.providerOutput.willSeekEvent$.subscribe(()=>t.next(!0)));let i=new f.ValueSubject(!0);this.subscription.add(e.current$.subscribe(()=>i.next(!0))).add(this.desiredState.playbackState.stateChangeEnded$.pipe((0,f.filter)(({to:n})=>n==="playing"),(0,f.once)()).subscribe(()=>i.next(!1)));let r=0,a=(0,f.merge)(e.providerOutput.isBuffering$,t,i).pipe((0,f.map)(()=>{let n=e.providerOutput.isBuffering$.getValue(),o=t.getValue()||i.getValue();return n&&!o}),(0,f.filterChanged)());this.subscription.add(a.subscribe(n=>{n?r=window.setTimeout(()=>this.info.isStalled$.next(!0),this.tuning.stallIgnoreThreshold):(window.clearTimeout(r),this.info.isStalled$.next(!1))})),this.subscription.add((0,f.merge)(e.providerOutput.canplay$,e.providerOutput.firstFrameEvent$,e.providerOutput.firstBytesEvent$).subscribe(()=>{let n=e.providerOutput.element$.getValue();this.setIntrinsicVideoSize({width:n?.videoWidth,height:n?.videoHeight})})).add(e.providerOutput.currentVideoTrack$.subscribe(n=>{let o=e.providerOutput.element$.getValue();this.setIntrinsicVideoSize({width:n?.size?.width,height:n?.size?.height},{width:o?.videoWidth,height:o?.videoHeight})})).add(e.providerOutput.is3DVideo$.subscribe(this.info.is3DVideo$)),this.subscription.add((0,f.merge)(e.providerOutput.inPiP$,e.providerOutput.inFullscreen$,e.providerOutput.element$,e.providerOutput.elementVisible$,this.chromecastInitializer.castState$).subscribe(()=>{let n=e.providerOutput.inPiP$.getValue(),o=e.providerOutput.inFullscreen$.getValue(),u=e.providerOutput.element$.getValue(),l=e.providerOutput.elementVisible$.getValue(),c=this.chromecastInitializer.castState$.getValue(),p;c==="CONNECTED"?p="second_screen":u?l?n?p="pip":o?p="fullscreen":p="inline":p="invisible":p="none",this.info.surface$.getValue()!==p&&this.info.surface$.next(p)}))}initChromecastSubscription(){this.subscription.add(this.chromecastInitializer.castState$.subscribe(this.info.chromecastState$)),this.subscription.add(this.chromecastInitializer.connection$.pipe((0,f.map)(e=>e?.castDevice.friendlyName)).subscribe(this.info.chromecastDeviceName$)),this.subscription.add(this.chromecastInitializer.errorEvent$.subscribe(this.events.managedError$))}initStartingVideoTrack(e){let t=new f.Subscription;this.subscription.add(t),this.subscription.add(e.current$.pipe((0,f.filterChanged)((i,r)=>i.provider===r.provider)).subscribe(()=>{t.unsubscribe(),t.add(e.providerOutput.availableVideoTracks$.pipe((0,f.filter)(i=>i.length>0),(0,f.once)()).subscribe(i=>{this.setStartingVideoTrack(i)}))}))}setStartingVideoTrack(e){let t;this.wasSetStartedQuality=!0;let i=this.explicitInitialQuality??this.info.currentQuality$.getValue();i&&(t=e.find(({quality:r})=>r===i),t||this.setAutoQuality(!0)),t||(t=Zt(e,{container:this.domContainer.getBoundingClientRect(),panelSize:this.config.panelSize,estimatedThroughput:this.throughputEstimator.throughput$.getValue(),tuning:this.tuning.autoTrackSelection,limits:this.desiredState.autoVideoTrackLimits.getState(),playbackRate:this.info.currentPlaybackRate$.getValue(),forwardBufferHealth:0,abrLogger:this.abrLogger})),this.desiredState.videoTrack.startTransitionTo(t),this.info.currentQuality$.next(t.quality),this.info.videoBitrate$.next(t.bitrate)}initLogs(){this.subscription.add((0,f.merge)(this.desiredState.videoTrack.stateChangeStarted$.pipe((0,f.map)(e=>({transition:e,entity:"quality",type:"start"}))),this.desiredState.videoTrack.stateChangeEnded$.pipe((0,f.map)(e=>({transition:e,entity:"quality",type:"end"}))),this.desiredState.autoVideoTrackSwitching.stateChangeStarted$.pipe((0,f.map)(e=>({transition:e,entity:"autoQualityEnabled",type:"start"}))),this.desiredState.autoVideoTrackSwitching.stateChangeEnded$.pipe((0,f.map)(e=>({transition:e,entity:"autoQualityEnabled",type:"end"}))),this.desiredState.seekState.stateChangeStarted$.pipe((0,f.map)(e=>({transition:e,entity:"seekState",type:"start"}))),this.desiredState.seekState.stateChangeEnded$.pipe((0,f.map)(e=>({transition:e,entity:"seekState",type:"end"}))),this.desiredState.playbackState.stateChangeStarted$.pipe((0,f.map)(e=>({transition:e,entity:"playbackState",type:"start"}))),this.desiredState.playbackState.stateChangeEnded$.pipe((0,f.map)(e=>({transition:e,entity:"playbackState",type:"end"})))).pipe((0,f.map)(e=>({component:"desiredState",message:`[${e.entity} change] ${e.type}: ${JSON.stringify(e.transition)}`}))).subscribe(this.logger.log)),this.subscription.add(this.logger.log$.subscribe(this.events.log$))}initDebugTelemetry(){let e=this.providerContainer?.providerOutput;(0,f.assertNonNullable)(this.providerContainer),(0,f.assertNonNullable)(e),rg(),this.experimental.enableDebugTelemetry$.next(this.tuning.enableTelemetryAtStart),[this.experimental.enableDebugTelemetry$.subscribe(t=>ig(t)),this.providerContainer.current$.subscribe(({type:t})=>vs("provider",t)),e.duration$.subscribe(t=>vs("duration",t)),e.availableVideoTracks$.pipe((0,f.filter)(t=>!!t.length),(0,f.once)()).subscribe(t=>vs("tracks",t)),this.events.fatalError$.subscribe(new ot("fatalError")),this.events.managedError$.subscribe(new ot("managedError")),e.position$.subscribe(new ot("position")),e.currentVideoTrack$.pipe((0,f.map)(t=>t?.quality)).subscribe(new ot("quality")),this.info.currentBuffer$.subscribe(new ot("buffer")),e.isBuffering$.subscribe(new ot("isBuffering"))].forEach(t=>this.subscription.add(t)),vs("codecs",W.video.supportedCodecs)}initTracerSubscription(){let e=(0,f.getTraceSubscriptionMethod)(this.tracer.log.bind(this.tracer)),t=(0,f.getTraceSubscriptionMethod)(this.tracer.error.bind(this.tracer));this.subscription.add(this.info.playbackState$.subscribe(e("playbackState"))).add(this.info.isLooped$.subscribe(e("isLooped"))).add(this.info.currentPlaybackRate$.pipe((0,f.filterChanged)()).subscribe(e("currentPlaybackRate"))).add(this.info.isAutoQualityEnabled$.subscribe(e("isAutoQualityEnabled"))).add(this.info.autoQualityLimits$.subscribe(e("autoQualityLimits"))).add(this.info.currentFormat$.subscribe(e("currentFormat"))).add(this.info.availableQualities$.subscribe(e("availableQualities"))).add(this.info.availableQualitiesFps$.subscribe(e("availableQualitiesFps"))).add(this.info.availableAudioTracks$.subscribe(e("availableAudioTracks"))).add(this.info.isAudioAvailable$.subscribe(e("isAudioAvailable"))).add((0,f.combine)({currentQuality:this.info.currentQuality$,videoBitrate:this.info.videoBitrate$}).pipe((0,f.filter)(({currentQuality:i,videoBitrate:r})=>!!i&&!!r),(0,f.filterChanged)((i,r)=>i.currentQuality===r.currentQuality)).subscribe(e("currentVideoTrack"))).add(this.info.currentVideoSegmentLength$.pipe((0,f.filter)(i=>i>0),(0,f.filterChanged)()).subscribe(e("currentVideoSegmentLength"))).add(this.info.currentAudioSegmentLength$.pipe((0,f.filter)(i=>i>0),(0,f.filterChanged)()).subscribe(e("currentAudioSegmentLength"))).add(this.info.hostname$.subscribe(e("hostname"))).add(this.info.currentTextTrack$.subscribe(e("currentTextTrack"))).add(this.info.availableTextTracks$.subscribe(e("availableTextTracks"))).add(this.info.autoQualityLimitingAvailable$.subscribe(e("autoQualityLimitingAvailable"))).add((0,f.combine)({currentBuffer:this.info.currentBuffer$.pipe((0,f.filter)(i=>i.end>0),(0,f.filterChanged)((i,r)=>i.end===r.end&&i.start===r.start)),position:this.info.position$.pipe((0,f.filterChanged)())}).pipe((0,f.throttle)(1e3)).subscribe(e("currentBufferAndPosition"))).add(this.info.duration$.pipe((0,f.filterChanged)()).subscribe(e("duration"))).add(this.info.isBuffering$.subscribe(e("isBuffering"))).add(this.info.isLive$.pipe((0,f.filterChanged)()).subscribe(e("isLive"))).add(this.info.canChangePlaybackSpeed$.pipe((0,f.filterChanged)()).subscribe(e("canChangePlaybackSpeed"))).add((0,f.combine)({liveTime:this.info.liveTime$,liveBufferTime:this.info.liveBufferTime$,position:this.info.position$}).pipe((0,f.filter)(({liveTime:i,liveBufferTime:r})=>!!i&&!!r),(0,f.throttle)(1e3)).subscribe(e("liveBufferAndPosition"))).add(this.info.atLiveEdge$.pipe((0,f.filterChanged)(),(0,f.filter)(i=>i===!0)).subscribe(e("atLiveEdge"))).add(this.info.atLiveDurationEdge$.pipe((0,f.filterChanged)(),(0,f.filter)(i=>i===!0)).subscribe(e("atLiveDurationEdge"))).add(this.info.muted$.pipe((0,f.filterChanged)()).subscribe(e("muted"))).add(this.info.volume$.pipe((0,f.filterChanged)()).subscribe(e("volume"))).add(this.info.isEnded$.pipe((0,f.filterChanged)(),(0,f.filter)(i=>i===!0)).subscribe(e("isEnded"))).add(this.info.availableSources$.subscribe(e("availableSources"))).add((0,f.combine)({throughputEstimation:this.info.throughputEstimation$,rtt:this.info.rttEstimation$}).pipe((0,f.filter)(({throughputEstimation:i,rtt:r})=>!!i&&!!r),(0,f.throttle)(3e3)).subscribe(e("throughputEstimation"))).add(this.info.isStalled$.subscribe(e("isStalled"))).add(this.info.is3DVideo$.pipe((0,f.filterChanged)(),(0,f.filter)(i=>i===!0)).subscribe(e("is3DVideo"))).add(this.info.surface$.subscribe(e("surface"))).add(this.events.ended$.subscribe(e("ended"))).add(this.events.looped$.subscribe(e("looped"))).add(this.events.managedError$.subscribe(t("managedError"))).add(this.events.fatalError$.subscribe(t("fatalError"))).add(this.events.firstBytes$.subscribe(e("firstBytes"))).add(this.events.firstFrame$.subscribe(e("firstFrame"))).add(this.events.canplay$.subscribe(e("canplay")))}initWakeLock(){if(!window.navigator.wakeLock||!this.tuning.enableWakeLock)return;let e,t=()=>{e?.release(),e=void 0},i=async()=>{t(),e=await window.navigator.wakeLock.request("screen").catch(r=>{r instanceof DOMException&&r.name==="NotAllowedError"||this.events.managedError$.next({id:"WakeLock",category:f.ErrorCategory.DOM,message:String(r)})})};this.subscription.add((0,f.merge)((0,f.fromEvent)(document,"visibilitychange"),(0,f.fromEvent)(document,"fullscreenchange"),this.desiredState.playbackState.stateChangeEnded$).subscribe(()=>{let r=document.visibilityState==="visible",a=this.desiredState.playbackState.getState()==="playing",n=!!e&&!e?.released;r&&a?n||i():t()})).add(this.events.willDestruct$.subscribe(t))}setVideoTrackIdByQuality(e,t){let i=e.find(r=>r.quality===t);this.tracer.log("setVideoTrackIdByQuality",(0,f.flattenObject)({quality:t,availableTracks:(0,f.flattenObject)(e),track:(0,f.flattenObject)(i),isAutoQuality:!i})),i?this.desiredState.videoTrack.startTransitionTo(i):this.setAutoQuality(!0)}getActiveLiveDelay(e=!1){return e?this.tuning.live.lowLatencyActiveLiveDelay:this.tuning.live.activeLiveDelay}isNotActiveTabCase(){return document.hidden&&this.tuning.autoplayOnlyInActiveTab&&!Ps()}};var ii=require("@vkontakte/videoplayer-shared"),bM=`@vkontakte/videoplayer-core@${_o}`;
|