@vkontakte/videoplayer-core 2.0.131-dev.8a25f21f.0 → 2.0.131-dev.a5457847.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.
Files changed (71) hide show
  1. package/es2015.cjs.js +93 -32
  2. package/es2015.esm.js +92 -31
  3. package/es2018.cjs.js +93 -32
  4. package/es2018.esm.js +93 -32
  5. package/es2024.cjs.js +98 -37
  6. package/es2024.esm.js +95 -34
  7. package/esnext.cjs.js +98 -37
  8. package/esnext.esm.js +95 -34
  9. package/evergreen.esm.js +90 -29
  10. package/package.json +2 -2
  11. package/types/player/Player.d.ts +1 -5
  12. package/types/providers/DashProvider/baseDashProvider.d.ts +1 -0
  13. package/types/providers/DashProvider/lib/buffer.d.ts +3 -0
  14. package/types/providers/DashProvider/lib/fetcher.d.ts +2 -1
  15. package/types/providers/DashProvider/lib/player.d.ts +1 -0
  16. package/types/providers/DashProvider/lib/sourceBufferBufferedDiff.d.ts +19 -0
  17. package/types/providers/DashProvider/lib/utils.d.ts +11 -0
  18. package/types/providers/DashProviderNew/baseDashProvider.d.ts +57 -0
  19. package/types/providers/DashProviderNew/consts.d.ts +3 -0
  20. package/types/providers/DashProviderNew/index.d.ts +2 -0
  21. package/types/providers/DashProviderNew/lib/ElementSizeManager.d.ts +19 -0
  22. package/types/providers/DashProviderNew/lib/LiveTextManager.d.ts +23 -0
  23. package/types/providers/DashProviderNew/lib/buffer.d.ts +117 -0
  24. package/types/providers/DashProviderNew/lib/fetcher.d.ts +59 -0
  25. package/types/providers/DashProviderNew/lib/parsers/ietf/index.d.ts +13 -0
  26. package/types/providers/DashProviderNew/lib/parsers/index.d.ts +3 -0
  27. package/types/providers/DashProviderNew/lib/parsers/mpd.d.ts +3 -0
  28. package/types/providers/DashProviderNew/lib/parsers/mpeg/BoxModel.d.ts +20 -0
  29. package/types/providers/DashProviderNew/lib/parsers/mpeg/BoxParser.d.ts +21 -0
  30. package/types/providers/DashProviderNew/lib/parsers/mpeg/BoxTypeEnum.d.ts +30 -0
  31. package/types/providers/DashProviderNew/lib/parsers/mpeg/box.d.ts +74 -0
  32. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/avc1.d.ts +8 -0
  33. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/equi.d.ts +21 -0
  34. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/ftyp.d.ts +17 -0
  35. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/index.d.ts +26 -0
  36. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/mdat.d.ts +15 -0
  37. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/mdia.d.ts +8 -0
  38. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/mfhd.d.ts +11 -0
  39. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/minf.d.ts +8 -0
  40. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/moof.d.ts +8 -0
  41. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/moov.d.ts +8 -0
  42. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/mvhd.d.ts +35 -0
  43. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/prhd.d.ts +16 -0
  44. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/proj.d.ts +8 -0
  45. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/sidx.d.ts +48 -0
  46. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/st3d.d.ts +23 -0
  47. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/stbl.d.ts +8 -0
  48. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/stsd.d.ts +11 -0
  49. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/sv3d.d.ts +8 -0
  50. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/tfdt.d.ts +17 -0
  51. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/tfhd.d.ts +22 -0
  52. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/tkhd.d.ts +42 -0
  53. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/traf.d.ts +8 -0
  54. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/trak.d.ts +8 -0
  55. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/trun.d.ts +31 -0
  56. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/unknown.d.ts +6 -0
  57. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/uuid.d.ts +11 -0
  58. package/types/providers/DashProviderNew/lib/parsers/mpeg/fullBox.d.ts +15 -0
  59. package/types/providers/DashProviderNew/lib/parsers/mpeg/isobmff.d.ts +12 -0
  60. package/types/providers/DashProviderNew/lib/parsers/webm/ebml.d.ts +76 -0
  61. package/types/providers/DashProviderNew/lib/parsers/webm/webm.d.ts +3 -0
  62. package/types/providers/DashProviderNew/lib/player.d.ts +92 -0
  63. package/types/providers/DashProviderNew/lib/sourceBufferTaskQueue.d.ts +19 -0
  64. package/types/providers/DashProviderNew/lib/types.d.ts +186 -0
  65. package/types/providers/DashProviderNew/lib/utils.d.ts +21 -0
  66. package/types/providers/DashProviderNew/newDashCmafLiveProvider.d.ts +8 -0
  67. package/types/providers/DashProviderNew/newDashProvider.d.ts +6 -0
  68. package/types/providers/utils/StallsManager.d.ts +18 -4
  69. package/types/utils/autoSelectTrack.d.ts +6 -3
  70. package/types/utils/qualityLimits.d.ts +3 -18
  71. package/types/utils/tuningConfig.d.ts +28 -8
package/esnext.esm.js CHANGED
@@ -1,73 +1,127 @@
1
1
  /**
2
- * @vkontakte/videoplayer-core v2.0.131-dev.8a25f21f.0
3
- * Tue, 15 Apr 2025 09:36:54 GMT
2
+ * @vkontakte/videoplayer-core v2.0.131-dev.a5457847.0
3
+ * Wed, 30 Apr 2025 09:41:18 GMT
4
4
  * https://st.mycdn.me/static/vkontakte-videoplayer/2-0-131/doc/
5
5
  */
6
- var Fy=Object.create;var Rn=Object.defineProperty;var sc=Object.getOwnPropertyDescriptor;var qy=Object.getOwnPropertyNames;var Uy=Object.getPrototypeOf,Hy=Object.prototype.hasOwnProperty;var m=(r,e)=>()=>(e||r((e={exports:{}}).exports,e),e.exports);var jy=(r,e,t,i)=>{if(e&&typeof e=="object"||typeof e=="function")for(let a of qy(e))!Hy.call(r,a)&&a!==t&&Rn(r,a,{get:()=>e[a],enumerable:!(i=sc(e,a))||i.enumerable});return r};var M=(r,e,t)=>(t=r!=null?Fy(Uy(r)):{},jy(e||!r||!r.__esModule?Rn(t,"default",{value:r,enumerable:!0}):t,r));var Y=(r,e,t,i)=>{for(var a=i>1?void 0:i?sc(e,t):e,s=r.length-1,n;s>=0;s--)(n=r[s])&&(a=(i?n(e,t,a):n(a))||a);return i&&a&&Rn(e,t,a),a};var Z=m((Cn,oc)=>{"use strict";var er=function(r){return r&&r.Math===Math&&r};oc.exports=er(typeof globalThis=="object"&&globalThis)||er(typeof window=="object"&&window)||er(typeof self=="object"&&self)||er(typeof global=="object"&&global)||er(typeof Cn=="object"&&Cn)||function(){return this}()||Function("return this")()});var ce=m((SD,uc)=>{"use strict";uc.exports=function(r){try{return!!r()}catch{return!0}}});var tr=m((yD,lc)=>{"use strict";var Qy=ce();lc.exports=!Qy(function(){var r=function(){}.bind();return typeof r!="function"||r.hasOwnProperty("prototype")})});var Dn=m((TD,hc)=>{"use strict";var Gy=tr(),pc=Function.prototype,cc=pc.apply,dc=pc.call;hc.exports=typeof Reflect=="object"&&Reflect.apply||(Gy?dc.bind(cc):function(){return dc.apply(cc,arguments)})});var ne=m((ID,bc)=>{"use strict";var mc=tr(),fc=Function.prototype,Vn=fc.call,Wy=mc&&fc.bind.bind(Vn,Vn);bc.exports=mc?Wy:function(r){return function(){return Vn.apply(r,arguments)}}});var jt=m((ED,vc)=>{"use strict";var gc=ne(),Yy=gc({}.toString),zy=gc("".slice);vc.exports=function(r){return zy(Yy(r),8,-1)}});var Bn=m((xD,Sc)=>{"use strict";var Ky=jt(),Xy=ne();Sc.exports=function(r){if(Ky(r)==="Function")return Xy(r)}});var X=m((PD,yc)=>{"use strict";var On=typeof document=="object"&&document.all;yc.exports=typeof On>"u"&&On!==void 0?function(r){return typeof r=="function"||r===On}:function(r){return typeof r=="function"}});var Me=m((wD,Tc)=>{"use strict";var Jy=ce();Tc.exports=!Jy(function(){return Object.defineProperty({},1,{get:function(){return 7}})[1]!==7})});var Ce=m((kD,Ic)=>{"use strict";var Zy=tr(),Wa=Function.prototype.call;Ic.exports=Zy?Wa.bind(Wa):function(){return Wa.apply(Wa,arguments)}});var _n=m(Pc=>{"use strict";var Ec={}.propertyIsEnumerable,xc=Object.getOwnPropertyDescriptor,eT=xc&&!Ec.call({1:2},1);Pc.f=eT?function(e){var t=xc(this,e);return!!t&&t.enumerable}:Ec});var ir=m((LD,wc)=>{"use strict";wc.exports=function(r,e){return{enumerable:!(r&1),configurable:!(r&2),writable:!(r&4),value:e}}});var Ac=m((RD,kc)=>{"use strict";var tT=ne(),iT=ce(),rT=jt(),Nn=Object,aT=tT("".split);kc.exports=iT(function(){return!Nn("z").propertyIsEnumerable(0)})?function(r){return rT(r)==="String"?aT(r,""):Nn(r)}:Nn});var fi=m(($D,Lc)=>{"use strict";Lc.exports=function(r){return r==null}});var xt=m((MD,Rc)=>{"use strict";var sT=fi(),nT=TypeError;Rc.exports=function(r){if(sT(r))throw new nT("Can't call method on "+r);return r}});var Qt=m((CD,$c)=>{"use strict";var oT=Ac(),uT=xt();$c.exports=function(r){return oT(uT(r))}});var De=m((DD,Mc)=>{"use strict";var lT=X();Mc.exports=function(r){return typeof r=="object"?r!==null:lT(r)}});var bi=m((VD,Cc)=>{"use strict";Cc.exports={}});var dt=m((BD,Vc)=>{"use strict";var Fn=bi(),qn=Z(),cT=X(),Dc=function(r){return cT(r)?r:void 0};Vc.exports=function(r,e){return arguments.length<2?Dc(Fn[r])||Dc(qn[r]):Fn[r]&&Fn[r][e]||qn[r]&&qn[r][e]}});var rr=m((OD,Bc)=>{"use strict";var dT=ne();Bc.exports=dT({}.isPrototypeOf)});var Gt=m((_D,Nc)=>{"use strict";var pT=Z(),Oc=pT.navigator,_c=Oc&&Oc.userAgent;Nc.exports=_c?String(_c):""});var Hn=m((ND,Qc)=>{"use strict";var jc=Z(),Un=Gt(),Fc=jc.process,qc=jc.Deno,Uc=Fc&&Fc.versions||qc&&qc.version,Hc=Uc&&Uc.v8,Ge,Ya;Hc&&(Ge=Hc.split("."),Ya=Ge[0]>0&&Ge[0]<4?1:+(Ge[0]+Ge[1]));!Ya&&Un&&(Ge=Un.match(/Edge\/(\d+)/),(!Ge||Ge[1]>=74)&&(Ge=Un.match(/Chrome\/(\d+)/),Ge&&(Ya=+Ge[1])));Qc.exports=Ya});var jn=m((FD,Wc)=>{"use strict";var Gc=Hn(),hT=ce(),mT=Z(),fT=mT.String;Wc.exports=!!Object.getOwnPropertySymbols&&!hT(function(){var r=Symbol("symbol detection");return!fT(r)||!(Object(r)instanceof Symbol)||!Symbol.sham&&Gc&&Gc<41})});var Qn=m((qD,Yc)=>{"use strict";var bT=jn();Yc.exports=bT&&!Symbol.sham&&typeof Symbol.iterator=="symbol"});var Gn=m((UD,zc)=>{"use strict";var gT=dt(),vT=X(),ST=rr(),yT=Qn(),TT=Object;zc.exports=yT?function(r){return typeof r=="symbol"}:function(r){var e=gT("Symbol");return vT(e)&&ST(e.prototype,TT(r))}});var ar=m((HD,Kc)=>{"use strict";var IT=String;Kc.exports=function(r){try{return IT(r)}catch{return"Object"}}});var rt=m((jD,Xc)=>{"use strict";var ET=X(),xT=ar(),PT=TypeError;Xc.exports=function(r){if(ET(r))return r;throw new PT(xT(r)+" is not a function")}});var sr=m((QD,Jc)=>{"use strict";var wT=rt(),kT=fi();Jc.exports=function(r,e){var t=r[e];return kT(t)?void 0:wT(t)}});var ed=m((GD,Zc)=>{"use strict";var Wn=Ce(),Yn=X(),zn=De(),AT=TypeError;Zc.exports=function(r,e){var t,i;if(e==="string"&&Yn(t=r.toString)&&!zn(i=Wn(t,r))||Yn(t=r.valueOf)&&!zn(i=Wn(t,r))||e!=="string"&&Yn(t=r.toString)&&!zn(i=Wn(t,r)))return i;throw new AT("Can't convert object to primitive value")}});var We=m((WD,td)=>{"use strict";td.exports=!0});var ad=m((YD,rd)=>{"use strict";var id=Z(),LT=Object.defineProperty;rd.exports=function(r,e){try{LT(id,r,{value:e,configurable:!0,writable:!0})}catch{id[r]=e}return e}});var nr=m((zD,od)=>{"use strict";var RT=We(),$T=Z(),MT=ad(),sd="__core-js_shared__",nd=od.exports=$T[sd]||MT(sd,{});(nd.versions||(nd.versions=[])).push({version:"3.38.0",mode:RT?"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 Kn=m((KD,ld)=>{"use strict";var ud=nr();ld.exports=function(r,e){return ud[r]||(ud[r]=e||{})}});var gi=m((XD,cd)=>{"use strict";var CT=xt(),DT=Object;cd.exports=function(r){return DT(CT(r))}});var Ye=m((JD,dd)=>{"use strict";var VT=ne(),BT=gi(),OT=VT({}.hasOwnProperty);dd.exports=Object.hasOwn||function(e,t){return OT(BT(e),t)}});var Xn=m((ZD,pd)=>{"use strict";var _T=ne(),NT=0,FT=Math.random(),qT=_T(1 .toString);pd.exports=function(r){return"Symbol("+(r===void 0?"":r)+")_"+qT(++NT+FT,36)}});var de=m((e0,md)=>{"use strict";var UT=Z(),HT=Kn(),hd=Ye(),jT=Xn(),QT=jn(),GT=Qn(),vi=UT.Symbol,Jn=HT("wks"),WT=GT?vi.for||vi:vi&&vi.withoutSetter||jT;md.exports=function(r){return hd(Jn,r)||(Jn[r]=QT&&hd(vi,r)?vi[r]:WT("Symbol."+r)),Jn[r]}});var vd=m((t0,gd)=>{"use strict";var YT=Ce(),fd=De(),bd=Gn(),zT=sr(),KT=ed(),XT=de(),JT=TypeError,ZT=XT("toPrimitive");gd.exports=function(r,e){if(!fd(r)||bd(r))return r;var t=zT(r,ZT),i;if(t){if(e===void 0&&(e="default"),i=YT(t,r,e),!fd(i)||bd(i))return i;throw new JT("Can't convert object to primitive value")}return e===void 0&&(e="number"),KT(r,e)}});var Zn=m((i0,Sd)=>{"use strict";var eI=vd(),tI=Gn();Sd.exports=function(r){var e=eI(r,"string");return tI(e)?e:e+""}});var za=m((r0,Td)=>{"use strict";var iI=Z(),yd=De(),eo=iI.document,rI=yd(eo)&&yd(eo.createElement);Td.exports=function(r){return rI?eo.createElement(r):{}}});var to=m((a0,Id)=>{"use strict";var aI=Me(),sI=ce(),nI=za();Id.exports=!aI&&!sI(function(){return Object.defineProperty(nI("div"),"a",{get:function(){return 7}}).a!==7})});var Pd=m(xd=>{"use strict";var oI=Me(),uI=Ce(),lI=_n(),cI=ir(),dI=Qt(),pI=Zn(),hI=Ye(),mI=to(),Ed=Object.getOwnPropertyDescriptor;xd.f=oI?Ed:function(e,t){if(e=dI(e),t=pI(t),mI)try{return Ed(e,t)}catch{}if(hI(e,t))return cI(!uI(lI.f,e,t),e[t])}});var io=m((n0,wd)=>{"use strict";var fI=ce(),bI=X(),gI=/#|\.prototype\./,or=function(r,e){var t=SI[vI(r)];return t===TI?!0:t===yI?!1:bI(e)?fI(e):!!e},vI=or.normalize=function(r){return String(r).replace(gI,".").toLowerCase()},SI=or.data={},yI=or.NATIVE="N",TI=or.POLYFILL="P";wd.exports=or});var Si=m((o0,Ad)=>{"use strict";var kd=Bn(),II=rt(),EI=tr(),xI=kd(kd.bind);Ad.exports=function(r,e){return II(r),e===void 0?r:EI?xI(r,e):function(){return r.apply(e,arguments)}}});var ro=m((u0,Ld)=>{"use strict";var PI=Me(),wI=ce();Ld.exports=PI&&wI(function(){return Object.defineProperty(function(){},"prototype",{value:42,writable:!1}).prototype!==42})});var at=m((l0,Rd)=>{"use strict";var kI=De(),AI=String,LI=TypeError;Rd.exports=function(r){if(kI(r))return r;throw new LI(AI(r)+" is not an object")}});var Wt=m(Md=>{"use strict";var RI=Me(),$I=to(),MI=ro(),Ka=at(),$d=Zn(),CI=TypeError,ao=Object.defineProperty,DI=Object.getOwnPropertyDescriptor,so="enumerable",no="configurable",oo="writable";Md.f=RI?MI?function(e,t,i){if(Ka(e),t=$d(t),Ka(i),typeof e=="function"&&t==="prototype"&&"value"in i&&oo in i&&!i[oo]){var a=DI(e,t);a&&a[oo]&&(e[t]=i.value,i={configurable:no in i?i[no]:a[no],enumerable:so in i?i[so]:a[so],writable:!1})}return ao(e,t,i)}:ao:function(e,t,i){if(Ka(e),t=$d(t),Ka(i),$I)try{return ao(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 yi=m((d0,Cd)=>{"use strict";var VI=Me(),BI=Wt(),OI=ir();Cd.exports=VI?function(r,e,t){return BI.f(r,e,OI(1,t))}:function(r,e,t){return r[e]=t,r}});var te=m((p0,Vd)=>{"use strict";var ur=Z(),_I=Dn(),NI=Bn(),FI=X(),qI=Pd().f,UI=io(),Ti=bi(),HI=Si(),Ii=yi(),Dd=Ye();nr();var jI=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 _I(r,this,arguments)};return e.prototype=r.prototype,e};Vd.exports=function(r,e){var t=r.target,i=r.global,a=r.stat,s=r.proto,n=i?ur:a?ur[t]:ur[t]&&ur[t].prototype,o=i?Ti:Ti[t]||Ii(Ti,t,{})[t],u=o.prototype,l,c,d,p,h,f,b,g,v;for(p in e)l=UI(i?p:t+(a?".":"#")+p,r.forced),c=!l&&n&&Dd(n,p),f=o[p],c&&(r.dontCallGetSet?(v=qI(n,p),b=v&&v.value):b=n[p]),h=c&&b?b:e[p],!(!l&&!s&&typeof f==typeof h)&&(r.bind&&c?g=HI(h,ur):r.wrap&&c?g=jI(h):s&&FI(h)?g=NI(h):g=h,(r.sham||h&&h.sham||f&&f.sham)&&Ii(g,"sham",!0),Ii(o,p,g),s&&(d=t+"Prototype",Dd(Ti,d)||Ii(Ti,d,{}),Ii(Ti[d],p,h),r.real&&u&&(l||!u[p])&&Ii(u,p,h)))}});var Od=m((h0,Bd)=>{"use strict";var QI=Math.ceil,GI=Math.floor;Bd.exports=Math.trunc||function(e){var t=+e;return(t>0?GI:QI)(t)}});var lr=m((m0,_d)=>{"use strict";var WI=Od();_d.exports=function(r){var e=+r;return e!==e||e===0?0:WI(e)}});var Fd=m((f0,Nd)=>{"use strict";var YI=lr(),zI=Math.max,KI=Math.min;Nd.exports=function(r,e){var t=YI(r);return t<0?zI(t+e,0):KI(t,e)}});var uo=m((b0,qd)=>{"use strict";var XI=lr(),JI=Math.min;qd.exports=function(r){var e=XI(r);return e>0?JI(e,9007199254740991):0}});var Ei=m((g0,Ud)=>{"use strict";var ZI=uo();Ud.exports=function(r){return ZI(r.length)}});var lo=m((v0,jd)=>{"use strict";var eE=Qt(),tE=Fd(),iE=Ei(),Hd=function(r){return function(e,t,i){var a=eE(e),s=iE(a);if(s===0)return!r&&-1;var n=tE(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}};jd.exports={includes:Hd(!0),indexOf:Hd(!1)}});var cr=m((S0,Qd)=>{"use strict";Qd.exports=function(){}});var Gd=m(()=>{"use strict";var rE=te(),aE=lo().includes,sE=ce(),nE=cr(),oE=sE(function(){return!Array(1).includes()});rE({target:"Array",proto:!0,forced:oE},{includes:function(e){return aE(this,e,arguments.length>1?arguments[1]:void 0)}});nE("includes")});var Pt=m((I0,Wd)=>{"use strict";var uE=dt();Wd.exports=uE});var zd=m((E0,Yd)=>{"use strict";Gd();var lE=Pt();Yd.exports=lE("Array","includes")});var Xd=m((x0,Kd)=>{"use strict";var cE=zd();Kd.exports=cE});var Ne=m((P0,Jd)=>{"use strict";var dE=Xd();Jd.exports=dE});var Za=m((O0,np)=>{"use strict";var SE=Kn(),yE=Xn(),sp=SE("keys");np.exports=function(r){return sp[r]||(sp[r]=yE(r))}});var up=m((_0,op)=>{"use strict";var TE=ce();op.exports=!TE(function(){function r(){}return r.prototype.constructor=null,Object.getPrototypeOf(new r)!==r.prototype})});var es=m((N0,cp)=>{"use strict";var IE=Ye(),EE=X(),xE=gi(),PE=Za(),wE=up(),lp=PE("IE_PROTO"),ho=Object,kE=ho.prototype;cp.exports=wE?ho.getPrototypeOf:function(r){var e=xE(r);if(IE(e,lp))return e[lp];var t=e.constructor;return EE(t)&&e instanceof t?t.prototype:e instanceof ho?kE:null}});var ts=m((F0,dp)=>{"use strict";dp.exports={}});var mp=m((q0,hp)=>{"use strict";var AE=ne(),mo=Ye(),LE=Qt(),RE=lo().indexOf,$E=ts(),pp=AE([].push);hp.exports=function(r,e){var t=LE(r),i=0,a=[],s;for(s in t)!mo($E,s)&&mo(t,s)&&pp(a,s);for(;e.length>i;)mo(t,s=e[i++])&&(~RE(a,s)||pp(a,s));return a}});var fo=m((U0,fp)=>{"use strict";fp.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]});var bo=m((H0,bp)=>{"use strict";var ME=mp(),CE=fo();bp.exports=Object.keys||function(e){return ME(e,CE)}});var go=m((j0,Tp)=>{"use strict";var vp=Me(),DE=ce(),Sp=ne(),VE=es(),BE=bo(),OE=Qt(),_E=_n().f,yp=Sp(_E),NE=Sp([].push),FE=vp&&DE(function(){var r=Object.create(null);return r[2]=2,!yp(r,2)}),gp=function(r){return function(e){for(var t=OE(e),i=BE(t),a=FE&&VE(t)===null,s=i.length,n=0,o=[],u;s>n;)u=i[n++],(!vp||(a?u in t:yp(t,u)))&&NE(o,r?[u,t[u]]:t[u]);return o}};Tp.exports={entries:gp(!0),values:gp(!1)}});var Ip=m(()=>{"use strict";var qE=te(),UE=go().entries;qE({target:"Object",stat:!0},{entries:function(e){return UE(e)}})});var xp=m((W0,Ep)=>{"use strict";Ip();var HE=bi();Ep.exports=HE.Object.entries});var wp=m((Y0,Pp)=>{"use strict";var jE=xp();Pp.exports=jE});var xi=m((z0,kp)=>{"use strict";var QE=wp();kp.exports=QE});var Yt=m((K0,Ap)=>{"use strict";Ap.exports={}});var $p=m((X0,Rp)=>{"use strict";var GE=Z(),WE=X(),Lp=GE.WeakMap;Rp.exports=WE(Lp)&&/native code/.test(String(Lp))});var To=m((J0,Dp)=>{"use strict";var YE=$p(),Cp=Z(),zE=De(),KE=yi(),vo=Ye(),So=nr(),XE=Za(),JE=ts(),Mp="Object already initialized",yo=Cp.TypeError,ZE=Cp.WeakMap,is,dr,rs,ex=function(r){return rs(r)?dr(r):is(r,{})},tx=function(r){return function(e){var t;if(!zE(e)||(t=dr(e)).type!==r)throw new yo("Incompatible receiver, "+r+" required");return t}};YE||So.state?(ze=So.state||(So.state=new ZE),ze.get=ze.get,ze.has=ze.has,ze.set=ze.set,is=function(r,e){if(ze.has(r))throw new yo(Mp);return e.facade=r,ze.set(r,e),e},dr=function(r){return ze.get(r)||{}},rs=function(r){return ze.has(r)}):(zt=XE("state"),JE[zt]=!0,is=function(r,e){if(vo(r,zt))throw new yo(Mp);return e.facade=r,KE(r,zt,e),e},dr=function(r){return vo(r,zt)?r[zt]:{}},rs=function(r){return vo(r,zt)});var ze,zt;Dp.exports={set:is,get:dr,has:rs,enforce:ex,getterFor:tx}});var xo=m((Z0,Bp)=>{"use strict";var Io=Me(),ix=Ye(),Vp=Function.prototype,rx=Io&&Object.getOwnPropertyDescriptor,Eo=ix(Vp,"name"),ax=Eo&&function(){}.name==="something",sx=Eo&&(!Io||Io&&rx(Vp,"name").configurable);Bp.exports={EXISTS:Eo,PROPER:ax,CONFIGURABLE:sx}});var _p=m(Op=>{"use strict";var nx=Me(),ox=ro(),ux=Wt(),lx=at(),cx=Qt(),dx=bo();Op.f=nx&&!ox?Object.defineProperties:function(e,t){lx(e);for(var i=cx(t),a=dx(t),s=a.length,n=0,o;s>n;)ux.f(e,o=a[n++],i[o]);return e}});var Po=m((tV,Np)=>{"use strict";var px=dt();Np.exports=px("document","documentElement")});var Lo=m((iV,Gp)=>{"use strict";var hx=at(),mx=_p(),Fp=fo(),fx=ts(),bx=Po(),gx=za(),vx=Za(),qp=">",Up="<",ko="prototype",Ao="script",jp=vx("IE_PROTO"),wo=function(){},Qp=function(r){return Up+Ao+qp+r+Up+"/"+Ao+qp},Hp=function(r){r.write(Qp("")),r.close();var e=r.parentWindow.Object;return r=null,e},Sx=function(){var r=gx("iframe"),e="java"+Ao+":",t;return r.style.display="none",bx.appendChild(r),r.src=String(e),t=r.contentWindow.document,t.open(),t.write(Qp("document.F=Object")),t.close(),t.F},as,ss=function(){try{as=new ActiveXObject("htmlfile")}catch{}ss=typeof document<"u"?document.domain&&as?Hp(as):Sx():Hp(as);for(var r=Fp.length;r--;)delete ss[ko][Fp[r]];return ss()};fx[jp]=!0;Gp.exports=Object.create||function(e,t){var i;return e!==null?(wo[ko]=hx(e),i=new wo,wo[ko]=null,i[jp]=e):i=ss(),t===void 0?i:mx.f(i,t)}});var Pi=m((rV,Wp)=>{"use strict";var yx=yi();Wp.exports=function(r,e,t,i){return i&&i.enumerable?r[e]=t:yx(r,e,t),r}});var Co=m((aV,Kp)=>{"use strict";var Tx=ce(),Ix=X(),Ex=De(),xx=Lo(),Yp=es(),Px=Pi(),wx=de(),kx=We(),Mo=wx("iterator"),zp=!1,pt,Ro,$o;[].keys&&($o=[].keys(),"next"in $o?(Ro=Yp(Yp($o)),Ro!==Object.prototype&&(pt=Ro)):zp=!0);var Ax=!Ex(pt)||Tx(function(){var r={};return pt[Mo].call(r)!==r});Ax?pt={}:kx&&(pt=xx(pt));Ix(pt[Mo])||Px(pt,Mo,function(){return this});Kp.exports={IteratorPrototype:pt,BUGGY_SAFARI_ITERATORS:zp}});var ns=m((sV,Jp)=>{"use strict";var Lx=de(),Rx=Lx("toStringTag"),Xp={};Xp[Rx]="z";Jp.exports=String(Xp)==="[object z]"});var pr=m((nV,Zp)=>{"use strict";var $x=ns(),Mx=X(),os=jt(),Cx=de(),Dx=Cx("toStringTag"),Vx=Object,Bx=os(function(){return arguments}())==="Arguments",Ox=function(r,e){try{return r[e]}catch{}};Zp.exports=$x?os:function(r){var e,t,i;return r===void 0?"Undefined":r===null?"Null":typeof(t=Ox(e=Vx(r),Dx))=="string"?t:Bx?os(e):(i=os(e))==="Object"&&Mx(e.callee)?"Arguments":i}});var th=m((oV,eh)=>{"use strict";var _x=ns(),Nx=pr();eh.exports=_x?{}.toString:function(){return"[object "+Nx(this)+"]"}});var hr=m((uV,rh)=>{"use strict";var Fx=ns(),qx=Wt().f,Ux=yi(),Hx=Ye(),jx=th(),Qx=de(),ih=Qx("toStringTag");rh.exports=function(r,e,t,i){var a=t?r:r&&r.prototype;a&&(Hx(a,ih)||qx(a,ih,{configurable:!0,value:e}),i&&!Fx&&Ux(a,"toString",jx))}});var sh=m((lV,ah)=>{"use strict";var Gx=Co().IteratorPrototype,Wx=Lo(),Yx=ir(),zx=hr(),Kx=Yt(),Xx=function(){return this};ah.exports=function(r,e,t,i){var a=e+" Iterator";return r.prototype=Wx(Gx,{next:Yx(+!i,t)}),zx(r,a,!1,!0),Kx[a]=Xx,r}});var oh=m((cV,nh)=>{"use strict";var Jx=ne(),Zx=rt();nh.exports=function(r,e,t){try{return Jx(Zx(Object.getOwnPropertyDescriptor(r,e)[t]))}catch{}}});var lh=m((dV,uh)=>{"use strict";var eP=De();uh.exports=function(r){return eP(r)||r===null}});var dh=m((pV,ch)=>{"use strict";var tP=lh(),iP=String,rP=TypeError;ch.exports=function(r){if(tP(r))return r;throw new rP("Can't set "+iP(r)+" as a prototype")}});var Do=m((hV,ph)=>{"use strict";var aP=oh(),sP=De(),nP=xt(),oP=dh();ph.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var r=!1,e={},t;try{t=aP(Object.prototype,"__proto__","set"),t(e,[]),r=e instanceof Array}catch{}return function(a,s){return nP(a),oP(s),sP(a)&&(r?t(a,s):a.__proto__=s),a}}():void 0)});var Eh=m((mV,Ih)=>{"use strict";var uP=te(),lP=Ce(),us=We(),yh=xo(),cP=X(),dP=sh(),hh=es(),mh=Do(),pP=hr(),hP=yi(),Vo=Pi(),mP=de(),fh=Yt(),Th=Co(),fP=yh.PROPER,bP=yh.CONFIGURABLE,bh=Th.IteratorPrototype,ls=Th.BUGGY_SAFARI_ITERATORS,mr=mP("iterator"),gh="keys",fr="values",vh="entries",Sh=function(){return this};Ih.exports=function(r,e,t,i,a,s,n){dP(t,e,i);var o=function(v){if(v===a&&p)return p;if(!ls&&v&&v in c)return c[v];switch(v){case gh:return function(){return new t(this,v)};case fr:return function(){return new t(this,v)};case vh:return function(){return new t(this,v)}}return function(){return new t(this)}},u=e+" Iterator",l=!1,c=r.prototype,d=c[mr]||c["@@iterator"]||a&&c[a],p=!ls&&d||o(a),h=e==="Array"&&c.entries||d,f,b,g;if(h&&(f=hh(h.call(new r)),f!==Object.prototype&&f.next&&(!us&&hh(f)!==bh&&(mh?mh(f,bh):cP(f[mr])||Vo(f,mr,Sh)),pP(f,u,!0,!0),us&&(fh[u]=Sh))),fP&&a===fr&&d&&d.name!==fr&&(!us&&bP?hP(c,"name",fr):(l=!0,p=function(){return lP(d,this)})),a)if(b={values:o(fr),keys:s?p:o(gh),entries:o(vh)},n)for(g in b)(ls||l||!(g in c))&&Vo(c,g,b[g]);else uP({target:e,proto:!0,forced:ls||l},b);return(!us||n)&&c[mr]!==p&&Vo(c,mr,p,{name:a}),fh[e]=p,b}});var Ph=m((fV,xh)=>{"use strict";xh.exports=function(r,e){return{value:r,done:e}}});var Oo=m((bV,Rh)=>{"use strict";var gP=Qt(),Bo=cr(),wh=Yt(),Ah=To(),vP=Wt().f,SP=Eh(),cs=Ph(),yP=We(),TP=Me(),Lh="Array Iterator",IP=Ah.set,EP=Ah.getterFor(Lh);Rh.exports=SP(Array,"Array",function(r,e){IP(this,{type:Lh,target:gP(r),index:0,kind:e})},function(){var r=EP(this),e=r.target,t=r.index++;if(!e||t>=e.length)return r.target=void 0,cs(void 0,!0);switch(r.kind){case"keys":return cs(t,!1);case"values":return cs(e[t],!1)}return cs([t,e[t]],!1)},"values");var kh=wh.Arguments=wh.Array;Bo("keys");Bo("values");Bo("entries");if(!yP&&TP&&kh.name!=="values")try{vP(kh,"name",{value:"values"})}catch{}});var Mh=m((gV,$h)=>{"use strict";var xP=de(),PP=Yt(),wP=xP("iterator"),kP=Array.prototype;$h.exports=function(r){return r!==void 0&&(PP.Array===r||kP[wP]===r)}});var _o=m((vV,Dh)=>{"use strict";var AP=pr(),Ch=sr(),LP=fi(),RP=Yt(),$P=de(),MP=$P("iterator");Dh.exports=function(r){if(!LP(r))return Ch(r,MP)||Ch(r,"@@iterator")||RP[AP(r)]}});var Bh=m((SV,Vh)=>{"use strict";var CP=Ce(),DP=rt(),VP=at(),BP=ar(),OP=_o(),_P=TypeError;Vh.exports=function(r,e){var t=arguments.length<2?OP(r):e;if(DP(t))return VP(CP(t,r));throw new _P(BP(r)+" is not iterable")}});var Nh=m((yV,_h)=>{"use strict";var NP=Ce(),Oh=at(),FP=sr();_h.exports=function(r,e,t){var i,a;Oh(r);try{if(i=FP(r,"return"),!i){if(e==="throw")throw t;return t}i=NP(i,r)}catch(s){a=!0,i=s}if(e==="throw")throw t;if(a)throw i;return Oh(i),t}});var ps=m((TV,Hh)=>{"use strict";var qP=Si(),UP=Ce(),HP=at(),jP=ar(),QP=Mh(),GP=Ei(),Fh=rr(),WP=Bh(),YP=_o(),qh=Nh(),zP=TypeError,ds=function(r,e){this.stopped=r,this.result=e},Uh=ds.prototype;Hh.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=qP(e,i),l,c,d,p,h,f,b,g=function(x){return l&&qh(l,"normal",x),new ds(!0,x)},v=function(x){return a?(HP(x),o?u(x[0],x[1],g):u(x[0],x[1])):o?u(x,g):u(x)};if(s)l=r.iterator;else if(n)l=r;else{if(c=YP(r),!c)throw new zP(jP(r)+" is not iterable");if(QP(c)){for(d=0,p=GP(r);p>d;d++)if(h=v(r[d]),h&&Fh(Uh,h))return h;return new ds(!1)}l=WP(r,c)}for(f=s?r.next:l.next;!(b=UP(f,l)).done;){try{h=v(b.value)}catch(x){qh(l,"throw",x)}if(typeof h=="object"&&h&&Fh(Uh,h))return h}return new ds(!1)}});var Qh=m((IV,jh)=>{"use strict";var KP=Me(),XP=Wt(),JP=ir();jh.exports=function(r,e,t){KP?XP.f(r,e,JP(0,t)):r[e]=t}});var Gh=m(()=>{"use strict";var ZP=te(),ew=ps(),tw=Qh();ZP({target:"Object",stat:!0},{fromEntries:function(e){var t={};return ew(e,function(i,a){tw(t,i,a)},{AS_ENTRIES:!0}),t}})});var Yh=m((PV,Wh)=>{"use strict";Oo();Gh();var iw=bi();Wh.exports=iw.Object.fromEntries});var Kh=m((wV,zh)=>{"use strict";zh.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 Jh=m(()=>{"use strict";Oo();var rw=Kh(),aw=Z(),sw=hr(),Xh=Yt();for(hs in rw)sw(aw[hs],hs),Xh[hs]=Xh.Array;var hs});var em=m((LV,Zh)=>{"use strict";var nw=Yh();Jh();Zh.exports=nw});var No=m((RV,tm)=>{"use strict";var ow=em();tm.exports=ow});var im=m(()=>{"use strict"});var Fo=m((CV,rm)=>{"use strict";var br=Z(),uw=Gt(),lw=jt(),ms=function(r){return uw.slice(0,r.length)===r};rm.exports=function(){return ms("Bun/")?"BUN":ms("Cloudflare-Workers")?"CLOUDFLARE":ms("Deno/")?"DENO":ms("Node.js/")?"NODE":br.Bun&&typeof Bun.version=="string"?"BUN":br.Deno&&typeof Deno.version=="object"?"DENO":lw(br.process)==="process"?"NODE":br.window&&br.document?"BROWSER":"REST"}()});var fs=m((DV,am)=>{"use strict";var cw=Fo();am.exports=cw==="NODE"});var nm=m((VV,sm)=>{"use strict";var dw=Wt();sm.exports=function(r,e,t){return dw.f(r,e,t)}});var lm=m((BV,um)=>{"use strict";var pw=dt(),hw=nm(),mw=de(),fw=Me(),om=mw("species");um.exports=function(r){var e=pw(r);fw&&e&&!e[om]&&hw(e,om,{configurable:!0,get:function(){return this}})}});var dm=m((OV,cm)=>{"use strict";var bw=rr(),gw=TypeError;cm.exports=function(r,e){if(bw(e,r))return r;throw new gw("Incorrect invocation")}});var Uo=m((_V,pm)=>{"use strict";var vw=ne(),Sw=X(),qo=nr(),yw=vw(Function.toString);Sw(qo.inspectSource)||(qo.inspectSource=function(r){return yw(r)});pm.exports=qo.inspectSource});var jo=m((NV,gm)=>{"use strict";var Tw=ne(),Iw=ce(),hm=X(),Ew=pr(),xw=dt(),Pw=Uo(),mm=function(){},fm=xw("Reflect","construct"),Ho=/^\s*(?:class|function)\b/,ww=Tw(Ho.exec),kw=!Ho.test(mm),gr=function(e){if(!hm(e))return!1;try{return fm(mm,[],e),!0}catch{return!1}},bm=function(e){if(!hm(e))return!1;switch(Ew(e)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return kw||!!ww(Ho,Pw(e))}catch{return!0}};bm.sham=!0;gm.exports=!fm||Iw(function(){var r;return gr(gr.call)||!gr(Object)||!gr(function(){r=!0})||r})?bm:gr});var Sm=m((FV,vm)=>{"use strict";var Aw=jo(),Lw=ar(),Rw=TypeError;vm.exports=function(r){if(Aw(r))return r;throw new Rw(Lw(r)+" is not a constructor")}});var Qo=m((qV,Tm)=>{"use strict";var ym=at(),$w=Sm(),Mw=fi(),Cw=de(),Dw=Cw("species");Tm.exports=function(r,e){var t=ym(r).constructor,i;return t===void 0||Mw(i=ym(t)[Dw])?e:$w(i)}});var Em=m((UV,Im)=>{"use strict";var Vw=ne();Im.exports=Vw([].slice)});var Pm=m((HV,xm)=>{"use strict";var Bw=TypeError;xm.exports=function(r,e){if(r<e)throw new Bw("Not enough arguments");return r}});var Go=m((jV,wm)=>{"use strict";var Ow=Gt();wm.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(Ow)});var tu=m((QV,Vm)=>{"use strict";var Ve=Z(),_w=Dn(),Nw=Si(),km=X(),Fw=Ye(),Dm=ce(),Am=Po(),qw=Em(),Lm=za(),Uw=Pm(),Hw=Go(),jw=fs(),Jo=Ve.setImmediate,Zo=Ve.clearImmediate,Qw=Ve.process,Wo=Ve.Dispatch,Gw=Ve.Function,Rm=Ve.MessageChannel,Ww=Ve.String,Yo=0,vr={},$m="onreadystatechange",Sr,Kt,zo,Ko;Dm(function(){Sr=Ve.location});var eu=function(r){if(Fw(vr,r)){var e=vr[r];delete vr[r],e()}},Xo=function(r){return function(){eu(r)}},Mm=function(r){eu(r.data)},Cm=function(r){Ve.postMessage(Ww(r),Sr.protocol+"//"+Sr.host)};(!Jo||!Zo)&&(Jo=function(e){Uw(arguments.length,1);var t=km(e)?e:Gw(e),i=qw(arguments,1);return vr[++Yo]=function(){_w(t,void 0,i)},Kt(Yo),Yo},Zo=function(e){delete vr[e]},jw?Kt=function(r){Qw.nextTick(Xo(r))}:Wo&&Wo.now?Kt=function(r){Wo.now(Xo(r))}:Rm&&!Hw?(zo=new Rm,Ko=zo.port2,zo.port1.onmessage=Mm,Kt=Nw(Ko.postMessage,Ko)):Ve.addEventListener&&km(Ve.postMessage)&&!Ve.importScripts&&Sr&&Sr.protocol!=="file:"&&!Dm(Cm)?(Kt=Cm,Ve.addEventListener("message",Mm,!1)):$m in Lm("script")?Kt=function(r){Am.appendChild(Lm("script"))[$m]=function(){Am.removeChild(this),eu(r)}}:Kt=function(r){setTimeout(Xo(r),0)});Vm.exports={set:Jo,clear:Zo}});var _m=m((GV,Om)=>{"use strict";var Bm=Z(),Yw=Me(),zw=Object.getOwnPropertyDescriptor;Om.exports=function(r){if(!Yw)return Bm[r];var e=zw(Bm,r);return e&&e.value}});var iu=m((WV,Fm)=>{"use strict";var Nm=function(){this.head=null,this.tail=null};Nm.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}}};Fm.exports=Nm});var Um=m((YV,qm)=>{"use strict";var Kw=Gt();qm.exports=/ipad|iphone|ipod/i.test(Kw)&&typeof Pebble<"u"});var jm=m((zV,Hm)=>{"use strict";var Xw=Gt();Hm.exports=/web0s(?!.*chrome)/i.test(Xw)});var Xm=m((KV,Km)=>{"use strict";var ki=Z(),Jw=_m(),Qm=Si(),ru=tu().set,Zw=iu(),ek=Go(),tk=Um(),ik=jm(),au=fs(),Gm=ki.MutationObserver||ki.WebKitMutationObserver,Wm=ki.document,Ym=ki.process,bs=ki.Promise,ou=Jw("queueMicrotask"),wi,su,nu,gs,zm;ou||(yr=new Zw,Tr=function(){var r,e;for(au&&(r=Ym.domain)&&r.exit();e=yr.get();)try{e()}catch(t){throw yr.head&&wi(),t}r&&r.enter()},!ek&&!au&&!ik&&Gm&&Wm?(su=!0,nu=Wm.createTextNode(""),new Gm(Tr).observe(nu,{characterData:!0}),wi=function(){nu.data=su=!su}):!tk&&bs&&bs.resolve?(gs=bs.resolve(void 0),gs.constructor=bs,zm=Qm(gs.then,gs),wi=function(){zm(Tr)}):au?wi=function(){Ym.nextTick(Tr)}:(ru=Qm(ru,ki),wi=function(){ru(Tr)}),ou=function(r){yr.head||wi(),yr.add(r)});var yr,Tr;Km.exports=ou});var Zm=m((XV,Jm)=>{"use strict";Jm.exports=function(r,e){try{arguments.length===1?console.error(r):console.error(r,e)}catch{}}});var vs=m((JV,ef)=>{"use strict";ef.exports=function(r){try{return{error:!1,value:r()}}catch(e){return{error:!0,value:e}}}});var Xt=m((ZV,tf)=>{"use strict";var rk=Z();tf.exports=rk.Promise});var Ai=m((eB,nf)=>{"use strict";var ak=Z(),Ir=Xt(),sk=X(),nk=io(),ok=Uo(),uk=de(),rf=Fo(),lk=We(),uu=Hn(),af=Ir&&Ir.prototype,ck=uk("species"),lu=!1,sf=sk(ak.PromiseRejectionEvent),dk=nk("Promise",function(){var r=ok(Ir),e=r!==String(Ir);if(!e&&uu===66||lk&&!(af.catch&&af.finally))return!0;if(!uu||uu<51||!/native code/.test(r)){var t=new Ir(function(s){s(1)}),i=function(s){s(function(){},function(){})},a=t.constructor={};if(a[ck]=i,lu=t.then(function(){})instanceof i,!lu)return!0}return!e&&(rf==="BROWSER"||rf==="DENO")&&!sf});nf.exports={CONSTRUCTOR:dk,REJECTION_EVENT:sf,SUBCLASSING:lu}});var Li=m((tB,uf)=>{"use strict";var of=rt(),pk=TypeError,hk=function(r){var e,t;this.promise=new r(function(i,a){if(e!==void 0||t!==void 0)throw new pk("Bad Promise constructor");e=i,t=a}),this.resolve=of(e),this.reject=of(t)};uf.exports.f=function(r){return new hk(r)}});var kf=m(()=>{"use strict";var mk=te(),fk=We(),Is=fs(),wt=Z(),Ci=Ce(),lf=Pi(),cf=Do(),bk=hr(),gk=lm(),vk=rt(),Ts=X(),Sk=De(),yk=dm(),Tk=Qo(),ff=tu().set,mu=Xm(),Ik=Zm(),Ek=vs(),xk=iu(),bf=To(),Es=Xt(),fu=Ai(),gf=Li(),xs="Promise",vf=fu.CONSTRUCTOR,Pk=fu.REJECTION_EVENT,wk=fu.SUBCLASSING,cu=bf.getterFor(xs),kk=bf.set,Ri=Es&&Es.prototype,Jt=Es,Ss=Ri,Sf=wt.TypeError,du=wt.document,bu=wt.process,pu=gf.f,Ak=pu,Lk=!!(du&&du.createEvent&&wt.dispatchEvent),yf="unhandledrejection",Rk="rejectionhandled",df=0,Tf=1,$k=2,gu=1,If=2,ys,pf,Mk,hf,Ef=function(r){var e;return Sk(r)&&Ts(e=r.then)?e:!1},xf=function(r,e){var t=e.value,i=e.state===Tf,a=i?r.ok:r.fail,s=r.resolve,n=r.reject,o=r.domain,u,l,c;try{a?(i||(e.rejection===If&&Dk(e),e.rejection=gu),a===!0?u=t:(o&&o.enter(),u=a(t),o&&(o.exit(),c=!0)),u===r.promise?n(new Sf("Promise-chain cycle")):(l=Ef(u))?Ci(l,u,s,n):s(u)):n(t)}catch(d){o&&!c&&o.exit(),n(d)}},Pf=function(r,e){r.notified||(r.notified=!0,mu(function(){for(var t=r.reactions,i;i=t.get();)xf(i,r);r.notified=!1,e&&!r.rejection&&Ck(r)}))},wf=function(r,e,t){var i,a;Lk?(i=du.createEvent("Event"),i.promise=e,i.reason=t,i.initEvent(r,!1,!0),wt.dispatchEvent(i)):i={promise:e,reason:t},!Pk&&(a=wt["on"+r])?a(i):r===yf&&Ik("Unhandled promise rejection",t)},Ck=function(r){Ci(ff,wt,function(){var e=r.facade,t=r.value,i=mf(r),a;if(i&&(a=Ek(function(){Is?bu.emit("unhandledRejection",t,e):wf(yf,e,t)}),r.rejection=Is||mf(r)?If:gu,a.error))throw a.value})},mf=function(r){return r.rejection!==gu&&!r.parent},Dk=function(r){Ci(ff,wt,function(){var e=r.facade;Is?bu.emit("rejectionHandled",e):wf(Rk,e,r.value)})},$i=function(r,e,t){return function(i){r(e,i,t)}},Mi=function(r,e,t){r.done||(r.done=!0,t&&(r=t),r.value=e,r.state=$k,Pf(r,!0))},hu=function(r,e,t){if(!r.done){r.done=!0,t&&(r=t);try{if(r.facade===e)throw new Sf("Promise can't be resolved itself");var i=Ef(e);i?mu(function(){var a={done:!1};try{Ci(i,e,$i(hu,a,r),$i(Mi,a,r))}catch(s){Mi(a,s,r)}}):(r.value=e,r.state=Tf,Pf(r,!1))}catch(a){Mi({done:!1},a,r)}}};if(vf&&(Jt=function(e){yk(this,Ss),vk(e),Ci(ys,this);var t=cu(this);try{e($i(hu,t),$i(Mi,t))}catch(i){Mi(t,i)}},Ss=Jt.prototype,ys=function(e){kk(this,{type:xs,done:!1,notified:!1,parent:!1,reactions:new xk,rejection:!1,state:df,value:void 0})},ys.prototype=lf(Ss,"then",function(e,t){var i=cu(this),a=pu(Tk(this,Jt));return i.parent=!0,a.ok=Ts(e)?e:!0,a.fail=Ts(t)&&t,a.domain=Is?bu.domain:void 0,i.state===df?i.reactions.add(a):mu(function(){xf(a,i)}),a.promise}),pf=function(){var r=new ys,e=cu(r);this.promise=r,this.resolve=$i(hu,e),this.reject=$i(Mi,e)},gf.f=pu=function(r){return r===Jt||r===Mk?new pf(r):Ak(r)},!fk&&Ts(Es)&&Ri!==Object.prototype)){hf=Ri.then,wk||lf(Ri,"then",function(e,t){var i=this;return new Jt(function(a,s){Ci(hf,i,a,s)}).then(e,t)},{unsafe:!0});try{delete Ri.constructor}catch{}cf&&cf(Ri,Ss)}mk({global:!0,constructor:!0,wrap:!0,forced:vf},{Promise:Jt});bk(Jt,xs,!1,!0);gk(xs)});var Mf=m((aB,$f)=>{"use strict";var Vk=de(),Lf=Vk("iterator"),Rf=!1;try{Af=0,vu={next:function(){return{done:!!Af++}},return:function(){Rf=!0}},vu[Lf]=function(){return this},Array.from(vu,function(){throw 2})}catch{}var Af,vu;$f.exports=function(r,e){try{if(!e&&!Rf)return!1}catch{return!1}var t=!1;try{var i={};i[Lf]=function(){return{next:function(){return{done:t=!0}}}},r(i)}catch{}return t}});var Su=m((sB,Cf)=>{"use strict";var Bk=Xt(),Ok=Mf(),_k=Ai().CONSTRUCTOR;Cf.exports=_k||!Ok(function(r){Bk.all(r).then(void 0,function(){})})});var Df=m(()=>{"use strict";var Nk=te(),Fk=Ce(),qk=rt(),Uk=Li(),Hk=vs(),jk=ps(),Qk=Su();Nk({target:"Promise",stat:!0,forced:Qk},{all:function(e){var t=this,i=Uk.f(t),a=i.resolve,s=i.reject,n=Hk(function(){var o=qk(t.resolve),u=[],l=0,c=1;jk(e,function(d){var p=l++,h=!1;c++,Fk(o,t,d).then(function(f){h||(h=!0,u[p]=f,--c||a(u))},s)}),--c||a(u)});return n.error&&s(n.value),i.promise}})});var Bf=m(()=>{"use strict";var Gk=te(),Wk=We(),Yk=Ai().CONSTRUCTOR,Tu=Xt(),zk=dt(),Kk=X(),Xk=Pi(),Vf=Tu&&Tu.prototype;Gk({target:"Promise",proto:!0,forced:Yk,real:!0},{catch:function(r){return this.then(void 0,r)}});!Wk&&Kk(Tu)&&(yu=zk("Promise").prototype.catch,Vf.catch!==yu&&Xk(Vf,"catch",yu,{unsafe:!0}));var yu});var Of=m(()=>{"use strict";var Jk=te(),Zk=Ce(),eA=rt(),tA=Li(),iA=vs(),rA=ps(),aA=Su();Jk({target:"Promise",stat:!0,forced:aA},{race:function(e){var t=this,i=tA.f(t),a=i.reject,s=iA(function(){var n=eA(t.resolve);rA(e,function(o){Zk(n,t,o).then(i.resolve,a)})});return s.error&&a(s.value),i.promise}})});var _f=m(()=>{"use strict";var sA=te(),nA=Li(),oA=Ai().CONSTRUCTOR;sA({target:"Promise",stat:!0,forced:oA},{reject:function(e){var t=nA.f(this),i=t.reject;return i(e),t.promise}})});var Iu=m((mB,Nf)=>{"use strict";var uA=at(),lA=De(),cA=Li();Nf.exports=function(r,e){if(uA(r),lA(e)&&e.constructor===r)return e;var t=cA.f(r),i=t.resolve;return i(e),t.promise}});var Uf=m(()=>{"use strict";var dA=te(),pA=dt(),Ff=We(),hA=Xt(),qf=Ai().CONSTRUCTOR,mA=Iu(),fA=pA("Promise"),bA=Ff&&!qf;dA({target:"Promise",stat:!0,forced:Ff||qf},{resolve:function(e){return mA(bA&&this===fA?hA:this,e)}})});var Hf=m(()=>{"use strict";kf();Df();Bf();Of();_f();Uf()});var Wf=m(()=>{"use strict";var gA=te(),vA=We(),Ps=Xt(),SA=ce(),Qf=dt(),Gf=X(),yA=Qo(),jf=Iu(),TA=Pi(),xu=Ps&&Ps.prototype,IA=!!Ps&&SA(function(){xu.finally.call({then:function(){}},function(){})});gA({target:"Promise",proto:!0,real:!0,forced:IA},{finally:function(r){var e=yA(this,Qf("Promise")),t=Gf(r);return this.then(t?function(i){return jf(e,r()).then(function(){return i})}:r,t?function(i){return jf(e,r()).then(function(){throw i})}:r)}});!vA&&Gf(Ps)&&(Eu=Qf("Promise").prototype.finally,xu.finally!==Eu&&TA(xu,"finally",Eu,{unsafe:!0}));var Eu});var zf=m((TB,Yf)=>{"use strict";im();Hf();Wf();var EA=Pt();Yf.exports=EA("Promise","finally")});var Xf=m((IB,Kf)=>{"use strict";var xA=zf();Kf.exports=xA});var ws=m((EB,Jf)=>{"use strict";var PA=Xf();Jf.exports=PA});var db=m(()=>{"use strict";var NA=te(),FA=go().values;NA({target:"Object",stat:!0},{values:function(e){return FA(e)}})});var hb=m((oO,pb)=>{"use strict";db();var qA=bi();pb.exports=qA.Object.values});var fb=m((uO,mb)=>{"use strict";var UA=hb();mb.exports=UA});var Vi=m((lO,bb)=>{"use strict";var HA=fb();bb.exports=HA});var Cb=m(()=>{"use strict";var hL=te(),mL=gi(),fL=Ei(),bL=lr(),gL=cr();hL({target:"Array",proto:!0},{at:function(e){var t=mL(this),i=fL(t),a=bL(e),s=a>=0?a:i+a;return s<0||s>=i?void 0:t[s]}});gL("at")});var Vb=m((v_,Db)=>{"use strict";Cb();var vL=Pt();Db.exports=vL("Array","at")});var Ob=m((S_,Bb)=>{"use strict";var SL=Vb();Bb.exports=SL});var $t=m((y_,_b)=>{"use strict";var yL=Ob();_b.exports=yL});var Ku=m((sF,Sg)=>{"use strict";var rR=jt();Sg.exports=Array.isArray||function(e){return rR(e)==="Array"}});var Tg=m((nF,yg)=>{"use strict";var aR=TypeError,sR=9007199254740991;yg.exports=function(r){if(r>sR)throw aR("Maximum allowed index exceeded");return r}});var xg=m((oF,Eg)=>{"use strict";var nR=Ku(),oR=Ei(),uR=Tg(),lR=Si(),Ig=function(r,e,t,i,a,s,n,o){for(var u=a,l=0,c=n?lR(n,o):!1,d,p;l<i;)l in t&&(d=c?c(t[l],l,e):t[l],s>0&&nR(d)?(p=oR(d),u=Ig(r,e,d,p,u,s-1)-1):(uR(u+1),r[u]=d),u++),l++;return u};Eg.exports=Ig});var Ag=m((uF,kg)=>{"use strict";var Pg=Ku(),cR=jo(),dR=De(),pR=de(),hR=pR("species"),wg=Array;kg.exports=function(r){var e;return Pg(r)&&(e=r.constructor,cR(e)&&(e===wg||Pg(e.prototype))?e=void 0:dR(e)&&(e=e[hR],e===null&&(e=void 0))),e===void 0?wg:e}});var Rg=m((lF,Lg)=>{"use strict";var mR=Ag();Lg.exports=function(r,e){return new(mR(r))(e===0?0:e)}});var $g=m(()=>{"use strict";var fR=te(),bR=xg(),gR=rt(),vR=gi(),SR=Ei(),yR=Rg();fR({target:"Array",proto:!0},{flatMap:function(e){var t=vR(this),i=SR(t),a;return gR(e),a=yR(t,0),a.length=bR(a,t,t,i,0,1,e,arguments.length>1?arguments[1]:void 0),a}})});var Mg=m(()=>{"use strict";var TR=cr();TR("flatMap")});var Dg=m((mF,Cg)=>{"use strict";$g();Mg();var IR=Pt();Cg.exports=IR("Array","flatMap")});var Bg=m((fF,Vg)=>{"use strict";var ER=Dg();Vg.exports=ER});var Xu=m((bF,Og)=>{"use strict";var xR=Bg();Og.exports=xR});var Nr=m((gF,_g)=>{"use strict";var PR=pr(),wR=String;_g.exports=function(r){if(PR(r)==="Symbol")throw new TypeError("Cannot convert a Symbol value to a string");return wR(r)}});var Ju=m((vF,Ng)=>{"use strict";Ng.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 Ug=m((SF,qg)=>{"use strict";var kR=ne(),AR=xt(),LR=Nr(),el=Ju(),Fg=kR("".replace),RR=RegExp("^["+el+"]+"),$R=RegExp("(^|[^"+el+"])["+el+"]+$"),Zu=function(r){return function(e){var t=LR(AR(e));return r&1&&(t=Fg(t,RR,"")),r&2&&(t=Fg(t,$R,"$1")),t}};qg.exports={start:Zu(1),end:Zu(2),trim:Zu(3)}});var Gg=m((yF,Qg)=>{"use strict";var MR=xo().PROPER,CR=ce(),Hg=Ju(),jg="\u200B\x85\u180E";Qg.exports=function(r){return CR(function(){return!!Hg[r]()||jg[r]()!==jg||MR&&Hg[r].name!==r})}});var tl=m((TF,Wg)=>{"use strict";var DR=Ug().start,VR=Gg();Wg.exports=VR("trimStart")?function(){return DR(this)}:"".trimStart});var zg=m(()=>{"use strict";var BR=te(),Yg=tl();BR({target:"String",proto:!0,name:"trimStart",forced:"".trimLeft!==Yg},{trimLeft:Yg})});var Xg=m(()=>{"use strict";zg();var OR=te(),Kg=tl();OR({target:"String",proto:!0,name:"trimStart",forced:"".trimStart!==Kg},{trimStart:Kg})});var Zg=m((wF,Jg)=>{"use strict";Xg();var _R=Pt();Jg.exports=_R("String","trimLeft")});var tv=m((kF,ev)=>{"use strict";var NR=Zg();ev.exports=NR});var rv=m((AF,iv)=>{"use strict";var FR=tv();iv.exports=FR});var Sv=m(()=>{"use strict"});var yv=m(()=>{"use strict"});var Iv=m((u1,Tv)=>{"use strict";var l$=De(),c$=jt(),d$=de(),p$=d$("match");Tv.exports=function(r){var e;return l$(r)&&((e=r[p$])!==void 0?!!e:c$(r)==="RegExp")}});var xv=m((l1,Ev)=>{"use strict";var h$=at();Ev.exports=function(){var r=h$(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 kv=m((c1,wv)=>{"use strict";var m$=Ce(),f$=Ye(),b$=rr(),g$=xv(),Pv=RegExp.prototype;wv.exports=function(r){var e=r.flags;return e===void 0&&!("flags"in Pv)&&!f$(r,"flags")&&b$(Pv,r)?m$(g$,r):e}});var Lv=m((d1,Av)=>{"use strict";var ll=ne(),v$=gi(),S$=Math.floor,ol=ll("".charAt),y$=ll("".replace),ul=ll("".slice),T$=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,I$=/\$([$&'`]|\d{1,2})/g;Av.exports=function(r,e,t,i,a,s){var n=t+r.length,o=i.length,u=I$;return a!==void 0&&(a=v$(a),u=T$),y$(s,u,function(l,c){var d;switch(ol(c,0)){case"$":return"$";case"&":return r;case"`":return ul(e,0,t);case"'":return ul(e,n);case"<":d=a[ul(c,1,-1)];break;default:var p=+c;if(p===0)return l;if(p>o){var h=S$(p/10);return h===0?l:h<=o?i[h-1]===void 0?ol(c,1):i[h-1]+ol(c,1):l}d=i[p-1]}return d===void 0?"":d})}});var Mv=m(()=>{"use strict";var E$=te(),x$=Ce(),dl=ne(),Rv=xt(),P$=X(),w$=fi(),k$=Iv(),qi=Nr(),A$=sr(),L$=kv(),R$=Lv(),$$=de(),M$=We(),C$=$$("replace"),D$=TypeError,cl=dl("".indexOf),V$=dl("".replace),$v=dl("".slice),B$=Math.max;E$({target:"String",proto:!0},{replaceAll:function(e,t){var i=Rv(this),a,s,n,o,u,l,c,d,p,h,f=0,b="";if(!w$(e)){if(a=k$(e),a&&(s=qi(Rv(L$(e))),!~cl(s,"g")))throw new D$("`.replaceAll` does not allow non-global regexes");if(n=A$(e,C$),n)return x$(n,e,i,t);if(M$&&a)return V$(qi(i),e,t)}for(o=qi(i),u=qi(e),l=P$(t),l||(t=qi(t)),c=u.length,d=B$(1,c),p=cl(o,u);p!==-1;)h=l?qi(t(u,p,o)):R$(u,o,p,[],void 0,t),b+=$v(o,f,p)+h,f=p+c,p=p+d>o.length?-1:cl(o,u,p+d);return f<o.length&&(b+=$v(o,f)),b}})});var Dv=m((m1,Cv)=>{"use strict";Sv();yv();Mv();var O$=Pt();Cv.exports=O$("String","replaceAll")});var Bv=m((f1,Vv)=>{"use strict";var _$=Dv();Vv.exports=_$});var _v=m((b1,Ov)=>{"use strict";var N$=Bv();Ov.exports=N$});var Fv=m((g1,Nv)=>{"use strict";var F$=lr(),q$=Nr(),U$=xt(),H$=RangeError;Nv.exports=function(e){var t=q$(U$(this)),i="",a=F$(e);if(a<0||a===1/0)throw new H$("Wrong number of repetitions");for(;a>0;(a>>>=1)&&(t+=t))a&1&&(i+=t);return i}});var Qv=m((v1,jv)=>{"use strict";var Hv=ne(),j$=uo(),qv=Nr(),Q$=Fv(),G$=xt(),W$=Hv(Q$),Y$=Hv("".slice),z$=Math.ceil,Uv=function(r){return function(e,t,i){var a=qv(G$(e)),s=j$(t),n=a.length,o=i===void 0?" ":qv(i),u,l;return s<=n||o===""?a:(u=s-n,l=W$(o,z$(u/o.length)),l.length>u&&(l=Y$(l,0,u)),r?a+l:l+a)}};jv.exports={start:Uv(!1),end:Uv(!0)}});var Wv=m((S1,Gv)=>{"use strict";var K$=Gt();Gv.exports=/Version\/10(?:\.\d+){1,2}(?: [\w./]+)?(?: Mobile\/\w+)? Safari\//.test(K$)});var Yv=m(()=>{"use strict";var X$=te(),J$=Qv().start,Z$=Wv();X$({target:"String",proto:!0,forced:Z$},{padStart:function(e){return J$(this,e,arguments.length>1?arguments[1]:void 0)}})});var Kv=m((I1,zv)=>{"use strict";Yv();var eM=Pt();zv.exports=eM("String","padStart")});var Jv=m((E1,Xv)=>{"use strict";var tM=Kv();Xv.exports=tM});var eS=m((x1,Zv)=>{"use strict";var iM=Jv();Zv.exports=iM});var nc="2.0.131-dev.8a25f21f.0";var $e=(a=>(a.STOPPED="stopped",a.READY="ready",a.PLAYING="playing",a.PAUSED="paused",a))($e||{}),ct=(T=>(T.MPEG="MPEG",T.DASH="DASH",T.DASH_SEP="DASH_SEP",T.DASH_SEP_VK="DASH_SEP",T.DASH_WEBM="DASH_WEBM",T.DASH_WEBM_AV1="DASH_WEBM_AV1",T.DASH_STREAMS="DASH_STREAMS",T.DASH_WEBM_VK="DASH_WEBM",T.DASH_ONDEMAND="DASH_ONDEMAND",T.DASH_ONDEMAND_VK="DASH_ONDEMAND",T.DASH_LIVE="DASH_LIVE",T.DASH_LIVE_CMAF="DASH_LIVE_CMAF",T.DASH_LIVE_WEBM="DASH_LIVE_WEBM",T.HLS="HLS",T.HLS_ONDEMAND="HLS_ONDEMAND",T.HLS_JS="HLS",T.HLS_LIVE="HLS_LIVE",T.HLS_LIVE_CMAF="HLS_LIVE_CMAF",T.WEB_RTC_LIVE="WEB_RTC_LIVE",T))(ct||{});var Qa=(a=>(a.NOT_AVAILABLE="NOT_AVAILABLE",a.AVAILABLE="AVAILABLE",a.CONNECTING="CONNECTING",a.CONNECTED="CONNECTED",a))(Qa||{}),$n=(i=>(i.HTTP1="http1",i.HTTP2="http2",i.QUIC="quic",i))($n||{});var Mn=(n=>(n.NONE="none",n.INLINE="inline",n.FULLSCREEN="fullscreen",n.SECOND_SCREEN="second_screen",n.PIP="pip",n.INVISIBLE="invisible",n))(Mn||{}),Ga=(i=>(i.TRAFFIC_SAVING="traffic_saving",i.HIGH_QUALITY="high_quality",i.UNKNOWN="unknown",i))(Ga||{});var Vy=M(Ne(),1);import{assertNever as ap,assertNonNullable as pE,isNonNullable as Xa,ValueSubject as co,Subject as hE,Subscription as mE,merge as fE,observableFrom as bE,fromEvent as ep,map as tp,tap as ip,filterChanged as gE,isNullable as po,ErrorCategory as rp}from"@vkontakte/videoplayer-shared";var Zd=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 Ja=class{constructor(e){this.connection$=new co(void 0);this.castState$=new co("NOT_AVAILABLE");this.errorEvent$=new hE;this.realCastState$=new co("NOT_AVAILABLE");this.subscription=new mE;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=Xa(window.chrome?.cast),a=!!window.__onGCastApiAvailable;i?this.initializeCastApi():(window.__onGCastApiAvailable=s=>{delete window.__onGCastApiAvailable,s&&!this.isDestroyed&&this.initializeCastApi()},a||Zd("https://www.gstatic.com/cv/js/sender/v1/cast_sender.js?loadCastFramework=1").catch(()=>this.errorEvent$.next({id:"ChromecastLoading",category:rp.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(){Xa(this.connection$.getValue())?this.disconnect():this.connect()}setVolume(e){let t=this.connection$.getValue();po(t)||(t.remotePlayer.volumeLevel=e,t.remotePlayerController.setVolumeLevel())}setMuted(e){let t=this.connection$.getValue();po(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(ep(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 ap(a.sessionState)}})).add(fE(ep(i,cast.framework.CastContextEventType.CAST_STATE_CHANGED).pipe(ip(a=>{this.log({message:`[cast.framework.RemotePlayerEventType.CAST_STATE_CHANGED]: ${JSON.stringify(a)}`})}),tp(a=>a.castState)),bE([i.getCastState()])).pipe(gE(),tp(vE),ip(a=>{this.log({message:`realCastState$: ${a}`})})).subscribe(this.realCastState$)).add(this.realCastState$.subscribe(a=>{let s=a==="CONNECTED",n=Xa(this.connection$.getValue());if(s&&!n){let o=i.getCurrentSession();pE(o);let u=o.getCastDevice(),l=o.getMediaSession()?.media?.contentId;(po(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"?Xa(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:rp.EXTERNAL_API,message:"[initializeCastApi] failed",thrown:a})}}},vE=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 ap(r)}};var Kl=M(Ne(),1),by=M(xi(),1),gy=M(No(),1);var ub=M(ws(),1);import{assertNever as Zf}from"@vkontakte/videoplayer-shared";var pe=(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:Zf(t)}return r},ks=(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:Zf(e)}};var E=(r,e,t=!1)=>{let i=r.getTransition();(t||!i||i.to===e)&&r.setState(e)};import{isNonNullable as wA,Subject as As,merge as eb}from"@vkontakte/videoplayer-shared";var C=class{constructor(e){this.transitionStarted$=new As;this.transitionEnded$=new As;this.transitionUpdated$=new As;this.forceChanged$=new As;this.stateChangeStarted$=eb(this.transitionStarted$,this.transitionUpdated$);this.stateChangeEnded$=eb(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||wA(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}};import{assertNever as kA}from"@vkontakte/videoplayer-shared";var tb=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 kA(r)}};import{assertNever as Di,assertNonNullable as Zt,debounce as ib,ErrorCategory as rb,fromEvent as ei,isNonNullable as ab,map as sb,merge as nb,observableFrom as AA,Subject as LA,Subscription as Pu,timeout as RA,getHighestQuality as $A}from"@vkontakte/videoplayer-shared";var MA=5,CA=5,DA=500,ob=7e3,Er=class{constructor(e){this.subscription=new Pu;this.loadMediaTimeoutSubscription=new Pu;this.videoState=new C("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:Di(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:Di(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:Di(e)}break}default:Di(i)}}};this.params=e,this.log=this.params.dependencies.logger.createComponentLog("ChromecastProvider"),this.log({message:`constructor, format: ${e.format}`}),this.params.output.isLive$.next(tb(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 Pu;this.subscription.add(e),this.subscription.add(nb(this.videoState.stateChangeStarted$.pipe(sb(a=>`stateChangeStarted$ ${JSON.stringify(a)}`)),this.videoState.stateChangeEnded$.pipe(sb(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 LA;e.add(a.pipe(ib(DA)).subscribe(()=>{this.params.output.seekedEvent$.next()}));let s=NaN;e.add(ei(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)>MA)&&a.next(o),s=o})),e.add(ei(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.DURATION_CHANGED).subscribe(n=>{this.logRemoteEvent(n),this.params.output.duration$.next(n.value)}))}t(ei(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_MEDIA_LOADED_CHANGED),a=>{this.logRemoteEvent(a),a.value?this.handleRemoteReady():(this.handleRemoteStop(),e.unsubscribe())}),t(ei(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_PAUSED_CHANGED),a=>{this.logRemoteEvent(a),a.value?this.handleRemotePause():this.handleRemotePlay()}),t(ei(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<CA&&this.params.output.endedEvent$.next(),this.handleRemoteStop(),E(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:Di(n)}}),t(ei(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.VOLUME_LEVEL_CHANGED),a=>{this.logRemoteEvent(a),this.handleRemoteVolumeChange({volume:a.value})}),t(ei(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_MUTED_CHANGED),a=>{this.logRemoteEvent(a),this.handleRemoteVolumeChange({muted:a.value})});let i=nb(this.params.desiredState.playbackState.stateChangeStarted$,this.params.desiredState.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,AA(["init"])).pipe(ib(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"),E(this.params.desiredState.playbackState,"paused")):(this.videoState.setState("playing"),E(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"),E(this.params.desiredState.playbackState,"paused"))}handleRemotePlay(){let e=this.videoState.getState();(this.videoState.getTransition()?.to==="playing"||e==="paused")&&(this.videoState.setState("playing"),E(this.params.desiredState.playbackState,"playing"))}handleRemoteReady(){this.videoState.getTransition()?.to==="ready"&&this.videoState.setState("ready"),this.params.desiredState.playbackState.getTransition()?.to==="ready"&&E(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];Zt(l);let c=$A(Object.keys(l));Zt(c);let d=l[c];Zt(d),i=d,a="video/mp4",s=chrome.cast.media.StreamType.BUFFERED;break}case"HLS":case"HLS_ONDEMAND":{let l=t[e];Zt(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];Zt(l),i=l.url,a="application/dash+xml",s=chrome.cast.media.StreamType.BUFFERED;break}case"DASH_LIVE_CMAF":{let l=t[e];Zt(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];Zt(l),i=pe(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",c=new Error(l);throw this.params.output.error$.next({id:"ChromecastProvider.createMediaInfo()",category:rb.VIDEO_PIPELINE,message:l,thrown:c}),c}case"DASH":case"DASH_LIVE_WEBM":throw new Error(`${e} is no longer supported`);default:return Di(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 ab(o)&&(n.metadata.title=o),ab(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(RA(ob).subscribe(()=>s(`timeout(${ob})`)))});(0,ub.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:rb.VIDEO_PIPELINE,message:s,thrown:a})}),()=>{this.loadMediaTimeoutSubscription.unsubscribe()})}logRemoteEvent(e){this.log({message:`[remoteEvent] ${JSON.stringify(e)}`})}};var Yu=M(Ne(),1);import{clearVideoElement as cb}from"@vkontakte/videoplayer-shared";import{clearVideoElement as VA}from"@vkontakte/videoplayer-shared";var lb=r=>{try{r.pause(),r.playbackRate=0,VA(r),r.remove()}catch(e){console.error(e)}};import{fromEvent as BA,Subscription as OA}from"@vkontakte/videoplayer-shared";var wu=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)}},ku=window.WeakMap?new WeakMap:new wu,Au=window.WeakMap?new WeakMap:new Map,_A=(r,e=20)=>{let t=0;return BA(r,"ratechange").subscribe(i=>{t++,t>=e&&(r.currentTime=r.currentTime,t=0)})},Ee=(r,{audioVideoSyncRate:e,disableYandexPiP:t})=>{let i=r.querySelector("video"),a=!!i;i?cb(i):(i=document.createElement("video"),r.appendChild(i)),ku.set(i,a);let s=new OA;return s.add(_A(i,e)),Au.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},xe=r=>{Au.get(r)?.unsubscribe(),Au.delete(r);let t=ku.get(r);ku.delete(r),t?cb(r):lb(r)};var Ru=M(Vi(),1);import{assertNonNullable as xr,isNonNullable as nt,isNullable as GA,fromEvent as Bi,merge as gb,observableFrom as vb,filterChanged as Sb,map as Pr,Subject as yb,Subscription as WA,ValueSubject as YA,ErrorCategory as zA}from"@vkontakte/videoplayer-shared";import{isNonNullable as Lu,isNullable as jA,Subscription as QA}from"@vkontakte/videoplayer-shared";var Ls=(r,e,t,{equal:i=(n,o)=>n===o,changed$:a,onError:s}={})=>{let n=r.getState(),o=e(),u=jA(a),l=new QA;return a&&l.add(a.subscribe(c=>{let d=r.getState();i(c,d)&&r.setState(c)},s)),i(o,n)||(t(n),u&&r.setState(n)),l.add(r.stateChangeStarted$.subscribe(c=>{t(c.to),u&&r.setState(c.to)},s)),l},st=(r,e,t)=>Ls(e,()=>r.loop,i=>{Lu(i)&&(r.loop=i)},{onError:t}),Pe=(r,e,t,i)=>Ls(e,()=>({muted:r.muted,volume:r.volume}),a=>{Lu(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}),Fe=(r,e,t,i)=>Ls(e,()=>r.playbackRate,a=>{Lu(a)&&(r.playbackRate=a)},{changed$:t,onError:i}),kt=Ls;var KA=r=>["__",r.language,r.label].join("|"),XA=(r,e)=>{if(r.id===e)return!0;let[t,i,a]=e.split("|");return r.language===i&&r.label===a},$u=class r{constructor(e){this.available$=new yb;this.current$=new YA(void 0);this.error$=new yb;this.subscription=new WA;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:zA.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(kt(t.internalTextTracks,()=>(0,Ru.default)(this.internalTracks),s=>{nt(s)&&this.setInternal(s)},{equal:(s,n)=>nt(s)&&nt(n)&&s.length===n.length&&s.every(({id:o},u)=>o===n[u].id),changed$:this.available$.pipe(Pr(s=>s.filter(({type:n})=>n==="internal"))),onError:a})),this.subscription.add(kt(t.externalTextTracks,()=>(0,Ru.default)(this.externalTracks),s=>{nt(s)&&this.setExternal(s)},{equal:(s,n)=>nt(s)&&nt(n)&&s.length===n.length&&s.every(({id:o},u)=>o===n[u].id),changed$:this.available$.pipe(Pr(s=>s.filter(({type:n})=>n==="external"))),onError:a})),this.subscription.add(kt(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(kt(t.textTrackCuesSettings,()=>({}),()=>{if(this.video)for(let s of this.htmlTextTracksAsArray())this.applyCueSettings(s.cues),this.applyCueSettings(s.activeCues)}))}subscribe(){xr(this.video);let{textTracks:e}=this.video;this.subscription.add(Bi(e,"addtrack").subscribe(()=>{let i=this.current$.getValue();i&&this.select(i)})),this.subscription.add(gb(Bi(e,"addtrack"),Bi(e,"removetrack"),vb(["init"])).pipe(Pr(()=>this.htmlTextTracksAsArray().map(i=>this.htmlTextTrackToITextTrack(i))),Sb((i,a)=>i.length===a.length&&i.every(({id:s},n)=>s===a[n].id))).subscribe(this.available$)),this.subscription.add(gb(Bi(e,"change"),vb(["init"])).pipe(Pr(()=>this.htmlTextTracksAsArray().find(({mode:i})=>i==="showing")),Pr(i=>i&&this.htmlTextTrackToITextTrack(i).id),Sb()).subscribe(this.current$));let t=i=>this.applyCueSettings(i.target?.activeCues??null);this.subscription.add(Bi(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(Bi(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;nt(t.align)&&(a.align=t.align),nt(t.position)&&(a.position=t.position),nt(t.size)&&(a.size=t.size),nt(t.line)&&(a.line=t.line)}}htmlTextTracksAsArray(e=!1){xr(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:KA(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){xr(this.video);for(let t of this.htmlTextTracksAsArray(!0))t.mode="showing";for(let t of this.htmlTextTracksAsArray(!0))(GA(e)||!XA(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){xr(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){xr(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)}},qe=$u;var ti=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 Tb=r=>{let e=r;for(;!(e instanceof Document)&&!(e instanceof ShadowRoot)&&e!==null;)e=e?.parentNode;return e??void 0},Mu=r=>{let e=Tb(r);return!!(e&&e.fullscreenElement&&e.fullscreenElement===r)},Ib=r=>{let e=Tb(r);return!!(e&&e.pictureInPictureElement&&e.pictureInPictureElement===r)};import{fromEvent as we,map as At,merge as Du,filterChanged as nL,isNonNullable as $b,Subject as oL,filter as kr,mapTo as Vu,combine as uL,once as lL,throttle as cL,ErrorCategory as dL,ValueSubject as Mb,Subscription as pL}from"@vkontakte/videoplayer-shared";var JA=3,Eb=(r,e,t=JA)=>{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 Rs=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 xb=M(Ne(),1);var wr=()=>/Mobile|mini|Fennec|Android|iP(ad|od|hone)/.test(navigator.appVersion??navigator.userAgent)||navigator?.userAgentData?.mobile;var $s=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,xb.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=wr()}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 Ms=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 Ke=()=>window.ManagedMediaSource||window.MediaSource,Cs=()=>!!(window.ManagedMediaSource&&window.ManagedSourceBuffer?.prototype?.appendBuffer),Pb=()=>!!(window.MediaSource&&window.SourceBuffer?.prototype?.appendBuffer),wb=()=>window.ManagedMediaSource?new ManagedMediaSource:new MediaSource;var ZA=document.createElement("video"),eL='video/mp4; codecs="avc1.42000a,mp4a.40.2"',tL='video/mp4; codecs="hev1.1.6.L93.B0"',kb='video/webm; codecs="vp09.00.10.08"',Ab='video/webm; codecs="av01.0.00M.08"',iL='audio/mp4; codecs="mp4a.40.2"',rL='audio/webm; codecs="opus"',Lb,aL=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:Ab}}),window.navigator.mediaCapabilities.decodingInfo({...r,video:{...r.video,contentType:kb}})]);Lb={DASH_WEBM_AV1:e,DASH_WEBM:t}};aL().catch(r=>{console.log(ZA),console.error(r)});var Ds=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 Lb}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:Cs(),mse:Pb(),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=!!Ke()?.isTypeSupported?.(eL),t=!!Ke()?.isTypeSupported?.(tL),i=!!Ke()?.isTypeSupported?.(iL);this._codecs={h264:e,h265:t,vp9:!!Ke()?.isTypeSupported?.(kb),av1:!!Ke()?.isTypeSupported?.(Ab),aac:i,opus:!!Ke()?.isTypeSupported?.(rL),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 Rb="audio/mpeg",Vs=class{supportMp3(){return this._codecs.mp3&&this._containers.mpeg}detect(){this._audio=document.createElement("audio");try{this._containers={mpeg:!!this._audio.canPlayType?.(Rb)},this._codecs={mp3:!!Ke()?.isTypeSupported?.(Rb)}}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}};import{ValueSubject as sL}from"@vkontakte/videoplayer-shared";var Cu=class{constructor(){this.isInited$=new sL(!1);this._displayChecker=new Ms,this._deviceChecker=new $s(this._displayChecker),this._browserChecker=new Rs,this._videoChecker=new Ds(this._deviceChecker,this._browserChecker),this._audioChecker=new Vs,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)}},O=new Cu;var ke=r=>{let e=S=>we(r,S).pipe(Vu(void 0)),t=new pL,i=()=>t.unsubscribe(),s=Du(...["waiting","pause","canplay","play","canplaythrough","playing","seeking","seeked","ended"].map(S=>we(r,S))).pipe(At(S=>S.type==="ended"?r.readyState<2:r.readyState<3),nL()),n=Du(we(r,"progress"),we(r,"timeupdate")).pipe(At(()=>Eb(r.buffered,r.currentTime))),o=O.browser.isSafari?uL({play:e("play").pipe(lL()),playing:e("playing")}).pipe(Vu(void 0)):e("playing"),u=we(r,"volumechange").pipe(At(()=>({muted:r.muted,volume:r.volume}))),l=we(r,"ratechange").pipe(At(()=>r.playbackRate)),c=we(r,"error").pipe(kr(()=>!!(r.error||r.played.length)),At(()=>{let S=r.error;return{id:S?`MediaError#${S.code}`:"HtmlVideoError",category:dL.VIDEO_PIPELINE,message:S?S.message:"Error event from HTML video element",thrown:r.error??void 0}})),d=we(r,"timeupdate").pipe(At(()=>r.currentTime)),p=new oL,h=.3,f;t.add(d.subscribe(S=>{r.loop&&$b(f)&&$b(S)&&f>=r.duration-h&&S<=h&&p.next(f),f=S}));let b=e("pause").pipe(kr(()=>!r.error&&f!==r.duration)),g=we(r,"enterpictureinpicture"),v=we(r,"leavepictureinpicture"),x=new Mb(Ib(r));t.add(g.subscribe(()=>x.next(!0))),t.add(v.subscribe(()=>x.next(!1)));let T=new Mb(Mu(r)),w=we(r,"fullscreenchange");t.add(w.pipe(At(()=>Mu(r))).subscribe(T));let I=.1,V=1e3,B=we(r,"timeupdate").pipe(kr(S=>r.duration-r.currentTime<I)),N=Du(B.pipe(kr(S=>!r.loop)),we(r,"ended")).pipe(cL(V),Vu(void 0)),_=B.pipe(kr(S=>r.loop));return{playing$:o,pause$:b,canplay$:e("canplay"),ended$:N,looped$:p,loopExpected$:_,error$:c,seeked$:e("seeked"),seeking$:e("seeking"),progress$:e("progress"),loadStart$:e("loadstart"),loadedMetadata$:e("loadedmetadata"),loadedData$:e("loadeddata"),timeUpdate$:d,durationChange$:we(r,"durationchange").pipe(At(()=>r.duration)),isBuffering$:s,currentBuffer$:n,volumeState$:u,playbackRateState$:l,inPiP$:x,inFullscreen$:T,enterPip$:g,leavePip$:v,destroy:i}};import{VideoQuality as Lt}from"@vkontakte/videoplayer-shared";var Rt=r=>{switch(r){case"mobile":return Lt.Q_144P;case"lowest":return Lt.Q_240P;case"low":return Lt.Q_360P;case"sd":case"medium":return Lt.Q_480P;case"hd":case"high":return Lt.Q_720P;case"fullhd":case"full":return Lt.Q_1080P;case"quadhd":case"quad":return Lt.Q_1440P;case"ultrahd":case"ultra":return Lt.Q_2160P}};var Mt=M($t(),1),Yb=M(Ne(),1),_s=M(xi(),1);import{isNonNullable as ve,isNullable as jb,now as zb,isHigher as Qb,isHigherOrEqual as Nu,isInvariantQuality as Gb,isLowerOrEqual as Fu,videoSizeToQuality as EL,assertNotEmptyArray as Kb,assertNonNullable as xL}from"@vkontakte/videoplayer-shared";var Bu=!1,mt={},Nb=r=>{Bu=r},Fb=()=>{mt={}},qb=r=>{r(mt)},Ar=(r,e)=>{Bu&&(mt.meta=mt.meta??{},mt.meta[r]=e)},ge=class{constructor(e){this.name=e}next(e){if(!Bu)return;mt.series=mt.series??{};let t=mt.series[this.name]??[];t.push([Date.now(),e]),mt.series[this.name]=t}};import{isHigher as TL,isHigherOrEqual as w_,isLower as Ub,isLowerOrEqual as k_,isNonNullable as Bs,isNullable as IL,videoHeightToQuality as Os}from"@vkontakte/videoplayer-shared";function Ou({limits:r,highQualityLimit:e,trafficSavingLimit:t}){return!r.max&&r.min===e?"high_quality":!r.min&&r.max===t?"traffic_saving":"unknown"}function _u({limits:r,highQualityLimit:e,trafficSavingLimit:t}){return!!r&&Ou({limits:r,highQualityLimit:e,trafficSavingLimit:t})==="high_quality"}function Lr({limits:r,highestAvailableQuality:e,lowestAvailableQuality:t}){return IL(r)||Bs(r.min)&&Bs(r.max)&&Ub(r.max,r.min)||Bs(r.min)&&e&&TL(r.min,e)||Bs(r.max)&&t&&Ub(r.max,t)}function Hb({limits:r,highestAvailableHeight:e,lowestAvailableHeight:t}){return Lr({limits:{max:r?.max?Os(r.max):void 0,min:r?.min?Os(r.min):void 0},highestAvailableQuality:e?Os(e):void 0,lowestAvailableQuality:t?Os(t):void 0})}var PL=new ge("best_bitrate"),Xb=(r,e,t)=>(e-t)*Math.pow(2,-10*r)+t;var qu=r=>(e,t)=>r*(Number(e.bitrate)-Number(t.bitrate)),Rr=class{constructor(){this.history={}}recordSelection(e){this.history[e.id]=zb()}recordSwitch(e){this.last=e}clear(){this.last=void 0,this.history={}}},Jb='Assertion "ABR Tracks is empty array" failed',Ns=(r,e,t,i)=>{let a=[...e].sort(qu(1)),s=[...t].sort(qu(1)),n=s.filter(u=>ve(u.bitrate)&&ve(r.bitrate)?r.bitrate/u.bitrate>i:!0),o=(0,Mt.default)(s,Math.round(s.length*a.indexOf(r)/(a.length+1)))??(0,Mt.default)(s,-1);return o&&(0,Yb.default)(n,o)?o:n.length?(0,Mt.default)(n,-1):(0,Mt.default)(s,0)},Wb=r=>"quality"in r,Zb=(r,e,t,i)=>{let a=ve(i?.last?.bitrate)&&ve(t?.bitrate)&&i.last.bitrate<t.bitrate?r.trackCooldownIncreaseQuality:r.trackCooldownDecreaseQuality,s=t&&i&&i.history[t.id]&&zb()-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=Wb(n)?"video":"audio",u=Wb(n)?n.quality:n.bitrate;return e({message:`
6
+ var Rx=Object.create;var wp=Object.defineProperty;var Lx=Object.getOwnPropertyDescriptor;var Mx=Object.getOwnPropertyNames;var $x=Object.getPrototypeOf,Bx=Object.prototype.hasOwnProperty;var m=(s,e)=>()=>(e||s((e={exports:{}}).exports,e),e.exports);var Dx=(s,e,t,i)=>{if(e&&typeof e=="object"||typeof e=="function")for(let r of Mx(e))!Bx.call(s,r)&&r!==t&&wp(s,r,{get:()=>e[r],enumerable:!(i=Lx(e,r))||i.enumerable});return s};var C=(s,e,t)=>(t=s!=null?Rx($x(s)):{},Dx(e||!s||!s.__esModule?wp(t,"default",{value:s,enumerable:!0}):t,s));var ye=m((Vu,kp)=>{"use strict";var Zr=function(s){return s&&s.Math===Math&&s};kp.exports=Zr(typeof globalThis=="object"&&globalThis)||Zr(typeof window=="object"&&window)||Zr(typeof self=="object"&&self)||Zr(typeof global=="object"&&global)||Zr(typeof Vu=="object"&&Vu)||function(){return this}()||Function("return this")()});var $e=m((aO,Rp)=>{"use strict";Rp.exports=function(s){try{return!!s()}catch{return!0}}});var es=m((nO,Lp)=>{"use strict";var Cx=$e();Lp.exports=!Cx(function(){var s=function(){}.bind();return typeof s!="function"||s.hasOwnProperty("prototype")})});var Ou=m((oO,Dp)=>{"use strict";var Vx=es(),Bp=Function.prototype,Mp=Bp.apply,$p=Bp.call;Dp.exports=typeof Reflect=="object"&&Reflect.apply||(Vx?$p.bind(Mp):function(){return $p.apply(Mp,arguments)})});var Re=m((uO,Op)=>{"use strict";var Cp=es(),Vp=Function.prototype,_u=Vp.call,Ox=Cp&&Vp.bind.bind(_u,_u);Op.exports=Cp?Ox:function(s){return function(){return _u.apply(s,arguments)}}});var ki=m((lO,Fp)=>{"use strict";var _p=Re(),_x=_p({}.toString),Fx=_p("".slice);Fp.exports=function(s){return Fx(_x(s),8,-1)}});var Fu=m((cO,Np)=>{"use strict";var Nx=ki(),Ux=Re();Np.exports=function(s){if(Nx(s)==="Function")return Ux(s)}});var be=m((dO,Up)=>{"use strict";var Nu=typeof document=="object"&&document.all;Up.exports=typeof Nu>"u"&&Nu!==void 0?function(s){return typeof s=="function"||s===Nu}:function(s){return typeof s=="function"}});var dt=m((pO,qp)=>{"use strict";var qx=$e();qp.exports=!qx(function(){return Object.defineProperty({},1,{get:function(){return 7}})[1]!==7})});var pt=m((hO,Hp)=>{"use strict";var Hx=es(),In=Function.prototype.call;Hp.exports=Hx?In.bind(In):function(){return In.apply(In,arguments)}});var Uu=m(Gp=>{"use strict";var jp={}.propertyIsEnumerable,zp=Object.getOwnPropertyDescriptor,jx=zp&&!jp.call({1:2},1);Gp.f=jx?function(e){var t=zp(this,e);return!!t&&t.enumerable}:jp});var ts=m((mO,Qp)=>{"use strict";Qp.exports=function(s,e){return{enumerable:!(s&1),configurable:!(s&2),writable:!(s&4),value:e}}});var Yp=m((bO,Wp)=>{"use strict";var zx=Re(),Gx=$e(),Qx=ki(),qu=Object,Wx=zx("".split);Wp.exports=Gx(function(){return!qu("z").propertyIsEnumerable(0)})?function(s){return Qx(s)==="String"?Wx(s,""):qu(s)}:qu});var ir=m((gO,Kp)=>{"use strict";Kp.exports=function(s){return s==null}});var li=m((SO,Xp)=>{"use strict";var Yx=ir(),Kx=TypeError;Xp.exports=function(s){if(Yx(s))throw new Kx("Can't call method on "+s);return s}});var Ri=m((vO,Jp)=>{"use strict";var Xx=Yp(),Jx=li();Jp.exports=function(s){return Xx(Jx(s))}});var ht=m((yO,Zp)=>{"use strict";var Zx=be();Zp.exports=function(s){return typeof s=="object"?s!==null:Zx(s)}});var rr=m((TO,eh)=>{"use strict";eh.exports={}});var Xt=m((IO,ih)=>{"use strict";var Hu=rr(),ju=ye(),eE=be(),th=function(s){return eE(s)?s:void 0};ih.exports=function(s,e){return arguments.length<2?th(Hu[s])||th(ju[s]):Hu[s]&&Hu[s][e]||ju[s]&&ju[s][e]}});var is=m((xO,rh)=>{"use strict";var tE=Re();rh.exports=tE({}.isPrototypeOf)});var Li=m((EO,nh)=>{"use strict";var iE=ye(),sh=iE.navigator,ah=sh&&sh.userAgent;nh.exports=ah?String(ah):""});var Gu=m((PO,ph)=>{"use strict";var dh=ye(),zu=Li(),oh=dh.process,uh=dh.Deno,lh=oh&&oh.versions||uh&&uh.version,ch=lh&&lh.v8,Et,xn;ch&&(Et=ch.split("."),xn=Et[0]>0&&Et[0]<4?1:+(Et[0]+Et[1]));!xn&&zu&&(Et=zu.match(/Edge\/(\d+)/),(!Et||Et[1]>=74)&&(Et=zu.match(/Chrome\/(\d+)/),Et&&(xn=+Et[1])));ph.exports=xn});var Qu=m((wO,fh)=>{"use strict";var hh=Gu(),rE=$e(),sE=ye(),aE=sE.String;fh.exports=!!Object.getOwnPropertySymbols&&!rE(function(){var s=Symbol("symbol detection");return!aE(s)||!(Object(s)instanceof Symbol)||!Symbol.sham&&hh&&hh<41})});var Wu=m((AO,mh)=>{"use strict";var nE=Qu();mh.exports=nE&&!Symbol.sham&&typeof Symbol.iterator=="symbol"});var Yu=m((kO,bh)=>{"use strict";var oE=Xt(),uE=be(),lE=is(),cE=Wu(),dE=Object;bh.exports=cE?function(s){return typeof s=="symbol"}:function(s){var e=oE("Symbol");return uE(e)&&lE(e.prototype,dE(s))}});var rs=m((RO,gh)=>{"use strict";var pE=String;gh.exports=function(s){try{return pE(s)}catch{return"Object"}}});var $t=m((LO,Sh)=>{"use strict";var hE=be(),fE=rs(),mE=TypeError;Sh.exports=function(s){if(hE(s))return s;throw new mE(fE(s)+" is not a function")}});var ss=m((MO,vh)=>{"use strict";var bE=$t(),gE=ir();vh.exports=function(s,e){var t=s[e];return gE(t)?void 0:bE(t)}});var Th=m(($O,yh)=>{"use strict";var Ku=pt(),Xu=be(),Ju=ht(),SE=TypeError;yh.exports=function(s,e){var t,i;if(e==="string"&&Xu(t=s.toString)&&!Ju(i=Ku(t,s))||Xu(t=s.valueOf)&&!Ju(i=Ku(t,s))||e!=="string"&&Xu(t=s.toString)&&!Ju(i=Ku(t,s)))return i;throw new SE("Can't convert object to primitive value")}});var Pt=m((BO,Ih)=>{"use strict";Ih.exports=!0});var Ph=m((DO,Eh)=>{"use strict";var xh=ye(),vE=Object.defineProperty;Eh.exports=function(s,e){try{vE(xh,s,{value:e,configurable:!0,writable:!0})}catch{xh[s]=e}return e}});var as=m((CO,kh)=>{"use strict";var yE=Pt(),TE=ye(),IE=Ph(),wh="__core-js_shared__",Ah=kh.exports=TE[wh]||IE(wh,{});(Ah.versions||(Ah.versions=[])).push({version:"3.38.0",mode:yE?"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 Zu=m((VO,Lh)=>{"use strict";var Rh=as();Lh.exports=function(s,e){return Rh[s]||(Rh[s]=e||{})}});var sr=m((OO,Mh)=>{"use strict";var xE=li(),EE=Object;Mh.exports=function(s){return EE(xE(s))}});var wt=m((_O,$h)=>{"use strict";var PE=Re(),wE=sr(),AE=PE({}.hasOwnProperty);$h.exports=Object.hasOwn||function(e,t){return AE(wE(e),t)}});var el=m((FO,Bh)=>{"use strict";var kE=Re(),RE=0,LE=Math.random(),ME=kE(1 .toString);Bh.exports=function(s){return"Symbol("+(s===void 0?"":s)+")_"+ME(++RE+LE,36)}});var Be=m((NO,Ch)=>{"use strict";var $E=ye(),BE=Zu(),Dh=wt(),DE=el(),CE=Qu(),VE=Wu(),ar=$E.Symbol,tl=BE("wks"),OE=VE?ar.for||ar:ar&&ar.withoutSetter||DE;Ch.exports=function(s){return Dh(tl,s)||(tl[s]=CE&&Dh(ar,s)?ar[s]:OE("Symbol."+s)),tl[s]}});var Fh=m((UO,_h)=>{"use strict";var _E=pt(),Vh=ht(),Oh=Yu(),FE=ss(),NE=Th(),UE=Be(),qE=TypeError,HE=UE("toPrimitive");_h.exports=function(s,e){if(!Vh(s)||Oh(s))return s;var t=FE(s,HE),i;if(t){if(e===void 0&&(e="default"),i=_E(t,s,e),!Vh(i)||Oh(i))return i;throw new qE("Can't convert object to primitive value")}return e===void 0&&(e="number"),NE(s,e)}});var il=m((qO,Nh)=>{"use strict";var jE=Fh(),zE=Yu();Nh.exports=function(s){var e=jE(s,"string");return zE(e)?e:e+""}});var En=m((HO,qh)=>{"use strict";var GE=ye(),Uh=ht(),rl=GE.document,QE=Uh(rl)&&Uh(rl.createElement);qh.exports=function(s){return QE?rl.createElement(s):{}}});var sl=m((jO,Hh)=>{"use strict";var WE=dt(),YE=$e(),KE=En();Hh.exports=!WE&&!YE(function(){return Object.defineProperty(KE("div"),"a",{get:function(){return 7}}).a!==7})});var Gh=m(zh=>{"use strict";var XE=dt(),JE=pt(),ZE=Uu(),eP=ts(),tP=Ri(),iP=il(),rP=wt(),sP=sl(),jh=Object.getOwnPropertyDescriptor;zh.f=XE?jh:function(e,t){if(e=tP(e),t=iP(t),sP)try{return jh(e,t)}catch{}if(rP(e,t))return eP(!JE(ZE.f,e,t),e[t])}});var al=m((GO,Qh)=>{"use strict";var aP=$e(),nP=be(),oP=/#|\.prototype\./,ns=function(s,e){var t=lP[uP(s)];return t===dP?!0:t===cP?!1:nP(e)?aP(e):!!e},uP=ns.normalize=function(s){return String(s).replace(oP,".").toLowerCase()},lP=ns.data={},cP=ns.NATIVE="N",dP=ns.POLYFILL="P";Qh.exports=ns});var nr=m((QO,Yh)=>{"use strict";var Wh=Fu(),pP=$t(),hP=es(),fP=Wh(Wh.bind);Yh.exports=function(s,e){return pP(s),e===void 0?s:hP?fP(s,e):function(){return s.apply(e,arguments)}}});var nl=m((WO,Kh)=>{"use strict";var mP=dt(),bP=$e();Kh.exports=mP&&bP(function(){return Object.defineProperty(function(){},"prototype",{value:42,writable:!1}).prototype!==42})});var Bt=m((YO,Xh)=>{"use strict";var gP=ht(),SP=String,vP=TypeError;Xh.exports=function(s){if(gP(s))return s;throw new vP(SP(s)+" is not an object")}});var Mi=m(Zh=>{"use strict";var yP=dt(),TP=sl(),IP=nl(),Pn=Bt(),Jh=il(),xP=TypeError,ol=Object.defineProperty,EP=Object.getOwnPropertyDescriptor,ul="enumerable",ll="configurable",cl="writable";Zh.f=yP?IP?function(e,t,i){if(Pn(e),t=Jh(t),Pn(i),typeof e=="function"&&t==="prototype"&&"value"in i&&cl in i&&!i[cl]){var r=EP(e,t);r&&r[cl]&&(e[t]=i.value,i={configurable:ll in i?i[ll]:r[ll],enumerable:ul in i?i[ul]:r[ul],writable:!1})}return ol(e,t,i)}:ol:function(e,t,i){if(Pn(e),t=Jh(t),Pn(i),TP)try{return ol(e,t,i)}catch{}if("get"in i||"set"in i)throw new xP("Accessors not supported");return"value"in i&&(e[t]=i.value),e}});var or=m((XO,ef)=>{"use strict";var PP=dt(),wP=Mi(),AP=ts();ef.exports=PP?function(s,e,t){return wP.f(s,e,AP(1,t))}:function(s,e,t){return s[e]=t,s}});var xe=m((JO,rf)=>{"use strict";var os=ye(),kP=Ou(),RP=Fu(),LP=be(),MP=Gh().f,$P=al(),ur=rr(),BP=nr(),lr=or(),tf=wt();as();var DP=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 kP(s,this,arguments)};return e.prototype=s.prototype,e};rf.exports=function(s,e){var t=s.target,i=s.global,r=s.stat,a=s.proto,n=i?os:r?os[t]:os[t]&&os[t].prototype,o=i?ur:ur[t]||lr(ur,t,{})[t],u=o.prototype,l,p,c,d,h,f,b,g,S;for(d in e)l=$P(i?d:t+(r?".":"#")+d,s.forced),p=!l&&n&&tf(n,d),f=o[d],p&&(s.dontCallGetSet?(S=MP(n,d),b=S&&S.value):b=n[d]),h=p&&b?b:e[d],!(!l&&!a&&typeof f==typeof h)&&(s.bind&&p?g=BP(h,os):s.wrap&&p?g=DP(h):a&&LP(h)?g=RP(h):g=h,(s.sham||h&&h.sham||f&&f.sham)&&lr(g,"sham",!0),lr(o,d,g),a&&(c=t+"Prototype",tf(ur,c)||lr(ur,c,{}),lr(ur[c],d,h),s.real&&u&&(l||!u[d])&&lr(u,d,h)))}});var af=m((ZO,sf)=>{"use strict";var CP=Math.ceil,VP=Math.floor;sf.exports=Math.trunc||function(e){var t=+e;return(t>0?VP:CP)(t)}});var us=m((e_,nf)=>{"use strict";var OP=af();nf.exports=function(s){var e=+s;return e!==e||e===0?0:OP(e)}});var uf=m((t_,of)=>{"use strict";var _P=us(),FP=Math.max,NP=Math.min;of.exports=function(s,e){var t=_P(s);return t<0?FP(t+e,0):NP(t,e)}});var dl=m((i_,lf)=>{"use strict";var UP=us(),qP=Math.min;lf.exports=function(s){var e=UP(s);return e>0?qP(e,9007199254740991):0}});var cr=m((r_,cf)=>{"use strict";var HP=dl();cf.exports=function(s){return HP(s.length)}});var pl=m((s_,pf)=>{"use strict";var jP=Ri(),zP=uf(),GP=cr(),df=function(s){return function(e,t,i){var r=jP(e),a=GP(r);if(a===0)return!s&&-1;var n=zP(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}};pf.exports={includes:df(!0),indexOf:df(!1)}});var ls=m((a_,hf)=>{"use strict";hf.exports=function(){}});var ff=m(()=>{"use strict";var QP=xe(),WP=pl().includes,YP=$e(),KP=ls(),XP=YP(function(){return!Array(1).includes()});QP({target:"Array",proto:!0,forced:XP},{includes:function(e){return WP(this,e,arguments.length>1?arguments[1]:void 0)}});KP("includes")});var ci=m((u_,mf)=>{"use strict";var JP=Xt();mf.exports=JP});var gf=m((l_,bf)=>{"use strict";ff();var ZP=ci();bf.exports=ZP("Array","includes")});var vf=m((c_,Sf)=>{"use strict";var ew=gf();Sf.exports=ew});var gt=m((d_,yf)=>{"use strict";var tw=vf();yf.exports=tw});var kn=m((x_,kf)=>{"use strict";var lw=Zu(),cw=el(),Af=lw("keys");kf.exports=function(s){return Af[s]||(Af[s]=cw(s))}});var Lf=m((E_,Rf)=>{"use strict";var dw=$e();Rf.exports=!dw(function(){function s(){}return s.prototype.constructor=null,Object.getPrototypeOf(new s)!==s.prototype})});var Rn=m((P_,$f)=>{"use strict";var pw=wt(),hw=be(),fw=sr(),mw=kn(),bw=Lf(),Mf=mw("IE_PROTO"),ml=Object,gw=ml.prototype;$f.exports=bw?ml.getPrototypeOf:function(s){var e=fw(s);if(pw(e,Mf))return e[Mf];var t=e.constructor;return hw(t)&&e instanceof t?t.prototype:e instanceof ml?gw:null}});var Ln=m((w_,Bf)=>{"use strict";Bf.exports={}});var Vf=m((A_,Cf)=>{"use strict";var Sw=Re(),bl=wt(),vw=Ri(),yw=pl().indexOf,Tw=Ln(),Df=Sw([].push);Cf.exports=function(s,e){var t=vw(s),i=0,r=[],a;for(a in t)!bl(Tw,a)&&bl(t,a)&&Df(r,a);for(;e.length>i;)bl(t,a=e[i++])&&(~yw(r,a)||Df(r,a));return r}});var gl=m((k_,Of)=>{"use strict";Of.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]});var Sl=m((R_,_f)=>{"use strict";var Iw=Vf(),xw=gl();_f.exports=Object.keys||function(e){return Iw(e,xw)}});var vl=m((L_,Hf)=>{"use strict";var Nf=dt(),Ew=$e(),Uf=Re(),Pw=Rn(),ww=Sl(),Aw=Ri(),kw=Uu().f,qf=Uf(kw),Rw=Uf([].push),Lw=Nf&&Ew(function(){var s=Object.create(null);return s[2]=2,!qf(s,2)}),Ff=function(s){return function(e){for(var t=Aw(e),i=ww(t),r=Lw&&Pw(t)===null,a=i.length,n=0,o=[],u;a>n;)u=i[n++],(!Nf||(r?u in t:qf(t,u)))&&Rw(o,s?[u,t[u]]:t[u]);return o}};Hf.exports={entries:Ff(!0),values:Ff(!1)}});var jf=m(()=>{"use strict";var Mw=xe(),$w=vl().entries;Mw({target:"Object",stat:!0},{entries:function(e){return $w(e)}})});var Gf=m((B_,zf)=>{"use strict";jf();var Bw=rr();zf.exports=Bw.Object.entries});var Wf=m((D_,Qf)=>{"use strict";var Dw=Gf();Qf.exports=Dw});var $i=m((C_,Yf)=>{"use strict";var Cw=Wf();Yf.exports=Cw});var Bi=m((V_,Kf)=>{"use strict";Kf.exports={}});var Zf=m((O_,Jf)=>{"use strict";var Vw=ye(),Ow=be(),Xf=Vw.WeakMap;Jf.exports=Ow(Xf)&&/native code/.test(String(Xf))});var xl=m((__,im)=>{"use strict";var _w=Zf(),tm=ye(),Fw=ht(),Nw=or(),yl=wt(),Tl=as(),Uw=kn(),qw=Ln(),em="Object already initialized",Il=tm.TypeError,Hw=tm.WeakMap,Mn,cs,$n,jw=function(s){return $n(s)?cs(s):Mn(s,{})},zw=function(s){return function(e){var t;if(!Fw(e)||(t=cs(e)).type!==s)throw new Il("Incompatible receiver, "+s+" required");return t}};_w||Tl.state?(At=Tl.state||(Tl.state=new Hw),At.get=At.get,At.has=At.has,At.set=At.set,Mn=function(s,e){if(At.has(s))throw new Il(em);return e.facade=s,At.set(s,e),e},cs=function(s){return At.get(s)||{}},$n=function(s){return At.has(s)}):(Di=Uw("state"),qw[Di]=!0,Mn=function(s,e){if(yl(s,Di))throw new Il(em);return e.facade=s,Nw(s,Di,e),e},cs=function(s){return yl(s,Di)?s[Di]:{}},$n=function(s){return yl(s,Di)});var At,Di;im.exports={set:Mn,get:cs,has:$n,enforce:jw,getterFor:zw}});var wl=m((F_,sm)=>{"use strict";var El=dt(),Gw=wt(),rm=Function.prototype,Qw=El&&Object.getOwnPropertyDescriptor,Pl=Gw(rm,"name"),Ww=Pl&&function(){}.name==="something",Yw=Pl&&(!El||El&&Qw(rm,"name").configurable);sm.exports={EXISTS:Pl,PROPER:Ww,CONFIGURABLE:Yw}});var nm=m(am=>{"use strict";var Kw=dt(),Xw=nl(),Jw=Mi(),Zw=Bt(),eA=Ri(),tA=Sl();am.f=Kw&&!Xw?Object.defineProperties:function(e,t){Zw(e);for(var i=eA(t),r=tA(t),a=r.length,n=0,o;a>n;)Jw.f(e,o=r[n++],i[o]);return e}});var Al=m((U_,om)=>{"use strict";var iA=Xt();om.exports=iA("document","documentElement")});var Ml=m((q_,fm)=>{"use strict";var rA=Bt(),sA=nm(),um=gl(),aA=Ln(),nA=Al(),oA=En(),uA=kn(),lm=">",cm="<",Rl="prototype",Ll="script",pm=uA("IE_PROTO"),kl=function(){},hm=function(s){return cm+Ll+lm+s+cm+"/"+Ll+lm},dm=function(s){s.write(hm("")),s.close();var e=s.parentWindow.Object;return s=null,e},lA=function(){var s=oA("iframe"),e="java"+Ll+":",t;return s.style.display="none",nA.appendChild(s),s.src=String(e),t=s.contentWindow.document,t.open(),t.write(hm("document.F=Object")),t.close(),t.F},Bn,Dn=function(){try{Bn=new ActiveXObject("htmlfile")}catch{}Dn=typeof document<"u"?document.domain&&Bn?dm(Bn):lA():dm(Bn);for(var s=um.length;s--;)delete Dn[Rl][um[s]];return Dn()};aA[pm]=!0;fm.exports=Object.create||function(e,t){var i;return e!==null?(kl[Rl]=rA(e),i=new kl,kl[Rl]=null,i[pm]=e):i=Dn(),t===void 0?i:sA.f(i,t)}});var dr=m((H_,mm)=>{"use strict";var cA=or();mm.exports=function(s,e,t,i){return i&&i.enumerable?s[e]=t:cA(s,e,t),s}});var Cl=m((j_,Sm)=>{"use strict";var dA=$e(),pA=be(),hA=ht(),fA=Ml(),bm=Rn(),mA=dr(),bA=Be(),gA=Pt(),Dl=bA("iterator"),gm=!1,Jt,$l,Bl;[].keys&&(Bl=[].keys(),"next"in Bl?($l=bm(bm(Bl)),$l!==Object.prototype&&(Jt=$l)):gm=!0);var SA=!hA(Jt)||dA(function(){var s={};return Jt[Dl].call(s)!==s});SA?Jt={}:gA&&(Jt=fA(Jt));pA(Jt[Dl])||mA(Jt,Dl,function(){return this});Sm.exports={IteratorPrototype:Jt,BUGGY_SAFARI_ITERATORS:gm}});var Cn=m((z_,ym)=>{"use strict";var vA=Be(),yA=vA("toStringTag"),vm={};vm[yA]="z";ym.exports=String(vm)==="[object z]"});var ds=m((G_,Tm)=>{"use strict";var TA=Cn(),IA=be(),Vn=ki(),xA=Be(),EA=xA("toStringTag"),PA=Object,wA=Vn(function(){return arguments}())==="Arguments",AA=function(s,e){try{return s[e]}catch{}};Tm.exports=TA?Vn:function(s){var e,t,i;return s===void 0?"Undefined":s===null?"Null":typeof(t=AA(e=PA(s),EA))=="string"?t:wA?Vn(e):(i=Vn(e))==="Object"&&IA(e.callee)?"Arguments":i}});var xm=m((Q_,Im)=>{"use strict";var kA=Cn(),RA=ds();Im.exports=kA?{}.toString:function(){return"[object "+RA(this)+"]"}});var ps=m((W_,Pm)=>{"use strict";var LA=Cn(),MA=Mi().f,$A=or(),BA=wt(),DA=xm(),CA=Be(),Em=CA("toStringTag");Pm.exports=function(s,e,t,i){var r=t?s:s&&s.prototype;r&&(BA(r,Em)||MA(r,Em,{configurable:!0,value:e}),i&&!LA&&$A(r,"toString",DA))}});var Am=m((Y_,wm)=>{"use strict";var VA=Cl().IteratorPrototype,OA=Ml(),_A=ts(),FA=ps(),NA=Bi(),UA=function(){return this};wm.exports=function(s,e,t,i){var r=e+" Iterator";return s.prototype=OA(VA,{next:_A(+!i,t)}),FA(s,r,!1,!0),NA[r]=UA,s}});var Rm=m((K_,km)=>{"use strict";var qA=Re(),HA=$t();km.exports=function(s,e,t){try{return qA(HA(Object.getOwnPropertyDescriptor(s,e)[t]))}catch{}}});var Mm=m((X_,Lm)=>{"use strict";var jA=ht();Lm.exports=function(s){return jA(s)||s===null}});var Bm=m((J_,$m)=>{"use strict";var zA=Mm(),GA=String,QA=TypeError;$m.exports=function(s){if(zA(s))return s;throw new QA("Can't set "+GA(s)+" as a prototype")}});var Vl=m((Z_,Dm)=>{"use strict";var WA=Rm(),YA=ht(),KA=li(),XA=Bm();Dm.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var s=!1,e={},t;try{t=WA(Object.prototype,"__proto__","set"),t(e,[]),s=e instanceof Array}catch{}return function(r,a){return KA(r),XA(a),YA(r)&&(s?t(r,a):r.__proto__=a),r}}():void 0)});var zm=m((eF,jm)=>{"use strict";var JA=xe(),ZA=pt(),On=Pt(),qm=wl(),ek=be(),tk=Am(),Cm=Rn(),Vm=Vl(),ik=ps(),rk=or(),Ol=dr(),sk=Be(),Om=Bi(),Hm=Cl(),ak=qm.PROPER,nk=qm.CONFIGURABLE,_m=Hm.IteratorPrototype,_n=Hm.BUGGY_SAFARI_ITERATORS,hs=sk("iterator"),Fm="keys",fs="values",Nm="entries",Um=function(){return this};jm.exports=function(s,e,t,i,r,a,n){tk(t,e,i);var o=function(S){if(S===r&&d)return d;if(!_n&&S&&S in p)return p[S];switch(S){case Fm:return function(){return new t(this,S)};case fs:return function(){return new t(this,S)};case Nm:return function(){return new t(this,S)}}return function(){return new t(this)}},u=e+" Iterator",l=!1,p=s.prototype,c=p[hs]||p["@@iterator"]||r&&p[r],d=!_n&&c||o(r),h=e==="Array"&&p.entries||c,f,b,g;if(h&&(f=Cm(h.call(new s)),f!==Object.prototype&&f.next&&(!On&&Cm(f)!==_m&&(Vm?Vm(f,_m):ek(f[hs])||Ol(f,hs,Um)),ik(f,u,!0,!0),On&&(Om[u]=Um))),ak&&r===fs&&c&&c.name!==fs&&(!On&&nk?rk(p,"name",fs):(l=!0,d=function(){return ZA(c,this)})),r)if(b={values:o(fs),keys:a?d:o(Fm),entries:o(Nm)},n)for(g in b)(_n||l||!(g in p))&&Ol(p,g,b[g]);else JA({target:e,proto:!0,forced:_n||l},b);return(!On||n)&&p[hs]!==d&&Ol(p,hs,d,{name:r}),Om[e]=d,b}});var Qm=m((tF,Gm)=>{"use strict";Gm.exports=function(s,e){return{value:s,done:e}}});var Fl=m((iF,Jm)=>{"use strict";var ok=Ri(),_l=ls(),Wm=Bi(),Km=xl(),uk=Mi().f,lk=zm(),Fn=Qm(),ck=Pt(),dk=dt(),Xm="Array Iterator",pk=Km.set,hk=Km.getterFor(Xm);Jm.exports=lk(Array,"Array",function(s,e){pk(this,{type:Xm,target:ok(s),index:0,kind:e})},function(){var s=hk(this),e=s.target,t=s.index++;if(!e||t>=e.length)return s.target=void 0,Fn(void 0,!0);switch(s.kind){case"keys":return Fn(t,!1);case"values":return Fn(e[t],!1)}return Fn([t,e[t]],!1)},"values");var Ym=Wm.Arguments=Wm.Array;_l("keys");_l("values");_l("entries");if(!ck&&dk&&Ym.name!=="values")try{uk(Ym,"name",{value:"values"})}catch{}});var eb=m((rF,Zm)=>{"use strict";var fk=Be(),mk=Bi(),bk=fk("iterator"),gk=Array.prototype;Zm.exports=function(s){return s!==void 0&&(mk.Array===s||gk[bk]===s)}});var Nl=m((sF,ib)=>{"use strict";var Sk=ds(),tb=ss(),vk=ir(),yk=Bi(),Tk=Be(),Ik=Tk("iterator");ib.exports=function(s){if(!vk(s))return tb(s,Ik)||tb(s,"@@iterator")||yk[Sk(s)]}});var sb=m((aF,rb)=>{"use strict";var xk=pt(),Ek=$t(),Pk=Bt(),wk=rs(),Ak=Nl(),kk=TypeError;rb.exports=function(s,e){var t=arguments.length<2?Ak(s):e;if(Ek(t))return Pk(xk(t,s));throw new kk(wk(s)+" is not iterable")}});var ob=m((nF,nb)=>{"use strict";var Rk=pt(),ab=Bt(),Lk=ss();nb.exports=function(s,e,t){var i,r;ab(s);try{if(i=Lk(s,"return"),!i){if(e==="throw")throw t;return t}i=Rk(i,s)}catch(a){r=!0,i=a}if(e==="throw")throw t;if(r)throw i;return ab(i),t}});var Un=m((oF,db)=>{"use strict";var Mk=nr(),$k=pt(),Bk=Bt(),Dk=rs(),Ck=eb(),Vk=cr(),ub=is(),Ok=sb(),_k=Nl(),lb=ob(),Fk=TypeError,Nn=function(s,e){this.stopped=s,this.result=e},cb=Nn.prototype;db.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=Mk(e,i),l,p,c,d,h,f,b,g=function(T){return l&&lb(l,"normal",T),new Nn(!0,T)},S=function(T){return r?(Bk(T),o?u(T[0],T[1],g):u(T[0],T[1])):o?u(T,g):u(T)};if(a)l=s.iterator;else if(n)l=s;else{if(p=_k(s),!p)throw new Fk(Dk(s)+" is not iterable");if(Ck(p)){for(c=0,d=Vk(s);d>c;c++)if(h=S(s[c]),h&&ub(cb,h))return h;return new Nn(!1)}l=Ok(s,p)}for(f=a?s.next:l.next;!(b=$k(f,l)).done;){try{h=S(b.value)}catch(T){lb(l,"throw",T)}if(typeof h=="object"&&h&&ub(cb,h))return h}return new Nn(!1)}});var hb=m((uF,pb)=>{"use strict";var Nk=dt(),Uk=Mi(),qk=ts();pb.exports=function(s,e,t){Nk?Uk.f(s,e,qk(0,t)):s[e]=t}});var fb=m(()=>{"use strict";var Hk=xe(),jk=Un(),zk=hb();Hk({target:"Object",stat:!0},{fromEntries:function(e){var t={};return jk(e,function(i,r){zk(t,i,r)},{AS_ENTRIES:!0}),t}})});var bb=m((dF,mb)=>{"use strict";Fl();fb();var Gk=rr();mb.exports=Gk.Object.fromEntries});var Sb=m((pF,gb)=>{"use strict";gb.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 yb=m(()=>{"use strict";Fl();var Qk=Sb(),Wk=ye(),Yk=ps(),vb=Bi();for(qn in Qk)Yk(Wk[qn],qn),vb[qn]=vb.Array;var qn});var Ib=m((mF,Tb)=>{"use strict";var Kk=bb();yb();Tb.exports=Kk});var Ul=m((bF,xb)=>{"use strict";var Xk=Ib();xb.exports=Xk});var Eb=m(()=>{"use strict"});var ql=m((vF,Pb)=>{"use strict";var ms=ye(),Jk=Li(),Zk=ki(),Hn=function(s){return Jk.slice(0,s.length)===s};Pb.exports=function(){return Hn("Bun/")?"BUN":Hn("Cloudflare-Workers")?"CLOUDFLARE":Hn("Deno/")?"DENO":Hn("Node.js/")?"NODE":ms.Bun&&typeof Bun.version=="string"?"BUN":ms.Deno&&typeof Deno.version=="object"?"DENO":Zk(ms.process)==="process"?"NODE":ms.window&&ms.document?"BROWSER":"REST"}()});var jn=m((yF,wb)=>{"use strict";var eR=ql();wb.exports=eR==="NODE"});var kb=m((TF,Ab)=>{"use strict";var tR=Mi();Ab.exports=function(s,e,t){return tR.f(s,e,t)}});var Mb=m((IF,Lb)=>{"use strict";var iR=Xt(),rR=kb(),sR=Be(),aR=dt(),Rb=sR("species");Lb.exports=function(s){var e=iR(s);aR&&e&&!e[Rb]&&rR(e,Rb,{configurable:!0,get:function(){return this}})}});var Bb=m((xF,$b)=>{"use strict";var nR=is(),oR=TypeError;$b.exports=function(s,e){if(nR(e,s))return s;throw new oR("Incorrect invocation")}});var jl=m((EF,Db)=>{"use strict";var uR=Re(),lR=be(),Hl=as(),cR=uR(Function.toString);lR(Hl.inspectSource)||(Hl.inspectSource=function(s){return cR(s)});Db.exports=Hl.inspectSource});var Gl=m((PF,Fb)=>{"use strict";var dR=Re(),pR=$e(),Cb=be(),hR=ds(),fR=Xt(),mR=jl(),Vb=function(){},Ob=fR("Reflect","construct"),zl=/^\s*(?:class|function)\b/,bR=dR(zl.exec),gR=!zl.test(Vb),bs=function(e){if(!Cb(e))return!1;try{return Ob(Vb,[],e),!0}catch{return!1}},_b=function(e){if(!Cb(e))return!1;switch(hR(e)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return gR||!!bR(zl,mR(e))}catch{return!0}};_b.sham=!0;Fb.exports=!Ob||pR(function(){var s;return bs(bs.call)||!bs(Object)||!bs(function(){s=!0})||s})?_b:bs});var Ub=m((wF,Nb)=>{"use strict";var SR=Gl(),vR=rs(),yR=TypeError;Nb.exports=function(s){if(SR(s))return s;throw new yR(vR(s)+" is not a constructor")}});var Ql=m((AF,Hb)=>{"use strict";var qb=Bt(),TR=Ub(),IR=ir(),xR=Be(),ER=xR("species");Hb.exports=function(s,e){var t=qb(s).constructor,i;return t===void 0||IR(i=qb(t)[ER])?e:TR(i)}});var zb=m((kF,jb)=>{"use strict";var PR=Re();jb.exports=PR([].slice)});var Qb=m((RF,Gb)=>{"use strict";var wR=TypeError;Gb.exports=function(s,e){if(s<e)throw new wR("Not enough arguments");return s}});var Wl=m((LF,Wb)=>{"use strict";var AR=Li();Wb.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(AR)});var rc=m((MF,rg)=>{"use strict";var ft=ye(),kR=Ou(),RR=nr(),Yb=be(),LR=wt(),ig=$e(),Kb=Al(),MR=zb(),Xb=En(),$R=Qb(),BR=Wl(),DR=jn(),ec=ft.setImmediate,tc=ft.clearImmediate,CR=ft.process,Yl=ft.Dispatch,VR=ft.Function,Jb=ft.MessageChannel,OR=ft.String,Kl=0,gs={},Zb="onreadystatechange",Ss,Ci,Xl,Jl;ig(function(){Ss=ft.location});var ic=function(s){if(LR(gs,s)){var e=gs[s];delete gs[s],e()}},Zl=function(s){return function(){ic(s)}},eg=function(s){ic(s.data)},tg=function(s){ft.postMessage(OR(s),Ss.protocol+"//"+Ss.host)};(!ec||!tc)&&(ec=function(e){$R(arguments.length,1);var t=Yb(e)?e:VR(e),i=MR(arguments,1);return gs[++Kl]=function(){kR(t,void 0,i)},Ci(Kl),Kl},tc=function(e){delete gs[e]},DR?Ci=function(s){CR.nextTick(Zl(s))}:Yl&&Yl.now?Ci=function(s){Yl.now(Zl(s))}:Jb&&!BR?(Xl=new Jb,Jl=Xl.port2,Xl.port1.onmessage=eg,Ci=RR(Jl.postMessage,Jl)):ft.addEventListener&&Yb(ft.postMessage)&&!ft.importScripts&&Ss&&Ss.protocol!=="file:"&&!ig(tg)?(Ci=tg,ft.addEventListener("message",eg,!1)):Zb in Xb("script")?Ci=function(s){Kb.appendChild(Xb("script"))[Zb]=function(){Kb.removeChild(this),ic(s)}}:Ci=function(s){setTimeout(Zl(s),0)});rg.exports={set:ec,clear:tc}});var ng=m(($F,ag)=>{"use strict";var sg=ye(),_R=dt(),FR=Object.getOwnPropertyDescriptor;ag.exports=function(s){if(!_R)return sg[s];var e=FR(sg,s);return e&&e.value}});var sc=m((BF,ug)=>{"use strict";var og=function(){this.head=null,this.tail=null};og.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}}};ug.exports=og});var cg=m((DF,lg)=>{"use strict";var NR=Li();lg.exports=/ipad|iphone|ipod/i.test(NR)&&typeof Pebble<"u"});var pg=m((CF,dg)=>{"use strict";var UR=Li();dg.exports=/web0s(?!.*chrome)/i.test(UR)});var vg=m((VF,Sg)=>{"use strict";var hr=ye(),qR=ng(),hg=nr(),ac=rc().set,HR=sc(),jR=Wl(),zR=cg(),GR=pg(),nc=jn(),fg=hr.MutationObserver||hr.WebKitMutationObserver,mg=hr.document,bg=hr.process,zn=hr.Promise,lc=qR("queueMicrotask"),pr,oc,uc,Gn,gg;lc||(vs=new HR,ys=function(){var s,e;for(nc&&(s=bg.domain)&&s.exit();e=vs.get();)try{e()}catch(t){throw vs.head&&pr(),t}s&&s.enter()},!jR&&!nc&&!GR&&fg&&mg?(oc=!0,uc=mg.createTextNode(""),new fg(ys).observe(uc,{characterData:!0}),pr=function(){uc.data=oc=!oc}):!zR&&zn&&zn.resolve?(Gn=zn.resolve(void 0),Gn.constructor=zn,gg=hg(Gn.then,Gn),pr=function(){gg(ys)}):nc?pr=function(){bg.nextTick(ys)}:(ac=hg(ac,hr),pr=function(){ac(ys)}),lc=function(s){vs.head||pr(),vs.add(s)});var vs,ys;Sg.exports=lc});var Tg=m((OF,yg)=>{"use strict";yg.exports=function(s,e){try{arguments.length===1?console.error(s):console.error(s,e)}catch{}}});var Qn=m((_F,Ig)=>{"use strict";Ig.exports=function(s){try{return{error:!1,value:s()}}catch(e){return{error:!0,value:e}}}});var Vi=m((FF,xg)=>{"use strict";var QR=ye();xg.exports=QR.Promise});var fr=m((NF,Ag)=>{"use strict";var WR=ye(),Ts=Vi(),YR=be(),KR=al(),XR=jl(),JR=Be(),Eg=ql(),ZR=Pt(),cc=Gu(),Pg=Ts&&Ts.prototype,eL=JR("species"),dc=!1,wg=YR(WR.PromiseRejectionEvent),tL=KR("Promise",function(){var s=XR(Ts),e=s!==String(Ts);if(!e&&cc===66||ZR&&!(Pg.catch&&Pg.finally))return!0;if(!cc||cc<51||!/native code/.test(s)){var t=new Ts(function(a){a(1)}),i=function(a){a(function(){},function(){})},r=t.constructor={};if(r[eL]=i,dc=t.then(function(){})instanceof i,!dc)return!0}return!e&&(Eg==="BROWSER"||Eg==="DENO")&&!wg});Ag.exports={CONSTRUCTOR:tL,REJECTION_EVENT:wg,SUBCLASSING:dc}});var mr=m((UF,Rg)=>{"use strict";var kg=$t(),iL=TypeError,rL=function(s){var e,t;this.promise=new s(function(i,r){if(e!==void 0||t!==void 0)throw new iL("Bad Promise constructor");e=i,t=r}),this.resolve=kg(e),this.reject=kg(t)};Rg.exports.f=function(s){return new rL(s)}});var Wg=m(()=>{"use strict";var sL=xe(),aL=Pt(),Xn=jn(),di=ye(),vr=pt(),Lg=dr(),Mg=Vl(),nL=ps(),oL=Mb(),uL=$t(),Kn=be(),lL=ht(),cL=Bb(),dL=Ql(),Vg=rc().set,bc=vg(),pL=Tg(),hL=Qn(),fL=sc(),Og=xl(),Jn=Vi(),gc=fr(),_g=mr(),Zn="Promise",Fg=gc.CONSTRUCTOR,mL=gc.REJECTION_EVENT,bL=gc.SUBCLASSING,pc=Og.getterFor(Zn),gL=Og.set,br=Jn&&Jn.prototype,Oi=Jn,Wn=br,Ng=di.TypeError,hc=di.document,Sc=di.process,fc=_g.f,SL=fc,vL=!!(hc&&hc.createEvent&&di.dispatchEvent),Ug="unhandledrejection",yL="rejectionhandled",$g=0,qg=1,TL=2,vc=1,Hg=2,Yn,Bg,IL,Dg,jg=function(s){var e;return lL(s)&&Kn(e=s.then)?e:!1},zg=function(s,e){var t=e.value,i=e.state===qg,r=i?s.ok:s.fail,a=s.resolve,n=s.reject,o=s.domain,u,l,p;try{r?(i||(e.rejection===Hg&&EL(e),e.rejection=vc),r===!0?u=t:(o&&o.enter(),u=r(t),o&&(o.exit(),p=!0)),u===s.promise?n(new Ng("Promise-chain cycle")):(l=jg(u))?vr(l,u,a,n):a(u)):n(t)}catch(c){o&&!p&&o.exit(),n(c)}},Gg=function(s,e){s.notified||(s.notified=!0,bc(function(){for(var t=s.reactions,i;i=t.get();)zg(i,s);s.notified=!1,e&&!s.rejection&&xL(s)}))},Qg=function(s,e,t){var i,r;vL?(i=hc.createEvent("Event"),i.promise=e,i.reason=t,i.initEvent(s,!1,!0),di.dispatchEvent(i)):i={promise:e,reason:t},!mL&&(r=di["on"+s])?r(i):s===Ug&&pL("Unhandled promise rejection",t)},xL=function(s){vr(Vg,di,function(){var e=s.facade,t=s.value,i=Cg(s),r;if(i&&(r=hL(function(){Xn?Sc.emit("unhandledRejection",t,e):Qg(Ug,e,t)}),s.rejection=Xn||Cg(s)?Hg:vc,r.error))throw r.value})},Cg=function(s){return s.rejection!==vc&&!s.parent},EL=function(s){vr(Vg,di,function(){var e=s.facade;Xn?Sc.emit("rejectionHandled",e):Qg(yL,e,s.value)})},gr=function(s,e,t){return function(i){s(e,i,t)}},Sr=function(s,e,t){s.done||(s.done=!0,t&&(s=t),s.value=e,s.state=TL,Gg(s,!0))},mc=function(s,e,t){if(!s.done){s.done=!0,t&&(s=t);try{if(s.facade===e)throw new Ng("Promise can't be resolved itself");var i=jg(e);i?bc(function(){var r={done:!1};try{vr(i,e,gr(mc,r,s),gr(Sr,r,s))}catch(a){Sr(r,a,s)}}):(s.value=e,s.state=qg,Gg(s,!1))}catch(r){Sr({done:!1},r,s)}}};if(Fg&&(Oi=function(e){cL(this,Wn),uL(e),vr(Yn,this);var t=pc(this);try{e(gr(mc,t),gr(Sr,t))}catch(i){Sr(t,i)}},Wn=Oi.prototype,Yn=function(e){gL(this,{type:Zn,done:!1,notified:!1,parent:!1,reactions:new fL,rejection:!1,state:$g,value:void 0})},Yn.prototype=Lg(Wn,"then",function(e,t){var i=pc(this),r=fc(dL(this,Oi));return i.parent=!0,r.ok=Kn(e)?e:!0,r.fail=Kn(t)&&t,r.domain=Xn?Sc.domain:void 0,i.state===$g?i.reactions.add(r):bc(function(){zg(r,i)}),r.promise}),Bg=function(){var s=new Yn,e=pc(s);this.promise=s,this.resolve=gr(mc,e),this.reject=gr(Sr,e)},_g.f=fc=function(s){return s===Oi||s===IL?new Bg(s):SL(s)},!aL&&Kn(Jn)&&br!==Object.prototype)){Dg=br.then,bL||Lg(br,"then",function(e,t){var i=this;return new Oi(function(r,a){vr(Dg,i,r,a)}).then(e,t)},{unsafe:!0});try{delete br.constructor}catch{}Mg&&Mg(br,Wn)}sL({global:!0,constructor:!0,wrap:!0,forced:Fg},{Promise:Oi});nL(Oi,Zn,!1,!0);oL(Zn)});var Zg=m((jF,Jg)=>{"use strict";var PL=Be(),Kg=PL("iterator"),Xg=!1;try{Yg=0,yc={next:function(){return{done:!!Yg++}},return:function(){Xg=!0}},yc[Kg]=function(){return this},Array.from(yc,function(){throw 2})}catch{}var Yg,yc;Jg.exports=function(s,e){try{if(!e&&!Xg)return!1}catch{return!1}var t=!1;try{var i={};i[Kg]=function(){return{next:function(){return{done:t=!0}}}},s(i)}catch{}return t}});var Tc=m((zF,eS)=>{"use strict";var wL=Vi(),AL=Zg(),kL=fr().CONSTRUCTOR;eS.exports=kL||!AL(function(s){wL.all(s).then(void 0,function(){})})});var tS=m(()=>{"use strict";var RL=xe(),LL=pt(),ML=$t(),$L=mr(),BL=Qn(),DL=Un(),CL=Tc();RL({target:"Promise",stat:!0,forced:CL},{all:function(e){var t=this,i=$L.f(t),r=i.resolve,a=i.reject,n=BL(function(){var o=ML(t.resolve),u=[],l=0,p=1;DL(e,function(c){var d=l++,h=!1;p++,LL(o,t,c).then(function(f){h||(h=!0,u[d]=f,--p||r(u))},a)}),--p||r(u)});return n.error&&a(n.value),i.promise}})});var rS=m(()=>{"use strict";var VL=xe(),OL=Pt(),_L=fr().CONSTRUCTOR,xc=Vi(),FL=Xt(),NL=be(),UL=dr(),iS=xc&&xc.prototype;VL({target:"Promise",proto:!0,forced:_L,real:!0},{catch:function(s){return this.then(void 0,s)}});!OL&&NL(xc)&&(Ic=FL("Promise").prototype.catch,iS.catch!==Ic&&UL(iS,"catch",Ic,{unsafe:!0}));var Ic});var sS=m(()=>{"use strict";var qL=xe(),HL=pt(),jL=$t(),zL=mr(),GL=Qn(),QL=Un(),WL=Tc();qL({target:"Promise",stat:!0,forced:WL},{race:function(e){var t=this,i=zL.f(t),r=i.reject,a=GL(function(){var n=jL(t.resolve);QL(e,function(o){HL(n,t,o).then(i.resolve,r)})});return a.error&&r(a.value),i.promise}})});var aS=m(()=>{"use strict";var YL=xe(),KL=mr(),XL=fr().CONSTRUCTOR;YL({target:"Promise",stat:!0,forced:XL},{reject:function(e){var t=KL.f(this),i=t.reject;return i(e),t.promise}})});var Ec=m((eN,nS)=>{"use strict";var JL=Bt(),ZL=ht(),eM=mr();nS.exports=function(s,e){if(JL(s),ZL(e)&&e.constructor===s)return e;var t=eM.f(s),i=t.resolve;return i(e),t.promise}});var lS=m(()=>{"use strict";var tM=xe(),iM=Xt(),oS=Pt(),rM=Vi(),uS=fr().CONSTRUCTOR,sM=Ec(),aM=iM("Promise"),nM=oS&&!uS;tM({target:"Promise",stat:!0,forced:oS||uS},{resolve:function(e){return sM(nM&&this===aM?rM:this,e)}})});var cS=m(()=>{"use strict";Wg();tS();rS();sS();aS();lS()});var fS=m(()=>{"use strict";var oM=xe(),uM=Pt(),eo=Vi(),lM=$e(),pS=Xt(),hS=be(),cM=Ql(),dS=Ec(),dM=dr(),wc=eo&&eo.prototype,pM=!!eo&&lM(function(){wc.finally.call({then:function(){}},function(){})});oM({target:"Promise",proto:!0,real:!0,forced:pM},{finally:function(s){var e=cM(this,pS("Promise")),t=hS(s);return this.then(t?function(i){return dS(e,s()).then(function(){return i})}:s,t?function(i){return dS(e,s()).then(function(){throw i})}:s)}});!uM&&hS(eo)&&(Pc=pS("Promise").prototype.finally,wc.finally!==Pc&&dM(wc,"finally",Pc,{unsafe:!0}));var Pc});var bS=m((oN,mS)=>{"use strict";Eb();cS();fS();var hM=ci();mS.exports=hM("Promise","finally")});var SS=m((uN,gS)=>{"use strict";var fM=bS();gS.exports=fM});var Is=m((lN,vS)=>{"use strict";var mM=SS();vS.exports=mM});var $S=m(()=>{"use strict";var RM=xe(),LM=vl().values;RM({target:"Object",stat:!0},{values:function(e){return LM(e)}})});var DS=m((QN,BS)=>{"use strict";$S();var MM=rr();BS.exports=MM.Object.values});var VS=m((WN,CS)=>{"use strict";var $M=DS();CS.exports=$M});var Ni=m((YN,OS)=>{"use strict";var BM=VS();OS.exports=BM});var ZS=m(()=>{"use strict";var r$=xe(),s$=sr(),a$=cr(),n$=us(),o$=ls();r$({target:"Array",proto:!0},{at:function(e){var t=s$(this),i=a$(t),r=n$(e),a=r>=0?r:i+r;return a<0||a>=i?void 0:t[a]}});o$("at")});var tv=m((sq,ev)=>{"use strict";ZS();var u$=ci();ev.exports=u$("Array","at")});var rv=m((aq,iv)=>{"use strict";var l$=tv();iv.exports=l$});var kt=m((nq,sv)=>{"use strict";var c$=rv();sv.exports=c$});var Yc=m((z1,Ov)=>{"use strict";var j$=ki();Ov.exports=Array.isArray||function(e){return j$(e)==="Array"}});var Fv=m((G1,_v)=>{"use strict";var z$=TypeError,G$=9007199254740991;_v.exports=function(s){if(s>G$)throw z$("Maximum allowed index exceeded");return s}});var qv=m((Q1,Uv)=>{"use strict";var Q$=Yc(),W$=cr(),Y$=Fv(),K$=nr(),Nv=function(s,e,t,i,r,a,n,o){for(var u=r,l=0,p=n?K$(n,o):!1,c,d;l<i;)l in t&&(c=p?p(t[l],l,e):t[l],a>0&&Q$(c)?(d=W$(c),u=Nv(s,e,c,d,u,a-1)-1):(Y$(u+1),s[u]=c),u++),l++;return u};Uv.exports=Nv});var Gv=m((W1,zv)=>{"use strict";var Hv=Yc(),X$=Gl(),J$=ht(),Z$=Be(),eB=Z$("species"),jv=Array;zv.exports=function(s){var e;return Hv(s)&&(e=s.constructor,X$(e)&&(e===jv||Hv(e.prototype))?e=void 0:J$(e)&&(e=e[eB],e===null&&(e=void 0))),e===void 0?jv:e}});var Wv=m((Y1,Qv)=>{"use strict";var tB=Gv();Qv.exports=function(s,e){return new(tB(s))(e===0?0:e)}});var Yv=m(()=>{"use strict";var iB=xe(),rB=qv(),sB=$t(),aB=sr(),nB=cr(),oB=Wv();iB({target:"Array",proto:!0},{flatMap:function(e){var t=aB(this),i=nB(t),r;return sB(e),r=oB(t,0),r.length=rB(r,t,t,i,0,1,e,arguments.length>1?arguments[1]:void 0),r}})});var Kv=m(()=>{"use strict";var uB=ls();uB("flatMap")});var Jv=m((eH,Xv)=>{"use strict";Yv();Kv();var lB=ci();Xv.exports=lB("Array","flatMap")});var ey=m((tH,Zv)=>{"use strict";var cB=Jv();Zv.exports=cB});var Fs=m((iH,ty)=>{"use strict";var dB=ey();ty.exports=dB});var Ns=m((rH,iy)=>{"use strict";var pB=ds(),hB=String;iy.exports=function(s){if(pB(s)==="Symbol")throw new TypeError("Cannot convert a Symbol value to a string");return hB(s)}});var Kc=m((sH,ry)=>{"use strict";ry.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 ny=m((aH,ay)=>{"use strict";var fB=Re(),mB=li(),bB=Ns(),Jc=Kc(),sy=fB("".replace),gB=RegExp("^["+Jc+"]+"),SB=RegExp("(^|[^"+Jc+"])["+Jc+"]+$"),Xc=function(s){return function(e){var t=bB(mB(e));return s&1&&(t=sy(t,gB,"")),s&2&&(t=sy(t,SB,"$1")),t}};ay.exports={start:Xc(1),end:Xc(2),trim:Xc(3)}});var cy=m((nH,ly)=>{"use strict";var vB=wl().PROPER,yB=$e(),oy=Kc(),uy="\u200B\x85\u180E";ly.exports=function(s){return yB(function(){return!!oy[s]()||uy[s]()!==uy||vB&&oy[s].name!==s})}});var Zc=m((oH,dy)=>{"use strict";var TB=ny().start,IB=cy();dy.exports=IB("trimStart")?function(){return TB(this)}:"".trimStart});var hy=m(()=>{"use strict";var xB=xe(),py=Zc();xB({target:"String",proto:!0,name:"trimStart",forced:"".trimLeft!==py},{trimLeft:py})});var my=m(()=>{"use strict";hy();var EB=xe(),fy=Zc();EB({target:"String",proto:!0,name:"trimStart",forced:"".trimStart!==fy},{trimStart:fy})});var gy=m((pH,by)=>{"use strict";my();var PB=ci();by.exports=PB("String","trimLeft")});var vy=m((hH,Sy)=>{"use strict";var wB=gy();Sy.exports=wB});var Ty=m((fH,yy)=>{"use strict";var AB=vy();yy.exports=AB});var Vy=m(()=>{"use strict"});var Oy=m(()=>{"use strict"});var Fy=m((W2,_y)=>{"use strict";var KB=ht(),XB=ki(),JB=Be(),ZB=JB("match");_y.exports=function(s){var e;return KB(s)&&((e=s[ZB])!==void 0?!!e:XB(s)==="RegExp")}});var Uy=m((Y2,Ny)=>{"use strict";var eD=Bt();Ny.exports=function(){var s=eD(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 jy=m((K2,Hy)=>{"use strict";var tD=pt(),iD=wt(),rD=is(),sD=Uy(),qy=RegExp.prototype;Hy.exports=function(s){var e=s.flags;return e===void 0&&!("flags"in qy)&&!iD(s,"flags")&&rD(qy,s)?tD(sD,s):e}});var Gy=m((X2,zy)=>{"use strict";var ad=Re(),aD=sr(),nD=Math.floor,rd=ad("".charAt),oD=ad("".replace),sd=ad("".slice),uD=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,lD=/\$([$&'`]|\d{1,2})/g;zy.exports=function(s,e,t,i,r,a){var n=t+s.length,o=i.length,u=lD;return r!==void 0&&(r=aD(r),u=uD),oD(a,u,function(l,p){var c;switch(rd(p,0)){case"$":return"$";case"&":return s;case"`":return sd(e,0,t);case"'":return sd(e,n);case"<":c=r[sd(p,1,-1)];break;default:var d=+p;if(d===0)return l;if(d>o){var h=nD(d/10);return h===0?l:h<=o?i[h-1]===void 0?rd(p,1):i[h-1]+rd(p,1):l}c=i[d-1]}return c===void 0?"":c})}});var Yy=m(()=>{"use strict";var cD=xe(),dD=pt(),od=Re(),Qy=li(),pD=be(),hD=ir(),fD=Fy(),Br=Ns(),mD=ss(),bD=jy(),gD=Gy(),SD=Be(),vD=Pt(),yD=SD("replace"),TD=TypeError,nd=od("".indexOf),ID=od("".replace),Wy=od("".slice),xD=Math.max;cD({target:"String",proto:!0},{replaceAll:function(e,t){var i=Qy(this),r,a,n,o,u,l,p,c,d,h,f=0,b="";if(!hD(e)){if(r=fD(e),r&&(a=Br(Qy(bD(e))),!~nd(a,"g")))throw new TD("`.replaceAll` does not allow non-global regexes");if(n=mD(e,yD),n)return dD(n,e,i,t);if(vD&&r)return ID(Br(i),e,t)}for(o=Br(i),u=Br(e),l=pD(t),l||(t=Br(t)),p=u.length,c=xD(1,p),d=nd(o,u);d!==-1;)h=l?Br(t(u,d,o)):gD(u,o,d,[],void 0,t),b+=Wy(o,f,d)+h,f=d+p,d=d+c>o.length?-1:nd(o,u,d+c);return f<o.length&&(b+=Wy(o,f)),b}})});var Xy=m((e3,Ky)=>{"use strict";Vy();Oy();Yy();var ED=ci();Ky.exports=ED("String","replaceAll")});var Zy=m((t3,Jy)=>{"use strict";var PD=Xy();Jy.exports=PD});var ud=m((i3,eT)=>{"use strict";var wD=Zy();eT.exports=wD});var iT=m((r3,tT)=>{"use strict";var AD=us(),kD=Ns(),RD=li(),LD=RangeError;tT.exports=function(e){var t=kD(RD(this)),i="",r=AD(e);if(r<0||r===1/0)throw new LD("Wrong number of repetitions");for(;r>0;(r>>>=1)&&(t+=t))r&1&&(i+=t);return i}});var oT=m((s3,nT)=>{"use strict";var aT=Re(),MD=dl(),rT=Ns(),$D=iT(),BD=li(),DD=aT($D),CD=aT("".slice),VD=Math.ceil,sT=function(s){return function(e,t,i){var r=rT(BD(e)),a=MD(t),n=r.length,o=i===void 0?" ":rT(i),u,l;return a<=n||o===""?r:(u=a-n,l=DD(o,VD(u/o.length)),l.length>u&&(l=CD(l,0,u)),s?r+l:l+r)}};nT.exports={start:sT(!1),end:sT(!0)}});var lT=m((a3,uT)=>{"use strict";var OD=Li();uT.exports=/Version\/10(?:\.\d+){1,2}(?: [\w./]+)?(?: Mobile\/\w+)? Safari\//.test(OD)});var cT=m(()=>{"use strict";var _D=xe(),FD=oT().start,ND=lT();_D({target:"String",proto:!0,forced:ND},{padStart:function(e){return FD(this,e,arguments.length>1?arguments[1]:void 0)}})});var pT=m((u3,dT)=>{"use strict";cT();var UD=ci();dT.exports=UD("String","padStart")});var fT=m((l3,hT)=>{"use strict";var qD=pT();hT.exports=qD});var ld=m((c3,mT)=>{"use strict";var HD=fT();mT.exports=HD});var Ap="2.0.131-dev.a5457847.0";var Ke=(r=>(r.STOPPED="stopped",r.READY="ready",r.PLAYING="playing",r.PAUSED="paused",r))(Ke||{}),Kt=(v=>(v.MPEG="MPEG",v.DASH="DASH",v.DASH_SEP="DASH_SEP",v.DASH_SEP_VK="DASH_SEP",v.DASH_WEBM="DASH_WEBM",v.DASH_WEBM_AV1="DASH_WEBM_AV1",v.DASH_STREAMS="DASH_STREAMS",v.DASH_WEBM_VK="DASH_WEBM",v.DASH_ONDEMAND="DASH_ONDEMAND",v.DASH_ONDEMAND_VK="DASH_ONDEMAND",v.DASH_LIVE="DASH_LIVE",v.DASH_LIVE_CMAF="DASH_LIVE_CMAF",v.DASH_LIVE_WEBM="DASH_LIVE_WEBM",v.HLS="HLS",v.HLS_ONDEMAND="HLS_ONDEMAND",v.HLS_JS="HLS",v.HLS_LIVE="HLS_LIVE",v.HLS_LIVE_CMAF="HLS_LIVE_CMAF",v.WEB_RTC_LIVE="WEB_RTC_LIVE",v))(Kt||{});var yn=(r=>(r.NOT_AVAILABLE="NOT_AVAILABLE",r.AVAILABLE="AVAILABLE",r.CONNECTING="CONNECTING",r.CONNECTED="CONNECTED",r))(yn||{}),Du=(i=>(i.HTTP1="http1",i.HTTP2="http2",i.QUIC="quic",i))(Du||{});var Cu=(n=>(n.NONE="none",n.INLINE="inline",n.FULLSCREEN="fullscreen",n.SECOND_SCREEN="second_screen",n.PIP="pip",n.INVISIBLE="invisible",n))(Cu||{}),Tn=(i=>(i.TRAFFIC_SAVING="traffic_saving",i.HIGH_QUALITY="high_quality",i.UNKNOWN="unknown",i))(Tn||{});var kx=C(gt(),1);import{assertNever as wf,assertNonNullable as iw,isNonNullable as wn,ValueSubject as hl,Subject as rw,Subscription as sw,merge as aw,observableFrom as nw,fromEvent as If,map as xf,tap as Ef,filterChanged as ow,isNullable as fl,ErrorCategory as Pf}from"@vkontakte/videoplayer-shared";var Tf=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 An=class{constructor(e){this.connection$=new hl(void 0);this.castState$=new hl("NOT_AVAILABLE");this.errorEvent$=new rw;this.realCastState$=new hl("NOT_AVAILABLE");this.subscription=new sw;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=wn(window.chrome?.cast),r=!!window.__onGCastApiAvailable;i?this.initializeCastApi():(window.__onGCastApiAvailable=a=>{delete window.__onGCastApiAvailable,a&&!this.isDestroyed&&this.initializeCastApi()},r||Tf("https://www.gstatic.com/cv/js/sender/v1/cast_sender.js?loadCastFramework=1").catch(()=>this.errorEvent$.next({id:"ChromecastLoading",category:Pf.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(){wn(this.connection$.getValue())?this.disconnect():this.connect()}setVolume(e){let t=this.connection$.getValue();fl(t)||(t.remotePlayer.volumeLevel=e,t.remotePlayerController.setVolumeLevel())}setMuted(e){let t=this.connection$.getValue();fl(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(If(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 wf(r.sessionState)}})).add(aw(If(i,cast.framework.CastContextEventType.CAST_STATE_CHANGED).pipe(Ef(r=>{this.log({message:`[cast.framework.RemotePlayerEventType.CAST_STATE_CHANGED]: ${JSON.stringify(r)}`})}),xf(r=>r.castState)),nw([i.getCastState()])).pipe(ow(),xf(uw),Ef(r=>{this.log({message:`realCastState$: ${r}`})})).subscribe(this.realCastState$)).add(this.realCastState$.subscribe(r=>{let a=r==="CONNECTED",n=wn(this.connection$.getValue());if(a&&!n){let o=i.getCurrentSession();iw(o);let u=o.getCastDevice(),l=o.getMediaSession()?.media?.contentId;(fl(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"?wn(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:Pf.EXTERNAL_API,message:"[initializeCastApi] failed",thrown:r})}}},uw=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 wf(s)}};var Sp=C(gt(),1),lx=C($i(),1),cx=C(Ul(),1);var RS=C(Is(),1);import{assertNever as yS}from"@vkontakte/videoplayer-shared";var ge=(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:yS(t)}return s},pi=(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:yS(e)}};var A=(s,e,t=!1)=>{let i=s.getTransition();(t||!i||i.to===e)&&s.setState(e)};import{isNonNullable as bM,Subject as to,merge as TS}from"@vkontakte/videoplayer-shared";var N=class{constructor(e){this.transitionStarted$=new to;this.transitionEnded$=new to;this.transitionUpdated$=new to;this.forceChanged$=new to;this.stateChangeStarted$=TS(this.transitionStarted$,this.transitionUpdated$);this.stateChangeEnded$=TS(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||bM(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}};import{assertNever as gM}from"@vkontakte/videoplayer-shared";var IS=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 gM(s)}};import{assertNever as yr,assertNonNullable as _i,debounce as xS,ErrorCategory as ES,fromEvent as Fi,isNonNullable as PS,map as wS,merge as AS,observableFrom as SM,Subject as vM,Subscription as Ac,timeout as yM,getHighestQuality as TM}from"@vkontakte/videoplayer-shared";var IM=5,xM=5,EM=500,kS=7e3,xs=class{constructor(e){this.subscription=new Ac;this.loadMediaTimeoutSubscription=new Ac;this.videoState=new N("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:yr(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:yr(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:yr(e)}break}default:yr(i)}}};this.params=e,this.log=this.params.dependencies.logger.createComponentLog("ChromecastProvider"),this.log({message:`constructor, format: ${e.format}`}),this.params.output.isLive$.next(IS(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 Ac;this.subscription.add(e),this.subscription.add(AS(this.videoState.stateChangeStarted$.pipe(wS(r=>`stateChangeStarted$ ${JSON.stringify(r)}`)),this.videoState.stateChangeEnded$.pipe(wS(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 vM;e.add(r.pipe(xS(EM)).subscribe(()=>{this.params.output.seekedEvent$.next()}));let a=NaN;e.add(Fi(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)>IM)&&r.next(o),a=o})),e.add(Fi(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.DURATION_CHANGED).subscribe(n=>{this.logRemoteEvent(n),this.params.output.duration$.next(n.value)}))}t(Fi(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_MEDIA_LOADED_CHANGED),r=>{this.logRemoteEvent(r),r.value?this.handleRemoteReady():(this.handleRemoteStop(),e.unsubscribe())}),t(Fi(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_PAUSED_CHANGED),r=>{this.logRemoteEvent(r),r.value?this.handleRemotePause():this.handleRemotePlay()}),t(Fi(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<xM&&this.params.output.endedEvent$.next(),this.handleRemoteStop(),A(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:yr(n)}}),t(Fi(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.VOLUME_LEVEL_CHANGED),r=>{this.logRemoteEvent(r),this.handleRemoteVolumeChange({volume:r.value})}),t(Fi(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_MUTED_CHANGED),r=>{this.logRemoteEvent(r),this.handleRemoteVolumeChange({muted:r.value})});let i=AS(this.params.desiredState.playbackState.stateChangeStarted$,this.params.desiredState.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,SM(["init"])).pipe(xS(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"),A(this.params.desiredState.playbackState,"paused")):(this.videoState.setState("playing"),A(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"),A(this.params.desiredState.playbackState,"paused"))}handleRemotePlay(){let e=this.videoState.getState();(this.videoState.getTransition()?.to==="playing"||e==="paused")&&(this.videoState.setState("playing"),A(this.params.desiredState.playbackState,"playing"))}handleRemoteReady(){this.videoState.getTransition()?.to==="ready"&&this.videoState.setState("ready"),this.params.desiredState.playbackState.getTransition()?.to==="ready"&&A(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];_i(l);let p=TM(Object.keys(l));_i(p);let c=l[p];_i(c),i=c,r="video/mp4",a=chrome.cast.media.StreamType.BUFFERED;break}case"HLS":case"HLS_ONDEMAND":{let l=t[e];_i(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];_i(l),i=l.url,r="application/dash+xml",a=chrome.cast.media.StreamType.BUFFERED;break}case"DASH_LIVE_CMAF":{let l=t[e];_i(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];_i(l),i=ge(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",p=new Error(l);throw this.params.output.error$.next({id:"ChromecastProvider.createMediaInfo()",category:ES.VIDEO_PIPELINE,message:l,thrown:p}),p}case"DASH":case"DASH_LIVE_WEBM":throw new Error(`${e} is no longer supported`);default:return yr(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 PS(o)&&(n.metadata.title=o),PS(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(yM(kS).subscribe(()=>a(`timeout(${kS})`)))});(0,RS.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:ES.VIDEO_PIPELINE,message:a,thrown:r})}),()=>{this.loadMediaTimeoutSubscription.unsubscribe()})}logRemoteEvent(e){this.log({message:`[remoteEvent] ${JSON.stringify(e)}`})}};var Qc=C(gt(),1);import{clearVideoElement as MS}from"@vkontakte/videoplayer-shared";import{clearVideoElement as PM}from"@vkontakte/videoplayer-shared";var LS=s=>{try{s.pause(),s.playbackRate=0,PM(s),s.remove()}catch(e){console.error(e)}};import{fromEvent as wM,Subscription as AM}from"@vkontakte/videoplayer-shared";var kc=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)}},Rc=window.WeakMap?new WeakMap:new kc,Lc=window.WeakMap?new WeakMap:new Map,kM=(s,e=20)=>{let t=0;return wM(s,"ratechange").subscribe(i=>{t++,t>=e&&(s.currentTime=s.currentTime,t=0)})},De=(s,{audioVideoSyncRate:e,disableYandexPiP:t})=>{let i=s.querySelector("video"),r=!!i;i?MS(i):(i=document.createElement("video"),s.appendChild(i)),Rc.set(i,r);let a=new AM;return a.add(kM(i,e)),Lc.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},Ce=s=>{Lc.get(s)?.unsubscribe(),Lc.delete(s);let t=Rc.get(s);Rc.delete(s),t?MS(s):LS(s)};var $c=C(Ni(),1);import{assertNonNullable as Es,isNonNullable as Ct,isNullable as VM,fromEvent as Tr,merge as _S,observableFrom as FS,filterChanged as NS,map as Ps,Subject as US,Subscription as OM,ValueSubject as _M,ErrorCategory as FM}from"@vkontakte/videoplayer-shared";import{isNonNullable as Mc,isNullable as DM,Subscription as CM}from"@vkontakte/videoplayer-shared";var io=(s,e,t,{equal:i=(n,o)=>n===o,changed$:r,onError:a}={})=>{let n=s.getState(),o=e(),u=DM(r),l=new CM;return r&&l.add(r.subscribe(p=>{let c=s.getState();i(p,c)&&s.setState(p)},a)),i(o,n)||(t(n),u&&s.setState(n)),l.add(s.stateChangeStarted$.subscribe(p=>{t(p.to),u&&s.setState(p.to)},a)),l},St=(s,e,t)=>io(e,()=>s.loop,i=>{Mc(i)&&(s.loop=i)},{onError:t}),Ve=(s,e,t,i)=>io(e,()=>({muted:s.muted,volume:s.volume}),r=>{Mc(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}),Xe=(s,e,t,i)=>io(e,()=>s.playbackRate,r=>{Mc(r)&&(s.playbackRate=r)},{changed$:t,onError:i}),hi=io;var NM=s=>["__",s.language,s.label].join("|"),UM=(s,e)=>{if(s.id===e)return!0;let[t,i,r]=e.split("|");return s.language===i&&s.label===r},Bc=class s{constructor(e){this.available$=new US;this.current$=new _M(void 0);this.error$=new US;this.subscription=new OM;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:FM.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(hi(t.internalTextTracks,()=>(0,$c.default)(this.internalTracks),a=>{Ct(a)&&this.setInternal(a)},{equal:(a,n)=>Ct(a)&&Ct(n)&&a.length===n.length&&a.every(({id:o},u)=>o===n[u].id),changed$:this.available$.pipe(Ps(a=>a.filter(({type:n})=>n==="internal"))),onError:r})),this.subscription.add(hi(t.externalTextTracks,()=>(0,$c.default)(this.externalTracks),a=>{Ct(a)&&this.setExternal(a)},{equal:(a,n)=>Ct(a)&&Ct(n)&&a.length===n.length&&a.every(({id:o},u)=>o===n[u].id),changed$:this.available$.pipe(Ps(a=>a.filter(({type:n})=>n==="external"))),onError:r})),this.subscription.add(hi(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(hi(t.textTrackCuesSettings,()=>({}),()=>{if(this.video)for(let a of this.htmlTextTracksAsArray())this.applyCueSettings(a.cues),this.applyCueSettings(a.activeCues)}))}subscribe(){Es(this.video);let{textTracks:e}=this.video;this.subscription.add(Tr(e,"addtrack").subscribe(()=>{let i=this.current$.getValue();i&&this.select(i)})),this.subscription.add(_S(Tr(e,"addtrack"),Tr(e,"removetrack"),FS(["init"])).pipe(Ps(()=>this.htmlTextTracksAsArray().map(i=>this.htmlTextTrackToITextTrack(i))),NS((i,r)=>i.length===r.length&&i.every(({id:a},n)=>a===r[n].id))).subscribe(this.available$)),this.subscription.add(_S(Tr(e,"change"),FS(["init"])).pipe(Ps(()=>this.htmlTextTracksAsArray().find(({mode:i})=>i==="showing")),Ps(i=>i&&this.htmlTextTrackToITextTrack(i).id),NS()).subscribe(this.current$));let t=i=>this.applyCueSettings(i.target?.activeCues??null);this.subscription.add(Tr(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(Tr(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;Ct(t.align)&&(r.align=t.align),Ct(t.position)&&(r.position=t.position),Ct(t.size)&&(r.size=t.size),Ct(t.line)&&(r.line=t.line)}}htmlTextTracksAsArray(e=!1){Es(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:NM(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){Es(this.video);for(let t of this.htmlTextTracksAsArray(!0))t.mode="showing";for(let t of this.htmlTextTracksAsArray(!0))(VM(e)||!UM(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){Es(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){Es(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)}},Je=Bc;var Ui=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 qS=s=>{let e=s;for(;!(e instanceof Document)&&!(e instanceof ShadowRoot)&&e!==null;)e=e?.parentNode;return e??void 0},Dc=s=>{let e=qS(s);return!!(e&&e.fullscreenElement&&e.fullscreenElement===s)},HS=s=>{let e=qS(s);return!!(e&&e.pictureInPictureElement&&e.pictureInPictureElement===s)};import{fromEvent as Ze,map as fi,merge as Vc,filterChanged as KM,isNonNullable as XS,Subject as XM,filter as As,mapTo as Oc,combine as JM,once as ZM,throttle as e$,ErrorCategory as t$,ValueSubject as JS,Subscription as i$}from"@vkontakte/videoplayer-shared";var qM=3,jS=(s,e,t=qM)=>{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 ro=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,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._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 zS=C(gt(),1);var ws=()=>/Mobile|mini|Fennec|Android|iP(ad|od|hone)/.test(navigator.appVersion??navigator.userAgent)||navigator?.userAgentData?.mobile;var so=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,zS.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=ws()}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,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 ao=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 mt=()=>window.ManagedMediaSource||window.MediaSource,Ir=()=>!!(window.ManagedMediaSource&&window.ManagedSourceBuffer?.prototype?.appendBuffer),GS=()=>!!(window.MediaSource&&window.SourceBuffer?.prototype?.appendBuffer),no=()=>window.ManagedMediaSource?new ManagedMediaSource:new MediaSource;var HM=document.createElement("video"),jM='video/mp4; codecs="avc1.42000a,mp4a.40.2"',zM='video/mp4; codecs="hev1.1.6.L93.B0"',QS='video/webm; codecs="vp09.00.10.08"',WS='video/webm; codecs="av01.0.00M.08"',GM='audio/mp4; codecs="mp4a.40.2"',QM='audio/webm; codecs="opus"',YS,WM=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:WS}}),window.navigator.mediaCapabilities.decodingInfo({...s,video:{...s.video,contentType:QS}})]);YS={DASH_WEBM_AV1:e,DASH_WEBM:t}};WM().catch(s=>{console.log(HM),console.error(s)});var oo=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 YS}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:Ir(),mse:GS(),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=!!mt()?.isTypeSupported?.(jM),t=!!mt()?.isTypeSupported?.(zM),i=!!mt()?.isTypeSupported?.(GM);this._codecs={h264:e,h265:t,vp9:!!mt()?.isTypeSupported?.(QS),av1:!!mt()?.isTypeSupported?.(WS),aac:i,opus:!!mt()?.isTypeSupported?.(QM),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 KS="audio/mpeg",uo=class{supportMp3(){return this._codecs.mp3&&this._containers.mpeg}detect(){this._audio=document.createElement("audio");try{this._containers={mpeg:!!this._audio.canPlayType?.(KS)},this._codecs={mp3:!!mt()?.isTypeSupported?.(KS)}}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}};import{ValueSubject as YM}from"@vkontakte/videoplayer-shared";var Cc=class{constructor(){this.isInited$=new YM(!1);this._displayChecker=new ao,this._deviceChecker=new so(this._displayChecker),this._browserChecker=new ro,this._videoChecker=new oo(this._deviceChecker,this._browserChecker),this._audioChecker=new uo,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)}},F=new Cc;var Oe=s=>{let e=y=>Ze(s,y).pipe(Oc(void 0)),t=new i$,i=()=>t.unsubscribe(),a=Vc(...["waiting","pause","canplay","play","canplaythrough","playing","seeking","seeked","ended"].map(y=>Ze(s,y))).pipe(fi(y=>y.type==="ended"?s.readyState<2:s.readyState<3),KM()),n=Vc(Ze(s,"progress"),Ze(s,"timeupdate")).pipe(fi(()=>jS(s.buffered,s.currentTime))),o=F.browser.isSafari?JM({play:e("play").pipe(ZM()),playing:e("playing")}).pipe(Oc(void 0)):e("playing"),u=Ze(s,"volumechange").pipe(fi(()=>({muted:s.muted,volume:s.volume}))),l=Ze(s,"ratechange").pipe(fi(()=>s.playbackRate)),p=Ze(s,"error").pipe(As(()=>!!(s.error||s.played.length)),fi(()=>{let y=s.error;return{id:y?`MediaError#${y.code}`:"HtmlVideoError",category:t$.VIDEO_PIPELINE,message:y?y.message:"Error event from HTML video element",thrown:s.error??void 0}})),c=Ze(s,"timeupdate").pipe(fi(()=>s.currentTime)),d=new XM,h=.3,f;t.add(c.subscribe(y=>{s.loop&&XS(f)&&XS(y)&&f>=s.duration-h&&y<=h&&d.next(f),f=y}));let b=e("pause").pipe(As(()=>!s.error&&f!==s.duration)),g=Ze(s,"enterpictureinpicture"),S=Ze(s,"leavepictureinpicture"),T=new JS(HS(s));t.add(g.subscribe(()=>T.next(!0))),t.add(S.subscribe(()=>T.next(!1)));let v=new JS(Dc(s)),w=Ze(s,"fullscreenchange");t.add(w.pipe(fi(()=>Dc(s))).subscribe(v));let P=.1,M=1e3,O=Ze(s,"timeupdate").pipe(As(y=>s.duration-s.currentTime<P)),E=Vc(O.pipe(As(y=>!s.loop)),Ze(s,"ended")).pipe(e$(M),Oc(void 0)),R=O.pipe(As(y=>s.loop));return{playing$:o,pause$:b,canplay$:e("canplay"),ended$:E,looped$:d,loopExpected$:R,error$:p,seeked$:e("seeked"),seeking$:e("seeking"),progress$:e("progress"),loadStart$:e("loadstart"),loadedMetadata$:e("loadedmetadata"),loadedData$:e("loadeddata"),timeUpdate$:c,durationChange$:Ze(s,"durationchange").pipe(fi(()=>s.duration)),isBuffering$:a,currentBuffer$:n,volumeState$:u,playbackRateState$:l,inPiP$:T,inFullscreen$:v,enterPip$:g,leavePip$:S,destroy:i}};import{VideoQuality as mi}from"@vkontakte/videoplayer-shared";var Vt=s=>{switch(s){case"mobile":return mi.Q_144P;case"lowest":return mi.Q_240P;case"low":return mi.Q_360P;case"sd":case"medium":return mi.Q_480P;case"hd":case"high":return mi.Q_720P;case"fullhd":case"full":return mi.Q_1080P;case"quadhd":case"quad":return mi.Q_1440P;case"ultrahd":case"ultra":return mi.Q_2160P}};var Qe=C(kt(),1),Nc=C(gt(),1),qi=C($i(),1);import{isNonNullable as X,isNullable as fo,now as fv,isHigher as mo,isHigherOrEqual as Er,isInvariantQuality as bo,isLowerOrEqual as Pr,videoSizeToQuality as mv,assertNotEmptyArray as go,assertNonNullable as bv}from"@vkontakte/videoplayer-shared";var _c=!1,Zt={},av=s=>{_c=s},nv=()=>{Zt={}},ov=s=>{s(Zt)},ks=(s,e)=>{_c&&(Zt.meta=Zt.meta??{},Zt.meta[s]=e)},Ge=class{constructor(e){this.name=e}next(e){if(!_c)return;Zt.series=Zt.series??{};let t=Zt.series[this.name]??[];t.push([Date.now(),e]),Zt.series[this.name]=t}};import{isHigher as d$,isHigherOrEqual as pq,isLower as uv,isLowerOrEqual as hq,isNonNullable as lo,isNullable as p$,videoHeightToQuality as co}from"@vkontakte/videoplayer-shared";function Fc(s,e,t){return!s.max&&s.min===e?"high_quality":!s.min&&s.max===t?"traffic_saving":"unknown"}function po(s,e,t){return!!s&&Fc(s,e,t)==="high_quality"}function xr(s,e,t){return p$(s)||lo(s.min)&&lo(s.max)&&uv(s.max,s.min)||lo(s.min)&&e&&d$(s.min,e)||lo(s.max)&&t&&uv(s.max,t)}function lv({limits:s,highestAvailableHeight:e,lowestAvailableHeight:t}){return xr({max:s?.max?co(s.max):void 0,min:s?.min?co(s.min):void 0},e?co(e):void 0,t?co(t):void 0)}var gv=new Ge("best_bitrate"),So=(s,e,t)=>(e-t)*Math.pow(2,-10*s)+t;var wr=s=>(e,t)=>s*(Number(e.bitrate)-Number(t.bitrate)),bi=class{constructor(){this.history={}}recordSelection(e){this.history[e.id]=fv()}recordSwitch(e){this.last=e}clear(){this.last=void 0,this.history={}}},vo='Assertion "ABR Tracks is empty array" failed',ho=new WeakMap,cv=new WeakMap,dv=new WeakMap,Rs=(s,e,t,i)=>{let r=[...e].sort(wr(1)),a=[...t].sort(wr(1)),n=a.filter(u=>X(u.bitrate)&&X(s.bitrate)?s.bitrate/u.bitrate>i:!0),o=(0,Qe.default)(a,Math.round(a.length*r.indexOf(s)/(r.length+1)))??(0,Qe.default)(a,-1);return o&&(0,Nc.default)(n,o)?o:n.length?(0,Qe.default)(n,-1):(0,Qe.default)(a,0)},Ls=(s,e,t,i)=>{let r=ho.get(e);r||(r=[...e].sort(wr(1)),ho.set(e,r));let a=ho.get(t);a||(a=[...t].sort(wr(1)),ho.set(t,a));let n=dv.get(s);n||(n=a.filter(u=>X(u.bitrate)&&X(s.bitrate)?s.bitrate/u.bitrate>i:!0),dv.set(s,n));let o=(0,Qe.default)(a,Math.round(a.length*r.indexOf(s)/(r.length+1)))??(0,Qe.default)(a,-1);return o&&(0,Nc.default)(n,o)?o:n.length?(0,Qe.default)(n,-1):(0,Qe.default)(a,0)},pv=s=>"quality"in s,yo=(s,e,t,i)=>{let r=X(i?.last?.bitrate)&&X(t?.bitrate)&&i.last.bitrate<t.bitrate?s.trackCooldownIncreaseQuality:s.trackCooldownDecreaseQuality,a=t&&i&&i.history[t.id]&&fv()-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=pv(n)?"video":"audio",u=pv(n)?n.quality:n.bitrate;return e({message:`
8
8
  [last ${o} selected] ${u}
9
- `}),n}return i?.recordSwitch(t),t},wL=(r,e)=>Math.log(e)/Math.log(r),kL=({tuning:r,container:e,limits:t,panelSize:i})=>{let a=r.containerSizeFactor;if(i)return{containerSizeLimit:i,containerSizeFactor:a};if(r.usePixelRatio&&O.display.pixelRatio){let s=O.display.pixelRatio;if(r.pixelRatioMultiplier)a*=r.pixelRatioMultiplier*(s-1)+1;else{let n=r.pixelRatioLogBase,[o=0,u=0,l=0]=r.pixelRatioLogCoefficients,c=wL(n,o*s+u)+l;Number.isFinite(c)&&(a*=c)}}return _u({highQualityLimit:r.highQualityLimit,trafficSavingLimit:r.trafficSavingLimit,limits:t})&&(a*=2),{containerSizeLimit:r.limitByContainer&&e&&e.width>0&&e.height>0?{width:e.width*a,height:e.height*a}:void 0,containerSizeFactor:a}},Ct=(r,{container:e,estimatedThroughput:t,tuning:i,limits:a,reserve:s=0,forwardBufferHealth:n,playbackRate:o,current:u,history:l,visible:c,droppedVideoMaxQualityLimit:d,stallsVideoMaxQualityLimit:p,stallsPredictedThroughput:h,abrLogger:f,panelSize:b})=>{Kb(r,Jb);let{containerSizeFactor:g,containerSizeLimit:v}=kL({container:e,tuning:i,limits:a,panelSize:b}),x=i.considerPlaybackRate&&ve(o)?o:1,T=r.filter(L=>!Gb(L.quality)).sort((L,ie)=>Qb(L.quality,ie.quality)?-1:1),w=(0,Mt.default)(T,-1)?.quality,I=(0,Mt.default)(T,0)?.quality,V=Lr({limits:a,lowestAvailableQuality:w,highestAvailableQuality:I}),B=x*Xb(n??.5,i.bitrateFactorAtEmptyBuffer,i.bitrateFactorAtFullBuffer),N={},S=T.filter(L=>{let ie=!0;if(v)if(L.size)ie=L.size.width<=v.width&&L.size.height<=v.height;else{let $=v&&EL(v);ie=$?Fu(L.quality,$):!0}if(!ie)return N[L.quality]="FitsContainer",!1;let k=h||t,U=ve(k)&&isFinite(k)&&ve(L.bitrate)?k-s>=L.bitrate*B:!0,W=_u({highQualityLimit:i.highQualityLimit,trafficSavingLimit:i.trafficSavingLimit,limits:a})&&a?.min===L.quality;if(!U&&!W)return N[L.quality]="FitsThroughput",!1;if(i.lazyQualitySwitch&&ve(i.minBufferToSwitchUp)&&u&&!Gb(u.quality)&&(n??0)<i.minBufferToSwitchUp&&Qb(L.quality,u.quality))return N[L.quality]="Buffer",!1;if(!!d&&Nu(L.quality,d)&&!W)return N[L.quality]="DroppedFramesLimit",!1;if(!!p&&Nu(L.quality,p)&&!W)return N[L.quality]="StallsLimit",!1;let Te=V||(jb(a?.max)||Fu(L.quality,a.max))&&(jb(a?.min)||Nu(L.quality,a.min)),H=ve(c)&&!c?Fu(L.quality,i.backgroundVideoQualityLimit):!0;return!Te||!H?(N[L.quality]="FitsQualityLimits",!1):!0})[0];S&&S.bitrate&&PL.next(S.bitrate);let R=S??(0,Mt.default)(T,-1)??r[0],A=l?.last,G=Zb(i,f,R,l);return ve(l)&&G.quality!==A?.quality&&f({message:`
9
+ `}),n}return i?.recordSwitch(t),t},h$=(s,e)=>Math.log(e)/Math.log(s),Sv=({tuning:s,container:e,limits:t,panelSize:i})=>{let r=s.containerSizeFactor;if(i)return{containerSizeLimit:i,containerSizeFactor:r};if(s.usePixelRatio&&F.display.pixelRatio){let a=F.display.pixelRatio;if(s.pixelRatioMultiplier)r*=s.pixelRatioMultiplier*(a-1)+1;else{let n=s.pixelRatioLogBase,[o=0,u=0,l=0]=s.pixelRatioLogCoefficients,p=h$(n,o*a+u)+l;Number.isFinite(p)&&(r*=p)}}return po(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}},hv=new WeakMap,Ot=(s,{container:e,estimatedThroughput:t,tuning:i,limits:r,reserve:a=0,forwardBufferHealth:n,playbackRate:o,current:u,history:l,visible:p,droppedVideoMaxQualityLimit:c,stallsVideoMaxQualityLimit:d,stallsPredictedThroughput:h,abrLogger:f,panelSize:b})=>{go(s,vo);let{containerSizeFactor:g,containerSizeLimit:S}=Sv({container:e,tuning:i,limits:r,panelSize:b}),T=i.considerPlaybackRate&&X(o)?o:1,v=hv.get(s);v||(v=s.filter(x=>!bo(x.quality)).sort((x,k)=>mo(x.quality,k.quality)?-1:1),hv.set(s,v));let w=(0,Qe.default)(v,-1)?.quality,P=(0,Qe.default)(v,0)?.quality,M=xr(r,P,w),O=T*So(n??.5,i.bitrateFactorAtEmptyBuffer,i.bitrateFactorAtFullBuffer),E={},R=null;for(let x of v){let k=!0;if(S)if(x.size)k=x.size.width<=S.width&&x.size.height<=S.height;else{let L=S&&mv(S);k=L?Pr(x.quality,L):!0}if(!k){E[x.quality]="FitsContainer";continue}let re=h||t,B=X(re)&&isFinite(re)&&X(x.bitrate)?re-a>=x.bitrate*O:!0,q=po(r,i.highQualityLimit,i.trafficSavingLimit)&&r?.min===x.quality;if(!B&&!q){E[x.quality]="FitsThroughput";continue}if(i.lazyQualitySwitch&&X(i.minBufferToSwitchUp)&&u&&!bo(u.quality)&&(n??0)<i.minBufferToSwitchUp&&mo(x.quality,u.quality)){E[x.quality]="Buffer";continue}if(!!c&&Er(x.quality,c)&&!q){E[x.quality]="DroppedFramesLimit";continue}if(!!d&&Er(x.quality,d)&&!q){E[x.quality]="StallsLimit";continue}let oe=M||(fo(r?.max)||Pr(x.quality,r.max))&&(fo(r?.min)||Er(x.quality,r.min)),Z=X(p)&&!p?Pr(x.quality,i.backgroundVideoQualityLimit):!0;if(!oe||!Z){E[x.quality]="FitsQualityLimits";continue}R||(R=x)}R&&R.bitrate&&gv.next(R.bitrate);let y=R??(0,Qe.default)(v,-1)??s[0],D=l?.last,I=yo(i,f,y,l);return X(l)&&I.quality!==D?.quality&&f({message:`
10
10
  [VIDEO TRACKS ABR]
11
11
  [available video tracks]
12
- ${r.map(L=>`{ id: ${L.id}, quality: ${L.quality}, bitrate: ${L.bitrate}, size: ${L.size?.width}:${L.size?.height} }`).join(`
12
+ ${s.map(x=>`{ id: ${x.id}, quality: ${x.quality}, bitrate: ${x.bitrate}, size: ${x.size?.width}:${x.size?.height} }`).join(`
13
13
  `)}
14
14
 
15
15
  [tuning]
16
- ${(0,_s.default)(i??{}).map(([L,ie])=>`${L}: ${ie}`).join(`
16
+ ${(0,qi.default)(i??{}).map(([x,k])=>`${x}: ${k}`).join(`
17
17
  `)}
18
18
 
19
19
  [limit params]
20
20
  containerSizeFactor: ${g},
21
- containerSizeLimit: ${v?.width??0} x ${v?.height??0},
21
+ containerSizeLimit: ${S?.width??0} x ${S?.height??0},
22
22
  estimatedThroughput: ${t},
23
23
  stallsPredictedThroughput: ${h},
24
- reserve: ${s},
24
+ reserve: ${a},
25
25
  playbackRate: ${o},
26
- playbackRateFactor: ${x},
26
+ playbackRateFactor: ${T},
27
27
  forwardBufferHealth: ${n},
28
- bitrateFactor: ${B},
28
+ bitrateFactor: ${O},
29
29
  minBufferToSwitchUp: ${i.minBufferToSwitchUp},
30
- droppedVideoMaxQualityLimit: ${d},
31
- stallsVideoMaxQualityLimit: ${p},
32
- limitsAreInvalid: ${V},
33
- maxQualityLimit: ${a?.max},
34
- minQualityLimit: ${a?.min},
30
+ droppedVideoMaxQualityLimit: ${c},
31
+ stallsVideoMaxQualityLimit: ${d},
32
+ limitsAreInvalid: ${M},
33
+ maxQualityLimit: ${r?.max},
34
+ minQualityLimit: ${r?.min},
35
35
 
36
36
  [limited video tracks]
37
- ${(0,_s.default)(N).map(([L,ie])=>`${L}: ${ie}`).join(`
37
+ ${(0,qi.default)(E).map(([x,k])=>`${x}: ${k}`).join(`
38
38
  `)||"All tracks are available"}
39
39
 
40
- [best video track] ${S?.quality}
41
- [selected video track] ${G?.quality}
42
- `}),G},eg=(r,e,t,{estimatedThroughput:i,tuning:a,playbackRate:s,forwardBufferHealth:n,history:o,abrLogger:u,stallsPredictedThroughput:l})=>{Kb(t,Jb);let c=a.considerPlaybackRate&&ve(s)?s:1,d=[...t].sort(qu(-1)),p=r.bitrate;xL(p);let h=c*Xb(n??.5,a.bitrateAudioFactorAtEmptyBuffer,a.bitrateAudioFactorAtFullBuffer),f,b=Ns(r,e,t,a.minVideoAudioRatio),g=l||i;ve(g)&&isFinite(g)&&(f=d.find(T=>ve(T.bitrate)&&ve(b?.bitrate)?g-p>=T.bitrate*h&&T.bitrate>=b.bitrate:!1)),f||(f=b);let v=o?.last,x=f&&Zb(a,u,f,o);return ve(o)&&x?.bitrate!==v?.bitrate&&u({message:`
40
+ [best video track] ${R?.quality}
41
+ [selected video track] ${I?.quality}
42
+ `}),I},To=(s,{container:e,estimatedThroughput:t,tuning:i,limits:r,reserve:a=0,forwardBufferHealth:n,playbackRate:o,current:u,history:l,visible:p,droppedVideoMaxQualityLimit:c,stallsVideoMaxQualityLimit:d,stallsPredictedThroughput:h,abrLogger:f,panelSize:b})=>{go(s,vo);let{containerSizeFactor:g,containerSizeLimit:S}=Sv({container:e,tuning:i,limits:r,panelSize:b}),T=i.considerPlaybackRate&&X(o)?o:1,v=s.filter(k=>!bo(k.quality)).sort((k,re)=>mo(k.quality,re.quality)?-1:1),w=(0,Qe.default)(v,-1)?.quality,P=(0,Qe.default)(v,0)?.quality,M=xr(r,w,P),O=T*So(n??.5,i.bitrateFactorAtEmptyBuffer,i.bitrateFactorAtFullBuffer),E={},y=v.filter(k=>{let re=!0;if(S)if(k.size)re=k.size.width<=S.width&&k.size.height<=S.height;else{let V=S&&mv(S);re=V?Pr(k.quality,V):!0}if(!re)return E[k.quality]="FitsContainer",!1;let B=h||t,q=X(B)&&isFinite(B)&&X(k.bitrate)?B-a>=k.bitrate*O:!0,K=po(r,i.highQualityLimit,i.trafficSavingLimit)&&r?.min===k.quality;if(!q&&!K)return E[k.quality]="FitsThroughput",!1;if(i.lazyQualitySwitch&&X(i.minBufferToSwitchUp)&&u&&!bo(u.quality)&&(n??0)<i.minBufferToSwitchUp&&mo(k.quality,u.quality))return E[k.quality]="Buffer",!1;if(!!c&&Er(k.quality,c)&&!K)return E[k.quality]="DroppedFramesLimit",!1;if(!!d&&Er(k.quality,d)&&!K)return E[k.quality]="StallsLimit",!1;let Z=M||(fo(r?.max)||Pr(k.quality,r.max))&&(fo(r?.min)||Er(k.quality,r.min)),L=X(p)&&!p?Pr(k.quality,i.backgroundVideoQualityLimit):!0;return!Z||!L?(E[k.quality]="FitsQualityLimits",!1):!0})[0];y&&y.bitrate&&gv.next(y.bitrate);let D=y??(0,Qe.default)(v,-1)??s[0],I=l?.last,x=yo(i,f,D,l);return X(l)&&x.quality!==I?.quality&&f({message:`
43
+ [VIDEO TRACKS ABR]
44
+ [available video tracks]
45
+ ${s.map(k=>`{ id: ${k.id}, quality: ${k.quality}, bitrate: ${k.bitrate}, size: ${k.size?.width}:${k.size?.height} }`).join(`
46
+ `)}
47
+
48
+ [tuning]
49
+ ${(0,qi.default)(i??{}).map(([k,re])=>`${k}: ${re}`).join(`
50
+ `)}
51
+
52
+ [limit params]
53
+ containerSizeFactor: ${g},
54
+ containerSizeLimit: ${S?.width??0} x ${S?.height??0},
55
+ estimatedThroughput: ${t},
56
+ stallsPredictedThroughput: ${h},
57
+ reserve: ${a},
58
+ playbackRate: ${o},
59
+ playbackRateFactor: ${T},
60
+ forwardBufferHealth: ${n},
61
+ bitrateFactor: ${O},
62
+ minBufferToSwitchUp: ${i.minBufferToSwitchUp},
63
+ droppedVideoMaxQualityLimit: ${c},
64
+ stallsVideoMaxQualityLimit: ${d},
65
+ limitsAreInvalid: ${M},
66
+ maxQualityLimit: ${r?.max},
67
+ minQualityLimit: ${r?.min},
68
+
69
+ [limited video tracks]
70
+ ${(0,qi.default)(E).map(([k,re])=>`${k}: ${re}`).join(`
71
+ `)||"All tracks are available"}
72
+
73
+ [best video track] ${y?.quality}
74
+ [selected video track] ${x?.quality}
75
+ `}),x},Io=(s,e,t,{estimatedThroughput:i,tuning:r,playbackRate:a,forwardBufferHealth:n,history:o,abrLogger:u,stallsPredictedThroughput:l})=>{go(t,vo);let p=r.considerPlaybackRate&&X(a)?a:1,c=[...t].sort(wr(-1)),d=s.bitrate;bv(d);let h=p*So(n??.5,r.bitrateAudioFactorAtEmptyBuffer,r.bitrateAudioFactorAtFullBuffer),f,b=Rs(s,e,t,r.minVideoAudioRatio),g=l||i;X(g)&&isFinite(g)&&(f=c.find(v=>X(v.bitrate)&&X(b?.bitrate)?g-d>=v.bitrate*h&&v.bitrate>=b.bitrate:!1)),f||(f=b);let S=o?.last,T=f&&yo(r,u,f,o);return X(o)&&T?.bitrate!==S?.bitrate&&u({message:`
43
76
  [AUDIO TRACKS ABR]
44
77
  [available audio tracks]
45
- ${t.map(T=>`{ id: ${T.id}, bitrate: ${T.bitrate} }`).join(`
78
+ ${t.map(v=>`{ id: ${v.id}, bitrate: ${v.bitrate} }`).join(`
46
79
  `)}
47
80
 
48
81
  [tuning]
49
- ${(0,_s.default)(a??{}).map(([T,w])=>`${T}: ${w}`).join(`
82
+ ${(0,qi.default)(r??{}).map(([v,w])=>`${v}: ${w}`).join(`
50
83
  `)}
51
84
 
52
85
  [limit params]
53
86
  estimatedThroughput: ${i},
54
87
  stallsPredictedThroughput: ${l},
55
- reserve: ${p},
56
- playbackRate: ${s},
57
- playbackRateFactor: ${c},
88
+ reserve: ${d},
89
+ playbackRate: ${a},
90
+ playbackRateFactor: ${p},
58
91
  forwardBufferHealth: ${n},
59
92
  bitrateFactor: ${h},
60
- minBufferToSwitchUp: ${a.minBufferToSwitchUp},
93
+ minBufferToSwitchUp: ${r.minBufferToSwitchUp},
61
94
 
62
- [selected audio track] ${x?.id}
63
- `}),x};var oe=r=>new URL(r).hostname;import{assertNever as dg,assertNonNullable as pg,combine as YL,debounce as zL,ErrorCategory as hg,filter as mg,filterChanged as KL,isNonNullable as Gu,map as js,merge as fg,observableFrom as XL,once as JL,Subscription as ZL,ValueSubject as Wu,videoQualityToHeight as bg,videoSizeToQuality as eR}from"@vkontakte/videoplayer-shared";var og=M($t(),1);var ig=M(Ne(),1),tg=r=>{if(r instanceof DOMException&&(0,ig.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"))},Ae=async(r,e)=>{let t=r.muted;try{await r.play()}catch(i){if(!tg(i))return!1;if(e&&e(),t)return console.warn(i),!1;r.muted=!0;try{await r.play()}catch(a){return tg(a)&&(r.muted=!1,console.warn(a)),!1}}return!0};import{isNonNullable as qs,isNullable as RL,assertNonNullable as Cr}from"@vkontakte/videoplayer-shared";var ag=M(Vi(),1);import{isNonNullable as rg,assertNonNullable as Fs,now as AL}from"@vkontakte/videoplayer-shared";function ue(){return AL()}function Uu(r){return ue()-r}function Hu(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 sg(r,e,t){let i=(...a)=>{t.apply(null,a),r.removeEventListener(e,i)};r.addEventListener(e,i)}function Oi(r,e,t,i){let a=window.XMLHttpRequest,s,n,o,u=!1,l=0,c,d,p=!1,h="arraybuffer",f=7e3,b=2e3,g=()=>{if(u)return;Fs(c);let A=Uu(c),G;if(A<b){G=b-A,setTimeout(g,G);return}b*=2,b>f&&(b=f),n&&n.abort(),n=new a,V()},v=A=>(s=A,R),x=A=>(d=A,R),T=()=>(h="json",R),w=()=>{if(!u){if(--l>=0){g(),i&&i();return}u=!0,d&&d(),t&&t()}},I=A=>(p=A,R),V=()=>{c=ue(),n=new a,n.open("get",r);let A=0,G,L=0,ie=()=>(Fs(c),Math.max(c,Math.max(G||0,L||0)));if(s&&n.addEventListener("progress",k=>{let U=ue();s.updateChunk&&k.loaded>A&&(s.updateChunk(ie(),k.loaded-A),A=k.loaded,G=U)}),o&&(n.timeout=o,n.addEventListener("timeout",()=>w())),n.addEventListener("load",()=>{if(u)return;Fs(n);let k=n.status;if(k>=200&&k<300){let{response:U,responseType:W}=n,J=U?.byteLength;if(typeof J=="number"&&s){let ae=J-A;ae&&s.updateChunk&&s.updateChunk(ie(),ae)}W==="json"&&(!U||!(0,ag.default)(U).length)?w():(d&&d(),e(U))}else w()}),n.addEventListener("error",()=>{w()}),p){let k=()=>{Fs(n),n.readyState===XMLHttpRequest.HEADERS_RECEIVED&&(L=ue(),n.removeEventListener("readystatechange",k))};n.addEventListener("readystatechange",k)}return n.responseType=h,n.send(),R},R={withBitrateReporting:v,withParallel:I,withJSONResponse:T,withRetryCount:A=>(l=A,R),withRetryInterval:(A,G)=>(rg(A)&&(b=A),rg(G)&&(f=G),R),withTimeout:A=>(o=A,R),withFinally:x,send:V,abort:()=>{n&&(n.abort(),n=void 0),u=!0,d&&d()}};return R}var $r=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 ng=M(Vi(),1);var Mr=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=ue(),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=ue()-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=Oi(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=ue()}_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=ue();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,ng.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}};import{Subject as $L}from"@vkontakte/videoplayer-shared";var Us=1e4,ju=3;var ML=6e4,CL=10,DL=1,VL=500,Dr=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 $L,this.chunkRateEstimator=new $r(this.params.logger),this._initVideo()}attachSource(e){this.manifestUrl=e,this.urlResolver=Hu(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=Hu(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*(O.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||{};!Hb({limits:this.autoQualityLimits,highestAvailableHeight:this.manifest[0].video.height,lowestAvailableHeight:(0,og.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||qs(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=()=>{sg(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 Mr(ju,Us,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,c=!1,d=()=>{let w=s&&(!c||c===this.rep);return w||t("Not running!"),w},p=(w,I,V)=>{u&&u.abort(),u=Oi(this.urlResolver.resolve(w,!1),I,V,()=>this._retryCallback()).withTimeout(Us).withBitrateReporting(this.bitrateSwitcher).withRetryCount(ju).withFinally(()=>{u=null}).send()},h=(w,I,V)=>{Cr(this.filesFetcher),o?.abort(),o=this.filesFetcher.requestData(this.urlResolver.resolve(w,!1),I,V,()=>this._retryCallback()).withFinally(()=>{o=null}).send()},f=w=>{let I=i.playbackRate;i.playbackRate!==w&&(t(`Playback rate switch: ${I}=>${w}`),i.playbackRate=w)},b=w=>{this.lowLatency=w,t(`lowLatency changed to ${w}`),g()},g=()=>{if(!this.lowLatency&&!this.params.config.isLiveCatchUpMode)f(1);else{let w=this._getBufferSizeSec();if(this.bufferStates.length<5){f(1);return}let V=ue()-1e4,B=0;for(let _=0;_<this.bufferStates.length;_++){let S=this.bufferStates[_];w=Math.min(w,S.buf),S.ts<V&&B++}this.bufferStates.splice(0,B),t(`update playback rate; minBuffer=${w} drop=${B} jitter=${this.sourceJitter}`);let N=w-DL;this.sourceJitter>=0?N-=this.sourceJitter/2:this.sourceJitter-=1,N>3?f(1.15):N>1?f(1.1):N>.3?f(1.05):f(1)}},v=w=>{let I,V=()=>I&&I.start?I.start.length:0,B=k=>I.start[k]/1e3,N=k=>I.dur[k]/1e3,_=k=>I.fragIndex+k,S=(k,U)=>({chunkIdx:_(k),startTS:B(k),dur:N(k),discontinuity:U}),R=()=>{let k=0;if(I&&I.dur){let U=this.lowLatency?this.params.config.lowLatencyMinBuffer:this.params.config.minBuffer,W=this.lowLatency?this.params.config.lowLatencyMinBufferSegments:this.params.config.minBufferSegments,J=U;this.sourceJitter>1&&(J+=this.sourceJitter-1);let ae=I.dur.length-1;for(;ae>=0&&(J-=I.dur[ae],!(J<=0));--ae);k=Math.min(ae,I.dur.length-1-W),k=Math.max(k,0)}return S(k,!0)},A=k=>{let U=V();if(!(U<=0)){if(qs(k)){for(let W=0;W<U;W++)if(B(W)>k)return S(W)}return R()}},G=k=>{let U=V(),W=k?k.chunkIdx+1:0,J=W-I.fragIndex;if(!(U<=0)){if(!k||J<0||J-U>CL)return t(`Resync: offset=${J} bChunks=${U} chunk=`+JSON.stringify(k)),R();if(!(J>=U))return S(W-I.fragIndex,!1)}},L=(k,U,W)=>{l&&l.abort(),l=Oi(this.urlResolver.resolve(k,!0,this.lowLatency),U,W,()=>this._retryCallback()).withTimeout(Us).withRetryCount(ju).withFinally(()=>{l=null}).withJSONResponse().send()};return{seek:(k,U)=>{L(w,W=>{if(!d())return;I=W;let J=!!I.lowLatency;J!==this.lowLatency&&b(J);let ae=0;for(let ye=0;ye<I.dur.length;++ye)ae+=I.dur[ye];ae>0&&(Cr(this.filesFetcher),this.filesFetcher.optimizeForSegDuration(ae/I.dur.length)),a({name:"index",zeroTime:I.zeroTime,shiftDuration:I.shiftDuration}),this.sourceJitter=I.hasOwnProperty("jitter")?Math.min(10,Math.max(.01,I.jitter/1e3)):1,k(A(U))},()=>this._handleNetworkError())},nextChunk:G}},x=()=>{s=!1,o&&o.abort(),u&&u.abort(),l&&l.abort(),Cr(this.filesFetcher),this.filesFetcher.abortAll()};return c={start:w=>{let{videoElement:I,logger:V}=this.params,B=v(e.jidxUrl),N,_,S,R,A=0,G,L,ie,k=()=>{G&&(clearTimeout(G),G=void 0);let $=Math.max(VL,1e3*(this._getBufferSizeSec()-this.sourceJitter-5)),Ie=A+$,fe=ue(),se=Math.min(1e4,Ie-fe);A=fe;let Oe=()=>{l||d()&&B.seek(()=>{d()&&(A=ue(),U(),k())})};se>0?G=window.setTimeout(()=>{this.paused?k():Oe()},se):Oe()},U=()=>{let $;for(;$=B.nextChunk(R);)R=$,Te($);let Ie=B.nextChunk(S);if(Ie){if(S&&Ie.discontinuity){V("Detected discontinuity; restarting playback"),this.paused?k():(x(),this._initPlayerWith(e));return}ye(Ie)}else k()},W=($,Ie)=>{if(!d()||!this.sourceBuffer)return;let fe,se,Oe,yt=Ze=>{window.setTimeout(()=>{d()&&W($,Ie)},Ze)};if(this.sourceBuffer.updating)V("Source buffer is updating; delaying appendBuffer"),yt(100);else{let Ze=ue(),Re=I.currentTime;!this.paused&&I.buffered.length>1&&L===Re&&Ze-ie>500&&(V("Stall suspected; trying to fix"),this._fixupStall()),L!==Re&&(L=Re,ie=Ze);let Tt=this._getBufferSizeSec();if(Tt>30)V(`Buffered ${Tt} seconds; delaying appendBuffer`),yt(2e3);else try{this.sourceBuffer.appendBuffer($),this.videoPlayStarted?(this.bufferStates.push({ts:Ze,buf:Tt}),g(),this.bufferStates.length>200&&this.bufferStates.shift()):this.shouldPlay()&&(this.videoPlayStarted=!0,this._playVideoElement()),Ie&&Ie()}catch(et){if(et.name==="QuotaExceededError")V("QuotaExceededError; delaying appendBuffer"),Oe=this.sourceBuffer.buffered.length,Oe!==0&&(fe=this.sourceBuffer.buffered.start(0),se=Re,se-fe>4&&this.sourceBuffer.remove(fe,se-3)),yt(1e3);else throw et}}},J=()=>{_&&N&&(V([`Appending chunk, sz=${_.byteLength}:`,JSON.stringify(S)]),W(_,function(){_=null,U()}))},ae=$=>e.fragUrlTemplate.replace("%%id%%",$.chunkIdx),ye=$=>{d()&&h(ae($),(Ie,fe)=>{if(d()){if(fe/=1e3,_=Ie,S=$,n=$.startTS,fe){let se=Math.min(10,$.dur/fe);this.downloadRate=this.downloadRate?(1-.3)*this.downloadRate+.3*se:se}J()}},()=>this._handleNetworkError())},Te=$=>{d()&&(Cr(this.filesFetcher),this.filesFetcher.prefetch(this.urlResolver.resolve(ae($),!1)))},H=$=>{d()&&(e.cachedHeader=$,W($,()=>{N=!0,J()}))};s=!0,B.seek($=>{if(d()){if(A=ue(),!$){k();return}R=$,!RL(w)||$.startTS>w?ye($):(S=$,U())}},w),e.cachedHeader?H(e.cachedHeader):p(e.headerUrl,H,()=>this._handleNetworkError())},stop:x,getTimestampSec:()=>n},c}_switchToQuality(e){let{logger:t,playerCallback:i}=this.params,a;e.bitrate!==this.bitrate&&(this.rep&&(a=this.rep.getTimestampSec(),qs(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,Cr(this.bitrateSwitcher),this.bitrateSwitcher.notifySwitch(this.bitrate),this.rep.start(a),i({name:"qualitySwitch",quality:e}))}_qualityAvailable(e){return qs(this.manifest.find(t=>t.name===e))}_initBitrateSwitcher(){let{logger:e,playerCallback:t}=this.params,i=d=>{if(!this.autoQuality)return;let p,h,f;if(this.currentManifestEntry&&this._qualityAvailable(this.currentManifestEntry.name)&&d<this.bitrate&&(h=this._getBufferSizeSec(),f=d/this.bitrate,h>10&&f>.8||h>15&&f>.5||h>20&&f>.3)){e(`Not switching: buffer=${Math.floor(h)}; bitrate=${this.bitrate}; newRate=${Math.floor(d)}`);return}p=this._selectQuality(d),p?this._switchToQuality(p):e(`Could not find quality by bitrate ${d}`)},s={updateChunk:(p,h)=>{let f=ue();if(this.chunkRateEstimator.addInterval(p,f,h)){let g=this.chunkRateEstimator.getBitRate();return t({name:"bandwidth",size:h,duration:f-p,speed:g}),!0}},get:()=>{let p=this.chunkRateEstimator.getBitRate();return p?p*.85:0}},n=-1/0,o,u=!0,l=()=>{let d=s.get();if(d&&o&&this.autoQuality){if(u&&d>o&&Uu(n)<3e4)return;i(d)}u=this.autoQuality};return{updateChunk:(d,p)=>{let h=s.updateChunk(d,p);return h&&l(),h},notifySwitch:d=>{let p=ue();d<o&&(n=p),o=d}}}_fetchManifest(e,t,i){this.manifestRequest=Oi(this.urlResolver.resolve(e,!0),t,i,()=>this._retryCallback()).withJSONResponse().withTimeout(Us).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;Ae(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))},ML))}_initManifest(){this._fetchManifest(this.manifestUrl,e=>{this.destroyed||(this._handleManifestUpdate(e),this._refetchManifest(this.manifestUrl))},()=>this._handleNetworkError())}};var cg=M(xi(),1);import{debounce as BL,filter as ug,fromEvent as OL,interval as _L,isHigher as NL,isInvariantQuality as FL,isLower as qL,merge as UL,Subject as lg,Subscription as HL}from"@vkontakte/videoplayer-shared";var Qu=class{constructor(){this.onDroopedVideoFramesLimit$=new lg;this.subscription=new HL;this.playing=!1;this.tracks=[];this.forceChecker$=new lg;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&&!FL(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&&NL(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(OL(this.video,"resize").subscribe(this.handleChangeVideoQuality));let e=_L(this.droppedFramesChecker.checkTime).pipe(ug(()=>this.playing),ug(()=>{let a=!!this.isForceCheckCounter;return a&&(this.isForceCheckCounter-=1),!a})),t=this.forceChecker$.pipe(BL(this.droppedFramesChecker.checkTime)),i=UL(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,cg.default)(this.limitCounts).filter(([,i])=>i>=this.droppedFramesChecker.countLimit).sort(([i],[a])=>qL(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}},Hs=Qu;import{map as jL,Observable as QL}from"@vkontakte/videoplayer-shared";import{fromEvent as GL}from"@vkontakte/videoplayer-shared";var Vr=()=>!!window.documentPictureInPicture?.window||!!document.pictureInPictureElement;var WL=(r,e)=>new QL(t=>{if(!window.IntersectionObserver)return;let i={root:null},a=new IntersectionObserver((n,o)=>{n.forEach(u=>t.next(u.isIntersecting||Vr()))},{...i,...e});a.observe(r);let s=GL(document,"visibilitychange").pipe(jL(n=>!document.hidden||Vr())).subscribe(n=>t.next(n));return()=>{a.unobserve(r),s.unsubscribe()}}),Ue=WL;var tR=["paused","playing","ready"],iR=["paused","playing","ready"],Br=class{constructor(e){this.subscription=new ZL;this.videoState=new C("stopped");this.representations$=new Wu([]);this.droppedFramesManager=new Hs;this.maxSeekBackTime$=new Wu(1/0);this.zeroTime$=new Wu(void 0);this.liveOffset=new ti;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:hg.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=Rt(a.name)??eR(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),Gu(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,Yu.default)(iR,e)&&(n||o)){this.prepare();return}if(a?.to!=="paused"&&s.state==="requested"&&(0,Yu.default)(tR,e)){this.seek(s.position-this.liveOffset.getTotalPausedTime());return}switch(e){case"stopped":this.videoState.startTransitionTo("manifest_ready"),this.dash.attachSource(pe(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(pe(this.params.source.url,u))}return;default:return dg(e)}};this.textTracksManager=new qe(e.source.url),this.params=e,this.log=this.params.dependencies.logger.createComponentLog("DashLiveProvider");let t=a=>{e.output.error$.next({id:"DashLiveProvider",category:hg.WTF,message:"DashLiveProvider internal logic error",thrown:a})};this.subscription.add(fg(this.videoState.stateChangeStarted$.pipe(js(a=>({transition:a,type:"start"}))),this.videoState.stateChangeEnded$.pipe(js(a=>({transition:a,type:"end"})))).subscribe(({transition:a,type:s})=>{this.log({message:`[videoState change] ${s}: ${JSON.stringify(a)}`})})),this.video=Ee(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(oe(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=ke(this.video);this.subscription.add(()=>i.destroy()),this.subscription.add(this.representations$.pipe(js(a=>a.map(({track:s})=>s)),mg(a=>!!a.length),JL()).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(KL(),js(a=>-a/1e3)).subscribe(this.params.output.duration$)).add(YL({zeroTime:this.zeroTime$.pipe(mg(Gu)),position:i.timeUpdate$}).subscribe(({zeroTime:a,position:s})=>this.params.output.liveTime$.next(a+s*1e3),t)).add(st(this.video,this.params.desiredState.isLooped,t)).add(Pe(this.video,this.params.desiredState.volume,i.volumeState$,t)).add(i.volumeState$.subscribe(this.params.output.volume$,t)).add(Fe(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(Ue(this.video).subscribe(this.params.output.elementVisible$)).add(this.params.desiredState.autoVideoTrackLimits.stateChangeStarted$.subscribe(({to:{max:a,min:s}})=>{this.dash.setAutoQualityLimits({max:a&&bg(a),min:s&&bg(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 dg(a.to)}},t)).add(fg(e.desiredState.playbackState.stateChangeStarted$,e.desiredState.seekState.stateChangeEnded$,e.desiredState.videoTrack.stateChangeStarted$,e.desiredState.autoVideoTrackSwitching.stateChangeStarted$,this.videoState.stateChangeEnded$,this.droppedFramesManager.onDroopedVideoFramesLimit$,XL(["init"])).pipe(zL(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 Dr({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&&Gu(t)?t:Ct(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:c})=>c.id===s)?.representation;pg(l,"Representations missing"),this.dash.startPlay(l,i)}}setVideoTrack(e){let t=this.representations$.getValue().find(({track:i})=>i.id===e.id)?.representation;pg(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(pe(this.params.source.url,n)),a&&this.dash.pause(),this.liveOffset.resetTo(n,a)}};var gg=Br;var NS=M(Ne(),1);var _i=(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)};import{assertNever as OM,assertNonNullable as _M,debounce as NM,ErrorCategory as BS,filter as Vl,filterChanged as xa,fromEvent as FM,isNonNullable as OS,map as Bl,merge as pn,observableFrom as Ol,once as _S,Subscription as qM}from"@vkontakte/videoplayer-shared";var Qs=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}},Ni=class extends Qs{constructor(){super(),this.listeners||Qs.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)}},Or=class{constructor(){Object.defineProperty(this,"signal",{value:new Ni,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&&(Or.prototype[Symbol.toStringTag]="AbortController",Ni.prototype[Symbol.toStringTag]="AbortSignal");function Gs(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 zu(r){typeof r=="function"&&(r={fetch:r});let{fetch:e,Request:t=e.Request,AbortController:i,__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL:a=!1}=r;if(!Gs({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,c){let d;c&&c.signal&&(d=c.signal,delete c.signal);let p=new t(l,c);return d&&Object.defineProperty(p,"signal",{writable:!1,enumerable:!1,configurable:!0,value:d}),p},s.prototype=t.prototype);let n=e;return{fetch:(u,l)=>{let c=s&&s.prototype.isPrototypeOf(u)?u.signal:l?l.signal:void 0;if(c){let d;try{d=new DOMException("Aborted","AbortError")}catch{d=new Error("Aborted"),d.name="AbortError"}if(c.aborted)return Promise.reject(d);let p=new Promise((h,f)=>{c.addEventListener("abort",()=>f(d),{once:!0})});return l&&l.signal&&delete l.signal,Promise.race([p,n(u,l)])}return n(u,l)},Request:s}}var _r=Gs({fetch:window.fetch,Request:window.Request,AbortController:window.AbortController}),vg=_r?zu({fetch:window.fetch,Request:window.Request,AbortController:window.AbortController}):void 0,ot=_r?vg.fetch:window.fetch,iF=_r?vg.Request:window.Request,he=_r?Or:window.AbortController,rF=_r?Ni:window.AbortSignal;var $l=M(Xu(),1);var av=M(rv(),1);import{ErrorCategory as Fr}from"@vkontakte/videoplayer-shared";var sv=r=>{if(!r)return{id:"EmptyResponse",category:Fr.PARSER,message:"Empty response"};if(r.length<=2&&r.match(/^\d+$/))return{id:`UVError#${r}`,category:Fr.NETWORK,message:`UV Error ${r}`};let e=(0,av.default)(r).substring(0,100).toLowerCase();if(e.startsWith("<!doctype")||e.startsWith("<html>")||e.startsWith("<body>")||e.startsWith("<head>"))return{id:"UnexpectedHTML",category:Fr.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:Fr.PARSER,message:"XML parsing error"}:{id:"XMLParserLogicError",category:Fr.PARSER,message:"Response is valid XML, but parser failed"}};var Dt=(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};import{abortable as Al,assertNonNullable as Qi,combine as Gi,ErrorCategory as ut,filter as sn,filterChanged as Ta,flattenObject as Ia,fromEvent as vt,getTraceSubscriptionMethod as SM,interval as Ll,isNonNullable as Ea,isNullable as LS,map as Wi,merge as oi,now as Rl,Subject as nn,Subscription as RS,tap as yM,throttle as TM,ValueSubject as K}from"@vkontakte/videoplayer-shared";var Ys=M(Ne(),1),Hi=M($t(),1),zs=M(Xu(),1);var qR=(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)},UR=r=>window.clearTimeout(r),nv=r=>typeof r=="function"&&r?.toString().endsWith("{ [native code] }"),ov=!nv(window.requestIdleCallback)||!nv(window.cancelIdleCallback),il=ov?qR:window.requestIdleCallback,qr=ov?UR:window.cancelIdleCallback;var bS=M(ws(),1);import{assertNever as HR,ErrorCategory as uv,Subject as lv}from"@vkontakte/videoplayer-shared";var jR=18,cv=!1;try{cv=O.browser.isSafari&&!!O.browser.safariVersion&&O.browser.safariVersion<=jR}catch(r){console.error(r)}var rl=class{constructor(e){this.bufferFull$=new lv;this.error$=new lv;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:uv.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)};cv&&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:uv.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:HR(t)}}},dv=rl;var al=r=>{let e=0;for(let t=0;t<r.length;t++)e+=r.end(t)-r.start(t);return e*1e3};import{abortable as Bt,assertNonNullable as Le,ErrorCategory as gt,fromEvent as Tl,getExponentialDelay as Il,isNonNullable as Ui,isNullable as me,now as Ws,once as nM,Subject as oM,Subscription as uM,ValueSubject as ai}from"@vkontakte/videoplayer-shared";var F=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 Fi=class extends F{};var Ur=class extends F{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 Hr=class extends F{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 jr=class extends F{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var z=class extends F{constructor(e,t){super(e,t);let i=this.readUint32();this.version=i>>>24,this.flags=i&16777215}};var Qr=class extends z{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 Gr=class extends F{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Wr=class extends F{constructor(e,t){super(e,t),this.data=this.content}};var ii=class extends z{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 Yr=class extends F{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var zr=class extends F{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Kr=class extends z{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 Xr=class extends z{constructor(e,t){super(e,t),this.poseYawDegrees=this.readUint32(),this.posePitchDegrees=this.readUint32(),this.poseRollDegrees=this.readUint32()}};var Jr=class extends z{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 F{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var ea=class extends z{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 ta=class extends F{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var ia=class extends F{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var ra=class extends z{constructor(e,t){super(e,t),this.sequenceNumber=this.readUint32()}};var aa=class extends F{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var sa=class extends z{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 na=class extends z{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 oa=class extends z{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 ua=class extends F{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var la=class extends z{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 ca=class extends F{constructor(e,t){super(e,t),this.children=this.scanForBoxes(new DataView(this.content.buffer,this.content.byteOffset+78,this.content.byteLength-78))}};var GR={ftyp:Hr,moov:jr,mvhd:Qr,moof:Gr,mdat:Wr,sidx:ii,trak:Yr,mdia:Zr,mfhd:ra,tkhd:ea,traf:aa,tfhd:sa,tfdt:na,trun:oa,minf:ta,sv3d:zr,st3d:Kr,prhd:Xr,proj:ia,equi:Jr,uuid:Ur,stbl:ua,stsd:la,avc1:ca,unknown:Fi},ft=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=GR[e];return i?new i(t,new r):new Fi(t,new r)}};var Vt=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 YR=new TextDecoder("ascii"),zR=r=>YR.decode(new DataView(r.buffer,r.byteOffset+4,4))==="ftyp",KR=r=>{let e=new ii(r,new ft),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})},XR=(r,e)=>{let i=new ft().parse(r),a=new Vt(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,d=u.source.byteOffset-o.source.byteOffset+u.size;return new DataView(r.buffer,l,d)},JR=r=>{let t=new ft().parse(r),i=new Vt(t),a={},s=i.findAll("uuid");return s.length?s[s.length-1]:a},ZR=r=>{let t=new ft().parse(r);return new Vt(t).find("sidx")?.timescale},e$=(r,e)=>{let i=new ft().parse(r),s=new Vt(i).findAll("traf"),n=s[s.length-1].children.find(d=>d.type==="tfhd"),o=s[s.length-1].children.find(d=>d.type==="tfdt"),u=s[s.length-1].children.find(d=>d.type==="trun"),l=0;return u.sampleDuration.length?l=u.sampleDuration.reduce((d,p)=>d+p,0):l=n.defaultSampleDuration*u.sampleCount,(Number(o.baseMediaDecodeTime)+l)/e*1e3},t$=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 ft().parse(r),a=new Vt(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},pv={validateData:zR,parseInit:t$,getIndexRange:()=>{},parseSegments:KR,parseFeedableSegmentChunk:XR,getChunkEndTime:e$,getServerLatencyTimestamps:JR,getTimescaleFromIndex:ZR};var pa=M(Ne(),1);import{assertNonNullable as nl,isNonNullable as bv,isNullable as r$}from"@vkontakte/videoplayer-shared";import{assertNever as i$}from"@vkontakte/videoplayer-shared";var hv={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"}},mv=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=da(r,t),a=i in hv,s=a?hv[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,c=da(u),d=l*2**((o-1)*8)+c,p=t+o,h;return p+d>r.byteLength?h=new DataView(r.buffer,r.byteOffset+p):h=new DataView(r.buffer,r.byteOffset+p,d),{tag:a?i:"0x"+i.toString(16).toUpperCase(),type:s,tagHeaderSize:p,tagSize:p+d,value:h,valueSize:d}},da=(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},Xe=(r,e)=>{switch(e){case"int":return r.getInt8(0);case"uint":return da(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:i$(e)}},ri=(r,e)=>{let t=0;for(;t<r.byteLength;){let i=new DataView(r.buffer,r.byteOffset+t),a=mv(i);if(!e(a))return;a.type==="master"&&ri(a.value,e),t=a.value.byteOffset-r.byteOffset+a.valueSize}},fv=r=>{if(r.getUint32(0)!==440786851)return!1;let e,t,i,a=mv(r);return ri(a.value,({tag:s,type:n,value:o})=>(s===17143?e=Xe(o,n):s===17026?t=Xe(o,n):s===17029&&(i=Xe(o,n)),!0)),(e===void 0||e<=1)&&t!==void 0&&t==="webm"&&(i===void 0||i<=2)};var gv=[357149030,290298740,374648427,174,224,30320,30321,30322,272869232,524531317,475249515,423732329,307544935],a$=[231,22612,22743,167,171,163,160,175],s$=r=>{let e,t,i,a,s=!1,n=!1,o=!1,u,l,c=!1,d=0;return ri(r,({tag:p,type:h,value:f,valueSize:b})=>{if(p===21419){let g=Xe(f,h);l=da(g)}else p!==21420&&(l=void 0);return p===408125543?(e=f.byteOffset,t=f.byteOffset+b):p===357149030?s=!0:p===290298740?n=!0:p===2807729?i=Xe(f,h):p===17545?a=Xe(f,h):p===21420&&l===475249515?u=Xe(f,h):p===374648427?ri(f,({tag:g,type:v,value:x})=>g===30321?(c=Xe(x,v)===1,!1):!0):s&&n&&(0,pa.default)(gv,p)&&(o=!0),!o}),nl(e,"Failed to parse webm Segment start"),nl(t,"Failed to parse webm Segment end"),nl(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:c,stereoMode:d,projectionType:1,projectionData:{pose:{yaw:0,pitch:0,roll:0},bounds:{top:0,bottom:0,left:0,right:0}}}},n$=r=>{if(r$(r.cuesSeekPosition))return;let e=r.segmentStart+r.cuesSeekPosition,t=1024*1024;return{from:e,to:e+t}},o$=(r,e)=>{let t=!1,i=!1,a=o=>bv(o.time)&&bv(o.position),s=[],n;return ri(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=Xe(l,u));break;case 183:break;case 241:n&&(n.position=Xe(l,u));break;default:t&&(0,pa.default)(gv,o)&&(i=!0)}return!(t&&i)}),n&&a(n)&&s.push(n),s.map((o,u)=>{let{time:l,position:c}=o,d=s[u+1];return{status:"none",time:{from:l,to:d?d.time:e.segmentDuration},byte:{from:e.segmentStart+c,to:d?e.segmentStart+d.position-1:e.segmentEnd-1}}})},u$=r=>{let e=0,t=!1;try{ri(r,i=>i.tag===524531317?i.tagSize<=r.byteLength?(e=i.tagSize,!1):(e+=i.tagHeaderSize,!0):(0,pa.default)(a$,i.tag)?(e+i.tagSize<=r.byteLength&&(e+=i.tagSize,t||=(0,pa.default)([163,160,175],i.tag)),!0):!1)}catch{}return e>0&&e<=r.byteLength&&t?new DataView(r.buffer,r.byteOffset,e):null},vv={validateData:fv,parseInit:s$,getIndexRange:n$,parseSegments:o$,parseFeedableSegmentChunk:u$};var ha=r=>{let e=/^(.+)\/([^;]+)(?:;.*)?$/.exec(r);if(e){let[,t,i]=e;if(t==="audio"||t==="video")switch(i){case"webm":return vv;case"mp4":return pv}}throw new ReferenceError(`Unsupported mime type ${r}`)};var vl=M(_v(),1),cS=M(xi(),1),dS=M(eS(),1),pS=M($t(),1),Sl=M(Vi(),1);var tS=M(Ne(),1),pl=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,tS.default)(["6E","7A","F4"],o)}}return!1};import{isNonNullable as sM,isNullable as uS}from"@vkontakte/videoplayer-shared";var iS=r=>{if(r.includes("/")){let e=r.split("/");return parseInt(e[0])/parseInt(e[1])}else return parseFloat(r)};var rS=r=>{try{let e=rM(),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 rM(){let r="(?<extlang>(?:[a-z]{3}(?:-[a-z]{3}){0,2}))",e="x(?:-[a-z0-9]{1,8})+",c=`^(?:(?<langtag>${`
64
- (?<language>${`(?:[a-z]{2,3}(?:-${r})?|[a-z]{4}|[a-z]{5,8})`})
95
+ [selected audio track] ${T?.id}
96
+ `}),T},xo=(s,e,t,{estimatedThroughput:i,tuning:r,playbackRate:a,forwardBufferHealth:n,history:o,abrLogger:u,stallsPredictedThroughput:l})=>{go(t,vo);let p=r.considerPlaybackRate&&X(a)?a:1,c=cv.get(t);c||(c=[...t].sort(wr(-1)),cv.set(t,c));let d=s.bitrate;bv(d);let h=p*So(n??.5,r.bitrateAudioFactorAtEmptyBuffer,r.bitrateAudioFactorAtFullBuffer),f,b=Ls(s,e,t,r.minVideoAudioRatio),g=l||i;X(g)&&isFinite(g)&&(f=c.find(v=>X(v.bitrate)&&X(b?.bitrate)?g-d>=v.bitrate*h&&v.bitrate>=b.bitrate:!1)),f||(f=b);let S=o?.last,T=f&&yo(r,u,f,o);return X(o)&&T?.bitrate!==S?.bitrate&&u({message:`
97
+ [AUDIO TRACKS ABR]
98
+ [available audio tracks]
99
+ ${t.map(v=>`{ id: ${v.id}, bitrate: ${v.bitrate} }`).join(`
100
+ `)}
101
+
102
+ [tuning]
103
+ ${(0,qi.default)(r??{}).map(([v,w])=>`${v}: ${w}`).join(`
104
+ `)}
105
+
106
+ [limit params]
107
+ estimatedThroughput: ${i},
108
+ stallsPredictedThroughput: ${l},
109
+ reserve: ${d},
110
+ playbackRate: ${a},
111
+ playbackRateFactor: ${p},
112
+ forwardBufferHealth: ${n},
113
+ bitrateFactor: ${h},
114
+ minBufferToSwitchUp: ${r.minBufferToSwitchUp},
115
+
116
+ [selected audio track] ${T?.id}
117
+ `}),T};var Ee=s=>new URL(s).hostname;import{assertNever as Rv,assertNonNullable as Lv,combine as D$,debounce as C$,ErrorCategory as Mv,filter as $v,filterChanged as V$,isNonNullable as zc,map as Ao,merge as Bv,observableFrom as O$,once as _$,Subscription as F$,ValueSubject as Gc,videoQualityToHeight as Dv,videoSizeToQuality as N$}from"@vkontakte/videoplayer-shared";var Pv=C(kt(),1);var yv=C(gt(),1),vv=s=>{if(s instanceof DOMException&&(0,yv.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"))},_e=async(s,e)=>{let t=s.muted;try{await s.play()}catch(i){if(!vv(i))return!1;if(e&&e(),t)return console.warn(i),!1;s.muted=!0;try{await s.play()}catch(r){return vv(r)&&(s.muted=!1,console.warn(r)),!1}}return!0};import{isNonNullable as Po,isNullable as b$,assertNonNullable as Bs}from"@vkontakte/videoplayer-shared";var Iv=C(Ni(),1);import{isNonNullable as Tv,assertNonNullable as Eo,now as f$}from"@vkontakte/videoplayer-shared";function Le(){return f$()}function Uc(s){return Le()-s}function qc(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 xv(s,e,t){let i=(...r)=>{t.apply(null,r),s.removeEventListener(e,i)};s.addEventListener(e,i)}function Ar(s,e,t,i){let r=window.XMLHttpRequest,a,n,o,u=!1,l=0,p,c,d=!1,h="arraybuffer",f=7e3,b=2e3,g=()=>{if(u)return;Eo(p);let I=Uc(p),x;if(I<b){x=b-I,setTimeout(g,x);return}b*=2,b>f&&(b=f),n&&n.abort(),n=new r,M()},S=I=>(a=I,D),T=I=>(c=I,D),v=()=>(h="json",D),w=()=>{if(!u){if(--l>=0){g(),i&&i();return}u=!0,c&&c(),t&&t()}},P=I=>(d=I,D),M=()=>{p=Le(),n=new r,n.open("get",s);let I=0,x,k=0,re=()=>(Eo(p),Math.max(p,Math.max(x||0,k||0)));if(a&&n.addEventListener("progress",B=>{let q=Le();a.updateChunk&&B.loaded>I&&(a.updateChunk(re(),B.loaded-I),I=B.loaded,x=q)}),o&&(n.timeout=o,n.addEventListener("timeout",()=>w())),n.addEventListener("load",()=>{if(u)return;Eo(n);let B=n.status;if(B>=200&&B<300){let{response:q,responseType:K}=n,ne=q?.byteLength;if(typeof ne=="number"&&a){let Se=ne-I;Se&&a.updateChunk&&a.updateChunk(re(),Se)}K==="json"&&(!q||!(0,Iv.default)(q).length)?w():(c&&c(),e(q))}else w()}),n.addEventListener("error",()=>{w()}),d){let B=()=>{Eo(n),n.readyState===XMLHttpRequest.HEADERS_RECEIVED&&(k=Le(),n.removeEventListener("readystatechange",B))};n.addEventListener("readystatechange",B)}return n.responseType=h,n.send(),D},D={withBitrateReporting:S,withParallel:P,withJSONResponse:v,withRetryCount:I=>(l=I,D),withRetryInterval:(I,x)=>(Tv(I)&&(b=I),Tv(x)&&(f=x),D),withTimeout:I=>(o=I,D),withFinally:T,send:M,abort:()=>{n&&(n.abort(),n=void 0),u=!0,c&&c()}};return D}var Ms=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 Ev=C(Ni(),1);var $s=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=Le(),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=Le()-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=Ar(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=Le()}_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=Le();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,Ev.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}};import{Subject as g$}from"@vkontakte/videoplayer-shared";var wo=1e4,Hc=3;var S$=6e4,v$=10,y$=1,T$=500,Ds=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 g$,this.chunkRateEstimator=new Ms(this.params.logger),this._initVideo()}attachSource(e){this.manifestUrl=e,this.urlResolver=qc(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=qc(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*(F.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||{};!lv({limits:this.autoQualityLimits,highestAvailableHeight:this.manifest[0].video.height,lowestAvailableHeight:(0,Pv.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||Po(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=()=>{xv(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 $s(Hc,wo,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,p=!1,c=()=>{let w=a&&(!p||p===this.rep);return w||t("Not running!"),w},d=(w,P,M)=>{u&&u.abort(),u=Ar(this.urlResolver.resolve(w,!1),P,M,()=>this._retryCallback()).withTimeout(wo).withBitrateReporting(this.bitrateSwitcher).withRetryCount(Hc).withFinally(()=>{u=null}).send()},h=(w,P,M)=>{Bs(this.filesFetcher),o?.abort(),o=this.filesFetcher.requestData(this.urlResolver.resolve(w,!1),P,M,()=>this._retryCallback()).withFinally(()=>{o=null}).send()},f=w=>{let P=i.playbackRate;i.playbackRate!==w&&(t(`Playback rate switch: ${P}=>${w}`),i.playbackRate=w)},b=w=>{this.lowLatency=w,t(`lowLatency changed to ${w}`),g()},g=()=>{if(!this.lowLatency&&!this.params.config.isLiveCatchUpMode)f(1);else{let w=this._getBufferSizeSec();if(this.bufferStates.length<5){f(1);return}let M=Le()-1e4,O=0;for(let R=0;R<this.bufferStates.length;R++){let y=this.bufferStates[R];w=Math.min(w,y.buf),y.ts<M&&O++}this.bufferStates.splice(0,O),t(`update playback rate; minBuffer=${w} drop=${O} jitter=${this.sourceJitter}`);let E=w-y$;this.sourceJitter>=0?E-=this.sourceJitter/2:this.sourceJitter-=1,E>3?f(1.15):E>1?f(1.1):E>.3?f(1.05):f(1)}},S=w=>{let P,M=()=>P&&P.start?P.start.length:0,O=B=>P.start[B]/1e3,E=B=>P.dur[B]/1e3,R=B=>P.fragIndex+B,y=(B,q)=>({chunkIdx:R(B),startTS:O(B),dur:E(B),discontinuity:q}),D=()=>{let B=0;if(P&&P.dur){let q=this.lowLatency?this.params.config.lowLatencyMinBuffer:this.params.config.minBuffer,K=this.lowLatency?this.params.config.lowLatencyMinBufferSegments:this.params.config.minBufferSegments,ne=q;this.sourceJitter>1&&(ne+=this.sourceJitter-1);let Se=P.dur.length-1;for(;Se>=0&&(ne-=P.dur[Se],!(ne<=0));--Se);B=Math.min(Se,P.dur.length-1-K),B=Math.max(B,0)}return y(B,!0)},I=B=>{let q=M();if(!(q<=0)){if(Po(B)){for(let K=0;K<q;K++)if(O(K)>B)return y(K)}return D()}},x=B=>{let q=M(),K=B?B.chunkIdx+1:0,ne=K-P.fragIndex;if(!(q<=0)){if(!B||ne<0||ne-q>v$)return t(`Resync: offset=${ne} bChunks=${q} chunk=`+JSON.stringify(B)),D();if(!(ne>=q))return y(K-P.fragIndex,!1)}},k=(B,q,K)=>{l&&l.abort(),l=Ar(this.urlResolver.resolve(B,!0,this.lowLatency),q,K,()=>this._retryCallback()).withTimeout(wo).withRetryCount(Hc).withFinally(()=>{l=null}).withJSONResponse().send()};return{seek:(B,q)=>{k(w,K=>{if(!c())return;P=K;let ne=!!P.lowLatency;ne!==this.lowLatency&&b(ne);let Se=0;for(let oe=0;oe<P.dur.length;++oe)Se+=P.dur[oe];Se>0&&(Bs(this.filesFetcher),this.filesFetcher.optimizeForSegDuration(Se/P.dur.length)),r({name:"index",zeroTime:P.zeroTime,shiftDuration:P.shiftDuration}),this.sourceJitter=P.hasOwnProperty("jitter")?Math.min(10,Math.max(.01,P.jitter/1e3)):1,B(I(q))},()=>this._handleNetworkError())},nextChunk:x}},T=()=>{a=!1,o&&o.abort(),u&&u.abort(),l&&l.abort(),Bs(this.filesFetcher),this.filesFetcher.abortAll()};return p={start:w=>{let{videoElement:P,logger:M}=this.params,O=S(e.jidxUrl),E,R,y,D,I=0,x,k,re,B=()=>{x&&(clearTimeout(x),x=void 0);let V=Math.max(T$,1e3*(this._getBufferSizeSec()-this.sourceJitter-5)),we=I+V,ve=Le(),te=Math.min(1e4,we-ve);I=ve;let Te=()=>{l||c()&&O.seek(()=>{c()&&(I=Le(),q(),B())})};te>0?x=window.setTimeout(()=>{this.paused?B():Te()},te):Te()},q=()=>{let V;for(;V=O.nextChunk(D);)D=V,Z(V);let we=O.nextChunk(y);if(we){if(y&&we.discontinuity){M("Detected discontinuity; restarting playback"),this.paused?B():(T(),this._initPlayerWith(e));return}oe(we)}else B()},K=(V,we)=>{if(!c()||!this.sourceBuffer)return;let ve,te,Te,rt=qe=>{window.setTimeout(()=>{c()&&K(V,we)},qe)};if(this.sourceBuffer.updating)M("Source buffer is updating; delaying appendBuffer"),rt(100);else{let qe=Le(),ce=P.currentTime;!this.paused&&P.buffered.length>1&&k===ce&&qe-re>500&&(M("Stall suspected; trying to fix"),this._fixupStall()),k!==ce&&(k=ce,re=qe);let st=this._getBufferSizeSec();if(st>30)M(`Buffered ${st} seconds; delaying appendBuffer`),rt(2e3);else try{this.sourceBuffer.appendBuffer(V),this.videoPlayStarted?(this.bufferStates.push({ts:qe,buf:st}),g(),this.bufferStates.length>200&&this.bufferStates.shift()):this.shouldPlay()&&(this.videoPlayStarted=!0,this._playVideoElement()),we&&we()}catch(Pe){if(Pe.name==="QuotaExceededError")M("QuotaExceededError; delaying appendBuffer"),Te=this.sourceBuffer.buffered.length,Te!==0&&(ve=this.sourceBuffer.buffered.start(0),te=ce,te-ve>4&&this.sourceBuffer.remove(ve,te-3)),rt(1e3);else throw Pe}}},ne=()=>{R&&E&&(M([`Appending chunk, sz=${R.byteLength}:`,JSON.stringify(y)]),K(R,function(){R=null,q()}))},Se=V=>e.fragUrlTemplate.replace("%%id%%",V.chunkIdx),oe=V=>{c()&&h(Se(V),(we,ve)=>{if(c()){if(ve/=1e3,R=we,y=V,n=V.startTS,ve){let te=Math.min(10,V.dur/ve);this.downloadRate=this.downloadRate?(1-.3)*this.downloadRate+.3*te:te}ne()}},()=>this._handleNetworkError())},Z=V=>{c()&&(Bs(this.filesFetcher),this.filesFetcher.prefetch(this.urlResolver.resolve(Se(V),!1)))},L=V=>{c()&&(e.cachedHeader=V,K(V,()=>{E=!0,ne()}))};a=!0,O.seek(V=>{if(c()){if(I=Le(),!V){B();return}D=V,!b$(w)||V.startTS>w?oe(V):(y=V,q())}},w),e.cachedHeader?L(e.cachedHeader):d(e.headerUrl,L,()=>this._handleNetworkError())},stop:T,getTimestampSec:()=>n},p}_switchToQuality(e){let{logger:t,playerCallback:i}=this.params,r;e.bitrate!==this.bitrate&&(this.rep&&(r=this.rep.getTimestampSec(),Po(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,Bs(this.bitrateSwitcher),this.bitrateSwitcher.notifySwitch(this.bitrate),this.rep.start(r),i({name:"qualitySwitch",quality:e}))}_qualityAvailable(e){return Po(this.manifest.find(t=>t.name===e))}_initBitrateSwitcher(){let{logger:e,playerCallback:t}=this.params,i=c=>{if(!this.autoQuality)return;let d,h,f;if(this.currentManifestEntry&&this._qualityAvailable(this.currentManifestEntry.name)&&c<this.bitrate&&(h=this._getBufferSizeSec(),f=c/this.bitrate,h>10&&f>.8||h>15&&f>.5||h>20&&f>.3)){e(`Not switching: buffer=${Math.floor(h)}; bitrate=${this.bitrate}; newRate=${Math.floor(c)}`);return}d=this._selectQuality(c),d?this._switchToQuality(d):e(`Could not find quality by bitrate ${c}`)},a={updateChunk:(d,h)=>{let f=Le();if(this.chunkRateEstimator.addInterval(d,f,h)){let g=this.chunkRateEstimator.getBitRate();return t({name:"bandwidth",size:h,duration:f-d,speed:g}),!0}},get:()=>{let d=this.chunkRateEstimator.getBitRate();return d?d*.85:0}},n=-1/0,o,u=!0,l=()=>{let c=a.get();if(c&&o&&this.autoQuality){if(u&&c>o&&Uc(n)<3e4)return;i(c)}u=this.autoQuality};return{updateChunk:(c,d)=>{let h=a.updateChunk(c,d);return h&&l(),h},notifySwitch:c=>{let d=Le();c<o&&(n=d),o=c}}}_fetchManifest(e,t,i){this.manifestRequest=Ar(this.urlResolver.resolve(e,!0),t,i,()=>this._retryCallback()).withJSONResponse().withTimeout(wo).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: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))},S$))}_initManifest(){this._fetchManifest(this.manifestUrl,e=>{this.destroyed||(this._handleManifestUpdate(e),this._refetchManifest(this.manifestUrl))},()=>this._handleNetworkError())}};var kv=C($i(),1);import{debounce as I$,filter as wv,fromEvent as x$,interval as E$,isHigher as P$,isInvariantQuality as w$,isLower as A$,merge as k$,Subject as Av,Subscription as R$}from"@vkontakte/videoplayer-shared";var jc=class{constructor(){this.onDroopedVideoFramesLimit$=new Av;this.subscription=new R$;this.playing=!1;this.tracks=[];this.forceChecker$=new Av;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&&!w$(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&&P$(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(x$(this.video,"resize").subscribe(this.handleChangeVideoQuality));let e=E$(this.droppedFramesChecker.checkTime).pipe(wv(()=>this.playing),wv(()=>{let r=!!this.isForceCheckCounter;return r&&(this.isForceCheckCounter-=1),!r})),t=this.forceChecker$.pipe(I$(this.droppedFramesChecker.checkTime)),i=k$(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,kv.default)(this.limitCounts).filter(([,i])=>i>=this.droppedFramesChecker.countLimit).sort(([i],[r])=>A$(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}},kr=jc;import{map as L$,Observable as M$}from"@vkontakte/videoplayer-shared";import{fromEvent as $$}from"@vkontakte/videoplayer-shared";var Cs=()=>!!window.documentPictureInPicture?.window||!!document.pictureInPictureElement;var B$=(s,e)=>new M$(t=>{if(!window.IntersectionObserver)return;let i={root:null},r=new IntersectionObserver((n,o)=>{n.forEach(u=>t.next(u.isIntersecting||Cs()))},{...i,...e});r.observe(s);let a=$$(document,"visibilitychange").pipe(L$(n=>!document.hidden||Cs())).subscribe(n=>t.next(n));return()=>{r.unobserve(s),a.unsubscribe()}}),et=B$;var U$=["paused","playing","ready"],q$=["paused","playing","ready"],Vs=class{constructor(e){this.subscription=new F$;this.videoState=new N("stopped");this.representations$=new Gc([]);this.droppedFramesManager=new kr;this.maxSeekBackTime$=new Gc(1/0);this.zeroTime$=new Gc(void 0);this.liveOffset=new Ui;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:Mv.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=Vt(r.name)??N$(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),zc(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,Qc.default)(q$,e)&&(n||o)){this.prepare();return}if(r?.to!=="paused"&&a.state==="requested"&&(0,Qc.default)(U$,e)){this.seek(a.position-this.liveOffset.getTotalPausedTime());return}switch(e){case"stopped":this.videoState.startTransitionTo("manifest_ready"),this.dash.attachSource(ge(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(ge(this.params.source.url,u))}return;default:return Rv(e)}};this.textTracksManager=new Je(e.source.url),this.params=e,this.log=this.params.dependencies.logger.createComponentLog("DashLiveProvider");let t=r=>{e.output.error$.next({id:"DashLiveProvider",category:Mv.WTF,message:"DashLiveProvider internal logic error",thrown:r})};this.subscription.add(Bv(this.videoState.stateChangeStarted$.pipe(Ao(r=>({transition:r,type:"start"}))),this.videoState.stateChangeEnded$.pipe(Ao(r=>({transition:r,type:"end"})))).subscribe(({transition:r,type:a})=>{this.log({message:`[videoState change] ${a}: ${JSON.stringify(r)}`})})),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(Ee(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(Ao(r=>r.map(({track:a})=>a)),$v(r=>!!r.length),_$()).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(V$(),Ao(r=>-r/1e3)).subscribe(this.params.output.duration$)).add(D$({zeroTime:this.zeroTime$.pipe($v(zc)),position:i.timeUpdate$}).subscribe(({zeroTime:r,position:a})=>this.params.output.liveTime$.next(r+a*1e3),t)).add(St(this.video,this.params.desiredState.isLooped,t)).add(Ve(this.video,this.params.desiredState.volume,i.volumeState$,t)).add(i.volumeState$.subscribe(this.params.output.volume$,t)).add(Xe(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(et(this.video).subscribe(this.params.output.elementVisible$)).add(this.params.desiredState.autoVideoTrackLimits.stateChangeStarted$.subscribe(({to:{max:r,min:a}})=>{this.dash.setAutoQualityLimits({max:r&&Dv(r),min:a&&Dv(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 Rv(r.to)}},t)).add(Bv(e.desiredState.playbackState.stateChangeStarted$,e.desiredState.seekState.stateChangeEnded$,e.desiredState.videoTrack.stateChangeStarted$,e.desiredState.autoVideoTrackSwitching.stateChangeStarted$,this.videoState.stateChangeEnded$,this.droppedFramesManager.onDroopedVideoFramesLimit$,O$(["init"])).pipe(C$(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),Ce(this.video)}createLiveDashPlayer(){let e=new Ds({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&&zc(t)?t:Ot(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:p})=>p.id===a)?.representation;Lv(l,"Representations missing"),this.dash.startPlay(l,i)}}setVideoTrack(e){let t=this.representations$.getValue().find(({track:i})=>i.id===e.id)?.representation;Lv(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(ge(this.params.source.url,n)),r&&this.dash.pause(),this.liveOffset.resetTo(n,r)}};var Cv=Vs;var de=(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)};import{assertNever as A0,assertNonNullable as k0,debounce as R0,ErrorCategory as WT,filter as Md,filterChanged as iu,fromEvent as L0,isNonNullable as YT,map as $d,merge as ru,observableFrom as Bd,once as KT,Subscription as M0}from"@vkontakte/videoplayer-shared";var ko=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}},Rr=class extends ko{constructor(){super(),this.listeners||ko.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)}},Os=class{constructor(){Object.defineProperty(this,"signal",{value:new Rr,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&&(Os.prototype[Symbol.toStringTag]="AbortController",Rr.prototype[Symbol.toStringTag]="AbortSignal");function Ro(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 Wc(s){typeof s=="function"&&(s={fetch:s});let{fetch:e,Request:t=e.Request,AbortController:i,__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL:r=!1}=s;if(!Ro({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,p){let c;p&&p.signal&&(c=p.signal,delete p.signal);let d=new t(l,p);return c&&Object.defineProperty(d,"signal",{writable:!1,enumerable:!1,configurable:!0,value:c}),d},a.prototype=t.prototype);let n=e;return{fetch:(u,l)=>{let p=a&&a.prototype.isPrototypeOf(u)?u.signal:l?l.signal:void 0;if(p){let c;try{c=new DOMException("Aborted","AbortError")}catch{c=new Error("Aborted"),c.name="AbortError"}if(p.aborted)return Promise.reject(c);let d=new Promise((h,f)=>{p.addEventListener("abort",()=>f(c),{once:!0})});return l&&l.signal&&delete l.signal,Promise.race([d,n(u,l)])}return n(u,l)},Request:a}}var H$=()=>"fetch"in window,_s=H$()&&Ro({fetch:window.fetch,Request:window.Request,AbortController:window.AbortController}),Vv=_s?Wc({fetch:window.fetch,Request:window.Request,AbortController:window.AbortController}):void 0,vt=_s?Vv.fetch:window.fetch,q1=_s?Vv.Request:window.Request,ee=_s?Os:window.AbortController,H1=_s?Rr:window.AbortSignal;var Ad=C(Fs(),1);var Iy=C(Ty(),1);import{ErrorCategory as Us}from"@vkontakte/videoplayer-shared";var Lo=s=>{if(!s)return{id:"EmptyResponse",category:Us.PARSER,message:"Empty response"};if(s.length<=2&&s.match(/^\d+$/))return{id:`UVError#${s}`,category:Us.NETWORK,message:`UV Error ${s}`};let e=(0,Iy.default)(s).substring(0,100).toLowerCase();if(e.startsWith("<!doctype")||e.startsWith("<html>")||e.startsWith("<body>")||e.startsWith("<head>"))return{id:"UnexpectedHTML",category:Us.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:Us.PARSER,message:"XML parsing error"}:{id:"XMLParserLogicError",category:Us.PARSER,message:"Response is valid XML, but parser failed"}};var Fe=(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};import{abortable as xd,assertNonNullable as Fr,combine as Nr,ErrorCategory as Ft,filter as Wo,filterChanged as ya,flattenObject as Ta,fromEvent as Nt,getTraceSubscriptionMethod as l0,interval as Ed,isNonNullable as Ia,isNullable as qT,map as Ur,merge as Wi,now as Pd,Subject as Yo,Subscription as wd,tap as c0,throttle as HT,ValueSubject as pe}from"@vkontakte/videoplayer-shared";var Co=C(gt(),1),Vr=C(kt(),1),Vo=C(Fs(),1);var kB=(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)},RB=s=>window.clearTimeout(s),xy=s=>typeof s=="function"&&s?.toString().endsWith("{ [native code] }"),Ey=!xy(window.requestIdleCallback)||!xy(window.cancelIdleCallback),Lr=Ey?kB:window.requestIdleCallback,_t=Ey?RB:window.cancelIdleCallback;var $T=C(Is(),1);import{assertNever as LB,ErrorCategory as Py,Subject as wy}from"@vkontakte/videoplayer-shared";var MB=18,Ay=!1;try{Ay=F.browser.isSafari&&!!F.browser.safariVersion&&F.browser.safariVersion<=MB}catch(s){console.error(s)}var ed=class{constructor(e){this.bufferFull$=new wy;this.error$=new wy;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:Py.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)};Ay&&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:Py.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:LB(t)}}},ky=ed;var Mr=s=>{let e=0;for(let t=0;t<s.length;t++)e+=s.end(t)-s.start(t);return e*1e3};import{abortable as Si,assertNonNullable as tt,ErrorCategory as Gi,fromEvent as MT,getExponentialDelay as Sd,isNonNullable as Cr,isNullable as Ne,now as Do,once as XD,Subject as JD,Subscription as ZD,ValueSubject as Qi}from"@vkontakte/videoplayer-shared";var z=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 $r=class extends z{};var qs=class extends z{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 Hs=class extends z{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 js=class extends z{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var se=class extends z{constructor(e,t){super(e,t);let i=this.readUint32();this.version=i>>>24,this.flags=i&16777215}};var zs=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 Gs=class extends z{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Qs=class extends z{constructor(e,t){super(e,t),this.data=this.content}};var Hi=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 Ws=class extends z{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Ys=class extends z{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Ks=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 Xs=class extends se{constructor(e,t){super(e,t),this.poseYawDegrees=this.readUint32(),this.posePitchDegrees=this.readUint32(),this.poseRollDegrees=this.readUint32()}};var Js=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 Zs=class extends z{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var ea=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 ta=class extends z{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var ia=class extends z{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var ra=class extends se{constructor(e,t){super(e,t),this.sequenceNumber=this.readUint32()}};var sa=class extends z{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var aa=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 na=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 oa=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 ua=class extends z{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var la=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 ca=class extends z{constructor(e,t){super(e,t),this.children=this.scanForBoxes(new DataView(this.content.buffer,this.content.byteOffset+78,this.content.byteLength-78))}};var BB={ftyp:Hs,moov:js,mvhd:zs,moof:Gs,mdat:Qs,sidx:Hi,trak:Ws,mdia:Zs,mfhd:ra,tkhd:ea,traf:sa,tfhd:aa,tfdt:na,trun:oa,minf:ta,sv3d:Ys,st3d:Ks,prhd:Xs,proj:ia,equi:Js,uuid:qs,stbl:ua,stsd:la,avc1:ca,unknown:$r},ei=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=BB[e];return i?new i(t,new s):new $r(t,new s)}};var gi=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 CB=new TextDecoder("ascii"),VB=s=>CB.decode(new DataView(s.buffer,s.byteOffset+4,4))==="ftyp",OB=s=>{let e=new Hi(s,new ei),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})},_B=(s,e)=>{let i=new ei().parse(s),r=new gi(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,c=u.source.byteOffset-o.source.byteOffset+u.size;return new DataView(s.buffer,l,c)},FB=s=>{let t=new ei().parse(s),i=new gi(t),r={},a=i.findAll("uuid");return a.length?a[a.length-1]:r},NB=s=>{let t=new ei().parse(s);return new gi(t).find("sidx")?.timescale},UB=(s,e)=>{let i=new ei().parse(s),a=new gi(i).findAll("traf"),n=a[a.length-1].children.find(c=>c.type==="tfhd"),o=a[a.length-1].children.find(c=>c.type==="tfdt"),u=a[a.length-1].children.find(c=>c.type==="trun"),l=0;return u.sampleDuration.length?l=u.sampleDuration.reduce((c,d)=>c+d,0):l=n.defaultSampleDuration*u.sampleCount,(Number(o.baseMediaDecodeTime)+l)/e*1e3},qB=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 ei().parse(s),r=new gi(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},Ry={validateData:VB,parseInit:qB,getIndexRange:()=>{},parseSegments:OB,parseFeedableSegmentChunk:_B,getChunkEndTime:UB,getServerLatencyTimestamps:FB,getTimescaleFromIndex:NB};var pa=C(gt(),1);import{assertNonNullable as id,isNonNullable as By,isNullable as jB}from"@vkontakte/videoplayer-shared";import{assertNever as HB}from"@vkontakte/videoplayer-shared";var Ly={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"}},My=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 Ly,a=r?Ly[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,p=da(u),c=l*2**((o-1)*8)+p,d=t+o,h;return d+c>s.byteLength?h=new DataView(s.buffer,s.byteOffset+d):h=new DataView(s.buffer,s.byteOffset+d,c),{tag:r?i:"0x"+i.toString(16).toUpperCase(),type:a,tagHeaderSize:d,tagSize:d+c,value:h,valueSize:c}},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},Rt=(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:HB(e)}},ji=(s,e)=>{let t=0;for(;t<s.byteLength;){let i=new DataView(s.buffer,s.byteOffset+t),r=My(i);if(!e(r))return;r.type==="master"&&ji(r.value,e),t=r.value.byteOffset-s.byteOffset+r.valueSize}},$y=s=>{if(s.getUint32(0)!==440786851)return!1;let e,t,i,r=My(s);return ji(r.value,({tag:a,type:n,value:o})=>(a===17143?e=Rt(o,n):a===17026?t=Rt(o,n):a===17029&&(i=Rt(o,n)),!0)),(e===void 0||e<=1)&&t!==void 0&&t==="webm"&&(i===void 0||i<=2)};var Dy=[357149030,290298740,374648427,174,224,30320,30321,30322,272869232,524531317,475249515,423732329,307544935],zB=[231,22612,22743,167,171,163,160,175],GB=s=>{let e,t,i,r,a=!1,n=!1,o=!1,u,l,p=!1,c=0;return ji(s,({tag:d,type:h,value:f,valueSize:b})=>{if(d===21419){let g=Rt(f,h);l=da(g)}else d!==21420&&(l=void 0);return d===408125543?(e=f.byteOffset,t=f.byteOffset+b):d===357149030?a=!0:d===290298740?n=!0:d===2807729?i=Rt(f,h):d===17545?r=Rt(f,h):d===21420&&l===475249515?u=Rt(f,h):d===374648427?ji(f,({tag:g,type:S,value:T})=>g===30321?(p=Rt(T,S)===1,!1):!0):a&&n&&(0,pa.default)(Dy,d)&&(o=!0),!o}),id(e,"Failed to parse webm Segment start"),id(t,"Failed to parse webm Segment end"),id(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:p,stereoMode:c,projectionType:1,projectionData:{pose:{yaw:0,pitch:0,roll:0},bounds:{top:0,bottom:0,left:0,right:0}}}},QB=s=>{if(jB(s.cuesSeekPosition))return;let e=s.segmentStart+s.cuesSeekPosition,t=1024*1024;return{from:e,to:e+t}},WB=(s,e)=>{let t=!1,i=!1,r=o=>By(o.time)&&By(o.position),a=[],n;return ji(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=Rt(l,u));break;case 183:break;case 241:n&&(n.position=Rt(l,u));break;default:t&&(0,pa.default)(Dy,o)&&(i=!0)}return!(t&&i)}),n&&r(n)&&a.push(n),a.map((o,u)=>{let{time:l,position:p}=o,c=a[u+1];return{status:"none",time:{from:l,to:c?c.time:e.segmentDuration},byte:{from:e.segmentStart+p,to:c?e.segmentStart+c.position-1:e.segmentEnd-1}}})},YB=s=>{let e=0,t=!1;try{ji(s,i=>i.tag===524531317?i.tagSize<=s.byteLength?(e=i.tagSize,!1):(e+=i.tagHeaderSize,!0):(0,pa.default)(zB,i.tag)?(e+i.tagSize<=s.byteLength&&(e+=i.tagSize,t||=(0,pa.default)([163,160,175],i.tag)),!0):!1)}catch{}return e>0&&e<=s.byteLength&&t?new DataView(s.buffer,s.byteOffset,e):null},Cy={validateData:$y,parseInit:GB,getIndexRange:QB,parseSegments:WB,parseFeedableSegmentChunk:YB};var ha=s=>{let e=/^(.+)\/([^;]+)(?:;.*)?$/.exec(s);if(e){let[,t,i]=e;if(t==="audio"||t==="video")switch(i){case"webm":return Cy;case"mp4":return Ry}}throw new ReferenceError(`Unsupported mime type ${s}`)};var md=C(ud(),1),wT=C($i(),1),AT=C(ld(),1),kT=C(kt(),1),bd=C(Ni(),1);var bT=C(gt(),1),Dr=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,bT.default)(["6E","7A","F4"],o)}}return!1};import{isNonNullable as QD,isNullable as ET}from"@vkontakte/videoplayer-shared";var Mo=s=>{if(s.includes("/")){let e=s.split("/");return parseInt(e[0])/parseInt(e[1])}else return parseFloat(s)};var gT=s=>{try{let e=jD(),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 jD(){let s="(?<extlang>(?:[a-z]{3}(?:-[a-z]{3}){0,2}))",e="x(?:-[a-z0-9]{1,8})+",p=`^(?:(?<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(c,"i")}var ml=M($t(),1);import{videoSizeToQuality as aM}from"@vkontakte/videoplayer-shared";var aS=({id:r,width:e,height:t,bitrate:i,fps:a,quality:s,streamId:n})=>{let o=(s?Rt(s):void 0)??aM({width:e,height:t});return o&&{id:r,quality:o,bitrate:i,size:{width:e,height:t},fps:a,streamId:n}},sS=({id:r,bitrate:e})=>({id:r,bitrate:e}),nS=({language:r,label:e},{id:t,url:i,isAuto:a})=>({id:t,url:i,isAuto:a,type:"internal",language:r,label:e}),oS=({language:r,label:e,id:t,url:i,isAuto:a})=>({id:t,url:i,isAuto:a,type:"internal",language:r,label:e}),fl=({id:r,language:e,label:t,codecs:i,isDefault:a})=>({id:r,language:e,label:t,codec:(0,ml.default)(i.split("."),0),isDefault:a}),bl=({id:r,language:e,label:t,hdr:i,codecs:a})=>({id:r,language:e,hdr:i,label:t,codec:(0,ml.default)(a.split("."),0)}),gl=r=>"url"in r,Se=r=>r.type==="template",ma=r=>r instanceof DOMException&&(r.name==="AbortError"||r.code===20);var lS=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},bt=(r,e)=>{let t=r;t=(0,vl.default)(t,"$$","$");let i={RepresentationID:e.representationId,Number:e.segmentNumber,Bandwidth:e.bandwidth,Time:e.segmentTime};for(let[a,s]of(0,cS.default)(i)){let n=new RegExp(`\\$${a}(?:%0(\\d+)d)?\\$`,"g");t=(0,vl.default)(t,n,(o,u)=>uS(s)?o:uS(u)?s:(0,dS.default)(s,parseInt(u,10),"0"))}return t},hS=(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(_=>_.textContent?.trim()??""),o=(0,pS.default)(n,0)??"",u=s.getAttribute("type")==="dynamic",l=s.getAttribute("availabilityStartTime"),c=s.getAttribute("publishTime"),d=s.getElementsByTagName("vk:Attrs")[0],p=d?.getElementsByTagName("vk:XLatestSegmentPublishTime")[0].textContent,h=d?.getElementsByTagName("vk:XStreamIsLive")[0].textContent,f=d?.getElementsByTagName("vk:XStreamIsUnpublished")[0].textContent,b=d?.getElementsByTagName("vk:XPlaybackDuration")[0].textContent,g;u&&(g={availabilityStartTime:l?new Date(l).getTime():0,publishTime:c?new Date(c).getTime():0,latestSegmentPublishTime:p?new Date(p).getTime():0,streamIsAlive:h==="yes",streamIsUnpublished:f==="yes"});let v,x=s.getAttribute("mediaPresentationDuration"),T=[...s.getElementsByTagName("Period")],w=T.reduce((_,S)=>({..._,[S.id]:S.children}),{}),I=T.reduce((_,S)=>({..._,[S.id]:S.getAttribute("duration")}),{});x?v=lS(x):(0,Sl.default)(I).filter(_=>_).length&&!u?v=(0,Sl.default)(I).reduce((_,S)=>_+(lS(S)??0),0):b&&(v=parseInt(b,10));let V=0,B=s.getAttribute("profiles")?.split(",")??[];for(let _ of T.map(S=>S.id))for(let S of w[_]){let R=S.getAttribute("id")??"id"+(V++).toString(10),A=S.getAttribute("mimeType")??"",G=S.getAttribute("codecs")??"",L=S.getAttribute("contentType")??A?.split("/")[0],ie=S.getAttribute("profiles")?.split(",")??[],k=rS(S.getAttribute("lang")??"")??{},U=S.querySelector("Label")?.textContent?.trim()??void 0,W=S.querySelectorAll("Representation"),J=S.querySelector("SegmentTemplate"),ae=S.querySelector("Role")?.getAttribute("value")??void 0,ye=L,Te={id:R,language:k.language,isDefault:ae==="main",label:U,codecs:G,hdr:ye==="video"&&pl(G),mime:A,representations:[]};for(let H of W){let $=H.getAttribute("lang")??void 0,Ie=U??S.getAttribute("label")??H.getAttribute("label")??void 0,fe=H.querySelector("BaseURL")?.textContent?.trim()??"",se=new URL(fe||o,e).toString(),Oe=H.getAttribute("mimeType")??A,yt=H.getAttribute("codecs")??G??"",Ze;if(L==="text"){let Re=H.getAttribute("id")||"",Tt=k.privateuse?.includes("x-auto")||Re.includes("_auto"),et=H.querySelector("SegmentTemplate");if(et){let Ki={representationId:H.getAttribute("id")??void 0,bandwidth:H.getAttribute("bandwidth")??void 0},Oa=parseInt(H.getAttribute("bandwidth")??"",10)/1e3,_a=parseInt(et.getAttribute("startNumber")??"",10)??1,li=parseInt(et.getAttribute("timescale")??"",10),An=et.querySelectorAll("SegmentTimeline S")??[],ci=et.getAttribute("media");if(!ci)continue;let Na=[],Fa=0,qa="",di=0,Xi=_a,be=0;for(let je of An){let qt=parseInt(je.getAttribute("d")??"",10),_e=parseInt(je.getAttribute("r")??"",10)||0,It=parseInt(je.getAttribute("t")??"",10);be=Number.isFinite(It)?It:be;let Ut=qt/li*1e3,pi=be/li*1e3;for(let tt=0;tt<_e+1;tt++){let Et=bt(ci,{...Ki,segmentNumber:Xi.toString(10),segmentTime:(be+tt*qt).toString(10)}),hi=(pi??0)+tt*Ut,Zi=hi+Ut;Xi++,Na.push({time:{from:hi,to:Zi},url:Et})}be+=(_e+1)*qt,Fa+=(_e+1)*Ut}di=be/li*1e3,qa=bt(ci,{...Ki,segmentNumber:Xi.toString(10),segmentTime:be.toString(10)});let Ji={time:{from:di,to:1/0},url:qa},lt={type:"template",baseUrl:se,segmentTemplateUrl:ci,initUrl:"",totalSegmentsDurationMs:Fa,segments:Na,nextSegmentBeyondManifest:Ji,timescale:li};Ze={id:Re,kind:"text",segmentReference:lt,profiles:[],duration:v,bitrate:Oa,mime:"",codecs:"",width:0,height:0,isAuto:Tt}}else Ze={id:Re,isAuto:Tt,kind:"text",url:se}}else{let Re=H.getAttribute("contentType")??Oe?.split("/")[0]??L,Tt=S.getAttribute("profiles")?.split(",")??[],et=parseInt(H.getAttribute("width")??"",10),Ki=parseInt(H.getAttribute("height")??"",10),Oa=parseInt(H.getAttribute("bandwidth")??"",10)/1e3,_a=H.getAttribute("frameRate")??"",li=H.getAttribute("quality")??void 0,An=_a?iS(_a):void 0,ci=H.getAttribute("id")??"id"+(V++).toString(10),Na=Re==="video"?`${Ki}p`:Re==="audio"?`${Oa}Kbps`:yt,Fa=`${ci}@${Na}`,qa=[...B,...ie,...Tt],di,Xi=H.querySelector("SegmentBase"),be=H.querySelector("SegmentTemplate")??J;if(Xi){let lt=H.querySelector("SegmentBase Initialization")?.getAttribute("range")??"",[je,qt]=lt.split("-").map(Et=>parseInt(Et,10)),_e={from:je,to:qt},It=H.querySelector("SegmentBase")?.getAttribute("indexRange"),[Ut,pi]=It?It.split("-").map(Et=>parseInt(Et,10)):[],tt=It?{from:Ut,to:pi}:void 0;di={type:"byteRange",url:se,initRange:_e,indexRange:tt}}else if(be){let lt={representationId:H.getAttribute("id")??void 0,bandwidth:H.getAttribute("bandwidth")??void 0},je=parseInt(be.getAttribute("timescale")??"",10),qt=be.getAttribute("initialization")??"",_e=be.getAttribute("media"),It=parseInt(be.getAttribute("startNumber")??"",10)??1,Ut=bt(qt,lt);if(!_e)throw new ReferenceError("No media attribute in SegmentTemplate");let pi=be.querySelectorAll("SegmentTimeline S")??[],tt=[],Et=0,hi="",Zi=0;if(pi.length){let Ua=It,Qe=0;for(let mi of pi){let it=parseInt(mi.getAttribute("d")??"",10),Ht=parseInt(mi.getAttribute("r")??"",10)||0,Ha=parseInt(mi.getAttribute("t")??"",10);Qe=Number.isFinite(Ha)?Ha:Qe;let Ln=it/je*1e3,Oy=Qe/je*1e3;for(let ja=0;ja<Ht+1;ja++){let _y=bt(_e,{...lt,segmentNumber:Ua.toString(10),segmentTime:(Qe+ja*it).toString(10)}),ac=(Oy??0)+ja*Ln,Ny=ac+Ln;Ua++,tt.push({time:{from:ac,to:Ny},url:_y})}Qe+=(Ht+1)*it,Et+=(Ht+1)*Ln}Zi=Qe/je*1e3,hi=bt(_e,{...lt,segmentNumber:Ua.toString(10),segmentTime:Qe.toString(10)})}else if(sM(v)){let Qe=parseInt(be.getAttribute("duration")??"",10)/je*1e3,mi=Math.ceil(v/Qe),it=0;for(let Ht=1;Ht<mi;Ht++){let Ha=bt(_e,{...lt,segmentNumber:Ht.toString(10),segmentTime:it.toString(10)});tt.push({time:{from:it,to:it+Qe},url:Ha}),it+=Qe}Zi=it,hi=bt(_e,{...lt,segmentNumber:mi.toString(10),segmentTime:it.toString(10)})}let By={time:{from:Zi,to:1/0},url:hi};di={type:"template",baseUrl:se,segmentTemplateUrl:_e,initUrl:Ut,totalSegmentsDurationMs:Et,segments:tt,nextSegmentBeyondManifest:By,timescale:je}}else throw new ReferenceError("Unknown MPD segment referencing type");if(!Re||!Oe)continue;let Ji={video:"video",audio:"audio",text:"text"}[Re];if(!Ji)continue;ye||=Ji,Ze={id:Fa,kind:Ji,segmentReference:di,profiles:qa,duration:v,bitrate:Oa,mime:Oe,codecs:yt,width:et,height:Ki,fps:An,quality:li}}Te.language||=$,Te.label||=Ie,Te.mime||=Oe,Te.codecs||=yt,Te.hdr||=ye==="video"&&pl(yt),Te.representations.push(Ze)}if(ye){let H=a[ye].find($=>$.id===Te.id);if(H&&Te.representations.every($=>Se($.segmentReference)))for(let $ of H.representations){let fe=Te.representations.find(Oe=>Oe.id===$.id)?.segmentReference,se=$.segmentReference;se.segments.push(...fe.segments),se.nextSegmentBeyondManifest=fe.nextSegmentBeyondManifest}else a[ye].push(Te)}}return{duration:v,streams:a,baseUrls:n,live:g}};var fS=M(Ne(),1);import{isNonNullable as mS}from"@vkontakte/videoplayer-shared";var ee=(r,e)=>mS(r)&&mS(e)&&r.readyState==="open"&&(0,fS.default)([...r.activeSourceBuffers],e);var fa=class{constructor(e,t,i,{fetcher:a,tuning:s,getCurrentPosition:n,isActiveLowLatency:o,compatibilityMode:u=!1,manifest:l}){this.currentLiveSegmentServerLatency$=new ai(0);this.currentLowLatencySegmentLength$=new ai(0);this.currentSegmentLength$=new ai(0);this.onLastSegment$=new ai(!1);this.fullyBuffered$=new ai(!1);this.playingRepresentation$=new ai(void 0);this.playingRepresentationInit$=new ai(void 0);this.error$=new oM;this.gaps=[];this.subscription=new uM;this.allInitsLoaded=!1;this.activeSegments=new Set;this.downloadAbortController=new he;this.switchAbortController=new he;this.destroyAbortController=new he;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=Bt(this.destroyAbortController.signal,async function*(e){let t=this.representations.get(e);Le(t,`Cannot find representation ${e}`),this.playingRepresentationId=e,this.downloadingRepresentationId=e,this.sourceBuffer=this.mediaSource.addSourceBuffer(`${t.mime}; codecs="${t.codecs}"`),this.sourceBufferTaskQueue=new dv(this.sourceBuffer),this.subscription.add(Tl(this.sourceBuffer,"updateend").subscribe(()=>{this.checkEjectedSegments(),this.maintain()},n=>{let o,u=this.mediaSource.readyState;u!=="open"&&(o={id:`SegmentEjection_source_${u}`,category:gt.VIDEO_PIPELINE,message:"Error when trying to clear segments ejected by browser",thrown:n}),o??={id:"SegmentEjection",category:gt.VIDEO_PIPELINE,message:"Error when trying to clear segments ejected by browser",thrown:n},this.error$.next(o)})),this.subscription.add(Tl(this.sourceBuffer,"error").subscribe(()=>this.error$.next({id:"SourceBuffer",category:gt.VIDEO_PIPELINE,message:"SourceBuffer Error event fired"}))),this.subscription.add(this.sourceBufferTaskQueue.bufferFull$.subscribe(n=>{let o=this.getCurrentPosition();if(!this.sourceBuffer||!o||!ee(this.mediaSource,this.sourceBuffer))return;let u=Math.min(this.bufferLimit,al(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(d=>{this.handleAsyncError(d,"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);Le(i,"No init buffer for starting representation"),Le(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=Bt(this.destroyAbortController.signal,async function*(e,t=!1){if(!ee(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);Le(i,`No such representation ${e}`);let a=this.segments.get(e),s=this.initData.get(e);if(me(s)||me(a)?yield this.loadInit(i,"high",!1):s instanceof Promise&&(yield s),a=this.segments.get(e),Le(a,"No segments for starting representation"),s=this.initData.get(e),!(!s||!(s instanceof ArrayBuffer)||!this.sourceBuffer||!ee(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();Ui(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=Bt(this.destroyAbortController.signal,async function*(e,t=!1){if(!ee(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);Le(i,`No such representation ${e}`);let a=this.segments.get(e),s=this.initData.get(e);if(me(s)||me(a)?yield this.loadInit(i,"high",!1):s instanceof Promise&&(yield s),a=this.segments.get(e),Le(a,"No segments for starting representation"),s=this.initData.get(e),!(!s||!(s instanceof ArrayBuffer)||!this.sourceBuffer||!ee(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();Ui(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=Bt(this.destroyAbortController.signal,async function*(e){let t=(0,zs.default)(e,u=>u.representations)??[];if(this.isSeekingLive=!0,!this.downloadingRepresentationId||!t)return;for(let u of this.representations.keys()){let l=t.find(p=>p.id===u);l&&this.representations.set(u,l);let c=this.representations.get(u);if(!c||!Se(c.segmentReference))return;let d=this.getActualLiveStartingSegments(c.segmentReference);this.segments.set(c.id,d)}let i=this.switchingToRepresentationId??this.downloadingRepresentationId,a=this.representations.get(i);Le(a);let s=this.segments.get(i);Le(s,"No segments for starting representation");let n=this.initData.get(i);if(Le(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(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){!ee(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId||(this.switchAbortController.abort(),this.switchAbortController=new he,Bt(this.switchAbortController.signal,async function*(i,a=!1){this.switchingToRepresentationId=i;let s=this.representations.get(i);Le(s,`No such representation ${i}`);let n=this.segments.get(i),o=this.initData.get(i);if(me(o)||me(n)?yield this.loadInit(s,"high",!1):o instanceof Promise&&(yield o),n=this.segments.get(i),Le(n,"No segments for starting representation"),o=this.initData.get(i),!(!(o instanceof ArrayBuffer)||!this.sourceBuffer||!ee(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();Ui(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(){!me(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 he,this.abortBuffer()}maintain(e=this.getCurrentPosition()){if(me(e)||me(this.downloadingRepresentationId)||me(this.playingRepresentationId)||me(this.sourceBuffer)||!ee(this.mediaSource,this.sourceBuffer)||Ui(this.switchingToRepresentationId)||this.isSeekingLive)return;let t=this.representations.get(this.downloadingRepresentationId),i=this.segments.get(this.downloadingRepresentationId);if(Le(t,`No such representation ${this.downloadingRepresentationId}`),!i)return;let a=i.find(c=>e>=c.time.from&&e<c.time.to);Ui(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 c=this.getForwardBufferDuration(e),d=a?a.time.to+n:-1/0;a&&a.time.to-e<this.tuning.dash.maxSegmentDurationLeftToSelectNextSegment&&c>=a.time.to-e+n&&(s=d)}if(isFinite(this.bufferLimit)&&al(this.sourceBuffer.buffered)>=this.bufferLimit){let c=this.getForwardBufferDuration(e),d=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(e,1/0,c<d).catch(p=>{this.handleAsyncError(p,"pruneBuffer")});return}let u=[];if(!this.activeSegments.size&&(u=this.selectForwardBufferSegments(i,t.segmentReference.type,s),u.length)){let c="auto";if(this.tuning.dash.useFetchPriorityHints&&a)if((0,Ys.default)(u,a))c="high";else{let d=(0,Hi.default)(u,0);d&&d.time.from-a.time.to>=this.forwardBufferTarget/2&&(c="low")}this.loadSegments(u,t,c).catch(d=>{this.handleAsyncError(d,"loadSegments")})}(!this.preloadOnly&&!this.allInitsLoaded&&a&&a.status==="fed"&&!u.length&&this.getForwardBufferDuration(e)>3e3||this.isActiveLowLatency())&&this.loadNextInit();let l=(0,Hi.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;Ui(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,zs.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,zs.default)(e?.streams[this.kind],i=>i.representations)??[];if(![...this.segments.values()].every(i=>!i.length))for(let i of t){if(!i||!Se(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,Hi.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;Le(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(!Se(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=bt(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&&qr&&qr(this.gapDetectionIdleCallback),this.initLoadIdleCallback&&qr&&qr(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:d,time:{from:p,to:h}},f)=>{let b=p<=i&&h>=i,g=p>i||b||f===0&&i===0,v=Math.min(this.forwardBufferTarget,this.bufferLimit),x=this.preloadOnly&&p<=i+v||h<=i+v;return(d==="none"||d==="partially_ejected"&&g&&x&&this.sourceBuffer&&ee(this.mediaSource,this.sourceBuffer)&&!(Dt(this.sourceBuffer.buffered,p)&&Dt(this.sourceBuffer.buffered,h)))&&g&&x});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,c=this.preloadOnly?this.forwardBufferTarget:0;for(let d=a;d<s.length&&(n<=l||o<=c);d++){let p=s[d];if(n+=p.byte.to+1-p.byte.from,o+=p.time.to+1-p.time.from,p.status==="none"||p.status==="partially_ejected")u.push(p);else break}return u}async loadSegments(e,t,i="auto"){Se(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 Bt(o,async function*(){let c=Il(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(d=>setTimeout(d,c))}.bind(this))(),o.aborted&&this.abortActiveSegments([e]));try{let c=await this.fetcher.fetch(n,{range:s,signal:o,onProgress:u,priority:i,isLowLatency:this.isActiveLowLatency()});if(this.lastDataObtainedTimestampMs=Ws(),!c)return;let d=new DataView(c),p=ha(t.mime);if(!isFinite(a.segment.time.to)){let b=t.segmentReference.timescale;a.segment.time.to=p.getChunkEndTime(d,b)}u&&a.feedingBytes&&l?await Promise.all(l):await this.sourceBufferTaskQueue.append(d,o);let{serverDataReceivedTimestamp:h,serverDataPreparedTime:f}=p.getServerLatencyTimestamps(d);h&&f&&this.currentLiveSegmentServerLatency$.next(f-h),a.segment.status="downloaded",this.onSegmentFullyAppended(a,t.id),this.failedDownloads=0}catch(c){this.abortActiveSegments([e]),ma(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())Se(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 Bt(n,async function*(){let u=Il(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(l=>{this.loadByteRangeSegmentsTimeoutId=window.setTimeout(l,u),Tl(window,"online").pipe(nM()).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=Ws(),this.failedDownloads=0}catch(u){this.abortActiveSegments(e),ma(u)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}}prepareByteRangeFetchSegmentParams(e,t){if(Se(t.segmentReference))throw new Error("Representation is not byte range type");let i=t.segmentReference.url,a={from:(0,Hi.default)(e,0).byte.from,to:(0,Hi.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=Ws(),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:gt.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:l})}}}}prepareTemplateFetchSegmentParams(e,t){if(!Se(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,c)=>{if(!s.aborted)try{this.lastDataObtainedTimestampMs=Ws();let d=this.onSomeTemplateDataLoaded({dataView:l,loaded:c,signal:s,onSegmentAppendFailed:()=>this.abort(),representationId:t.id});n.push(d)}catch(d){this.error$.next({id:"SegmentFeeding",category:gt.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:d})}}:void 0;return{url:a,signal:s,onProgress:u,onProgressTasks:n}}abortActiveSegments(e){for(let t of this.activeSegments)(0,Ys.default)(e,t.segment)&&this.abortSegment(t.segment)}async onSomeTemplateDataLoaded({dataView:e,representationId:t,loaded:i,onSegmentAppendFailed:a,signal:s}){if(!this.activeSegments.size||!ee(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),c=ha(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:a,signal:s,onSegmentAppendFailed:n}){if(!this.activeSegments.size||!ee(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 c=l.byte.from-i,d=l.byte.to-i,p=d-c+1,h=c<a,f=d<=a;if(!h)continue;let b=ha(o.mime);if(l.status==="downloading"&&f){l.status="downloaded";let g=new DataView(e.buffer,e.byteOffset+c,p);await this.sourceBufferTaskQueue.append(g,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(p,a-c),u.loadedBytes>u.feedingBytes)){let g=new DataView(e.buffer,e.byteOffset+c+u.feedingBytes,u.loadedBytes-u.feedingBytes),v=u.loadedBytes===p?g:b.parseFeedableSegmentChunk(g);v?.byteLength&&(l.status="partially_fed",u.feedingBytes+=v.byteLength,await this.sourceBufferTaskQueue.append(v,s)&&!s.aborted?(u.fedBytes+=v.byteLength,u.fedBytes===p&&this.onSegmentFullyAppended(u,t)):await n())}}}onSegmentFullyAppended(e,t){if(!(me(this.sourceBuffer)||!ee(this.mediaSource,this.sourceBuffer))){!this.isLive&&O.browser.isSafari&&this.tuning.useSafariEndlessRequestBugfix&&(Dt(this.sourceBuffer.buffered,e.segment.time.from,100)&&Dt(this.sourceBuffer.buffered,e.segment.time.to,100)||this.error$.next({id:"EmptyAppendBuffer",category:gt.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",gl(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=il(()=>(0,bS.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?Bt(this.destroyAbortController.signal,async function*(){let o=Il(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(u=>setTimeout(u,o))}.bind(this))():Promise.resolve()).then(()=>this.fetcher.fetchRepresentation(e.segmentReference,ha(e.mime),a)).then(async o=>{if(!o)return;let{init:u,dataView:l,segments:c}=o,d=l.buffer.slice(l.byteOffset,l.byteOffset+l.byteLength);this.initData.set(e.id,d);let p=c;this.isLive&&Se(e.segmentReference)&&(p=this.getActualLiveStartingSegments(e.segmentReference)),(!this.isLive||!this.segments.has(e.id))&&this.segments.set(e.id,p),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:gt.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||!ee(this.mediaSource,this.sourceBuffer)||!this.playingRepresentationId||me(e))return!1;let a=[],s=0,n=u=>{u.sort((c,d)=>c.from-d.from);let l=[u[0]];for(let c=1;c<u.length;c++){let{from:d,to:p}=u[c],h=l[l.length-1];h.to>=d?h.to=Math.max(h.to,p):l.push(u[c])}return l},o=u=>{if(s>=t)return a;a.push({...u.time}),a=n(a);let l=gl(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 c=l.time.to<=e-this.tuning.dash.bufferPruningSafeZone,d=l.time.from>=e+Math.min(this.forwardBufferTarget,this.bufferLimit);(c||d)&&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,d=0;for(let p of this.segments.values())for(let h of p)(0,Ys.default)(["none","partially_ejected"],h.status)&&Math.round(h.time.from)<=Math.round(l)&&Math.round(h.time.to)>=Math.round(c)&&d++;if(d===this.segments.size){let p={time:{from:l,to:c},url:"",status:"none"};o(p)}}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 c of l)c.time.from>=e+u&&c.status==="fed"&&o(c)}return a.length?(await Promise.all(a.map(l=>this.sourceBufferTaskQueue.remove(l.from,l.to)))).reduce((l,c)=>l||c,!1):!1}async abortBuffer(){if(!this.sourceBuffer||!ee(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||!ee(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||!ee(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length||me(e)?0:_i(this.sourceBuffer.buffered,e)}detectGaps(e,t){if(!(!this.sourceBuffer||!ee(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||!ee(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=il(()=>{try{this.detectGaps(e,t)}catch(i){this.error$.next({id:"GapDetection",category:gt.WTF,message:"detectGaps threw",thrown:i})}finally{this.gapDetectionIdleCallback=null}})}}checkEjectedSegments(){if(me(this.sourceBuffer)||!ee(this.mediaSource,this.sourceBuffer)||me(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(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?a.status="partially_ejected":this.gaps.some(c=>c.from===a.time.from||c.to===a.time.to)?a.status="partially_ejected":a.status="none")}}handleAsyncError(e,t){this.error$.next({id:t,category:gt.VIDEO_PIPELINE,thrown:e,message:"Something went wrong"})}};var ba=r=>{let e=new URL(r);return e.searchParams.set("quic","1"),e.toString()};var gS=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}};import{abortable as ga,assertNever as SS,fromEvent as yS,merge as lM,now as va,Subscription as cM,Subject as TS,ValueSubject as El,flattenObject as ji,ErrorCategory as Sa}from"@vkontakte/videoplayer-shared";var vS=r=>{let e=new URL(r);return e.searchParams.set("enable-subtitles","yes"),e.toString()};var Xs=class{constructor({throughputEstimator:e,requestQuic:t,tracer:i,compatibilityMode:a=!1,useEnableSubtitlesParam:s=!1}){this.lastConnectionType$=new El(void 0);this.lastConnectionReused$=new El(void 0);this.lastRequestFirstBytes$=new El(void 0);this.recoverableError$=new TS;this.error$=new TS;this.abortAllController=new he;this.subscription=new cM;this.fetchManifest=ga(this.abortAllController.signal,async function*(e){let t=this.tracer.createComponentTracer("FetchManifest"),i=e;this.requestQuic&&(i=ba(i)),!this.compatibilityMode&&this.useEnableSubtitlesParam&&(i=vS(i));let a=yield this.doFetch(i,{signal:this.abortAllController.signal}).catch(Ks);return a?(t.log("success",ji({url:i,message:"Request successfully executed"})),t.end(),this.onHeadersReceived(a.headers),a.text()):(t.error("error",ji({url:i,message:"No data in request manifest"})),t.end(),null)}.bind(this));this.fetch=ga(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,c=new Headers,d=this.tracer.createComponentTracer("Fetch");if(i)switch(t){case 0:{c.append("Range",`bytes=${i.from}-${i.to}`);break}case 1:{let R=new URL(l,location.href);R.searchParams.append("bytes",`${i.from}-${i.to}`),l=R.toString();break}default:SS(t)}this.requestQuic&&(l=ba(l));let p=this.abortAllController.signal,h;if(n){let R=new he;if(h=lM(yS(this.abortAllController.signal,"abort"),yS(n,"abort")).subscribe(()=>{try{R.abort()}catch(A){Ks(A)}}),this.subscription.add(h),this.abortAllController.signal.aborted||n.aborted)try{R.abort()}catch(A){Ks(A)}p=R.signal}let f=va();d.log("startRequest",ji({url:l,priority:s,rangeMethod:t,range:i,isLowLatency:u,requestStartedAt:f}));let b=yield this.doFetch(l,{priority:s,headers:c,signal:p}),g=va();if(!b)return d.error("error",{message:"No response in request"}),d.end(),h?.unsubscribe(),null;if(this.throughputEstimator?.addRawRtt(g-f),!b.ok||!b.body){h?.unsubscribe();let R=`Fetch error ${b.status}: ${b.statusText}`;return d.error("error",{message:R}),d.end(),Promise.reject(new Error(`Fetch error ${b.status}: ${b.statusText}`))}if(this.onHeadersReceived(b.headers),!a&&!o){h?.unsubscribe();let R=va(),A={requestStartedAt:f,requestEndedAt:R,duration:R-f};return d.log("endRequest",ji(A)),d.end(),b.arrayBuffer()}let[v,x]=b.body.tee(),T=v.getReader();o&&this.throughputEstimator?.trackStream(x,u);let w=0,I=new Uint8Array(0),V=!1,B=R=>{h?.unsubscribe(),V=!0,Ks(R)},N=ga(p,async function*({done:R,value:A}){if(w===0&&this.lastRequestFirstBytes$.next(va()-f),p.aborted){h?.unsubscribe();return}if(!R&&A){let G=new Uint8Array(I.length+A.length);G.set(I),G.set(A,I.length),I=G,w+=A.byteLength,a?.(new DataView(I.buffer),w),yield T?.read().then(N,B)}}.bind(this));yield T?.read().then(N,B),h?.unsubscribe();let _=va(),S={failed:V,requestStartedAt:f,requestEndedAt:_,duration:_-f};return V?(d.error("endRequest",ji(S)),d.end(),null):(d.log("endRequest",ji(S)),d.end(),I.buffer)}.bind(this));this.fetchByteRangeRepresentation=ga(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,c;e.indexRange&&(l=e.indexRange.from,c=e.indexRange.to,u=s+1===l,u&&(n=Math.min(l,a),o=Math.max(c,s))),n=Math.min(n,0);let d=yield this.fetch(e.url,{range:{from:n,to:o},priority:i,measureThroughput:!1});if(!d)return null;let p=new DataView(d,a-n,s-n+1);if(!t.validateData(p))throw new Error("Invalid media file");let h=t.parseInit(p),f=e.indexRange??t.getIndexRange(h);if(!f)throw new ReferenceError("No way to load representation index");let b;if(u)b=new DataView(d,f.from-n,f.to-f.from+1);else{let v=yield this.fetch(e.url,{range:f,priority:i,measureThroughput:!1});if(!v)return null;b=new DataView(v)}let g=t.parseSegments(b,h,f);return{init:h,dataView:new DataView(d),segments:g}}.bind(this));this.fetchTemplateRepresentation=ga(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}=gS(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:SS(a)}}destroy(){this.abortAllController.abort(),this.subscription.unsubscribe(),this.tracer.end()}async doFetch(e,t){let i=await ot(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:Sa.FATAL});break;case 8:this.recoverableError$.next({id:"VideoDataLinkBlockedForFloodError",message:"Url blocked for flood",category:Sa.FATAL});break;case 18:this.recoverableError$.next({id:"VideoDataLinkIllegalIpChangeError",message:"Client IP has changed",category:Sa.FATAL});break;case 21:this.recoverableError$.next({id:"VideoDataLinkIllegalHostChangeError",message:"Request HOST has changed",category:Sa.FATAL});break;default:this.error$.next({id:"GeneralVideoDataFetchError",message:`Generic video data fetch error (${s})`,category:Sa.FATAL})}}},Ks=r=>{if(!ma(r))throw r};var si=(r,e,t)=>t*e+(1-t)*r,xl=(r,e)=>r.reduce((t,i)=>t+i,0)/e,IS=(r,e,t,i)=>{let a=0,s=t,n=xl(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};import{isNullable as dM,ValueSubject as ES}from"@vkontakte/videoplayer-shared";var Ot=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 ES(e.initial),this.debounced$=new ES(e.initial);let t=e.label??"value"+Math.random().toString(16).substring(2,6);this.rawSeries$=new ge(`raw_${t}`),this.smoothedSeries$=new ge(`smoothed_${t}`),this.reportedSeries$=new ge(`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)&&(dM(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 Js=class extends Ot{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 Zs=class extends Ot{constructor(e){super(e),this.emaSmoothed=e.initial}updateSmoothedValue(e){let t=xl(this.pastMeasures,this.takenMeasures);this.emaSmoothed=si(this.emaSmoothed,e,this.params.emaAlpha);let i=IS(this.pastMeasures,this.takenMeasures,this.measuresCursor-1,this.params.basisTrendChangeCount);this.smoothed=i?this.emaSmoothed:t}};var en=class extends Ot{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 ni=class{static getSmoothedValue(e,t,i){return i.type==="TwoEma"?new Js({initial:e,emaAlphaSlow:i.emaAlphaSlow,emaAlphaFast:i.emaAlphaFast,changeThreshold:i.changeThreshold,fastDirection:t,deviationDepth:i.deviationDepth,deviationFactor:i.deviationFactor,label:"throughput"}):new Zs({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 en({initial:e,label:"liveEdgeDelay",...t})}};var Pl=(r,e)=>{r&&r.playbackRate!==e&&(r.playbackRate=e)};import{isNullable as pM,ValueSubject as hM}from"@vkontakte/videoplayer-shared";var ya=class r{constructor(e,t){this.currentRepresentation$=new hM(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(!pM(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&&Se(t.segmentReference))}};var rn=M($t(),1);import{assertNever as an}from"@vkontakte/videoplayer-shared";var xS=(r,{useHlsJs:e,useManagedMediaSource:t,useOldMSEDetection:i})=>{let{containers:a,protocols:s,codecs:n,nativeHlsSupported:o}=O.video,u=(n.h264||n.h265)&&n.aac,l=s.mse&&(!i||!!window.MediaStreamTrack)||s.mms&&t;return r.filter(c=>{switch(c){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 an(c)}})},tn=r=>{let{webmDecodingInfo:e}=O.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:an(r)}return[t,i]},PS=({webmCodec:r,androidPreferredFormat:e,preferMultiStream:t})=>{let i=[...t?["DASH_STREAMS"]:[],...tn(r),"DASH_SEP","DASH_ONDEMAND",...t?[]:["DASH_STREAMS"]],a=[...t?["DASH_STREAMS"]:[],"DASH_SEP","DASH_ONDEMAND",...t?[]:["DASH_STREAMS"]];if(O.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",...tn(r),"HLS","HLS_ONDEMAND"];case"dash_any_webm":return[...tn(r),"MPEG",...a,"HLS","HLS_ONDEMAND"];case"dash_sep":return["DASH_SEP","MPEG",...tn(r),...a,"HLS","HLS_ONDEMAND"];default:an(e)}return O.video.nativeHlsSupported?[...i,"HLS","HLS_ONDEMAND","MPEG"]:[...i,"HLS","HLS_ONDEMAND","MPEG"]},wS=({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=O.device.isMac&&O.browser.isSafari;if(O.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:an(r)}else O.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"]},wl=r=>r?["HLS_LIVE","HLS_LIVE_CMAF","DASH_LIVE_CMAF"]:["DASH_WEBM","DASH_WEBM_AV1","DASH_SEP","DASH_ONDEMAND","HLS","HLS_ONDEMAND","MPEG"],kS=r=>{if(r.size===0)return;if(r.size===1){let t=r.values().next();return(0,rn.default)(t.value.split("."),0)}for(let t of r){let i=(0,rn.default)(t.split("."),0);if(i==="opus"||i==="vp09"||i==="av01")return i}let e=r.values().next();return(0,rn.default)(e.value.split("."),0)};var IM=["timeupdate","progress","play","seeked","stalled","waiting"],EM=["timeupdate","progress","loadeddata","playing","seeked"];var on=class{constructor(e){this.element=null;this.manifestUrlString="";this.source=null;this.manifest=null;this.subscription=new RS;this.representationSubscription=new RS;this.state$=new C("none");this.currentVideoRepresentation$=new K(void 0);this.currentVideoRepresentationInit$=new K(void 0);this.currentAudioRepresentation$=new K(void 0);this.currentVideoSegmentLength$=new K(0);this.currentAudioSegmentLength$=new K(0);this.error$=new nn;this.lastConnectionType$=new K(void 0);this.lastConnectionReused$=new K(void 0);this.lastRequestFirstBytes$=new K(void 0);this.currentLiveTextRepresentation$=new K(null);this.isLive$=new K(!1);this.isActiveLive$=new K(!1);this.isLowLatency$=new K(!1);this.liveDuration$=new K(0);this.liveSeekableDuration$=new K(0);this.liveAvailabilityStartTime$=new K(0);this.liveStreamStatus$=new K(void 0);this.bufferLength$=new K(0);this.liveLatency$=new K(void 0);this.liveLoadBufferLength$=new K(0);this.livePositionFromPlayer$=new K(0);this.currentStallDuration$=new K(0);this.videoLastDataObtainedTimestamp$=new K(0);this.fetcherRecoverableError$=new nn;this.fetcherError$=new nn;this.liveStreamEndTimestamp=0;this.isUpdatingLive=!1;this.isJumpGapAfterSeekLive=!1;this.forceEnded$=new nn;this.gapWatchdogActive=!1;this.destroyController=new he;this.initManifest=Al(this.destroyController.signal,async function*(e,t,i){this.tracer.log("initManifest"),this.element=e,this.manifestUrlString=pe(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:ut.PARSER,message:"No playable video representations"})}.bind(this));this.updateManifest=Al(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:ut.NETWORK,message:"Failed to load manifest",thrown:n})});if(!e)return null;let t=null;try{t=hS(e??"",this.manifestUrlString)}catch(n){let o=sv(e)??{id:"ManifestParsing",category:ut.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)&&Ke()?.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 d="active";l||(d=u?"unpublished":"unexpectedly_down"),this.liveStreamStatus$.next(d)}let a={text:t.streams.text,video:[],audio:[]};for(let n of["video","audio"]){let u=t.streams[n].filter(({mime:d,codecs:p})=>i(n,d,p)),l=new Set(u.map(({codecs:d})=>d)),c=kS(l);if(c&&(a[n]=u.filter(({codecs:d})=>d.startsWith(c))),n==="video"){let d=this.tuning.preferHDR,p=a.video.some(f=>f.hdr),h=a.video.some(f=>!f.hdr);O.display.isHDR&&d&&p?a.video=a.video.filter(f=>f.hdr):h&&(a.video=a.video.filter(f=>!f.hdr))}}let s={...t,streams:a};return this.tracer.log("updateManifestEnd",Ia(s)),s}.bind(this));this.initRepresentations=Al(this.destroyController.signal,async function*(e,t,i){this.tracer.log("initRepresentationsStart",Ia({initialVideo:e,initialAudio:t,sourceHls:i})),Qi(this.manifest),Qi(this.element),this.representationSubscription.unsubscribe(),this.state$.startTransitionTo("representations_ready");let a=p=>{this.representationSubscription.add(vt(p,"error").pipe(sn(h=>!!this.element?.played.length)).subscribe(h=>{this.error$.next({id:"VideoSource",category:ut.VIDEO_PIPELINE,message:"Unexpected video source error",thrown:h})}))};this.source=this.tuning.useManagedMediaSource?wb():new MediaSource;let s=document.createElement("source");if(a(s),s.src=URL.createObjectURL(this.source),this.element.appendChild(s),this.tuning.useManagedMediaSource&&Cs())if(i){let p=document.createElement("source");a(p),p.type="application/x-mpegurl",p.src=i.url,this.element.appendChild(p)}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((p,h)=>[...p,...h.representations],[]);if(this.videoBufferManager=new fa("video",this.source,o,n),this.bufferManagers=[this.videoBufferManager],Ea(t)){let p=this.manifest.streams.audio.reduce((h,f)=>[...h,...f.representations],[]);this.audioBufferManager=new fa("audio",this.source,p,n),this.bufferManagers.push(this.audioBufferManager)}ya.isSupported(this.manifest.streams.text)&&!this.isLowLatency$.getValue()&&(this.liveTextManager=new ya(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(oi(...EM.map(p=>vt(this.element,p))).pipe(Wi(p=>this.element?_i(this.element.buffered,this.element.currentTime*1e3):0),Ta(),yM(p=>{p>this.tuning.dash.bufferEmptinessTolerance&&u()})).subscribe(this.bufferLength$)),this.representationSubscription.add(oi(vt(this.element,"ended"),this.forceEnded$).subscribe(()=>{u()})),this.isLive$.getValue()){this.subscription.add(this.liveDuration$.pipe(Ta()).subscribe(h=>this.liveStreamEndTimestamp=Rl())),this.subscription.add(vt(this.element,"pause").subscribe(()=>{this.livePauseWatchdogSubscription=Ll(1e3).subscribe(h=>{let f=ks(this.manifestUrlString,2);this.manifestUrlString=pe(this.manifestUrlString,f+1e3,2),this.liveStreamStatus$.getValue()==="active"&&this.updateManifest()}),this.subscription.add(this.livePauseWatchdogSubscription)})).add(vt(this.element,"play").subscribe(h=>this.livePauseWatchdogSubscription?.unsubscribe())),this.representationSubscription.add(Gi({isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe(Wi(({isActiveLive:h,isLowLatency:f})=>h&&f),Ta()).subscribe(h=>{this.isManualDecreasePlaybackInLive()||Pl(this.element,1)})),this.representationSubscription.add(Gi({bufferLength:this.bufferLength$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe(sn(({bufferLength:h,isActiveLive:f,isLowLatency:b})=>f&&b&&!!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 f=this.liveSeekableDuration$.getValue()-h/1e3;this.liveSeekableDuration$.next(Math.max(f,-1*this.tuning.dashCmafLive.maxLiveDuration)),this.liveDuration$.next(this.liveDuration$.getValue()+h/1e3)})),this.representationSubscription.add(Gi({isLive:this.isLive$,rtt:this.throughputEstimator.rtt$,bufferLength:this.bufferLength$,segmentServerLatency:this.videoBufferManager.currentLiveSegmentServerLatency$}).pipe(sn(({isLive:h})=>h),Ta((h,f)=>f.bufferLength<h.bufferLength),Wi(({rtt:h,bufferLength:f,segmentServerLatency:b})=>{let g=ks(this.manifestUrlString,2);return(h/2+f+b+g)/1e3})).subscribe(this.liveLatency$)),this.representationSubscription.add(Gi({liveBuffer:this.liveBuffer.smoothed$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).subscribe(({liveBuffer:h,isActiveLive:f,isLowLatency:b})=>{if(!b||!f)return;let g=this.tuning.dashCmafLive.lowLatency.maxTargetOffset,v=this.tuning.dashCmafLive.lowLatency.maxTargetOffsetDeviation,x=this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup,T=h-g;if(this.isManualDecreasePlaybackInLive())return;let w=1;Math.abs(T)>v&&(w=1+Math.sign(T)*x),Pl(this.element,w)})),this.representationSubscription.add(this.bufferLength$.subscribe(h=>{let f=0;if(h){let b=(this.element?.currentTime??0)*1e3;f=Math.min(...this.bufferManagers.map(v=>v.getLiveSegmentsToLoadState(this.manifest)?.to??b))-b}this.liveLoadBufferLength$.getValue()!==f&&this.liveLoadBufferLength$.next(f)}));let p=0;this.representationSubscription.add(Gi({liveLoadBufferLength:this.liveLoadBufferLength$,bufferLength:this.bufferLength$}).pipe(TM(1e3)).subscribe(async({liveLoadBufferLength:h,bufferLength:f})=>{if(!this.element||this.isUpdatingLive)return;let b=this.element.playbackRate,g=ks(this.manifestUrlString,2),v=Math.abs(this.livePositionFromPlayer$.getValue())*1e3,x=Math.min(v,this.tuning.dashCmafLive.normalizedTargetMinBufferSize*b),T=this.tuning.dashCmafLive.normalizedActualBufferOffset*b,w=this.tuning.dashCmafLive.normalizedLiveMinBufferSize*b,I=isFinite(h)?h:f,V=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),B=v<=this.tuning.live.activeLiveDelay;this.isActiveLive$.next(B);let N="none";if(V?N="active_low_latency":this.isLowLatency$.getValue()&&B?(this.bufferManagers.forEach(_=>_.proceedLowLatencyLive()),N="active_low_latency"):g!==0&&I<x?N="live_forward_buffering":I<x+w&&(N="live_with_target_offset"),isFinite(h)&&(p=h>p?h:p),N==="live_forward_buffering"||N==="live_with_target_offset"){let _=p-(x+T),S=this.normolizeLiveOffset(Math.trunc(g+_/b)),R=Math.abs(S-g),A=0;!h||R<=this.tuning.dashCmafLive.offsetCalculationError?A=g:S>0&&R>this.tuning.dashCmafLive.offsetCalculationError&&(A=S),this.manifestUrlString=pe(this.manifestUrlString,A,2)}(N==="live_with_target_offset"||N==="live_forward_buffering")&&(p=0,await this.updateLive())},h=>{this.error$.next({id:"updateLive",category:ut.VIDEO_PIPELINE,thrown:h,message:"Failed to update live with subscription"})}))}let l=oi(...this.bufferManagers.map(p=>p.fullyBuffered$)).pipe(Wi(()=>this.bufferManagers.every(p=>p.fullyBuffered$.getValue()))),c=oi(...this.bufferManagers.map(p=>p.onLastSegment$)).pipe(Wi(()=>this.bufferManagers.some(p=>p.onLastSegment$.getValue()))),d=Gi({allBuffersFull:l,someBufferEnded:c}).pipe(Ta(),Wi(({allBuffersFull:p,someBufferEnded:h})=>p&&h),sn(p=>p));if(this.representationSubscription.add(oi(this.forceEnded$,d).subscribe(()=>{if(this.source&&this.source.readyState==="open"&&Array.from(this.source.sourceBuffers).every(p=>!p.updating))try{this.source?.endOfStream()}catch(p){this.error$.next({id:"EndOfStream",category:ut.VIDEO_PIPELINE,message:"Failed to end MediaSource stream",thrown:p})}})),this.representationSubscription.add(oi(...this.bufferManagers.map(p=>p.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 p=this.tuning.dash.sourceOpenTimeout>=0;yield new Promise((h,f)=>{p&&(this.timeoutSourceOpenId=setTimeout(()=>{if(this.source?.readyState==="open"){h();return}this.tuning.dash.rejectOnSourceOpenTimeout?f(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 p=[this.manifest.duration??0,...(0,$l.default)((0,$l.default)([...this.manifest.streams.audio,...this.manifest.streams.video],h=>h.representations),h=>{let f=[];return h.duration&&f.push(h.duration),Se(h.segmentReference)&&h.segmentReference.totalSegmentsDurationMs&&f.push(h.segmentReference.totalSegmentsDurationMs),f})];this.source.duration=Math.max(...p)/1e3}this.audioBufferManager&&Ea(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=Ll(this.tuning.gapWatchdogInterval).subscribe(()=>this.jumpGap(),t=>{this.error$.next({id:"GapWatchdog",category:ut.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 Xs({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=ni.getLiveBufferSmoothedValue(this.tuning.dashCmafLive.lowLatency.maxTargetOffset,{...e.tuning.dashCmafLive.lowLatency.bufferEstimator}),this.initTracerSubscription()}async seekLive(e){Qi(this.element);let t=this.liveStreamStatus$.getValue()!=="active"?Rl()-this.liveStreamEndTimestamp:0,i=this.normolizeLiveOffset(e+t);this.isActiveLive$.next(i===0),this.manifestUrlString=pe(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(){Qi(this.element),this.state$.setState("running"),this.subscription.add(oi(...IM.map(e=>vt(this.element,e)),vt(window,"online")).subscribe(()=>this.tick(),e=>{this.error$.next({id:"DashVKPlayer",category:ut.WTF,message:"Internal logic error",thrown:e})})),this.subscription.add(vt(this.element,"progress").subscribe(()=>{this.element&&this.element.readyState===2&&!this.element.seeking&&(this.element.currentTime=this.element.currentTime)})),this.subscription.add(vt(this.element,"waiting").subscribe(()=>{this.element&&this.element.readyState===2&&!this.element.seeking&&Dt(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=Rl(),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,c=u<s&&a-n>this.tuning.dash.crashOnStallTWithoutDataTimeout,d=this.audioBufferManager&&l<s&&a-o>this.tuning.dash.crashOnStallTWithoutDataTimeout;if((c||d)&&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 p=this.normolizeLiveOffset(-1*this.livePositionFromPlayer$.getValue()*1e3);this.seekLive(p).catch(h=>{this.error$.next({id:"stallIntervalCallback",category:ut.VIDEO_PIPELINE,message:"stallIntervalCallback failed",thrown:h})}),i.liveLastOffset=p}else{let p=this.element.currentTime*1e3;this.videoBufferManager?.maintain(p),this.audioBufferManager?.maintain(p),i.position=p}this.tracer.log("stallIntervalCallback",Ia(i))};this.stallWatchdogSubscription?.unsubscribe(),this.stallWatchdogSubscription=Ll(50).subscribe(e,t=>{this.error$.next({id:"StallWatchdogCallback",category:ut.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){Qi(this.element),Qi(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),Dt(this.element.buffered,i)||await Promise.all([this.videoBufferManager.abort(),this.audioBufferManager?.abort()]),!(LS(this.element)||LS(this.videoBufferManager))&&(this.videoBufferManager.maintain(i),this.audioBufferManager?.maintain(i),this.element.currentTime=i/1e3,this.tracer.log("seek",Ia({requestedPosition:e,forcePrecise:t,position:i})))}warmUpMediaSourceIfNeeded(e=this.element?.currentTime){Ea(this.element)&&Ea(this.source)&&Ea(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=SM(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",Ia(i)))}}};var un=class{constructor(e,t){this.fov=e,this.orientation=t}};var ln=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 $S=`attribute vec2 a_vertex;
124
+ `})|(?<privateuse2>${e}))$`.replace(/[\s\t\n]/g,"");return new RegExp(p,"i")}var dd=C(kt(),1);import{videoSizeToQuality as zD}from"@vkontakte/videoplayer-shared";var ST=({id:s,width:e,height:t,bitrate:i,fps:r,quality:a,streamId:n})=>{let o=(a?Vt(a):void 0)??zD({width:e,height:t});return o&&{id:s,quality:o,bitrate:i,size:{width:e,height:t},fps:r,streamId:n}},vT=({id:s,bitrate:e})=>({id:s,bitrate:e}),yT=({language:s,label:e},{id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:s,label:e}),TT=({language:s,label:e,id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:s,label:e}),pd=({id:s,language:e,label:t,codecs:i,isDefault:r})=>({id:s,language:e,label:t,codec:(0,dd.default)(i.split("."),0),isDefault:r}),hd=({id:s,language:e,label:t,hdr:i,codecs:r})=>({id:s,language:e,hdr:i,label:t,codec:(0,dd.default)(r.split("."),0)}),fd=s=>"url"in s,We=s=>s.type==="template",fa=s=>s instanceof DOMException&&(s.name==="AbortError"||s.code===20);var IT=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},zi=(s,e)=>{for(let t of s)if(e(t))return t;return null},GD=(s,e)=>{let t=0;return()=>{let i=Date.now();i-t>=e&&(s(),t=i)}},xT=s=>{let e=!1,t=GD(()=>{e=!0},s);return()=>{try{return t(),e}finally{e=!1}}},$o=s=>{let e=[];for(let t=0;t<s.length;t++){let i=Math.floor(s.start(t)*1e3),r=Math.ceil(s.end(t)*1e3);e.push(i,r)}return e};var PT=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},ti=(s,e)=>{let t=s;t=(0,md.default)(t,"$$","$");let i={RepresentationID:e.representationId,Number:e.segmentNumber,Bandwidth:e.bandwidth,Time:e.segmentTime};for(let[r,a]of(0,wT.default)(i)){let n=new RegExp(`\\$${r}(?:%0(\\d+)d)?\\$`,"g");t=(0,md.default)(t,n,(o,u)=>ET(a)?o:ET(u)?a:(0,AT.default)(a,parseInt(u,10),"0"))}return t},RT=(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(R=>R.textContent?.trim()??""),o=(0,kT.default)(n,0)??"",u=a.getAttribute("type")==="dynamic",l=a.getAttribute("availabilityStartTime"),p=a.getAttribute("publishTime"),c=a.getElementsByTagName("vk:Attrs")[0],d=c?.getElementsByTagName("vk:XLatestSegmentPublishTime")[0].textContent,h=c?.getElementsByTagName("vk:XStreamIsLive")[0].textContent,f=c?.getElementsByTagName("vk:XStreamIsUnpublished")[0].textContent,b=c?.getElementsByTagName("vk:XPlaybackDuration")[0].textContent,g;u&&(g={availabilityStartTime:l?new Date(l).getTime():0,publishTime:p?new Date(p).getTime():0,latestSegmentPublishTime:d?new Date(d).getTime():0,streamIsAlive:h==="yes",streamIsUnpublished:f==="yes"});let S,T=a.getAttribute("mediaPresentationDuration"),v=[...a.getElementsByTagName("Period")],w=v.reduce((R,y)=>({...R,[y.id]:y.children}),{}),P=v.reduce((R,y)=>({...R,[y.id]:y.getAttribute("duration")}),{});T?S=PT(T):(0,bd.default)(P).filter(R=>R).length&&!u?S=(0,bd.default)(P).reduce((R,y)=>R+(PT(y)??0),0):b&&(S=parseInt(b,10));let M=0,O=a.getAttribute("profiles")?.split(",")??[];for(let R of v.map(y=>y.id))for(let y of w[R]){let D=y.getAttribute("id")??"id"+(M++).toString(10),I=y.getAttribute("mimeType")??"",x=y.getAttribute("codecs")??"",k=y.getAttribute("contentType")??I?.split("/")[0],re=y.getAttribute("profiles")?.split(",")??[],B=gT(y.getAttribute("lang")??"")??{},q=y.querySelector("Label")?.textContent?.trim()??void 0,K=y.querySelectorAll("Representation"),ne=y.querySelector("SegmentTemplate"),Se=y.querySelector("Role")?.getAttribute("value")??void 0,oe=k,Z={id:D,language:B.language,isDefault:Se==="main",label:q,codecs:x,hdr:oe==="video"&&Dr(x),mime:I,representations:[]};for(let L of K){let V=L.getAttribute("lang")??void 0,we=q??y.getAttribute("label")??L.getAttribute("label")??void 0,ve=L.querySelector("BaseURL")?.textContent?.trim()??"",te=new URL(ve||o,e).toString(),Te=L.getAttribute("mimeType")??I,rt=L.getAttribute("codecs")??x??"",qe;if(k==="text"){let ce=L.getAttribute("id")||"",st=B.privateuse?.includes("x-auto")||ce.includes("_auto"),Pe=L.querySelector("SegmentTemplate");if(Pe){let yt={representationId:L.getAttribute("id")??void 0,bandwidth:L.getAttribute("bandwidth")??void 0},qt=parseInt(L.getAttribute("bandwidth")??"",10)/1e3,Ht=parseInt(Pe.getAttribute("startNumber")??"",10)??1,at=parseInt(Pe.getAttribute("timescale")??"",10),wi=Pe.querySelectorAll("SegmentTimeline S")??[],nt=Pe.getAttribute("media");if(!nt)continue;let jt=[],zt=0,Gt="",ot=0,Tt=Ht,W=0;for(let ue of wi){let He=parseInt(ue.getAttribute("d")??"",10),ie=parseInt(ue.getAttribute("r")??"",10)||0,Ae=parseInt(ue.getAttribute("t")??"",10);W=Number.isFinite(Ae)?Ae:W;let je=He/at*1e3,ut=W/at*1e3;for(let fe=0;fe<ie+1;fe++){let ke=ti(nt,{...yt,segmentNumber:Tt.toString(10),segmentTime:(W+fe*He).toString(10)}),lt=(ut??0)+fe*je,xt=lt+je;Tt++,jt.push({time:{from:lt,to:xt},url:ke})}W+=(ie+1)*He,zt+=(ie+1)*je}ot=W/at*1e3,Gt=ti(nt,{...yt,segmentNumber:Tt.toString(10),segmentTime:W.toString(10)});let It={time:{from:ot,to:1/0},url:Gt},Ie={type:"template",baseUrl:te,segmentTemplateUrl:nt,initUrl:"",totalSegmentsDurationMs:zt,segments:jt,nextSegmentBeyondManifest:It,timescale:at};qe={id:ce,kind:"text",segmentReference:Ie,profiles:[],duration:S,bitrate:qt,mime:"",codecs:"",width:0,height:0,isAuto:st}}else qe={id:ce,isAuto:st,kind:"text",url:te}}else{let ce=L.getAttribute("contentType")??Te?.split("/")[0]??k,st=y.getAttribute("profiles")?.split(",")??[],Pe=parseInt(L.getAttribute("width")??"",10),yt=parseInt(L.getAttribute("height")??"",10),qt=parseInt(L.getAttribute("bandwidth")??"",10)/1e3,Ht=L.getAttribute("frameRate")??"",at=L.getAttribute("quality")??void 0,wi=Ht?Mo(Ht):void 0,nt=L.getAttribute("id")??"id"+(M++).toString(10),jt=ce==="video"?`${yt}p`:ce==="audio"?`${qt}Kbps`:rt,zt=`${nt}@${jt}`,Gt=[...O,...re,...st],ot,Tt=L.querySelector("SegmentBase"),W=L.querySelector("SegmentTemplate")??ne;if(Tt){let Ie=L.querySelector("SegmentBase Initialization")?.getAttribute("range")??"",[ue,He]=Ie.split("-").map(ke=>parseInt(ke,10)),ie={from:ue,to:He},Ae=L.querySelector("SegmentBase")?.getAttribute("indexRange"),[je,ut]=Ae?Ae.split("-").map(ke=>parseInt(ke,10)):[],fe=Ae?{from:je,to:ut}:void 0;ot={type:"byteRange",url:te,initRange:ie,indexRange:fe}}else if(W){let Ie={representationId:L.getAttribute("id")??void 0,bandwidth:L.getAttribute("bandwidth")??void 0},ue=parseInt(W.getAttribute("timescale")??"",10),He=W.getAttribute("initialization")??"",ie=W.getAttribute("media"),Ae=parseInt(W.getAttribute("startNumber")??"",10)??1,je=ti(He,Ie);if(!ie)throw new ReferenceError("No media attribute in SegmentTemplate");let ut=W.querySelectorAll("SegmentTimeline S")??[],fe=[],ke=0,lt="",xt=0;if(ut.length){let Qt=Ae,le=0;for(let ct of ut){let me=parseInt(ct.getAttribute("d")??"",10),ze=parseInt(ct.getAttribute("r")??"",10)||0,Wt=parseInt(ct.getAttribute("t")??"",10);le=Number.isFinite(Wt)?Wt:le;let Ai=me/ue*1e3,Mu=le/ue*1e3;for(let Yt=0;Yt<ze+1;Yt++){let $u=ti(ie,{...Ie,segmentNumber:Qt.toString(10),segmentTime:(le+Yt*me).toString(10)}),Jr=(Mu??0)+Yt*Ai,Bu=Jr+Ai;Qt++,fe.push({time:{from:Jr,to:Bu},url:$u})}le+=(ze+1)*me,ke+=(ze+1)*Ai}xt=le/ue*1e3,lt=ti(ie,{...Ie,segmentNumber:Qt.toString(10),segmentTime:le.toString(10)})}else if(QD(S)){let le=parseInt(W.getAttribute("duration")??"",10)/ue*1e3,ct=Math.ceil(S/le),me=0;for(let ze=1;ze<ct;ze++){let Wt=ti(ie,{...Ie,segmentNumber:ze.toString(10),segmentTime:me.toString(10)});fe.push({time:{from:me,to:me+le},url:Wt}),me+=le}xt=me,lt=ti(ie,{...Ie,segmentNumber:ct.toString(10),segmentTime:me.toString(10)})}let Lu={time:{from:xt,to:1/0},url:lt};ot={type:"template",baseUrl:te,segmentTemplateUrl:ie,initUrl:je,totalSegmentsDurationMs:ke,segments:fe,nextSegmentBeyondManifest:Lu,timescale:ue}}else throw new ReferenceError("Unknown MPD segment referencing type");if(!ce||!Te)continue;let It={video:"video",audio:"audio",text:"text"}[ce];if(!It)continue;oe||=It,qe={id:zt,kind:It,segmentReference:ot,profiles:Gt,duration:S,bitrate:qt,mime:Te,codecs:rt,width:Pe,height:yt,fps:wi,quality:at}}Z.language||=V,Z.label||=we,Z.mime||=Te,Z.codecs||=rt,Z.hdr||=oe==="video"&&Dr(rt),Z.representations.push(qe)}if(oe){let L=r[oe].find(V=>V.id===Z.id);if(L&&Z.representations.every(V=>We(V.segmentReference)))for(let V of L.representations){let ve=Z.representations.find(Te=>Te.id===V.id)?.segmentReference,te=V.segmentReference;te.segments.push(...ve.segments),te.nextSegmentBeyondManifest=ve.nextSegmentBeyondManifest}else r[oe].push(Z)}}return{duration:S,streams:r,baseUrls:n,live:g}};import{isNonNullable as LT}from"@vkontakte/videoplayer-shared";var _=(s,e)=>LT(s)&&LT(e)&&s.readyState==="open"&&WD(s,e);function WD(s,e){for(let t=0;t<s.activeSourceBuffers.length;++t)if(s.activeSourceBuffers[t]===e)return!0;return!1}import{fromEvent as YD,Subscription as KD}from"@vkontakte/videoplayer-shared";var Bo=class{constructor(e,t){this.lastUpdateTs=0;this.lastCallTs=0;this.prevRanges=[];this.subscription=new KD;this.mediaSource=e,this.sourceBuffer=t,this.subscription.add(YD(this.sourceBuffer,"updateend").subscribe(()=>this.updateend()))}updateend(){if(!_(this.mediaSource,this.sourceBuffer))return;let{prevRanges:e}=this,t=$o(this.sourceBuffer.buffered);this.prevRanges=t,this.isRangesRemoved(e,t)&&(this.lastUpdateTs=Date.now())}isRangesRemoved(e,t){if(e.length!==t.length)return!0;for(let i=0;i<e.length;i+=2){let r=e[i],a=e[i+1],n=t[i],o=t[i+1];if(n>r||o<a)return!0}return!1}wasUpdated(){let{lastCallTs:e,lastUpdateTs:t}=this;return this.lastCallTs=Date.now(),e<=t}destroy(){this.subscription.unsubscribe()}};var ma=class{constructor(e,t,i,{fetcher:r,tuning:a,getCurrentPosition:n,isActiveLowLatency:o,compatibilityMode:u=!1,manifest:l}){this.currentLiveSegmentServerLatency$=new Qi(0);this.currentLowLatencySegmentLength$=new Qi(0);this.currentSegmentLength$=new Qi(0);this.onLastSegment$=new Qi(!1);this.fullyBuffered$=new Qi(!1);this.playingRepresentation$=new Qi(void 0);this.playingRepresentationInit$=new Qi(void 0);this.error$=new JD;this.gaps=[];this.subscription=new ZD;this.allInitsLoaded=!1;this.activeSegments=new Set;this.downloadAbortController=new ee;this.switchAbortController=new ee;this.destroyAbortController=new ee;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.sourceBufferBufferedDiff=null;this.startWith=Si(this.destroyAbortController.signal,async function*(e){let t=this.representations.get(e);tt(t,`Cannot find representation ${e}`),this.playingRepresentationId=e,this.downloadingRepresentationId=e,this.sourceBuffer=this.mediaSource.addSourceBuffer(`${t.mime}; codecs="${t.codecs}"`),this.sourceBufferTaskQueue=new ky(this.sourceBuffer),this.sourceBufferBufferedDiff=new Bo(this.mediaSource,this.sourceBuffer),this.subscription.add(MT(this.sourceBuffer,"error").subscribe(()=>this.error$.next({id:"SourceBuffer",category:Gi.VIDEO_PIPELINE,message:"SourceBuffer Error event fired"}))),this.subscription.add(this.sourceBufferTaskQueue.bufferFull$.subscribe(n=>{let o=this.getCurrentPosition();if(!this.sourceBuffer||!o||!_(this.mediaSource,this.sourceBuffer))return;let u=Math.min(this.bufferLimit,Mr(this.sourceBuffer.buffered)*.8);this.bufferLimit=u;let l=de(this.sourceBuffer.buffered,o),p=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(o,n*2,l<p).catch(c=>{this.handleAsyncError(c,"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);tt(i,"No init buffer for starting representation"),tt(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=Si(this.destroyAbortController.signal,async function*(e,t=!1){if(!_(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);tt(i,`No such representation ${e}`);let r=this.segments.get(e),a=this.initData.get(e);if(Ne(a)||Ne(r)?yield this.loadInit(i,"high",!1):a instanceof Promise&&(yield a),r=this.segments.get(e),tt(r,"No segments for starting representation"),a=this.initData.get(e),!(!a||!(a instanceof ArrayBuffer)||!this.sourceBuffer||!_(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();Cr(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=Si(this.destroyAbortController.signal,async function*(e,t=!1){if(!_(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);tt(i,`No such representation ${e}`);let r=this.segments.get(e),a=this.initData.get(e);if(Ne(a)||Ne(r)?yield this.loadInit(i,"high",!1):a instanceof Promise&&(yield a),r=this.segments.get(e),tt(r,"No segments for starting representation"),a=this.initData.get(e),!(!a||!(a instanceof ArrayBuffer)||!this.sourceBuffer||!_(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();Cr(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=Si(this.destroyAbortController.signal,async function*(e){let t=(0,Vo.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 p=this.representations.get(u);if(!p||!We(p.segmentReference))return;let c=this.getActualLiveStartingSegments(p.segmentReference);this.segments.set(p.id,c)}let i=this.switchingToRepresentationId??this.downloadingRepresentationId,r=this.representations.get(i);tt(r);let a=this.segments.get(i);tt(a,"No segments for starting representation");let n=this.initData.get(i);if(tt(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(p=>[p.id,null])),this.segments=new Map,this.parsedInitData=new Map,this.representations=new Map(i.map(p=>[p.id,p])),this.kind=e,this.mediaSource=t,this.sourceBuffer=null}switchToWithPreviousAbort(e,t=!1){!_(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId||(this.switchAbortController.abort(),this.switchAbortController=new ee,Si(this.switchAbortController.signal,async function*(i,r=!1){this.switchingToRepresentationId=i;let a=this.representations.get(i);tt(a,`No such representation ${i}`);let n=this.segments.get(i),o=this.initData.get(i);if(Ne(o)||Ne(n)?yield this.loadInit(a,"high",!1):o instanceof Promise&&(yield o),n=this.segments.get(i),tt(n,"No segments for starting representation"),o=this.initData.get(i),!(!(o instanceof ArrayBuffer)||!this.sourceBuffer||!_(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();Cr(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(){!Ne(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 ee,this.abortBuffer()}maintain(e=this.getCurrentPosition()){if(Ne(e)||Ne(this.downloadingRepresentationId)||Ne(this.playingRepresentationId)||Ne(this.sourceBuffer)||!_(this.mediaSource,this.sourceBuffer)||Cr(this.switchingToRepresentationId)||this.isSeekingLive)return;let t=this.representations.get(this.downloadingRepresentationId),i=this.segments.get(this.downloadingRepresentationId);if(tt(t,`No such representation ${this.downloadingRepresentationId}`),!i)return;let r=i.find(p=>e>=p.time.from&&e<p.time.to);Cr(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 p=de(this.sourceBuffer.buffered,e),c=r?r.time.to+n:-1/0;r&&r.time.to-e<this.tuning.dash.maxSegmentDurationLeftToSelectNextSegment&&p>=r.time.to-e+n&&(a=c)}if(isFinite(this.bufferLimit)&&Mr(this.sourceBuffer.buffered)>=this.bufferLimit){let p=de(this.sourceBuffer.buffered,e),c=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(e,1/0,p<c).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 p="auto";if(this.tuning.dash.useFetchPriorityHints&&r)if((0,Co.default)(u,r))p="high";else{let c=(0,Vr.default)(u,0);c&&c.time.from-r.time.to>=this.forwardBufferTarget/2&&(p="low")}this.loadSegments(u,t,p).catch(c=>{this.handleAsyncError(c,"loadSegments")})}(!this.preloadOnly&&!this.allInitsLoaded&&r&&r.status==="fed"&&!u?.length&&de(this.sourceBuffer.buffered,e)>3e3||this.isActiveLowLatency())&&this.loadNextInit();let l=(0,Vr.default)(i,-1);!this.isLive&&l&&(this.fullyBuffered$.next(l.time.to-e-de(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,persistent:!0}),i=a.time.to;Cr(t.duration)&&t.duration-i>0&&!this.isLive&&this.gaps.push({representation:t.id,from:i,to:t.duration,persistent:!0})}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,Vo.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,Vo.default)(e?.streams[this.kind],i=>i.representations)??[];if(![...this.segments.values()].every(i=>!i.length))for(let i of t){if(!i||!We(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,Vr.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;tt(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(!We(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=ti(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.sourceBufferBufferedDiff?.destroy(),this.gapDetectionIdleCallback&&_t&&_t(this.gapDetectionIdleCallback),this.initLoadIdleCallback&&_t&&_t(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.checkEjectedSegments(),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:c,time:{from:d,to:h}},f)=>{let b=d<=i&&h>=i,g=d>i||b||f===0&&i===0,S=Math.min(this.forwardBufferTarget,this.bufferLimit),T=this.preloadOnly&&d<=i+S||h<=i+S;return(c==="none"||c==="partially_ejected"&&g&&T&&this.sourceBuffer&&_(this.mediaSource,this.sourceBuffer)&&!(Fe(this.sourceBuffer.buffered,d)&&Fe(this.sourceBuffer.buffered,h)))&&g&&T});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,p=this.preloadOnly?this.forwardBufferTarget:0;for(let c=r;c<a.length&&(n<=l||o<=p);c++){let d=a[c];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"){We(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 Si(o,async function*(){let p=Sd(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(c=>setTimeout(c,p))}.bind(this))(),o.aborted&&this.abortActiveSegments([e]));try{let p=await this.fetcher.fetch(n,{range:a,signal:o,onProgress:u,priority:i,isLowLatency:this.isActiveLowLatency()});if(this.lastDataObtainedTimestampMs=Do(),!p)return;let c=new DataView(p),d=ha(t.mime);if(!isFinite(r.segment.time.to)){let b=t.segmentReference.timescale;r.segment.time.to=d.getChunkEndTime(c,b)}u&&r.feedingBytes&&l?await Promise.all(l):await this.sourceBufferTaskQueue.append(c,o);let{serverDataReceivedTimestamp:h,serverDataPreparedTime:f}=d.getServerLatencyTimestamps(c);h&&f&&this.currentLiveSegmentServerLatency$.next(f-h),r.segment.status="downloaded",this.onSegmentFullyAppended(r,t.id),this.failedDownloads=0}catch(p){this.abortActiveSegments([e]),fa(p)||(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())We(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 Si(n,async function*(){let u=Sd(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(l=>{this.loadByteRangeSegmentsTimeoutId=window.setTimeout(l,u),MT(window,"online").pipe(XD()).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=Do(),this.failedDownloads=0}catch(u){this.abortActiveSegments(e),fa(u)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}}prepareByteRangeFetchSegmentParams(e,t){if(We(t.segmentReference))throw new Error("Representation is not byte range type");let i=t.segmentReference.url,r={from:(0,Vr.default)(e,0).byte.from,to:(0,Vr.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=Do(),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:Gi.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:l})}}}}prepareTemplateFetchSegmentParams(e,t){if(!We(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,p)=>{if(!a.aborted)try{this.lastDataObtainedTimestampMs=Do();let c=this.onSomeTemplateDataLoaded({dataView:l,loaded:p,signal:a,onSegmentAppendFailed:()=>this.abort(),representationId:t.id});n.push(c)}catch(c){this.error$.next({id:"SegmentFeeding",category:Gi.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:c})}}:void 0;return{url:r,signal:a,onProgress:u,onProgressTasks:n}}abortActiveSegments(e){for(let t of this.activeSegments)(0,Co.default)(e,t.segment)&&this.abortSegment(t.segment)}async onSomeTemplateDataLoaded({dataView:e,representationId:t,loaded:i,onSegmentAppendFailed:r,signal:a}){if(!this.activeSegments.size||!_(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),p=ha(n.mime).parseFeedableSegmentChunk(l,this.isLive);p?.byteLength&&(u.status="partially_fed",o.feedingBytes+=p.byteLength,await this.sourceBufferTaskQueue.append(p),o.fedBytes+=p.byteLength)}}}}async onSomeByteRangesDataLoaded({dataView:e,representationId:t,globalFrom:i,loaded:r,signal:a,onSegmentAppendFailed:n}){if(!this.activeSegments.size||!_(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,p=l.byte.from-i,c=l.byte.to-i,d=c-p+1,h=p<r,f=c<=r;if(h){if(l.status==="downloading"&&f){l.status="downloaded";let b=new DataView(e.buffer,e.byteOffset+p,d);await this.sourceBufferTaskQueue.append(b,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-p),u.loadedBytes>u.feedingBytes)){let b=new DataView(e.buffer,e.byteOffset+p+u.feedingBytes,u.loadedBytes-u.feedingBytes),g=u.loadedBytes===d?b:ha(o.mime).parseFeedableSegmentChunk(b);g?.byteLength&&(l.status="partially_fed",u.feedingBytes+=g.byteLength,await this.sourceBufferTaskQueue.append(g,a)&&!a.aborted?(u.fedBytes+=g.byteLength,u.fedBytes===d&&this.onSegmentFullyAppended(u,t)):await n())}}}}onSegmentFullyAppended(e,t){if(!(Ne(this.sourceBuffer)||!_(this.mediaSource,this.sourceBuffer))){!this.isLive&&F.browser.isSafari&&this.tuning.useSafariEndlessRequestBugfix&&(Fe(this.sourceBuffer.buffered,e.segment.time.from,100)&&Fe(this.sourceBuffer.buffered,e.segment.time.to,100)||this.error$.next({id:"EmptyAppendBuffer",category:Gi.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",fd(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=Lr(()=>(0,$T.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?Si(this.destroyAbortController.signal,async function*(){let o=Sd(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(u=>setTimeout(u,o))}.bind(this))():Promise.resolve()).then(()=>this.fetcher.fetchRepresentation(e.segmentReference,ha(e.mime),r)).then(o=>{if(!o)return;let{init:u,dataView:l,segments:p}=o,c=l.buffer.slice(l.byteOffset,l.byteOffset+l.byteLength);this.initData.set(e.id,c);let d=p;this.isLive&&We(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:Gi.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||!_(this.mediaSource,this.sourceBuffer)||!this.playingRepresentationId||Ne(e))return!1;this.checkEjectedSegments();let r=[],a=0,n=o=>{if(a>=t)return;r.push({...o.time});let u=fd(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,p=u.time.from>=e+Math.min(this.forwardBufferTarget,this.bufferLimit);(l||p)&&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,p=0;for(let c of this.segments.values())for(let d of c)(0,Co.default)(["none","partially_ejected"],d.status)&&Math.round(d.time.from)<=Math.round(u)&&Math.round(d.time.to)>=Math.round(l)&&p++;if(p===this.segments.size){let c={time:{from:u,to:l},url:"",status:"none"};n(c)}}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=IT(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||!_(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||!_(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||!_(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||!_(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length||Ne(e)?0:de(this.sourceBuffer.buffered,e)}detectGaps(e,t){if(!this.sourceBuffer||!_(this.mediaSource,this.sourceBuffer))return;let{buffered:i}=this.sourceBuffer;this.tuning.useRefactoredSearchGap&&(this.gaps=this.gaps.filter(a=>{if(a.persistent)return!0;let n=Math.round(a.from),o=Math.round(a.to);for(let u=0;u<i.length;u++)if(n>=Math.round(i.start(u)*1e3)&&o<=Math.round(i.end(u)*1e3))return!1;return!0}));let r={representation:e,from:t.time.from,to:t.time.to,persistent:!1};for(let a=0;a<i.length;a++){let n=i.start(a)*1e3,o=i.end(a)*1e3;if(!(o<=t.time.from||n>=t.time.to)){if(n<=t.time.from&&o>=t.time.to){r=void 0;break}o>t.time.from&&o<t.time.to&&(r.from=o),n<t.time.to&&n>t.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||!_(this.mediaSource,this.sourceBuffer))){if(!this.tuning.useRefactoredSearchGap)for(let i=0;i<this.sourceBuffer.buffered.length;i++)this.gaps=this.gaps.filter(r=>r.persistent||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=Lr(()=>{try{this.detectGaps(e,t)}catch(i){this.error$.next({id:"GapDetection",category:Gi.WTF,message:"detectGaps threw",thrown:i})}finally{this.gapDetectionIdleCallback=null}})}}checkEjectedSegments(){if(Ne(this.sourceBuffer)||!_(this.mediaSource,this.sourceBuffer)||Ne(this.playingRepresentationId)||this.sourceBufferBufferedDiff&&!this.sourceBufferBufferedDiff.wasUpdated())return;let e=$o(this.sourceBuffer.buffered),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=!1,l=0;for(let p=0;p<e.length;p+=2){let c=e[p],d=e[p+1];u||(u=c-t<=n&&d+t>=o),(n>=c&&n<d-t||o>c+t&&o<=d)&&(l+=1)}u||(l===1?r.status="partially_ejected":this.gaps.some(p=>p.from===r.time.from||p.to===r.time.to)?r.status="partially_ejected":r.status="none")}}handleAsyncError(e,t){this.error$.next({id:t,category:Gi.VIDEO_PIPELINE,thrown:e,message:"Something went wrong"})}};var vi=s=>{let e=new URL(s);return e.searchParams.set("quic","1"),e.toString()};var Oo=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}};import{abortable as ba,assertNever as BT,fromEvent as DT,merge as e0,now as ga,Subject as CT,ValueSubject as vd,flattenObject as Or,ErrorCategory as Sa,SubscriptionRemovable as t0}from"@vkontakte/videoplayer-shared";var _o=s=>{let e=new URL(s);return e.searchParams.set("enable-subtitles","yes"),e.toString()};var No=class{constructor({throughputEstimator:e,requestQuic:t,tracer:i,compatibilityMode:r=!1,useEnableSubtitlesParam:a=!1}){this.lastConnectionType$=new vd(void 0);this.lastConnectionReused$=new vd(void 0);this.lastRequestFirstBytes$=new vd(void 0);this.recoverableError$=new CT;this.error$=new CT;this.abortAllController=new ee;this.subscription=new t0;this.fetchManifest=ba(this.abortAllController.signal,async function*(e){let t=this.tracer.createComponentTracer("FetchManifest"),i=e;this.requestQuic&&(i=vi(i)),!this.compatibilityMode&&this.useEnableSubtitlesParam&&(i=_o(i));let r=yield this.doFetch(i,{signal:this.abortAllController.signal}).catch(Fo);return r?(t.log("success",Or({url:i,message:"Request successfully executed"})),t.end(),this.onHeadersReceived(r.headers),r.text()):(t.error("error",Or({url:i,message:"No data in request manifest"})),t.end(),null)}.bind(this));this.fetch=ba(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,p=new Headers,c=this.tracer.createComponentTracer("Fetch");if(i)switch(t){case 0:{p.append("Range",`bytes=${i.from}-${i.to}`);break}case 1:{let D=new URL(l,location.href);D.searchParams.append("bytes",`${i.from}-${i.to}`),l=D.toString();break}default:BT(t)}this.requestQuic&&(l=vi(l));let d=this.abortAllController.signal,h;if(n){let D=new ee;if(h=e0(DT(this.abortAllController.signal,"abort"),DT(n,"abort")).subscribe(()=>{try{D.abort()}catch(I){Fo(I)}}),this.abortAllController.signal.aborted||n.aborted)try{D.abort()}catch(I){Fo(I)}d=D.signal}let f=ga();c.log("startRequest",Or({url:l,priority:a,rangeMethod:t,range:i,isLowLatency:u,requestStartedAt:f}));let b=yield this.doFetch(l,{priority:a,headers:p,signal:d}),g=ga();if(!b)return c.error("error",{message:"No response in request"}),c.end(),this.unsubscribeAbortSubscription(h),null;if(this.throughputEstimator?.addRawRtt(g-f),!b.ok||!b.body){this.unsubscribeAbortSubscription(h);let D=`Fetch error ${b.status}: ${b.statusText}`;return c.error("error",{message:D}),c.end(),Promise.reject(new Error(`Fetch error ${b.status}: ${b.statusText}`))}if(this.onHeadersReceived(b.headers),!r&&!o){this.unsubscribeAbortSubscription(h);let D=ga(),I={requestStartedAt:f,requestEndedAt:D,duration:D-f};return c.log("endRequest",Or(I)),c.end(),b.arrayBuffer()}let[S,T]=b.body.tee(),v=S.getReader();o&&this.throughputEstimator?.trackStream(T,u);let w=0,P=new Uint8Array(0),M=!1,O=D=>{this.unsubscribeAbortSubscription(h),M=!0,Fo(D)},E=ba(d,async function*({done:D,value:I}){if(w===0&&this.lastRequestFirstBytes$.next(ga()-f),d.aborted){this.unsubscribeAbortSubscription(h);return}if(!D&&I){let x=new Uint8Array(P.length+I.length);x.set(P),x.set(I,P.length),P=x,w+=I.byteLength,r?.(new DataView(P.buffer),w),yield v?.read().then(E,O)}}.bind(this));yield v?.read().then(E,O),this.unsubscribeAbortSubscription(h);let R=ga(),y={failed:M,requestStartedAt:f,requestEndedAt:R,duration:R-f};return M?(c.error("endRequest",Or(y)),c.end(),null):(c.log("endRequest",Or(y)),c.end(),P.buffer)}.bind(this));this.fetchByteRangeRepresentation=ba(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,p;e.indexRange&&(l=e.indexRange.from,p=e.indexRange.to,u=a+1===l,u&&(n=Math.min(l,r),o=Math.max(p,a))),n=Math.min(n,0);let c=yield this.fetch(e.url,{range:{from:n,to:o},priority:i,measureThroughput:!1});if(!c)return null;let d=new DataView(c,r-n,a-n+1);if(!t.validateData(d))throw new Error("Invalid media file");let h=t.parseInit(d),f=e.indexRange??t.getIndexRange(h);if(!f)throw new ReferenceError("No way to load representation index");let b;if(u)b=new DataView(c,f.from-n,f.to-f.from+1);else{let S=yield this.fetch(e.url,{range:f,priority:i,measureThroughput:!1});if(!S)return null;b=new DataView(S)}let g=t.parseSegments(b,h,f);return{init:h,dataView:new DataView(c),segments:g}}.bind(this));this.fetchTemplateRepresentation=ba(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}=Oo(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:BT(r)}}destroy(){this.abortAllController.abort(),this.subscription.unsubscribe(),this.tracer.end()}async doFetch(e,t){let i=await vt(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:Sa.FATAL});break;case 8:this.recoverableError$.next({id:"VideoDataLinkBlockedForFloodError",message:"Url blocked for flood",category:Sa.FATAL});break;case 18:this.recoverableError$.next({id:"VideoDataLinkIllegalIpChangeError",message:"Client IP has changed",category:Sa.FATAL});break;case 21:this.recoverableError$.next({id:"VideoDataLinkIllegalHostChangeError",message:"Request HOST has changed",category:Sa.FATAL});break;default:this.error$.next({id:"GeneralVideoDataFetchError",message:`Generic video data fetch error (${a})`,category:Sa.FATAL})}}unsubscribeAbortSubscription(e){e&&(e.unsubscribe(),this.subscription.remove(e))}},Fo=s=>{if(!fa(s))throw s};var ii=(s,e,t)=>t*e+(1-t)*s,yd=(s,e)=>s.reduce((t,i)=>t+i,0)/e,VT=(s,e,t,i)=>{let r=0,a=t,n=yd(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};import{isNullable as i0,ValueSubject as OT}from"@vkontakte/videoplayer-shared";var yi=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 OT(e.initial),this.debounced$=new OT(e.initial);let t=e.label??"value"+Math.random().toString(16).substring(2,6);this.rawSeries$=new Ge(`raw_${t}`),this.smoothedSeries$=new Ge(`smoothed_${t}`),this.reportedSeries$=new Ge(`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)&&(i0(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 yi{constructor(e){super(e),this.slow=this.fast=e.initial}updateSmoothedValue(e){this.slow=ii(this.slow,e,this.params.emaAlphaSlow),this.fast=ii(this.fast,e,this.params.emaAlphaFast);let t=this.params.fastDirection>0?Math.max:Math.min;this.smoothed=t(this.slow,this.fast)}};var qo=class extends yi{constructor(e){super(e),this.emaSmoothed=e.initial}updateSmoothedValue(e){let t=yd(this.pastMeasures,this.takenMeasures);this.emaSmoothed=ii(this.emaSmoothed,e,this.params.emaAlpha);let i=VT(this.pastMeasures,this.takenMeasures,this.measuresCursor-1,this.params.basisTrendChangeCount);this.smoothed=i?this.emaSmoothed:t}};var Ho=class extends yi{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?ii(this.smoothed,t,this.params.emaAlpha):t}};var ri=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 qo({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 Ho({initial:e,label:"liveEdgeDelay",...t})}};var _r=(s,e)=>{s&&s.playbackRate!==e&&(s.playbackRate=e)};import{isNullable as r0,ValueSubject as s0}from"@vkontakte/videoplayer-shared";var va=class s{constructor(e,t){this.currentRepresentation$=new s0(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(!r0(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&&We(t.segmentReference))}};var zo=C(kt(),1);import{assertNever as Go}from"@vkontakte/videoplayer-shared";var _T=(s,{useHlsJs:e,useManagedMediaSource:t,useOldMSEDetection:i})=>{let{containers:r,protocols:a,codecs:n,nativeHlsSupported:o}=F.video,u=(n.h264||n.h265)&&n.aac,l=a.mse&&(!i||!!window.MediaStreamTrack)||a.mms&&t;return s.filter(p=>{switch(p){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 Go(p)}})},jo=s=>{let{webmDecodingInfo:e}=F.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:Go(s)}return[t,i]},FT=({webmCodec:s,androidPreferredFormat:e,preferMultiStream:t})=>{let i=[...t?["DASH_STREAMS"]:[],...jo(s),"DASH_SEP","DASH_ONDEMAND",...t?[]:["DASH_STREAMS"]],r=[...t?["DASH_STREAMS"]:[],"DASH_SEP","DASH_ONDEMAND",...t?[]:["DASH_STREAMS"]];if(F.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",...jo(s),"HLS","HLS_ONDEMAND"];case"dash_any_webm":return[...jo(s),"MPEG",...r,"HLS","HLS_ONDEMAND"];case"dash_sep":return["DASH_SEP","MPEG",...jo(s),...r,"HLS","HLS_ONDEMAND"];default:Go(e)}return F.video.nativeHlsSupported?[...i,"HLS","HLS_ONDEMAND","MPEG"]:[...i,"HLS","HLS_ONDEMAND","MPEG"]},NT=({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=F.device.isMac&&F.browser.isSafari;if(F.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:Go(s)}else F.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"]},Td=s=>s?["HLS_LIVE","HLS_LIVE_CMAF","DASH_LIVE_CMAF"]:["DASH_WEBM","DASH_WEBM_AV1","DASH_SEP","DASH_ONDEMAND","HLS","HLS_ONDEMAND","MPEG"],Qo=s=>{if(s.size===0)return;if(s.size===1){let t=s.values().next();return(0,zo.default)(t.value.split("."),0)}for(let t of s){let i=(0,zo.default)(t.split("."),0);if(i==="opus"||i==="vp09"||i==="av01")return i}let e=s.values().next();return(0,zo.default)(e.value.split("."),0)};var d0=["timeupdate","progress","play","seeked","stalled","waiting"],p0=["timeupdate","progress","loadeddata","playing","seeked"];var Ko=class{constructor(e){this.element=null;this.manifestUrlString="";this.source=null;this.manifest=null;this.subscription=new wd;this.representationSubscription=new wd;this.state$=new N("none");this.currentVideoRepresentation$=new pe(void 0);this.currentVideoRepresentationInit$=new pe(void 0);this.currentAudioRepresentation$=new pe(void 0);this.currentVideoSegmentLength$=new pe(0);this.currentAudioSegmentLength$=new pe(0);this.error$=new Yo;this.lastConnectionType$=new pe(void 0);this.lastConnectionReused$=new pe(void 0);this.lastRequestFirstBytes$=new pe(void 0);this.currentLiveTextRepresentation$=new pe(null);this.isLive$=new pe(!1);this.isActiveLive$=new pe(!1);this.isLowLatency$=new pe(!1);this.liveDuration$=new pe(0);this.liveSeekableDuration$=new pe(0);this.liveAvailabilityStartTime$=new pe(0);this.liveStreamStatus$=new pe(void 0);this.bufferLength$=new pe(0);this.liveLatency$=new pe(void 0);this.liveLoadBufferLength$=new pe(0);this.livePositionFromPlayer$=new pe(0);this.currentStallDuration$=new pe(0);this.videoLastDataObtainedTimestamp$=new pe(0);this.fetcherRecoverableError$=new Yo;this.fetcherError$=new Yo;this.liveStreamEndTimestamp=0;this.isUpdatingLive=!1;this.isJumpGapAfterSeekLive=!1;this.forceEnded$=new Yo;this.gapWatchdogActive=!1;this.destroyController=new ee;this.initedPruneBufferCallback=!1;this.initManifest=xd(this.destroyController.signal,async function*(e,t,i){this.tracer.log("initManifest"),this.element=e,this.manifestUrlString=ge(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:Ft.PARSER,message:"No playable video representations"})}.bind(this));this.updateManifest=xd(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:Ft.NETWORK,message:"Failed to load manifest",thrown:n})});if(!e)return null;let t=null;try{t=RT(e??"",this.manifestUrlString)}catch(n){let o=Lo(e)??{id:"ManifestParsing",category:Ft.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)&&mt()?.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,p=(t.duration??0)/1e3;this.liveSeekableDuration$.next(-1*p),this.liveDuration$.next((o-n)/1e3),this.liveAvailabilityStartTime$.next(t.live.availabilityStartTime);let c="active";l||(c=u?"unpublished":"unexpectedly_down"),this.liveStreamStatus$.next(c)}let r={text:t.streams.text,video:[],audio:[]};for(let n of["video","audio"]){let u=t.streams[n].filter(({mime:c,codecs:d})=>i(n,c,d)),l=new Set(u.map(({codecs:c})=>c)),p=Qo(l);if(p&&(r[n]=u.filter(({codecs:c})=>c.startsWith(p))),n==="video"){let c=this.tuning.preferHDR,d=r.video.some(f=>f.hdr),h=r.video.some(f=>!f.hdr);F.display.isHDR&&c&&d?r.video=r.video.filter(f=>f.hdr):h&&(r.video=r.video.filter(f=>!f.hdr))}}let a={...t,streams:r};return this.tracer.log("updateManifestEnd",Ta(a)),a}.bind(this));this.initRepresentations=xd(this.destroyController.signal,async function*(e,t,i){this.tracer.log("initRepresentationsStart",Ta({initialVideo:e,initialAudio:t,sourceHls:i})),Fr(this.manifest),Fr(this.element),this.representationSubscription.unsubscribe(),this.representationSubscription=new wd,this.state$.startTransitionTo("representations_ready");let r=d=>{this.representationSubscription.add(Nt(d,"error").pipe(Wo(h=>!!this.element?.played.length)).subscribe(h=>{this.error$.next({id:"VideoSource",category:Ft.VIDEO_PIPELINE,message:"Unexpected video source error",thrown:h})}))};this.source=this.tuning.useManagedMediaSource?no():new MediaSource;let a=document.createElement("source");if(r(a),a.src=URL.createObjectURL(this.source),this.element.appendChild(a),this.tuning.useManagedMediaSource&&Ir())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 ma("video",this.source,o,n),this.bufferManagers=[this.videoBufferManager],Ia(t)){let d=this.manifest.streams.audio.reduce((h,f)=>[...h,...f.representations],[]);this.audioBufferManager=new ma("audio",this.source,d,n),this.bufferManagers.push(this.audioBufferManager)}va.isSupported(this.manifest.streams.text)&&!this.isLowLatency$.getValue()&&(this.liveTextManager=new va(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(Wi(...p0.map(d=>Nt(this.element,d))).pipe(Ur(d=>this.element?de(this.element.buffered,this.element.currentTime*1e3):0),ya(),c0(d=>{d>this.tuning.dash.bufferEmptinessTolerance&&u()})).subscribe(this.bufferLength$)),this.representationSubscription.add(Wi(Nt(this.element,"ended"),this.forceEnded$).subscribe(()=>{u()})),this.isLive$.getValue()){this.subscription.add(this.liveDuration$.pipe(ya()).subscribe(h=>this.liveStreamEndTimestamp=Pd())),this.subscription.add(Nt(this.element,"pause").subscribe(()=>{this.livePauseWatchdogSubscription=Ed(1e3).subscribe(h=>{let f=pi(this.manifestUrlString,2);this.manifestUrlString=ge(this.manifestUrlString,f+1e3,2),this.liveStreamStatus$.getValue()==="active"&&this.updateManifest()}),this.subscription.add(this.livePauseWatchdogSubscription)})).add(Nt(this.element,"play").subscribe(h=>this.livePauseWatchdogSubscription?.unsubscribe())),this.representationSubscription.add(Nr({isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe(Ur(({isActiveLive:h,isLowLatency:f})=>h&&f),ya()).subscribe(h=>{this.isManualDecreasePlaybackInLive()||_r(this.element,1)})),this.representationSubscription.add(Nr({bufferLength:this.bufferLength$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe(Wo(({bufferLength:h,isActiveLive:f,isLowLatency:b})=>f&&b&&!!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 f=this.liveSeekableDuration$.getValue()-h/1e3;this.liveSeekableDuration$.next(Math.max(f,-1*this.tuning.dashCmafLive.maxLiveDuration)),this.liveDuration$.next(this.liveDuration$.getValue()+h/1e3)})),this.representationSubscription.add(Nr({isLive:this.isLive$,rtt:this.throughputEstimator.rtt$,bufferLength:this.bufferLength$,segmentServerLatency:this.videoBufferManager.currentLiveSegmentServerLatency$}).pipe(Wo(({isLive:h})=>h),ya((h,f)=>f.bufferLength<h.bufferLength),Ur(({rtt:h,bufferLength:f,segmentServerLatency:b})=>{let g=pi(this.manifestUrlString,2);return(h/2+f+b+g)/1e3})).subscribe(this.liveLatency$)),this.representationSubscription.add(Nr({liveBuffer:this.liveBuffer.smoothed$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).subscribe(({liveBuffer:h,isActiveLive:f,isLowLatency:b})=>{if(!b||!f)return;let g=this.tuning.dashCmafLive.lowLatency.maxTargetOffset,S=this.tuning.dashCmafLive.lowLatency.maxTargetOffsetDeviation,T=this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup,v=h-g;if(this.isManualDecreasePlaybackInLive())return;let w=1;Math.abs(v)>S&&(w=1+Math.sign(v)*T),_r(this.element,w)})),this.representationSubscription.add(this.bufferLength$.subscribe(h=>{let f=0;if(h){let b=(this.element?.currentTime??0)*1e3;f=Math.min(...this.bufferManagers.map(S=>S.getLiveSegmentsToLoadState(this.manifest)?.to??b))-b}this.liveLoadBufferLength$.getValue()!==f&&this.liveLoadBufferLength$.next(f)}));let d=0;this.representationSubscription.add(Nr({liveLoadBufferLength:this.liveLoadBufferLength$,bufferLength:this.bufferLength$}).pipe(HT(1e3)).subscribe(async({liveLoadBufferLength:h,bufferLength:f})=>{if(!this.element||this.isUpdatingLive)return;let b=this.element.playbackRate,g=pi(this.manifestUrlString,2),S=Math.abs(this.livePositionFromPlayer$.getValue())*1e3,T=Math.min(S,this.tuning.dashCmafLive.normalizedTargetMinBufferSize*b),v=this.tuning.dashCmafLive.normalizedActualBufferOffset*b,w=this.tuning.dashCmafLive.normalizedLiveMinBufferSize*b,P=isFinite(h)?h:f,M=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),O=S<=this.tuning.live.activeLiveDelay;this.isActiveLive$.next(O);let E="none";if(M?E="active_low_latency":this.isLowLatency$.getValue()&&O?(this.bufferManagers.forEach(R=>R.proceedLowLatencyLive()),E="active_low_latency"):g!==0&&P<T?E="live_forward_buffering":P<T+w&&(E="live_with_target_offset"),isFinite(h)&&(d=h>d?h:d),E==="live_forward_buffering"||E==="live_with_target_offset"){let R=d-(T+v),y=this.normolizeLiveOffset(Math.trunc(g+R/b)),D=Math.abs(y-g),I=0;!h||D<=this.tuning.dashCmafLive.offsetCalculationError?I=g:y>0&&D>this.tuning.dashCmafLive.offsetCalculationError&&(I=y),this.manifestUrlString=ge(this.manifestUrlString,I,2)}(E==="live_with_target_offset"||E==="live_forward_buffering")&&(d=0,await this.updateLive())},h=>{this.error$.next({id:"updateLive",category:Ft.VIDEO_PIPELINE,thrown:h,message:"Failed to update live with subscription"})}))}let l=Wi(...this.bufferManagers.map(d=>d.fullyBuffered$)).pipe(Ur(()=>this.bufferManagers.every(d=>d.fullyBuffered$.getValue()))),p=Wi(...this.bufferManagers.map(d=>d.onLastSegment$)).pipe(Ur(()=>this.bufferManagers.some(d=>d.onLastSegment$.getValue()))),c=Nr({allBuffersFull:l,someBufferEnded:p}).pipe(ya(),Ur(({allBuffersFull:d,someBufferEnded:h})=>d&&h),Wo(d=>d));if(this.representationSubscription.add(Wi(this.forceEnded$,c).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:Ft.VIDEO_PIPELINE,message:"Failed to end MediaSource stream",thrown:d})}})),this.representationSubscription.add(Wi(...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,f)=>{d&&(this.timeoutSourceOpenId=setTimeout(()=>{if(this.source?.readyState==="open"){h();return}this.tuning.dash.rejectOnSourceOpenTimeout?f(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,Ad.default)((0,Ad.default)([...this.manifest.streams.audio,...this.manifest.streams.video],h=>h.representations),h=>{let f=[];return h.duration&&f.push(h.duration),We(h.segmentReference)&&h.segmentReference.totalSegmentsDurationMs&&f.push(h.segmentReference.totalSegmentsDurationMs),f})];this.source.duration=Math.max(...d)/1e3}this.audioBufferManager&&Ia(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=Ed(this.tuning.gapWatchdogInterval).subscribe(()=>this.jumpGap(),t=>{this.error$.next({id:"GapWatchdog",category:Ft.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 No({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=ri.getLiveBufferSmoothedValue(this.tuning.dashCmafLive.lowLatency.maxTargetOffset,{...e.tuning.dashCmafLive.lowLatency.bufferEstimator}),this.initTracerSubscription()}async seekLive(e){Fr(this.element);let t=this.liveStreamStatus$.getValue()!=="active"?Pd()-this.liveStreamEndTimestamp:0,i=this.normolizeLiveOffset(e+t);this.isActiveLive$.next(i===0),this.manifestUrlString=ge(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(){Fr(this.element),this.state$.setState("running"),this.subscription.add(Wi(...d0.filter(e=>e!=="timeupdate").map(e=>Nt(this.element,e)),Nt(window,"online"),Nt(this.element,"timeupdate").pipe(HT(300))).subscribe(()=>this.tick(),e=>{this.error$.next({id:"DashVKPlayer",category:Ft.WTF,message:"Internal logic error",thrown:e})})),this.subscription.add(Nt(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(Nt(this.element,"waiting").subscribe(()=>{this.element&&this.element.readyState===HTMLMediaElement.HAVE_CURRENT_DATA&&!this.element.seeking&&Fe(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=Pd(),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,p=u<a&&r-n>this.tuning.dash.crashOnStallTWithoutDataTimeout,c=this.audioBufferManager&&l<a&&r-o>this.tuning.dash.crashOnStallTWithoutDataTimeout;if((p||c)&&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:Ft.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",Ta(i))};this.stallWatchdogSubscription?.unsubscribe(),this.stallWatchdogSubscription=Ed(50).subscribe(e,t=>{this.error$.next({id:"StallWatchdogCallback",category:Ft.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){Fr(this.element),Fr(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),Fe(this.element.buffered,i)||await Promise.all([this.videoBufferManager.abort(),this.audioBufferManager?.abort()]),!(qT(this.element)||qT(this.videoBufferManager))&&(this.videoBufferManager.maintain(i),this.audioBufferManager?.maintain(i),this.element.currentTime=i/1e3,this.tracer.log("seek",Ta({requestedPosition:e,forcePrecise:t,position:i})))}warmUpMediaSourceIfNeeded(e=this.element?.currentTime){Ia(this.element)&&Ia(this.source)&&Ia(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=l0(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(),i=this.isJumpGapAfterSeekLive,r=this.element.currentTime;this.isJumpGapAfterSeekLive&&!t&&this.element.currentTime>e&&(this.isJumpGapAfterSeekLive=!1,this.element.currentTime=0);let a=this.element.currentTime*1e3,n=null,o=this.element.readyState===HTMLMediaElement.HAVE_METADATA?this.tuning.endGapTolerance:0;for(let u of this.bufferManagers)for(let l of u.gaps)(l.persistent||u.playingRepresentation$.getValue()===l.representation)&&l.from-o<=a&&l.to+o>a&&(this.element.duration*1e3-l.to<this.tuning.endGapTolerance?n=1/0:(n===null||l.to>n)&&(n=l.to));if(n!==null){let u=n+10;this.gapWatchdogSubscription.unsubscribe(),this.gapWatchdogActive=!1,u===1/0?this.forceEnded$.next():(this.element.currentTime=u/1e3,this.tracer.log("jumpGap",Ta({isJumpGapAfterSeekLive:i,isActiveLowLatency:t,initialCurrentTime:r,jumpTo:u,resultCurrentTime:this.element.currentTime})))}}};var Xo=class{constructor(e,t){this.fov=e,this.orientation=t}};var Jo=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 zT=`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 MS=`#ifdef GL_ES
135
+ `;var GT=`#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 cn=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 un(this.params.fov,this.params.orientation),this.cameraRotationManager=new ln(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($S,this.gl.VERTEX_SHADER),i=this.createShader(MS,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,c=t+a,d=e-i,p=t+a;return[s,n,o,u,l,c,d,p]}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}};import{isNullable as wM,now as CS,Subscription as kM,filter as AM,combine as DS,debounce as LM,ValueSubject as Ml,isNonNullable as RM}from"@vkontakte/videoplayer-shared";var Cl=class{constructor(){this.isSeeked$=new Ml(!1);this.isBuffering$=new Ml(!1);this.currentStallsCount=0;this.maxQualityLimit=void 0;this.lastUniqueVideoTrackSelectedTimestamp=0;this.predictedThroughputWithoutData=0;this.subscription=new kM;this.severeStallOccurred$=new Ml(!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(DS({isBuffering:this.isBuffering$,isSeeked:this.isSeeked$}).pipe(LM(this.qualityLimitsOnStall.stallDurationToBeCount),AM(({isBuffering:t,isSeeked:i})=>t&&!i)).subscribe(t=>{this.currentStallsCount++})),this.subscription.add(DS({currentStallDuration:this.currentStallDuration$}).subscribe(({currentStallDuration:t})=>{let{stallDurationNoDataBeforeQualityDecrease:i,stallCountBeforeQualityDecrease:a,resetQualityRestrictionTimeout:s,ignoreStallsOnSeek:n}=this.qualityLimitsOnStall;if(wM(this.lastUniqueVideoTrackSelected)||n&&this.isSeeked$.getValue())return;let o=this.rtt$.getValue(),u=this.throughput$.getValue(),l=this.videoLastDataObtainedTimestamp$.getValue(),c=CS(),d=a&&this.currentStallsCount>=a,p=i&&c-this.lastUniqueVideoTrackSelectedTimestamp>=i+o&&c-l>=i+o&&t>=i;(d||p)&&(this.severeStallOccurred$.next(!0),window.clearTimeout(this.qualityRestrictionTimer),this.maxQualityLimit=this.lastUniqueVideoTrackSelected.quality,RM(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=CS(),this.currentStallsCount=0)}destroy(){window.clearTimeout(this.qualityRestrictionTimer),this.subscription.unsubscribe()}},VS=Cl;import{combine as $M,map as MM,observeElementSize as CM,Subscription as DM,ValueSubject as Dl,noop as VM}from"@vkontakte/videoplayer-shared";var dn=class{constructor(){this.subscription=new DM;this.pipSize$=new Dl(void 0);this.videoSize$=new Dl(void 0);this.elementSize$=new Dl(void 0);this.pictureInPictureWindowRemoveEventListener=VM}connect({observableVideo:e,video:t}){let i=a=>{let s=a.target;this.pipSize$.next({width:s.width,height:s.height})};this.subscription.add(CM(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($M({videoSize:this.videoSize$,pipSize:this.pipSize$,inPip:e.inPiP$}).pipe(MM(({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 ui=class{constructor(e){this.subscription=new qM;this.videoState=new C("stopped");this.droppedFramesManager=new Hs;this.stallsManager=new VS;this.elementSizeManager=new dn;this.videoTracksMap=new Map;this.audioTracksMap=new Map;this.textTracksMap=new Map;this.videoStreamsMap=new Map;this.audioStreamsMap=new Map;this.videoTrackSwitchHistory=new Rr;this.audioTrackSwitchHistory=new Rr;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"),E(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"),E(this.params.desiredState.playbackState,"paused")):t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):i?.to==="ready"&&E(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"&&E(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):i?.to==="paused"&&E(this.params.desiredState.playbackState,"paused");return;default:return OM(e)}}};this.init3DScene=e=>{if(this.scene3D)return;this.scene3D=new cn(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 qe(e.source.url),this.params=e,this.video=Ee(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(oe(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 on({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=ke(this.video);this.subscription.add(()=>i.destroy());let a=this.constructor.name,s=o=>{e.error$.next({id:a,category:BS.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(Vl(l=>!!l.length),_S()).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(Bl(l=>l.to.state!=="none"),xa());this.stallsManager.connect({isSeeked$:n,currentStallDuration$:this.player.currentStallDuration$.pipe(xa()),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(Vl(OS),_S()),e.firstBytesEvent$),s(this.stallsManager.severeStallOccurred$,e.severeStallOccurred$),s(this.videoState.stateChangeEnded$.pipe(Bl(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(st(this.video,t.isLooped,a)),this.subscription.add(Pe(this.video,t.volume,i.volumeState$,a)),this.subscription.add(i.volumeState$.subscribe(this.params.output.volume$,a)),this.subscription.add(Fe(this.video,t.playbackRate,i.playbackRateState$,a)),this.elementSizeManager.connect({video:this.video,observableVideo:i}),s(Ue(this.video,{threshold:this.params.tuning.autoTrackSelection.activeVideoAreaThreshold}),e.elementVisible$),this.subscription.add(i.playing$.subscribe(()=>{this.videoState.setState("playing"),E(t.playbackState,"playing"),this.scene3D&&this.scene3D.play()},a)).add(i.pause$.subscribe(()=>{this.videoState.setState("paused"),E(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 c=this.player.getStreams();if(_M(c,"Manifest not loaded or empty"),!this.params.tuning.isAudioDisabled){let p=[];for(let h of c.audio){p.push(fl(h));let f=[];for(let b of h.representations){let g=sS(b);f.push(g),this.audioTracksMap.set(g,{stream:h,representation:b})}this.audioStreamsMap.set(h,f)}this.params.output.availableAudioStreams$.next(p)}let d=[];for(let p of c.video){d.push(bl(p));let h=[];for(let f of p.representations){let b=aS({...f,streamId:p.id});b&&(h.push(b),this.videoTracksMap.set(b,{stream:p,representation:f}))}this.videoStreamsMap.set(p,h)}this.params.output.availableVideoStreams$.next(d);for(let p of c.text)for(let h of p.representations){let f=nS(p,h);this.textTracksMap.set(f,{stream:p,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())},a)),this.subscription.add(pn(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$,FM(this.video,"progress")).pipe(Vl(()=>this.videoTracksMap.size>0)).subscribe(async()=>{let l=this.player.state$.getState(),c=this.player.state$.getTransition();if(!(0,NS.default)(["manifest_ready","running"],l)||c)return;t.autoVideoTrackSwitching.getTransition()&&t.autoVideoTrackSwitching.setState(t.autoVideoTrackSwitching.getState());let d=this.selectVideoAudioRepresentations();if(!d)return;let[p,h]=d,f=[...this.videoTracksMap.keys()].find(g=>this.videoTracksMap.get(g)?.representation.id===p.id);OS(f)&&(this.stallsManager.lastVideoTrackSelected=f);let b=this.params.desiredState.autoVideoTrackLimits.getTransition();if(b&&this.params.output.autoVideoTrackLimits$.next(b.to),l==="manifest_ready")await this.player.initRepresentations(p.id,h?.id,this.params.sourceHls);else if(await this.player.switchRepresentation("video",p.id),h){let g=!!t.audioStream.getTransition();await this.player.switchRepresentation("audio",h.id,g)}},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(xa()).subscribe(l=>{let c=[...this.videoTracksMap.entries()].find(([,{representation:f}])=>f.id===l);if(!c){e.currentVideoTrack$.next(void 0),e.currentVideoStream$.next(void 0);return}let[d,{stream:p}]=c,h=this.params.desiredState.videoStream.getTransition();h&&h.to&&h.to.id===p.id&&this.params.desiredState.videoStream.setState(h.to),e.currentVideoTrack$.next(d),e.currentVideoStream$.next(bl(p))},a)),this.subscription.add(this.player.currentAudioRepresentation$.pipe(xa()).subscribe(l=>{let c=[...this.audioTracksMap.entries()].find(([,{representation:f}])=>f.id===l);if(!c){e.currentAudioStream$.next(void 0);return}let[d,{stream:p}]=c,h=this.params.desiredState.audioStream.getTransition();h&&h.to&&h.to.id===p.id&&this.params.desiredState.audioStream.setState(h.to),e.currentAudioStream$.next(fl(p))},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(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)},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(Bl(({to:l})=>l==="ready"),xa());this.subscription.add(pn(o,t.autoVideoTrackSwitching.stateChangeStarted$,this.player.state$.stateChangeEnded$,Ol(["init"])).subscribe(()=>{let l=t.autoVideoTrackSwitching.getState(),d=t.playbackState.getState()==="ready"?this.params.tuning.dash.forwardBufferTargetPreload:l?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;this.player.setBufferTarget(d)})),this.subscription.add(pn(o,this.player.state$.stateChangeEnded$,Ol(["init"])).subscribe(()=>this.player.setPreloadOnly(t.playbackState.getState()==="ready")));let u=pn(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,Ol(["init"])).pipe(NM(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:B})=>B===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:B})=>B===u.id),c=l&&this.videoStreamsMap.get(l);if(!c)return;let d=_i(this.video.buffered,this.video.currentTime*1e3),p;this.player.isActiveLive$.getValue()?p=this.player.isLowLatency$.getValue()?this.params.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.params.tuning.dashCmafLive.normalizedLiveMinBufferSize:this.player.isLive$.getValue()?p=this.params.tuning.dashCmafLive.normalizedTargetMinBufferSize:p=i?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;let h=(this.video.duration*1e3||1/0)-this.video.currentTime*1e3,f=Math.min(d/Math.min(p,h||1/0),1),b=e.audioStream.getState()??(this.audioStreamsMap.size===1?this.audioStreamsMap.keys().next().value:void 0),g=[...this.audioStreamsMap.keys()].find(({id:B})=>B===b?.id)??this.audioStreamsMap.keys().next().value,v=0;if(g){if(n&&!i){let B=Ns(n,c,this.audioStreamsMap.get(g)??[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);v=Math.max(v,B?.bitrate??-1/0)}if(o){let B=Ns(o,c,this.audioStreamsMap.get(g)??[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);v=Math.max(v,B?.bitrate??-1/0)}}let x=Ct(c,{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:v,forwardBufferHealth:f,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}),T=i?x??n:n??x,w=g&&eg(T,c,this.audioStreamsMap.get(g)??[],{estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),stallsPredictedThroughput:this.stallsManager.predictedThroughput,tuning:this.params.tuning.autoTrackSelection,forwardBufferHealth:f,history:this.audioTrackSwitchHistory,playbackRate:this.video.playbackRate,abrLogger:this.params.dependencies.abrLogger}),I=this.videoTracksMap.get(T)?.representation,V=w&&this.audioTracksMap.get(w)?.representation;if(I&&V)return[I,V];if(I&&!V&&this.audioTracksMap.size===0)return[I,void 0]}prepare(e=0){this.player.initManifest(this.video,this.params.source.url,e)}playIfAllowed(){Ae(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),E(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:BS.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 Pa=class extends ui{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)}};import{combine as _l,merge as FS,filter as qS,filterChanged as UM,isNullable as Nl,map as US,ValueSubject as Fl,isNonNullable as HM}from"@vkontakte/videoplayer-shared";var wa=class extends ui{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 Fl(1);s(i.playbackRateState$,n),this.subscription.add(this.params.output.position$.subscribe(this.player.livePositionFromPlayer$)).add(a.isLowLatency.stateChangeEnded$.pipe(US(o=>o.to)).subscribe(this.player.isLowLatency$)).add(_l({liveBufferTime:t.liveBufferTime$,liveAvailabilityStartTime:this.player.liveAvailabilityStartTime$}).pipe(US(({liveBufferTime:o,liveAvailabilityStartTime:u})=>o&&u?o+u:void 0)).subscribe(t.liveTime$)).add(this.player.liveStreamStatus$.pipe(qS(o=>HM(o))).subscribe(o=>t.isLiveEnded$.next(o!=="active"&&t.position$.getValue()===0))).add(_l({liveDuration:this.player.liveDuration$,liveStreamStatus:this.player.liveStreamStatus$,playbackRate:FS(i.playbackRateState$,new Fl(1))}).pipe(qS(({liveStreamStatus:o,liveDuration:u})=>o==="active"&&!!u)).subscribe(({liveDuration:o,playbackRate:u})=>{let l=t.liveBufferTime$.getValue(),c=t.position$.getValue(),{playbackCatchupSpeedup:d}=this.params.tuning.dashCmafLive.lowLatency;c||u<1-d||this.video.paused||Nl(l)||(e=o-l)})).add(_l({time:t.liveBufferTime$,liveDuration:this.player.liveDuration$,playbackRate:FS(i.playbackRateState$,new Fl(1))}).pipe(UM((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:d}=this.params.tuning.dashCmafLive.lowLatency;if(!c&&!this.video.paused&&l>=1-d||Nl(o)||Nl(u))return;let p=-1*(u-o-e);t.position$.next(Math.min(p,0))})).add(this.player.currentLiveTextRepresentation$.subscribe(o=>{if(o){let u=oS(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 jS=M(ws(),1);import{assertNever as ka,assertNonNullable as HS,debounce as jM,ErrorCategory as hn,filter as QM,isNonNullable as GM,isNullable as WM,map as mn,merge as YM,Observable as zM,observableFrom as KM,Subscription as XM,videoSizeToQuality as JM}from"@vkontakte/videoplayer-shared";var Je={};var Yi=(r,e)=>new zM(t=>{let i=(a,s)=>t.next(s);return r.on(e,i),()=>r.off(e,i)}),Aa=class{constructor(e){this.subscription=new XM;this.videoState=new C("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:ka(e)}break;case"ready":switch(e){case"stopped":this.prepare();break;case"ready":case"playing":case"paused":break;default:ka(e)}break;case"playing":switch(e){case"playing":break;case"stopped":this.prepare();break;case"ready":case"paused":this.playIfAllowed();break;default:ka(e)}break;case"paused":switch(e){case"paused":break;case"stopped":this.prepare();break;case"ready":this.videoState.setState("paused"),E(this.params.desiredState.playbackState,"paused");break;case"playing":this.pause();break;default:ka(e)}break;default:ka(t)}};this.textTracksManager=new qe(e.source.url),this.video=Ee(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(oe(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=a=>{e||this.params.output.error$.next({id:a==="timeout"?"HlsJsTimeout":"HlsJsLoadError",category:hn.NETWORK,message:"Failed to load Hls.js",thrown:a}),e=!0},i=window.setTimeout(()=>t("timeout"),this.params.tuning.dynamicImportTimeout);(0,jS.default)(import("hls.js").then(a=>{e||(Je.Hls=a.default,Je.Events=a.default.Events,this.init())},t),()=>{window.clearTimeout(i),e=!0})}init(){HS(Je.Hls,"hls.js not loaded"),this.hls=new Je.Hls({fragLoadingMaxRetry:5,levelLoadingMaxRetry:2,manifestLoadingMaxRetry:2,fragLoadingMaxRetryTimeout:16e3,manifestLoadingMaxRetryTimeout:2e3,levelLoadingMaxRetryTimeout:2e3}),this.subscribe(),this.videoState.setState("stopped")}subscribe(){HS(Je.Events,"hls.js not loaded");let{desiredState:e,output:t}=this.params,i=l=>{t.error$.next({id:"HlsJsProvider",category:hn.WTF,message:"HlsJsProvider internal logic error",thrown:l})},a=ke(this.video);this.subscription.add(()=>a.destroy());let s=(l,c)=>this.subscription.add(l.subscribe(c,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(st(this.video,e.isLooped,i)),this.subscription.add(Pe(this.video,e.volume,a.volumeState$,i)),this.subscription.add(a.volumeState$.subscribe(this.params.output.volume$)),this.subscription.add(Fe(this.video,e.playbackRate,a.playbackRateState$,i)),s(Ue(this.video),t.elementVisible$),s(this.videoState.stateChangeEnded$.pipe(mn(l=>l.to)),this.params.output.playbackState$),this.subscription.add(Yi(this.hls,Je.Events.ERROR).subscribe(l=>{l.fatal&&t.error$.next({id:["HlsJsFatal",l.type,l.details].join("_"),category:hn.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"),E(e.playbackState,"playing")},i)).add(a.pause$.subscribe(()=>{this.videoState.setState("paused"),E(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,Je.Events.MANIFEST_PARSED).pipe(mn(({levels:l})=>l.reduce((c,d)=>{let p=d.name||d.height.toString(10),{width:h,height:f}=d,b=Rt(d.attrs.QUALITY??"")??JM({width:h,height:f});if(!b)return c;let g=d.attrs["FRAME-RATE"]?parseFloat(d.attrs["FRAME-RATE"]):void 0,v={id:p.toString(),quality:b,bitrate:d.bitrate/1e3,size:{width:h,height:f},fps:g};return this.trackLevels.set(p,{track:v,level:d}),c.push(v),c},[]))),t.availableVideoTracks$),s(Yi(this.hls,Je.Events.MANIFEST_PARSED),l=>{if(l.subtitleTracks.length>0){let c=[];for(let d of l.subtitleTracks){let p=d.name,h=d.attrs.URI||"",f=d.lang;c.push({id:p,url:h,language:f,type:"internal"})}e.internalTextTracks.startTransitionTo(c)}}),s(Yi(this.hls,Je.Events.LEVEL_LOADING).pipe(mn(({url:l})=>oe(l))),t.hostname$),s(Yi(this.hls,Je.Events.FRAG_CHANGED),l=>{let{video:c,audio:d}=l.frag.elementaryStreams;t.currentVideoSegmentLength$.next(((c?.endPTS??0)-(c?.startPTS??0))*1e3),t.currentAudioSegmentLength$.next(((d?.endPTS??0)-(d?.startPTS??0))*1e3)}),this.subscription.add(kt(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=Yi(this.hls,Je.Events.LEVEL_SWITCHED).pipe(mn(({level:l})=>n(this.hls.levels[l])));o.pipe(QM(GM)).subscribe(t.currentVideoTrack$,i),this.subscription.add(kt(e.videoTrack,()=>n(this.hls.levels[this.hls.currentLevel]),l=>{if(WM(l))return;let c=this.trackLevels.get(l.id)?.level;if(!c)return;let d=this.hls.levels.indexOf(c),p=this.hls.currentLevel,h=this.hls.levels[p];!h||c.bitrate>h.bitrate?this.hls.nextLevel=d:(this.hls.loadLevel=d,this.hls.loadLevel=d)},{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=YM(e.playbackState.stateChangeStarted$,e.videoTrack.stateChangeStarted$,e.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,KM(["init"])).pipe(jM(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 Ae(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).catch(t=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:hn.DOM,thrown:t}))||(this.videoState.setState("paused"),E(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"),E(this.params.desiredState.playbackState,"stopped",!0)}};var QS="X-Playback-Duration",ql=async r=>{let e=await ot(r),t=await e.text(),i=/#EXT-X-VK-PLAYBACK-DURATION:(\d+)/m.exec(t)?.[1];return i?parseInt(i,10):e.headers.has(QS)?parseInt(e.headers.get(QS),10):void 0};import{assertNever as lC,combine as cC,debounce as dC,ErrorCategory as gn,filter as pC,filterChanged as hC,isNonNullable as YS,isNullable as vn,map as zS,merge as mC,observableFrom as fC,Subscription as bC,ValueSubject as jl,VideoQuality as gC}from"@vkontakte/videoplayer-shared";var Hl=M(No(),1);import{videoSizeToQuality as ZM,getExponentialDelay as eC}from"@vkontakte/videoplayer-shared";var tC=r=>{let e=null;if(r.QUALITY&&(e=Rt(r.QUALITY)),!e&&r.RESOLUTION){let[t,i]=r.RESOLUTION.split("x").map(a=>parseInt(a,10));e=ZM({width:t,height:i})}return e??null},iC=(r,e)=>{let t=r.split(`
125
- `),i=[],a=[];for(let s=0;s<t.length;s++){let n=t[s],o=n.match(/^#EXT-X-STREAM-INF:(.+)/),u=n.match(/^#EXT-X-MEDIA:TYPE=SUBTITLES,(.+)/);if(!(!o&&!u)){if(o){let l=(0,Hl.default)(o[1].split(",").map(g=>g.split("="))),c=l.QUALITY??`stream-${l.BANDWIDTH}`,d=tC(l),p;l.BANDWIDTH&&(p=parseInt(l.BANDWIDTH,10)/1e3||void 0),!p&&l["AVERAGE-BANDWIDTH"]&&(p=parseInt(l["AVERAGE-BANDWIDTH"],10)/1e3||void 0);let h=l["FRAME-RATE"]?parseFloat(l["FRAME-RATE"]):void 0,f;if(l.RESOLUTION){let[g,v]=l.RESOLUTION.split("x").map(x=>parseInt(x,10));g&&v&&(f={width:g,height:v})}let b=new URL(t[++s],e).toString();d&&i.push({id:c,quality:d,url:b,bandwidth:p,size:f,fps:h})}if(u){let l=(0,Hl.default)(u[1].split(",").map(h=>{let f=h.indexOf("=");return[h.substring(0,f),h.substring(f+1)]}).map(([h,f])=>[h,f.replace(/^"|"$/g,"")])),c=l.URI?.replace(/playlist$/,"subtitles.vtt"),d=l.LANGUAGE,p=l.NAME;c&&d&&a.push({type:"internal",id:d,label:p,language:d,url:c,isAuto:!1})}}}if(!i.length)throw new Error("Empty manifest");return{qualityManifests:i,textTracks:a}},rC=r=>new Promise(e=>{setTimeout(()=>{e()},r)}),Ul=0,GS=async(r,e=r,t,i)=>{let s=await(await ot(r,i)).text();Ul+=1;try{let{qualityManifests:n,textTracks:o}=iC(s,e);return{qualityManifests:n,textTracks:o}}catch{if(Ul<=t.manifestRetryMaxCount)return await rC(eC(Ul-1,{start:t.manifestRetryInterval,max:t.manifestRetryMaxInterval})),GS(r,e,t)}return{qualityManifests:[],textTracks:[]}},fn=GS;import{isNonNullable as aC,Subscription as sC,throttle as nC,ValueSubject as WS,Subject as oC,ErrorCategory as uC}from"@vkontakte/videoplayer-shared";var bn=class{constructor(e,t,i,a,s){this.subscription=new sC;this.abortControllers={destroy:new he,nextManifest:null};this.prepareUrl=void 0;this.currentTextTrackData=null;this.availableTextTracks$=new WS(null);this.getCurrentTime$=new WS(null);this.error$=new oC;this.params={fetchManifestData:i,sourceUrl:a,downloadThreshold:s},this.subscription.add(e.pipe(nC(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 a=new URL(i.url,t).toString(),n=await(await ot(a,{signal:this.abortControllers.destroy.signal})).text(),o=this.parsePlaylist(n,a);return{textTrack:i,playlist:o}}}parsePlaylist(e,t){let i={mediaSequence:0,programDateTime:"",segments:[],targetDuration:0,vkPlaybackDuration:0,segmentStartTime:0,vkStartTime:""},a=e.split(`
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(),c=Number(this.extractPlaylistRowValue("#EXTINF:",o))*1e3;if(i.segments.push({time:{from:s,to:s+c},url:l}),s=s+c,!i.segmentStartTime){let d=new Date(i.vkStartTime).valueOf(),p=new Date(i.programDateTime).valueOf();i.segmentStartTime=p-d}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(aC(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 he;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:uC.WTF,thrown:t,message:e})}};var La=class{constructor(e){this.subscription=new bC;this.videoState=new C("stopped");this.textTracksManager=null;this.liveTextManager=null;this.manifests$=new jl([]);this.liveOffset=new ti;this.manifestStartTime$=new jl(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"),E(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 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(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"?E(this.params.desiredState.playbackState,"ready"):i==="paused"?(this.videoState.setState("paused"),this.liveOffset.pause(),E(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"&&E(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 a?.to==="paused"&&(E(this.params.desiredState.playbackState,"paused"),this.liveOffset.pause());return;case"changing_manifest":break;default:return lC(t)}};this.params=e,this.video=Ee(e.container,e.tuning),this.params.output.element$.next(this.video),this.masterManifest={id:"master",quality:gC.INVARIANT,url:this.params.source.url};let t=(i,a)=>fn(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 bn(this.params.output.liveTime$,this.video,t,this.params.source.url,this.params.tuning.hlsLiveNewTextManagerDownloadThreshold):this.textTracksManager=new qe(e.source.url),t(this.generateLiveUrl()).then(({qualityManifests:i,textTracks:a})=>{i.length===0&&this.params.output.error$.next({id:"HlsLiveProviderInternal:empty_manifest",category:gn.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:gn.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(oe(this.params.source.url)),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.maxSeekBackTime$=new jl(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:gn.WTF,message:"HlsLiveProvider internal logic error",thrown:o})},a=ke(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(Pe(this.video,t.volume,a.volumeState$,i)),this.subscription.add(a.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(Fe(this.video,t.playbackRate,a.playbackRateState$,i)),s(Ue(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"),E(t.playbackState,"playing")},i)).add(a.pause$.subscribe(()=>{this.videoState.setState("paused"),E(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(hC(),zS(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(),c=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(l&&YS(l.to)){let d=l.to.id;this.params.desiredState.videoTrack.setState(l.to);let p=this.manifests$.getValue().find(h=>h.id===d);p&&(this.params.output.currentVideoTrack$.next(p),this.params.output.hostname$.next(oe(p.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(a.loadedData$.subscribe(()=>{let o=this.video?.getStartDate?.()?.getTime();this.manifestStartTime$.next(o||void 0)},i)),this.subscription.add(cC({startTime:this.manifestStartTime$.pipe(pC(YS)),currentTime:a.timeUpdate$}).subscribe(({startTime:o,currentTime:u})=>this.params.output.liveTime$.next(o+u*1e3),i)),this.subscription.add(this.manifests$.pipe(zS(o=>o.map(({id:u,quality:l,size:c,bandwidth:d,fps:p})=>({id:u,quality:l,size:c,fps:p,bitrate:d})))).subscribe(this.params.output.availableVideoTracks$,i));let n=mC(t.playbackState.stateChangeStarted$,t.seekState.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.stateChangeStarted$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,this.manifests$,fC(["init"])).pipe(dC(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(vn(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,c]of[[o,"mq"],[u,"lq"]]){let d=String(parseFloat(l||""));c&&l&&a.searchParams.set(c,d)}}let s=this.params.format==="HLS_LIVE_CMAF"?2:0,n=pe(a.toString(),this.liveOffset.getTotalOffset(),s);this.liveTextManager?.prepare(n),this.video.setAttribute("src",n),this.video.load(),ql(n).then(o=>{if(!vn(o))this.maxSeekBackTime$.next(o);else{let u=this.params.source.maxSeekBackTime??this.maxSeekBackTime$.getValue();(vn(u)||!isFinite(u))&&ot(n).then(l=>l.text()).then(l=>{let c=/#EXT-X-STREAM-INF[^\n]+\n(.+)/m.exec(l)?.[1];if(c){let d=new URL(c,n).toString();ql(d).then(p=>{vn(p)||this.maxSeekBackTime$.next(p)})}}).catch(()=>{})}})}playIfAllowed(){Ae(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),this.liveOffset.pause(),E(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:gn.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=pe(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}};import{assertNever as vC,debounce as SC,ErrorCategory as Ql,fromEvent as Gl,isNonNullable as yC,isNullable as TC,map as KS,merge as XS,observableFrom as JS,Subscription as IC,ValueSubject as EC,VideoQuality as xC}from"@vkontakte/videoplayer-shared";var Ra=class{constructor(e){this.subscription=new IC;this.videoState=new C("stopped");this.manifests$=new EC([]);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"),E(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 c=this.videoState.getState();this.videoState.setState("changing_manifest"),this.videoState.startTransitionTo(c);let{currentTime:d}=this.video;this.prepare(),o&&this.params.output.autoVideoTrackLimits$.next(o.to),l.state==="none"&&this.params.desiredState.seekState.setState({state:"requested",position:d*1e3,forcePrecise:!0});return}switch(a?.to!=="paused"&&l.state==="requested"&&this.seek(l.position),t){case"ready":i==="ready"?E(this.params.desiredState.playbackState,"ready"):i==="paused"?(this.videoState.setState("paused"),E(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"&&E(this.params.desiredState.playbackState,"playing");return;case"paused":i==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):a?.to==="paused"&&E(this.params.desiredState.playbackState,"paused");return;case"changing_manifest":break;default:return vC(t)}};this.textTracksManager=new qe(e.source.url),this.params=e,this.video=Ee(e.container,e.tuning),this.params.output.element$.next(this.video),this.masterManifest={id:"master",quality:xC.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(oe(this.params.source.url)),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),fn(pe(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:Ql.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:Ql.WTF,message:"HlsProvider internal logic error",thrown:o})},a=ke(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(KS(o=>o.to)),this.params.output.playbackState$),this.subscription.add(st(this.video,t.isLooped,i)),this.subscription.add(Pe(this.video,t.volume,a.volumeState$,i)),this.subscription.add(a.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(Fe(this.video,t.playbackRate,a.playbackRateState$,i)),this.textTracksManager.connect(this.video,t,e),this.subscription.add(a.playing$.subscribe(()=>{this.videoState.setState("playing"),E(t.playbackState,"playing")},i)).add(a.pause$.subscribe(()=>{this.videoState.setState("paused"),E(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(),c=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(l&&yC(l.to)){let h=l.to.id;this.params.desiredState.videoTrack.setState(l.to);let f=this.manifests$.getValue().find(b=>b.id===h);f&&(this.params.output.currentVideoTrack$.next(f),this.params.output.hostname$.next(oe(f.url)))}let d=this.params.desiredState.playbackRate.getState(),p=this.params.output.element$.getValue()?.playbackRate;if(d!==p){let h=this.params.output.element$.getValue();h&&(this.params.desiredState.playbackRate.setState(d),h.playbackRate=d)}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(KS(o=>o.map(({id:u,quality:l,size:c,bandwidth:d,fps:p})=>({id:u,quality:l,size:c,fps:p,bitrate:d})))).subscribe(this.params.output.availableVideoTracks$,i)),!O.device.isIOS||!this.params.tuning.useNativeHLSTextTracks){let{textTracks:o}=this.video;this.subscription.add(XS(Gl(o,"addtrack"),Gl(o,"removetrack"),Gl(o,"change"),JS(["init"])).subscribe(()=>{for(let u=0;u<o.length;u++)o[u].mode="hidden"},i))}let n=XS(t.playbackState.stateChangeStarted$,t.seekState.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.stateChangeStarted$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,this.manifests$,JS(["init"])).pipe(SC(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(TC(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(){Ae(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),E(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:Ql.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next(),this.video.currentTime=e/1e3}};var ty=M(xi(),1),Wl=M(Vi(),1),iy=M($t(),1);import{assertNever as PC,assertNonNullable as ZS,debounce as wC,ErrorCategory as ey,isHigherOrEqual as kC,isLowerOrEqual as AC,isNonNullable as LC,merge as RC,observableFrom as $C,Subscription as MC,map as CC}from"@vkontakte/videoplayer-shared";var $a=class{constructor(e){this.subscription=new MC;this.videoState=new C("stopped");this.trackUrls={};this.textTracksManager=new qe;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"),E(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"?E(this.params.desiredState.playbackState,"ready"):t==="paused"?(this.videoState.setState("paused"),E(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"&&E(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):i?.to==="paused"&&E(this.params.desiredState.playbackState,"paused");return;default:return PC(e)}};this.params=e,this.video=Ee(e.container,e.tuning),this.params.output.element$.next(this.video),(0,ty.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,Wl.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:ey.WTF,message:"MpegProvider internal logic error",thrown:o})},a=ke(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(CC(o=>o.to)),this.params.output.playbackState$),this.subscription.add(st(this.video,t.isLooped,i)),this.subscription.add(Pe(this.video,t.volume,a.volumeState$,i)),this.subscription.add(a.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(Fe(this.video,t.playbackRate,a.playbackRateState$,i)),s(Ue(this.video),e.elementVisible$),this.subscription.add(a.playing$.subscribe(()=>{this.videoState.setState("playing"),E(t.playbackState,"playing")},i)).add(a.pause$.subscribe(()=>{this.videoState.setState("paused"),E(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&&LC(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=RC(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,$C(["init"])).pipe(wC(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;ZS(e,"MpegProvider: track is not selected");let{url:t}=this.trackUrls[e];ZS(t,`MpegProvider: No url for ${e}`),this.params.tuning.requestQuick&&(t=ba(t)),this.video.setAttribute("src",t),this.video.load(),this.params.output.hostname$.next(oe(t))}playIfAllowed(){Ae(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),E(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:ey.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=Ct(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)},a=this.params.output.currentVideoTrack$.getValue()?.quality,s=!!(e.max||e.min),n=(0,Wl.default)(this.trackUrls).map(l=>l.track);if(!a||!s||Lr({limits:e,lowestAvailableQuality:(0,iy.default)(n,-1)?.quality,highestAvailableQuality:n[0].quality})){i();return}let o=e.max?AC(a,e.max):!0,u=e.min?kC(a,e.min):!0;o&&u||i(e)}};import{assertNever as ay,debounce as OC,merge as sy,observableFrom as _C,Subscription as NC,map as ny,ValueSubject as FC,ErrorCategory as zl,VideoQuality as qC}from"@vkontakte/videoplayer-shared";import{ErrorCategory as DC}from"@vkontakte/videoplayer-shared";var ry=["stun:videostun.mycdn.me:80"],VC=1e3,BC=3,Yl=()=>null,Sn=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=Yl;this.externalStopCallback=Yl;this.externalErrorCallback=Yl;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:ry}]};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:DC.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),VC)}normalizeOptions(e={}){let t={stunServerList:ry,maxRetryNumber:BC,errorChanel:null};return e.stunServerList&&(t.stunServerList=e.stunServerList),e.maxRetryNumber&&e.maxRetryNumber>0&&(t.maxRetryNumber=e.maxRetryNumber),t}};var Ma=class{constructor(e){this.videoState=new C("stopped");this.maxSeekBackTime$=new FC(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"),E(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"),E(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"&&E(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):i?.to==="paused"&&E(this.params.desiredState.playbackState,"paused");return;default:return ay(e)}};this.subscription=new NC,this.params=e,this.log=this.params.dependencies.logger.createComponentLog("WebRTCLiveProvider"),this.video=Ee(e.container,e.tuning),this.liveStreamClient=new Sn(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:zl.WTF,message:"WebRTCLiveProvider internal logic error",thrown:n})};this.subscription.add(sy(this.videoState.stateChangeStarted$.pipe(ny(n=>({transition:n,type:"start"}))),this.videoState.stateChangeEnded$.pipe(ny(n=>({transition:n,type:"end"})))).subscribe(({transition:n,type:o})=>{this.log({message:`[videoState change] ${o}: ${JSON.stringify(n)}`})}));let a=ke(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(Ue(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(Pe(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 ay(n.to)}},i)).add(sy(t.playbackState.stateChangeStarted$,this.videoState.stateChangeEnded$,_C(["init"])).pipe(OC(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(oe(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:qC.INVARIANT}),this.video.srcObject=e,E(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:zl.EXTERNAL_API,message:e.message,thrown:e})}playIfAllowed(){Ae(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),E(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:zl.DOM,thrown:e}))}prepare(){this.liveStreamClient.connect()}};var Ca=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}};import{assertNever as Da,assertNonNullable as _t,ErrorCategory as yn,filter as py,isNonNullable as hy,isNullable as YC,map as zC,merge as KC,once as XC,Subject as le,Subscription as my,ValueSubject as D,flattenObject as fy}from"@vkontakte/videoplayer-shared";import{Observable as UC,map as oy,Subscription as HC,Subject as jC}from"@vkontakte/videoplayer-shared";var uy=r=>new UC(e=>{let t=new HC,i=r.desiredPlaybackState$.stateChangeStarted$.pipe(oy(({from:l,to:c})=>`${l}-${c}`)),a=r.desiredPlaybackState$.stateChangeEnded$,s=r.providerChanged$.pipe(oy(({type:l})=>l!==void 0)),n=new jC,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()}});import{ErrorCategory as QC,Subscription as GC,combine as WC,filter as cy,once as dy}from"@vkontakte/videoplayer-shared";function ly(){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 he;this.subscriptions=new GC;this.audioContext=null;this.gainNode=null;this.mediaElementSource=null;this.subscriptions.add(this.provider$.pipe(cy(s=>!!s.type),dy()).subscribe(({type:s})=>this.subscribe(s)))}static{this.errorId="VolumeMultiplierManager"}subscribe(e){O.browser.isSafari&&e!=="MPEG"||this.subscriptions.add(WC({video:this.providerOutput.element$,playbackState:this.providerOutput.playbackState$,volume:this.providerOutput.volume$}).pipe(cy(({playbackState:t,video:i,volume:{muted:a,volume:s}})=>t==="playing"&&!!i&&!a&&!!s),dy()).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=ly();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:QC.VIDEO_PIPELINE,message:e?.message??`${r.errorId} exception`,thrown:e})}};var JC={chunkDuration:5e3,maxParallelRequests:5},Va=class{constructor(e){this.current$=new D({type:void 0});this.providerError$=new le;this.noAvailableProvidersError$=new le;this.volumeMultiplierError$=new le;this.providerOutput={position$:new D(0),duration$:new D(1/0),volume$:new D({muted:!1,volume:1}),availableVideoStreams$:new D([]),currentVideoStream$:new D(void 0),availableVideoTracks$:new D([]),currentVideoTrack$:new D(void 0),availableAudioStreams$:new D([]),currentAudioStream$:new D(void 0),availableAudioTracks$:new D([]),currentVideoSegmentLength$:new D(0),currentAudioSegmentLength$:new D(0),isAudioAvailable$:new D(!0),autoVideoTrackLimitingAvailable$:new D(!1),autoVideoTrackLimits$:new D(void 0),currentBuffer$:new D(void 0),isBuffering$:new D(!0),error$:new le,fetcherError$:new le,fetcherRecoverableError$:new le,warning$:new le,willSeekEvent$:new le,soundProhibitedEvent$:new le,seekedEvent$:new le,loopedEvent$:new le,endedEvent$:new le,firstBytesEvent$:new le,loadedMetadataEvent$:new le,firstFrameEvent$:new le,canplay$:new le,isLive$:new D(void 0),isLiveEnded$:new D(null),isLowLatency$:new D(!1),canChangePlaybackSpeed$:new D(!0),liveTime$:new D(void 0),liveBufferTime$:new D(void 0),liveLatency$:new D(void 0),severeStallOccurred$:new le,availableTextTracks$:new D([]),currentTextTrack$:new D(void 0),hostname$:new D(void 0),httpConnectionType$:new D(void 0),httpConnectionReused$:new D(void 0),inPiP$:new D(!1),inFullscreen$:new D(!1),element$:new D(void 0),elementVisible$:new D(!0),availableSources$:new D(void 0),is3DVideo$:new D(!1),playbackState$:new D(""),getCurrentTime$:new D(null)};this.subscription=new my;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=xS([...wS(this.params.tuning),...PS(this.params.tuning)],this.params.tuning).filter(l=>hy(e.sources[l])),{forceFormat:i,formatsToAvoid:a}=this.params.tuning,s=[];i?s=[i]:a.length?s=[...t.filter(l=>!(0,Kl.default)(a,l)),...t.filter(l=>(0,Kl.default)(a,l))]:s=t,this.log({message:`Selected formats: ${s.join(" > ")}`}),this.tracer.log("Selected formats",fy(s)),this.screenFormatsIterator=new Ca(s);let n=[...wl(!0),...wl(!1)];this.chromecastFormatsIterator=new Ca(n.filter(l=>hy(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(YC(t)){this.handleNoFormatsError(e);return}let i;try{i=this.createProvider(e,t)}catch(a){this.providerError$.next({id:"ProviderNotConstructed",category:yn.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 Da(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 _t(u),new Pa({...o,source:u,sourceHls:l})}case"DASH_LIVE_CMAF":{let u=this.applyFailoverHost(t[e]);return _t(u),new wa({...o,source:u})}case"HLS":case"HLS_ONDEMAND":{let u=this.applyFailoverHost(t[e]);return _t(u),O.video.nativeHlsSupported||!this.params.tuning.useHlsJs?new Ra({...o,source:u}):new Aa({...o,source:u})}case"HLS_LIVE":case"HLS_LIVE_CMAF":{let u=this.applyFailoverHost(t[e]);return _t(u),new La({...o,source:u,config:{maxPausedTime:this.params.tuning.live.maxPausedTime},format:e})}case"MPEG":{let u=this.applyFailoverHost(t[e]);return _t(u),new $a({...o,source:u})}case"DASH_LIVE":{let u=this.applyFailoverHost(t[e]);return _t(u),new gg({...o,source:u,config:{...JC,maxPausedTime:this.params.tuning.live.maxPausedTime}})}case"WEB_RTC_LIVE":{let u=this.applyFailoverHost(t[e]);return _t(u),new Ma({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 Da(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 _t(o),new Er({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 Da(e)}}skipFormat(e){switch(e){case"SCREEN":return this.screenFormatsIterator.next();case"CHROMECAST":return this.chromecastFormatsIterator.next();default:return Da(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 Da(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,gy.default)((0,by.default)(e).map(([a,s])=>[a,i(s)]))}initProviderErrorHandling(){let e=new my,t=!1,i=0;return e.add(KC(this.providerOutput.error$.pipe(py(a=>!this.params.tuning.ignoreAudioRendererError||!a.message||!/AUDIO_RENDERER_ERROR/ig.test(a.message))),uy({desiredPlaybackState$:this.params.desiredState.playbackState,maxTransitionInterval:this.params.tuning.maxPlaybackTransitionInterval,position$:this.providerOutput.position$,providerChanged$:this.current$}).pipe(zC(a=>({id:`ProviderHangup:${a}`,category:yn.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(py(({to:s})=>s==="playing"),XC()).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===yn.NETWORK,u=a.category===yn.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,d=l&&!u&&(o&&t||!c);n={...n,isNetworkError:o,isFatalError:u,haveFailoverHost:l,tryFailover:d,canReinitProvider:c},c?(i++,this.reinitProvider()):d?(this.failoverIndex=this.failoverIndex===void 0?0:this.failoverIndex+1,this.reinitProvider()):(i=0,this.switchToNextProvider(s??"SCREEN"))}this.tracer.error("providerError",fy(n))})),e}};import{fromEvent as Tn,once as ZC,combine as eD,Subscription as vy,ValueSubject as Xl,map as tD,filter as iD,isNonNullable as In,now as Be,safeStorage as Jl}from"@vkontakte/videoplayer-shared";var rD=5e3,Sy="one_video_throughput",yy="one_video_rtt",Ba=window.navigator.connection,Ty=()=>{let r=Ba?.downlink;if(In(r)&&r!==10)return r*1e3},Iy=()=>{let r=Ba?.rtt;if(In(r)&&r!==3e3)return r},Ey=(r,e,t)=>{let i=t*8,a=i/r;return i/(a+e)},Zl=class r{constructor(e){this.subscription=new vy;this.concurrentDownloads=new Set;this.tuningConfig=e;let t=r.load(Sy)||(e.useBrowserEstimation?Ty():void 0)||rD,i=r.load(yy)??(e.useBrowserEstimation?Iy():void 0)??0;if(this.throughput$=new Xl(t),this.rtt$=new Xl(i),this.rttAdjustedThroughput$=new Xl(Ey(t,i,e.rttPenaltyRequestSize)),this.throughput=ni.getSmoothedValue(t,-1,e),this.rtt=ni.getSmoothedValue(i,1,e),e.useBrowserEstimation){let a=()=>{let n=Ty();n&&this.throughput.next(n);let o=Iy();In(o)&&this.rtt.next(o)};Ba&&"onchange"in Ba&&this.subscription.add(Tn(Ba,"change").subscribe(a)),a()}this.subscription.add(this.throughput.smoothed$.subscribe(a=>{Jl.set(Sy,a.toFixed(0))})),this.subscription.add(this.rtt.smoothed$.subscribe(a=>{Jl.set(yy,a.toFixed(0))})),this.subscription.add(this.throughput.debounced$.subscribe(this.throughput$)),this.subscription.add(this.rtt.debounced$.subscribe(this.rtt$)),this.subscription.add(eD({throughput:this.throughput.smoothed$,rtt:this.rtt.smoothed$}).pipe(tD(({throughput:a,rtt:s})=>Ey(a,s,e.rttPenaltyRequestSize)),iD(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=Be(),a=new vy;switch(this.subscription.add(a),this.concurrentDownloads.add(e),e.readyState){case 4:break;case 3:case 2:a.add(Tn(e,"progress").pipe(ZC()).subscribe(s=>{t=s.loaded,i=Be()}));break;case 1:case 0:a.add(Tn(e,"loadstart").subscribe(()=>{t=0,i=Be()}));break}a.add(Tn(e,"loadend").subscribe(s=>{if(e.status===200){let n=s.loaded,o=Be(),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=Be(),n=0,o=Be(),u=c=>{this.concurrentDownloads.delete(e),i.releaseLock(),e.cancel(`Throughput Estimator error: ${c}`).catch(()=>{})},l=async({done:c,value:d})=>{if(c)!t&&this.addRawSpeed(a,Be()-s,1),this.concurrentDownloads.delete(e);else if(d){if(t){let p=Be();if(p-o>this.tuningConfig.lowLatency.continuesByteSequenceInterval||p-s>this.tuningConfig.lowLatency.maxLastEvaluationTimeout){let f=o-s;f&&this.addRawSpeed(n,f,1,t),n=d.byteLength,s=Be()}else n+=d.byteLength;o=Be()}else a+=d.byteLength,n+=d.byteLength,n>=this.tuningConfig.streamMinSampleSize&&Be()-o>=this.tuningConfig.streamMinSampleTime&&(this.addRawSpeed(n,Be()-o,this.concurrentDownloads.size),n=0,o=Be());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=Jl.get(e);if(In(t))return parseInt(t,10)??void 0}},xy=Zl;import{fillWithDefault as aD,VideoQuality as En}from"@vkontakte/videoplayer-shared";var Py={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:En.Q_4320P,activeVideoAreaThreshold:.1,highQualityLimit:En.Q_720P,trafficSavingLimit:En.Q_480P},droppedFramesChecker:{enabled:!1,percentLimit:.1,checkTime:1e3,countLimit:3,tickCountAfterQualityChange:5,qualityUpWaitingTime:5e3,minQualityBanLimit:En.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,useLazyInit:!1},wy=r=>({...aD(r,Py),configName:[...r.configName??[],...Py.configName]});import{assertNonNullable as xn,combine as St,ErrorCategory as Pn,filter as re,filterChanged as j,fromEvent as tc,isNonNullable as Ry,isNullable as dD,Logger as pD,map as q,mapTo as $y,merge as Nt,now as wn,once as He,Subject as Q,Subscription as My,tap as ic,ValueSubject as y,isHigher as hD,isInvariantQuality as Cy,flattenObject as Ft,throttle as rc,getTraceSubscriptionMethod as Dy,Tracer as mD,InternalsExposure as fD}from"@vkontakte/videoplayer-shared";import{merge as sD,map as nD,filter as ky,isNonNullable as oD}from"@vkontakte/videoplayer-shared";var ec=({seekState:r,position$:e})=>sD(r.stateChangeEnded$.pipe(nD(({to:t})=>t.state==="none"?void 0:(t.position??NaN)/1e3),ky(oD)),e.pipe(ky(()=>r.getState().state==="none")));import{assertNonNullable as uD}from"@vkontakte/videoplayer-shared";var Ay=r=>{let e=typeof r.container=="string"?document.getElementById(r.container):r.container;return uD(e,`Wrong container or containerId {${r.container}}`),e};import{filter as lD,once as cD}from"@vkontakte/videoplayer-shared";var Ly=(r,e,t,i)=>{r!==void 0&&e.getState()===void 0&&e.getPrevState()===void 0&&t?.getValue().length===0?t.pipe(lD(a=>a.length>0),cD()).subscribe(a=>{a.find(i)&&e.startTransitionTo(r)}):(r===void 0||t?.getValue().find(i))&&e.startTransitionTo(r)};var P=class P{constructor(e={configName:[]},t=mD.createRootTracer(!1)){this.subscription=new My;this.logger=new pD;this.abrLogger=this.logger.createComponentLog("ABR");this.internalsExposure=null;this.isPlaybackStarted=!1;this.hasLiveOffsetByPaused=new y(!1);this.hasLiveOffsetByPausedTimer=0;this.playerInitRequest=0;this.playerInited=new y(!1);this.wasSetStartedQuality=!1;this.desiredState={playbackState:new C("stopped"),seekState:new C({state:"none"}),volume:new C({volume:1,muted:!1}),videoTrack:new C(void 0),videoStream:new C(void 0),audioStream:new C(void 0),autoVideoTrackSwitching:new C(!0),autoVideoTrackLimits:new C({}),isLooped:new C(!1),isLowLatency:new C(!1),playbackRate:new C(1),externalTextTracks:new C([]),internalTextTracks:new C([]),currentTextTrack:new C(void 0),textTrackCuesSettings:new C({}),cameraOrientation:new C({x:0,y:0})};this.info={playbackState$:new y(void 0),position$:new y(0),duration$:new y(1/0),muted$:new y(!1),volume$:new y(1),availableVideoStreams$:new y([]),currentVideoStream$:new y(void 0),availableQualities$:new y([]),availableQualitiesFps$:new y({}),currentQuality$:new y(void 0),isAutoQualityEnabled$:new y(!0),autoQualityLimitingAvailable$:new y(!1),autoQualityLimits$:new y({}),predefinedQualityLimitType$:new y("unknown"),availableAudioStreams$:new y([]),currentAudioStream$:new y(void 0),availableAudioTracks$:new y([]),isAudioAvailable$:new y(!0),currentPlaybackRate$:new y(1),currentBuffer$:new y({start:0,end:0}),isBuffering$:new y(!0),isStalled$:new y(!1),isEnded$:new y(!1),isLooped$:new y(!1),isLive$:new y(void 0),isLiveEnded$:new y(null),canChangePlaybackSpeed$:new y(void 0),atLiveEdge$:new y(void 0),atLiveDurationEdge$:new y(void 0),liveTime$:new y(void 0),liveBufferTime$:new y(void 0),liveLatency$:new y(void 0),currentFormat$:new y(void 0),availableTextTracks$:new y([]),currentTextTrack$:new y(void 0),throughputEstimation$:new y(void 0),rttEstimation$:new y(void 0),videoBitrate$:new y(void 0),hostname$:new y(void 0),httpConnectionType$:new y(void 0),httpConnectionReused$:new y(void 0),surface$:new y("none"),chromecastState$:new y("NOT_AVAILABLE"),chromecastDeviceName$:new y(void 0),intrinsicVideoSize$:new y(void 0),availableSources$:new y(void 0),is3DVideo$:new y(!1),currentVideoSegmentLength$:new y(0),currentAudioSegmentLength$:new y(0)};this.events={inited$:new Q,ready$:new Q,started$:new Q,playing$:new Q,paused$:new Q,stopped$:new Q,willStart$:new Q,willResume$:new Q,willPause$:new Q,willStop$:new Q,willDestruct$:new Q,watchCoverageRecord$:new Q,watchCoverageLive$:new Q,managedError$:new Q,fatalError$:new Q,fetcherRecoverableError$:new Q,ended$:new Q,looped$:new Q,seeked$:new Q,willSeek$:new Q,autoplaySoundProhibited$:new Q,firstBytes$:new Q,loadedMetadata$:new Q,firstFrame$:new Q,canplay$:new Q,log$:new Q,fetcherError$:new Q,severeStallOccured$:new Q};this.experimental={element$:new y(void 0),tuningConfigName$:new y([]),enableDebugTelemetry$:new y(!1),dumpTelemetry:qb,getCurrentTime$:new y(null)};if(this.initLogs(),this.tuning=wy(e),this.tracer=t,this.experimental.tuningConfigName$.next(this.tuning.configName),this.chromecastInitializer=new Ja({receiverApplicationId:e.chromecastReceiverId,isDisabled:e.disableChromecast,dependencies:{logger:this.logger}}),this.throughputEstimator=new xy(this.tuning.throughputEstimator),e.exposeInternalsToGlobal&&(this.internalsExposure=new fD("CORE"),this.internalsExposure.expose({player:this})),this.initChromecastSubscription(),this.initDesiredStateSubscriptions(),Proxy&&Reflect)return P.withErrorCatching(this)}static withWaitInit(e=!1){return(t,i,a)=>{let s=a.value;return a.value=function(...n){return this.subscription.add(this.playerInited.pipe(re(o=>!!o),He()).subscribe(()=>{e&&!this.providerContainer&&this.createProviderContainer(this.config),s.apply(this,n)})),this},a}}static withErrorCatching(e){return new Proxy(e,{get:(t,i,a)=>{let s=Reflect.get(t,i,a);return typeof s!="function"?s:(...n)=>{try{return s.apply(t,n)}catch(o){let u=n.map(d=>JSON.stringify(d,(p,h)=>{let f=typeof h;return(0,Vy.default)(["number","string","boolean"],f)?h:h===null?null:`<${f}>`})),l=`Player.${String(i)}`,c=`Exception calling ${l} (${u.join(", ")})`;throw e.events.fatalError$.next({id:l,category:Pn.WTF,message:c,thrown:o}),o}}}})}createProviderContainer(e){this.providerContainer=new Va({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.initProviderDebugTelemetry(),this.initProviderContainerSubscription(this.providerContainer),this.initStartingVideoTrack(this.providerContainer),this.providerContainer.init()}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",Ft(n)),this.domContainer=Ay(e),this.chromecastInitializer.contentId=e.meta?.videoId,this.initTracerSubscription(),console.log(`Core SDK useLazyInit = ${this.tuning.useLazyInit}`),this.tuning.useLazyInit||this.createProviderContainer(e),this.setLiveLowLatency(this.tuning.dashCmafLive.lowLatency.isActiveOnDefault),this.setMuted(this.tuning.isAudioDisabled),this.initBasicDebugTelemetry(),this.initWakeLock(),this.playerInited.next(!0)},i=()=>{this.tuning.autostartOnlyIfVisible&&window.requestAnimationFrame?this.playerInitRequest=window.requestAnimationFrame(()=>t()):t()},a=()=>{this.tuning.asyncResolveClientChecker?O.isInited$.pipe(re(s=>!!s),He()).subscribe(()=>{console.log("Core SDK async start"),i()}):i()};return this.isNotActiveTabCase()?(this.tracer.log("request play from hidden tab"),tc(document,"visibilitychange").pipe(He()).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(){let e=this.desiredState.playbackState;return this.tracer.log("prepare",{currentPlayBackState:e.getState()}),e.getState()==="stopped"&&e.startTransitionTo("ready"),this}play(){let e=this.desiredState.playbackState;return this.tracer.log("play",{currentPlayBackState:e.getState()}),e.getState()!=="playing"&&e.startTransitionTo("playing"),this}pause(){let e=this.desiredState.playbackState;return this.tracer.log("pause",{currentPlayBackState:e.getState()}),e.getState()!=="paused"&&e.startTransitionTo("paused"),this}stop(){let e=this.desiredState.playbackState;return this.tracer.log("stop",{currentPlayBackState:e.getState()}),e.getState()!=="stopped"&&e.startTransitionTo("stopped"),this}seekTime(e,t=!0){let i=this.info.duration$.getValue(),a=this.info.isLive$.getValue(),s=e;return 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){let t=this.info.duration$.getValue();return this.tracer.log("seekPercent",{percent:e,duration:t}),isFinite(t)&&this.seekTime(Math.abs(t)*e,!1),this}setVolume(e,t){let i=this.desiredState.volume,s=i.getTransition()?.to.muted??this.info.muted$.getValue(),n=t??(this.tuning.isAudioDisabled||s);return 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){let t=this.desiredState.volume,i=this.tuning.isAudioDisabled||e,s=t.getTransition()?.to.volume??this.info.volume$.getValue();return 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.desiredState.videoStream.startTransitionTo(e),this}setAudioStream(e){return this.desiredState.audioStream.startTransitionTo(e),this}setQuality(e){xn(this.providerContainer);let t=this.providerContainer.providerOutput.availableVideoTracks$.getValue();return 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(re(i=>i.length>0),He()).subscribe(i=>{this.setVideoTrackIdByQuality(i,e)}):this.explicitInitialQuality=e:t.length>0&&this.setVideoTrackIdByQuality(t,e),this}setAutoQuality(e){return this.tracer.log("setAutoQuality",{enable:e}),this.desiredState.autoVideoTrackSwitching.startTransitionTo(e),this}setAutoQualityLimits(e){return this.tracer.log("setAutoQualityLimits",Ft(e)),this.desiredState.autoVideoTrackLimits.startTransitionTo(e),this}setPredefinedQualityLimits(e){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}}return this.setAutoQualityLimits(a),this}setPlaybackRate(e){xn(this.providerContainer);let t=this.providerContainer?.providerOutput.element$.getValue();return this.tracer.log("setPlaybackRate",{playbackRate:e,isVideoElementAvailable:!!t}),t&&(this.desiredState.playbackRate.setState(e),t.playbackRate=e),this}setExternalTextTracks(e){return e.length&&this.tracer.log("setExternalTextTracks",Ft(e)),this.desiredState.externalTextTracks.startTransitionTo(e.map(t=>({type:"external",...t}))),this}selectTextTrack(e){return Ly(e,this.desiredState.currentTextTrack,this.providerContainer?.providerOutput.availableTextTracks$,t=>t.id===e),this.tracer.log("selectTextTrack",{textTrackId:e}),this}setTextTrackCueSettings(e){return 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.tracer.log("setLooped",{isLooped:e}),this.desiredState.isLooped.startTransitionTo(e),this}toggleChromecast(){this.tracer.log("toggleChromecast"),this.chromecastInitializer.toggleConnection()}startCameraManualRotation(e,t){let i=this.getScene3D();return this.tracer.log("startCameraManualRotation",{isScene3DAvailable:!!i,mx:e,my:t}),i&&i.startCameraManualRotation(e,t),this}stopCameraManualRotation(e=!1){let t=this.getScene3D();return this.tracer.log("stopCameraManualRotation",{isScene3DAvailable:!!t,immediate:e}),t&&t.stopCameraManualRotation(e),this}moveCameraFocusPX(e,t){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})}return this}holdCamera(){let e=this.getScene3D();return e&&e.holdCamera(),this}releaseCamera(){let e=this.getScene3D();return e&&e.releaseCamera(),this}getExactTime(){if(!this.providerContainer)return 0;let e=this.providerContainer.providerOutput.element$.getValue();if(dD(e))return this.info.position$.getValue();let t=this.desiredState.seekState.getState(),i=t.state==="none"?void 0:t.position;return Ry(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(Nt(this.desiredState.playbackState.stateChangeStarted$,this.desiredState.playbackState.forceChanged$).pipe(q(e=>e.to)).subscribe(this.info.playbackState$)).add(this.desiredState.isLooped.stateChangeEnded$.pipe(q(e=>e.to)).subscribe(this.info.isLooped$)).add(this.desiredState.playbackRate.stateChangeEnded$.pipe(q(e=>e.to)).subscribe(this.info.currentPlaybackRate$)).add(this.desiredState.autoVideoTrackSwitching.stateChangeEnded$.pipe(q(e=>e.to)).subscribe(this.info.isAutoQualityEnabled$)).add(this.desiredState.autoVideoTrackLimits.stateChangeEnded$.pipe(q(e=>e.to)).subscribe(e=>{this.info.autoQualityLimits$.next(e);let{highQualityLimit:t,trafficSavingLimit:i}=this.tuning.autoTrackSelection;this.info.predefinedQualityLimitType$.next(Ou({limits:e,highQualityLimit:t,trafficSavingLimit:i}))})),this.subscription.add(this.desiredState.playbackState.stateChangeStarted$.pipe(re(({from:e})=>e==="stopped"),He()).subscribe(()=>{this.initedAt=wn(),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",Ft(n)),n.state==="requested"?this.desiredState.seekState.setState({...n,state:"applying"}):this.events.managedError$.next({id:`WillSeekIn${n.state}`,category:Pn.WTF,message:"Received unexpeceted willSeek$"})})).add(e.providerOutput.soundProhibitedEvent$.pipe(He()).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",Ft(n)),n.state==="applying"&&(this.desiredState.seekState.setState({state:"none"}),this.events.seeked$.next())})).add(e.current$.pipe(q(n=>n.type)).subscribe(this.info.currentFormat$)).add(e.current$.pipe(q(n=>n.destination),j()).subscribe(()=>this.isPlaybackStarted=!1)).add(e.providerOutput.availableVideoStreams$.subscribe(this.info.availableVideoStreams$)).add(St({availableVideoTracks:e.providerOutput.availableVideoTracks$,currentVideoStream:e.providerOutput.currentVideoStream$}).pipe(q(({availableVideoTracks:n,currentVideoStream:o})=>n.filter(u=>o?o.id===u.streamId:!0).map(({quality:u})=>u).sort((u,l)=>Cy(u)?1:Cy(l)?-1:hD(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(j()).subscribe(this.info.isAudioAvailable$)).add(e.providerOutput.currentVideoTrack$.pipe(re(n=>Ry(n))).subscribe(n=>{this.info.currentQuality$.next(n?.quality),this.info.videoBitrate$.next(n?.bitrate)})).add(e.providerOutput.currentVideoSegmentLength$.pipe(j((n,o)=>Math.round(n)===Math.round(o))).subscribe(this.info.currentVideoSegmentLength$)).add(e.providerOutput.currentAudioSegmentLength$.pipe(j((n,o)=>Math.round(n)===Math.round(o))).subscribe(this.info.currentAudioSegmentLength$)).add(e.providerOutput.hostname$.pipe(j()).subscribe(this.info.hostname$)).add(e.providerOutput.httpConnectionType$.pipe(j()).subscribe(this.info.httpConnectionType$)).add(e.providerOutput.httpConnectionReused$.pipe(j()).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(q(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(ic(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(St({hasLiveOffsetByPaused:Nt(this.desiredState.playbackState.stateChangeStarted$,this.desiredState.playbackState.forceChanged$).pipe(q(n=>n.to),j(),q(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(St({atLiveEdge:St({isLive:e.providerOutput.isLive$,isLowLatency:e.providerOutput.isLowLatency$,position:ec({seekState:this.desiredState.seekState,position$:e.providerOutput.position$})}).pipe(q(({isLive:n,position:o,isLowLatency:u})=>{let l=this.getActiveLiveDelay(u);return n&&Math.abs(o)<l/1e3}),j(),ic(n=>n&&this.setPlaybackRate(1))),hasPausedTimeoutCase:this.hasLiveOffsetByPaused}).pipe(q(({atLiveEdge:n,hasPausedTimeoutCase:o})=>n&&!o)).subscribe(this.info.atLiveEdge$)).add(St({isLive:e.providerOutput.isLive$,position:e.providerOutput.position$,duration:e.providerOutput.duration$}).pipe(q(({isLive:n,position:o,duration:u})=>n&&(Math.abs(u)-Math.abs(o))*1e3<this.tuning.live.activeLiveDelay),j(),ic(n=>n&&this.setPlaybackRate(1))).subscribe(this.info.atLiveDurationEdge$)).add(e.providerOutput.volume$.pipe(q(n=>n.muted),j()).subscribe(this.info.muted$)).add(e.providerOutput.volume$.pipe(q(n=>n.volume),j()).subscribe(this.info.volume$)).add(ec({seekState:this.desiredState.seekState,position$:e.providerOutput.position$}).subscribe(this.info.position$)).add(Nt(e.providerOutput.endedEvent$.pipe($y(!0)),e.providerOutput.seekedEvent$.pipe($y(!1))).pipe(j()).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(q(n=>({id:n?`No${n}`:"NoProviders",category:Pn.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(He(),q(n=>n??wn()-this.initedAt)).subscribe(this.events.firstBytes$)).add(e.providerOutput.loadedMetadataEvent$.subscribe(this.events.loadedMetadata$)).add(e.providerOutput.firstFrameEvent$.pipe(He(),q(()=>wn()-this.initedAt)).subscribe(this.events.firstFrame$)).add(e.providerOutput.canplay$.pipe(He(),q(()=>wn()-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 y(!1);this.subscription.add(e.providerOutput.seekedEvent$.subscribe(()=>t.next(!1))).add(e.providerOutput.willSeekEvent$.subscribe(()=>t.next(!0)));let i=new y(!0);this.subscription.add(e.current$.subscribe(()=>i.next(!0))).add(this.desiredState.playbackState.stateChangeEnded$.pipe(re(({to:n})=>n==="playing"),He()).subscribe(()=>i.next(!1)));let a=0,s=Nt(e.providerOutput.isBuffering$,t,i).pipe(q(()=>{let n=e.providerOutput.isBuffering$.getValue(),o=t.getValue()||i.getValue();return n&&!o}),j());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(Nt(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(Nt(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(),d;c==="CONNECTED"?d="second_screen":u?l?n?d="pip":o?d="fullscreen":d="inline":d="invisible":d="none",this.info.surface$.getValue()!==d&&this.info.surface$.next(d)}))}initChromecastSubscription(){this.subscription.add(this.chromecastInitializer.castState$.subscribe(this.info.chromecastState$)),this.subscription.add(this.chromecastInitializer.connection$.pipe(q(e=>e?.castDevice.friendlyName)).subscribe(this.info.chromecastDeviceName$)),this.subscription.add(this.chromecastInitializer.errorEvent$.subscribe(this.events.managedError$))}initStartingVideoTrack(e){let t=new My;this.subscription.add(t),this.subscription.add(e.current$.pipe(j((i,a)=>i.provider===a.provider)).subscribe(()=>{t.unsubscribe(),t.add(e.providerOutput.availableVideoTracks$.pipe(re(i=>i.length>0),He()).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=Ct(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(Nt(this.desiredState.videoTrack.stateChangeStarted$.pipe(q(e=>({transition:e,entity:"quality",type:"start"}))),this.desiredState.videoTrack.stateChangeEnded$.pipe(q(e=>({transition:e,entity:"quality",type:"end"}))),this.desiredState.autoVideoTrackSwitching.stateChangeStarted$.pipe(q(e=>({transition:e,entity:"autoQualityEnabled",type:"start"}))),this.desiredState.autoVideoTrackSwitching.stateChangeEnded$.pipe(q(e=>({transition:e,entity:"autoQualityEnabled",type:"end"}))),this.desiredState.seekState.stateChangeStarted$.pipe(q(e=>({transition:e,entity:"seekState",type:"start"}))),this.desiredState.seekState.stateChangeEnded$.pipe(q(e=>({transition:e,entity:"seekState",type:"end"}))),this.desiredState.playbackState.stateChangeStarted$.pipe(q(e=>({transition:e,entity:"playbackState",type:"start"}))),this.desiredState.playbackState.stateChangeEnded$.pipe(q(e=>({transition:e,entity:"playbackState",type:"end"})))).pipe(q(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$))}initBasicDebugTelemetry(){Fb(),this.experimental.enableDebugTelemetry$.next(this.tuning.enableTelemetryAtStart),[this.experimental.enableDebugTelemetry$.subscribe(e=>Nb(e)),this.events.fatalError$.subscribe(new ge("fatalError")),this.events.managedError$.subscribe(new ge("managedError")),this.info.currentBuffer$.subscribe(new ge("buffer"))].forEach(e=>this.subscription.add(e)),Ar("codecs",O.video.supportedCodecs)}initProviderDebugTelemetry(){let e=this.providerContainer?.providerOutput;xn(this.providerContainer),xn(e),[this.providerContainer.current$.subscribe(({type:t})=>Ar("provider",t)),e.duration$.subscribe(t=>Ar("duration",t)),e.availableVideoTracks$.pipe(re(t=>!!t.length),He()).subscribe(t=>Ar("tracks",t)),e.position$.subscribe(new ge("position")),e.currentVideoTrack$.pipe(q(t=>t?.quality)).subscribe(new ge("quality")),e.isBuffering$.subscribe(new ge("isBuffering"))].forEach(t=>this.subscription.add(t))}initTracerSubscription(){let e=Dy(this.tracer.log.bind(this.tracer)),t=Dy(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(j()).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(St({currentQuality:this.info.currentQuality$,videoBitrate:this.info.videoBitrate$}).pipe(re(({currentQuality:i,videoBitrate:a})=>!!i&&!!a),j((i,a)=>i.currentQuality===a.currentQuality)).subscribe(e("currentVideoTrack"))).add(this.info.currentVideoSegmentLength$.pipe(re(i=>i>0),j()).subscribe(e("currentVideoSegmentLength"))).add(this.info.currentAudioSegmentLength$.pipe(re(i=>i>0),j()).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(St({currentBuffer:this.info.currentBuffer$.pipe(re(i=>i.end>0),j((i,a)=>i.end===a.end&&i.start===a.start)),position:this.info.position$.pipe(j())}).pipe(rc(1e3)).subscribe(e("currentBufferAndPosition"))).add(this.info.duration$.pipe(j()).subscribe(e("duration"))).add(this.info.isBuffering$.subscribe(e("isBuffering"))).add(this.info.isLive$.pipe(j()).subscribe(e("isLive"))).add(this.info.canChangePlaybackSpeed$.pipe(j()).subscribe(e("canChangePlaybackSpeed"))).add(St({liveTime:this.info.liveTime$,liveBufferTime:this.info.liveBufferTime$,position:this.info.position$}).pipe(re(({liveTime:i,liveBufferTime:a})=>!!i&&!!a),rc(1e3)).subscribe(e("liveBufferAndPosition"))).add(this.info.atLiveEdge$.pipe(j(),re(i=>i===!0)).subscribe(e("atLiveEdge"))).add(this.info.atLiveDurationEdge$.pipe(j(),re(i=>i===!0)).subscribe(e("atLiveDurationEdge"))).add(this.info.muted$.pipe(j()).subscribe(e("muted"))).add(this.info.volume$.pipe(j()).subscribe(e("volume"))).add(this.info.isEnded$.pipe(j(),re(i=>i===!0)).subscribe(e("isEnded"))).add(this.info.availableSources$.subscribe(e("availableSources"))).add(St({throughputEstimation:this.info.throughputEstimation$,rtt:this.info.rttEstimation$}).pipe(re(({throughputEstimation:i,rtt:a})=>!!i&&!!a),rc(3e3)).subscribe(e("throughputEstimation"))).add(this.info.isStalled$.subscribe(e("isStalled"))).add(this.info.is3DVideo$.pipe(j(),re(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:Pn.DOM,message:String(a)})})};this.subscription.add(Nt(tc(document,"visibilitychange"),tc(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",Ft({quality:t,availableTracks:Ft(e),track:Ft(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&&!Vr()}};Y([P.withWaitInit(!0)],P.prototype,"prepare",1),Y([P.withWaitInit(!0)],P.prototype,"play",1),Y([P.withWaitInit(!1)],P.prototype,"pause",1),Y([P.withWaitInit(!1)],P.prototype,"stop",1),Y([P.withWaitInit(!1)],P.prototype,"seekTime",1),Y([P.withWaitInit(!1)],P.prototype,"seekPercent",1),Y([P.withWaitInit(!1)],P.prototype,"setVolume",1),Y([P.withWaitInit(!1)],P.prototype,"setMuted",1),Y([P.withWaitInit(!0)],P.prototype,"setVideoStream",1),Y([P.withWaitInit(!0)],P.prototype,"setAudioStream",1),Y([P.withWaitInit(!0)],P.prototype,"setQuality",1),Y([P.withWaitInit(!1)],P.prototype,"setAutoQuality",1),Y([P.withWaitInit(!1)],P.prototype,"setAutoQualityLimits",1),Y([P.withWaitInit(!1)],P.prototype,"setPredefinedQualityLimits",1),Y([P.withWaitInit(!0)],P.prototype,"setPlaybackRate",1),Y([P.withWaitInit(!1)],P.prototype,"setExternalTextTracks",1),Y([P.withWaitInit(!1)],P.prototype,"selectTextTrack",1),Y([P.withWaitInit(!1)],P.prototype,"setTextTrackCueSettings",1),Y([P.withWaitInit(!1)],P.prototype,"setLooped",1),Y([P.withWaitInit(!1)],P.prototype,"startCameraManualRotation",1),Y([P.withWaitInit(!1)],P.prototype,"stopCameraManualRotation",1),Y([P.withWaitInit(!1)],P.prototype,"moveCameraFocusPX",1),Y([P.withWaitInit(!1)],P.prototype,"holdCamera",1),Y([P.withWaitInit(!1)],P.prototype,"releaseCamera",1);var kn=P;import{Subscription as l4,Observable as c4,Subject as d4,ValueSubject as p4,VideoQuality as h4}from"@vkontakte/videoplayer-shared";var m4=`@vkontakte/videoplayer-core@${nc}`;export{Qa as ChromecastState,$n as HttpConnectionType,c4 as Observable,$e as PlaybackState,kn as Player,Ga as PredefinedQualityLimits,m4 as SDK_VERSION,d4 as Subject,l4 as Subscription,Mn as Surface,nc as VERSION,p4 as ValueSubject,ct as VideoFormat,h4 as VideoQuality,O as clientChecker,wr as isMobile};
178
+ `;var qr=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 Xo(this.params.fov,this.params.orientation),this.cameraRotationManager=new Jo(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(zT,this.gl.VERTEX_SHADER),i=this.createShader(GT,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,p=t+r,c=e-i,d=t+r;return[a,n,o,u,l,p,c,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}};import{isNullable as m0,now as xa,once as b0,Subscription as g0,ValueSubject as kd,isNonNullable as S0,safeStorage as QT,filterChanged as v0}from"@vkontakte/videoplayer-shared";var Zo="stalls_manager_metrics",y0="stalls_manager_abr_params",Rd=class{constructor(){this.isSeeked$=new kd(!1);this.isBuffering$=new kd(!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 g0;this.severeStallOccurred$=new kd(!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}set lastVideoTrackSelected(e){this.lastUniqueVideoTrackSelected?.id!==e.id&&(this.lastUniqueVideoTrackSelected=e,this.lastUniqueVideoTrackSelectedTimestamp=xa(),this.currentStallsCount=0)}destroy(){window.clearTimeout(this.qualityRestrictionTimer),this.subscription.unsubscribe(),this.currentStallDuration$.getValue()!==0&&this.updateStallData();let e=(xa()-this.providerStartWatchingTimestamp-this.sumStallsDuration)/1e3,t=this.sumStallsDuration;this.addStallInfoToHistory(e,t),this.updateStoredAbrParams()}updateStoredAbrParams(){let e=[],t=this.getStoredData(Zo,"[]");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(Zo,[]),this.setStoredData(y0,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(QT.get(e)??t)}setStoredData(e,t){QT.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(Zo,"[]"),r=t/e,a=i.length?ii(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(Zo,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(b0()).subscribe(t=>this.providerStartWatchingTimestamp=xa())),this.subscription.add(this.currentStallDuration$.pipe(v0()).subscribe(t=>{let{stallDurationNoDataBeforeQualityDecrease:i,stallCountBeforeQualityDecrease:r,resetQualityRestrictionTimeout:a,ignoreStallsOnSeek:n}=this.tuning;if(m0(this.lastUniqueVideoTrackSelected)||n&&this.isSeeked$.getValue())return;let o=this.rtt$.getValue(),u=this.throughput$.getValue(),l=this.videoLastDataObtainedTimestamp$.getValue(),p=xa(),c=r&&this.currentStallsCount>=r,d=i&&p-this.lastUniqueVideoTrackSelectedTimestamp>=i+o&&p-l>=i+o&&t>=i;(c||d)&&(this.severeStallOccurred$.next(!0),window.clearTimeout(this.qualityRestrictionTimer),this.maxQualityLimit=this.lastUniqueVideoTrackSelected.quality,S0(this.lastUniqueVideoTrackSelected.bitrate)&&u>this.lastUniqueVideoTrackSelected.bitrate&&(this.predictedThroughputWithoutData=this.lastUniqueVideoTrackSelected.bitrate)),!t&&xa()-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}))}},eu=Rd;import{combine as T0,map as I0,observeElementSize as x0,Subscription as E0,ValueSubject as Ld,noop as P0}from"@vkontakte/videoplayer-shared";var tu=class{constructor(){this.subscription=new E0;this.pipSize$=new Ld(void 0);this.videoSize$=new Ld(void 0);this.elementSize$=new Ld(void 0);this.pictureInPictureWindowRemoveEventListener=P0}connect({observableVideo:e,video:t}){let i=r=>{let a=r.target;this.pipSize$.next({width:a.width,height:a.height})};this.subscription.add(x0(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(T0({videoSize:this.videoSize$,pipSize:this.pipSize$,inPip:e.inPiP$}).pipe(I0(({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 Yi=class{constructor(e){this.subscription=new M0;this.videoState=new N("stopped");this.droppedFramesManager=new kr;this.stallsManager=new eu;this.elementSizeManager=new tu;this.videoTracksMap=new Map;this.audioTracksMap=new Map;this.textTracksMap=new Map;this.videoStreamsMap=new Map;this.audioStreamsMap=new Map;this.videoTrackSwitchHistory=new bi;this.audioTrackSwitchHistory=new bi;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"),A(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"),A(this.params.desiredState.playbackState,"paused")):t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):i?.to==="ready"&&A(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"&&A(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):i?.to==="paused"&&A(this.params.desiredState.playbackState,"paused");return;default:return A0(e)}}};this.init3DScene=e=>{if(this.scene3D)return;this.scene3D=new qr(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 Je(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(Ee(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 Ko({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 r=this.constructor.name,a=o=>{e.error$.next({id:r,category:WT.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(Md(c=>!!c.length),KT()).subscribe(c=>{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:c})}));let n=this.params.desiredState.seekState.stateChangeEnded$.pipe($d(c=>c.to.state!=="none"),iu());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(Md(YT),KT()),e.firstBytesEvent$),a(this.stallsManager.severeStallOccurred$,e.severeStallOccurred$),a(this.videoState.stateChangeEnded$.pipe($d(c=>c.to)),this.params.output.playbackState$),this.subscription.add(i.loopExpected$.subscribe(c=>{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(St(this.video,t.isLooped,r)),this.subscription.add(Ve(this.video,t.volume,i.volumeState$,r)),this.subscription.add(i.volumeState$.subscribe(this.params.output.volume$,r)),this.subscription.add(Xe(this.video,t.playbackRate,i.playbackRateState$,r)),this.elementSizeManager.connect({video:this.video,observableVideo:i}),a(et(this.video,{threshold:this.params.tuning.autoTrackSelection.activeVideoAreaThreshold}),e.elementVisible$),this.subscription.add(i.playing$.subscribe(()=>{this.videoState.setState("playing"),A(t.playbackState,"playing"),this.scene3D&&this.scene3D.play()},r)).add(i.pause$.subscribe(()=>{this.videoState.setState("paused"),A(t.playbackState,"paused")},r)).add(i.canplay$.subscribe(()=>{this.videoState.getState()==="playing"&&this.playIfAllowed()},r)),this.subscription.add(this.player.state$.stateChangeEnded$.subscribe(({to:c})=>{if(c==="manifest_ready"){this.videoTracksMap=new Map,this.audioTracksMap=new Map,this.textTracksMap=new Map;let d=this.player.getStreams();if(k0(d,"Manifest not loaded or empty"),!this.params.tuning.isAudioDisabled){let f=[];for(let b of d.audio){f.push(pd(b));let g=[];for(let S of b.representations){let T=vT(S);g.push(T),this.audioTracksMap.set(T,{stream:b,representation:S})}this.audioStreamsMap.set(b,g)}this.params.output.availableAudioStreams$.next(f)}let h=[];for(let f of d.video){h.push(hd(f));let b=[];for(let g of f.representations){let S=ST({...g,streamId:f.id});S&&(b.push(S),this.videoTracksMap.set(S,{stream:f,representation:g}))}this.videoStreamsMap.set(f,b)}this.params.output.availableVideoStreams$.next(h);for(let f of d.text)for(let b of f.representations){let g=yT(f,b);this.textTracksMap.set(g,{stream:f,representation:b})}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 c==="representations_ready"&&(this.videoState.setState("ready"),this.player.initBuffer())},r));let{vktvAbrThrottle:o}=this.params.tuning.dash,u=o&&xT(o)||null;this.subscription.add(ru(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$,L0(this.video,"progress")).pipe(Md(()=>this.videoTracksMap.size>0)).subscribe(async()=>{let c=this.player.state$.getState(),d=this.player.state$.getTransition();if(c!=="manifest_ready"&&c!=="running"||d||c==="running"&&u&&!u())return;t.autoVideoTrackSwitching.getTransition()&&t.autoVideoTrackSwitching.setState(t.autoVideoTrackSwitching.getState()),this.selectVideoAudioRepresentations();let{video:h,audio:f}=this.selectedRepresentations;if(!h)return;let b=zi(this.videoTracksMap.keys(),S=>this.videoTracksMap.get(S)?.representation.id===h.id);YT(b)&&(this.stallsManager.lastVideoTrackSelected=b);let g=this.params.desiredState.autoVideoTrackLimits.getTransition();if(g&&this.params.output.autoVideoTrackLimits$.next(g.to),c==="manifest_ready")await this.player.initRepresentations(h.id,f?.id,this.params.sourceHls);else if(await this.player.switchRepresentation("video",h.id),f){let S=!!t.audioStream.getTransition();await this.player.switchRepresentation("audio",f.id,S)}},r)),this.subscription.add(t.cameraOrientation.stateChangeEnded$.subscribe(({to:c})=>{this.scene3D&&c&&this.scene3D.pointCameraTo(c.x,c.y)})),this.subscription.add(this.elementSizeManager.subscribe(c=>{this.scene3D&&c&&this.scene3D.setViewportSize(c.width,c.height)})),this.subscription.add(this.player.currentVideoRepresentation$.pipe(iu()).subscribe(c=>{let d=zi(this.videoTracksMap.entries(),([,{representation:g}])=>g.id===c);if(!d){e.currentVideoTrack$.next(void 0),e.currentVideoStream$.next(void 0);return}let[h,{stream:f}]=d,b=this.params.desiredState.videoStream.getTransition();b&&b.to&&b.to.id===f.id&&this.params.desiredState.videoStream.setState(b.to),e.currentVideoTrack$.next(h),e.currentVideoStream$.next(hd(f))},r)),this.subscription.add(this.player.currentAudioRepresentation$.pipe(iu()).subscribe(c=>{let d=zi(this.audioTracksMap.entries(),([,{representation:g}])=>g.id===c);if(!d){e.currentAudioStream$.next(void 0);return}let[h,{stream:f}]=d,b=this.params.desiredState.audioStream.getTransition();b&&b.to&&b.to.id===f.id&&this.params.desiredState.audioStream.setState(b.to),e.currentAudioStream$.next(pd(f))},r)),this.subscription.add(this.player.currentVideoRepresentationInit$.subscribe(c=>{if(c?.is3dVideo&&this.params.tuning.spherical?.enabled)try{this.init3DScene(c),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)},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 l=t.playbackState.stateChangeStarted$.pipe($d(({to:c})=>c==="ready"),iu());this.subscription.add(ru(l,t.autoVideoTrackSwitching.stateChangeStarted$,this.player.state$.stateChangeEnded$,Bd(["init"])).subscribe(()=>{let c=t.autoVideoTrackSwitching.getState(),h=t.playbackState.getState()==="ready"?this.params.tuning.dash.forwardBufferTargetPreload:c?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;this.player.setBufferTarget(h)})),this.subscription.add(ru(l,this.player.state$.stateChangeEnded$,Bd(["init"])).subscribe(()=>this.player.setPreloadOnly(t.playbackState.getState()==="ready")));let p=ru(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,Bd(["init"])).pipe(R0(0));this.subscription.add(p.subscribe(this.syncPlayback,r))}selectVideoAudioRepresentations(){if(this.player.isStreamEnded)return;let e=this.params.tuning.useNewAutoSelectVideoTrack?Ls:Rs,t=this.params.tuning.useNewAutoSelectVideoTrack?xo:Io,i=this.params.tuning.useNewAutoSelectVideoTrack?Ot:To,{desiredState:r,output:a}=this.params,n=r.autoVideoTrackSwitching.getState(),o=r.videoTrack.getState()?.id,u=zi(this.videoTracksMap.keys(),E=>E.id===o),l=a.currentVideoTrack$.getValue(),p=r.videoStream.getState()??(u&&this.videoTracksMap.get(u)?.stream)??this.videoStreamsMap.size===1?this.videoStreamsMap.keys().next().value:void 0;if(!p)return;let c=zi(this.videoStreamsMap.keys(),E=>E.id===p.id),d=c&&this.videoStreamsMap.get(c);if(!d)return;let h=de(this.video.buffered,this.video.currentTime*1e3),f;this.player.isActiveLive$.getValue()?f=this.player.isLowLatency$.getValue()?this.params.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.params.tuning.dashCmafLive.normalizedLiveMinBufferSize:this.player.isLive$.getValue()?f=this.params.tuning.dashCmafLive.normalizedTargetMinBufferSize:f=n?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;let b=(this.video.duration*1e3||1/0)-this.video.currentTime*1e3,g=Math.min(h/Math.min(f,b||1/0),1),S=r.audioStream.getState()??(this.audioStreamsMap.size===1?this.audioStreamsMap.keys().next().value:void 0),T=S?.id&&zi(this.audioStreamsMap.keys(),E=>E.id===S.id)||this.audioStreamsMap.keys().next().value,v=0;if(T){if(u&&!n){let E=e(u,d,this.audioStreamsMap.get(T)??[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);v=Math.max(v,E?.bitrate??-1/0)}if(l){let E=e(l,d,this.audioStreamsMap.get(T)??[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);v=Math.max(v,E?.bitrate??-1/0)}}let w=u;(n||!w)&&(w=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:v,forwardBufferHealth:g,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 P=T&&t(w,d,this.audioStreamsMap.get(T)??[],{estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),stallsPredictedThroughput:this.stallsManager.predictedThroughput,tuning:this.stallsManager.abrTuningParams,forwardBufferHealth:g,history:this.audioTrackSwitchHistory,playbackRate:this.video.playbackRate,abrLogger:this.params.dependencies.abrLogger}),M=this.videoTracksMap.get(w)?.representation,O=P&&this.audioTracksMap.get(P)?.representation;M&&O?(this.selectedRepresentations.video=M,this.selectedRepresentations.audio=O):M&&!O&&this.audioTracksMap.size===0&&(this.selectedRepresentations.video=M,this.selectedRepresentations.audio=null)}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"),A(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:WT.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),Ce(this.video),this.tracer.end()}};var Ea=class extends Yi{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)}};import{combine as Dd,merge as XT,filter as JT,filterChanged as $0,isNullable as Cd,map as ZT,ValueSubject as Vd,isNonNullable as B0}from"@vkontakte/videoplayer-shared";var Pa=class extends Yi{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 Vd(1);a(i.playbackRateState$,n),this.subscription.add(this.params.output.position$.subscribe(this.player.livePositionFromPlayer$)).add(r.isLowLatency.stateChangeEnded$.pipe(ZT(o=>o.to)).subscribe(this.player.isLowLatency$)).add(Dd({liveBufferTime:t.liveBufferTime$,liveAvailabilityStartTime:this.player.liveAvailabilityStartTime$}).pipe(ZT(({liveBufferTime:o,liveAvailabilityStartTime:u})=>o&&u?o+u:void 0)).subscribe(t.liveTime$)).add(this.player.liveStreamStatus$.pipe(JT(o=>B0(o))).subscribe(o=>t.isLiveEnded$.next(o!=="active"&&t.position$.getValue()===0))).add(Dd({liveDuration:this.player.liveDuration$,liveStreamStatus:this.player.liveStreamStatus$,playbackRate:XT(i.playbackRateState$,new Vd(1))}).pipe(JT(({liveStreamStatus:o,liveDuration:u})=>o==="active"&&!!u)).subscribe(({liveDuration:o,playbackRate:u})=>{let l=t.liveBufferTime$.getValue(),p=t.position$.getValue(),{playbackCatchupSpeedup:c}=this.params.tuning.dashCmafLive.lowLatency;p||u<1-c||this.video.paused||Cd(l)||(e=o-l)})).add(Dd({time:t.liveBufferTime$,liveDuration:this.player.liveDuration$,playbackRate:XT(i.playbackRateState$,new Vd(1))}).pipe($0((o,u)=>this.player.liveStreamStatus$.getValue()==="active"?o.liveDuration===u.liveDuration:o.time===u.time)).subscribe(({time:o,liveDuration:u,playbackRate:l})=>{let p=t.position$.getValue(),{playbackCatchupSpeedup:c}=this.params.tuning.dashCmafLive.lowLatency;if(!p&&!this.video.paused&&l>=1-c||Cd(o)||Cd(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=TT(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)})}};import{assertNever as xC,assertNonNullable as EC,debounce as PC,ErrorCategory as RI,filter as LI,filterChanged as hu,fromEvent as wC,isNonNullable as MI,map as sp,merge as fu,observableFrom as ap,once as $I,Subscription as AC}from"@vkontakte/videoplayer-shared";var ip=C(Fs(),1);import{abortable as Jd,assertNonNullable as Qr,combine as Wr,ErrorCategory as Ut,filter as lu,filterChanged as an,flattenObject as nn,fromEvent as oi,getTraceSubscriptionMethod as pC,interval as Zd,isNonNullable as on,isNullable as kI,map as Yr,merge as er,now as ep,Subject as cu,Subscription as tp,tap as hC,throttle as fC,ValueSubject as he}from"@vkontakte/videoplayer-shared";var au=C(gt(),1),zr=C(kt(),1),nu=C(Fs(),1);var xI=C(Is(),1);import{assertNever as D0,ErrorCategory as eI,Subject as tI}from"@vkontakte/videoplayer-shared";var C0=18,iI=!1;try{iI=F.browser.isSafari&&!!F.browser.safariVersion&&F.browser.safariVersion<=C0}catch(s){console.error(s)}var Od=class{constructor(e){this.bufferFull$=new tI;this.error$=new tI;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:eI.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)};iI&&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:eI.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:D0(t)}}},rI=Od;import{abortable as Ii,assertNonNullable as it,ErrorCategory as ni,fromEvent as Wd,getExponentialDelay as Yd,isNonNullable as jr,isNullable as Ue,now as su,once as rC,Subject as sC,Subscription as aC,ValueSubject as Zi}from"@vkontakte/videoplayer-shared";var G=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 Hr=class extends G{};var wa=class extends G{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 Aa=class extends G{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 ka=class extends G{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var ae=class extends G{constructor(e,t){super(e,t);let i=this.readUint32();this.version=i>>>24,this.flags=i&16777215}};var Ra=class extends ae{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 La=class extends G{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Ma=class extends G{constructor(e,t){super(e,t),this.data=this.content}};var Ki=class extends ae{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 $a=class extends G{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Ba=class extends G{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Da=class extends ae{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 Ca=class extends ae{constructor(e,t){super(e,t),this.poseYawDegrees=this.readUint32(),this.posePitchDegrees=this.readUint32(),this.poseRollDegrees=this.readUint32()}};var Va=class extends ae{constructor(e,t){super(e,t),this.projectionBoundsTop=this.readUint32(),this.projectionBoundsBottom=this.readUint32(),this.projectionBoundsLeft=this.readUint32(),this.projectionBoundsRight=this.readUint32()}};var Oa=class extends G{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var _a=class extends ae{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 Fa=class extends G{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Na=class extends G{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Ua=class extends ae{constructor(e,t){super(e,t),this.sequenceNumber=this.readUint32()}};var qa=class extends G{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Ha=class extends ae{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 ja=class extends ae{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 za=class extends ae{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 Ga=class extends G{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Qa=class extends ae{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 Wa=class extends G{constructor(e,t){super(e,t),this.children=this.scanForBoxes(new DataView(this.content.buffer,this.content.byteOffset+78,this.content.byteLength-78))}};var O0={ftyp:Aa,moov:ka,mvhd:Ra,moof:La,mdat:Ma,sidx:Ki,trak:$a,mdia:Oa,mfhd:Ua,tkhd:_a,traf:qa,tfhd:Ha,tfdt:ja,trun:za,minf:Fa,sv3d:Ba,st3d:Da,prhd:Ca,proj:Na,equi:Va,uuid:wa,stbl:Ga,stsd:Qa,avc1:Wa,unknown:Hr},si=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=O0[e];return i?new i(t,new s):new Hr(t,new s)}};var Ti=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 F0=new TextDecoder("ascii"),N0=s=>F0.decode(new DataView(s.buffer,s.byteOffset+4,4))==="ftyp",U0=s=>{let e=new Ki(s,new si),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})},q0=(s,e)=>{let i=new si().parse(s),r=new Ti(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,c=u.source.byteOffset-o.source.byteOffset+u.size;return new DataView(s.buffer,l,c)},H0=s=>{let t=new si().parse(s),i=new Ti(t),r={},a=i.findAll("uuid");return a.length?a[a.length-1]:r},j0=s=>{let t=new si().parse(s);return new Ti(t).find("sidx")?.timescale},z0=(s,e)=>{let i=new si().parse(s),a=new Ti(i).findAll("traf"),n=a[a.length-1].children.find(c=>c.type==="tfhd"),o=a[a.length-1].children.find(c=>c.type==="tfdt"),u=a[a.length-1].children.find(c=>c.type==="trun"),l=0;return u.sampleDuration.length?l=u.sampleDuration.reduce((c,d)=>c+d,0):l=n.defaultSampleDuration*u.sampleCount,(Number(o.baseMediaDecodeTime)+l)/e*1e3},G0=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 si().parse(s),r=new Ti(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},sI={validateData:N0,parseInit:G0,getIndexRange:()=>{},parseSegments:U0,parseFeedableSegmentChunk:q0,getChunkEndTime:z0,getServerLatencyTimestamps:H0,getTimescaleFromIndex:j0};var Ka=C(gt(),1);import{assertNonNullable as Fd,isNonNullable as uI,isNullable as W0}from"@vkontakte/videoplayer-shared";import{assertNever as Q0}from"@vkontakte/videoplayer-shared";var aI={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"}},nI=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=Ya(s,t),r=i in aI,a=r?aI[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,p=Ya(u),c=l*2**((o-1)*8)+p,d=t+o,h;return d+c>s.byteLength?h=new DataView(s.buffer,s.byteOffset+d):h=new DataView(s.buffer,s.byteOffset+d,c),{tag:r?i:"0x"+i.toString(16).toUpperCase(),type:a,tagHeaderSize:d,tagSize:d+c,value:h,valueSize:c}},Ya=(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},Lt=(s,e)=>{switch(e){case"int":return s.getInt8(0);case"uint":return Ya(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:Q0(e)}},Xi=(s,e)=>{let t=0;for(;t<s.byteLength;){let i=new DataView(s.buffer,s.byteOffset+t),r=nI(i);if(!e(r))return;r.type==="master"&&Xi(r.value,e),t=r.value.byteOffset-s.byteOffset+r.valueSize}},oI=s=>{if(s.getUint32(0)!==440786851)return!1;let e,t,i,r=nI(s);return Xi(r.value,({tag:a,type:n,value:o})=>(a===17143?e=Lt(o,n):a===17026?t=Lt(o,n):a===17029&&(i=Lt(o,n)),!0)),(e===void 0||e<=1)&&t!==void 0&&t==="webm"&&(i===void 0||i<=2)};var lI=[357149030,290298740,374648427,174,224,30320,30321,30322,272869232,524531317,475249515,423732329,307544935],Y0=[231,22612,22743,167,171,163,160,175],K0=s=>{let e,t,i,r,a=!1,n=!1,o=!1,u,l,p=!1,c=0;return Xi(s,({tag:d,type:h,value:f,valueSize:b})=>{if(d===21419){let g=Lt(f,h);l=Ya(g)}else d!==21420&&(l=void 0);return d===408125543?(e=f.byteOffset,t=f.byteOffset+b):d===357149030?a=!0:d===290298740?n=!0:d===2807729?i=Lt(f,h):d===17545?r=Lt(f,h):d===21420&&l===475249515?u=Lt(f,h):d===374648427?Xi(f,({tag:g,type:S,value:T})=>g===30321?(p=Lt(T,S)===1,!1):!0):a&&n&&(0,Ka.default)(lI,d)&&(o=!0),!o}),Fd(e,"Failed to parse webm Segment start"),Fd(t,"Failed to parse webm Segment end"),Fd(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:p,stereoMode:c,projectionType:1,projectionData:{pose:{yaw:0,pitch:0,roll:0},bounds:{top:0,bottom:0,left:0,right:0}}}},X0=s=>{if(W0(s.cuesSeekPosition))return;let e=s.segmentStart+s.cuesSeekPosition,t=1024*1024;return{from:e,to:e+t}},J0=(s,e)=>{let t=!1,i=!1,r=o=>uI(o.time)&&uI(o.position),a=[],n;return Xi(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=Lt(l,u));break;case 183:break;case 241:n&&(n.position=Lt(l,u));break;default:t&&(0,Ka.default)(lI,o)&&(i=!0)}return!(t&&i)}),n&&r(n)&&a.push(n),a.map((o,u)=>{let{time:l,position:p}=o,c=a[u+1];return{status:"none",time:{from:l,to:c?c.time:e.segmentDuration},byte:{from:e.segmentStart+p,to:c?e.segmentStart+c.position-1:e.segmentEnd-1}}})},Z0=s=>{let e=0,t=!1;try{Xi(s,i=>i.tag===524531317?i.tagSize<=s.byteLength?(e=i.tagSize,!1):(e+=i.tagHeaderSize,!0):(0,Ka.default)(Y0,i.tag)?(e+i.tagSize<=s.byteLength&&(e+=i.tagSize,t||=(0,Ka.default)([163,160,175],i.tag)),!0):!1)}catch{}return e>0&&e<=s.byteLength&&t?new DataView(s.buffer,s.byteOffset,e):null},cI={validateData:oI,parseInit:K0,getIndexRange:X0,parseSegments:J0,parseFeedableSegmentChunk:Z0};var Xa=s=>{let e=/^(.+)\/([^;]+)(?:;.*)?$/.exec(s);if(e){let[,t,i]=e;if(t==="audio"||t==="video")switch(i){case"webm":return cI;case"mp4":return sI}}throw new ReferenceError(`Unsupported mime type ${s}`)};var zd=C(ud(),1),vI=C($i(),1),yI=C(ld(),1),TI=C(kt(),1),Gd=C(Ni(),1);import{isNonNullable as iC,isNullable as gI}from"@vkontakte/videoplayer-shared";var dI=s=>{try{let e=eC(),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 eC(){let s="(?<extlang>(?:[a-z]{3}(?:-[a-z]{3}){0,2}))",e="x(?:-[a-z0-9]{1,8})+",p=`^(?:(?<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(p,"i")}var Ud=C(kt(),1);import{videoSizeToQuality as tC}from"@vkontakte/videoplayer-shared";var pI=({id:s,width:e,height:t,bitrate:i,fps:r,quality:a,streamId:n})=>{let o=(a?Vt(a):void 0)??tC({width:e,height:t});return o&&{id:s,quality:o,bitrate:i,size:{width:e,height:t},fps:r,streamId:n}},hI=({id:s,bitrate:e})=>({id:s,bitrate:e}),fI=({language:s,label:e},{id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:s,label:e}),mI=({language:s,label:e,id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:s,label:e}),qd=({id:s,language:e,label:t,codecs:i,isDefault:r})=>({id:s,language:e,label:t,codec:(0,Ud.default)(i.split("."),0),isDefault:r}),Hd=({id:s,language:e,label:t,hdr:i,codecs:r})=>({id:s,language:e,hdr:i,label:t,codec:(0,Ud.default)(r.split("."),0)}),jd=s=>"url"in s,Ye=s=>s.type==="template",Ja=s=>s instanceof DOMException&&(s.name==="AbortError"||s.code===20);var bI=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},Ji=(s,e)=>{for(let t of s)if(e(t))return t;return null};var SI=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},ai=(s,e)=>{let t=s;t=(0,zd.default)(t,"$$","$");let i={RepresentationID:e.representationId,Number:e.segmentNumber,Bandwidth:e.bandwidth,Time:e.segmentTime};for(let[r,a]of(0,vI.default)(i)){let n=new RegExp(`\\$${r}(?:%0(\\d+)d)?\\$`,"g");t=(0,zd.default)(t,n,(o,u)=>gI(a)?o:gI(u)?a:(0,yI.default)(a,parseInt(u,10),"0"))}return t},II=(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(R=>R.textContent?.trim()??""),o=(0,TI.default)(n,0)??"",u=a.getAttribute("type")==="dynamic",l=a.getAttribute("availabilityStartTime"),p=a.getAttribute("publishTime"),c=a.getElementsByTagName("vk:Attrs")[0],d=c?.getElementsByTagName("vk:XLatestSegmentPublishTime")[0].textContent,h=c?.getElementsByTagName("vk:XStreamIsLive")[0].textContent,f=c?.getElementsByTagName("vk:XStreamIsUnpublished")[0].textContent,b=c?.getElementsByTagName("vk:XPlaybackDuration")[0].textContent,g;u&&(g={availabilityStartTime:l?new Date(l).getTime():0,publishTime:p?new Date(p).getTime():0,latestSegmentPublishTime:d?new Date(d).getTime():0,streamIsAlive:h==="yes",streamIsUnpublished:f==="yes"});let S,T=a.getAttribute("mediaPresentationDuration"),v=[...a.getElementsByTagName("Period")],w=v.reduce((R,y)=>({...R,[y.id]:y.children}),{}),P=v.reduce((R,y)=>({...R,[y.id]:y.getAttribute("duration")}),{});T?S=SI(T):(0,Gd.default)(P).filter(R=>R).length&&!u?S=(0,Gd.default)(P).reduce((R,y)=>R+(SI(y)??0),0):b&&(S=parseInt(b,10));let M=0,O=a.getAttribute("profiles")?.split(",")??[];for(let R of v.map(y=>y.id))for(let y of w[R]){let D=y.getAttribute("id")??"id"+(M++).toString(10),I=y.getAttribute("mimeType")??"",x=y.getAttribute("codecs")??"",k=y.getAttribute("contentType")??I?.split("/")[0],re=y.getAttribute("profiles")?.split(",")??[],B=dI(y.getAttribute("lang")??"")??{},q=y.querySelector("Label")?.textContent?.trim()??void 0,K=y.querySelectorAll("Representation"),ne=y.querySelector("SegmentTemplate"),Se=y.querySelector("Role")?.getAttribute("value")??void 0,oe=k,Z={id:D,language:B.language,isDefault:Se==="main",label:q,codecs:x,hdr:oe==="video"&&Dr(x),mime:I,representations:[]};for(let L of K){let V=L.getAttribute("lang")??void 0,we=q??y.getAttribute("label")??L.getAttribute("label")??void 0,ve=L.querySelector("BaseURL")?.textContent?.trim()??"",te=new URL(ve||o,e).toString(),Te=L.getAttribute("mimeType")??I,rt=L.getAttribute("codecs")??x??"",qe;if(k==="text"){let ce=L.getAttribute("id")||"",st=B.privateuse?.includes("x-auto")||ce.includes("_auto"),Pe=L.querySelector("SegmentTemplate");if(Pe){let yt={representationId:L.getAttribute("id")??void 0,bandwidth:L.getAttribute("bandwidth")??void 0},qt=parseInt(L.getAttribute("bandwidth")??"",10)/1e3,Ht=parseInt(Pe.getAttribute("startNumber")??"",10)??1,at=parseInt(Pe.getAttribute("timescale")??"",10),wi=Pe.querySelectorAll("SegmentTimeline S")??[],nt=Pe.getAttribute("media");if(!nt)continue;let jt=[],zt=0,Gt="",ot=0,Tt=Ht,W=0;for(let ue of wi){let He=parseInt(ue.getAttribute("d")??"",10),ie=parseInt(ue.getAttribute("r")??"",10)||0,Ae=parseInt(ue.getAttribute("t")??"",10);W=Number.isFinite(Ae)?Ae:W;let je=He/at*1e3,ut=W/at*1e3;for(let fe=0;fe<ie+1;fe++){let ke=ai(nt,{...yt,segmentNumber:Tt.toString(10),segmentTime:(W+fe*He).toString(10)}),lt=(ut??0)+fe*je,xt=lt+je;Tt++,jt.push({time:{from:lt,to:xt},url:ke})}W+=(ie+1)*He,zt+=(ie+1)*je}ot=W/at*1e3,Gt=ai(nt,{...yt,segmentNumber:Tt.toString(10),segmentTime:W.toString(10)});let It={time:{from:ot,to:1/0},url:Gt},Ie={type:"template",baseUrl:te,segmentTemplateUrl:nt,initUrl:"",totalSegmentsDurationMs:zt,segments:jt,nextSegmentBeyondManifest:It,timescale:at};qe={id:ce,kind:"text",segmentReference:Ie,profiles:[],duration:S,bitrate:qt,mime:"",codecs:"",width:0,height:0,isAuto:st}}else qe={id:ce,isAuto:st,kind:"text",url:te}}else{let ce=L.getAttribute("contentType")??Te?.split("/")[0]??k,st=y.getAttribute("profiles")?.split(",")??[],Pe=parseInt(L.getAttribute("width")??"",10),yt=parseInt(L.getAttribute("height")??"",10),qt=parseInt(L.getAttribute("bandwidth")??"",10)/1e3,Ht=L.getAttribute("frameRate")??"",at=L.getAttribute("quality")??void 0,wi=Ht?Mo(Ht):void 0,nt=L.getAttribute("id")??"id"+(M++).toString(10),jt=ce==="video"?`${yt}p`:ce==="audio"?`${qt}Kbps`:rt,zt=`${nt}@${jt}`,Gt=[...O,...re,...st],ot,Tt=L.querySelector("SegmentBase"),W=L.querySelector("SegmentTemplate")??ne;if(Tt){let Ie=L.querySelector("SegmentBase Initialization")?.getAttribute("range")??"",[ue,He]=Ie.split("-").map(ke=>parseInt(ke,10)),ie={from:ue,to:He},Ae=L.querySelector("SegmentBase")?.getAttribute("indexRange"),[je,ut]=Ae?Ae.split("-").map(ke=>parseInt(ke,10)):[],fe=Ae?{from:je,to:ut}:void 0;ot={type:"byteRange",url:te,initRange:ie,indexRange:fe}}else if(W){let Ie={representationId:L.getAttribute("id")??void 0,bandwidth:L.getAttribute("bandwidth")??void 0},ue=parseInt(W.getAttribute("timescale")??"",10),He=W.getAttribute("initialization")??"",ie=W.getAttribute("media"),Ae=parseInt(W.getAttribute("startNumber")??"",10)??1,je=ai(He,Ie);if(!ie)throw new ReferenceError("No media attribute in SegmentTemplate");let ut=W.querySelectorAll("SegmentTimeline S")??[],fe=[],ke=0,lt="",xt=0;if(ut.length){let Qt=Ae,le=0;for(let ct of ut){let me=parseInt(ct.getAttribute("d")??"",10),ze=parseInt(ct.getAttribute("r")??"",10)||0,Wt=parseInt(ct.getAttribute("t")??"",10);le=Number.isFinite(Wt)?Wt:le;let Ai=me/ue*1e3,Mu=le/ue*1e3;for(let Yt=0;Yt<ze+1;Yt++){let $u=ai(ie,{...Ie,segmentNumber:Qt.toString(10),segmentTime:(le+Yt*me).toString(10)}),Jr=(Mu??0)+Yt*Ai,Bu=Jr+Ai;Qt++,fe.push({time:{from:Jr,to:Bu},url:$u})}le+=(ze+1)*me,ke+=(ze+1)*Ai}xt=le/ue*1e3,lt=ai(ie,{...Ie,segmentNumber:Qt.toString(10),segmentTime:le.toString(10)})}else if(iC(S)){let le=parseInt(W.getAttribute("duration")??"",10)/ue*1e3,ct=Math.ceil(S/le),me=0;for(let ze=1;ze<ct;ze++){let Wt=ai(ie,{...Ie,segmentNumber:ze.toString(10),segmentTime:me.toString(10)});fe.push({time:{from:me,to:me+le},url:Wt}),me+=le}xt=me,lt=ai(ie,{...Ie,segmentNumber:ct.toString(10),segmentTime:me.toString(10)})}let Lu={time:{from:xt,to:1/0},url:lt};ot={type:"template",baseUrl:te,segmentTemplateUrl:ie,initUrl:je,totalSegmentsDurationMs:ke,segments:fe,nextSegmentBeyondManifest:Lu,timescale:ue}}else throw new ReferenceError("Unknown MPD segment referencing type");if(!ce||!Te)continue;let It={video:"video",audio:"audio",text:"text"}[ce];if(!It)continue;oe||=It,qe={id:zt,kind:It,segmentReference:ot,profiles:Gt,duration:S,bitrate:qt,mime:Te,codecs:rt,width:Pe,height:yt,fps:wi,quality:at}}Z.language||=V,Z.label||=we,Z.mime||=Te,Z.codecs||=rt,Z.hdr||=oe==="video"&&Dr(rt),Z.representations.push(qe)}if(oe){let L=r[oe].find(V=>V.id===Z.id);if(L&&Z.representations.every(V=>Ye(V.segmentReference)))for(let V of L.representations){let ve=Z.representations.find(Te=>Te.id===V.id)?.segmentReference,te=V.segmentReference;te.segments.push(...ve.segments),te.nextSegmentBeyondManifest=ve.nextSegmentBeyondManifest}else r[oe].push(Z)}}return{duration:S,streams:r,baseUrls:n,live:g}};var Za=class{constructor(e,t,i,{fetcher:r,tuning:a,getCurrentPosition:n,isActiveLowLatency:o,compatibilityMode:u=!1,manifest:l}){this.currentLiveSegmentServerLatency$=new Zi(0);this.currentLowLatencySegmentLength$=new Zi(0);this.currentSegmentLength$=new Zi(0);this.onLastSegment$=new Zi(!1);this.fullyBuffered$=new Zi(!1);this.playingRepresentation$=new Zi(void 0);this.playingRepresentationInit$=new Zi(void 0);this.error$=new sC;this.gaps=[];this.subscription=new aC;this.allInitsLoaded=!1;this.activeSegments=new Set;this.downloadAbortController=new ee;this.switchAbortController=new ee;this.destroyAbortController=new ee;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=Ii(this.destroyAbortController.signal,async function*(e){let t=this.representations.get(e);it(t,`Cannot find representation ${e}`),this.playingRepresentationId=e,this.downloadingRepresentationId=e,this.sourceBuffer=this.mediaSource.addSourceBuffer(`${t.mime}; codecs="${t.codecs}"`),this.sourceBufferTaskQueue=new rI(this.sourceBuffer),this.subscription.add(Wd(this.sourceBuffer,"updateend").subscribe(()=>{this.checkEjectedSegments(),this.maintain()},n=>{let o,u=this.mediaSource.readyState;u!=="open"&&(o={id:`SegmentEjection_source_${u}`,category:ni.VIDEO_PIPELINE,message:"Error when trying to clear segments ejected by browser",thrown:n}),o??={id:"SegmentEjection",category:ni.VIDEO_PIPELINE,message:"Error when trying to clear segments ejected by browser",thrown:n},this.error$.next(o)})),this.subscription.add(Wd(this.sourceBuffer,"error").subscribe(()=>this.error$.next({id:"SourceBuffer",category:ni.VIDEO_PIPELINE,message:"SourceBuffer Error event fired"}))),this.subscription.add(this.sourceBufferTaskQueue.bufferFull$.subscribe(n=>{let o=this.getCurrentPosition();if(!this.sourceBuffer||!o||!_(this.mediaSource,this.sourceBuffer))return;let u=Math.min(this.bufferLimit,Mr(this.sourceBuffer.buffered)*.8);this.bufferLimit=u;let l=de(this.sourceBuffer.buffered,o),p=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(o,n*2,l<p).catch(c=>{this.handleAsyncError(c,"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);it(i,"No init buffer for starting representation"),it(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=Ii(this.destroyAbortController.signal,async function*(e,t=!1){if(!_(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);it(i,`No such representation ${e}`);let r=this.segments.get(e),a=this.initData.get(e);if(Ue(a)||Ue(r)?yield this.loadInit(i,"high",!1):a instanceof Promise&&(yield a),r=this.segments.get(e),it(r,"No segments for starting representation"),a=this.initData.get(e),!(!a||!(a instanceof ArrayBuffer)||!this.sourceBuffer||!_(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();jr(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=Ii(this.destroyAbortController.signal,async function*(e,t=!1){if(!_(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);it(i,`No such representation ${e}`);let r=this.segments.get(e),a=this.initData.get(e);if(Ue(a)||Ue(r)?yield this.loadInit(i,"high",!1):a instanceof Promise&&(yield a),r=this.segments.get(e),it(r,"No segments for starting representation"),a=this.initData.get(e),!(!a||!(a instanceof ArrayBuffer)||!this.sourceBuffer||!_(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();jr(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=Ii(this.destroyAbortController.signal,async function*(e){let t=(0,nu.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 p=this.representations.get(u);if(!p||!Ye(p.segmentReference))return;let c=this.getActualLiveStartingSegments(p.segmentReference);this.segments.set(p.id,c)}let i=this.switchingToRepresentationId??this.downloadingRepresentationId,r=this.representations.get(i);it(r);let a=this.segments.get(i);it(a,"No segments for starting representation");let n=this.initData.get(i);if(it(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(p=>[p.id,null])),this.segments=new Map,this.parsedInitData=new Map,this.representations=new Map(i.map(p=>[p.id,p])),this.kind=e,this.mediaSource=t,this.sourceBuffer=null}switchToWithPreviousAbort(e,t=!1){!_(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId||(this.switchAbortController.abort(),this.switchAbortController=new ee,Ii(this.switchAbortController.signal,async function*(i,r=!1){this.switchingToRepresentationId=i;let a=this.representations.get(i);it(a,`No such representation ${i}`);let n=this.segments.get(i),o=this.initData.get(i);if(Ue(o)||Ue(n)?yield this.loadInit(a,"high",!1):o instanceof Promise&&(yield o),n=this.segments.get(i),it(n,"No segments for starting representation"),o=this.initData.get(i),!(!(o instanceof ArrayBuffer)||!this.sourceBuffer||!_(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();jr(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(){!Ue(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 ee,this.abortBuffer()}maintain(e=this.getCurrentPosition()){if(Ue(e)||Ue(this.downloadingRepresentationId)||Ue(this.playingRepresentationId)||Ue(this.sourceBuffer)||!_(this.mediaSource,this.sourceBuffer)||jr(this.switchingToRepresentationId)||this.isSeekingLive)return;let t=this.representations.get(this.downloadingRepresentationId),i=this.segments.get(this.downloadingRepresentationId);if(it(t,`No such representation ${this.downloadingRepresentationId}`),!i)return;let r=i.find(p=>e>=p.time.from&&e<p.time.to);jr(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 p=de(this.sourceBuffer.buffered,e),c=r?r.time.to+n:-1/0;r&&r.time.to-e<this.tuning.dash.maxSegmentDurationLeftToSelectNextSegment&&p>=r.time.to-e+n&&(a=c)}if(isFinite(this.bufferLimit)&&Mr(this.sourceBuffer.buffered)>=this.bufferLimit){let p=de(this.sourceBuffer.buffered,e),c=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(e,1/0,p<c).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 p="auto";if(this.tuning.dash.useFetchPriorityHints&&r)if((0,au.default)(u,r))p="high";else{let c=(0,zr.default)(u,0);c&&c.time.from-r.time.to>=this.forwardBufferTarget/2&&(p="low")}this.loadSegments(u,t,p).catch(c=>{this.handleAsyncError(c,"loadSegments")})}(!this.preloadOnly&&!this.allInitsLoaded&&r&&r.status==="fed"&&!u?.length&&de(this.sourceBuffer.buffered,e)>3e3||this.isActiveLowLatency())&&this.loadNextInit();let l=(0,zr.default)(i,-1);!this.isLive&&l&&(this.fullyBuffered$.next(l.time.to-e-de(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;jr(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,nu.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,nu.default)(e?.streams[this.kind],i=>i.representations)??[];if(![...this.segments.values()].every(i=>!i.length))for(let i of t){if(!i||!Ye(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,zr.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;it(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(!Ye(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=ai(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&&_t&&_t(this.gapDetectionIdleCallback),this.initLoadIdleCallback&&_t&&_t(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:c,time:{from:d,to:h}},f)=>{let b=d<=i&&h>=i,g=d>i||b||f===0&&i===0,S=Math.min(this.forwardBufferTarget,this.bufferLimit),T=this.preloadOnly&&d<=i+S||h<=i+S;return(c==="none"||c==="partially_ejected"&&g&&T&&this.sourceBuffer&&_(this.mediaSource,this.sourceBuffer)&&!(Fe(this.sourceBuffer.buffered,d)&&Fe(this.sourceBuffer.buffered,h)))&&g&&T});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,p=this.preloadOnly?this.forwardBufferTarget:0;for(let c=r;c<a.length&&(n<=l||o<=p);c++){let d=a[c];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"){Ye(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 Ii(o,async function*(){let p=Yd(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(c=>setTimeout(c,p))}.bind(this))(),o.aborted&&this.abortActiveSegments([e]));try{let p=await this.fetcher.fetch(n,{range:a,signal:o,onProgress:u,priority:i,isLowLatency:this.isActiveLowLatency()});if(this.lastDataObtainedTimestampMs=su(),!p)return;let c=new DataView(p),d=Xa(t.mime);if(!isFinite(r.segment.time.to)){let b=t.segmentReference.timescale;r.segment.time.to=d.getChunkEndTime(c,b)}u&&r.feedingBytes&&l?await Promise.all(l):await this.sourceBufferTaskQueue.append(c,o);let{serverDataReceivedTimestamp:h,serverDataPreparedTime:f}=d.getServerLatencyTimestamps(c);h&&f&&this.currentLiveSegmentServerLatency$.next(f-h),r.segment.status="downloaded",this.onSegmentFullyAppended(r,t.id),this.failedDownloads=0}catch(p){this.abortActiveSegments([e]),Ja(p)||(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())Ye(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 Ii(n,async function*(){let u=Yd(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(l=>{this.loadByteRangeSegmentsTimeoutId=window.setTimeout(l,u),Wd(window,"online").pipe(rC()).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=su(),this.failedDownloads=0}catch(u){this.abortActiveSegments(e),Ja(u)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}}prepareByteRangeFetchSegmentParams(e,t){if(Ye(t.segmentReference))throw new Error("Representation is not byte range type");let i=t.segmentReference.url,r={from:(0,zr.default)(e,0).byte.from,to:(0,zr.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=su(),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:ni.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:l})}}}}prepareTemplateFetchSegmentParams(e,t){if(!Ye(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,p)=>{if(!a.aborted)try{this.lastDataObtainedTimestampMs=su();let c=this.onSomeTemplateDataLoaded({dataView:l,loaded:p,signal:a,onSegmentAppendFailed:()=>this.abort(),representationId:t.id});n.push(c)}catch(c){this.error$.next({id:"SegmentFeeding",category:ni.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:c})}}:void 0;return{url:r,signal:a,onProgress:u,onProgressTasks:n}}abortActiveSegments(e){for(let t of this.activeSegments)(0,au.default)(e,t.segment)&&this.abortSegment(t.segment)}async onSomeTemplateDataLoaded({dataView:e,representationId:t,loaded:i,onSegmentAppendFailed:r,signal:a}){if(!this.activeSegments.size||!_(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),p=Xa(n.mime).parseFeedableSegmentChunk(l,this.isLive);p?.byteLength&&(u.status="partially_fed",o.feedingBytes+=p.byteLength,await this.sourceBufferTaskQueue.append(p),o.fedBytes+=p.byteLength)}}}}async onSomeByteRangesDataLoaded({dataView:e,representationId:t,globalFrom:i,loaded:r,signal:a,onSegmentAppendFailed:n}){if(!this.activeSegments.size||!_(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,p=l.byte.from-i,c=l.byte.to-i,d=c-p+1,h=p<r,f=c<=r;if(h){if(l.status==="downloading"&&f){l.status="downloaded";let b=new DataView(e.buffer,e.byteOffset+p,d);await this.sourceBufferTaskQueue.append(b,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-p),u.loadedBytes>u.feedingBytes)){let b=new DataView(e.buffer,e.byteOffset+p+u.feedingBytes,u.loadedBytes-u.feedingBytes),g=u.loadedBytes===d?b:Xa(o.mime).parseFeedableSegmentChunk(b);g?.byteLength&&(l.status="partially_fed",u.feedingBytes+=g.byteLength,await this.sourceBufferTaskQueue.append(g,a)&&!a.aborted?(u.fedBytes+=g.byteLength,u.fedBytes===d&&this.onSegmentFullyAppended(u,t)):await n())}}}}onSegmentFullyAppended(e,t){if(!(Ue(this.sourceBuffer)||!_(this.mediaSource,this.sourceBuffer))){!this.isLive&&F.browser.isSafari&&this.tuning.useSafariEndlessRequestBugfix&&(Fe(this.sourceBuffer.buffered,e.segment.time.from,100)&&Fe(this.sourceBuffer.buffered,e.segment.time.to,100)||this.error$.next({id:"EmptyAppendBuffer",category:ni.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",jd(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=Lr(()=>(0,xI.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?Ii(this.destroyAbortController.signal,async function*(){let o=Yd(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(u=>setTimeout(u,o))}.bind(this))():Promise.resolve()).then(()=>this.fetcher.fetchRepresentation(e.segmentReference,Xa(e.mime),r)).then(o=>{if(!o)return;let{init:u,dataView:l,segments:p}=o,c=l.buffer.slice(l.byteOffset,l.byteOffset+l.byteLength);this.initData.set(e.id,c);let d=p;this.isLive&&Ye(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:ni.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||!_(this.mediaSource,this.sourceBuffer)||!this.playingRepresentationId||Ue(e))return!1;let r=[],a=0,n=o=>{if(a>=t)return;r.push({...o.time});let u=jd(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,p=u.time.from>=e+Math.min(this.forwardBufferTarget,this.bufferLimit);(l||p)&&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,p=0;for(let c of this.segments.values())for(let d of c)(0,au.default)(["none","partially_ejected"],d.status)&&Math.round(d.time.from)<=Math.round(u)&&Math.round(d.time.to)>=Math.round(l)&&p++;if(p===this.segments.size){let c={time:{from:u,to:l},url:"",status:"none"};n(c)}}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=bI(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||!_(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||!_(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||!_(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||!_(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length||Ue(e)?0:de(this.sourceBuffer.buffered,e)}detectGaps(e,t){if(!this.sourceBuffer||!_(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||!_(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=Lr(()=>{try{this.detectGaps(e,t)}catch(i){this.error$.next({id:"GapDetection",category:ni.WTF,message:"detectGaps threw",thrown:i})}finally{this.gapDetectionIdleCallback=null}})}}checkEjectedSegments(){if(Ue(this.sourceBuffer)||!_(this.mediaSource,this.sourceBuffer)||Ue(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(p=>p.from-t<=n&&p.to+t>=o),l=e.filter(p=>n>=p.from&&n<p.to-t||o>p.from+t&&o<=p.to);u||(l.length===1?r.status="partially_ejected":this.gaps.some(p=>p.from===r.time.from||p.to===r.time.to)?r.status="partially_ejected":r.status="none")}}handleAsyncError(e,t){this.error$.next({id:t,category:ni.VIDEO_PIPELINE,thrown:e,message:"Something went wrong"})}};import{abortable as en,assertNever as EI,fromEvent as PI,merge as nC,now as tn,Subject as wI,ValueSubject as Kd,flattenObject as Gr,ErrorCategory as rn,SubscriptionRemovable as oC}from"@vkontakte/videoplayer-shared";var uu=class{constructor({throughputEstimator:e,requestQuic:t,tracer:i,compatibilityMode:r=!1,useEnableSubtitlesParam:a=!1}){this.lastConnectionType$=new Kd(void 0);this.lastConnectionReused$=new Kd(void 0);this.lastRequestFirstBytes$=new Kd(void 0);this.recoverableError$=new wI;this.error$=new wI;this.abortAllController=new ee;this.subscription=new oC;this.fetchManifest=en(this.abortAllController.signal,async function*(e){let t=this.tracer.createComponentTracer("FetchManifest"),i=e;this.requestQuic&&(i=vi(i)),!this.compatibilityMode&&this.useEnableSubtitlesParam&&(i=_o(i));let r=yield this.doFetch(i,{signal:this.abortAllController.signal}).catch(ou);return r?(t.log("success",Gr({url:i,message:"Request successfully executed"})),t.end(),this.onHeadersReceived(r.headers),r.text()):(t.error("error",Gr({url:i,message:"No data in request manifest"})),t.end(),null)}.bind(this));this.fetch=en(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,p=new Headers,c=this.tracer.createComponentTracer("Fetch");if(i)switch(t){case 0:{p.append("Range",`bytes=${i.from}-${i.to}`);break}case 1:{let I=new URL(l,location.href);I.searchParams.append("bytes",`${i.from}-${i.to}`),l=I.toString();break}default:EI(t)}this.requestQuic&&(l=vi(l));let d=this.abortAllController.signal,h;if(n){let I=new ee;if(h=nC(PI(this.abortAllController.signal,"abort"),PI(n,"abort")).subscribe(()=>{try{I.abort()}catch(x){ou(x)}}),this.abortAllController.signal.aborted||n.aborted)try{I.abort()}catch(x){ou(x)}d=I.signal}let f=tn();c.log("startRequest",Gr({url:l,priority:a,rangeMethod:t,range:i,isLowLatency:u,requestStartedAt:f}));let b=yield this.doFetch(l,{priority:a,headers:p,signal:d}),g=tn();if(!b)return c.error("error",{message:"No response in request"}),c.end(),this.unsubscribeAbortSubscription(h),null;if(this.throughputEstimator?.addRawRtt(g-f),!b.ok||!b.body){this.unsubscribeAbortSubscription(h);let I=`Fetch error ${b.status}: ${b.statusText}`;return c.error("error",{message:I}),c.end(),Promise.reject(new Error(`Fetch error ${b.status}: ${b.statusText}`))}if(this.onHeadersReceived(b.headers),!r&&!o){this.unsubscribeAbortSubscription(h);let I=tn(),x={requestStartedAt:f,requestEndedAt:I,duration:I-f};return c.log("endRequest",Gr(x)),c.end(),b.arrayBuffer()}let S=b.body;if(o){let I;[S,I]=b.body.tee(),this.throughputEstimator?.trackStream(I,u)}let T=S.getReader(),v,w=parseInt(b.headers.get("content-length")??"",10);Number.isFinite(w)&&(v=w),!v&&i&&(v=i.to-i.from+1);let P=0,M=v?new Uint8Array(v):new Uint8Array(0),O=!1,E=I=>{this.unsubscribeAbortSubscription(h),O=!0,ou(I)},R=en(d,async function*({done:I,value:x}){if(P===0&&this.lastRequestFirstBytes$.next(tn()-f),d.aborted){this.unsubscribeAbortSubscription(h);return}if(!I&&x){if(v)M.set(x,P),P+=x.byteLength;else{let k=new Uint8Array(M.length+x.length);k.set(M),k.set(x,M.length),M=k,P+=x.byteLength}r?.(new DataView(M.buffer),P),yield T?.read().then(R,E)}}.bind(this));yield T?.read().then(R,E),this.unsubscribeAbortSubscription(h);let y=tn(),D={failed:O,requestStartedAt:f,requestEndedAt:y,duration:y-f};return O?(c.error("endRequest",Gr(D)),c.end(),null):(c.log("endRequest",Gr(D)),c.end(),M.buffer)}.bind(this));this.fetchByteRangeRepresentation=en(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,p;e.indexRange&&(l=e.indexRange.from,p=e.indexRange.to,u=a+1===l,u&&(n=Math.min(l,r),o=Math.max(p,a))),n=Math.min(n,0);let c=yield this.fetch(e.url,{range:{from:n,to:o},priority:i,measureThroughput:!1});if(!c)return null;let d=new DataView(c,r-n,a-n+1);if(!t.validateData(d))throw new Error("Invalid media file");let h=t.parseInit(d),f=e.indexRange??t.getIndexRange(h);if(!f)throw new ReferenceError("No way to load representation index");let b;if(u)b=new DataView(c,f.from-n,f.to-f.from+1);else{let S=yield this.fetch(e.url,{range:f,priority:i,measureThroughput:!1});if(!S)return null;b=new DataView(S)}let g=t.parseSegments(b,h,f);return{init:h,dataView:new DataView(c),segments:g}}.bind(this));this.fetchTemplateRepresentation=en(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}=Oo(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:EI(r)}}destroy(){this.abortAllController.abort(),this.tracer.end(),this.subscription.unsubscribe()}async doFetch(e,t){let i=await vt(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:rn.FATAL});break;case 8:this.recoverableError$.next({id:"VideoDataLinkBlockedForFloodError",message:"Url blocked for flood",category:rn.FATAL});break;case 18:this.recoverableError$.next({id:"VideoDataLinkIllegalIpChangeError",message:"Client IP has changed",category:rn.FATAL});break;case 21:this.recoverableError$.next({id:"VideoDataLinkIllegalHostChangeError",message:"Request HOST has changed",category:rn.FATAL});break;default:this.error$.next({id:"GeneralVideoDataFetchError",message:`Generic video data fetch error (${a})`,category:rn.FATAL})}}unsubscribeAbortSubscription(e){e&&(e.unsubscribe(),this.subscription.remove(e))}},ou=s=>{if(!Ja(s))throw s};import{isNullable as uC,ValueSubject as lC}from"@vkontakte/videoplayer-shared";var sn=class s{constructor(e,t){this.currentRepresentation$=new lC(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(!uC(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&&Ye(t.segmentReference))}};var mC=["timeupdate","progress","play","seeked","stalled","waiting"],bC=["timeupdate","progress","loadeddata","playing","seeked"];var du=class{constructor(e){this.element=null;this.manifestUrlString="";this.source=null;this.manifest=null;this.subscription=new tp;this.representationSubscription=new tp;this.state$=new N("none");this.currentVideoRepresentation$=new he(void 0);this.currentVideoRepresentationInit$=new he(void 0);this.currentAudioRepresentation$=new he(void 0);this.currentVideoSegmentLength$=new he(0);this.currentAudioSegmentLength$=new he(0);this.error$=new cu;this.lastConnectionType$=new he(void 0);this.lastConnectionReused$=new he(void 0);this.lastRequestFirstBytes$=new he(void 0);this.currentLiveTextRepresentation$=new he(null);this.isLive$=new he(!1);this.isActiveLive$=new he(!1);this.isLowLatency$=new he(!1);this.liveDuration$=new he(0);this.liveSeekableDuration$=new he(0);this.liveAvailabilityStartTime$=new he(0);this.liveStreamStatus$=new he(void 0);this.bufferLength$=new he(0);this.liveLatency$=new he(void 0);this.liveLoadBufferLength$=new he(0);this.livePositionFromPlayer$=new he(0);this.currentStallDuration$=new he(0);this.videoLastDataObtainedTimestamp$=new he(0);this.fetcherRecoverableError$=new cu;this.fetcherError$=new cu;this.liveStreamEndTimestamp=0;this.isUpdatingLive=!1;this.isJumpGapAfterSeekLive=!1;this.forceEnded$=new cu;this.gapWatchdogActive=!1;this.destroyController=new ee;this.initManifest=Jd(this.destroyController.signal,async function*(e,t,i){this.tracer.log("initManifest"),this.element=e,this.manifestUrlString=ge(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:Ut.PARSER,message:"No playable video representations"})}.bind(this));this.updateManifest=Jd(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:Ut.NETWORK,message:"Failed to load manifest",thrown:n})});if(!e)return null;let t=null;try{t=II(e??"",this.manifestUrlString)}catch(n){let o=Lo(e)??{id:"ManifestParsing",category:Ut.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)&&mt()?.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,p=(t.duration??0)/1e3;this.liveSeekableDuration$.next(-1*p),this.liveDuration$.next((o-n)/1e3),this.liveAvailabilityStartTime$.next(t.live.availabilityStartTime);let c="active";l||(c=u?"unpublished":"unexpectedly_down"),this.liveStreamStatus$.next(c)}let r={text:t.streams.text,video:[],audio:[]};for(let n of["video","audio"]){let u=t.streams[n].filter(({mime:c,codecs:d})=>i(n,c,d)),l=new Set(u.map(({codecs:c})=>c)),p=Qo(l);if(p&&(r[n]=u.filter(({codecs:c})=>c.startsWith(p))),n==="video"){let c=this.tuning.preferHDR,d=r.video.some(f=>f.hdr),h=r.video.some(f=>!f.hdr);F.display.isHDR&&c&&d?r.video=r.video.filter(f=>f.hdr):h&&(r.video=r.video.filter(f=>!f.hdr))}}let a={...t,streams:r};return this.tracer.log("updateManifestEnd",nn(a)),a}.bind(this));this.initRepresentations=Jd(this.destroyController.signal,async function*(e,t,i){this.tracer.log("initRepresentationsStart",nn({initialVideo:e,initialAudio:t,sourceHls:i})),Qr(this.manifest),Qr(this.element),this.representationSubscription.unsubscribe(),this.representationSubscription=new tp,this.state$.startTransitionTo("representations_ready");let r=d=>{this.representationSubscription.add(oi(d,"error").pipe(lu(h=>!!this.element?.played.length)).subscribe(h=>{this.error$.next({id:"VideoSource",category:Ut.VIDEO_PIPELINE,message:"Unexpected video source error",thrown:h})}))};this.source=this.tuning.useManagedMediaSource?no():new MediaSource;let a=document.createElement("source");if(r(a),a.src=URL.createObjectURL(this.source),this.element.appendChild(a),this.tuning.useManagedMediaSource&&Ir())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 Za("video",this.source,o,n),this.bufferManagers=[this.videoBufferManager],on(t)){let d=this.manifest.streams.audio.reduce((h,f)=>[...h,...f.representations],[]);this.audioBufferManager=new Za("audio",this.source,d,n),this.bufferManagers.push(this.audioBufferManager)}sn.isSupported(this.manifest.streams.text)&&!this.isLowLatency$.getValue()&&(this.liveTextManager=new sn(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(er(...bC.map(d=>oi(this.element,d))).pipe(Yr(d=>this.element?de(this.element.buffered,this.element.currentTime*1e3):0),an(),hC(d=>{d>this.tuning.dash.bufferEmptinessTolerance&&u()})).subscribe(this.bufferLength$)),this.representationSubscription.add(er(oi(this.element,"ended"),this.forceEnded$).subscribe(()=>{u()})),this.isLive$.getValue()){this.subscription.add(this.liveDuration$.pipe(an()).subscribe(h=>this.liveStreamEndTimestamp=ep())),this.subscription.add(oi(this.element,"pause").subscribe(()=>{this.livePauseWatchdogSubscription=Zd(1e3).subscribe(h=>{let f=pi(this.manifestUrlString,2);this.manifestUrlString=ge(this.manifestUrlString,f+1e3,2),this.liveStreamStatus$.getValue()==="active"&&this.updateManifest()}),this.subscription.add(this.livePauseWatchdogSubscription)})).add(oi(this.element,"play").subscribe(h=>this.livePauseWatchdogSubscription?.unsubscribe())),this.representationSubscription.add(Wr({isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe(Yr(({isActiveLive:h,isLowLatency:f})=>h&&f),an()).subscribe(h=>{this.isManualDecreasePlaybackInLive()||_r(this.element,1)})),this.representationSubscription.add(Wr({bufferLength:this.bufferLength$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe(lu(({bufferLength:h,isActiveLive:f,isLowLatency:b})=>f&&b&&!!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 f=this.liveSeekableDuration$.getValue()-h/1e3;this.liveSeekableDuration$.next(Math.max(f,-1*this.tuning.dashCmafLive.maxLiveDuration)),this.liveDuration$.next(this.liveDuration$.getValue()+h/1e3)})),this.representationSubscription.add(Wr({isLive:this.isLive$,rtt:this.throughputEstimator.rtt$,bufferLength:this.bufferLength$,segmentServerLatency:this.videoBufferManager.currentLiveSegmentServerLatency$}).pipe(lu(({isLive:h})=>h),an((h,f)=>f.bufferLength<h.bufferLength),Yr(({rtt:h,bufferLength:f,segmentServerLatency:b})=>{let g=pi(this.manifestUrlString,2);return(h/2+f+b+g)/1e3})).subscribe(this.liveLatency$)),this.representationSubscription.add(Wr({liveBuffer:this.liveBuffer.smoothed$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).subscribe(({liveBuffer:h,isActiveLive:f,isLowLatency:b})=>{if(!b||!f)return;let g=this.tuning.dashCmafLive.lowLatency.maxTargetOffset,S=this.tuning.dashCmafLive.lowLatency.maxTargetOffsetDeviation,T=this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup,v=h-g;if(this.isManualDecreasePlaybackInLive())return;let w=1;Math.abs(v)>S&&(w=1+Math.sign(v)*T),_r(this.element,w)})),this.representationSubscription.add(this.bufferLength$.subscribe(h=>{let f=0;if(h){let b=(this.element?.currentTime??0)*1e3;f=Math.min(...this.bufferManagers.map(S=>S.getLiveSegmentsToLoadState(this.manifest)?.to??b))-b}this.liveLoadBufferLength$.getValue()!==f&&this.liveLoadBufferLength$.next(f)}));let d=0;this.representationSubscription.add(Wr({liveLoadBufferLength:this.liveLoadBufferLength$,bufferLength:this.bufferLength$}).pipe(fC(1e3)).subscribe(async({liveLoadBufferLength:h,bufferLength:f})=>{if(!this.element||this.isUpdatingLive)return;let b=this.element.playbackRate,g=pi(this.manifestUrlString,2),S=Math.abs(this.livePositionFromPlayer$.getValue())*1e3,T=Math.min(S,this.tuning.dashCmafLive.normalizedTargetMinBufferSize*b),v=this.tuning.dashCmafLive.normalizedActualBufferOffset*b,w=this.tuning.dashCmafLive.normalizedLiveMinBufferSize*b,P=isFinite(h)?h:f,M=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),O=S<=this.tuning.live.activeLiveDelay;this.isActiveLive$.next(O);let E="none";if(M?E="active_low_latency":this.isLowLatency$.getValue()&&O?(this.bufferManagers.forEach(R=>R.proceedLowLatencyLive()),E="active_low_latency"):g!==0&&P<T?E="live_forward_buffering":P<T+w&&(E="live_with_target_offset"),isFinite(h)&&(d=h>d?h:d),E==="live_forward_buffering"||E==="live_with_target_offset"){let R=d-(T+v),y=this.normolizeLiveOffset(Math.trunc(g+R/b)),D=Math.abs(y-g),I=0;!h||D<=this.tuning.dashCmafLive.offsetCalculationError?I=g:y>0&&D>this.tuning.dashCmafLive.offsetCalculationError&&(I=y),this.manifestUrlString=ge(this.manifestUrlString,I,2)}(E==="live_with_target_offset"||E==="live_forward_buffering")&&(d=0,await this.updateLive())},h=>{this.error$.next({id:"updateLive",category:Ut.VIDEO_PIPELINE,thrown:h,message:"Failed to update live with subscription"})}))}let l=er(...this.bufferManagers.map(d=>d.fullyBuffered$)).pipe(Yr(()=>this.bufferManagers.every(d=>d.fullyBuffered$.getValue()))),p=er(...this.bufferManagers.map(d=>d.onLastSegment$)).pipe(Yr(()=>this.bufferManagers.some(d=>d.onLastSegment$.getValue()))),c=Wr({allBuffersFull:l,someBufferEnded:p}).pipe(an(),Yr(({allBuffersFull:d,someBufferEnded:h})=>d&&h),lu(d=>d));if(this.representationSubscription.add(er(this.forceEnded$,c).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:Ut.VIDEO_PIPELINE,message:"Failed to end MediaSource stream",thrown:d})}})),this.representationSubscription.add(er(...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,f)=>{d&&(this.timeoutSourceOpenId=setTimeout(()=>{if(this.source?.readyState==="open"){h();return}this.tuning.dash.rejectOnSourceOpenTimeout?f(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,ip.default)((0,ip.default)([...this.manifest.streams.audio,...this.manifest.streams.video],h=>h.representations),h=>{let f=[];return h.duration&&f.push(h.duration),Ye(h.segmentReference)&&h.segmentReference.totalSegmentsDurationMs&&f.push(h.segmentReference.totalSegmentsDurationMs),f})];this.source.duration=Math.max(...d)/1e3}this.audioBufferManager&&on(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=Zd(this.tuning.gapWatchdogInterval).subscribe(()=>this.jumpGap(),t=>{this.error$.next({id:"GapWatchdog",category:Ut.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 uu({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=ri.getLiveBufferSmoothedValue(this.tuning.dashCmafLive.lowLatency.maxTargetOffset,{...e.tuning.dashCmafLive.lowLatency.bufferEstimator}),this.initTracerSubscription()}async seekLive(e){Qr(this.element);let t=this.liveStreamStatus$.getValue()!=="active"?ep()-this.liveStreamEndTimestamp:0,i=this.normolizeLiveOffset(e+t);this.isActiveLive$.next(i===0),this.manifestUrlString=ge(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(){Qr(this.element),this.state$.setState("running"),this.subscription.add(er(...mC.map(e=>oi(this.element,e)),oi(window,"online")).subscribe(()=>this.tick(),e=>{this.error$.next({id:"DashVKPlayer",category:Ut.WTF,message:"Internal logic error",thrown:e})})),this.subscription.add(oi(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(oi(this.element,"waiting").subscribe(()=>{this.element&&this.element.readyState===HTMLMediaElement.HAVE_CURRENT_DATA&&!this.element.seeking&&Fe(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=ep(),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,p=u<a&&r-n>this.tuning.dash.crashOnStallTWithoutDataTimeout,c=this.audioBufferManager&&l<a&&r-o>this.tuning.dash.crashOnStallTWithoutDataTimeout;if((p||c)&&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:Ut.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",nn(i))};this.stallWatchdogSubscription?.unsubscribe(),this.stallWatchdogSubscription=Zd(50).subscribe(e,t=>{this.error$.next({id:"StallWatchdogCallback",category:Ut.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){Qr(this.element),Qr(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),Fe(this.element.buffered,i)||await Promise.all([this.videoBufferManager.abort(),this.audioBufferManager?.abort()]),!(kI(this.element)||kI(this.videoBufferManager))&&(this.videoBufferManager.maintain(i),this.audioBufferManager?.maintain(i),this.element.currentTime=i/1e3,this.tracer.log("seek",nn({requestedPosition:e,forcePrecise:t,position:i})))}warmUpMediaSourceIfNeeded(e=this.element?.currentTime){on(this.element)&&on(this.source)&&on(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=pC(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",nn({isJumpGapAfterSeekLive:this.isJumpGapAfterSeekLive,isActiveLowLatency:t,initialCurrentTime:this.element.currentTime,jumpTo:n,resultCurrentTime:this.element.currentTime})))}}};import{combine as gC,map as SC,observeElementSize as vC,Subscription as yC,ValueSubject as rp,noop as TC}from"@vkontakte/videoplayer-shared";var pu=class{constructor(){this.subscription=new yC;this.pipSize$=new rp(void 0);this.videoSize$=new rp(void 0);this.elementSize$=new rp(void 0);this.pictureInPictureWindowRemoveEventListener=TC}connect({observableVideo:e,video:t}){let i=r=>{let a=r.target;this.pipSize$.next({width:a.width,height:a.height})};this.subscription.add(vC(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(gC({videoSize:this.videoSize$,pipSize:this.pipSize$,inPip:e.inPiP$}).pipe(SC(({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 AC;this.videoState=new N("stopped");this.droppedFramesManager=new kr;this.stallsManager=new eu;this.elementSizeManager=new pu;this.videoTracksMap=new Map;this.audioTracksMap=new Map;this.textTracksMap=new Map;this.videoStreamsMap=new Map;this.audioStreamsMap=new Map;this.videoTrackSwitchHistory=new bi;this.audioTrackSwitchHistory=new bi;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"),A(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"),A(this.params.desiredState.playbackState,"paused")):t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):i?.to==="ready"&&A(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"&&A(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):i?.to==="paused"&&A(this.params.desiredState.playbackState,"paused");return;default:return xC(e)}}};this.init3DScene=e=>{if(this.scene3D)return;this.scene3D=new qr(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 Je(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(Ee(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 du({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 r=this.constructor.name,a=o=>{e.error$.next({id:r,category:RI.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(LI(l=>!!l.length),$I()).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(sp(l=>l.to.state!=="none"),hu());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(LI(MI),$I()),e.firstBytesEvent$),a(this.stallsManager.severeStallOccurred$,e.severeStallOccurred$),a(this.videoState.stateChangeEnded$.pipe(sp(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(St(this.video,t.isLooped,r)),this.subscription.add(Ve(this.video,t.volume,i.volumeState$,r)),this.subscription.add(i.volumeState$.subscribe(this.params.output.volume$,r)),this.subscription.add(Xe(this.video,t.playbackRate,i.playbackRateState$,r)),this.elementSizeManager.connect({video:this.video,observableVideo:i}),a(et(this.video,{threshold:this.params.tuning.autoTrackSelection.activeVideoAreaThreshold}),e.elementVisible$),this.subscription.add(i.playing$.subscribe(()=>{this.videoState.setState("playing"),A(t.playbackState,"playing"),this.scene3D&&this.scene3D.play()},r)).add(i.pause$.subscribe(()=>{this.videoState.setState("paused"),A(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 p=this.player.getStreams();if(EC(p,"Manifest not loaded or empty"),!this.params.tuning.isAudioDisabled){let d=[];for(let h of p.audio){d.push(qd(h));let f=[];for(let b of h.representations){let g=hI(b);f.push(g),this.audioTracksMap.set(g,{stream:h,representation:b})}this.audioStreamsMap.set(h,f)}this.params.output.availableAudioStreams$.next(d)}let c=[];for(let d of p.video){c.push(Hd(d));let h=[];for(let f of d.representations){let b=pI({...f,streamId:d.id});b&&(h.push(b),this.videoTracksMap.set(b,{stream:d,representation:f}))}this.videoStreamsMap.set(d,h)}this.params.output.availableVideoStreams$.next(c);for(let d of p.text)for(let h of d.representations){let f=fI(d,h);this.textTracksMap.set(f,{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(fu(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$,wC(this.video,"progress")).subscribe(async()=>{let l=this.player.state$.getState(),p=this.player.state$.getTransition();if(l!=="manifest_ready"&&l!=="running"||p)return;t.autoVideoTrackSwitching.getTransition()&&t.autoVideoTrackSwitching.setState(t.autoVideoTrackSwitching.getState()),this.selectVideoAudioRepresentations();let{video:c,audio:d}=this.selectedRepresentations;if(!c)return;let h=Ji(this.videoTracksMap.keys(),b=>this.videoTracksMap.get(b)?.representation.id===c.id);MI(h)&&(this.stallsManager.lastVideoTrackSelected=h);let f=this.params.desiredState.autoVideoTrackLimits.getTransition();if(f&&this.params.output.autoVideoTrackLimits$.next(f.to),l==="manifest_ready")await this.player.initRepresentations(c.id,d?.id,this.params.sourceHls);else if(await this.player.switchRepresentation("video",c.id),d){let b=!!t.audioStream.getTransition();await this.player.switchRepresentation("audio",d.id,b)}},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(hu()).subscribe(l=>{let p=Ji(this.videoTracksMap.entries(),([,{representation:f}])=>f.id===l);if(!p){e.currentVideoTrack$.next(void 0),e.currentVideoStream$.next(void 0);return}let[c,{stream:d}]=p,h=this.params.desiredState.videoStream.getTransition();h&&h.to&&h.to.id===d.id&&this.params.desiredState.videoStream.setState(h.to),e.currentVideoTrack$.next(c),e.currentVideoStream$.next(Hd(d))},r)),this.subscription.add(this.player.currentAudioRepresentation$.pipe(hu()).subscribe(l=>{let p=Ji(this.audioTracksMap.entries(),([,{representation:f}])=>f.id===l);if(!p){e.currentAudioStream$.next(void 0);return}let[c,{stream:d}]=p,h=this.params.desiredState.audioStream.getTransition();h&&h.to&&h.to.id===d.id&&this.params.desiredState.audioStream.setState(h.to),e.currentAudioStream$.next(qd(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(p){e.warning$.next({id:"DashProvider",message:`DashProvider could not initialize 3D-scene: ${p}`})}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(sp(({to:l})=>l==="ready"),hu());this.subscription.add(fu(o,t.autoVideoTrackSwitching.stateChangeStarted$,this.player.state$.stateChangeEnded$,ap(["init"])).subscribe(()=>{let l=t.autoVideoTrackSwitching.getState(),c=t.playbackState.getState()==="ready"?this.params.tuning.dash.forwardBufferTargetPreload:l?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;this.player.setBufferTarget(c)})),this.subscription.add(fu(o,this.player.state$.stateChangeEnded$,ap(["init"])).subscribe(()=>this.player.setPreloadOnly(t.playbackState.getState()==="ready")));let u=fu(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,ap(["init"])).pipe(PC(0));this.subscription.add(u.subscribe(this.syncPlayback,r))}selectVideoAudioRepresentations(){if(this.player.isStreamEnded)return;let e=this.params.tuning.useNewAutoSelectVideoTrack?Ls:Rs,t=this.params.tuning.useNewAutoSelectVideoTrack?xo:Io,i=this.params.tuning.useNewAutoSelectVideoTrack?Ot:To,{desiredState:r,output:a}=this.params,n=r.autoVideoTrackSwitching.getState(),o=r.videoTrack.getState()?.id,u=Ji(this.videoTracksMap.keys(),E=>E.id===o),l=a.currentVideoTrack$.getValue(),p=r.videoStream.getState()??(u&&this.videoTracksMap.get(u)?.stream)??this.videoStreamsMap.size===1?this.videoStreamsMap.keys().next().value:void 0;if(!p)return;let c=Ji(this.videoStreamsMap.keys(),E=>E.id===p.id),d=c&&this.videoStreamsMap.get(c);if(!d)return;let h=de(this.video.buffered,this.video.currentTime*1e3),f;this.player.isActiveLive$.getValue()?f=this.player.isLowLatency$.getValue()?this.params.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.params.tuning.dashCmafLive.normalizedLiveMinBufferSize:this.player.isLive$.getValue()?f=this.params.tuning.dashCmafLive.normalizedTargetMinBufferSize:f=n?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;let b=(this.video.duration*1e3||1/0)-this.video.currentTime*1e3,g=Math.min(h/Math.min(f,b||1/0),1),S=r.audioStream.getState()??(this.audioStreamsMap.size===1?this.audioStreamsMap.keys().next().value:void 0),T=S?.id&&Ji(this.audioStreamsMap.keys(),E=>E.id===S.id)||this.audioStreamsMap.keys().next().value,v=0;if(T){if(u&&!n){let E=e(u,d,this.audioStreamsMap.get(T)??[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);v=Math.max(v,E?.bitrate??-1/0)}if(l){let E=e(l,d,this.audioStreamsMap.get(T)??[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);v=Math.max(v,E?.bitrate??-1/0)}}let w=u;(n||!w)&&(w=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:v,forwardBufferHealth:g,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 P=T&&t(w,d,this.audioStreamsMap.get(T)??[],{estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),stallsPredictedThroughput:this.stallsManager.predictedThroughput,tuning:this.stallsManager.abrTuningParams,forwardBufferHealth:g,history:this.audioTrackSwitchHistory,playbackRate:this.video.playbackRate,abrLogger:this.params.dependencies.abrLogger}),M=this.videoTracksMap.get(w)?.representation,O=P&&this.audioTracksMap.get(P)?.representation;M&&O?(this.selectedRepresentations.video=M,this.selectedRepresentations.audio=O):M&&!O&&this.audioTracksMap.size===0&&(this.selectedRepresentations.video=M,this.selectedRepresentations.audio=null)}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"),A(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:RI.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),Ce(this.video),this.tracer.end()}};var un=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)}};import{combine as np,merge as BI,filter as DI,filterChanged as kC,isNullable as op,map as CI,ValueSubject as up,isNonNullable as RC}from"@vkontakte/videoplayer-shared";var ln=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 up(1);a(i.playbackRateState$,n),this.subscription.add(this.params.output.position$.subscribe(this.player.livePositionFromPlayer$)).add(r.isLowLatency.stateChangeEnded$.pipe(CI(o=>o.to)).subscribe(this.player.isLowLatency$)).add(np({liveBufferTime:t.liveBufferTime$,liveAvailabilityStartTime:this.player.liveAvailabilityStartTime$}).pipe(CI(({liveBufferTime:o,liveAvailabilityStartTime:u})=>o&&u?o+u:void 0)).subscribe(t.liveTime$)).add(this.player.liveStreamStatus$.pipe(DI(o=>RC(o))).subscribe(o=>t.isLiveEnded$.next(o!=="active"&&t.position$.getValue()===0))).add(np({liveDuration:this.player.liveDuration$,liveStreamStatus:this.player.liveStreamStatus$,playbackRate:BI(i.playbackRateState$,new up(1))}).pipe(DI(({liveStreamStatus:o,liveDuration:u})=>o==="active"&&!!u)).subscribe(({liveDuration:o,playbackRate:u})=>{let l=t.liveBufferTime$.getValue(),p=t.position$.getValue(),{playbackCatchupSpeedup:c}=this.params.tuning.dashCmafLive.lowLatency;p||u<1-c||this.video.paused||op(l)||(e=o-l)})).add(np({time:t.liveBufferTime$,liveDuration:this.player.liveDuration$,playbackRate:BI(i.playbackRateState$,new up(1))}).pipe(kC((o,u)=>this.player.liveStreamStatus$.getValue()==="active"?o.liveDuration===u.liveDuration:o.time===u.time)).subscribe(({time:o,liveDuration:u,playbackRate:l})=>{let p=t.position$.getValue(),{playbackCatchupSpeedup:c}=this.params.tuning.dashCmafLive.lowLatency;if(!p&&!this.video.paused&&l>=1-c||op(o)||op(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=mI(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 OI=C(Is(),1);import{assertNever as cn,assertNonNullable as VI,debounce as LC,ErrorCategory as mu,filter as MC,isNonNullable as $C,isNullable as BC,map as bu,merge as DC,Observable as CC,observableFrom as VC,Subscription as OC,videoSizeToQuality as _C}from"@vkontakte/videoplayer-shared";var Mt={};var Kr=(s,e)=>new CC(t=>{let i=(r,a)=>t.next(a);return s.on(e,i),()=>s.off(e,i)}),dn=class{constructor(e){this.subscription=new OC;this.videoState=new N("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:cn(e)}break;case"ready":switch(e){case"stopped":this.prepare();break;case"ready":case"playing":case"paused":break;default:cn(e)}break;case"playing":switch(e){case"playing":break;case"stopped":this.prepare();break;case"ready":case"paused":this.playIfAllowed();break;default:cn(e)}break;case"paused":switch(e){case"paused":break;case"stopped":this.prepare();break;case"ready":this.videoState.setState("paused"),A(this.params.desiredState.playbackState,"paused");break;case"playing":this.pause();break;default:cn(e)}break;default:cn(t)}};this.textTracksManager=new Je(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(Ee(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),Ce(this.video)}loadHlsJs(){let e=!1,t=r=>{e||this.params.output.error$.next({id:r==="timeout"?"HlsJsTimeout":"HlsJsLoadError",category:mu.NETWORK,message:"Failed to load Hls.js",thrown:r}),e=!0},i=window.setTimeout(()=>t("timeout"),this.params.tuning.dynamicImportTimeout);(0,OI.default)(import("hls.js").then(r=>{e||(Mt.Hls=r.default,Mt.Events=r.default.Events,this.init())},t),()=>{window.clearTimeout(i),e=!0})}init(){VI(Mt.Hls,"hls.js not loaded"),this.hls=new Mt.Hls({fragLoadingMaxRetry:5,levelLoadingMaxRetry:2,manifestLoadingMaxRetry:2,fragLoadingMaxRetryTimeout:16e3,manifestLoadingMaxRetryTimeout:2e3,levelLoadingMaxRetryTimeout:2e3}),this.subscribe(),this.videoState.setState("stopped")}subscribe(){VI(Mt.Events,"hls.js not loaded");let{desiredState:e,output:t}=this.params,i=l=>{t.error$.next({id:"HlsJsProvider",category:mu.WTF,message:"HlsJsProvider internal logic error",thrown:l})},r=Oe(this.video);this.subscription.add(()=>r.destroy());let a=(l,p)=>this.subscription.add(l.subscribe(p,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(St(this.video,e.isLooped,i)),this.subscription.add(Ve(this.video,e.volume,r.volumeState$,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$)),this.subscription.add(Xe(this.video,e.playbackRate,r.playbackRateState$,i)),a(et(this.video),t.elementVisible$),a(this.videoState.stateChangeEnded$.pipe(bu(l=>l.to)),this.params.output.playbackState$),this.subscription.add(Kr(this.hls,Mt.Events.ERROR).subscribe(l=>{l.fatal&&t.error$.next({id:["HlsJsFatal",l.type,l.details].join("_"),category:mu.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"),A(e.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),A(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(Kr(this.hls,Mt.Events.MANIFEST_PARSED).pipe(bu(({levels:l})=>l.reduce((p,c)=>{let d=c.name||c.height.toString(10),{width:h,height:f}=c,b=Vt(c.attrs.QUALITY??"")??_C({width:h,height:f});if(!b)return p;let g=c.attrs["FRAME-RATE"]?parseFloat(c.attrs["FRAME-RATE"]):void 0,S={id:d.toString(),quality:b,bitrate:c.bitrate/1e3,size:{width:h,height:f},fps:g};return this.trackLevels.set(d,{track:S,level:c}),p.push(S),p},[]))),t.availableVideoTracks$),a(Kr(this.hls,Mt.Events.MANIFEST_PARSED),l=>{if(l.subtitleTracks.length>0){let p=[];for(let c of l.subtitleTracks){let d=c.name,h=c.attrs.URI||"",f=c.lang;p.push({id:d,url:h,language:f,type:"internal"})}e.internalTextTracks.startTransitionTo(p)}}),a(Kr(this.hls,Mt.Events.LEVEL_LOADING).pipe(bu(({url:l})=>Ee(l))),t.hostname$),a(Kr(this.hls,Mt.Events.FRAG_CHANGED),l=>{let{video:p,audio:c}=l.frag.elementaryStreams;t.currentVideoSegmentLength$.next(((p?.endPTS??0)-(p?.startPTS??0))*1e3),t.currentAudioSegmentLength$.next(((c?.endPTS??0)-(c?.startPTS??0))*1e3)}),this.subscription.add(hi(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:p})=>p===l)?.track,o=Kr(this.hls,Mt.Events.LEVEL_SWITCHED).pipe(bu(({level:l})=>n(this.hls.levels[l])));o.pipe(MC($C)).subscribe(t.currentVideoTrack$,i),this.subscription.add(hi(e.videoTrack,()=>n(this.hls.levels[this.hls.currentLevel]),l=>{if(BC(l))return;let p=this.trackLevels.get(l.id)?.level;if(!p)return;let c=this.hls.levels.indexOf(p),d=this.hls.currentLevel,h=this.hls.levels[d];!h||p.bitrate>h.bitrate?this.hls.nextLevel=c:(this.hls.loadLevel=c,this.hls.loadLevel=c)},{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=DC(e.playbackState.stateChangeStarted$,e.videoTrack.stateChangeStarted$,e.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,VC(["init"])).pipe(LC(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:mu.DOM,thrown:t}))||(this.videoState.setState("paused"),A(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"),A(this.params.desiredState.playbackState,"stopped",!0)}};var _I="X-Playback-Duration",lp=async s=>{let e=await vt(s),t=await e.text(),i=/#EXT-X-VK-PLAYBACK-DURATION:(\d+)/m.exec(t)?.[1];return i?parseInt(i,10):e.headers.has(_I)?parseInt(e.headers.get(_I),10):void 0};import{assertNever as YC,combine as KC,debounce as XC,ErrorCategory as vu,filter as JC,filterChanged as ZC,isNonNullable as UI,isNullable as yu,map as qI,merge as eV,observableFrom as tV,Subscription as iV,ValueSubject as pp,VideoQuality as rV}from"@vkontakte/videoplayer-shared";var dp=C(Ul(),1);import{videoSizeToQuality as FC,getExponentialDelay as NC}from"@vkontakte/videoplayer-shared";var UC=s=>{let e=null;if(s.QUALITY&&(e=Vt(s.QUALITY)),!e&&s.RESOLUTION){let[t,i]=s.RESOLUTION.split("x").map(r=>parseInt(r,10));e=FC({width:t,height:i})}return e??null},qC=(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,dp.default)(o[1].split(",").map(g=>g.split("="))),p=l.QUALITY??`stream-${l.BANDWIDTH}`,c=UC(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,f;if(l.RESOLUTION){let[g,S]=l.RESOLUTION.split("x").map(T=>parseInt(T,10));g&&S&&(f={width:g,height:S})}let b=new URL(t[++a],e).toString();c&&i.push({id:p,quality:c,url:b,bandwidth:d,size:f,fps:h})}if(u){let l=(0,dp.default)(u[1].split(",").map(h=>{let f=h.indexOf("=");return[h.substring(0,f),h.substring(f+1)]}).map(([h,f])=>[h,f.replace(/^"|"$/g,"")])),p=l.URI?.replace(/playlist$/,"subtitles.vtt"),c=l.LANGUAGE,d=l.NAME;p&&c&&r.push({type:"internal",id:c,label:d,language:c,url:p,isAuto:!1})}}}if(!i.length)throw new Error("Empty manifest");return{qualityManifests:i,textTracks:r}},HC=s=>new Promise(e=>{setTimeout(()=>{e()},s)}),cp=0,FI=async(s,e=s,t,i)=>{let a=await(await vt(s,i)).text();cp+=1;try{let{qualityManifests:n,textTracks:o}=qC(a,e);return{qualityManifests:n,textTracks:o}}catch{if(cp<=t.manifestRetryMaxCount)return await HC(NC(cp-1,{start:t.manifestRetryInterval,max:t.manifestRetryMaxInterval})),FI(s,e,t)}return{qualityManifests:[],textTracks:[]}},gu=FI;import{isNonNullable as jC,Subscription as zC,throttle as GC,ValueSubject as NI,Subject as QC,ErrorCategory as WC}from"@vkontakte/videoplayer-shared";var Su=class{constructor(e,t,i,r,a){this.subscription=new zC;this.abortControllers={destroy:new ee,nextManifest:null};this.prepareUrl=void 0;this.currentTextTrackData=null;this.availableTextTracks$=new NI(null);this.getCurrentTime$=new NI(null);this.error$=new QC;this.params={fetchManifestData:i,sourceUrl:r,downloadThreshold:a},this.subscription.add(e.pipe(GC(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 vt(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(),p=Number(this.extractPlaylistRowValue("#EXTINF:",o))*1e3;if(i.segments.push({time:{from:a,to:a+p},url:l}),a=a+p,!i.segmentStartTime){let c=new Date(i.vkStartTime).valueOf(),d=new Date(i.programDateTime).valueOf();i.segmentStartTime=d-c}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(jC(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 ee;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:WC.WTF,thrown:t,message:e})}};var pn=class{constructor(e){this.subscription=new iV;this.videoState=new N("stopped");this.textTracksManager=null;this.liveTextManager=null;this.manifests$=new pp([]);this.liveOffset=new Ui;this.manifestStartTime$=new pp(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"),A(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 p=this.videoState.getState();this.videoState.setState("changing_manifest"),this.videoState.startTransitionTo(p),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"?A(this.params.desiredState.playbackState,"ready"):i==="paused"?(this.videoState.setState("paused"),this.liveOffset.pause(),A(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"&&A(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 p=this.liveOffset.getTotalOffset();p>=this.maxSeekBackTime$.getValue()&&(p=0,this.liveOffset.resetTo(p)),this.liveOffset.resume(),this.params.output.position$.next(-p/1e3),this.prepare()}else r?.to==="paused"&&(A(this.params.desiredState.playbackState,"paused"),this.liveOffset.pause());return;case"changing_manifest":break;default:return YC(t)}};this.params=e,this.video=De(e.container,e.tuning),this.params.output.element$.next(this.video),this.masterManifest={id:"master",quality:rV.INVARIANT,url:this.params.source.url};let t=(i,r)=>gu(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 Su(this.params.output.liveTime$,this.video,t,this.params.source.url,this.params.tuning.hlsLiveNewTextManagerDownloadThreshold):this.textTracksManager=new Je(e.source.url),t(this.generateLiveUrl()).then(({qualityManifests:i,textTracks:r})=>{i.length===0&&this.params.output.error$.next({id:"HlsLiveProviderInternal:empty_manifest",category:vu.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:vu.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(Ee(this.params.source.url)),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.maxSeekBackTime$=new pp(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:vu.WTF,message:"HlsLiveProvider internal logic error",thrown:o})},r=Oe(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(Ve(this.video,t.volume,r.volumeState$,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(Xe(this.video,t.playbackRate,r.playbackRateState$,i)),a(et(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"),A(t.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),A(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(ZC(),qI(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(),p=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(l&&UI(l.to)){let c=l.to.id;this.params.desiredState.videoTrack.setState(l.to);let d=this.manifests$.getValue().find(h=>h.id===c);d&&(this.params.output.currentVideoTrack$.next(d),this.params.output.hostname$.next(Ee(d.url)))}p&&this.params.desiredState.autoVideoTrackSwitching.setState(p.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(KC({startTime:this.manifestStartTime$.pipe(JC(UI)),currentTime:r.timeUpdate$}).subscribe(({startTime:o,currentTime:u})=>this.params.output.liveTime$.next(o+u*1e3),i)),this.subscription.add(this.manifests$.pipe(qI(o=>o.map(({id:u,quality:l,size:p,bandwidth:c,fps:d})=>({id:u,quality:l,size:p,fps:d,bitrate:c})))).subscribe(this.params.output.availableVideoTracks$,i));let n=eV(t.playbackState.stateChangeStarted$,t.seekState.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.stateChangeStarted$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,this.manifests$,tV(["init"])).pipe(XC(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),Ce(this.video)}prepare(){let e=this.selectManifest();if(yu(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,p]of[[o,"mq"],[u,"lq"]]){let c=String(parseFloat(l||""));p&&l&&r.searchParams.set(p,c)}}let a=this.params.format==="HLS_LIVE_CMAF"?2:0,n=ge(r.toString(),this.liveOffset.getTotalOffset(),a);this.liveTextManager?.prepare(n),this.video.setAttribute("src",n),this.video.load(),lp(n).then(o=>{if(!yu(o))this.maxSeekBackTime$.next(o);else{let u=this.params.source.maxSeekBackTime??this.maxSeekBackTime$.getValue();(yu(u)||!isFinite(u))&&vt(n).then(l=>l.text()).then(l=>{let p=/#EXT-X-STREAM-INF[^\n]+\n(.+)/m.exec(l)?.[1];if(p){let c=new URL(p,n).toString();lp(c).then(d=>{yu(d)||this.maxSeekBackTime$.next(d)})}}).catch(()=>{})}})}playIfAllowed(){_e(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),this.liveOffset.pause(),A(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:vu.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=ge(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}};import{assertNever as sV,debounce as aV,ErrorCategory as hp,fromEvent as fp,isNonNullable as nV,isNullable as oV,map as HI,merge as jI,observableFrom as zI,Subscription as uV,ValueSubject as lV,VideoQuality as cV}from"@vkontakte/videoplayer-shared";var hn=class{constructor(e){this.subscription=new uV;this.videoState=new N("stopped");this.manifests$=new lV([]);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"),A(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 p=this.videoState.getState();this.videoState.setState("changing_manifest"),this.videoState.startTransitionTo(p);let{currentTime:c}=this.video;this.prepare(),o&&this.params.output.autoVideoTrackLimits$.next(o.to),l.state==="none"&&this.params.desiredState.seekState.setState({state:"requested",position:c*1e3,forcePrecise:!0});return}switch(r?.to!=="paused"&&l.state==="requested"&&this.seek(l.position),t){case"ready":i==="ready"?A(this.params.desiredState.playbackState,"ready"):i==="paused"?(this.videoState.setState("paused"),A(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"&&A(this.params.desiredState.playbackState,"playing");return;case"paused":i==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):r?.to==="paused"&&A(this.params.desiredState.playbackState,"paused");return;case"changing_manifest":break;default:return sV(t)}};this.textTracksManager=new Je(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:cV.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(Ee(this.params.source.url)),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),gu(ge(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:hp.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:hp.WTF,message:"HlsProvider internal logic error",thrown:o})},r=Oe(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(HI(o=>o.to)),this.params.output.playbackState$),this.subscription.add(St(this.video,t.isLooped,i)),this.subscription.add(Ve(this.video,t.volume,r.volumeState$,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(Xe(this.video,t.playbackRate,r.playbackRateState$,i)),this.textTracksManager.connect(this.video,t,e),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState("playing"),A(t.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),A(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(),p=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(l&&nV(l.to)){let h=l.to.id;this.params.desiredState.videoTrack.setState(l.to);let f=this.manifests$.getValue().find(b=>b.id===h);f&&(this.params.output.currentVideoTrack$.next(f),this.params.output.hostname$.next(Ee(f.url)))}let c=this.params.desiredState.playbackRate.getState(),d=this.params.output.element$.getValue()?.playbackRate;if(c!==d){let h=this.params.output.element$.getValue();h&&(this.params.desiredState.playbackRate.setState(c),h.playbackRate=c)}p&&this.params.desiredState.autoVideoTrackSwitching.setState(p.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(HI(o=>o.map(({id:u,quality:l,size:p,bandwidth:c,fps:d})=>({id:u,quality:l,size:p,fps:d,bitrate:c})))).subscribe(this.params.output.availableVideoTracks$,i)),!F.device.isIOS||!this.params.tuning.useNativeHLSTextTracks){let{textTracks:o}=this.video;this.subscription.add(jI(fp(o,"addtrack"),fp(o,"removetrack"),fp(o,"change"),zI(["init"])).subscribe(()=>{for(let u=0;u<o.length;u++)o[u].mode="hidden"},i))}let n=jI(t.playbackState.stateChangeStarted$,t.seekState.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.stateChangeStarted$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,this.manifests$,zI(["init"])).pipe(aV(0));this.subscription.add(n.subscribe(this.syncPlayback,i))}destroy(){this.subscription.unsubscribe(),this.textTracksManager.destroy(),this.params.output.element$.next(void 0),Ce(this.video)}prepare(){let e=this.selectManifest();if(oV(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(){_e(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),A(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:hp.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next(),this.video.currentTime=e/1e3}};var WI=C($i(),1),mp=C(Ni(),1),YI=C(kt(),1);import{assertNever as dV,assertNonNullable as GI,debounce as pV,ErrorCategory as QI,isHigherOrEqual as hV,isLowerOrEqual as fV,isNonNullable as mV,merge as bV,observableFrom as gV,Subscription as SV,map as vV}from"@vkontakte/videoplayer-shared";var fn=class{constructor(e){this.subscription=new SV;this.videoState=new N("stopped");this.trackUrls={};this.textTracksManager=new Je;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"),A(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"?A(this.params.desiredState.playbackState,"ready"):t==="paused"?(this.videoState.setState("paused"),A(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"&&A(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):i?.to==="paused"&&A(this.params.desiredState.playbackState,"paused");return;default:return dV(e)}};this.params=e,this.video=De(e.container,e.tuning),this.params.output.element$.next(this.video),(0,WI.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,mp.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:QI.WTF,message:"MpegProvider internal logic error",thrown:o})},r=Oe(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(vV(o=>o.to)),this.params.output.playbackState$),this.subscription.add(St(this.video,t.isLooped,i)),this.subscription.add(Ve(this.video,t.volume,r.volumeState$,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(Xe(this.video,t.playbackRate,r.playbackRateState$,i)),a(et(this.video),e.elementVisible$),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState("playing"),A(t.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),A(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&&mV(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 p=this.params.output.element$.getValue();p&&(this.params.desiredState.playbackRate.setState(u),p.playbackRate=u)}}this.videoState.getState()==="playing"&&this.playIfAllowed()},i)),this.textTracksManager.connect(this.video,t,e);let n=bV(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,gV(["init"])).pipe(pV(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),Ce(this.video)}prepare(){let e=this.params.desiredState.videoTrack.getState()?.id;GI(e,"MpegProvider: track is not selected");let{url:t}=this.trackUrls[e];GI(t,`MpegProvider: No url for ${e}`),this.params.tuning.requestQuick&&(t=vi(t)),this.video.setAttribute("src",t),this.video.load(),this.params.output.hostname$.next(Ee(t))}playIfAllowed(){_e(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),A(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:QI.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 p=Ot(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(p)},r=this.params.output.currentVideoTrack$.getValue()?.quality,a=!!(e.max||e.min),n=(0,mp.default)(this.trackUrls).map(l=>l.track);if(!r||!a||xr(e,n[0].quality,(0,YI.default)(n,-1)?.quality)){i();return}let o=e.max?fV(r,e.max):!0,u=e.min?hV(r,e.min):!0;o&&u||i(e)}};import{assertNever as XI,debounce as xV,merge as JI,observableFrom as EV,Subscription as PV,map as ZI,ValueSubject as wV,ErrorCategory as gp,VideoQuality as AV}from"@vkontakte/videoplayer-shared";import{ErrorCategory as yV}from"@vkontakte/videoplayer-shared";var KI=["stun:videostun.mycdn.me:80"],TV=1e3,IV=3,bp=()=>null,Tu=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=bp;this.externalStopCallback=bp;this.externalErrorCallback=bp;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:KI}]};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:yV.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),TV)}normalizeOptions(e={}){let t={stunServerList:KI,maxRetryNumber:IV,errorChanel:null};return e.stunServerList&&(t.stunServerList=e.stunServerList),e.maxRetryNumber&&e.maxRetryNumber>0&&(t.maxRetryNumber=e.maxRetryNumber),t}};var mn=class{constructor(e){this.videoState=new N("stopped");this.maxSeekBackTime$=new wV(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"),A(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"),A(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"&&A(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):i?.to==="paused"&&A(this.params.desiredState.playbackState,"paused");return;default:return XI(e)}};this.subscription=new PV,this.params=e,this.log=this.params.dependencies.logger.createComponentLog("WebRTCLiveProvider"),this.video=De(e.container,e.tuning),this.liveStreamClient=new Tu(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),Ce(this.video)}subscribe(){let{output:e,desiredState:t}=this.params,i=n=>{e.error$.next({id:"WebRTCLiveProvider",category:gp.WTF,message:"WebRTCLiveProvider internal logic error",thrown:n})};this.subscription.add(JI(this.videoState.stateChangeStarted$.pipe(ZI(n=>({transition:n,type:"start"}))),this.videoState.stateChangeEnded$.pipe(ZI(n=>({transition:n,type:"end"})))).subscribe(({transition:n,type:o})=>{this.log({message:`[videoState change] ${o}: ${JSON.stringify(n)}`})}));let r=Oe(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(et(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(Ve(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 XI(n.to)}},i)).add(JI(t.playbackState.stateChangeStarted$,this.videoState.stateChangeEnded$,EV(["init"])).pipe(xV(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(Ee(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:AV.INVARIANT}),this.video.srcObject=e,A(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:gp.EXTERNAL_API,message:e.message,thrown:e})}playIfAllowed(){_e(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),A(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:gp.DOM,thrown:e}))}prepare(){this.liveStreamClient.connect()}};var bn=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}};import{assertNever as gn,assertNonNullable as xi,ErrorCategory as Iu,filter as ax,isNonNullable as nx,isNullable as DV,map as CV,merge as VV,once as OV,Subject as Me,Subscription as ox,ValueSubject as H,flattenObject as ux}from"@vkontakte/videoplayer-shared";import{Observable as kV,map as ex,Subscription as RV,Subject as LV}from"@vkontakte/videoplayer-shared";var tx=s=>new kV(e=>{let t=new RV,i=s.desiredPlaybackState$.stateChangeStarted$.pipe(ex(({from:l,to:p})=>`${l}-${p}`)),r=s.desiredPlaybackState$.stateChangeEnded$,a=s.providerChanged$.pipe(ex(({type:l})=>l!==void 0)),n=new LV,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()}});import{ErrorCategory as MV,Subscription as $V,combine as BV,filter as rx,once as sx}from"@vkontakte/videoplayer-shared";function ix(){return new(window.AudioContext||window.webkitAudioContext)}var Xr=class s{constructor(e,t,i,r){this.providerOutput=e;this.provider$=t;this.volumeMultiplierError$=i;this.volumeMultiplier=r;this.destroyController=new ee;this.subscriptions=new $V;this.audioContext=null;this.gainNode=null;this.mediaElementSource=null;this.subscriptions.add(this.provider$.pipe(rx(a=>!!a.type),sx()).subscribe(({type:a})=>this.subscribe(a)))}static{this.errorId="VolumeMultiplierManager"}subscribe(e){F.browser.isSafari&&e!=="MPEG"||this.subscriptions.add(BV({video:this.providerOutput.element$,playbackState:this.providerOutput.playbackState$,volume:this.providerOutput.volume$}).pipe(rx(({playbackState:t,video:i,volume:{muted:r,volume:a}})=>t==="playing"&&!!i&&!r&&!!a),sx()).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=ix();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:MV.VIDEO_PIPELINE,message:e?.message??`${s.errorId} exception`,thrown:e})}};var _V={chunkDuration:5e3,maxParallelRequests:5},Sn=class{constructor(e){this.current$=new H({type:void 0});this.providerError$=new Me;this.noAvailableProvidersError$=new Me;this.volumeMultiplierError$=new Me;this.providerOutput={position$:new H(0),duration$:new H(1/0),volume$:new H({muted:!1,volume:1}),availableVideoStreams$:new H([]),currentVideoStream$:new H(void 0),availableVideoTracks$:new H([]),currentVideoTrack$:new H(void 0),availableAudioStreams$:new H([]),currentAudioStream$:new H(void 0),availableAudioTracks$:new H([]),currentVideoSegmentLength$:new H(0),currentAudioSegmentLength$:new H(0),isAudioAvailable$:new H(!0),autoVideoTrackLimitingAvailable$:new H(!1),autoVideoTrackLimits$:new H(void 0),currentBuffer$:new H(void 0),isBuffering$:new H(!0),error$:new Me,fetcherError$:new Me,fetcherRecoverableError$:new Me,warning$:new Me,willSeekEvent$:new Me,soundProhibitedEvent$:new Me,seekedEvent$:new Me,loopedEvent$:new Me,endedEvent$:new Me,firstBytesEvent$:new Me,loadedMetadataEvent$:new Me,firstFrameEvent$:new Me,canplay$:new Me,isLive$:new H(void 0),isLiveEnded$:new H(null),isLowLatency$:new H(!1),canChangePlaybackSpeed$:new H(!0),liveTime$:new H(void 0),liveBufferTime$:new H(void 0),liveLatency$:new H(void 0),severeStallOccurred$:new Me,availableTextTracks$:new H([]),currentTextTrack$:new H(void 0),hostname$:new H(void 0),httpConnectionType$:new H(void 0),httpConnectionReused$:new H(void 0),inPiP$:new H(!1),inFullscreen$:new H(!1),element$:new H(void 0),elementVisible$:new H(!0),availableSources$:new H(void 0),is3DVideo$:new H(!1),playbackState$:new H(""),getCurrentTime$:new H(null)};this.subscription=new ox;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=_T([...NT(this.params.tuning),...FT(this.params.tuning)],this.params.tuning).filter(l=>nx(e.sources[l])),{forceFormat:i,formatsToAvoid:r}=this.params.tuning,a=[];i?a=[i]:r.length?a=[...t.filter(l=>!(0,Sp.default)(r,l)),...t.filter(l=>(0,Sp.default)(r,l))]:a=t,this.log({message:`Selected formats: ${a.join(" > ")}`}),this.tracer.log("Selected formats",ux(a)),this.screenFormatsIterator=new bn(a);let n=[...Td(!0),...Td(!1)];this.chromecastFormatsIterator=new bn(n.filter(l=>nx(e.sources[l]))),this.providerOutput.availableSources$.next(e.sources);let{volumeMultiplier:o=1,tuning:{useVolumeMultiplier:u}}=this.params;u&&o!==1&&Xr.isSupported()&&(this.volumeMultiplierManager=new Xr(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(DV(t)){this.handleNoFormatsError(e);return}let i;try{i=this.createProvider(e,t)}catch(r){this.providerError$.next({id:"ProviderNotConstructed",category:Iu.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 gn(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 xi(u),this.params.tuning.useNewDashProvider?new un({...o,source:u,sourceHls:l}):new Ea({...o,source:u,sourceHls:l})}case"DASH_LIVE_CMAF":{let u=this.applyFailoverHost(t[e]);return xi(u),this.params.tuning.useNewDashProvider?new ln({...o,source:u}):new Pa({...o,source:u})}case"HLS":case"HLS_ONDEMAND":{let u=this.applyFailoverHost(t[e]);return xi(u),F.video.nativeHlsSupported||!this.params.tuning.useHlsJs?new hn({...o,source:u}):new dn({...o,source:u})}case"HLS_LIVE":case"HLS_LIVE_CMAF":{let u=this.applyFailoverHost(t[e]);return xi(u),new pn({...o,source:u,config:{maxPausedTime:this.params.tuning.live.maxPausedTime},format:e})}case"MPEG":{let u=this.applyFailoverHost(t[e]);return xi(u),new fn({...o,source:u})}case"DASH_LIVE":{let u=this.applyFailoverHost(t[e]);return xi(u),new Cv({...o,source:u,config:{..._V,maxPausedTime:this.params.tuning.live.maxPausedTime}})}case"WEB_RTC_LIVE":{let u=this.applyFailoverHost(t[e]);return xi(u),new mn({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 gn(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 xi(o),new xs({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 gn(e)}}skipFormat(e){switch(e){case"SCREEN":return this.screenFormatsIterator.next();case"CHROMECAST":return this.chromecastFormatsIterator.next();default:return gn(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 gn(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,cx.default)((0,lx.default)(e).map(([r,a])=>[r,i(a)]))}initProviderErrorHandling(){let e=new ox,t=!1,i=0;return e.add(VV(this.providerOutput.error$.pipe(ax(r=>!this.params.tuning.ignoreAudioRendererError||!r.message||!/AUDIO_RENDERER_ERROR/ig.test(r.message))),tx({desiredPlaybackState$:this.params.desiredState.playbackState,maxTransitionInterval:this.params.tuning.maxPlaybackTransitionInterval,position$:this.providerOutput.position$,providerChanged$:this.current$}).pipe(CV(r=>({id:`ProviderHangup:${r}`,category:Iu.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(ax(({to:a})=>a==="playing"),OV()).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===Iu.NETWORK,u=r.category===Iu.FATAL,l=this.params.failoverHosts.length>0&&(this.failoverIndex===void 0||this.failoverIndex<this.params.failoverHosts.length-1),p=i<this.params.tuning.providerErrorLimit&&!u,c=l&&!u&&(o&&t||!p);n={...n,isNetworkError:o,isFatalError:u,haveFailoverHost:l,tryFailover:c,canReinitProvider:p},p?(i++,this.reinitProvider()):c?(this.failoverIndex=this.failoverIndex===void 0?0:this.failoverIndex+1,this.reinitProvider()):(i=0,this.switchToNextProvider(a??"SCREEN"))}this.tracer.error("providerError",ux(n))})),e}};import{fromEvent as xu,once as FV,combine as NV,Subscription as dx,ValueSubject as vp,map as UV,filter as qV,isNonNullable as Eu,now as bt,safeStorage as yp}from"@vkontakte/videoplayer-shared";var HV=5e3,px="one_video_throughput",hx="one_video_rtt",vn=window.navigator.connection,fx=()=>{let s=vn?.downlink;if(Eu(s)&&s!==10)return s*1e3},mx=()=>{let s=vn?.rtt;if(Eu(s)&&s!==3e3)return s},bx=(s,e,t)=>{let i=t*8,r=i/s;return i/(r+e)},Tp=class s{constructor(e){this.subscription=new dx;this.concurrentDownloads=new Set;this.tuningConfig=e;let t=s.load(px)||(e.useBrowserEstimation?fx():void 0)||HV,i=s.load(hx)??(e.useBrowserEstimation?mx():void 0)??0;if(this.throughput$=new vp(t),this.rtt$=new vp(i),this.rttAdjustedThroughput$=new vp(bx(t,i,e.rttPenaltyRequestSize)),this.throughput=ri.getSmoothedValue(t,-1,e),this.rtt=ri.getSmoothedValue(i,1,e),e.useBrowserEstimation){let r=()=>{let n=fx();n&&this.throughput.next(n);let o=mx();Eu(o)&&this.rtt.next(o)};vn&&"onchange"in vn&&this.subscription.add(xu(vn,"change").subscribe(r)),r()}this.subscription.add(this.throughput.smoothed$.subscribe(r=>{yp.set(px,r.toFixed(0))})),this.subscription.add(this.rtt.smoothed$.subscribe(r=>{yp.set(hx,r.toFixed(0))})),this.subscription.add(this.throughput.debounced$.subscribe(this.throughput$)),this.subscription.add(this.rtt.debounced$.subscribe(this.rtt$)),this.subscription.add(NV({throughput:this.throughput.smoothed$,rtt:this.rtt.smoothed$}).pipe(UV(({throughput:r,rtt:a})=>bx(r,a,e.rttPenaltyRequestSize)),qV(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=bt(),r=new dx;switch(this.subscription.add(r),this.concurrentDownloads.add(e),e.readyState){case 4:break;case 3:case 2:r.add(xu(e,"progress").pipe(FV()).subscribe(a=>{t=a.loaded,i=bt()}));break;case 1:case 0:r.add(xu(e,"loadstart").subscribe(()=>{t=0,i=bt()}));break}r.add(xu(e,"loadend").subscribe(a=>{if(e.status===200){let n=a.loaded,o=bt(),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=bt(),n=0,o=bt(),u=p=>{this.concurrentDownloads.delete(e),i.releaseLock(),e.cancel(`Throughput Estimator error: ${p}`).catch(()=>{})},l=async({done:p,value:c})=>{if(p)!t&&this.addRawSpeed(r,bt()-a,1),this.concurrentDownloads.delete(e);else if(c){if(t){let d=bt();if(d-o>this.tuningConfig.lowLatency.continuesByteSequenceInterval||d-a>this.tuningConfig.lowLatency.maxLastEvaluationTimeout){let f=o-a;f&&this.addRawSpeed(n,f,1,t),n=c.byteLength,a=bt()}else n+=c.byteLength;o=bt()}else r+=c.byteLength,n+=c.byteLength,n>=this.tuningConfig.streamMinSampleSize&&bt()-o>=this.tuningConfig.streamMinSampleTime&&(this.addRawSpeed(n,bt()-o,this.concurrentDownloads.size),n=0,o=bt());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=yp.get(e);if(Eu(t))return parseInt(t,10)??void 0}},gx=Tp;import{fillWithDefault as jV,VideoQuality as Pu}from"@vkontakte/videoplayer-shared";var Sx={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:Pu.Q_4320P,activeVideoAreaThreshold:.1,highQualityLimit:Pu.Q_720P,trafficSavingLimit:Pu.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:Pu.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,vktvAbrThrottle:null},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},vx=s=>({...jV(s,Sx),configName:[...s.configName??[],...Sx.configName]});import{assertNonNullable as wu,combine as ui,ErrorCategory as Au,filter as U,filterChanged as Y,fromEvent as xp,isNonNullable as xx,isNullable as XV,Logger as JV,map as Q,mapTo as Ex,merge as Ei,now as ku,once as j,Subject as J,Subscription as Px,tap as Ep,ValueSubject as $,isHigher as ZV,isInvariantQuality as wx,flattenObject as Pi,throttle as Pp,getTraceSubscriptionMethod as Ax,Tracer as eO,InternalsExposure as tO}from"@vkontakte/videoplayer-shared";import{merge as zV,map as GV,filter as yx,isNonNullable as QV}from"@vkontakte/videoplayer-shared";var Ip=({seekState:s,position$:e})=>zV(s.stateChangeEnded$.pipe(GV(({to:t})=>t.state==="none"?void 0:(t.position??NaN)/1e3),yx(QV)),e.pipe(yx(()=>s.getState().state==="none")));import{assertNonNullable as WV}from"@vkontakte/videoplayer-shared";var Tx=s=>{let e=typeof s.container=="string"?document.getElementById(s.container):s.container;return WV(e,`Wrong container or containerId {${s.container}}`),e};import{filter as YV,once as KV}from"@vkontakte/videoplayer-shared";var Ix=(s,e,t,i)=>{s!==void 0&&e.getState()===void 0&&e.getPrevState()===void 0&&t?.getValue().length===0?t.pipe(YV(r=>r.length>0),KV()).subscribe(r=>{r.find(i)&&e.startTransitionTo(s)}):(s===void 0||t?.getValue().find(i))&&e.startTransitionTo(s)};var Ru=class{constructor(e={configName:[]},t=eO.createRootTracer(!1)){this.subscription=new Px;this.logger=new JV;this.abrLogger=this.logger.createComponentLog("ABR");this.internalsExposure=null;this.isPlaybackStarted=!1;this.hasLiveOffsetByPaused=new $(!1);this.hasLiveOffsetByPausedTimer=0;this.playerInitRequest=0;this.playerInited=new $(!1);this.wasSetStartedQuality=!1;this.desiredState={playbackState:new N("stopped"),seekState:new N({state:"none"}),volume:new N({volume:1,muted:!1}),videoTrack:new N(void 0),videoStream:new N(void 0),audioStream:new N(void 0),autoVideoTrackSwitching:new N(!0),autoVideoTrackLimits:new N({}),isLooped:new N(!1),isLowLatency:new N(!1),playbackRate:new N(1),externalTextTracks:new N([]),internalTextTracks:new N([]),currentTextTrack:new N(void 0),textTrackCuesSettings:new N({}),cameraOrientation:new N({x:0,y:0})};this.info={playbackState$:new $(void 0),position$:new $(0),duration$:new $(1/0),muted$:new $(!1),volume$:new $(1),availableVideoStreams$:new $([]),currentVideoStream$:new $(void 0),availableQualities$:new $([]),availableQualitiesFps$:new $({}),currentQuality$:new $(void 0),isAutoQualityEnabled$:new $(!0),autoQualityLimitingAvailable$:new $(!1),autoQualityLimits$:new $({}),predefinedQualityLimitType$:new $("unknown"),availableAudioStreams$:new $([]),currentAudioStream$:new $(void 0),availableAudioTracks$:new $([]),isAudioAvailable$:new $(!0),currentPlaybackRate$:new $(1),currentBuffer$:new $({start:0,end:0}),isBuffering$:new $(!0),isStalled$:new $(!1),isEnded$:new $(!1),isLooped$:new $(!1),isLive$:new $(void 0),isLiveEnded$:new $(null),canChangePlaybackSpeed$:new $(void 0),atLiveEdge$:new $(void 0),atLiveDurationEdge$:new $(void 0),liveTime$:new $(void 0),liveBufferTime$:new $(void 0),liveLatency$:new $(void 0),currentFormat$:new $(void 0),availableTextTracks$:new $([]),currentTextTrack$:new $(void 0),throughputEstimation$:new $(void 0),rttEstimation$:new $(void 0),videoBitrate$:new $(void 0),hostname$:new $(void 0),httpConnectionType$:new $(void 0),httpConnectionReused$:new $(void 0),surface$:new $("none"),chromecastState$:new $("NOT_AVAILABLE"),chromecastDeviceName$:new $(void 0),intrinsicVideoSize$:new $(void 0),availableSources$:new $(void 0),is3DVideo$:new $(!1),currentVideoSegmentLength$:new $(0),currentAudioSegmentLength$:new $(0)};this.events={inited$:new J,ready$:new J,started$:new J,playing$:new J,paused$:new J,stopped$:new J,willStart$:new J,willResume$:new J,willPause$:new J,willStop$:new J,willDestruct$:new J,watchCoverageRecord$:new J,watchCoverageLive$:new J,managedError$:new J,fatalError$:new J,fetcherRecoverableError$:new J,ended$:new J,looped$:new J,seeked$:new J,willSeek$:new J,autoplaySoundProhibited$:new J,firstBytes$:new J,loadedMetadata$:new J,firstFrame$:new J,canplay$:new J,log$:new J,fetcherError$:new J,severeStallOccured$:new J};this.experimental={element$:new $(void 0),tuningConfigName$:new $([]),enableDebugTelemetry$:new $(!1),dumpTelemetry:ov,getCurrentTime$:new $(null)};if(this.initLogs(),this.tuning=vx(e),this.tracer=t,this.experimental.tuningConfigName$.next(this.tuning.configName),this.chromecastInitializer=new An({receiverApplicationId:e.chromecastReceiverId,isDisabled:e.disableChromecast,dependencies:{logger:this.logger}}),this.throughputEstimator=new gx(this.tuning.throughputEstimator),e.exposeInternalsToGlobal&&(this.internalsExposure=new tO("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,f)=>{let b=typeof f;return(0,kx.default)(["number","string","boolean"],b)?f:f===null?null:`<${b}>`})),p=`Player.${String(r)}`,c=`Exception calling ${p} (${l.join(", ")})`;throw this.events.fatalError$.next({id:p,category:Au.WTF,message:c,thrown:u}),u}}}})}initVideo(e){this.config=e,this.internalsExposure?.expose({config:e,logger:this.logger,tuning:this.tuning});let t=()=>{let{container:a,...n}=e;this.tracer.log("initVideo",Pi(n)),this.domContainer=Tx(e),this.chromecastInitializer.contentId=e.meta?.videoId,this.providerContainer=new Sn({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()},r=()=>{this.tuning.asyncResolveClientChecker?F.isInited$.pipe(U(a=>!!a),j()).subscribe(()=>{console.log("Core SDK async start"),i()}):i()};return this.isNotActiveTabCase()?(this.tracer.log("request play from hidden tab"),xp(document,"visibilitychange").pipe(j()).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(U(e=>!!e),j()).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(U(e=>!!e),j()).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(U(e=>!!e),j()).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(U(e=>!!e),j()).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(U(i=>!!i),j()).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(U(t=>!!t),j()).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(U(i=>!!i),j()).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(U(t=>!!t),j()).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(U(t=>!!t),j()).subscribe(()=>{this.desiredState.videoStream.startTransitionTo(e)})),this}setAudioStream(e){return this.subscription.add(this.playerInited.pipe(U(t=>!!t),j()).subscribe(()=>{this.desiredState.audioStream.startTransitionTo(e)})),this}setQuality(e){return this.subscription.add(this.playerInited.pipe(U(t=>!!t),j()).subscribe(()=>{wu(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(U(i=>i.length>0),j()).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(U(t=>!!t),j()).subscribe(()=>{this.tracer.log("setAutoQuality",{enable:e}),this.desiredState.autoVideoTrackSwitching.startTransitionTo(e)})),this}setAutoQualityLimits(e){return this.subscription.add(this.playerInited.pipe(U(t=>!!t),j()).subscribe(()=>{this.tracer.log("setAutoQualityLimits",Pi(e)),this.desiredState.autoVideoTrackLimits.startTransitionTo(e)})),this}setPredefinedQualityLimits(e){return this.subscription.add(this.playerInited.pipe(U(t=>!!t),j()).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(U(t=>!!t),j()).subscribe(()=>{wu(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(U(t=>!!t),j()).subscribe(()=>{e.length&&this.tracer.log("setExternalTextTracks",Pi(e)),this.desiredState.externalTextTracks.startTransitionTo(e.map(t=>({type:"external",...t})))})),this}selectTextTrack(e){return this.subscription.add(this.playerInited.pipe(U(t=>!!t),j()).subscribe(()=>{Ix(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(U(t=>!!t),j()).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(U(t=>!!t),j()).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(U(i=>!!i),j()).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(U(t=>!!t),j()).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(U(i=>!!i),j()).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(U(e=>e),j()).subscribe(()=>{let e=this.getScene3D();e&&e.holdCamera()})),this}releaseCamera(){return this.subscription.add(this.playerInited.pipe(U(e=>!!e),j()).subscribe(()=>{let e=this.getScene3D();e&&e.releaseCamera()})),this}getExactTime(){if(!this.providerContainer)return 0;let e=this.providerContainer.providerOutput.element$.getValue();if(XV(e))return this.info.position$.getValue();let t=this.desiredState.seekState.getState(),i=t.state==="none"?void 0:t.position;return xx(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(Ei(this.desiredState.playbackState.stateChangeStarted$,this.desiredState.playbackState.forceChanged$).pipe(Q(e=>e.to)).subscribe(this.info.playbackState$)).add(this.desiredState.isLooped.stateChangeEnded$.pipe(Q(e=>e.to)).subscribe(this.info.isLooped$)).add(this.desiredState.playbackRate.stateChangeEnded$.pipe(Q(e=>e.to)).subscribe(this.info.currentPlaybackRate$)).add(this.desiredState.autoVideoTrackSwitching.stateChangeEnded$.pipe(Q(e=>e.to)).subscribe(this.info.isAutoQualityEnabled$)).add(this.desiredState.autoVideoTrackLimits.stateChangeEnded$.pipe(Q(e=>e.to)).subscribe(e=>{this.info.autoQualityLimits$.next(e);let{highQualityLimit:t,trafficSavingLimit:i}=this.tuning.autoTrackSelection;this.info.predefinedQualityLimitType$.next(Fc(e,t,i))})),this.subscription.add(this.desiredState.playbackState.stateChangeStarted$.pipe(U(({from:e})=>e==="stopped"),j()).subscribe(()=>{this.initedAt=ku(),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",Pi(n)),n.state==="requested"?this.desiredState.seekState.setState({...n,state:"applying"}):this.events.managedError$.next({id:`WillSeekIn${n.state}`,category:Au.WTF,message:"Received unexpeceted willSeek$"})})).add(e.providerOutput.soundProhibitedEvent$.pipe(j()).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",Pi(n)),n.state==="applying"&&(this.desiredState.seekState.setState({state:"none"}),this.events.seeked$.next())})).add(e.current$.pipe(Q(n=>n.type)).subscribe(this.info.currentFormat$)).add(e.current$.pipe(Q(n=>n.destination),Y()).subscribe(()=>this.isPlaybackStarted=!1)).add(e.providerOutput.availableVideoStreams$.subscribe(this.info.availableVideoStreams$)).add(ui({availableVideoTracks:e.providerOutput.availableVideoTracks$,currentVideoStream:e.providerOutput.currentVideoStream$}).pipe(Q(({availableVideoTracks:n,currentVideoStream:o})=>n.filter(u=>o?o.id===u.streamId:!0).map(({quality:u})=>u).sort((u,l)=>wx(u)?1:wx(l)?-1:ZV(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(Y()).subscribe(this.info.isAudioAvailable$)).add(e.providerOutput.currentVideoTrack$.pipe(U(n=>xx(n))).subscribe(n=>{this.info.currentQuality$.next(n?.quality),this.info.videoBitrate$.next(n?.bitrate)})).add(e.providerOutput.currentVideoSegmentLength$.pipe(Y((n,o)=>Math.round(n)===Math.round(o))).subscribe(this.info.currentVideoSegmentLength$)).add(e.providerOutput.currentAudioSegmentLength$.pipe(Y((n,o)=>Math.round(n)===Math.round(o))).subscribe(this.info.currentAudioSegmentLength$)).add(e.providerOutput.hostname$.pipe(Y()).subscribe(this.info.hostname$)).add(e.providerOutput.httpConnectionType$.pipe(Y()).subscribe(this.info.httpConnectionType$)).add(e.providerOutput.httpConnectionReused$.pipe(Y()).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(Q(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(Ep(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(ui({hasLiveOffsetByPaused:Ei(this.desiredState.playbackState.stateChangeStarted$,this.desiredState.playbackState.forceChanged$).pipe(Q(n=>n.to),Y(),Q(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(ui({atLiveEdge:ui({isLive:e.providerOutput.isLive$,isLowLatency:e.providerOutput.isLowLatency$,position:Ip({seekState:this.desiredState.seekState,position$:e.providerOutput.position$})}).pipe(Q(({isLive:n,position:o,isLowLatency:u})=>{let l=this.getActiveLiveDelay(u);return n&&Math.abs(o)<l/1e3}),Y(),Ep(n=>n&&this.setPlaybackRate(1))),hasPausedTimeoutCase:this.hasLiveOffsetByPaused}).pipe(Q(({atLiveEdge:n,hasPausedTimeoutCase:o})=>n&&!o)).subscribe(this.info.atLiveEdge$)).add(ui({isLive:e.providerOutput.isLive$,position:e.providerOutput.position$,duration:e.providerOutput.duration$}).pipe(Q(({isLive:n,position:o,duration:u})=>n&&(Math.abs(u)-Math.abs(o))*1e3<this.tuning.live.activeLiveDelay),Y(),Ep(n=>n&&this.setPlaybackRate(1))).subscribe(this.info.atLiveDurationEdge$)).add(e.providerOutput.volume$.pipe(Q(n=>n.muted),Y()).subscribe(this.info.muted$)).add(e.providerOutput.volume$.pipe(Q(n=>n.volume),Y()).subscribe(this.info.volume$)).add(Ip({seekState:this.desiredState.seekState,position$:e.providerOutput.position$}).subscribe(this.info.position$)).add(Ei(e.providerOutput.endedEvent$.pipe(Ex(!0)),e.providerOutput.seekedEvent$.pipe(Ex(!1))).pipe(Y()).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(Q(n=>({id:n?`No${n}`:"NoProviders",category:Au.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(j(),Q(n=>n??ku()-this.initedAt)).subscribe(this.events.firstBytes$)).add(e.providerOutput.loadedMetadataEvent$.subscribe(this.events.loadedMetadata$)).add(e.providerOutput.firstFrameEvent$.pipe(j(),Q(()=>ku()-this.initedAt)).subscribe(this.events.firstFrame$)).add(e.providerOutput.canplay$.pipe(j(),Q(()=>ku()-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 $(!1);this.subscription.add(e.providerOutput.seekedEvent$.subscribe(()=>t.next(!1))).add(e.providerOutput.willSeekEvent$.subscribe(()=>t.next(!0)));let i=new $(!0);this.subscription.add(e.current$.subscribe(()=>i.next(!0))).add(this.desiredState.playbackState.stateChangeEnded$.pipe(U(({to:n})=>n==="playing"),j()).subscribe(()=>i.next(!1)));let r=0,a=Ei(e.providerOutput.isBuffering$,t,i).pipe(Q(()=>{let n=e.providerOutput.isBuffering$.getValue(),o=t.getValue()||i.getValue();return n&&!o}),Y());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(Ei(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(Ei(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(),p=this.chromecastInitializer.castState$.getValue(),c;p==="CONNECTED"?c="second_screen":u?l?n?c="pip":o?c="fullscreen":c="inline":c="invisible":c="none",this.info.surface$.getValue()!==c&&this.info.surface$.next(c)}))}initChromecastSubscription(){this.subscription.add(this.chromecastInitializer.castState$.subscribe(this.info.chromecastState$)),this.subscription.add(this.chromecastInitializer.connection$.pipe(Q(e=>e?.castDevice.friendlyName)).subscribe(this.info.chromecastDeviceName$)),this.subscription.add(this.chromecastInitializer.errorEvent$.subscribe(this.events.managedError$))}initStartingVideoTrack(e){let t=new Px;this.subscription.add(t),this.subscription.add(e.current$.pipe(Y((i,r)=>i.provider===r.provider)).subscribe(()=>{t.unsubscribe(),t.add(e.providerOutput.availableVideoTracks$.pipe(U(i=>i.length>0),j()).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=Ot(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(Ei(this.desiredState.videoTrack.stateChangeStarted$.pipe(Q(e=>({transition:e,entity:"quality",type:"start"}))),this.desiredState.videoTrack.stateChangeEnded$.pipe(Q(e=>({transition:e,entity:"quality",type:"end"}))),this.desiredState.autoVideoTrackSwitching.stateChangeStarted$.pipe(Q(e=>({transition:e,entity:"autoQualityEnabled",type:"start"}))),this.desiredState.autoVideoTrackSwitching.stateChangeEnded$.pipe(Q(e=>({transition:e,entity:"autoQualityEnabled",type:"end"}))),this.desiredState.seekState.stateChangeStarted$.pipe(Q(e=>({transition:e,entity:"seekState",type:"start"}))),this.desiredState.seekState.stateChangeEnded$.pipe(Q(e=>({transition:e,entity:"seekState",type:"end"}))),this.desiredState.playbackState.stateChangeStarted$.pipe(Q(e=>({transition:e,entity:"playbackState",type:"start"}))),this.desiredState.playbackState.stateChangeEnded$.pipe(Q(e=>({transition:e,entity:"playbackState",type:"end"})))).pipe(Q(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;wu(this.providerContainer),wu(e),nv(),this.experimental.enableDebugTelemetry$.next(this.tuning.enableTelemetryAtStart),[this.experimental.enableDebugTelemetry$.subscribe(t=>av(t)),this.providerContainer.current$.subscribe(({type:t})=>ks("provider",t)),e.duration$.subscribe(t=>ks("duration",t)),e.availableVideoTracks$.pipe(U(t=>!!t.length),j()).subscribe(t=>ks("tracks",t)),this.events.fatalError$.subscribe(new Ge("fatalError")),this.events.managedError$.subscribe(new Ge("managedError")),e.position$.subscribe(new Ge("position")),e.currentVideoTrack$.pipe(Q(t=>t?.quality)).subscribe(new Ge("quality")),this.info.currentBuffer$.subscribe(new Ge("buffer")),e.isBuffering$.subscribe(new Ge("isBuffering"))].forEach(t=>this.subscription.add(t)),ks("codecs",F.video.supportedCodecs)}initTracerSubscription(){let e=Ax(this.tracer.log.bind(this.tracer)),t=Ax(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(Y()).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(ui({currentQuality:this.info.currentQuality$,videoBitrate:this.info.videoBitrate$}).pipe(U(({currentQuality:i,videoBitrate:r})=>!!i&&!!r),Y((i,r)=>i.currentQuality===r.currentQuality)).subscribe(e("currentVideoTrack"))).add(this.info.currentVideoSegmentLength$.pipe(U(i=>i>0),Y()).subscribe(e("currentVideoSegmentLength"))).add(this.info.currentAudioSegmentLength$.pipe(U(i=>i>0),Y()).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(ui({currentBuffer:this.info.currentBuffer$.pipe(U(i=>i.end>0),Y((i,r)=>i.end===r.end&&i.start===r.start)),position:this.info.position$.pipe(Y())}).pipe(Pp(1e3)).subscribe(e("currentBufferAndPosition"))).add(this.info.duration$.pipe(Y()).subscribe(e("duration"))).add(this.info.isBuffering$.subscribe(e("isBuffering"))).add(this.info.isLive$.pipe(Y()).subscribe(e("isLive"))).add(this.info.canChangePlaybackSpeed$.pipe(Y()).subscribe(e("canChangePlaybackSpeed"))).add(ui({liveTime:this.info.liveTime$,liveBufferTime:this.info.liveBufferTime$,position:this.info.position$}).pipe(U(({liveTime:i,liveBufferTime:r})=>!!i&&!!r),Pp(1e3)).subscribe(e("liveBufferAndPosition"))).add(this.info.atLiveEdge$.pipe(Y(),U(i=>i===!0)).subscribe(e("atLiveEdge"))).add(this.info.atLiveDurationEdge$.pipe(Y(),U(i=>i===!0)).subscribe(e("atLiveDurationEdge"))).add(this.info.muted$.pipe(Y()).subscribe(e("muted"))).add(this.info.volume$.pipe(Y()).subscribe(e("volume"))).add(this.info.isEnded$.pipe(Y(),U(i=>i===!0)).subscribe(e("isEnded"))).add(this.info.availableSources$.subscribe(e("availableSources"))).add(ui({throughputEstimation:this.info.throughputEstimation$,rtt:this.info.rttEstimation$}).pipe(U(({throughputEstimation:i,rtt:r})=>!!i&&!!r),Pp(3e3)).subscribe(e("throughputEstimation"))).add(this.info.isStalled$.subscribe(e("isStalled"))).add(this.info.is3DVideo$.pipe(Y(),U(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:Au.DOM,message:String(r)})})};this.subscription.add(Ei(xp(document,"visibilitychange"),xp(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",Pi({quality:t,availableTracks:Pi(e),track:Pi(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&&!Cs()}};import{Subscription as WZ,Observable as YZ,Subject as KZ,ValueSubject as XZ,VideoQuality as JZ}from"@vkontakte/videoplayer-shared";var ZZ=`@vkontakte/videoplayer-core@${Ap}`;export{yn as ChromecastState,Du as HttpConnectionType,YZ as Observable,Ke as PlaybackState,Ru as Player,Tn as PredefinedQualityLimits,ZZ as SDK_VERSION,KZ as Subject,WZ as Subscription,Cu as Surface,Ap as VERSION,XZ as ValueSubject,Kt as VideoFormat,JZ as VideoQuality,F as clientChecker,ws as isMobile};