@vkontakte/videoplayer-core 2.0.131-dev.abb2b2b1.0 → 2.0.131-dev.c235b295.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (65) hide show
  1. package/es2015.cjs.js +93 -32
  2. package/es2015.esm.js +89 -28
  3. package/es2018.cjs.js +94 -33
  4. package/es2018.esm.js +90 -29
  5. package/es2024.cjs.js +95 -34
  6. package/es2024.esm.js +94 -33
  7. package/esnext.cjs.js +95 -34
  8. package/esnext.esm.js +94 -33
  9. package/evergreen.esm.js +89 -28
  10. package/package.json +2 -2
  11. package/types/providers/DashProviderNew/baseDashProvider.d.ts +57 -0
  12. package/types/providers/DashProviderNew/consts.d.ts +3 -0
  13. package/types/providers/DashProviderNew/index.d.ts +2 -0
  14. package/types/providers/DashProviderNew/lib/ElementSizeManager.d.ts +19 -0
  15. package/types/providers/DashProviderNew/lib/LiveTextManager.d.ts +23 -0
  16. package/types/providers/DashProviderNew/lib/buffer.d.ts +117 -0
  17. package/types/providers/DashProviderNew/lib/fetcher.d.ts +59 -0
  18. package/types/providers/DashProviderNew/lib/parsers/ietf/index.d.ts +13 -0
  19. package/types/providers/DashProviderNew/lib/parsers/index.d.ts +3 -0
  20. package/types/providers/DashProviderNew/lib/parsers/mpd.d.ts +3 -0
  21. package/types/providers/DashProviderNew/lib/parsers/mpeg/BoxModel.d.ts +20 -0
  22. package/types/providers/DashProviderNew/lib/parsers/mpeg/BoxParser.d.ts +21 -0
  23. package/types/providers/DashProviderNew/lib/parsers/mpeg/BoxTypeEnum.d.ts +30 -0
  24. package/types/providers/DashProviderNew/lib/parsers/mpeg/box.d.ts +74 -0
  25. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/avc1.d.ts +8 -0
  26. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/equi.d.ts +21 -0
  27. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/ftyp.d.ts +17 -0
  28. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/index.d.ts +26 -0
  29. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/mdat.d.ts +15 -0
  30. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/mdia.d.ts +8 -0
  31. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/mfhd.d.ts +11 -0
  32. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/minf.d.ts +8 -0
  33. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/moof.d.ts +8 -0
  34. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/moov.d.ts +8 -0
  35. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/mvhd.d.ts +35 -0
  36. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/prhd.d.ts +16 -0
  37. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/proj.d.ts +8 -0
  38. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/sidx.d.ts +48 -0
  39. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/st3d.d.ts +23 -0
  40. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/stbl.d.ts +8 -0
  41. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/stsd.d.ts +11 -0
  42. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/sv3d.d.ts +8 -0
  43. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/tfdt.d.ts +17 -0
  44. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/tfhd.d.ts +22 -0
  45. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/tkhd.d.ts +42 -0
  46. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/traf.d.ts +8 -0
  47. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/trak.d.ts +8 -0
  48. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/trun.d.ts +31 -0
  49. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/unknown.d.ts +6 -0
  50. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/uuid.d.ts +11 -0
  51. package/types/providers/DashProviderNew/lib/parsers/mpeg/fullBox.d.ts +15 -0
  52. package/types/providers/DashProviderNew/lib/parsers/mpeg/isobmff.d.ts +12 -0
  53. package/types/providers/DashProviderNew/lib/parsers/webm/ebml.d.ts +76 -0
  54. package/types/providers/DashProviderNew/lib/parsers/webm/webm.d.ts +3 -0
  55. package/types/providers/DashProviderNew/lib/player.d.ts +92 -0
  56. package/types/providers/DashProviderNew/lib/sourceBufferTaskQueue.d.ts +19 -0
  57. package/types/providers/DashProviderNew/lib/types.d.ts +186 -0
  58. package/types/providers/DashProviderNew/lib/utils.d.ts +21 -0
  59. package/types/providers/DashProviderNew/newDashCmafLiveProvider.d.ts +8 -0
  60. package/types/providers/DashProviderNew/newDashProvider.d.ts +6 -0
  61. package/types/providers/utils/StallsManager.d.ts +18 -4
  62. package/types/utils/ClientChecker/services/BrowserChecker.d.ts +2 -0
  63. package/types/utils/autoSelectTrack.d.ts +6 -3
  64. package/types/utils/qualityLimits.d.ts +3 -18
  65. package/types/utils/tuningConfig.d.ts +27 -7
package/esnext.esm.js CHANGED
@@ -1,73 +1,127 @@
1
1
  /**
2
- * @vkontakte/videoplayer-core v2.0.131-dev.abb2b2b1.0
3
- * Wed, 16 Apr 2025 13:51:43 GMT
2
+ * @vkontakte/videoplayer-core v2.0.131-dev.c235b295.0
3
+ * Tue, 13 May 2025 09:14:14 GMT
4
4
  * https://st.mycdn.me/static/vkontakte-videoplayer/2-0-131/doc/
5
5
  */
6
- var Oy=Object.create;var ic=Object.defineProperty;var _y=Object.getOwnPropertyDescriptor;var Ny=Object.getOwnPropertyNames;var Fy=Object.getPrototypeOf,qy=Object.prototype.hasOwnProperty;var m=(r,e)=>()=>(e||r((e={exports:{}}).exports,e),e.exports);var Uy=(r,e,t,i)=>{if(e&&typeof e=="object"||typeof e=="function")for(let a of Ny(e))!qy.call(r,a)&&a!==t&&ic(r,a,{get:()=>e[a],enumerable:!(i=_y(e,a))||i.enumerable});return r};var M=(r,e,t)=>(t=r!=null?Oy(Fy(r)):{},Uy(e||!r||!r.__esModule?ic(t,"default",{value:r,enumerable:!0}):t,r));var Z=m((Rn,ac)=>{"use strict";var Ji=function(r){return r&&r.Math===Math&&r};ac.exports=Ji(typeof globalThis=="object"&&globalThis)||Ji(typeof window=="object"&&window)||Ji(typeof self=="object"&&self)||Ji(typeof global=="object"&&global)||Ji(typeof Rn=="object"&&Rn)||function(){return this}()||Function("return this")()});var le=m((gD,sc)=>{"use strict";sc.exports=function(r){try{return!!r()}catch{return!0}}});var Zi=m((vD,nc)=>{"use strict";var Hy=le();nc.exports=!Hy(function(){var r=function(){}.bind();return typeof r!="function"||r.hasOwnProperty("prototype")})});var $n=m((SD,cc)=>{"use strict";var jy=Zi(),lc=Function.prototype,oc=lc.apply,uc=lc.call;cc.exports=typeof Reflect=="object"&&Reflect.apply||(jy?uc.bind(oc):function(){return uc.apply(oc,arguments)})});var se=m((yD,hc)=>{"use strict";var dc=Zi(),pc=Function.prototype,Mn=pc.call,Qy=dc&&pc.bind.bind(Mn,Mn);hc.exports=dc?Qy:function(r){return function(){return Mn.apply(r,arguments)}}});var Ut=m((TD,fc)=>{"use strict";var mc=se(),Gy=mc({}.toString),Wy=mc("".slice);fc.exports=function(r){return Wy(Gy(r),8,-1)}});var Cn=m((ID,bc)=>{"use strict";var Yy=Ut(),zy=se();bc.exports=function(r){if(Yy(r)==="Function")return zy(r)}});var X=m((ED,gc)=>{"use strict";var Dn=typeof document=="object"&&document.all;gc.exports=typeof Dn>"u"&&Dn!==void 0?function(r){return typeof r=="function"||r===Dn}:function(r){return typeof r=="function"}});var $e=m((xD,vc)=>{"use strict";var Ky=le();vc.exports=!Ky(function(){return Object.defineProperty({},1,{get:function(){return 7}})[1]!==7})});var Me=m((PD,Sc)=>{"use strict";var Xy=Zi(),Qa=Function.prototype.call;Sc.exports=Xy?Qa.bind(Qa):function(){return Qa.apply(Qa,arguments)}});var Vn=m(Ic=>{"use strict";var yc={}.propertyIsEnumerable,Tc=Object.getOwnPropertyDescriptor,Jy=Tc&&!yc.call({1:2},1);Ic.f=Jy?function(e){var t=Tc(this,e);return!!t&&t.enumerable}:yc});var er=m((wD,Ec)=>{"use strict";Ec.exports=function(r,e){return{enumerable:!(r&1),configurable:!(r&2),writable:!(r&4),value:e}}});var Pc=m((AD,xc)=>{"use strict";var Zy=se(),eT=le(),tT=Ut(),Bn=Object,iT=Zy("".split);xc.exports=eT(function(){return!Bn("z").propertyIsEnumerable(0)})?function(r){return tT(r)==="String"?iT(r,""):Bn(r)}:Bn});var hi=m((LD,kc)=>{"use strict";kc.exports=function(r){return r==null}});var It=m((RD,wc)=>{"use strict";var rT=hi(),aT=TypeError;wc.exports=function(r){if(rT(r))throw new aT("Can't call method on "+r);return r}});var Ht=m(($D,Ac)=>{"use strict";var sT=Pc(),nT=It();Ac.exports=function(r){return sT(nT(r))}});var Ce=m((MD,Lc)=>{"use strict";var oT=X();Lc.exports=function(r){return typeof r=="object"?r!==null:oT(r)}});var mi=m((CD,Rc)=>{"use strict";Rc.exports={}});var lt=m((DD,Mc)=>{"use strict";var On=mi(),_n=Z(),uT=X(),$c=function(r){return uT(r)?r:void 0};Mc.exports=function(r,e){return arguments.length<2?$c(On[r])||$c(_n[r]):On[r]&&On[r][e]||_n[r]&&_n[r][e]}});var tr=m((VD,Cc)=>{"use strict";var lT=se();Cc.exports=lT({}.isPrototypeOf)});var jt=m((BD,Bc)=>{"use strict";var cT=Z(),Dc=cT.navigator,Vc=Dc&&Dc.userAgent;Bc.exports=Vc?String(Vc):""});var Fn=m((OD,Uc)=>{"use strict";var qc=Z(),Nn=jt(),Oc=qc.process,_c=qc.Deno,Nc=Oc&&Oc.versions||_c&&_c.version,Fc=Nc&&Nc.v8,je,Ga;Fc&&(je=Fc.split("."),Ga=je[0]>0&&je[0]<4?1:+(je[0]+je[1]));!Ga&&Nn&&(je=Nn.match(/Edge\/(\d+)/),(!je||je[1]>=74)&&(je=Nn.match(/Chrome\/(\d+)/),je&&(Ga=+je[1])));Uc.exports=Ga});var qn=m((_D,jc)=>{"use strict";var Hc=Fn(),dT=le(),pT=Z(),hT=pT.String;jc.exports=!!Object.getOwnPropertySymbols&&!dT(function(){var r=Symbol("symbol detection");return!hT(r)||!(Object(r)instanceof Symbol)||!Symbol.sham&&Hc&&Hc<41})});var Un=m((ND,Qc)=>{"use strict";var mT=qn();Qc.exports=mT&&!Symbol.sham&&typeof Symbol.iterator=="symbol"});var Hn=m((FD,Gc)=>{"use strict";var fT=lt(),bT=X(),gT=tr(),vT=Un(),ST=Object;Gc.exports=vT?function(r){return typeof r=="symbol"}:function(r){var e=fT("Symbol");return bT(e)&&gT(e.prototype,ST(r))}});var ir=m((qD,Wc)=>{"use strict";var yT=String;Wc.exports=function(r){try{return yT(r)}catch{return"Object"}}});var tt=m((UD,Yc)=>{"use strict";var TT=X(),IT=ir(),ET=TypeError;Yc.exports=function(r){if(TT(r))return r;throw new ET(IT(r)+" is not a function")}});var rr=m((HD,zc)=>{"use strict";var xT=tt(),PT=hi();zc.exports=function(r,e){var t=r[e];return PT(t)?void 0:xT(t)}});var Xc=m((jD,Kc)=>{"use strict";var jn=Me(),Qn=X(),Gn=Ce(),kT=TypeError;Kc.exports=function(r,e){var t,i;if(e==="string"&&Qn(t=r.toString)&&!Gn(i=jn(t,r))||Qn(t=r.valueOf)&&!Gn(i=jn(t,r))||e!=="string"&&Qn(t=r.toString)&&!Gn(i=jn(t,r)))return i;throw new kT("Can't convert object to primitive value")}});var Qe=m((QD,Jc)=>{"use strict";Jc.exports=!0});var td=m((GD,ed)=>{"use strict";var Zc=Z(),wT=Object.defineProperty;ed.exports=function(r,e){try{wT(Zc,r,{value:e,configurable:!0,writable:!0})}catch{Zc[r]=e}return e}});var ar=m((WD,ad)=>{"use strict";var AT=Qe(),LT=Z(),RT=td(),id="__core-js_shared__",rd=ad.exports=LT[id]||RT(id,{});(rd.versions||(rd.versions=[])).push({version:"3.38.0",mode:AT?"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 Wn=m((YD,nd)=>{"use strict";var sd=ar();nd.exports=function(r,e){return sd[r]||(sd[r]=e||{})}});var fi=m((zD,od)=>{"use strict";var $T=It(),MT=Object;od.exports=function(r){return MT($T(r))}});var Ge=m((KD,ud)=>{"use strict";var CT=se(),DT=fi(),VT=CT({}.hasOwnProperty);ud.exports=Object.hasOwn||function(e,t){return VT(DT(e),t)}});var Yn=m((XD,ld)=>{"use strict";var BT=se(),OT=0,_T=Math.random(),NT=BT(1 .toString);ld.exports=function(r){return"Symbol("+(r===void 0?"":r)+")_"+NT(++OT+_T,36)}});var ce=m((JD,dd)=>{"use strict";var FT=Z(),qT=Wn(),cd=Ge(),UT=Yn(),HT=qn(),jT=Un(),bi=FT.Symbol,zn=qT("wks"),QT=jT?bi.for||bi:bi&&bi.withoutSetter||UT;dd.exports=function(r){return cd(zn,r)||(zn[r]=HT&&cd(bi,r)?bi[r]:QT("Symbol."+r)),zn[r]}});var fd=m((ZD,md)=>{"use strict";var GT=Me(),pd=Ce(),hd=Hn(),WT=rr(),YT=Xc(),zT=ce(),KT=TypeError,XT=zT("toPrimitive");md.exports=function(r,e){if(!pd(r)||hd(r))return r;var t=WT(r,XT),i;if(t){if(e===void 0&&(e="default"),i=GT(t,r,e),!pd(i)||hd(i))return i;throw new KT("Can't convert object to primitive value")}return e===void 0&&(e="number"),YT(r,e)}});var Kn=m((e0,bd)=>{"use strict";var JT=fd(),ZT=Hn();bd.exports=function(r){var e=JT(r,"string");return ZT(e)?e:e+""}});var Wa=m((t0,vd)=>{"use strict";var eI=Z(),gd=Ce(),Xn=eI.document,tI=gd(Xn)&&gd(Xn.createElement);vd.exports=function(r){return tI?Xn.createElement(r):{}}});var Jn=m((i0,Sd)=>{"use strict";var iI=$e(),rI=le(),aI=Wa();Sd.exports=!iI&&!rI(function(){return Object.defineProperty(aI("div"),"a",{get:function(){return 7}}).a!==7})});var Id=m(Td=>{"use strict";var sI=$e(),nI=Me(),oI=Vn(),uI=er(),lI=Ht(),cI=Kn(),dI=Ge(),pI=Jn(),yd=Object.getOwnPropertyDescriptor;Td.f=sI?yd:function(e,t){if(e=lI(e),t=cI(t),pI)try{return yd(e,t)}catch{}if(dI(e,t))return uI(!nI(oI.f,e,t),e[t])}});var Zn=m((a0,Ed)=>{"use strict";var hI=le(),mI=X(),fI=/#|\.prototype\./,sr=function(r,e){var t=gI[bI(r)];return t===SI?!0:t===vI?!1:mI(e)?hI(e):!!e},bI=sr.normalize=function(r){return String(r).replace(fI,".").toLowerCase()},gI=sr.data={},vI=sr.NATIVE="N",SI=sr.POLYFILL="P";Ed.exports=sr});var gi=m((s0,Pd)=>{"use strict";var xd=Cn(),yI=tt(),TI=Zi(),II=xd(xd.bind);Pd.exports=function(r,e){return yI(r),e===void 0?r:TI?II(r,e):function(){return r.apply(e,arguments)}}});var eo=m((n0,kd)=>{"use strict";var EI=$e(),xI=le();kd.exports=EI&&xI(function(){return Object.defineProperty(function(){},"prototype",{value:42,writable:!1}).prototype!==42})});var it=m((o0,wd)=>{"use strict";var PI=Ce(),kI=String,wI=TypeError;wd.exports=function(r){if(PI(r))return r;throw new wI(kI(r)+" is not an object")}});var Qt=m(Ld=>{"use strict";var AI=$e(),LI=Jn(),RI=eo(),Ya=it(),Ad=Kn(),$I=TypeError,to=Object.defineProperty,MI=Object.getOwnPropertyDescriptor,io="enumerable",ro="configurable",ao="writable";Ld.f=AI?RI?function(e,t,i){if(Ya(e),t=Ad(t),Ya(i),typeof e=="function"&&t==="prototype"&&"value"in i&&ao in i&&!i[ao]){var a=MI(e,t);a&&a[ao]&&(e[t]=i.value,i={configurable:ro in i?i[ro]:a[ro],enumerable:io in i?i[io]:a[io],writable:!1})}return to(e,t,i)}:to:function(e,t,i){if(Ya(e),t=Ad(t),Ya(i),LI)try{return to(e,t,i)}catch{}if("get"in i||"set"in i)throw new $I("Accessors not supported");return"value"in i&&(e[t]=i.value),e}});var vi=m((l0,Rd)=>{"use strict";var CI=$e(),DI=Qt(),VI=er();Rd.exports=CI?function(r,e,t){return DI.f(r,e,VI(1,t))}:function(r,e,t){return r[e]=t,r}});var te=m((c0,Md)=>{"use strict";var nr=Z(),BI=$n(),OI=Cn(),_I=X(),NI=Id().f,FI=Zn(),Si=mi(),qI=gi(),yi=vi(),$d=Ge();ar();var UI=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 BI(r,this,arguments)};return e.prototype=r.prototype,e};Md.exports=function(r,e){var t=r.target,i=r.global,a=r.stat,s=r.proto,n=i?nr:a?nr[t]:nr[t]&&nr[t].prototype,o=i?Si:Si[t]||yi(Si,t,{})[t],u=o.prototype,l,c,d,p,h,f,b,g,v;for(p in e)l=FI(i?p:t+(a?".":"#")+p,r.forced),c=!l&&n&&$d(n,p),f=o[p],c&&(r.dontCallGetSet?(v=NI(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=qI(h,nr):r.wrap&&c?g=UI(h):s&&_I(h)?g=OI(h):g=h,(r.sham||h&&h.sham||f&&f.sham)&&yi(g,"sham",!0),yi(o,p,g),s&&(d=t+"Prototype",$d(Si,d)||yi(Si,d,{}),yi(Si[d],p,h),r.real&&u&&(l||!u[p])&&yi(u,p,h)))}});var Dd=m((d0,Cd)=>{"use strict";var HI=Math.ceil,jI=Math.floor;Cd.exports=Math.trunc||function(e){var t=+e;return(t>0?jI:HI)(t)}});var or=m((p0,Vd)=>{"use strict";var QI=Dd();Vd.exports=function(r){var e=+r;return e!==e||e===0?0:QI(e)}});var Od=m((h0,Bd)=>{"use strict";var GI=or(),WI=Math.max,YI=Math.min;Bd.exports=function(r,e){var t=GI(r);return t<0?WI(t+e,0):YI(t,e)}});var so=m((m0,_d)=>{"use strict";var zI=or(),KI=Math.min;_d.exports=function(r){var e=zI(r);return e>0?KI(e,9007199254740991):0}});var Ti=m((f0,Nd)=>{"use strict";var XI=so();Nd.exports=function(r){return XI(r.length)}});var no=m((b0,qd)=>{"use strict";var JI=Ht(),ZI=Od(),eE=Ti(),Fd=function(r){return function(e,t,i){var a=JI(e),s=eE(a);if(s===0)return!r&&-1;var n=ZI(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}};qd.exports={includes:Fd(!0),indexOf:Fd(!1)}});var ur=m((g0,Ud)=>{"use strict";Ud.exports=function(){}});var Hd=m(()=>{"use strict";var tE=te(),iE=no().includes,rE=le(),aE=ur(),sE=rE(function(){return!Array(1).includes()});tE({target:"Array",proto:!0,forced:sE},{includes:function(e){return iE(this,e,arguments.length>1?arguments[1]:void 0)}});aE("includes")});var Et=m((y0,jd)=>{"use strict";var nE=lt();jd.exports=nE});var Gd=m((T0,Qd)=>{"use strict";Hd();var oE=Et();Qd.exports=oE("Array","includes")});var Yd=m((I0,Wd)=>{"use strict";var uE=Gd();Wd.exports=uE});var _e=m((E0,zd)=>{"use strict";var lE=Yd();zd.exports=lE});var Xa=m((V0,rp)=>{"use strict";var gE=Wn(),vE=Yn(),ip=gE("keys");rp.exports=function(r){return ip[r]||(ip[r]=vE(r))}});var sp=m((B0,ap)=>{"use strict";var SE=le();ap.exports=!SE(function(){function r(){}return r.prototype.constructor=null,Object.getPrototypeOf(new r)!==r.prototype})});var Ja=m((O0,op)=>{"use strict";var yE=Ge(),TE=X(),IE=fi(),EE=Xa(),xE=sp(),np=EE("IE_PROTO"),lo=Object,PE=lo.prototype;op.exports=xE?lo.getPrototypeOf:function(r){var e=IE(r);if(yE(e,np))return e[np];var t=e.constructor;return TE(t)&&e instanceof t?t.prototype:e instanceof lo?PE:null}});var Za=m((_0,up)=>{"use strict";up.exports={}});var dp=m((N0,cp)=>{"use strict";var kE=se(),co=Ge(),wE=Ht(),AE=no().indexOf,LE=Za(),lp=kE([].push);cp.exports=function(r,e){var t=wE(r),i=0,a=[],s;for(s in t)!co(LE,s)&&co(t,s)&&lp(a,s);for(;e.length>i;)co(t,s=e[i++])&&(~AE(a,s)||lp(a,s));return a}});var po=m((F0,pp)=>{"use strict";pp.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]});var ho=m((q0,hp)=>{"use strict";var RE=dp(),$E=po();hp.exports=Object.keys||function(e){return RE(e,$E)}});var mo=m((U0,vp)=>{"use strict";var fp=$e(),ME=le(),bp=se(),CE=Ja(),DE=ho(),VE=Ht(),BE=Vn().f,gp=bp(BE),OE=bp([].push),_E=fp&&ME(function(){var r=Object.create(null);return r[2]=2,!gp(r,2)}),mp=function(r){return function(e){for(var t=VE(e),i=DE(t),a=_E&&CE(t)===null,s=i.length,n=0,o=[],u;s>n;)u=i[n++],(!fp||(a?u in t:gp(t,u)))&&OE(o,r?[u,t[u]]:t[u]);return o}};vp.exports={entries:mp(!0),values:mp(!1)}});var Sp=m(()=>{"use strict";var NE=te(),FE=mo().entries;NE({target:"Object",stat:!0},{entries:function(e){return FE(e)}})});var Tp=m((Q0,yp)=>{"use strict";Sp();var qE=mi();yp.exports=qE.Object.entries});var Ep=m((G0,Ip)=>{"use strict";var UE=Tp();Ip.exports=UE});var Ii=m((W0,xp)=>{"use strict";var HE=Ep();xp.exports=HE});var Gt=m((Y0,Pp)=>{"use strict";Pp.exports={}});var Ap=m((z0,wp)=>{"use strict";var jE=Z(),QE=X(),kp=jE.WeakMap;wp.exports=QE(kp)&&/native code/.test(String(kp))});var vo=m((K0,$p)=>{"use strict";var GE=Ap(),Rp=Z(),WE=Ce(),YE=vi(),fo=Ge(),bo=ar(),zE=Xa(),KE=Za(),Lp="Object already initialized",go=Rp.TypeError,XE=Rp.WeakMap,es,lr,ts,JE=function(r){return ts(r)?lr(r):es(r,{})},ZE=function(r){return function(e){var t;if(!WE(e)||(t=lr(e)).type!==r)throw new go("Incompatible receiver, "+r+" required");return t}};GE||bo.state?(We=bo.state||(bo.state=new XE),We.get=We.get,We.has=We.has,We.set=We.set,es=function(r,e){if(We.has(r))throw new go(Lp);return e.facade=r,We.set(r,e),e},lr=function(r){return We.get(r)||{}},ts=function(r){return We.has(r)}):(Wt=zE("state"),KE[Wt]=!0,es=function(r,e){if(fo(r,Wt))throw new go(Lp);return e.facade=r,YE(r,Wt,e),e},lr=function(r){return fo(r,Wt)?r[Wt]:{}},ts=function(r){return fo(r,Wt)});var We,Wt;$p.exports={set:es,get:lr,has:ts,enforce:JE,getterFor:ZE}});var To=m((X0,Cp)=>{"use strict";var So=$e(),ex=Ge(),Mp=Function.prototype,tx=So&&Object.getOwnPropertyDescriptor,yo=ex(Mp,"name"),ix=yo&&function(){}.name==="something",rx=yo&&(!So||So&&tx(Mp,"name").configurable);Cp.exports={EXISTS:yo,PROPER:ix,CONFIGURABLE:rx}});var Vp=m(Dp=>{"use strict";var ax=$e(),sx=eo(),nx=Qt(),ox=it(),ux=Ht(),lx=ho();Dp.f=ax&&!sx?Object.defineProperties:function(e,t){ox(e);for(var i=ux(t),a=lx(t),s=a.length,n=0,o;s>n;)nx.f(e,o=a[n++],i[o]);return e}});var Io=m((Z0,Bp)=>{"use strict";var cx=lt();Bp.exports=cx("document","documentElement")});var ko=m((eV,Hp)=>{"use strict";var dx=it(),px=Vp(),Op=po(),hx=Za(),mx=Io(),fx=Wa(),bx=Xa(),_p=">",Np="<",xo="prototype",Po="script",qp=bx("IE_PROTO"),Eo=function(){},Up=function(r){return Np+Po+_p+r+Np+"/"+Po+_p},Fp=function(r){r.write(Up("")),r.close();var e=r.parentWindow.Object;return r=null,e},gx=function(){var r=fx("iframe"),e="java"+Po+":",t;return r.style.display="none",mx.appendChild(r),r.src=String(e),t=r.contentWindow.document,t.open(),t.write(Up("document.F=Object")),t.close(),t.F},is,rs=function(){try{is=new ActiveXObject("htmlfile")}catch{}rs=typeof document<"u"?document.domain&&is?Fp(is):gx():Fp(is);for(var r=Op.length;r--;)delete rs[xo][Op[r]];return rs()};hx[qp]=!0;Hp.exports=Object.create||function(e,t){var i;return e!==null?(Eo[xo]=dx(e),i=new Eo,Eo[xo]=null,i[qp]=e):i=rs(),t===void 0?i:px.f(i,t)}});var Ei=m((tV,jp)=>{"use strict";var vx=vi();jp.exports=function(r,e,t,i){return i&&i.enumerable?r[e]=t:vx(r,e,t),r}});var Ro=m((iV,Wp)=>{"use strict";var Sx=le(),yx=X(),Tx=Ce(),Ix=ko(),Qp=Ja(),Ex=Ei(),xx=ce(),Px=Qe(),Lo=xx("iterator"),Gp=!1,ct,wo,Ao;[].keys&&(Ao=[].keys(),"next"in Ao?(wo=Qp(Qp(Ao)),wo!==Object.prototype&&(ct=wo)):Gp=!0);var kx=!Tx(ct)||Sx(function(){var r={};return ct[Lo].call(r)!==r});kx?ct={}:Px&&(ct=Ix(ct));yx(ct[Lo])||Ex(ct,Lo,function(){return this});Wp.exports={IteratorPrototype:ct,BUGGY_SAFARI_ITERATORS:Gp}});var as=m((rV,zp)=>{"use strict";var wx=ce(),Ax=wx("toStringTag"),Yp={};Yp[Ax]="z";zp.exports=String(Yp)==="[object z]"});var cr=m((aV,Kp)=>{"use strict";var Lx=as(),Rx=X(),ss=Ut(),$x=ce(),Mx=$x("toStringTag"),Cx=Object,Dx=ss(function(){return arguments}())==="Arguments",Vx=function(r,e){try{return r[e]}catch{}};Kp.exports=Lx?ss:function(r){var e,t,i;return r===void 0?"Undefined":r===null?"Null":typeof(t=Vx(e=Cx(r),Mx))=="string"?t:Dx?ss(e):(i=ss(e))==="Object"&&Rx(e.callee)?"Arguments":i}});var Jp=m((sV,Xp)=>{"use strict";var Bx=as(),Ox=cr();Xp.exports=Bx?{}.toString:function(){return"[object "+Ox(this)+"]"}});var dr=m((nV,eh)=>{"use strict";var _x=as(),Nx=Qt().f,Fx=vi(),qx=Ge(),Ux=Jp(),Hx=ce(),Zp=Hx("toStringTag");eh.exports=function(r,e,t,i){var a=t?r:r&&r.prototype;a&&(qx(a,Zp)||Nx(a,Zp,{configurable:!0,value:e}),i&&!_x&&Fx(a,"toString",Ux))}});var ih=m((oV,th)=>{"use strict";var jx=Ro().IteratorPrototype,Qx=ko(),Gx=er(),Wx=dr(),Yx=Gt(),zx=function(){return this};th.exports=function(r,e,t,i){var a=e+" Iterator";return r.prototype=Qx(jx,{next:Gx(+!i,t)}),Wx(r,a,!1,!0),Yx[a]=zx,r}});var ah=m((uV,rh)=>{"use strict";var Kx=se(),Xx=tt();rh.exports=function(r,e,t){try{return Kx(Xx(Object.getOwnPropertyDescriptor(r,e)[t]))}catch{}}});var nh=m((lV,sh)=>{"use strict";var Jx=Ce();sh.exports=function(r){return Jx(r)||r===null}});var uh=m((cV,oh)=>{"use strict";var Zx=nh(),eP=String,tP=TypeError;oh.exports=function(r){if(Zx(r))return r;throw new tP("Can't set "+eP(r)+" as a prototype")}});var $o=m((dV,lh)=>{"use strict";var iP=ah(),rP=Ce(),aP=It(),sP=uh();lh.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var r=!1,e={},t;try{t=iP(Object.prototype,"__proto__","set"),t(e,[]),r=e instanceof Array}catch{}return function(a,s){return aP(a),sP(s),rP(a)&&(r?t(a,s):a.__proto__=s),a}}():void 0)});var yh=m((pV,Sh)=>{"use strict";var nP=te(),oP=Me(),ns=Qe(),gh=To(),uP=X(),lP=ih(),ch=Ja(),dh=$o(),cP=dr(),dP=vi(),Mo=Ei(),pP=ce(),ph=Gt(),vh=Ro(),hP=gh.PROPER,mP=gh.CONFIGURABLE,hh=vh.IteratorPrototype,os=vh.BUGGY_SAFARI_ITERATORS,pr=pP("iterator"),mh="keys",hr="values",fh="entries",bh=function(){return this};Sh.exports=function(r,e,t,i,a,s,n){lP(t,e,i);var o=function(v){if(v===a&&p)return p;if(!os&&v&&v in c)return c[v];switch(v){case mh:return function(){return new t(this,v)};case hr:return function(){return new t(this,v)};case fh:return function(){return new t(this,v)}}return function(){return new t(this)}},u=e+" Iterator",l=!1,c=r.prototype,d=c[pr]||c["@@iterator"]||a&&c[a],p=!os&&d||o(a),h=e==="Array"&&c.entries||d,f,b,g;if(h&&(f=ch(h.call(new r)),f!==Object.prototype&&f.next&&(!ns&&ch(f)!==hh&&(dh?dh(f,hh):uP(f[pr])||Mo(f,pr,bh)),cP(f,u,!0,!0),ns&&(ph[u]=bh))),hP&&a===hr&&d&&d.name!==hr&&(!ns&&mP?dP(c,"name",hr):(l=!0,p=function(){return oP(d,this)})),a)if(b={values:o(hr),keys:s?p:o(mh),entries:o(fh)},n)for(g in b)(os||l||!(g in c))&&Mo(c,g,b[g]);else nP({target:e,proto:!0,forced:os||l},b);return(!ns||n)&&c[pr]!==p&&Mo(c,pr,p,{name:a}),ph[e]=p,b}});var Ih=m((hV,Th)=>{"use strict";Th.exports=function(r,e){return{value:r,done:e}}});var Do=m((mV,wh)=>{"use strict";var fP=Ht(),Co=ur(),Eh=Gt(),Ph=vo(),bP=Qt().f,gP=yh(),us=Ih(),vP=Qe(),SP=$e(),kh="Array Iterator",yP=Ph.set,TP=Ph.getterFor(kh);wh.exports=gP(Array,"Array",function(r,e){yP(this,{type:kh,target:fP(r),index:0,kind:e})},function(){var r=TP(this),e=r.target,t=r.index++;if(!e||t>=e.length)return r.target=void 0,us(void 0,!0);switch(r.kind){case"keys":return us(t,!1);case"values":return us(e[t],!1)}return us([t,e[t]],!1)},"values");var xh=Eh.Arguments=Eh.Array;Co("keys");Co("values");Co("entries");if(!vP&&SP&&xh.name!=="values")try{bP(xh,"name",{value:"values"})}catch{}});var Lh=m((fV,Ah)=>{"use strict";var IP=ce(),EP=Gt(),xP=IP("iterator"),PP=Array.prototype;Ah.exports=function(r){return r!==void 0&&(EP.Array===r||PP[xP]===r)}});var Vo=m((bV,$h)=>{"use strict";var kP=cr(),Rh=rr(),wP=hi(),AP=Gt(),LP=ce(),RP=LP("iterator");$h.exports=function(r){if(!wP(r))return Rh(r,RP)||Rh(r,"@@iterator")||AP[kP(r)]}});var Ch=m((gV,Mh)=>{"use strict";var $P=Me(),MP=tt(),CP=it(),DP=ir(),VP=Vo(),BP=TypeError;Mh.exports=function(r,e){var t=arguments.length<2?VP(r):e;if(MP(t))return CP($P(t,r));throw new BP(DP(r)+" is not iterable")}});var Bh=m((vV,Vh)=>{"use strict";var OP=Me(),Dh=it(),_P=rr();Vh.exports=function(r,e,t){var i,a;Dh(r);try{if(i=_P(r,"return"),!i){if(e==="throw")throw t;return t}i=OP(i,r)}catch(s){a=!0,i=s}if(e==="throw")throw t;if(a)throw i;return Dh(i),t}});var cs=m((SV,Fh)=>{"use strict";var NP=gi(),FP=Me(),qP=it(),UP=ir(),HP=Lh(),jP=Ti(),Oh=tr(),QP=Ch(),GP=Vo(),_h=Bh(),WP=TypeError,ls=function(r,e){this.stopped=r,this.result=e},Nh=ls.prototype;Fh.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=NP(e,i),l,c,d,p,h,f,b,g=function(x){return l&&_h(l,"normal",x),new ls(!0,x)},v=function(x){return a?(qP(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=GP(r),!c)throw new WP(UP(r)+" is not iterable");if(HP(c)){for(d=0,p=jP(r);p>d;d++)if(h=v(r[d]),h&&Oh(Nh,h))return h;return new ls(!1)}l=QP(r,c)}for(f=s?r.next:l.next;!(b=FP(f,l)).done;){try{h=v(b.value)}catch(x){_h(l,"throw",x)}if(typeof h=="object"&&h&&Oh(Nh,h))return h}return new ls(!1)}});var Uh=m((yV,qh)=>{"use strict";var YP=$e(),zP=Qt(),KP=er();qh.exports=function(r,e,t){YP?zP.f(r,e,KP(0,t)):r[e]=t}});var Hh=m(()=>{"use strict";var XP=te(),JP=cs(),ZP=Uh();XP({target:"Object",stat:!0},{fromEntries:function(e){var t={};return JP(e,function(i,a){ZP(t,i,a)},{AS_ENTRIES:!0}),t}})});var Qh=m((EV,jh)=>{"use strict";Do();Hh();var ek=mi();jh.exports=ek.Object.fromEntries});var Wh=m((xV,Gh)=>{"use strict";Gh.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 zh=m(()=>{"use strict";Do();var tk=Wh(),ik=Z(),rk=dr(),Yh=Gt();for(ds in tk)rk(ik[ds],ds),Yh[ds]=Yh.Array;var ds});var Xh=m((wV,Kh)=>{"use strict";var ak=Qh();zh();Kh.exports=ak});var Bo=m((AV,Jh)=>{"use strict";var sk=Xh();Jh.exports=sk});var Zh=m(()=>{"use strict"});var Oo=m(($V,em)=>{"use strict";var mr=Z(),nk=jt(),ok=Ut(),ps=function(r){return nk.slice(0,r.length)===r};em.exports=function(){return ps("Bun/")?"BUN":ps("Cloudflare-Workers")?"CLOUDFLARE":ps("Deno/")?"DENO":ps("Node.js/")?"NODE":mr.Bun&&typeof Bun.version=="string"?"BUN":mr.Deno&&typeof Deno.version=="object"?"DENO":ok(mr.process)==="process"?"NODE":mr.window&&mr.document?"BROWSER":"REST"}()});var hs=m((MV,tm)=>{"use strict";var uk=Oo();tm.exports=uk==="NODE"});var rm=m((CV,im)=>{"use strict";var lk=Qt();im.exports=function(r,e,t){return lk.f(r,e,t)}});var nm=m((DV,sm)=>{"use strict";var ck=lt(),dk=rm(),pk=ce(),hk=$e(),am=pk("species");sm.exports=function(r){var e=ck(r);hk&&e&&!e[am]&&dk(e,am,{configurable:!0,get:function(){return this}})}});var um=m((VV,om)=>{"use strict";var mk=tr(),fk=TypeError;om.exports=function(r,e){if(mk(e,r))return r;throw new fk("Incorrect invocation")}});var No=m((BV,lm)=>{"use strict";var bk=se(),gk=X(),_o=ar(),vk=bk(Function.toString);gk(_o.inspectSource)||(_o.inspectSource=function(r){return vk(r)});lm.exports=_o.inspectSource});var qo=m((OV,mm)=>{"use strict";var Sk=se(),yk=le(),cm=X(),Tk=cr(),Ik=lt(),Ek=No(),dm=function(){},pm=Ik("Reflect","construct"),Fo=/^\s*(?:class|function)\b/,xk=Sk(Fo.exec),Pk=!Fo.test(dm),fr=function(e){if(!cm(e))return!1;try{return pm(dm,[],e),!0}catch{return!1}},hm=function(e){if(!cm(e))return!1;switch(Tk(e)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return Pk||!!xk(Fo,Ek(e))}catch{return!0}};hm.sham=!0;mm.exports=!pm||yk(function(){var r;return fr(fr.call)||!fr(Object)||!fr(function(){r=!0})||r})?hm:fr});var bm=m((_V,fm)=>{"use strict";var kk=qo(),wk=ir(),Ak=TypeError;fm.exports=function(r){if(kk(r))return r;throw new Ak(wk(r)+" is not a constructor")}});var Uo=m((NV,vm)=>{"use strict";var gm=it(),Lk=bm(),Rk=hi(),$k=ce(),Mk=$k("species");vm.exports=function(r,e){var t=gm(r).constructor,i;return t===void 0||Rk(i=gm(t)[Mk])?e:Lk(i)}});var ym=m((FV,Sm)=>{"use strict";var Ck=se();Sm.exports=Ck([].slice)});var Im=m((qV,Tm)=>{"use strict";var Dk=TypeError;Tm.exports=function(r,e){if(r<e)throw new Dk("Not enough arguments");return r}});var Ho=m((UV,Em)=>{"use strict";var Vk=jt();Em.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(Vk)});var Jo=m((HV,Mm)=>{"use strict";var De=Z(),Bk=$n(),Ok=gi(),xm=X(),_k=Ge(),$m=le(),Pm=Io(),Nk=ym(),km=Wa(),Fk=Im(),qk=Ho(),Uk=hs(),zo=De.setImmediate,Ko=De.clearImmediate,Hk=De.process,jo=De.Dispatch,jk=De.Function,wm=De.MessageChannel,Qk=De.String,Qo=0,br={},Am="onreadystatechange",gr,Yt,Go,Wo;$m(function(){gr=De.location});var Xo=function(r){if(_k(br,r)){var e=br[r];delete br[r],e()}},Yo=function(r){return function(){Xo(r)}},Lm=function(r){Xo(r.data)},Rm=function(r){De.postMessage(Qk(r),gr.protocol+"//"+gr.host)};(!zo||!Ko)&&(zo=function(e){Fk(arguments.length,1);var t=xm(e)?e:jk(e),i=Nk(arguments,1);return br[++Qo]=function(){Bk(t,void 0,i)},Yt(Qo),Qo},Ko=function(e){delete br[e]},Uk?Yt=function(r){Hk.nextTick(Yo(r))}:jo&&jo.now?Yt=function(r){jo.now(Yo(r))}:wm&&!qk?(Go=new wm,Wo=Go.port2,Go.port1.onmessage=Lm,Yt=Ok(Wo.postMessage,Wo)):De.addEventListener&&xm(De.postMessage)&&!De.importScripts&&gr&&gr.protocol!=="file:"&&!$m(Rm)?(Yt=Rm,De.addEventListener("message",Lm,!1)):Am in km("script")?Yt=function(r){Pm.appendChild(km("script"))[Am]=function(){Pm.removeChild(this),Xo(r)}}:Yt=function(r){setTimeout(Yo(r),0)});Mm.exports={set:zo,clear:Ko}});var Vm=m((jV,Dm)=>{"use strict";var Cm=Z(),Gk=$e(),Wk=Object.getOwnPropertyDescriptor;Dm.exports=function(r){if(!Gk)return Cm[r];var e=Wk(Cm,r);return e&&e.value}});var Zo=m((QV,Om)=>{"use strict";var Bm=function(){this.head=null,this.tail=null};Bm.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}}};Om.exports=Bm});var Nm=m((GV,_m)=>{"use strict";var Yk=jt();_m.exports=/ipad|iphone|ipod/i.test(Yk)&&typeof Pebble<"u"});var qm=m((WV,Fm)=>{"use strict";var zk=jt();Fm.exports=/web0s(?!.*chrome)/i.test(zk)});var Ym=m((YV,Wm)=>{"use strict";var Pi=Z(),Kk=Vm(),Um=gi(),eu=Jo().set,Xk=Zo(),Jk=Ho(),Zk=Nm(),ew=qm(),tu=hs(),Hm=Pi.MutationObserver||Pi.WebKitMutationObserver,jm=Pi.document,Qm=Pi.process,ms=Pi.Promise,au=Kk("queueMicrotask"),xi,iu,ru,fs,Gm;au||(vr=new Xk,Sr=function(){var r,e;for(tu&&(r=Qm.domain)&&r.exit();e=vr.get();)try{e()}catch(t){throw vr.head&&xi(),t}r&&r.enter()},!Jk&&!tu&&!ew&&Hm&&jm?(iu=!0,ru=jm.createTextNode(""),new Hm(Sr).observe(ru,{characterData:!0}),xi=function(){ru.data=iu=!iu}):!Zk&&ms&&ms.resolve?(fs=ms.resolve(void 0),fs.constructor=ms,Gm=Um(fs.then,fs),xi=function(){Gm(Sr)}):tu?xi=function(){Qm.nextTick(Sr)}:(eu=Um(eu,Pi),xi=function(){eu(Sr)}),au=function(r){vr.head||xi(),vr.add(r)});var vr,Sr;Wm.exports=au});var Km=m((zV,zm)=>{"use strict";zm.exports=function(r,e){try{arguments.length===1?console.error(r):console.error(r,e)}catch{}}});var bs=m((KV,Xm)=>{"use strict";Xm.exports=function(r){try{return{error:!1,value:r()}}catch(e){return{error:!0,value:e}}}});var zt=m((XV,Jm)=>{"use strict";var tw=Z();Jm.exports=tw.Promise});var ki=m((JV,rf)=>{"use strict";var iw=Z(),yr=zt(),rw=X(),aw=Zn(),sw=No(),nw=ce(),Zm=Oo(),ow=Qe(),su=Fn(),ef=yr&&yr.prototype,uw=nw("species"),nu=!1,tf=rw(iw.PromiseRejectionEvent),lw=aw("Promise",function(){var r=sw(yr),e=r!==String(yr);if(!e&&su===66||ow&&!(ef.catch&&ef.finally))return!0;if(!su||su<51||!/native code/.test(r)){var t=new yr(function(s){s(1)}),i=function(s){s(function(){},function(){})},a=t.constructor={};if(a[uw]=i,nu=t.then(function(){})instanceof i,!nu)return!0}return!e&&(Zm==="BROWSER"||Zm==="DENO")&&!tf});rf.exports={CONSTRUCTOR:lw,REJECTION_EVENT:tf,SUBCLASSING:nu}});var wi=m((ZV,sf)=>{"use strict";var af=tt(),cw=TypeError,dw=function(r){var e,t;this.promise=new r(function(i,a){if(e!==void 0||t!==void 0)throw new cw("Bad Promise constructor");e=i,t=a}),this.resolve=af(e),this.reject=af(t)};sf.exports.f=function(r){return new dw(r)}});var xf=m(()=>{"use strict";var pw=te(),hw=Qe(),ys=hs(),xt=Z(),$i=Me(),nf=Ei(),of=$o(),mw=dr(),fw=nm(),bw=tt(),Ss=X(),gw=Ce(),vw=um(),Sw=Uo(),pf=Jo().set,du=Ym(),yw=Km(),Tw=bs(),Iw=Zo(),hf=vo(),Ts=zt(),pu=ki(),mf=wi(),Is="Promise",ff=pu.CONSTRUCTOR,Ew=pu.REJECTION_EVENT,xw=pu.SUBCLASSING,ou=hf.getterFor(Is),Pw=hf.set,Ai=Ts&&Ts.prototype,Kt=Ts,gs=Ai,bf=xt.TypeError,uu=xt.document,hu=xt.process,lu=mf.f,kw=lu,ww=!!(uu&&uu.createEvent&&xt.dispatchEvent),gf="unhandledrejection",Aw="rejectionhandled",uf=0,vf=1,Lw=2,mu=1,Sf=2,vs,lf,Rw,cf,yf=function(r){var e;return gw(r)&&Ss(e=r.then)?e:!1},Tf=function(r,e){var t=e.value,i=e.state===vf,a=i?r.ok:r.fail,s=r.resolve,n=r.reject,o=r.domain,u,l,c;try{a?(i||(e.rejection===Sf&&Mw(e),e.rejection=mu),a===!0?u=t:(o&&o.enter(),u=a(t),o&&(o.exit(),c=!0)),u===r.promise?n(new bf("Promise-chain cycle")):(l=yf(u))?$i(l,u,s,n):s(u)):n(t)}catch(d){o&&!c&&o.exit(),n(d)}},If=function(r,e){r.notified||(r.notified=!0,du(function(){for(var t=r.reactions,i;i=t.get();)Tf(i,r);r.notified=!1,e&&!r.rejection&&$w(r)}))},Ef=function(r,e,t){var i,a;ww?(i=uu.createEvent("Event"),i.promise=e,i.reason=t,i.initEvent(r,!1,!0),xt.dispatchEvent(i)):i={promise:e,reason:t},!Ew&&(a=xt["on"+r])?a(i):r===gf&&yw("Unhandled promise rejection",t)},$w=function(r){$i(pf,xt,function(){var e=r.facade,t=r.value,i=df(r),a;if(i&&(a=Tw(function(){ys?hu.emit("unhandledRejection",t,e):Ef(gf,e,t)}),r.rejection=ys||df(r)?Sf:mu,a.error))throw a.value})},df=function(r){return r.rejection!==mu&&!r.parent},Mw=function(r){$i(pf,xt,function(){var e=r.facade;ys?hu.emit("rejectionHandled",e):Ef(Aw,e,r.value)})},Li=function(r,e,t){return function(i){r(e,i,t)}},Ri=function(r,e,t){r.done||(r.done=!0,t&&(r=t),r.value=e,r.state=Lw,If(r,!0))},cu=function(r,e,t){if(!r.done){r.done=!0,t&&(r=t);try{if(r.facade===e)throw new bf("Promise can't be resolved itself");var i=yf(e);i?du(function(){var a={done:!1};try{$i(i,e,Li(cu,a,r),Li(Ri,a,r))}catch(s){Ri(a,s,r)}}):(r.value=e,r.state=vf,If(r,!1))}catch(a){Ri({done:!1},a,r)}}};if(ff&&(Kt=function(e){vw(this,gs),bw(e),$i(vs,this);var t=ou(this);try{e(Li(cu,t),Li(Ri,t))}catch(i){Ri(t,i)}},gs=Kt.prototype,vs=function(e){Pw(this,{type:Is,done:!1,notified:!1,parent:!1,reactions:new Iw,rejection:!1,state:uf,value:void 0})},vs.prototype=nf(gs,"then",function(e,t){var i=ou(this),a=lu(Sw(this,Kt));return i.parent=!0,a.ok=Ss(e)?e:!0,a.fail=Ss(t)&&t,a.domain=ys?hu.domain:void 0,i.state===uf?i.reactions.add(a):du(function(){Tf(a,i)}),a.promise}),lf=function(){var r=new vs,e=ou(r);this.promise=r,this.resolve=Li(cu,e),this.reject=Li(Ri,e)},mf.f=lu=function(r){return r===Kt||r===Rw?new lf(r):kw(r)},!hw&&Ss(Ts)&&Ai!==Object.prototype)){cf=Ai.then,xw||nf(Ai,"then",function(e,t){var i=this;return new Kt(function(a,s){$i(cf,i,a,s)}).then(e,t)},{unsafe:!0});try{delete Ai.constructor}catch{}of&&of(Ai,gs)}pw({global:!0,constructor:!0,wrap:!0,forced:ff},{Promise:Kt});mw(Kt,Is,!1,!0);fw(Is)});var Lf=m((iB,Af)=>{"use strict";var Cw=ce(),kf=Cw("iterator"),wf=!1;try{Pf=0,fu={next:function(){return{done:!!Pf++}},return:function(){wf=!0}},fu[kf]=function(){return this},Array.from(fu,function(){throw 2})}catch{}var Pf,fu;Af.exports=function(r,e){try{if(!e&&!wf)return!1}catch{return!1}var t=!1;try{var i={};i[kf]=function(){return{next:function(){return{done:t=!0}}}},r(i)}catch{}return t}});var bu=m((rB,Rf)=>{"use strict";var Dw=zt(),Vw=Lf(),Bw=ki().CONSTRUCTOR;Rf.exports=Bw||!Vw(function(r){Dw.all(r).then(void 0,function(){})})});var $f=m(()=>{"use strict";var Ow=te(),_w=Me(),Nw=tt(),Fw=wi(),qw=bs(),Uw=cs(),Hw=bu();Ow({target:"Promise",stat:!0,forced:Hw},{all:function(e){var t=this,i=Fw.f(t),a=i.resolve,s=i.reject,n=qw(function(){var o=Nw(t.resolve),u=[],l=0,c=1;Uw(e,function(d){var p=l++,h=!1;c++,_w(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 Cf=m(()=>{"use strict";var jw=te(),Qw=Qe(),Gw=ki().CONSTRUCTOR,vu=zt(),Ww=lt(),Yw=X(),zw=Ei(),Mf=vu&&vu.prototype;jw({target:"Promise",proto:!0,forced:Gw,real:!0},{catch:function(r){return this.then(void 0,r)}});!Qw&&Yw(vu)&&(gu=Ww("Promise").prototype.catch,Mf.catch!==gu&&zw(Mf,"catch",gu,{unsafe:!0}));var gu});var Df=m(()=>{"use strict";var Kw=te(),Xw=Me(),Jw=tt(),Zw=wi(),eA=bs(),tA=cs(),iA=bu();Kw({target:"Promise",stat:!0,forced:iA},{race:function(e){var t=this,i=Zw.f(t),a=i.reject,s=eA(function(){var n=Jw(t.resolve);tA(e,function(o){Xw(n,t,o).then(i.resolve,a)})});return s.error&&a(s.value),i.promise}})});var Vf=m(()=>{"use strict";var rA=te(),aA=wi(),sA=ki().CONSTRUCTOR;rA({target:"Promise",stat:!0,forced:sA},{reject:function(e){var t=aA.f(this),i=t.reject;return i(e),t.promise}})});var Su=m((pB,Bf)=>{"use strict";var nA=it(),oA=Ce(),uA=wi();Bf.exports=function(r,e){if(nA(r),oA(e)&&e.constructor===r)return e;var t=uA.f(r),i=t.resolve;return i(e),t.promise}});var Nf=m(()=>{"use strict";var lA=te(),cA=lt(),Of=Qe(),dA=zt(),_f=ki().CONSTRUCTOR,pA=Su(),hA=cA("Promise"),mA=Of&&!_f;lA({target:"Promise",stat:!0,forced:Of||_f},{resolve:function(e){return pA(mA&&this===hA?dA:this,e)}})});var Ff=m(()=>{"use strict";xf();$f();Cf();Df();Vf();Nf()});var jf=m(()=>{"use strict";var fA=te(),bA=Qe(),Es=zt(),gA=le(),Uf=lt(),Hf=X(),vA=Uo(),qf=Su(),SA=Ei(),Tu=Es&&Es.prototype,yA=!!Es&&gA(function(){Tu.finally.call({then:function(){}},function(){})});fA({target:"Promise",proto:!0,real:!0,forced:yA},{finally:function(r){var e=vA(this,Uf("Promise")),t=Hf(r);return this.then(t?function(i){return qf(e,r()).then(function(){return i})}:r,t?function(i){return qf(e,r()).then(function(){throw i})}:r)}});!bA&&Hf(Es)&&(yu=Uf("Promise").prototype.finally,Tu.finally!==yu&&SA(Tu,"finally",yu,{unsafe:!0}));var yu});var Gf=m((SB,Qf)=>{"use strict";Zh();Ff();jf();var TA=Et();Qf.exports=TA("Promise","finally")});var Yf=m((yB,Wf)=>{"use strict";var IA=Gf();Wf.exports=IA});var xs=m((TB,zf)=>{"use strict";var EA=Yf();zf.exports=EA});var ub=m(()=>{"use strict";var OA=te(),_A=mo().values;OA({target:"Object",stat:!0},{values:function(e){return _A(e)}})});var cb=m((sO,lb)=>{"use strict";ub();var NA=mi();lb.exports=NA.Object.values});var pb=m((nO,db)=>{"use strict";var FA=cb();db.exports=FA});var Ci=m((oO,hb)=>{"use strict";var qA=pb();hb.exports=qA});var Rb=m(()=>{"use strict";var dL=te(),pL=fi(),hL=Ti(),mL=or(),fL=ur();dL({target:"Array",proto:!0},{at:function(e){var t=pL(this),i=hL(t),a=mL(e),s=a>=0?a:i+a;return s<0||s>=i?void 0:t[s]}});fL("at")});var Mb=m((b_,$b)=>{"use strict";Rb();var bL=Et();$b.exports=bL("Array","at")});var Db=m((g_,Cb)=>{"use strict";var gL=Mb();Cb.exports=gL});var Lt=m((v_,Vb)=>{"use strict";var vL=Db();Vb.exports=vL});var Wu=m((rF,bg)=>{"use strict";var tR=Ut();bg.exports=Array.isArray||function(e){return tR(e)==="Array"}});var vg=m((aF,gg)=>{"use strict";var iR=TypeError,rR=9007199254740991;gg.exports=function(r){if(r>rR)throw iR("Maximum allowed index exceeded");return r}});var Tg=m((sF,yg)=>{"use strict";var aR=Wu(),sR=Ti(),nR=vg(),oR=gi(),Sg=function(r,e,t,i,a,s,n,o){for(var u=a,l=0,c=n?oR(n,o):!1,d,p;l<i;)l in t&&(d=c?c(t[l],l,e):t[l],s>0&&aR(d)?(p=sR(d),u=Sg(r,e,d,p,u,s-1)-1):(nR(u+1),r[u]=d),u++),l++;return u};yg.exports=Sg});var Pg=m((nF,xg)=>{"use strict";var Ig=Wu(),uR=qo(),lR=Ce(),cR=ce(),dR=cR("species"),Eg=Array;xg.exports=function(r){var e;return Ig(r)&&(e=r.constructor,uR(e)&&(e===Eg||Ig(e.prototype))?e=void 0:lR(e)&&(e=e[dR],e===null&&(e=void 0))),e===void 0?Eg:e}});var wg=m((oF,kg)=>{"use strict";var pR=Pg();kg.exports=function(r,e){return new(pR(r))(e===0?0:e)}});var Ag=m(()=>{"use strict";var hR=te(),mR=Tg(),fR=tt(),bR=fi(),gR=Ti(),vR=wg();hR({target:"Array",proto:!0},{flatMap:function(e){var t=bR(this),i=gR(t),a;return fR(e),a=vR(t,0),a.length=mR(a,t,t,i,0,1,e,arguments.length>1?arguments[1]:void 0),a}})});var Lg=m(()=>{"use strict";var SR=ur();SR("flatMap")});var $g=m((pF,Rg)=>{"use strict";Ag();Lg();var yR=Et();Rg.exports=yR("Array","flatMap")});var Cg=m((hF,Mg)=>{"use strict";var TR=$g();Mg.exports=TR});var Yu=m((mF,Dg)=>{"use strict";var IR=Cg();Dg.exports=IR});var Or=m((fF,Vg)=>{"use strict";var ER=cr(),xR=String;Vg.exports=function(r){if(ER(r)==="Symbol")throw new TypeError("Cannot convert a Symbol value to a string");return xR(r)}});var zu=m((bF,Bg)=>{"use strict";Bg.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 Ng=m((gF,_g)=>{"use strict";var PR=se(),kR=It(),wR=Or(),Xu=zu(),Og=PR("".replace),AR=RegExp("^["+Xu+"]+"),LR=RegExp("(^|[^"+Xu+"])["+Xu+"]+$"),Ku=function(r){return function(e){var t=wR(kR(e));return r&1&&(t=Og(t,AR,"")),r&2&&(t=Og(t,LR,"$1")),t}};_g.exports={start:Ku(1),end:Ku(2),trim:Ku(3)}});var Hg=m((vF,Ug)=>{"use strict";var RR=To().PROPER,$R=le(),Fg=zu(),qg="\u200B\x85\u180E";Ug.exports=function(r){return $R(function(){return!!Fg[r]()||qg[r]()!==qg||RR&&Fg[r].name!==r})}});var Ju=m((SF,jg)=>{"use strict";var MR=Ng().start,CR=Hg();jg.exports=CR("trimStart")?function(){return MR(this)}:"".trimStart});var Gg=m(()=>{"use strict";var DR=te(),Qg=Ju();DR({target:"String",proto:!0,name:"trimStart",forced:"".trimLeft!==Qg},{trimLeft:Qg})});var Yg=m(()=>{"use strict";Gg();var VR=te(),Wg=Ju();VR({target:"String",proto:!0,name:"trimStart",forced:"".trimStart!==Wg},{trimStart:Wg})});var Kg=m((xF,zg)=>{"use strict";Yg();var BR=Et();zg.exports=BR("String","trimLeft")});var Jg=m((PF,Xg)=>{"use strict";var OR=Kg();Xg.exports=OR});var ev=m((kF,Zg)=>{"use strict";var _R=Jg();Zg.exports=_R});var bv=m(()=>{"use strict"});var gv=m(()=>{"use strict"});var Sv=m((n1,vv)=>{"use strict";var o$=Ce(),u$=Ut(),l$=ce(),c$=l$("match");vv.exports=function(r){var e;return o$(r)&&((e=r[c$])!==void 0?!!e:u$(r)==="RegExp")}});var Tv=m((o1,yv)=>{"use strict";var d$=it();yv.exports=function(){var r=d$(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 xv=m((u1,Ev)=>{"use strict";var p$=Me(),h$=Ge(),m$=tr(),f$=Tv(),Iv=RegExp.prototype;Ev.exports=function(r){var e=r.flags;return e===void 0&&!("flags"in Iv)&&!h$(r,"flags")&&m$(Iv,r)?p$(f$,r):e}});var kv=m((l1,Pv)=>{"use strict";var nl=se(),b$=fi(),g$=Math.floor,al=nl("".charAt),v$=nl("".replace),sl=nl("".slice),S$=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,y$=/\$([$&'`]|\d{1,2})/g;Pv.exports=function(r,e,t,i,a,s){var n=t+r.length,o=i.length,u=y$;return a!==void 0&&(a=b$(a),u=S$),v$(s,u,function(l,c){var d;switch(al(c,0)){case"$":return"$";case"&":return r;case"`":return sl(e,0,t);case"'":return sl(e,n);case"<":d=a[sl(c,1,-1)];break;default:var p=+c;if(p===0)return l;if(p>o){var h=g$(p/10);return h===0?l:h<=o?i[h-1]===void 0?al(c,1):i[h-1]+al(c,1):l}d=i[p-1]}return d===void 0?"":d})}});var Lv=m(()=>{"use strict";var T$=te(),I$=Me(),ul=se(),wv=It(),E$=X(),x$=hi(),P$=Sv(),Ni=Or(),k$=rr(),w$=xv(),A$=kv(),L$=ce(),R$=Qe(),$$=L$("replace"),M$=TypeError,ol=ul("".indexOf),C$=ul("".replace),Av=ul("".slice),D$=Math.max;T$({target:"String",proto:!0},{replaceAll:function(e,t){var i=wv(this),a,s,n,o,u,l,c,d,p,h,f=0,b="";if(!x$(e)){if(a=P$(e),a&&(s=Ni(wv(w$(e))),!~ol(s,"g")))throw new M$("`.replaceAll` does not allow non-global regexes");if(n=k$(e,$$),n)return I$(n,e,i,t);if(R$&&a)return C$(Ni(i),e,t)}for(o=Ni(i),u=Ni(e),l=E$(t),l||(t=Ni(t)),c=u.length,d=D$(1,c),p=ol(o,u);p!==-1;)h=l?Ni(t(u,p,o)):A$(u,o,p,[],void 0,t),b+=Av(o,f,p)+h,f=p+c,p=p+d>o.length?-1:ol(o,u,p+d);return f<o.length&&(b+=Av(o,f)),b}})});var $v=m((p1,Rv)=>{"use strict";bv();gv();Lv();var V$=Et();Rv.exports=V$("String","replaceAll")});var Cv=m((h1,Mv)=>{"use strict";var B$=$v();Mv.exports=B$});var Vv=m((m1,Dv)=>{"use strict";var O$=Cv();Dv.exports=O$});var Ov=m((f1,Bv)=>{"use strict";var _$=or(),N$=Or(),F$=It(),q$=RangeError;Bv.exports=function(e){var t=N$(F$(this)),i="",a=_$(e);if(a<0||a===1/0)throw new q$("Wrong number of repetitions");for(;a>0;(a>>>=1)&&(t+=t))a&1&&(i+=t);return i}});var Uv=m((b1,qv)=>{"use strict";var Fv=se(),U$=so(),_v=Or(),H$=Ov(),j$=It(),Q$=Fv(H$),G$=Fv("".slice),W$=Math.ceil,Nv=function(r){return function(e,t,i){var a=_v(j$(e)),s=U$(t),n=a.length,o=i===void 0?" ":_v(i),u,l;return s<=n||o===""?a:(u=s-n,l=Q$(o,W$(u/o.length)),l.length>u&&(l=G$(l,0,u)),r?a+l:l+a)}};qv.exports={start:Nv(!1),end:Nv(!0)}});var jv=m((g1,Hv)=>{"use strict";var Y$=jt();Hv.exports=/Version\/10(?:\.\d+){1,2}(?: [\w./]+)?(?: Mobile\/\w+)? Safari\//.test(Y$)});var Qv=m(()=>{"use strict";var z$=te(),K$=Uv().start,X$=jv();z$({target:"String",proto:!0,forced:X$},{padStart:function(e){return K$(this,e,arguments.length>1?arguments[1]:void 0)}})});var Wv=m((y1,Gv)=>{"use strict";Qv();var J$=Et();Gv.exports=J$("String","padStart")});var zv=m((T1,Yv)=>{"use strict";var Z$=Wv();Yv.exports=Z$});var Xv=m((I1,Kv)=>{"use strict";var eM=zv();Kv.exports=eM});var rc="2.0.131-dev.abb2b2b1.0";var Re=(a=>(a.STOPPED="stopped",a.READY="ready",a.PLAYING="playing",a.PAUSED="paused",a))(Re||{}),ut=(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))(ut||{});var Ha=(a=>(a.NOT_AVAILABLE="NOT_AVAILABLE",a.AVAILABLE="AVAILABLE",a.CONNECTING="CONNECTING",a.CONNECTED="CONNECTED",a))(Ha||{}),An=(i=>(i.HTTP1="http1",i.HTTP2="http2",i.QUIC="quic",i))(An||{});var Ln=(n=>(n.NONE="none",n.INLINE="inline",n.FULLSCREEN="fullscreen",n.SECOND_SCREEN="second_screen",n.PIP="pip",n.INVISIBLE="invisible",n))(Ln||{}),ja=(i=>(i.TRAFFIC_SAVING="traffic_saving",i.HIGH_QUALITY="high_quality",i.UNKNOWN="unknown",i))(ja||{});var My=M(_e(),1);import{assertNever as tp,assertNonNullable as cE,isNonNullable as za,ValueSubject as oo,Subject as dE,Subscription as pE,merge as hE,observableFrom as mE,fromEvent as Xd,map as Jd,tap as Zd,filterChanged as fE,isNullable as uo,ErrorCategory as ep}from"@vkontakte/videoplayer-shared";var Kd=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 Ka=class{constructor(e){this.connection$=new oo(void 0);this.castState$=new oo("NOT_AVAILABLE");this.errorEvent$=new dE;this.realCastState$=new oo("NOT_AVAILABLE");this.subscription=new pE;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=za(window.chrome?.cast),a=!!window.__onGCastApiAvailable;i?this.initializeCastApi():(window.__onGCastApiAvailable=s=>{delete window.__onGCastApiAvailable,s&&!this.isDestroyed&&this.initializeCastApi()},a||Kd("https://www.gstatic.com/cv/js/sender/v1/cast_sender.js?loadCastFramework=1").catch(()=>this.errorEvent$.next({id:"ChromecastLoading",category:ep.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(){za(this.connection$.getValue())?this.disconnect():this.connect()}setVolume(e){let t=this.connection$.getValue();uo(t)||(t.remotePlayer.volumeLevel=e,t.remotePlayerController.setVolumeLevel())}setMuted(e){let t=this.connection$.getValue();uo(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(Xd(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 tp(a.sessionState)}})).add(hE(Xd(i,cast.framework.CastContextEventType.CAST_STATE_CHANGED).pipe(Zd(a=>{this.log({message:`[cast.framework.RemotePlayerEventType.CAST_STATE_CHANGED]: ${JSON.stringify(a)}`})}),Jd(a=>a.castState)),mE([i.getCastState()])).pipe(fE(),Jd(bE),Zd(a=>{this.log({message:`realCastState$: ${a}`})})).subscribe(this.realCastState$)).add(this.realCastState$.subscribe(a=>{let s=a==="CONNECTED",n=za(this.connection$.getValue());if(s&&!n){let o=i.getCurrentSession();cE(o);let u=o.getCastDevice(),l=o.getMediaSession()?.media?.contentId;(uo(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"?za(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:ep.EXTERNAL_API,message:"[initializeCastApi] failed",thrown:a})}}},bE=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 tp(r)}};var Wl=M(_e(),1),hy=M(Ii(),1),my=M(Bo(),1);var sb=M(xs(),1);import{assertNever as Kf}from"@vkontakte/videoplayer-shared";var de=(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:Kf(t)}return r},Ps=(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:Kf(e)}};var E=(r,e,t=!1)=>{let i=r.getTransition();(t||!i||i.to===e)&&r.setState(e)};import{isNonNullable as xA,Subject as ks,merge as Xf}from"@vkontakte/videoplayer-shared";var C=class{constructor(e){this.transitionStarted$=new ks;this.transitionEnded$=new ks;this.transitionUpdated$=new ks;this.forceChanged$=new ks;this.stateChangeStarted$=Xf(this.transitionStarted$,this.transitionUpdated$);this.stateChangeEnded$=Xf(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||xA(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 PA}from"@vkontakte/videoplayer-shared";var Jf=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 PA(r)}};import{assertNever as Mi,assertNonNullable as Xt,debounce as Zf,ErrorCategory as eb,fromEvent as Jt,isNonNullable as tb,map as ib,merge as rb,observableFrom as kA,Subject as wA,Subscription as Iu,timeout as AA,getHighestQuality as LA}from"@vkontakte/videoplayer-shared";var RA=5,$A=5,MA=500,ab=7e3,Tr=class{constructor(e){this.subscription=new Iu;this.loadMediaTimeoutSubscription=new Iu;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:Mi(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:Mi(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:Mi(e)}break}default:Mi(i)}}};this.params=e,this.log=this.params.dependencies.logger.createComponentLog("ChromecastProvider"),this.log({message:`constructor, format: ${e.format}`}),this.params.output.isLive$.next(Jf(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 Iu;this.subscription.add(e),this.subscription.add(rb(this.videoState.stateChangeStarted$.pipe(ib(a=>`stateChangeStarted$ ${JSON.stringify(a)}`)),this.videoState.stateChangeEnded$.pipe(ib(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 wA;e.add(a.pipe(Zf(MA)).subscribe(()=>{this.params.output.seekedEvent$.next()}));let s=NaN;e.add(Jt(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)>RA)&&a.next(o),s=o})),e.add(Jt(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.DURATION_CHANGED).subscribe(n=>{this.logRemoteEvent(n),this.params.output.duration$.next(n.value)}))}t(Jt(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_MEDIA_LOADED_CHANGED),a=>{this.logRemoteEvent(a),a.value?this.handleRemoteReady():(this.handleRemoteStop(),e.unsubscribe())}),t(Jt(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_PAUSED_CHANGED),a=>{this.logRemoteEvent(a),a.value?this.handleRemotePause():this.handleRemotePlay()}),t(Jt(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<$A&&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:Mi(n)}}),t(Jt(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.VOLUME_LEVEL_CHANGED),a=>{this.logRemoteEvent(a),this.handleRemoteVolumeChange({volume:a.value})}),t(Jt(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_MUTED_CHANGED),a=>{this.logRemoteEvent(a),this.handleRemoteVolumeChange({muted:a.value})});let i=rb(this.params.desiredState.playbackState.stateChangeStarted$,this.params.desiredState.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,kA(["init"])).pipe(Zf(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];Xt(l);let c=LA(Object.keys(l));Xt(c);let d=l[c];Xt(d),i=d,a="video/mp4",s=chrome.cast.media.StreamType.BUFFERED;break}case"HLS":case"HLS_ONDEMAND":{let l=t[e];Xt(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];Xt(l),i=l.url,a="application/dash+xml",s=chrome.cast.media.StreamType.BUFFERED;break}case"DASH_LIVE_CMAF":{let l=t[e];Xt(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];Xt(l),i=de(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:eb.VIDEO_PIPELINE,message:l,thrown:c}),c}case"DASH":case"DASH_LIVE_WEBM":throw new Error(`${e} is no longer supported`);default:return Mi(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 tb(o)&&(n.metadata.title=o),tb(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(AA(ab).subscribe(()=>s(`timeout(${ab})`)))});(0,sb.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:eb.VIDEO_PIPELINE,message:s,thrown:a})}),()=>{this.loadMediaTimeoutSubscription.unsubscribe()})}logRemoteEvent(e){this.log({message:`[remoteEvent] ${JSON.stringify(e)}`})}};var Qu=M(_e(),1);import{clearVideoElement as ob}from"@vkontakte/videoplayer-shared";import{clearVideoElement as CA}from"@vkontakte/videoplayer-shared";var nb=r=>{try{r.pause(),r.playbackRate=0,CA(r),r.remove()}catch(e){console.error(e)}};import{fromEvent as DA,Subscription as VA}from"@vkontakte/videoplayer-shared";var Eu=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)}},xu=window.WeakMap?new WeakMap:new Eu,Pu=window.WeakMap?new WeakMap:new Map,BA=(r,e=20)=>{let t=0;return DA(r,"ratechange").subscribe(i=>{t++,t>=e&&(r.currentTime=r.currentTime,t=0)})},Ie=(r,{audioVideoSyncRate:e,disableYandexPiP:t})=>{let i=r.querySelector("video"),a=!!i;i?ob(i):(i=document.createElement("video"),r.appendChild(i)),xu.set(i,a);let s=new VA;return s.add(BA(i,e)),Pu.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},Ee=r=>{Pu.get(r)?.unsubscribe(),Pu.delete(r);let t=xu.get(r);xu.delete(r),t?ob(r):nb(r)};var wu=M(Ci(),1);import{assertNonNullable as Ir,isNonNullable as at,isNullable as jA,fromEvent as Di,merge as mb,observableFrom as fb,filterChanged as bb,map as Er,Subject as gb,Subscription as QA,ValueSubject as GA,ErrorCategory as WA}from"@vkontakte/videoplayer-shared";import{isNonNullable as ku,isNullable as UA,Subscription as HA}from"@vkontakte/videoplayer-shared";var ws=(r,e,t,{equal:i=(n,o)=>n===o,changed$:a,onError:s}={})=>{let n=r.getState(),o=e(),u=UA(a),l=new HA;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},rt=(r,e,t)=>ws(e,()=>r.loop,i=>{ku(i)&&(r.loop=i)},{onError:t}),xe=(r,e,t,i)=>ws(e,()=>({muted:r.muted,volume:r.volume}),a=>{ku(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}),Ne=(r,e,t,i)=>ws(e,()=>r.playbackRate,a=>{ku(a)&&(r.playbackRate=a)},{changed$:t,onError:i}),Pt=ws;var YA=r=>["__",r.language,r.label].join("|"),zA=(r,e)=>{if(r.id===e)return!0;let[t,i,a]=e.split("|");return r.language===i&&r.label===a},Au=class r{constructor(e){this.available$=new gb;this.current$=new GA(void 0);this.error$=new gb;this.subscription=new QA;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:WA.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(Pt(t.internalTextTracks,()=>(0,wu.default)(this.internalTracks),s=>{at(s)&&this.setInternal(s)},{equal:(s,n)=>at(s)&&at(n)&&s.length===n.length&&s.every(({id:o},u)=>o===n[u].id),changed$:this.available$.pipe(Er(s=>s.filter(({type:n})=>n==="internal"))),onError:a})),this.subscription.add(Pt(t.externalTextTracks,()=>(0,wu.default)(this.externalTracks),s=>{at(s)&&this.setExternal(s)},{equal:(s,n)=>at(s)&&at(n)&&s.length===n.length&&s.every(({id:o},u)=>o===n[u].id),changed$:this.available$.pipe(Er(s=>s.filter(({type:n})=>n==="external"))),onError:a})),this.subscription.add(Pt(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(Pt(t.textTrackCuesSettings,()=>({}),()=>{if(this.video)for(let s of this.htmlTextTracksAsArray())this.applyCueSettings(s.cues),this.applyCueSettings(s.activeCues)}))}subscribe(){Ir(this.video);let{textTracks:e}=this.video;this.subscription.add(Di(e,"addtrack").subscribe(()=>{let i=this.current$.getValue();i&&this.select(i)})),this.subscription.add(mb(Di(e,"addtrack"),Di(e,"removetrack"),fb(["init"])).pipe(Er(()=>this.htmlTextTracksAsArray().map(i=>this.htmlTextTrackToITextTrack(i))),bb((i,a)=>i.length===a.length&&i.every(({id:s},n)=>s===a[n].id))).subscribe(this.available$)),this.subscription.add(mb(Di(e,"change"),fb(["init"])).pipe(Er(()=>this.htmlTextTracksAsArray().find(({mode:i})=>i==="showing")),Er(i=>i&&this.htmlTextTrackToITextTrack(i).id),bb()).subscribe(this.current$));let t=i=>this.applyCueSettings(i.target?.activeCues??null);this.subscription.add(Di(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(Di(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;at(t.align)&&(a.align=t.align),at(t.position)&&(a.position=t.position),at(t.size)&&(a.size=t.size),at(t.line)&&(a.line=t.line)}}htmlTextTracksAsArray(e=!1){Ir(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:YA(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){Ir(this.video);for(let t of this.htmlTextTracksAsArray(!0))t.mode="showing";for(let t of this.htmlTextTracksAsArray(!0))(jA(e)||!zA(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){Ir(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){Ir(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)}},Fe=Au;var Zt=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 vb=r=>{let e=r;for(;!(e instanceof Document)&&!(e instanceof ShadowRoot)&&e!==null;)e=e?.parentNode;return e??void 0},Lu=r=>{let e=vb(r);return!!(e&&e.fullscreenElement&&e.fullscreenElement===r)},Sb=r=>{let e=vb(r);return!!(e&&e.pictureInPictureElement&&e.pictureInPictureElement===r)};import{fromEvent as Pe,map as kt,merge as $u,filterChanged as aL,isNonNullable as Ab,Subject as sL,filter as Pr,mapTo as Mu,combine as nL,once as oL,throttle as uL,ErrorCategory as lL,ValueSubject as Lb,Subscription as cL}from"@vkontakte/videoplayer-shared";var KA=3,yb=(r,e,t=KA)=>{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 As=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 Tb=M(_e(),1);var xr=()=>/Mobile|mini|Fennec|Android|iP(ad|od|hone)/.test(navigator.appVersion??navigator.userAgent)||navigator?.userAgentData?.mobile;var Ls=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,Tb.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=xr()}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 Rs=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 Ye=()=>window.ManagedMediaSource||window.MediaSource,$s=()=>!!(window.ManagedMediaSource&&window.ManagedSourceBuffer?.prototype?.appendBuffer),Ib=()=>!!(window.MediaSource&&window.SourceBuffer?.prototype?.appendBuffer),Eb=()=>window.ManagedMediaSource?new ManagedMediaSource:new MediaSource;var XA=document.createElement("video"),JA='video/mp4; codecs="avc1.42000a,mp4a.40.2"',ZA='video/mp4; codecs="hev1.1.6.L93.B0"',xb='video/webm; codecs="vp09.00.10.08"',Pb='video/webm; codecs="av01.0.00M.08"',eL='audio/mp4; codecs="mp4a.40.2"',tL='audio/webm; codecs="opus"',kb,iL=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:Pb}}),window.navigator.mediaCapabilities.decodingInfo({...r,video:{...r.video,contentType:xb}})]);kb={DASH_WEBM_AV1:e,DASH_WEBM:t}};iL().catch(r=>{console.log(XA),console.error(r)});var Ms=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 kb}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:$s(),mse:Ib(),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=!!Ye()?.isTypeSupported?.(JA),t=!!Ye()?.isTypeSupported?.(ZA),i=!!Ye()?.isTypeSupported?.(eL);this._codecs={h264:e,h265:t,vp9:!!Ye()?.isTypeSupported?.(xb),av1:!!Ye()?.isTypeSupported?.(Pb),aac:i,opus:!!Ye()?.isTypeSupported?.(tL),mpeg:(e||t)&&i},this._nativeHlsSupported=this._protocols.hls&&this._containers.mp4}catch(e){console.error(e)}this.destroyVideoElement()}destroyVideoElement(){if(!this._video)return;if(this._video.pause(),this._video.currentTime=0,this._video.removeAttribute("src"),this._video.src="",this._video.load(),this._video.remove){this._video.remove(),this._video=null;return}this._video.parentNode&&this._video.parentNode.removeChild(this._video);let e=this._video.cloneNode(!1);this._video.parentNode?.replaceChild(e,this._video),this._video=null}};var wb="audio/mpeg",Cs=class{supportMp3(){return this._codecs.mp3&&this._containers.mpeg}detect(){this._audio=document.createElement("audio");try{this._containers={mpeg:!!this._audio.canPlayType?.(wb)},this._codecs={mp3:!!Ye()?.isTypeSupported?.(wb)}}catch(e){console.error(e)}this.destroyAudioElement()}destroyAudioElement(){if(!this._audio)return;if(this._audio.pause(),this._audio.currentTime=0,this._audio.removeAttribute("src"),this._audio.src="",this._audio.load(),this._audio.remove){this._audio.remove(),this._audio=null;return}this._audio.parentNode&&this._audio.parentNode.removeChild(this._audio);let e=this._audio.cloneNode(!1);this._audio.parentNode?.replaceChild(e,this._audio),this._audio=null}};import{ValueSubject as rL}from"@vkontakte/videoplayer-shared";var Ru=class{constructor(){this.isInited$=new rL(!1);this._displayChecker=new Rs,this._deviceChecker=new Ls(this._displayChecker),this._browserChecker=new As,this._videoChecker=new Ms(this._deviceChecker,this._browserChecker),this._audioChecker=new Cs,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 Ru;var ke=r=>{let e=S=>Pe(r,S).pipe(Mu(void 0)),t=new cL,i=()=>t.unsubscribe(),s=$u(...["waiting","pause","canplay","play","canplaythrough","playing","seeking","seeked","ended"].map(S=>Pe(r,S))).pipe(kt(S=>S.type==="ended"?r.readyState<2:r.readyState<3),aL()),n=$u(Pe(r,"progress"),Pe(r,"timeupdate")).pipe(kt(()=>yb(r.buffered,r.currentTime))),o=O.browser.isSafari?nL({play:e("play").pipe(oL()),playing:e("playing")}).pipe(Mu(void 0)):e("playing"),u=Pe(r,"volumechange").pipe(kt(()=>({muted:r.muted,volume:r.volume}))),l=Pe(r,"ratechange").pipe(kt(()=>r.playbackRate)),c=Pe(r,"error").pipe(Pr(()=>!!(r.error||r.played.length)),kt(()=>{let S=r.error;return{id:S?`MediaError#${S.code}`:"HtmlVideoError",category:lL.VIDEO_PIPELINE,message:S?S.message:"Error event from HTML video element",thrown:r.error??void 0}})),d=Pe(r,"timeupdate").pipe(kt(()=>r.currentTime)),p=new sL,h=.3,f;t.add(d.subscribe(S=>{r.loop&&Ab(f)&&Ab(S)&&f>=r.duration-h&&S<=h&&p.next(f),f=S}));let b=e("pause").pipe(Pr(()=>!r.error&&f!==r.duration)),g=Pe(r,"enterpictureinpicture"),v=Pe(r,"leavepictureinpicture"),x=new Lb(Sb(r));t.add(g.subscribe(()=>x.next(!0))),t.add(v.subscribe(()=>x.next(!1)));let T=new Lb(Lu(r)),P=Pe(r,"fullscreenchange");t.add(P.pipe(kt(()=>Lu(r))).subscribe(T));let I=.1,V=1e3,B=Pe(r,"timeupdate").pipe(Pr(S=>r.duration-r.currentTime<I)),F=$u(B.pipe(Pr(S=>!r.loop)),Pe(r,"ended")).pipe(uL(V),Mu(void 0)),N=B.pipe(Pr(S=>r.loop));return{playing$:o,pause$:b,canplay$:e("canplay"),ended$:F,looped$:p,loopExpected$:N,error$:c,seeked$:e("seeked"),seeking$:e("seeking"),progress$:e("progress"),loadStart$:e("loadstart"),loadedMetadata$:e("loadedmetadata"),loadedData$:e("loadeddata"),timeUpdate$:d,durationChange$:Pe(r,"durationchange").pipe(kt(()=>r.duration)),isBuffering$:s,currentBuffer$:n,volumeState$:u,playbackRateState$:l,inPiP$:x,inFullscreen$:T,enterPip$:g,leavePip$:v,destroy:i}};import{VideoQuality as wt}from"@vkontakte/videoplayer-shared";var At=r=>{switch(r){case"mobile":return wt.Q_144P;case"lowest":return wt.Q_240P;case"low":return wt.Q_360P;case"sd":case"medium":return wt.Q_480P;case"hd":case"high":return wt.Q_720P;case"fullhd":case"full":return wt.Q_1080P;case"quadhd":case"quad":return wt.Q_1440P;case"ultrahd":case"ultra":return wt.Q_2160P}};var Rt=M(Lt(),1),Qb=M(_e(),1),Bs=M(Ii(),1);import{isNonNullable as ge,isNullable as qb,now as Gb,isHigher as Ub,isHigherOrEqual as Bu,isInvariantQuality as Hb,isLowerOrEqual as Ou,videoSizeToQuality as TL,assertNotEmptyArray as Wb,assertNonNullable as IL}from"@vkontakte/videoplayer-shared";var Cu=!1,pt={},Bb=r=>{Cu=r},Ob=()=>{pt={}},_b=r=>{r(pt)},kr=(r,e)=>{Cu&&(pt.meta=pt.meta??{},pt.meta[r]=e)},be=class{constructor(e){this.name=e}next(e){if(!Cu)return;pt.series=pt.series??{};let t=pt.series[this.name]??[];t.push([Date.now(),e]),pt.series[this.name]=t}};import{isHigher as SL,isHigherOrEqual as x_,isLower as Nb,isLowerOrEqual as P_,isNonNullable as Ds,isNullable as yL,videoHeightToQuality as Vs}from"@vkontakte/videoplayer-shared";function Du({limits:r,highQualityLimit:e,trafficSavingLimit:t}){return!r.max&&r.min===e?"high_quality":!r.min&&r.max===t?"traffic_saving":"unknown"}function Vu({limits:r,highQualityLimit:e,trafficSavingLimit:t}){return!!r&&Du({limits:r,highQualityLimit:e,trafficSavingLimit:t})==="high_quality"}function wr({limits:r,highestAvailableQuality:e,lowestAvailableQuality:t}){return yL(r)||Ds(r.min)&&Ds(r.max)&&Nb(r.max,r.min)||Ds(r.min)&&e&&SL(r.min,e)||Ds(r.max)&&t&&Nb(r.max,t)}function Fb({limits:r,highestAvailableHeight:e,lowestAvailableHeight:t}){return wr({limits:{max:r?.max?Vs(r.max):void 0,min:r?.min?Vs(r.min):void 0},highestAvailableQuality:e?Vs(e):void 0,lowestAvailableQuality:t?Vs(t):void 0})}var EL=new be("best_bitrate"),Yb=(r,e,t)=>(e-t)*Math.pow(2,-10*r)+t;var _u=r=>(e,t)=>r*(Number(e.bitrate)-Number(t.bitrate)),Ar=class{constructor(){this.history={}}recordSelection(e){this.history[e.id]=Gb()}recordSwitch(e){this.last=e}clear(){this.last=void 0,this.history={}}},zb='Assertion "ABR Tracks is empty array" failed',Os=(r,e,t,i)=>{let a=[...e].sort(_u(1)),s=[...t].sort(_u(1)),n=s.filter(u=>ge(u.bitrate)&&ge(r.bitrate)?r.bitrate/u.bitrate>i:!0),o=(0,Rt.default)(s,Math.round(s.length*a.indexOf(r)/(a.length+1)))??(0,Rt.default)(s,-1);return o&&(0,Qb.default)(n,o)?o:n.length?(0,Rt.default)(n,-1):(0,Rt.default)(s,0)},jb=r=>"quality"in r,Kb=(r,e,t,i)=>{let a=ge(i?.last?.bitrate)&&ge(t?.bitrate)&&i.last.bitrate<t.bitrate?r.trackCooldownIncreaseQuality:r.trackCooldownDecreaseQuality,s=t&&i&&i.history[t.id]&&Gb()-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=jb(n)?"video":"audio",u=jb(n)?n.quality:n.bitrate;return e({message:`
6
+ var Px=Object.create;var xp=Object.defineProperty;var wx=Object.getOwnPropertyDescriptor;var Ax=Object.getOwnPropertyNames;var kx=Object.getPrototypeOf,Rx=Object.prototype.hasOwnProperty;var m=(s,e)=>()=>(e||s((e={exports:{}}).exports,e),e.exports);var Lx=(s,e,t,i)=>{if(e&&typeof e=="object"||typeof e=="function")for(let r of Ax(e))!Rx.call(s,r)&&r!==t&&xp(s,r,{get:()=>e[r],enumerable:!(i=wx(e,r))||i.enumerable});return s};var C=(s,e,t)=>(t=s!=null?Px(kx(s)):{},Lx(e||!s||!s.__esModule?xp(t,"default",{value:s,enumerable:!0}):t,s));var ve=m((Bu,Pp)=>{"use strict";var Jr=function(s){return s&&s.Math===Math&&s};Pp.exports=Jr(typeof globalThis=="object"&&globalThis)||Jr(typeof window=="object"&&window)||Jr(typeof self=="object"&&self)||Jr(typeof global=="object"&&global)||Jr(typeof Bu=="object"&&Bu)||function(){return this}()||Function("return this")()});var $e=m((XV,wp)=>{"use strict";wp.exports=function(s){try{return!!s()}catch{return!0}}});var Zr=m((JV,Ap)=>{"use strict";var Mx=$e();Ap.exports=!Mx(function(){var s=function(){}.bind();return typeof s!="function"||s.hasOwnProperty("prototype")})});var Du=m((ZV,Mp)=>{"use strict";var $x=Zr(),Lp=Function.prototype,kp=Lp.apply,Rp=Lp.call;Mp.exports=typeof Reflect=="object"&&Reflect.apply||($x?Rp.bind(kp):function(){return Rp.apply(kp,arguments)})});var ke=m((eO,Dp)=>{"use strict";var $p=Zr(),Bp=Function.prototype,Cu=Bp.call,Bx=$p&&Bp.bind.bind(Cu,Cu);Dp.exports=$p?Bx:function(s){return function(){return Cu.apply(s,arguments)}}});var Ri=m((tO,Vp)=>{"use strict";var Cp=ke(),Dx=Cp({}.toString),Cx=Cp("".slice);Vp.exports=function(s){return Cx(Dx(s),8,-1)}});var Vu=m((iO,Op)=>{"use strict";var Vx=Ri(),Ox=ke();Op.exports=function(s){if(Vx(s)==="Function")return Ox(s)}});var me=m((rO,_p)=>{"use strict";var Ou=typeof document=="object"&&document.all;_p.exports=typeof Ou>"u"&&Ou!==void 0?function(s){return typeof s=="function"||s===Ou}:function(s){return typeof s=="function"}});var dt=m((sO,Fp)=>{"use strict";var _x=$e();Fp.exports=!_x(function(){return Object.defineProperty({},1,{get:function(){return 7}})[1]!==7})});var pt=m((aO,Np)=>{"use strict";var Fx=Zr(),Tn=Function.prototype.call;Np.exports=Fx?Tn.bind(Tn):function(){return Tn.apply(Tn,arguments)}});var _u=m(Hp=>{"use strict";var Up={}.propertyIsEnumerable,qp=Object.getOwnPropertyDescriptor,Nx=qp&&!Up.call({1:2},1);Hp.f=Nx?function(e){var t=qp(this,e);return!!t&&t.enumerable}:Up});var es=m((oO,jp)=>{"use strict";jp.exports=function(s,e){return{enumerable:!(s&1),configurable:!(s&2),writable:!(s&4),value:e}}});var Gp=m((uO,zp)=>{"use strict";var Ux=ke(),qx=$e(),Hx=Ri(),Fu=Object,jx=Ux("".split);zp.exports=qx(function(){return!Fu("z").propertyIsEnumerable(0)})?function(s){return Hx(s)==="String"?jx(s,""):Fu(s)}:Fu});var tr=m((lO,Qp)=>{"use strict";Qp.exports=function(s){return s==null}});var ci=m((cO,Wp)=>{"use strict";var zx=tr(),Gx=TypeError;Wp.exports=function(s){if(zx(s))throw new Gx("Can't call method on "+s);return s}});var Li=m((dO,Yp)=>{"use strict";var Qx=Gp(),Wx=ci();Yp.exports=function(s){return Qx(Wx(s))}});var ht=m((pO,Kp)=>{"use strict";var Yx=me();Kp.exports=function(s){return typeof s=="object"?s!==null:Yx(s)}});var ir=m((hO,Xp)=>{"use strict";Xp.exports={}});var Kt=m((fO,Zp)=>{"use strict";var Nu=ir(),Uu=ve(),Kx=me(),Jp=function(s){return Kx(s)?s:void 0};Zp.exports=function(s,e){return arguments.length<2?Jp(Nu[s])||Jp(Uu[s]):Nu[s]&&Nu[s][e]||Uu[s]&&Uu[s][e]}});var ts=m((mO,eh)=>{"use strict";var Xx=ke();eh.exports=Xx({}.isPrototypeOf)});var Mi=m((bO,rh)=>{"use strict";var Jx=ve(),th=Jx.navigator,ih=th&&th.userAgent;rh.exports=ih?String(ih):""});var Hu=m((gO,lh)=>{"use strict";var uh=ve(),qu=Mi(),sh=uh.process,ah=uh.Deno,nh=sh&&sh.versions||ah&&ah.version,oh=nh&&nh.v8,Et,In;oh&&(Et=oh.split("."),In=Et[0]>0&&Et[0]<4?1:+(Et[0]+Et[1]));!In&&qu&&(Et=qu.match(/Edge\/(\d+)/),(!Et||Et[1]>=74)&&(Et=qu.match(/Chrome\/(\d+)/),Et&&(In=+Et[1])));lh.exports=In});var ju=m((SO,dh)=>{"use strict";var ch=Hu(),Zx=$e(),eE=ve(),tE=eE.String;dh.exports=!!Object.getOwnPropertySymbols&&!Zx(function(){var s=Symbol("symbol detection");return!tE(s)||!(Object(s)instanceof Symbol)||!Symbol.sham&&ch&&ch<41})});var zu=m((vO,ph)=>{"use strict";var iE=ju();ph.exports=iE&&!Symbol.sham&&typeof Symbol.iterator=="symbol"});var Gu=m((yO,hh)=>{"use strict";var rE=Kt(),sE=me(),aE=ts(),nE=zu(),oE=Object;hh.exports=nE?function(s){return typeof s=="symbol"}:function(s){var e=rE("Symbol");return sE(e)&&aE(e.prototype,oE(s))}});var is=m((TO,fh)=>{"use strict";var uE=String;fh.exports=function(s){try{return uE(s)}catch{return"Object"}}});var $t=m((IO,mh)=>{"use strict";var lE=me(),cE=is(),dE=TypeError;mh.exports=function(s){if(lE(s))return s;throw new dE(cE(s)+" is not a function")}});var rs=m((xO,bh)=>{"use strict";var pE=$t(),hE=tr();bh.exports=function(s,e){var t=s[e];return hE(t)?void 0:pE(t)}});var Sh=m((EO,gh)=>{"use strict";var Qu=pt(),Wu=me(),Yu=ht(),fE=TypeError;gh.exports=function(s,e){var t,i;if(e==="string"&&Wu(t=s.toString)&&!Yu(i=Qu(t,s))||Wu(t=s.valueOf)&&!Yu(i=Qu(t,s))||e!=="string"&&Wu(t=s.toString)&&!Yu(i=Qu(t,s)))return i;throw new fE("Can't convert object to primitive value")}});var Pt=m((PO,vh)=>{"use strict";vh.exports=!0});var Ih=m((wO,Th)=>{"use strict";var yh=ve(),mE=Object.defineProperty;Th.exports=function(s,e){try{mE(yh,s,{value:e,configurable:!0,writable:!0})}catch{yh[s]=e}return e}});var ss=m((AO,Ph)=>{"use strict";var bE=Pt(),gE=ve(),SE=Ih(),xh="__core-js_shared__",Eh=Ph.exports=gE[xh]||SE(xh,{});(Eh.versions||(Eh.versions=[])).push({version:"3.38.0",mode:bE?"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 Ku=m((kO,Ah)=>{"use strict";var wh=ss();Ah.exports=function(s,e){return wh[s]||(wh[s]=e||{})}});var rr=m((RO,kh)=>{"use strict";var vE=ci(),yE=Object;kh.exports=function(s){return yE(vE(s))}});var wt=m((LO,Rh)=>{"use strict";var TE=ke(),IE=rr(),xE=TE({}.hasOwnProperty);Rh.exports=Object.hasOwn||function(e,t){return xE(IE(e),t)}});var Xu=m((MO,Lh)=>{"use strict";var EE=ke(),PE=0,wE=Math.random(),AE=EE(1 .toString);Lh.exports=function(s){return"Symbol("+(s===void 0?"":s)+")_"+AE(++PE+wE,36)}});var Be=m(($O,$h)=>{"use strict";var kE=ve(),RE=Ku(),Mh=wt(),LE=Xu(),ME=ju(),$E=zu(),sr=kE.Symbol,Ju=RE("wks"),BE=$E?sr.for||sr:sr&&sr.withoutSetter||LE;$h.exports=function(s){return Mh(Ju,s)||(Ju[s]=ME&&Mh(sr,s)?sr[s]:BE("Symbol."+s)),Ju[s]}});var Vh=m((BO,Ch)=>{"use strict";var DE=pt(),Bh=ht(),Dh=Gu(),CE=rs(),VE=Sh(),OE=Be(),_E=TypeError,FE=OE("toPrimitive");Ch.exports=function(s,e){if(!Bh(s)||Dh(s))return s;var t=CE(s,FE),i;if(t){if(e===void 0&&(e="default"),i=DE(t,s,e),!Bh(i)||Dh(i))return i;throw new _E("Can't convert object to primitive value")}return e===void 0&&(e="number"),VE(s,e)}});var Zu=m((DO,Oh)=>{"use strict";var NE=Vh(),UE=Gu();Oh.exports=function(s){var e=NE(s,"string");return UE(e)?e:e+""}});var xn=m((CO,Fh)=>{"use strict";var qE=ve(),_h=ht(),el=qE.document,HE=_h(el)&&_h(el.createElement);Fh.exports=function(s){return HE?el.createElement(s):{}}});var tl=m((VO,Nh)=>{"use strict";var jE=dt(),zE=$e(),GE=xn();Nh.exports=!jE&&!zE(function(){return Object.defineProperty(GE("div"),"a",{get:function(){return 7}}).a!==7})});var Hh=m(qh=>{"use strict";var QE=dt(),WE=pt(),YE=_u(),KE=es(),XE=Li(),JE=Zu(),ZE=wt(),eP=tl(),Uh=Object.getOwnPropertyDescriptor;qh.f=QE?Uh:function(e,t){if(e=XE(e),t=JE(t),eP)try{return Uh(e,t)}catch{}if(ZE(e,t))return KE(!WE(YE.f,e,t),e[t])}});var il=m((_O,jh)=>{"use strict";var tP=$e(),iP=me(),rP=/#|\.prototype\./,as=function(s,e){var t=aP[sP(s)];return t===oP?!0:t===nP?!1:iP(e)?tP(e):!!e},sP=as.normalize=function(s){return String(s).replace(rP,".").toLowerCase()},aP=as.data={},nP=as.NATIVE="N",oP=as.POLYFILL="P";jh.exports=as});var ar=m((FO,Gh)=>{"use strict";var zh=Vu(),uP=$t(),lP=Zr(),cP=zh(zh.bind);Gh.exports=function(s,e){return uP(s),e===void 0?s:lP?cP(s,e):function(){return s.apply(e,arguments)}}});var rl=m((NO,Qh)=>{"use strict";var dP=dt(),pP=$e();Qh.exports=dP&&pP(function(){return Object.defineProperty(function(){},"prototype",{value:42,writable:!1}).prototype!==42})});var Bt=m((UO,Wh)=>{"use strict";var hP=ht(),fP=String,mP=TypeError;Wh.exports=function(s){if(hP(s))return s;throw new mP(fP(s)+" is not an object")}});var $i=m(Kh=>{"use strict";var bP=dt(),gP=tl(),SP=rl(),En=Bt(),Yh=Zu(),vP=TypeError,sl=Object.defineProperty,yP=Object.getOwnPropertyDescriptor,al="enumerable",nl="configurable",ol="writable";Kh.f=bP?SP?function(e,t,i){if(En(e),t=Yh(t),En(i),typeof e=="function"&&t==="prototype"&&"value"in i&&ol in i&&!i[ol]){var r=yP(e,t);r&&r[ol]&&(e[t]=i.value,i={configurable:nl in i?i[nl]:r[nl],enumerable:al in i?i[al]:r[al],writable:!1})}return sl(e,t,i)}:sl:function(e,t,i){if(En(e),t=Yh(t),En(i),gP)try{return sl(e,t,i)}catch{}if("get"in i||"set"in i)throw new vP("Accessors not supported");return"value"in i&&(e[t]=i.value),e}});var nr=m((HO,Xh)=>{"use strict";var TP=dt(),IP=$i(),xP=es();Xh.exports=TP?function(s,e,t){return IP.f(s,e,xP(1,t))}:function(s,e,t){return s[e]=t,s}});var Ie=m((jO,Zh)=>{"use strict";var ns=ve(),EP=Du(),PP=Vu(),wP=me(),AP=Hh().f,kP=il(),or=ir(),RP=ar(),ur=nr(),Jh=wt();ss();var LP=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 EP(s,this,arguments)};return e.prototype=s.prototype,e};Zh.exports=function(s,e){var t=s.target,i=s.global,r=s.stat,a=s.proto,n=i?ns:r?ns[t]:ns[t]&&ns[t].prototype,o=i?or:or[t]||ur(or,t,{})[t],u=o.prototype,l,c,p,d,h,f,b,g,S;for(d in e)l=kP(i?d:t+(r?".":"#")+d,s.forced),c=!l&&n&&Jh(n,d),f=o[d],c&&(s.dontCallGetSet?(S=AP(n,d),b=S&&S.value):b=n[d]),h=c&&b?b:e[d],!(!l&&!a&&typeof f==typeof h)&&(s.bind&&c?g=RP(h,ns):s.wrap&&c?g=LP(h):a&&wP(h)?g=PP(h):g=h,(s.sham||h&&h.sham||f&&f.sham)&&ur(g,"sham",!0),ur(o,d,g),a&&(p=t+"Prototype",Jh(or,p)||ur(or,p,{}),ur(or[p],d,h),s.real&&u&&(l||!u[d])&&ur(u,d,h)))}});var tf=m((zO,ef)=>{"use strict";var MP=Math.ceil,$P=Math.floor;ef.exports=Math.trunc||function(e){var t=+e;return(t>0?$P:MP)(t)}});var os=m((GO,rf)=>{"use strict";var BP=tf();rf.exports=function(s){var e=+s;return e!==e||e===0?0:BP(e)}});var af=m((QO,sf)=>{"use strict";var DP=os(),CP=Math.max,VP=Math.min;sf.exports=function(s,e){var t=DP(s);return t<0?CP(t+e,0):VP(t,e)}});var ul=m((WO,nf)=>{"use strict";var OP=os(),_P=Math.min;nf.exports=function(s){var e=OP(s);return e>0?_P(e,9007199254740991):0}});var lr=m((YO,of)=>{"use strict";var FP=ul();of.exports=function(s){return FP(s.length)}});var ll=m((KO,lf)=>{"use strict";var NP=Li(),UP=af(),qP=lr(),uf=function(s){return function(e,t,i){var r=NP(e),a=qP(r);if(a===0)return!s&&-1;var n=UP(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}};lf.exports={includes:uf(!0),indexOf:uf(!1)}});var us=m((XO,cf)=>{"use strict";cf.exports=function(){}});var df=m(()=>{"use strict";var HP=Ie(),jP=ll().includes,zP=$e(),GP=us(),QP=zP(function(){return!Array(1).includes()});HP({target:"Array",proto:!0,forced:QP},{includes:function(e){return jP(this,e,arguments.length>1?arguments[1]:void 0)}});GP("includes")});var di=m((e_,pf)=>{"use strict";var WP=Kt();pf.exports=WP});var ff=m((t_,hf)=>{"use strict";df();var YP=di();hf.exports=YP("Array","includes")});var bf=m((i_,mf)=>{"use strict";var KP=ff();mf.exports=KP});var ft=m((r_,gf)=>{"use strict";var XP=bf();gf.exports=XP});var An=m((m_,Pf)=>{"use strict";var aw=Ku(),nw=Xu(),Ef=aw("keys");Pf.exports=function(s){return Ef[s]||(Ef[s]=nw(s))}});var Af=m((b_,wf)=>{"use strict";var ow=$e();wf.exports=!ow(function(){function s(){}return s.prototype.constructor=null,Object.getPrototypeOf(new s)!==s.prototype})});var kn=m((g_,Rf)=>{"use strict";var uw=wt(),lw=me(),cw=rr(),dw=An(),pw=Af(),kf=dw("IE_PROTO"),pl=Object,hw=pl.prototype;Rf.exports=pw?pl.getPrototypeOf:function(s){var e=cw(s);if(uw(e,kf))return e[kf];var t=e.constructor;return lw(t)&&e instanceof t?t.prototype:e instanceof pl?hw:null}});var Rn=m((S_,Lf)=>{"use strict";Lf.exports={}});var Bf=m((v_,$f)=>{"use strict";var fw=ke(),hl=wt(),mw=Li(),bw=ll().indexOf,gw=Rn(),Mf=fw([].push);$f.exports=function(s,e){var t=mw(s),i=0,r=[],a;for(a in t)!hl(gw,a)&&hl(t,a)&&Mf(r,a);for(;e.length>i;)hl(t,a=e[i++])&&(~bw(r,a)||Mf(r,a));return r}});var fl=m((y_,Df)=>{"use strict";Df.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]});var ml=m((T_,Cf)=>{"use strict";var Sw=Bf(),vw=fl();Cf.exports=Object.keys||function(e){return Sw(e,vw)}});var bl=m((I_,Nf)=>{"use strict";var Of=dt(),yw=$e(),_f=ke(),Tw=kn(),Iw=ml(),xw=Li(),Ew=_u().f,Ff=_f(Ew),Pw=_f([].push),ww=Of&&yw(function(){var s=Object.create(null);return s[2]=2,!Ff(s,2)}),Vf=function(s){return function(e){for(var t=xw(e),i=Iw(t),r=ww&&Tw(t)===null,a=i.length,n=0,o=[],u;a>n;)u=i[n++],(!Of||(r?u in t:Ff(t,u)))&&Pw(o,s?[u,t[u]]:t[u]);return o}};Nf.exports={entries:Vf(!0),values:Vf(!1)}});var Uf=m(()=>{"use strict";var Aw=Ie(),kw=bl().entries;Aw({target:"Object",stat:!0},{entries:function(e){return kw(e)}})});var Hf=m((P_,qf)=>{"use strict";Uf();var Rw=ir();qf.exports=Rw.Object.entries});var zf=m((w_,jf)=>{"use strict";var Lw=Hf();jf.exports=Lw});var Bi=m((A_,Gf)=>{"use strict";var Mw=zf();Gf.exports=Mw});var Di=m((k_,Qf)=>{"use strict";Qf.exports={}});var Kf=m((R_,Yf)=>{"use strict";var $w=ve(),Bw=me(),Wf=$w.WeakMap;Yf.exports=Bw(Wf)&&/native code/.test(String(Wf))});var yl=m((L_,Zf)=>{"use strict";var Dw=Kf(),Jf=ve(),Cw=ht(),Vw=nr(),gl=wt(),Sl=ss(),Ow=An(),_w=Rn(),Xf="Object already initialized",vl=Jf.TypeError,Fw=Jf.WeakMap,Ln,ls,Mn,Nw=function(s){return Mn(s)?ls(s):Ln(s,{})},Uw=function(s){return function(e){var t;if(!Cw(e)||(t=ls(e)).type!==s)throw new vl("Incompatible receiver, "+s+" required");return t}};Dw||Sl.state?(At=Sl.state||(Sl.state=new Fw),At.get=At.get,At.has=At.has,At.set=At.set,Ln=function(s,e){if(At.has(s))throw new vl(Xf);return e.facade=s,At.set(s,e),e},ls=function(s){return At.get(s)||{}},Mn=function(s){return At.has(s)}):(Ci=Ow("state"),_w[Ci]=!0,Ln=function(s,e){if(gl(s,Ci))throw new vl(Xf);return e.facade=s,Vw(s,Ci,e),e},ls=function(s){return gl(s,Ci)?s[Ci]:{}},Mn=function(s){return gl(s,Ci)});var At,Ci;Zf.exports={set:Ln,get:ls,has:Mn,enforce:Nw,getterFor:Uw}});var xl=m((M_,tm)=>{"use strict";var Tl=dt(),qw=wt(),em=Function.prototype,Hw=Tl&&Object.getOwnPropertyDescriptor,Il=qw(em,"name"),jw=Il&&function(){}.name==="something",zw=Il&&(!Tl||Tl&&Hw(em,"name").configurable);tm.exports={EXISTS:Il,PROPER:jw,CONFIGURABLE:zw}});var rm=m(im=>{"use strict";var Gw=dt(),Qw=rl(),Ww=$i(),Yw=Bt(),Kw=Li(),Xw=ml();im.f=Gw&&!Qw?Object.defineProperties:function(e,t){Yw(e);for(var i=Kw(t),r=Xw(t),a=r.length,n=0,o;a>n;)Ww.f(e,o=r[n++],i[o]);return e}});var El=m((B_,sm)=>{"use strict";var Jw=Kt();sm.exports=Jw("document","documentElement")});var kl=m((D_,dm)=>{"use strict";var Zw=Bt(),eA=rm(),am=fl(),tA=Rn(),iA=El(),rA=xn(),sA=An(),nm=">",om="<",wl="prototype",Al="script",lm=sA("IE_PROTO"),Pl=function(){},cm=function(s){return om+Al+nm+s+om+"/"+Al+nm},um=function(s){s.write(cm("")),s.close();var e=s.parentWindow.Object;return s=null,e},aA=function(){var s=rA("iframe"),e="java"+Al+":",t;return s.style.display="none",iA.appendChild(s),s.src=String(e),t=s.contentWindow.document,t.open(),t.write(cm("document.F=Object")),t.close(),t.F},$n,Bn=function(){try{$n=new ActiveXObject("htmlfile")}catch{}Bn=typeof document<"u"?document.domain&&$n?um($n):aA():um($n);for(var s=am.length;s--;)delete Bn[wl][am[s]];return Bn()};tA[lm]=!0;dm.exports=Object.create||function(e,t){var i;return e!==null?(Pl[wl]=Zw(e),i=new Pl,Pl[wl]=null,i[lm]=e):i=Bn(),t===void 0?i:eA.f(i,t)}});var cr=m((C_,pm)=>{"use strict";var nA=nr();pm.exports=function(s,e,t,i){return i&&i.enumerable?s[e]=t:nA(s,e,t),s}});var $l=m((V_,mm)=>{"use strict";var oA=$e(),uA=me(),lA=ht(),cA=kl(),hm=kn(),dA=cr(),pA=Be(),hA=Pt(),Ml=pA("iterator"),fm=!1,Xt,Rl,Ll;[].keys&&(Ll=[].keys(),"next"in Ll?(Rl=hm(hm(Ll)),Rl!==Object.prototype&&(Xt=Rl)):fm=!0);var fA=!lA(Xt)||oA(function(){var s={};return Xt[Ml].call(s)!==s});fA?Xt={}:hA&&(Xt=cA(Xt));uA(Xt[Ml])||dA(Xt,Ml,function(){return this});mm.exports={IteratorPrototype:Xt,BUGGY_SAFARI_ITERATORS:fm}});var Dn=m((O_,gm)=>{"use strict";var mA=Be(),bA=mA("toStringTag"),bm={};bm[bA]="z";gm.exports=String(bm)==="[object z]"});var cs=m((__,Sm)=>{"use strict";var gA=Dn(),SA=me(),Cn=Ri(),vA=Be(),yA=vA("toStringTag"),TA=Object,IA=Cn(function(){return arguments}())==="Arguments",xA=function(s,e){try{return s[e]}catch{}};Sm.exports=gA?Cn:function(s){var e,t,i;return s===void 0?"Undefined":s===null?"Null":typeof(t=xA(e=TA(s),yA))=="string"?t:IA?Cn(e):(i=Cn(e))==="Object"&&SA(e.callee)?"Arguments":i}});var ym=m((F_,vm)=>{"use strict";var EA=Dn(),PA=cs();vm.exports=EA?{}.toString:function(){return"[object "+PA(this)+"]"}});var ds=m((N_,Im)=>{"use strict";var wA=Dn(),AA=$i().f,kA=nr(),RA=wt(),LA=ym(),MA=Be(),Tm=MA("toStringTag");Im.exports=function(s,e,t,i){var r=t?s:s&&s.prototype;r&&(RA(r,Tm)||AA(r,Tm,{configurable:!0,value:e}),i&&!wA&&kA(r,"toString",LA))}});var Em=m((U_,xm)=>{"use strict";var $A=$l().IteratorPrototype,BA=kl(),DA=es(),CA=ds(),VA=Di(),OA=function(){return this};xm.exports=function(s,e,t,i){var r=e+" Iterator";return s.prototype=BA($A,{next:DA(+!i,t)}),CA(s,r,!1,!0),VA[r]=OA,s}});var wm=m((q_,Pm)=>{"use strict";var _A=ke(),FA=$t();Pm.exports=function(s,e,t){try{return _A(FA(Object.getOwnPropertyDescriptor(s,e)[t]))}catch{}}});var km=m((H_,Am)=>{"use strict";var NA=ht();Am.exports=function(s){return NA(s)||s===null}});var Lm=m((j_,Rm)=>{"use strict";var UA=km(),qA=String,HA=TypeError;Rm.exports=function(s){if(UA(s))return s;throw new HA("Can't set "+qA(s)+" as a prototype")}});var Bl=m((z_,Mm)=>{"use strict";var jA=wm(),zA=ht(),GA=ci(),QA=Lm();Mm.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var s=!1,e={},t;try{t=jA(Object.prototype,"__proto__","set"),t(e,[]),s=e instanceof Array}catch{}return function(r,a){return GA(r),QA(a),zA(r)&&(s?t(r,a):r.__proto__=a),r}}():void 0)});var qm=m((G_,Um)=>{"use strict";var WA=Ie(),YA=pt(),Vn=Pt(),Fm=xl(),KA=me(),XA=Em(),$m=kn(),Bm=Bl(),JA=ds(),ZA=nr(),Dl=cr(),ek=Be(),Dm=Di(),Nm=$l(),tk=Fm.PROPER,ik=Fm.CONFIGURABLE,Cm=Nm.IteratorPrototype,On=Nm.BUGGY_SAFARI_ITERATORS,ps=ek("iterator"),Vm="keys",hs="values",Om="entries",_m=function(){return this};Um.exports=function(s,e,t,i,r,a,n){XA(t,e,i);var o=function(S){if(S===r&&d)return d;if(!On&&S&&S in c)return c[S];switch(S){case Vm:return function(){return new t(this,S)};case hs:return function(){return new t(this,S)};case Om:return function(){return new t(this,S)}}return function(){return new t(this)}},u=e+" Iterator",l=!1,c=s.prototype,p=c[ps]||c["@@iterator"]||r&&c[r],d=!On&&p||o(r),h=e==="Array"&&c.entries||p,f,b,g;if(h&&(f=$m(h.call(new s)),f!==Object.prototype&&f.next&&(!Vn&&$m(f)!==Cm&&(Bm?Bm(f,Cm):KA(f[ps])||Dl(f,ps,_m)),JA(f,u,!0,!0),Vn&&(Dm[u]=_m))),tk&&r===hs&&p&&p.name!==hs&&(!Vn&&ik?ZA(c,"name",hs):(l=!0,d=function(){return YA(p,this)})),r)if(b={values:o(hs),keys:a?d:o(Vm),entries:o(Om)},n)for(g in b)(On||l||!(g in c))&&Dl(c,g,b[g]);else WA({target:e,proto:!0,forced:On||l},b);return(!Vn||n)&&c[ps]!==d&&Dl(c,ps,d,{name:r}),Dm[e]=d,b}});var jm=m((Q_,Hm)=>{"use strict";Hm.exports=function(s,e){return{value:s,done:e}}});var Vl=m((W_,Ym)=>{"use strict";var rk=Li(),Cl=us(),zm=Di(),Qm=yl(),sk=$i().f,ak=qm(),_n=jm(),nk=Pt(),ok=dt(),Wm="Array Iterator",uk=Qm.set,lk=Qm.getterFor(Wm);Ym.exports=ak(Array,"Array",function(s,e){uk(this,{type:Wm,target:rk(s),index:0,kind:e})},function(){var s=lk(this),e=s.target,t=s.index++;if(!e||t>=e.length)return s.target=void 0,_n(void 0,!0);switch(s.kind){case"keys":return _n(t,!1);case"values":return _n(e[t],!1)}return _n([t,e[t]],!1)},"values");var Gm=zm.Arguments=zm.Array;Cl("keys");Cl("values");Cl("entries");if(!nk&&ok&&Gm.name!=="values")try{sk(Gm,"name",{value:"values"})}catch{}});var Xm=m((Y_,Km)=>{"use strict";var ck=Be(),dk=Di(),pk=ck("iterator"),hk=Array.prototype;Km.exports=function(s){return s!==void 0&&(dk.Array===s||hk[pk]===s)}});var Ol=m((K_,Zm)=>{"use strict";var fk=cs(),Jm=rs(),mk=tr(),bk=Di(),gk=Be(),Sk=gk("iterator");Zm.exports=function(s){if(!mk(s))return Jm(s,Sk)||Jm(s,"@@iterator")||bk[fk(s)]}});var tb=m((X_,eb)=>{"use strict";var vk=pt(),yk=$t(),Tk=Bt(),Ik=is(),xk=Ol(),Ek=TypeError;eb.exports=function(s,e){var t=arguments.length<2?xk(s):e;if(yk(t))return Tk(vk(t,s));throw new Ek(Ik(s)+" is not iterable")}});var sb=m((J_,rb)=>{"use strict";var Pk=pt(),ib=Bt(),wk=rs();rb.exports=function(s,e,t){var i,r;ib(s);try{if(i=wk(s,"return"),!i){if(e==="throw")throw t;return t}i=Pk(i,s)}catch(a){r=!0,i=a}if(e==="throw")throw t;if(r)throw i;return ib(i),t}});var Nn=m((Z_,ub)=>{"use strict";var Ak=ar(),kk=pt(),Rk=Bt(),Lk=is(),Mk=Xm(),$k=lr(),ab=ts(),Bk=tb(),Dk=Ol(),nb=sb(),Ck=TypeError,Fn=function(s,e){this.stopped=s,this.result=e},ob=Fn.prototype;ub.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=Ak(e,i),l,c,p,d,h,f,b,g=function(T){return l&&nb(l,"normal",T),new Fn(!0,T)},S=function(T){return r?(Rk(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(c=Dk(s),!c)throw new Ck(Lk(s)+" is not iterable");if(Mk(c)){for(p=0,d=$k(s);d>p;p++)if(h=S(s[p]),h&&ab(ob,h))return h;return new Fn(!1)}l=Bk(s,c)}for(f=a?s.next:l.next;!(b=kk(f,l)).done;){try{h=S(b.value)}catch(T){nb(l,"throw",T)}if(typeof h=="object"&&h&&ab(ob,h))return h}return new Fn(!1)}});var cb=m((eF,lb)=>{"use strict";var Vk=dt(),Ok=$i(),_k=es();lb.exports=function(s,e,t){Vk?Ok.f(s,e,_k(0,t)):s[e]=t}});var db=m(()=>{"use strict";var Fk=Ie(),Nk=Nn(),Uk=cb();Fk({target:"Object",stat:!0},{fromEntries:function(e){var t={};return Nk(e,function(i,r){Uk(t,i,r)},{AS_ENTRIES:!0}),t}})});var hb=m((rF,pb)=>{"use strict";Vl();db();var qk=ir();pb.exports=qk.Object.fromEntries});var mb=m((sF,fb)=>{"use strict";fb.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 gb=m(()=>{"use strict";Vl();var Hk=mb(),jk=ve(),zk=ds(),bb=Di();for(Un in Hk)zk(jk[Un],Un),bb[Un]=bb.Array;var Un});var vb=m((oF,Sb)=>{"use strict";var Gk=hb();gb();Sb.exports=Gk});var _l=m((uF,yb)=>{"use strict";var Qk=vb();yb.exports=Qk});var Tb=m(()=>{"use strict"});var Fl=m((dF,Ib)=>{"use strict";var fs=ve(),Wk=Mi(),Yk=Ri(),qn=function(s){return Wk.slice(0,s.length)===s};Ib.exports=function(){return qn("Bun/")?"BUN":qn("Cloudflare-Workers")?"CLOUDFLARE":qn("Deno/")?"DENO":qn("Node.js/")?"NODE":fs.Bun&&typeof Bun.version=="string"?"BUN":fs.Deno&&typeof Deno.version=="object"?"DENO":Yk(fs.process)==="process"?"NODE":fs.window&&fs.document?"BROWSER":"REST"}()});var Hn=m((pF,xb)=>{"use strict";var Kk=Fl();xb.exports=Kk==="NODE"});var Pb=m((hF,Eb)=>{"use strict";var Xk=$i();Eb.exports=function(s,e,t){return Xk.f(s,e,t)}});var kb=m((fF,Ab)=>{"use strict";var Jk=Kt(),Zk=Pb(),eR=Be(),tR=dt(),wb=eR("species");Ab.exports=function(s){var e=Jk(s);tR&&e&&!e[wb]&&Zk(e,wb,{configurable:!0,get:function(){return this}})}});var Lb=m((mF,Rb)=>{"use strict";var iR=ts(),rR=TypeError;Rb.exports=function(s,e){if(iR(e,s))return s;throw new rR("Incorrect invocation")}});var Ul=m((bF,Mb)=>{"use strict";var sR=ke(),aR=me(),Nl=ss(),nR=sR(Function.toString);aR(Nl.inspectSource)||(Nl.inspectSource=function(s){return nR(s)});Mb.exports=Nl.inspectSource});var Hl=m((gF,Vb)=>{"use strict";var oR=ke(),uR=$e(),$b=me(),lR=cs(),cR=Kt(),dR=Ul(),Bb=function(){},Db=cR("Reflect","construct"),ql=/^\s*(?:class|function)\b/,pR=oR(ql.exec),hR=!ql.test(Bb),ms=function(e){if(!$b(e))return!1;try{return Db(Bb,[],e),!0}catch{return!1}},Cb=function(e){if(!$b(e))return!1;switch(lR(e)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return hR||!!pR(ql,dR(e))}catch{return!0}};Cb.sham=!0;Vb.exports=!Db||uR(function(){var s;return ms(ms.call)||!ms(Object)||!ms(function(){s=!0})||s})?Cb:ms});var _b=m((SF,Ob)=>{"use strict";var fR=Hl(),mR=is(),bR=TypeError;Ob.exports=function(s){if(fR(s))return s;throw new bR(mR(s)+" is not a constructor")}});var jl=m((vF,Nb)=>{"use strict";var Fb=Bt(),gR=_b(),SR=tr(),vR=Be(),yR=vR("species");Nb.exports=function(s,e){var t=Fb(s).constructor,i;return t===void 0||SR(i=Fb(t)[yR])?e:gR(i)}});var qb=m((yF,Ub)=>{"use strict";var TR=ke();Ub.exports=TR([].slice)});var jb=m((TF,Hb)=>{"use strict";var IR=TypeError;Hb.exports=function(s,e){if(s<e)throw new IR("Not enough arguments");return s}});var zl=m((IF,zb)=>{"use strict";var xR=Mi();zb.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(xR)});var ec=m((xF,eg)=>{"use strict";var mt=ve(),ER=Du(),PR=ar(),Gb=me(),wR=wt(),Zb=$e(),Qb=El(),AR=qb(),Wb=xn(),kR=jb(),RR=zl(),LR=Hn(),Xl=mt.setImmediate,Jl=mt.clearImmediate,MR=mt.process,Gl=mt.Dispatch,$R=mt.Function,Yb=mt.MessageChannel,BR=mt.String,Ql=0,bs={},Kb="onreadystatechange",gs,Vi,Wl,Yl;Zb(function(){gs=mt.location});var Zl=function(s){if(wR(bs,s)){var e=bs[s];delete bs[s],e()}},Kl=function(s){return function(){Zl(s)}},Xb=function(s){Zl(s.data)},Jb=function(s){mt.postMessage(BR(s),gs.protocol+"//"+gs.host)};(!Xl||!Jl)&&(Xl=function(e){kR(arguments.length,1);var t=Gb(e)?e:$R(e),i=AR(arguments,1);return bs[++Ql]=function(){ER(t,void 0,i)},Vi(Ql),Ql},Jl=function(e){delete bs[e]},LR?Vi=function(s){MR.nextTick(Kl(s))}:Gl&&Gl.now?Vi=function(s){Gl.now(Kl(s))}:Yb&&!RR?(Wl=new Yb,Yl=Wl.port2,Wl.port1.onmessage=Xb,Vi=PR(Yl.postMessage,Yl)):mt.addEventListener&&Gb(mt.postMessage)&&!mt.importScripts&&gs&&gs.protocol!=="file:"&&!Zb(Jb)?(Vi=Jb,mt.addEventListener("message",Xb,!1)):Kb in Wb("script")?Vi=function(s){Qb.appendChild(Wb("script"))[Kb]=function(){Qb.removeChild(this),Zl(s)}}:Vi=function(s){setTimeout(Kl(s),0)});eg.exports={set:Xl,clear:Jl}});var rg=m((EF,ig)=>{"use strict";var tg=ve(),DR=dt(),CR=Object.getOwnPropertyDescriptor;ig.exports=function(s){if(!DR)return tg[s];var e=CR(tg,s);return e&&e.value}});var tc=m((PF,ag)=>{"use strict";var sg=function(){this.head=null,this.tail=null};sg.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}}};ag.exports=sg});var og=m((wF,ng)=>{"use strict";var VR=Mi();ng.exports=/ipad|iphone|ipod/i.test(VR)&&typeof Pebble<"u"});var lg=m((AF,ug)=>{"use strict";var OR=Mi();ug.exports=/web0s(?!.*chrome)/i.test(OR)});var bg=m((kF,mg)=>{"use strict";var pr=ve(),_R=rg(),cg=ar(),ic=ec().set,FR=tc(),NR=zl(),UR=og(),qR=lg(),rc=Hn(),dg=pr.MutationObserver||pr.WebKitMutationObserver,pg=pr.document,hg=pr.process,jn=pr.Promise,nc=_R("queueMicrotask"),dr,sc,ac,zn,fg;nc||(Ss=new FR,vs=function(){var s,e;for(rc&&(s=hg.domain)&&s.exit();e=Ss.get();)try{e()}catch(t){throw Ss.head&&dr(),t}s&&s.enter()},!NR&&!rc&&!qR&&dg&&pg?(sc=!0,ac=pg.createTextNode(""),new dg(vs).observe(ac,{characterData:!0}),dr=function(){ac.data=sc=!sc}):!UR&&jn&&jn.resolve?(zn=jn.resolve(void 0),zn.constructor=jn,fg=cg(zn.then,zn),dr=function(){fg(vs)}):rc?dr=function(){hg.nextTick(vs)}:(ic=cg(ic,pr),dr=function(){ic(vs)}),nc=function(s){Ss.head||dr(),Ss.add(s)});var Ss,vs;mg.exports=nc});var Sg=m((RF,gg)=>{"use strict";gg.exports=function(s,e){try{arguments.length===1?console.error(s):console.error(s,e)}catch{}}});var Gn=m((LF,vg)=>{"use strict";vg.exports=function(s){try{return{error:!1,value:s()}}catch(e){return{error:!0,value:e}}}});var Oi=m((MF,yg)=>{"use strict";var HR=ve();yg.exports=HR.Promise});var hr=m(($F,Eg)=>{"use strict";var jR=ve(),ys=Oi(),zR=me(),GR=il(),QR=Ul(),WR=Be(),Tg=Fl(),YR=Pt(),oc=Hu(),Ig=ys&&ys.prototype,KR=WR("species"),uc=!1,xg=zR(jR.PromiseRejectionEvent),XR=GR("Promise",function(){var s=QR(ys),e=s!==String(ys);if(!e&&oc===66||YR&&!(Ig.catch&&Ig.finally))return!0;if(!oc||oc<51||!/native code/.test(s)){var t=new ys(function(a){a(1)}),i=function(a){a(function(){},function(){})},r=t.constructor={};if(r[KR]=i,uc=t.then(function(){})instanceof i,!uc)return!0}return!e&&(Tg==="BROWSER"||Tg==="DENO")&&!xg});Eg.exports={CONSTRUCTOR:XR,REJECTION_EVENT:xg,SUBCLASSING:uc}});var fr=m((BF,wg)=>{"use strict";var Pg=$t(),JR=TypeError,ZR=function(s){var e,t;this.promise=new s(function(i,r){if(e!==void 0||t!==void 0)throw new JR("Bad Promise constructor");e=i,t=r}),this.resolve=Pg(e),this.reject=Pg(t)};wg.exports.f=function(s){return new ZR(s)}});var zg=m(()=>{"use strict";var eL=Ie(),tL=Pt(),Kn=Hn(),pi=ve(),Sr=pt(),Ag=cr(),kg=Bl(),iL=ds(),rL=kb(),sL=$t(),Yn=me(),aL=ht(),nL=Lb(),oL=jl(),Bg=ec().set,hc=bg(),uL=Sg(),lL=Gn(),cL=tc(),Dg=yl(),Xn=Oi(),fc=hr(),Cg=fr(),Jn="Promise",Vg=fc.CONSTRUCTOR,dL=fc.REJECTION_EVENT,pL=fc.SUBCLASSING,lc=Dg.getterFor(Jn),hL=Dg.set,mr=Xn&&Xn.prototype,_i=Xn,Qn=mr,Og=pi.TypeError,cc=pi.document,mc=pi.process,dc=Cg.f,fL=dc,mL=!!(cc&&cc.createEvent&&pi.dispatchEvent),_g="unhandledrejection",bL="rejectionhandled",Rg=0,Fg=1,gL=2,bc=1,Ng=2,Wn,Lg,SL,Mg,Ug=function(s){var e;return aL(s)&&Yn(e=s.then)?e:!1},qg=function(s,e){var t=e.value,i=e.state===Fg,r=i?s.ok:s.fail,a=s.resolve,n=s.reject,o=s.domain,u,l,c;try{r?(i||(e.rejection===Ng&&yL(e),e.rejection=bc),r===!0?u=t:(o&&o.enter(),u=r(t),o&&(o.exit(),c=!0)),u===s.promise?n(new Og("Promise-chain cycle")):(l=Ug(u))?Sr(l,u,a,n):a(u)):n(t)}catch(p){o&&!c&&o.exit(),n(p)}},Hg=function(s,e){s.notified||(s.notified=!0,hc(function(){for(var t=s.reactions,i;i=t.get();)qg(i,s);s.notified=!1,e&&!s.rejection&&vL(s)}))},jg=function(s,e,t){var i,r;mL?(i=cc.createEvent("Event"),i.promise=e,i.reason=t,i.initEvent(s,!1,!0),pi.dispatchEvent(i)):i={promise:e,reason:t},!dL&&(r=pi["on"+s])?r(i):s===_g&&uL("Unhandled promise rejection",t)},vL=function(s){Sr(Bg,pi,function(){var e=s.facade,t=s.value,i=$g(s),r;if(i&&(r=lL(function(){Kn?mc.emit("unhandledRejection",t,e):jg(_g,e,t)}),s.rejection=Kn||$g(s)?Ng:bc,r.error))throw r.value})},$g=function(s){return s.rejection!==bc&&!s.parent},yL=function(s){Sr(Bg,pi,function(){var e=s.facade;Kn?mc.emit("rejectionHandled",e):jg(bL,e,s.value)})},br=function(s,e,t){return function(i){s(e,i,t)}},gr=function(s,e,t){s.done||(s.done=!0,t&&(s=t),s.value=e,s.state=gL,Hg(s,!0))},pc=function(s,e,t){if(!s.done){s.done=!0,t&&(s=t);try{if(s.facade===e)throw new Og("Promise can't be resolved itself");var i=Ug(e);i?hc(function(){var r={done:!1};try{Sr(i,e,br(pc,r,s),br(gr,r,s))}catch(a){gr(r,a,s)}}):(s.value=e,s.state=Fg,Hg(s,!1))}catch(r){gr({done:!1},r,s)}}};if(Vg&&(_i=function(e){nL(this,Qn),sL(e),Sr(Wn,this);var t=lc(this);try{e(br(pc,t),br(gr,t))}catch(i){gr(t,i)}},Qn=_i.prototype,Wn=function(e){hL(this,{type:Jn,done:!1,notified:!1,parent:!1,reactions:new cL,rejection:!1,state:Rg,value:void 0})},Wn.prototype=Ag(Qn,"then",function(e,t){var i=lc(this),r=dc(oL(this,_i));return i.parent=!0,r.ok=Yn(e)?e:!0,r.fail=Yn(t)&&t,r.domain=Kn?mc.domain:void 0,i.state===Rg?i.reactions.add(r):hc(function(){qg(r,i)}),r.promise}),Lg=function(){var s=new Wn,e=lc(s);this.promise=s,this.resolve=br(pc,e),this.reject=br(gr,e)},Cg.f=dc=function(s){return s===_i||s===SL?new Lg(s):fL(s)},!tL&&Yn(Xn)&&mr!==Object.prototype)){Mg=mr.then,pL||Ag(mr,"then",function(e,t){var i=this;return new _i(function(r,a){Sr(Mg,i,r,a)}).then(e,t)},{unsafe:!0});try{delete mr.constructor}catch{}kg&&kg(mr,Qn)}eL({global:!0,constructor:!0,wrap:!0,forced:Vg},{Promise:_i});iL(_i,Jn,!1,!0);rL(Jn)});var Kg=m((VF,Yg)=>{"use strict";var TL=Be(),Qg=TL("iterator"),Wg=!1;try{Gg=0,gc={next:function(){return{done:!!Gg++}},return:function(){Wg=!0}},gc[Qg]=function(){return this},Array.from(gc,function(){throw 2})}catch{}var Gg,gc;Yg.exports=function(s,e){try{if(!e&&!Wg)return!1}catch{return!1}var t=!1;try{var i={};i[Qg]=function(){return{next:function(){return{done:t=!0}}}},s(i)}catch{}return t}});var Sc=m((OF,Xg)=>{"use strict";var IL=Oi(),xL=Kg(),EL=hr().CONSTRUCTOR;Xg.exports=EL||!xL(function(s){IL.all(s).then(void 0,function(){})})});var Jg=m(()=>{"use strict";var PL=Ie(),wL=pt(),AL=$t(),kL=fr(),RL=Gn(),LL=Nn(),ML=Sc();PL({target:"Promise",stat:!0,forced:ML},{all:function(e){var t=this,i=kL.f(t),r=i.resolve,a=i.reject,n=RL(function(){var o=AL(t.resolve),u=[],l=0,c=1;LL(e,function(p){var d=l++,h=!1;c++,wL(o,t,p).then(function(f){h||(h=!0,u[d]=f,--c||r(u))},a)}),--c||r(u)});return n.error&&a(n.value),i.promise}})});var eS=m(()=>{"use strict";var $L=Ie(),BL=Pt(),DL=hr().CONSTRUCTOR,yc=Oi(),CL=Kt(),VL=me(),OL=cr(),Zg=yc&&yc.prototype;$L({target:"Promise",proto:!0,forced:DL,real:!0},{catch:function(s){return this.then(void 0,s)}});!BL&&VL(yc)&&(vc=CL("Promise").prototype.catch,Zg.catch!==vc&&OL(Zg,"catch",vc,{unsafe:!0}));var vc});var tS=m(()=>{"use strict";var _L=Ie(),FL=pt(),NL=$t(),UL=fr(),qL=Gn(),HL=Nn(),jL=Sc();_L({target:"Promise",stat:!0,forced:jL},{race:function(e){var t=this,i=UL.f(t),r=i.reject,a=qL(function(){var n=NL(t.resolve);HL(e,function(o){FL(n,t,o).then(i.resolve,r)})});return a.error&&r(a.value),i.promise}})});var iS=m(()=>{"use strict";var zL=Ie(),GL=fr(),QL=hr().CONSTRUCTOR;zL({target:"Promise",stat:!0,forced:QL},{reject:function(e){var t=GL.f(this),i=t.reject;return i(e),t.promise}})});var Tc=m((GF,rS)=>{"use strict";var WL=Bt(),YL=ht(),KL=fr();rS.exports=function(s,e){if(WL(s),YL(e)&&e.constructor===s)return e;var t=KL.f(s),i=t.resolve;return i(e),t.promise}});var nS=m(()=>{"use strict";var XL=Ie(),JL=Kt(),sS=Pt(),ZL=Oi(),aS=hr().CONSTRUCTOR,eM=Tc(),tM=JL("Promise"),iM=sS&&!aS;XL({target:"Promise",stat:!0,forced:sS||aS},{resolve:function(e){return eM(iM&&this===tM?ZL:this,e)}})});var oS=m(()=>{"use strict";zg();Jg();eS();tS();iS();nS()});var dS=m(()=>{"use strict";var rM=Ie(),sM=Pt(),Zn=Oi(),aM=$e(),lS=Kt(),cS=me(),nM=jl(),uS=Tc(),oM=cr(),xc=Zn&&Zn.prototype,uM=!!Zn&&aM(function(){xc.finally.call({then:function(){}},function(){})});rM({target:"Promise",proto:!0,real:!0,forced:uM},{finally:function(s){var e=nM(this,lS("Promise")),t=cS(s);return this.then(t?function(i){return uS(e,s()).then(function(){return i})}:s,t?function(i){return uS(e,s()).then(function(){throw i})}:s)}});!sM&&cS(Zn)&&(Ic=lS("Promise").prototype.finally,xc.finally!==Ic&&oM(xc,"finally",Ic,{unsafe:!0}));var Ic});var hS=m((ZF,pS)=>{"use strict";Tb();oS();dS();var lM=di();pS.exports=lM("Promise","finally")});var mS=m((eN,fS)=>{"use strict";var cM=hS();fS.exports=cM});var Ts=m((tN,bS)=>{"use strict";var dM=mS();bS.exports=dM});var RS=m(()=>{"use strict";var PM=Ie(),wM=bl().values;PM({target:"Object",stat:!0},{values:function(e){return wM(e)}})});var MS=m((FN,LS)=>{"use strict";RS();var AM=ir();LS.exports=AM.Object.values});var BS=m((NN,$S)=>{"use strict";var kM=MS();$S.exports=kM});var Ui=m((UN,DS)=>{"use strict";var RM=BS();DS.exports=RM});var KS=m(()=>{"use strict";var ZM=Ie(),e$=rr(),t$=lr(),i$=os(),r$=us();ZM({target:"Array",proto:!0},{at:function(e){var t=e$(this),i=t$(t),r=i$(e),a=r>=0?r:i+r;return a<0||a>=i?void 0:t[a]}});r$("at")});var JS=m((KU,XS)=>{"use strict";KS();var s$=di();XS.exports=s$("Array","at")});var ev=m((XU,ZS)=>{"use strict";var a$=JS();ZS.exports=a$});var kt=m((JU,tv)=>{"use strict";var n$=ev();tv.exports=n$});var Gc=m((O1,Dv)=>{"use strict";var F$=Ri();Dv.exports=Array.isArray||function(e){return F$(e)==="Array"}});var Vv=m((_1,Cv)=>{"use strict";var N$=TypeError,U$=9007199254740991;Cv.exports=function(s){if(s>U$)throw N$("Maximum allowed index exceeded");return s}});var Fv=m((F1,_v)=>{"use strict";var q$=Gc(),H$=lr(),j$=Vv(),z$=ar(),Ov=function(s,e,t,i,r,a,n,o){for(var u=r,l=0,c=n?z$(n,o):!1,p,d;l<i;)l in t&&(p=c?c(t[l],l,e):t[l],a>0&&q$(p)?(d=H$(p),u=Ov(s,e,p,d,u,a-1)-1):(j$(u+1),s[u]=p),u++),l++;return u};_v.exports=Ov});var Hv=m((N1,qv)=>{"use strict";var Nv=Gc(),G$=Hl(),Q$=ht(),W$=Be(),Y$=W$("species"),Uv=Array;qv.exports=function(s){var e;return Nv(s)&&(e=s.constructor,G$(e)&&(e===Uv||Nv(e.prototype))?e=void 0:Q$(e)&&(e=e[Y$],e===null&&(e=void 0))),e===void 0?Uv:e}});var zv=m((U1,jv)=>{"use strict";var K$=Hv();jv.exports=function(s,e){return new(K$(s))(e===0?0:e)}});var Gv=m(()=>{"use strict";var X$=Ie(),J$=Fv(),Z$=$t(),e0=rr(),t0=lr(),i0=zv();X$({target:"Array",proto:!0},{flatMap:function(e){var t=e0(this),i=t0(t),r;return Z$(e),r=i0(t,0),r.length=J$(r,t,t,i,0,1,e,arguments.length>1?arguments[1]:void 0),r}})});var Qv=m(()=>{"use strict";var r0=us();r0("flatMap")});var Yv=m((G1,Wv)=>{"use strict";Gv();Qv();var s0=di();Wv.exports=s0("Array","flatMap")});var Xv=m((Q1,Kv)=>{"use strict";var a0=Yv();Kv.exports=a0});var _s=m((W1,Jv)=>{"use strict";var n0=Xv();Jv.exports=n0});var Fs=m((Y1,Zv)=>{"use strict";var o0=cs(),u0=String;Zv.exports=function(s){if(o0(s)==="Symbol")throw new TypeError("Cannot convert a Symbol value to a string");return u0(s)}});var Qc=m((K1,ey)=>{"use strict";ey.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 ry=m((X1,iy)=>{"use strict";var l0=ke(),c0=ci(),d0=Fs(),Yc=Qc(),ty=l0("".replace),p0=RegExp("^["+Yc+"]+"),h0=RegExp("(^|[^"+Yc+"])["+Yc+"]+$"),Wc=function(s){return function(e){var t=d0(c0(e));return s&1&&(t=ty(t,p0,"")),s&2&&(t=ty(t,h0,"$1")),t}};iy.exports={start:Wc(1),end:Wc(2),trim:Wc(3)}});var oy=m((J1,ny)=>{"use strict";var f0=xl().PROPER,m0=$e(),sy=Qc(),ay="\u200B\x85\u180E";ny.exports=function(s){return m0(function(){return!!sy[s]()||ay[s]()!==ay||f0&&sy[s].name!==s})}});var Kc=m((Z1,uy)=>{"use strict";var b0=ry().start,g0=oy();uy.exports=g0("trimStart")?function(){return b0(this)}:"".trimStart});var cy=m(()=>{"use strict";var S0=Ie(),ly=Kc();S0({target:"String",proto:!0,name:"trimStart",forced:"".trimLeft!==ly},{trimLeft:ly})});var py=m(()=>{"use strict";cy();var v0=Ie(),dy=Kc();v0({target:"String",proto:!0,name:"trimStart",forced:"".trimStart!==dy},{trimStart:dy})});var fy=m((sH,hy)=>{"use strict";py();var y0=di();hy.exports=y0("String","trimLeft")});var by=m((aH,my)=>{"use strict";var T0=fy();my.exports=T0});var Sy=m((nH,gy)=>{"use strict";var I0=by();gy.exports=I0});var By=m(()=>{"use strict"});var Dy=m(()=>{"use strict"});var Vy=m((N2,Cy)=>{"use strict";var z0=ht(),G0=Ri(),Q0=Be(),W0=Q0("match");Cy.exports=function(s){var e;return z0(s)&&((e=s[W0])!==void 0?!!e:G0(s)==="RegExp")}});var _y=m((U2,Oy)=>{"use strict";var Y0=Bt();Oy.exports=function(){var s=Y0(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 Uy=m((q2,Ny)=>{"use strict";var K0=pt(),X0=wt(),J0=ts(),Z0=_y(),Fy=RegExp.prototype;Ny.exports=function(s){var e=s.flags;return e===void 0&&!("flags"in Fy)&&!X0(s,"flags")&&J0(Fy,s)?K0(Z0,s):e}});var Hy=m((H2,qy)=>{"use strict";var id=ke(),eB=rr(),tB=Math.floor,ed=id("".charAt),iB=id("".replace),td=id("".slice),rB=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,sB=/\$([$&'`]|\d{1,2})/g;qy.exports=function(s,e,t,i,r,a){var n=t+s.length,o=i.length,u=sB;return r!==void 0&&(r=eB(r),u=rB),iB(a,u,function(l,c){var p;switch(ed(c,0)){case"$":return"$";case"&":return s;case"`":return td(e,0,t);case"'":return td(e,n);case"<":p=r[td(c,1,-1)];break;default:var d=+c;if(d===0)return l;if(d>o){var h=tB(d/10);return h===0?l:h<=o?i[h-1]===void 0?ed(c,1):i[h-1]+ed(c,1):l}p=i[d-1]}return p===void 0?"":p})}});var Gy=m(()=>{"use strict";var aB=Ie(),nB=pt(),sd=ke(),jy=ci(),oB=me(),uB=tr(),lB=Vy(),$r=Fs(),cB=rs(),dB=Uy(),pB=Hy(),hB=Be(),fB=Pt(),mB=hB("replace"),bB=TypeError,rd=sd("".indexOf),gB=sd("".replace),zy=sd("".slice),SB=Math.max;aB({target:"String",proto:!0},{replaceAll:function(e,t){var i=jy(this),r,a,n,o,u,l,c,p,d,h,f=0,b="";if(!uB(e)){if(r=lB(e),r&&(a=$r(jy(dB(e))),!~rd(a,"g")))throw new bB("`.replaceAll` does not allow non-global regexes");if(n=cB(e,mB),n)return nB(n,e,i,t);if(fB&&r)return gB($r(i),e,t)}for(o=$r(i),u=$r(e),l=oB(t),l||(t=$r(t)),c=u.length,p=SB(1,c),d=rd(o,u);d!==-1;)h=l?$r(t(u,d,o)):pB(u,o,d,[],void 0,t),b+=zy(o,f,d)+h,f=d+c,d=d+p>o.length?-1:rd(o,u,d+p);return f<o.length&&(b+=zy(o,f)),b}})});var Wy=m((G2,Qy)=>{"use strict";By();Dy();Gy();var vB=di();Qy.exports=vB("String","replaceAll")});var Ky=m((Q2,Yy)=>{"use strict";var yB=Wy();Yy.exports=yB});var ad=m((W2,Xy)=>{"use strict";var TB=Ky();Xy.exports=TB});var Zy=m((Y2,Jy)=>{"use strict";var IB=os(),xB=Fs(),EB=ci(),PB=RangeError;Jy.exports=function(e){var t=xB(EB(this)),i="",r=IB(e);if(r<0||r===1/0)throw new PB("Wrong number of repetitions");for(;r>0;(r>>>=1)&&(t+=t))r&1&&(i+=t);return i}});var sT=m((K2,rT)=>{"use strict";var iT=ke(),wB=ul(),eT=Fs(),AB=Zy(),kB=ci(),RB=iT(AB),LB=iT("".slice),MB=Math.ceil,tT=function(s){return function(e,t,i){var r=eT(kB(e)),a=wB(t),n=r.length,o=i===void 0?" ":eT(i),u,l;return a<=n||o===""?r:(u=a-n,l=RB(o,MB(u/o.length)),l.length>u&&(l=LB(l,0,u)),s?r+l:l+r)}};rT.exports={start:tT(!1),end:tT(!0)}});var nT=m((X2,aT)=>{"use strict";var $B=Mi();aT.exports=/Version\/10(?:\.\d+){1,2}(?: [\w./]+)?(?: Mobile\/\w+)? Safari\//.test($B)});var oT=m(()=>{"use strict";var BB=Ie(),DB=sT().start,CB=nT();BB({target:"String",proto:!0,forced:CB},{padStart:function(e){return DB(this,e,arguments.length>1?arguments[1]:void 0)}})});var lT=m((e3,uT)=>{"use strict";oT();var VB=di();uT.exports=VB("String","padStart")});var dT=m((t3,cT)=>{"use strict";var OB=lT();cT.exports=OB});var nd=m((i3,pT)=>{"use strict";var _B=dT();pT.exports=_B});var Ep="2.0.131-dev.c235b295.0";var Ke=(r=>(r.STOPPED="stopped",r.READY="ready",r.PLAYING="playing",r.PAUSED="paused",r))(Ke||{}),Yt=(y=>(y.MPEG="MPEG",y.DASH="DASH",y.DASH_SEP="DASH_SEP",y.DASH_SEP_VK="DASH_SEP",y.DASH_WEBM="DASH_WEBM",y.DASH_WEBM_AV1="DASH_WEBM_AV1",y.DASH_STREAMS="DASH_STREAMS",y.DASH_WEBM_VK="DASH_WEBM",y.DASH_ONDEMAND="DASH_ONDEMAND",y.DASH_ONDEMAND_VK="DASH_ONDEMAND",y.DASH_LIVE="DASH_LIVE",y.DASH_LIVE_CMAF="DASH_LIVE_CMAF",y.DASH_LIVE_WEBM="DASH_LIVE_WEBM",y.HLS="HLS",y.HLS_ONDEMAND="HLS_ONDEMAND",y.HLS_JS="HLS",y.HLS_LIVE="HLS_LIVE",y.HLS_LIVE_CMAF="HLS_LIVE_CMAF",y.WEB_RTC_LIVE="WEB_RTC_LIVE",y))(Yt||{});var vn=(r=>(r.NOT_AVAILABLE="NOT_AVAILABLE",r.AVAILABLE="AVAILABLE",r.CONNECTING="CONNECTING",r.CONNECTED="CONNECTED",r))(vn||{}),Mu=(i=>(i.HTTP1="http1",i.HTTP2="http2",i.QUIC="quic",i))(Mu||{});var $u=(n=>(n.NONE="none",n.INLINE="inline",n.FULLSCREEN="fullscreen",n.SECOND_SCREEN="second_screen",n.PIP="pip",n.INVISIBLE="invisible",n))($u||{}),yn=(i=>(i.TRAFFIC_SAVING="traffic_saving",i.HIGH_QUALITY="high_quality",i.UNKNOWN="unknown",i))(yn||{});var Ex=C(ft(),1);import{assertNever as xf,assertNonNullable as JP,isNonNullable as Pn,ValueSubject as cl,Subject as ZP,Subscription as ew,merge as tw,observableFrom as iw,fromEvent as vf,map as yf,tap as Tf,filterChanged as rw,isNullable as dl,ErrorCategory as If}from"@vkontakte/videoplayer-shared";var Sf=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 wn=class{constructor(e){this.connection$=new cl(void 0);this.castState$=new cl("NOT_AVAILABLE");this.errorEvent$=new ZP;this.realCastState$=new cl("NOT_AVAILABLE");this.subscription=new ew;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=Pn(window.chrome?.cast),r=!!window.__onGCastApiAvailable;i?this.initializeCastApi():(window.__onGCastApiAvailable=a=>{delete window.__onGCastApiAvailable,a&&!this.isDestroyed&&this.initializeCastApi()},r||Sf("https://www.gstatic.com/cv/js/sender/v1/cast_sender.js?loadCastFramework=1").catch(()=>this.errorEvent$.next({id:"ChromecastLoading",category:If.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(){Pn(this.connection$.getValue())?this.disconnect():this.connect()}setVolume(e){let t=this.connection$.getValue();dl(t)||(t.remotePlayer.volumeLevel=e,t.remotePlayerController.setVolumeLevel())}setMuted(e){let t=this.connection$.getValue();dl(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(vf(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 xf(r.sessionState)}})).add(tw(vf(i,cast.framework.CastContextEventType.CAST_STATE_CHANGED).pipe(Tf(r=>{this.log({message:`[cast.framework.RemotePlayerEventType.CAST_STATE_CHANGED]: ${JSON.stringify(r)}`})}),yf(r=>r.castState)),iw([i.getCastState()])).pipe(rw(),yf(sw),Tf(r=>{this.log({message:`realCastState$: ${r}`})})).subscribe(this.realCastState$)).add(this.realCastState$.subscribe(r=>{let a=r==="CONNECTED",n=Pn(this.connection$.getValue());if(a&&!n){let o=i.getCurrentSession();JP(o);let u=o.getCastDevice(),l=o.getMediaSession()?.media?.contentId;(dl(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"?Pn(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:If.EXTERNAL_API,message:"[initializeCastApi] failed",thrown:r})}}},sw=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 xf(s)}};var mp=C(ft(),1),ax=C(Bi(),1),nx=C(_l(),1);var wS=C(Ts(),1);import{assertNever as gS}from"@vkontakte/videoplayer-shared";var be=(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:gS(t)}return s},hi=(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:gS(e)}};var k=(s,e,t=!1)=>{let i=s.getTransition();(t||!i||i.to===e)&&s.setState(e)};import{isNonNullable as pM,Subject as eo,merge as SS}from"@vkontakte/videoplayer-shared";var F=class{constructor(e){this.transitionStarted$=new eo;this.transitionEnded$=new eo;this.transitionUpdated$=new eo;this.forceChanged$=new eo;this.stateChangeStarted$=SS(this.transitionStarted$,this.transitionUpdated$);this.stateChangeEnded$=SS(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||pM(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 hM}from"@vkontakte/videoplayer-shared";var vS=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 hM(s)}};import{assertNever as vr,assertNonNullable as Fi,debounce as yS,ErrorCategory as TS,fromEvent as Ni,isNonNullable as IS,map as xS,merge as ES,observableFrom as fM,Subject as mM,Subscription as Ec,timeout as bM,getHighestQuality as gM}from"@vkontakte/videoplayer-shared";var SM=5,vM=5,yM=500,PS=7e3,Is=class{constructor(e){this.subscription=new Ec;this.loadMediaTimeoutSubscription=new Ec;this.videoState=new F("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:vr(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:vr(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:vr(e)}break}default:vr(i)}}};this.params=e,this.log=this.params.dependencies.logger.createComponentLog("ChromecastProvider"),this.log({message:`constructor, format: ${e.format}`}),this.params.output.isLive$.next(vS(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 Ec;this.subscription.add(e),this.subscription.add(ES(this.videoState.stateChangeStarted$.pipe(xS(r=>`stateChangeStarted$ ${JSON.stringify(r)}`)),this.videoState.stateChangeEnded$.pipe(xS(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 mM;e.add(r.pipe(yS(yM)).subscribe(()=>{this.params.output.seekedEvent$.next()}));let a=NaN;e.add(Ni(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)>SM)&&r.next(o),a=o})),e.add(Ni(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.DURATION_CHANGED).subscribe(n=>{this.logRemoteEvent(n),this.params.output.duration$.next(n.value)}))}t(Ni(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_MEDIA_LOADED_CHANGED),r=>{this.logRemoteEvent(r),r.value?this.handleRemoteReady():(this.handleRemoteStop(),e.unsubscribe())}),t(Ni(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_PAUSED_CHANGED),r=>{this.logRemoteEvent(r),r.value?this.handleRemotePause():this.handleRemotePlay()}),t(Ni(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<vM&&this.params.output.endedEvent$.next(),this.handleRemoteStop(),k(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:vr(n)}}),t(Ni(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.VOLUME_LEVEL_CHANGED),r=>{this.logRemoteEvent(r),this.handleRemoteVolumeChange({volume:r.value})}),t(Ni(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_MUTED_CHANGED),r=>{this.logRemoteEvent(r),this.handleRemoteVolumeChange({muted:r.value})});let i=ES(this.params.desiredState.playbackState.stateChangeStarted$,this.params.desiredState.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,fM(["init"])).pipe(yS(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"),k(this.params.desiredState.playbackState,"paused")):(this.videoState.setState("playing"),k(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"),k(this.params.desiredState.playbackState,"paused"))}handleRemotePlay(){let e=this.videoState.getState();(this.videoState.getTransition()?.to==="playing"||e==="paused")&&(this.videoState.setState("playing"),k(this.params.desiredState.playbackState,"playing"))}handleRemoteReady(){this.videoState.getTransition()?.to==="ready"&&this.videoState.setState("ready"),this.params.desiredState.playbackState.getTransition()?.to==="ready"&&k(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];Fi(l);let c=gM(Object.keys(l));Fi(c);let p=l[c];Fi(p),i=p,r="video/mp4",a=chrome.cast.media.StreamType.BUFFERED;break}case"HLS":case"HLS_ONDEMAND":{let l=t[e];Fi(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];Fi(l),i=l.url,r="application/dash+xml",a=chrome.cast.media.StreamType.BUFFERED;break}case"DASH_LIVE_CMAF":{let l=t[e];Fi(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];Fi(l),i=be(l.url),r="application/x-mpegurl",a=chrome.cast.media.StreamType.LIVE;break}case"DASH_LIVE":case"WEB_RTC_LIVE":{let l="Unsupported format for Chromecast",c=new Error(l);throw this.params.output.error$.next({id:"ChromecastProvider.createMediaInfo()",category:TS.VIDEO_PIPELINE,message:l,thrown:c}),c}case"DASH":case"DASH_LIVE_WEBM":throw new Error(`${e} is no longer supported`);default:return vr(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 IS(o)&&(n.metadata.title=o),IS(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(bM(PS).subscribe(()=>a(`timeout(${PS})`)))});(0,wS.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:TS.VIDEO_PIPELINE,message:a,thrown:r})}),()=>{this.loadMediaTimeoutSubscription.unsubscribe()})}logRemoteEvent(e){this.log({message:`[remoteEvent] ${JSON.stringify(e)}`})}};var jc=C(ft(),1);import{clearVideoElement as kS}from"@vkontakte/videoplayer-shared";import{clearVideoElement as TM}from"@vkontakte/videoplayer-shared";var AS=s=>{try{s.pause(),s.playbackRate=0,TM(s),s.remove()}catch(e){console.error(e)}};import{fromEvent as IM,Subscription as xM}from"@vkontakte/videoplayer-shared";var Pc=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)}},wc=window.WeakMap?new WeakMap:new Pc,Ac=window.WeakMap?new WeakMap:new Map,EM=(s,e=20)=>{let t=0;return IM(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?kS(i):(i=document.createElement("video"),s.appendChild(i)),wc.set(i,r);let a=new xM;return a.add(EM(i,e)),Ac.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=>{Ac.get(s)?.unsubscribe(),Ac.delete(s);let t=wc.get(s);wc.delete(s),t?kS(s):AS(s)};var Rc=C(Ui(),1);import{assertNonNullable as xs,isNonNullable as Ct,isNullable as $M,fromEvent as yr,merge as CS,observableFrom as VS,filterChanged as OS,map as Es,Subject as _S,Subscription as BM,ValueSubject as DM,ErrorCategory as CM}from"@vkontakte/videoplayer-shared";import{isNonNullable as kc,isNullable as LM,Subscription as MM}from"@vkontakte/videoplayer-shared";var to=(s,e,t,{equal:i=(n,o)=>n===o,changed$:r,onError:a}={})=>{let n=s.getState(),o=e(),u=LM(r),l=new MM;return r&&l.add(r.subscribe(c=>{let p=s.getState();i(c,p)&&s.setState(c)},a)),i(o,n)||(t(n),u&&s.setState(n)),l.add(s.stateChangeStarted$.subscribe(c=>{t(c.to),u&&s.setState(c.to)},a)),l},St=(s,e,t)=>to(e,()=>s.loop,i=>{kc(i)&&(s.loop=i)},{onError:t}),Ve=(s,e,t,i)=>to(e,()=>({muted:s.muted,volume:s.volume}),r=>{kc(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)=>to(e,()=>s.playbackRate,r=>{kc(r)&&(s.playbackRate=r)},{changed$:t,onError:i}),fi=to;var VM=s=>["__",s.language,s.label].join("|"),OM=(s,e)=>{if(s.id===e)return!0;let[t,i,r]=e.split("|");return s.language===i&&s.label===r},Lc=class s{constructor(e){this.available$=new _S;this.current$=new DM(void 0);this.error$=new _S;this.subscription=new BM;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:CM.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(fi(t.internalTextTracks,()=>(0,Rc.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(Es(a=>a.filter(({type:n})=>n==="internal"))),onError:r})),this.subscription.add(fi(t.externalTextTracks,()=>(0,Rc.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(Es(a=>a.filter(({type:n})=>n==="external"))),onError:r})),this.subscription.add(fi(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(fi(t.textTrackCuesSettings,()=>({}),()=>{if(this.video)for(let a of this.htmlTextTracksAsArray())this.applyCueSettings(a.cues),this.applyCueSettings(a.activeCues)}))}subscribe(){xs(this.video);let{textTracks:e}=this.video;this.subscription.add(yr(e,"addtrack").subscribe(()=>{let i=this.current$.getValue();i&&this.select(i)})),this.subscription.add(CS(yr(e,"addtrack"),yr(e,"removetrack"),VS(["init"])).pipe(Es(()=>this.htmlTextTracksAsArray().map(i=>this.htmlTextTrackToITextTrack(i))),OS((i,r)=>i.length===r.length&&i.every(({id:a},n)=>a===r[n].id))).subscribe(this.available$)),this.subscription.add(CS(yr(e,"change"),VS(["init"])).pipe(Es(()=>this.htmlTextTracksAsArray().find(({mode:i})=>i==="showing")),Es(i=>i&&this.htmlTextTrackToITextTrack(i).id),OS()).subscribe(this.current$));let t=i=>this.applyCueSettings(i.target?.activeCues??null);this.subscription.add(yr(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(yr(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){xs(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:VM(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){xs(this.video);for(let t of this.htmlTextTracksAsArray(!0))t.mode="showing";for(let t of this.htmlTextTracksAsArray(!0))($M(e)||!OM(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){xs(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){xs(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=Lc;var qi=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 FS=s=>{let e=s;for(;!(e instanceof Document)&&!(e instanceof ShadowRoot)&&e!==null;)e=e?.parentNode;return e??void 0},Mc=s=>{let e=FS(s);return!!(e&&e.fullscreenElement&&e.fullscreenElement===s)},NS=s=>{let e=FS(s);return!!(e&&e.pictureInPictureElement&&e.pictureInPictureElement===s)};import{fromEvent as Ze,map as mi,merge as Bc,filterChanged as GM,isNonNullable as WS,Subject as QM,filter as ws,mapTo as Dc,combine as WM,once as YM,throttle as KM,ErrorCategory as XM,ValueSubject as YS,Subscription as JM}from"@vkontakte/videoplayer-shared";var _M=3,US=(s,e,t=_M)=>{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 io=class{constructor(){this._isMiuiBrowser=!1}get current(){return this._current}get isYandex(){return this.current==="Yandex"}get isSafari(){return this.current==="Safari"}get isSamsungBrowser(){return this.current==="SamsungBrowser"}get safariVersion(){return this._safariVersion}get isMiuiBrowser(){return this._isMiuiBrowser}detect(){let{userAgent:e}=navigator;try{let t=/yabrowser/i.test(e)?"Yandex":void 0,i=/samsungbrowser/i.test(e)?"SamsungBrowser":void 0,r=/chrome|crios/i.test(e)?"Chrome":void 0,a=/chromium/i.test(e)?"Chromium":void 0,n=/firefox|fxios/i.test(e)?"Firefox":void 0,o=/webkit|safari|khtml/i.test(e)?"Safari":void 0,u=/opr\//i.test(e)?"Opera":void 0,l=/edg/i.test(e)?"Edge":void 0;this._isMiuiBrowser=/(XiaoMi)|(MiuiBrowser)/i.test(e),this._current=t||i||n||u||l||r||a||o||"Rest"}catch(t){console.error(t)}this.isSafari&&this.detectSafariVersion()}detectSafariVersion(){try{let{userAgent:e}=window.navigator,t=e.match(/Version\/(\d+)/);if(!t)return;let i=t[1],r=parseInt(i,10);if(isNaN(r))return;this._safariVersion=r}catch(e){console.error(e)}}};var qS=C(ft(),1);var Ps=()=>/Mobile|mini|Fennec|Android|iP(ad|od|hone)/.test(navigator.appVersion??navigator.userAgent)||navigator?.userAgentData?.mobile;var ro=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,qS.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=Ps()}catch(t){console.error(t)}this.detectDevice(e),this.detectHighEntropyValues(),this.isIOS&&this.detectIOSVersion()}async detectHighEntropyValues(){let{userAgentData:e}=navigator;if(e?.getHighEntropyValues){let t=await e.getHighEntropyValues(["architecture","bitness","brands","mobile","platform","formFactor","model","platformVersion","wow64"]);this._highEntropyValues=t}}detectDevice(e){try{let t=/android/i.test(e)?"Android":void 0,i=/iphone/i.test(e)?"iPhone":void 0,r=/ipad/i.test(e)?"iPad":void 0,a=/ipod/i.test(e)?"iPod":void 0,n=/mac/i.test(e)?"Mac":void 0,o=/webOS|BlackBerry|IEMobile|Opera Mini/i.test(e)?"RestMobile":void 0;this._current=t||i||r||a||o||n||"Desktop"}catch(t){console.error(t)}}detectIOSVersion(){try{if(this._highEntropyValues.platformVersion){let a=this._highEntropyValues.platformVersion.split(".").slice(0,2).join("."),n=parseFloat(a);this._iosVersion=n;return}let{userAgent:e}=window.navigator,t=e.match(/OS (\d+(_\d+)?)/i);if(!t)return;let i=t[1].replace(/_/g,".");if(!i)return;let r=parseFloat(i);if(isNaN(r))return;this._iosVersion=r}catch(e){console.error(e)}}};var so=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 bt=()=>window.ManagedMediaSource||window.MediaSource,Tr=()=>!!(window.ManagedMediaSource&&window.ManagedSourceBuffer?.prototype?.appendBuffer),HS=()=>!!(window.MediaSource&&window.SourceBuffer?.prototype?.appendBuffer),ao=()=>window.ManagedMediaSource?new ManagedMediaSource:new MediaSource;var FM=document.createElement("video"),NM='video/mp4; codecs="avc1.42000a,mp4a.40.2"',UM='video/mp4; codecs="hev1.1.6.L93.B0"',jS='video/webm; codecs="vp09.00.10.08"',zS='video/webm; codecs="av01.0.00M.08"',qM='audio/mp4; codecs="mp4a.40.2"',HM='audio/webm; codecs="opus"',GS,jM=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:zS}}),window.navigator.mediaCapabilities.decodingInfo({...s,video:{...s.video,contentType:jS}})]);GS={DASH_WEBM_AV1:e,DASH_WEBM:t}};jM().catch(s=>{console.log(FM),console.error(s)});var no=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 GS}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:Tr(),mse:HS(),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=!!bt()?.isTypeSupported?.(NM),t=!!bt()?.isTypeSupported?.(UM),i=!!bt()?.isTypeSupported?.(qM);this._codecs={h264:e,h265:t,vp9:!!bt()?.isTypeSupported?.(jS),av1:!!bt()?.isTypeSupported?.(zS),aac:i,opus:!!bt()?.isTypeSupported?.(HM),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 QS="audio/mpeg",oo=class{supportMp3(){return this._codecs.mp3&&this._containers.mpeg}detect(){this._audio=document.createElement("audio");try{this._containers={mpeg:!!this._audio.canPlayType?.(QS)},this._codecs={mp3:!!bt()?.isTypeSupported?.(QS)}}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 zM}from"@vkontakte/videoplayer-shared";var $c=class{constructor(){this.isInited$=new zM(!1);this._displayChecker=new so,this._deviceChecker=new ro(this._displayChecker),this._browserChecker=new io,this._videoChecker=new no(this._deviceChecker,this._browserChecker),this._audioChecker=new oo,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)}},_=new $c;var Oe=s=>{let e=v=>Ze(s,v).pipe(Dc(void 0)),t=new JM,i=()=>t.unsubscribe(),a=Bc(...["waiting","pause","canplay","play","canplaythrough","playing","seeking","seeked","ended"].map(v=>Ze(s,v))).pipe(mi(v=>v.type==="ended"?s.readyState<2:s.readyState<3),GM()),n=Bc(Ze(s,"progress"),Ze(s,"timeupdate")).pipe(mi(()=>US(s.buffered,s.currentTime))),o=_.browser.isSafari?WM({play:e("play").pipe(YM()),playing:e("playing")}).pipe(Dc(void 0)):e("playing"),u=Ze(s,"volumechange").pipe(mi(()=>({muted:s.muted,volume:s.volume}))),l=Ze(s,"ratechange").pipe(mi(()=>s.playbackRate)),c=Ze(s,"error").pipe(ws(()=>!!(s.error||s.played.length)),mi(()=>{let v=s.error;return{id:v?`MediaError#${v.code}`:"HtmlVideoError",category:XM.VIDEO_PIPELINE,message:v?v.message:"Error event from HTML video element",thrown:s.error??void 0}})),p=Ze(s,"timeupdate").pipe(mi(()=>s.currentTime)),d=new QM,h=.3,f;t.add(p.subscribe(v=>{s.loop&&WS(f)&&WS(v)&&f>=s.duration-h&&v<=h&&d.next(f),f=v}));let b=e("pause").pipe(ws(()=>!s.error&&f!==s.duration)),g=Ze(s,"enterpictureinpicture"),S=Ze(s,"leavepictureinpicture"),T=new YS(NS(s));t.add(g.subscribe(()=>T.next(!0))),t.add(S.subscribe(()=>T.next(!1)));let y=new YS(Mc(s)),E=Ze(s,"fullscreenchange");t.add(E.pipe(mi(()=>Mc(s))).subscribe(y));let P=.1,$=1e3,O=Ze(s,"timeupdate").pipe(ws(v=>s.duration-s.currentTime<P)),w=Bc(O.pipe(ws(v=>!s.loop)),Ze(s,"ended")).pipe(KM($),Dc(void 0)),A=O.pipe(ws(v=>s.loop));return{playing$:o,pause$:b,canplay$:e("canplay"),ended$:w,looped$:d,loopExpected$:A,error$:c,seeked$:e("seeked"),seeking$:e("seeking"),progress$:e("progress"),loadStart$:e("loadstart"),loadedMetadata$:e("loadedmetadata"),loadedData$:e("loadeddata"),timeUpdate$:p,durationChange$:Ze(s,"durationchange").pipe(mi(()=>s.duration)),isBuffering$:a,currentBuffer$:n,volumeState$:u,playbackRateState$:l,inPiP$:T,inFullscreen$:y,enterPip$:g,leavePip$:S,destroy:i}};import{VideoQuality as bi}from"@vkontakte/videoplayer-shared";var Vt=s=>{switch(s){case"mobile":return bi.Q_144P;case"lowest":return bi.Q_240P;case"low":return bi.Q_360P;case"sd":case"medium":return bi.Q_480P;case"hd":case"high":return bi.Q_720P;case"fullhd":case"full":return bi.Q_1080P;case"quadhd":case"quad":return bi.Q_1440P;case"ultrahd":case"ultra":return bi.Q_2160P}};var Qe=C(kt(),1),Oc=C(ft(),1),Hi=C(Bi(),1);import{isNonNullable as X,isNullable as ho,now as dv,isHigher as fo,isHigherOrEqual as xr,isInvariantQuality as mo,isLowerOrEqual as Er,videoSizeToQuality as pv,assertNotEmptyArray as bo,assertNonNullable as hv}from"@vkontakte/videoplayer-shared";var Cc=!1,Jt={},iv=s=>{Cc=s},rv=()=>{Jt={}},sv=s=>{s(Jt)},As=(s,e)=>{Cc&&(Jt.meta=Jt.meta??{},Jt.meta[s]=e)},Ge=class{constructor(e){this.name=e}next(e){if(!Cc)return;Jt.series=Jt.series??{};let t=Jt.series[this.name]??[];t.push([Date.now(),e]),Jt.series[this.name]=t}};import{isHigher as o$,isHigherOrEqual as sq,isLower as av,isLowerOrEqual as aq,isNonNullable as uo,isNullable as u$,videoHeightToQuality as lo}from"@vkontakte/videoplayer-shared";function Vc(s,e,t){return!s.max&&s.min===e?"high_quality":!s.min&&s.max===t?"traffic_saving":"unknown"}function co(s,e,t){return!!s&&Vc(s,e,t)==="high_quality"}function Ir(s,e,t){return u$(s)||uo(s.min)&&uo(s.max)&&av(s.max,s.min)||uo(s.min)&&e&&o$(s.min,e)||uo(s.max)&&t&&av(s.max,t)}function nv({limits:s,highestAvailableHeight:e,lowestAvailableHeight:t}){return Ir({max:s?.max?lo(s.max):void 0,min:s?.min?lo(s.min):void 0},e?lo(e):void 0,t?lo(t):void 0)}var fv=new Ge("best_bitrate"),go=(s,e,t)=>(e-t)*Math.pow(2,-10*s)+t;var Pr=s=>(e,t)=>s*(Number(e.bitrate)-Number(t.bitrate)),gi=class{constructor(){this.history={}}recordSelection(e){this.history[e.id]=dv()}recordSwitch(e){this.last=e}clear(){this.last=void 0,this.history={}}},So='Assertion "ABR Tracks is empty array" failed',po=new WeakMap,ov=new WeakMap,uv=new WeakMap,ks=(s,e,t,i)=>{let r=[...e].sort(Pr(1)),a=[...t].sort(Pr(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,Oc.default)(n,o)?o:n.length?(0,Qe.default)(n,-1):(0,Qe.default)(a,0)},Rs=(s,e,t,i)=>{let r=po.get(e);r||(r=[...e].sort(Pr(1)),po.set(e,r));let a=po.get(t);a||(a=[...t].sort(Pr(1)),po.set(t,a));let n=uv.get(s);n||(n=a.filter(u=>X(u.bitrate)&&X(s.bitrate)?s.bitrate/u.bitrate>i:!0),uv.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,Oc.default)(n,o)?o:n.length?(0,Qe.default)(n,-1):(0,Qe.default)(a,0)},lv=s=>"quality"in s,vo=(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]&&dv()-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=lv(n)?"video":"audio",u=lv(n)?n.quality:n.bitrate;return e({message:`
8
8
  [last ${o} selected] ${u}
9
- `}),n}return i?.recordSwitch(t),t},xL=(r,e)=>Math.log(e)/Math.log(r),PL=({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=xL(n,o*s+u)+l;Number.isFinite(c)&&(a*=c)}}return Vu({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}},$t=(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})=>{Wb(r,zb);let{containerSizeFactor:g,containerSizeLimit:v}=PL({container:e,tuning:i,limits:a,panelSize:b}),x=i.considerPlaybackRate&&ge(o)?o:1,T=r.filter(A=>!Hb(A.quality)).sort((A,ie)=>Ub(A.quality,ie.quality)?-1:1),P=(0,Rt.default)(T,-1)?.quality,I=(0,Rt.default)(T,0)?.quality,V=wr({limits:a,lowestAvailableQuality:P,highestAvailableQuality:I}),B=x*Yb(n??.5,i.bitrateFactorAtEmptyBuffer,i.bitrateFactorAtFullBuffer),F={},S=T.filter(A=>{let ie=!0;if(v)if(A.size)ie=A.size.width<=v.width&&A.size.height<=v.height;else{let $=v&&TL(v);ie=$?Ou(A.quality,$):!0}if(!ie)return F[A.quality]="FitsContainer",!1;let k=h||t,H=ge(k)&&isFinite(k)&&ge(A.bitrate)?k-s>=A.bitrate*B:!0,Y=Vu({highQualityLimit:i.highQualityLimit,trafficSavingLimit:i.trafficSavingLimit,limits:a})&&a?.min===A.quality;if(!H&&!Y)return F[A.quality]="FitsThroughput",!1;if(i.lazyQualitySwitch&&ge(i.minBufferToSwitchUp)&&u&&!Hb(u.quality)&&(n??0)<i.minBufferToSwitchUp&&Ub(A.quality,u.quality))return F[A.quality]="Buffer",!1;if(!!d&&Bu(A.quality,d)&&!Y)return F[A.quality]="DroppedFramesLimit",!1;if(!!p&&Bu(A.quality,p)&&!Y)return F[A.quality]="StallsLimit",!1;let ye=V||(qb(a?.max)||Ou(A.quality,a.max))&&(qb(a?.min)||Bu(A.quality,a.min)),j=ge(c)&&!c?Ou(A.quality,i.backgroundVideoQualityLimit):!0;return!ye||!j?(F[A.quality]="FitsQualityLimits",!1):!0})[0];S&&S.bitrate&&EL.next(S.bitrate);let R=S??(0,Rt.default)(T,-1)??r[0],w=l?.last,W=Kb(i,f,R,l);return ge(l)&&W.quality!==w?.quality&&f({message:`
9
+ `}),n}return i?.recordSwitch(t),t},l$=(s,e)=>Math.log(e)/Math.log(s),mv=({tuning:s,container:e,limits:t,panelSize:i})=>{let r=s.containerSizeFactor;if(i)return{containerSizeLimit:i,containerSizeFactor:r};if(s.usePixelRatio&&_.display.pixelRatio){let a=_.display.pixelRatio;if(s.pixelRatioMultiplier)r*=s.pixelRatioMultiplier*(a-1)+1;else{let n=s.pixelRatioLogBase,[o=0,u=0,l=0]=s.pixelRatioLogCoefficients,c=l$(n,o*a+u)+l;Number.isFinite(c)&&(r*=c)}}return co(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}},cv=new WeakMap,Ot=(s,{container:e,estimatedThroughput:t,tuning:i,limits:r,reserve:a=0,forwardBufferHealth:n,playbackRate:o,current:u,history:l,visible:c,droppedVideoMaxQualityLimit:p,stallsVideoMaxQualityLimit:d,stallsPredictedThroughput:h,abrLogger:f,panelSize:b})=>{bo(s,So);let{containerSizeFactor:g,containerSizeLimit:S}=mv({container:e,tuning:i,limits:r,panelSize:b}),T=i.considerPlaybackRate&&X(o)?o:1,y=cv.get(s);y||(y=s.filter(x=>!mo(x.quality)).sort((x,R)=>fo(x.quality,R.quality)?-1:1),cv.set(s,y));let E=(0,Qe.default)(y,-1)?.quality,P=(0,Qe.default)(y,0)?.quality,$=Ir(r,P,E),O=T*go(n??.5,i.bitrateFactorAtEmptyBuffer,i.bitrateFactorAtFullBuffer),w={},A=null;for(let x of y){let R=!0;if(S)if(x.size)R=x.size.width<=S.width&&x.size.height<=S.height;else{let L=S&&pv(S);R=L?Er(x.quality,L):!0}if(!R){w[x.quality]="FitsContainer";continue}let re=h||t,B=X(re)&&isFinite(re)&&X(x.bitrate)?re-a>=x.bitrate*O:!0,q=co(r,i.highQualityLimit,i.trafficSavingLimit)&&r?.min===x.quality;if(!B&&!q){w[x.quality]="FitsThroughput";continue}if(i.lazyQualitySwitch&&X(i.minBufferToSwitchUp)&&u&&!mo(u.quality)&&(n??0)<i.minBufferToSwitchUp&&fo(x.quality,u.quality)){w[x.quality]="Buffer";continue}if(!!p&&xr(x.quality,p)&&!q){w[x.quality]="DroppedFramesLimit";continue}if(!!d&&xr(x.quality,d)&&!q){w[x.quality]="StallsLimit";continue}let oe=$||(ho(r?.max)||Er(x.quality,r.max))&&(ho(r?.min)||xr(x.quality,r.min)),Z=X(c)&&!c?Er(x.quality,i.backgroundVideoQualityLimit):!0;if(!oe||!Z){w[x.quality]="FitsQualityLimits";continue}A||(A=x)}A&&A.bitrate&&fv.next(A.bitrate);let v=A??(0,Qe.default)(y,-1)??s[0],D=l?.last,I=vo(i,f,v,l);return X(l)&&I.quality!==D?.quality&&f({message:`
10
10
  [VIDEO TRACKS ABR]
11
11
  [available video tracks]
12
- ${r.map(A=>`{ id: ${A.id}, quality: ${A.quality}, bitrate: ${A.bitrate}, size: ${A.size?.width}:${A.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,Bs.default)(i??{}).map(([A,ie])=>`${A}: ${ie}`).join(`
16
+ ${(0,Hi.default)(i??{}).map(([x,R])=>`${x}: ${R}`).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: ${p},
31
+ stallsVideoMaxQualityLimit: ${d},
32
+ limitsAreInvalid: ${$},
33
+ maxQualityLimit: ${r?.max},
34
+ minQualityLimit: ${r?.min},
35
35
 
36
36
  [limited video tracks]
37
- ${(0,Bs.default)(F).map(([A,ie])=>`${A}: ${ie}`).join(`
37
+ ${(0,Hi.default)(w).map(([x,R])=>`${x}: ${R}`).join(`
38
38
  `)||"All tracks are available"}
39
39
 
40
- [best video track] ${S?.quality}
41
- [selected video track] ${W?.quality}
42
- `}),W},Xb=(r,e,t,{estimatedThroughput:i,tuning:a,playbackRate:s,forwardBufferHealth:n,history:o,abrLogger:u,stallsPredictedThroughput:l})=>{Wb(t,zb);let c=a.considerPlaybackRate&&ge(s)?s:1,d=[...t].sort(_u(-1)),p=r.bitrate;IL(p);let h=c*Yb(n??.5,a.bitrateAudioFactorAtEmptyBuffer,a.bitrateAudioFactorAtFullBuffer),f,b=Os(r,e,t,a.minVideoAudioRatio),g=l||i;ge(g)&&isFinite(g)&&(f=d.find(T=>ge(T.bitrate)&&ge(b?.bitrate)?g-p>=T.bitrate*h&&T.bitrate>=b.bitrate:!1)),f||(f=b);let v=o?.last,x=f&&Kb(a,u,f,o);return ge(o)&&x?.bitrate!==v?.bitrate&&u({message:`
40
+ [best video track] ${A?.quality}
41
+ [selected video track] ${I?.quality}
42
+ `}),I},yo=(s,{container:e,estimatedThroughput:t,tuning:i,limits:r,reserve:a=0,forwardBufferHealth:n,playbackRate:o,current:u,history:l,visible:c,droppedVideoMaxQualityLimit:p,stallsVideoMaxQualityLimit:d,stallsPredictedThroughput:h,abrLogger:f,panelSize:b})=>{bo(s,So);let{containerSizeFactor:g,containerSizeLimit:S}=mv({container:e,tuning:i,limits:r,panelSize:b}),T=i.considerPlaybackRate&&X(o)?o:1,y=s.filter(R=>!mo(R.quality)).sort((R,re)=>fo(R.quality,re.quality)?-1:1),E=(0,Qe.default)(y,-1)?.quality,P=(0,Qe.default)(y,0)?.quality,$=Ir(r,E,P),O=T*go(n??.5,i.bitrateFactorAtEmptyBuffer,i.bitrateFactorAtFullBuffer),w={},v=y.filter(R=>{let re=!0;if(S)if(R.size)re=R.size.width<=S.width&&R.size.height<=S.height;else{let V=S&&pv(S);re=V?Er(R.quality,V):!0}if(!re)return w[R.quality]="FitsContainer",!1;let B=h||t,q=X(B)&&isFinite(B)&&X(R.bitrate)?B-a>=R.bitrate*O:!0,K=co(r,i.highQualityLimit,i.trafficSavingLimit)&&r?.min===R.quality;if(!q&&!K)return w[R.quality]="FitsThroughput",!1;if(i.lazyQualitySwitch&&X(i.minBufferToSwitchUp)&&u&&!mo(u.quality)&&(n??0)<i.minBufferToSwitchUp&&fo(R.quality,u.quality))return w[R.quality]="Buffer",!1;if(!!p&&xr(R.quality,p)&&!K)return w[R.quality]="DroppedFramesLimit",!1;if(!!d&&xr(R.quality,d)&&!K)return w[R.quality]="StallsLimit",!1;let Z=$||(ho(r?.max)||Er(R.quality,r.max))&&(ho(r?.min)||xr(R.quality,r.min)),L=X(c)&&!c?Er(R.quality,i.backgroundVideoQualityLimit):!0;return!Z||!L?(w[R.quality]="FitsQualityLimits",!1):!0})[0];v&&v.bitrate&&fv.next(v.bitrate);let D=v??(0,Qe.default)(y,-1)??s[0],I=l?.last,x=vo(i,f,D,l);return X(l)&&x.quality!==I?.quality&&f({message:`
43
+ [VIDEO TRACKS ABR]
44
+ [available video tracks]
45
+ ${s.map(R=>`{ id: ${R.id}, quality: ${R.quality}, bitrate: ${R.bitrate}, size: ${R.size?.width}:${R.size?.height} }`).join(`
46
+ `)}
47
+
48
+ [tuning]
49
+ ${(0,Hi.default)(i??{}).map(([R,re])=>`${R}: ${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: ${p},
64
+ stallsVideoMaxQualityLimit: ${d},
65
+ limitsAreInvalid: ${$},
66
+ maxQualityLimit: ${r?.max},
67
+ minQualityLimit: ${r?.min},
68
+
69
+ [limited video tracks]
70
+ ${(0,Hi.default)(w).map(([R,re])=>`${R}: ${re}`).join(`
71
+ `)||"All tracks are available"}
72
+
73
+ [best video track] ${v?.quality}
74
+ [selected video track] ${x?.quality}
75
+ `}),x},To=(s,e,t,{estimatedThroughput:i,tuning:r,playbackRate:a,forwardBufferHealth:n,history:o,abrLogger:u,stallsPredictedThroughput:l})=>{bo(t,So);let c=r.considerPlaybackRate&&X(a)?a:1,p=[...t].sort(Pr(-1)),d=s.bitrate;hv(d);let h=c*go(n??.5,r.bitrateAudioFactorAtEmptyBuffer,r.bitrateAudioFactorAtFullBuffer),f,b=ks(s,e,t,r.minVideoAudioRatio),g=l||i;X(g)&&isFinite(g)&&(f=p.find(y=>X(y.bitrate)&&X(b?.bitrate)?g-d>=y.bitrate*h&&y.bitrate>=b.bitrate:!1)),f||(f=b);let S=o?.last,T=f&&vo(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(y=>`{ id: ${y.id}, bitrate: ${y.bitrate} }`).join(`
46
79
  `)}
47
80
 
48
81
  [tuning]
49
- ${(0,Bs.default)(a??{}).map(([T,P])=>`${T}: ${P}`).join(`
82
+ ${(0,Hi.default)(r??{}).map(([y,E])=>`${y}: ${E}`).join(`
50
83
  `)}
51
84
 
52
85
  [limit params]
53
86
  estimatedThroughput: ${i},
54
87
  stallsPredictedThroughput: ${l},
55
- reserve: ${p},
56
- playbackRate: ${s},
88
+ reserve: ${d},
89
+ playbackRate: ${a},
57
90
  playbackRateFactor: ${c},
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 ne=r=>new URL(r).hostname;import{assertNever as ug,assertNonNullable as lg,combine as GL,debounce as WL,ErrorCategory as cg,filter as dg,filterChanged as YL,isNonNullable as Hu,map as Us,merge as pg,observableFrom as zL,once as KL,Subscription as XL,ValueSubject as ju,videoQualityToHeight as hg,videoSizeToQuality as JL}from"@vkontakte/videoplayer-shared";var ag=M(Lt(),1);var Zb=M(_e(),1),Jb=r=>{if(r instanceof DOMException&&(0,Zb.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"))},we=async(r,e)=>{let t=r.muted;try{await r.play()}catch(i){if(!Jb(i))return!1;if(e&&e(),t)return console.warn(i),!1;r.muted=!0;try{await r.play()}catch(a){return Jb(a)&&(r.muted=!1,console.warn(a)),!1}}return!0};import{isNonNullable as Ns,isNullable as AL,assertNonNullable as $r}from"@vkontakte/videoplayer-shared";var tg=M(Ci(),1);import{isNonNullable as eg,assertNonNullable as _s,now as kL}from"@vkontakte/videoplayer-shared";function oe(){return kL()}function Nu(r){return oe()-r}function Fu(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 ig(r,e,t){let i=(...a)=>{t.apply(null,a),r.removeEventListener(e,i)};r.addEventListener(e,i)}function Vi(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;_s(c);let w=Nu(c),W;if(w<b){W=b-w,setTimeout(g,W);return}b*=2,b>f&&(b=f),n&&n.abort(),n=new a,V()},v=w=>(s=w,R),x=w=>(d=w,R),T=()=>(h="json",R),P=()=>{if(!u){if(--l>=0){g(),i&&i();return}u=!0,d&&d(),t&&t()}},I=w=>(p=w,R),V=()=>{c=oe(),n=new a,n.open("get",r);let w=0,W,A=0,ie=()=>(_s(c),Math.max(c,Math.max(W||0,A||0)));if(s&&n.addEventListener("progress",k=>{let H=oe();s.updateChunk&&k.loaded>w&&(s.updateChunk(ie(),k.loaded-w),w=k.loaded,W=H)}),o&&(n.timeout=o,n.addEventListener("timeout",()=>P())),n.addEventListener("load",()=>{if(u)return;_s(n);let k=n.status;if(k>=200&&k<300){let{response:H,responseType:Y}=n,J=H?.byteLength;if(typeof J=="number"&&s){let re=J-w;re&&s.updateChunk&&s.updateChunk(ie(),re)}Y==="json"&&(!H||!(0,tg.default)(H).length)?P():(d&&d(),e(H))}else P()}),n.addEventListener("error",()=>{P()}),p){let k=()=>{_s(n),n.readyState===XMLHttpRequest.HEADERS_RECEIVED&&(A=oe(),n.removeEventListener("readystatechange",k))};n.addEventListener("readystatechange",k)}return n.responseType=h,n.send(),R},R={withBitrateReporting:v,withParallel:I,withJSONResponse:T,withRetryCount:w=>(l=w,R),withRetryInterval:(w,W)=>(eg(w)&&(b=w),eg(W)&&(f=W),R),withTimeout:w=>(o=w,R),withFinally:x,send:V,abort:()=>{n&&(n.abort(),n=void 0),u=!0,d&&d()}};return R}var Lr=class{constructor(e){this.intervals=[];this.currentRate=0;this.logger=e}_updateRate(e){let t=.2;this.currentRate&&(e<this.currentRate*.1?t=.8:e<this.currentRate*.5?t=.5:e<this.currentRate*.7&&(t=.3)),e=Math.max(1,Math.min(e,100*1024*1024)),this.currentRate=this.currentRate?this.currentRate*(1-t)+e*t:e}_createInterval(e,t,i){return{start:e,end:t,bytes:i}}_doMergeIntervals(e,t){e.start=Math.min(t.start,e.start),e.end=Math.max(t.end,e.end),e.bytes+=t.bytes}_mergeIntervals(e,t){return e.start<=t.end&&t.start<=e.end?(this._doMergeIntervals(e,t),!0):!1}_flushIntervals(){if(!this.intervals.length)return!1;let e=this.intervals[0].start,t=this.intervals[this.intervals.length-1].end-500;if(t-e>2e3){let i=0,a=0;for(;this.intervals.length>0;){let s=this.intervals[0];if(s.end<=t)i+=s.end-s.start,a+=s.bytes,this.intervals.splice(0,1);else{if(s.start>=t)break;{let n=t-s.start,o=s.end-s.start;i+=n;let u=s.bytes*n/o;a+=u,s.start=t,s.bytes-=u}}}if(a>0&&i>0){let s=a*8/(i/1e3);return this._updateRate(s),this.logger(`rate updated, new=${Math.round(s/1024)}K; average=${Math.round(this.currentRate/1024)}K bytes/ms=${Math.round(a)}/${Math.round(i)} interval=${Math.round(t-e)}`),!0}}return!1}_joinIntervals(){let e;do{e=!1;for(let t=0;t<this.intervals.length-1;++t)this._mergeIntervals(this.intervals[t],this.intervals[t+1])&&(this.intervals.splice(t+1,1),e=!0)}while(e)}addInterval(e,t,i){return this.intervals.push(this._createInterval(e,t,i)),this._joinIntervals(),this.intervals.length>100&&(this.logger(`too many intervals (${this.intervals.length}); will merge`,{type:"warn"}),this._doMergeIntervals(this.intervals[1],this.intervals[0]),this.intervals.splice(0,1)),this._flushIntervals()}getBitRate(){return this.currentRate}};var rg=M(Ci(),1);var Rr=class{constructor(e,t,i,a,s){this.pendingQueue=[];this.activeRequests={};this.completeRequests={};this.averageSegmentDuration=2e3;this.lastPrefetchStart=0;this.throttleTimeout=null;this.RETRY_COUNT=e,this.TIMEOUT=t,this.BITRATE_ESTIMATOR=i,this.MAX_PARALLEL_REQUESTS=a,this.logger=s}limitCompleteCount(){let e;for(;(e=Object.keys(this.completeRequests)).length>this._getParallelRequestCount()+2;){let t=e[Math.floor(Math.random()*e.length)];this.logger(`Dropping completed request for url ${t}`,{type:"warn"}),delete this.completeRequests[t]}}_sendRequest(e,t){let i=oe(),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=oe()-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=Vi(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=oe()}_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=oe();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,rg.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 LL}from"@vkontakte/videoplayer-shared";var Fs=1e4,qu=3;var RL=6e4,$L=10,ML=1,CL=500,Mr=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 LL,this.chunkRateEstimator=new Lr(this.params.logger),this._initVideo()}attachSource(e){this.manifestUrl=e,this.urlResolver=Fu(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=Fu(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||{};!Fb({limits:this.autoQualityLimits,highestAvailableHeight:this.manifest[0].video.height,lowestAvailableHeight:(0,ag.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||Ns(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=()=>{ig(a,"progress",()=>{a.buffered.length?(a.currentTime=a.buffered.start(0),this.waitingForFirstBufferAfterSrcChange=!1,s({name:"playing"})):n()})};this.waitingForFirstBufferAfterSrcChange=!0,n()}_initPlayerWith(e){this.bitrate=0,this.rep=0,this.sourceBuffer=0,this.bufferStates=[],this.filesFetcher&&this.filesFetcher.abortAll(),this.filesFetcher=new Rr(qu,Fs,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 P=s&&(!c||c===this.rep);return P||t("Not running!"),P},p=(P,I,V)=>{u&&u.abort(),u=Vi(this.urlResolver.resolve(P,!1),I,V,()=>this._retryCallback()).withTimeout(Fs).withBitrateReporting(this.bitrateSwitcher).withRetryCount(qu).withFinally(()=>{u=null}).send()},h=(P,I,V)=>{$r(this.filesFetcher),o?.abort(),o=this.filesFetcher.requestData(this.urlResolver.resolve(P,!1),I,V,()=>this._retryCallback()).withFinally(()=>{o=null}).send()},f=P=>{let I=i.playbackRate;i.playbackRate!==P&&(t(`Playback rate switch: ${I}=>${P}`),i.playbackRate=P)},b=P=>{this.lowLatency=P,t(`lowLatency changed to ${P}`),g()},g=()=>{if(!this.lowLatency&&!this.params.config.isLiveCatchUpMode)f(1);else{let P=this._getBufferSizeSec();if(this.bufferStates.length<5){f(1);return}let V=oe()-1e4,B=0;for(let N=0;N<this.bufferStates.length;N++){let S=this.bufferStates[N];P=Math.min(P,S.buf),S.ts<V&&B++}this.bufferStates.splice(0,B),t(`update playback rate; minBuffer=${P} drop=${B} jitter=${this.sourceJitter}`);let F=P-ML;this.sourceJitter>=0?F-=this.sourceJitter/2:this.sourceJitter-=1,F>3?f(1.15):F>1?f(1.1):F>.3?f(1.05):f(1)}},v=P=>{let I,V=()=>I&&I.start?I.start.length:0,B=k=>I.start[k]/1e3,F=k=>I.dur[k]/1e3,N=k=>I.fragIndex+k,S=(k,H)=>({chunkIdx:N(k),startTS:B(k),dur:F(k),discontinuity:H}),R=()=>{let k=0;if(I&&I.dur){let H=this.lowLatency?this.params.config.lowLatencyMinBuffer:this.params.config.minBuffer,Y=this.lowLatency?this.params.config.lowLatencyMinBufferSegments:this.params.config.minBufferSegments,J=H;this.sourceJitter>1&&(J+=this.sourceJitter-1);let re=I.dur.length-1;for(;re>=0&&(J-=I.dur[re],!(J<=0));--re);k=Math.min(re,I.dur.length-1-Y),k=Math.max(k,0)}return S(k,!0)},w=k=>{let H=V();if(!(H<=0)){if(Ns(k)){for(let Y=0;Y<H;Y++)if(B(Y)>k)return S(Y)}return R()}},W=k=>{let H=V(),Y=k?k.chunkIdx+1:0,J=Y-I.fragIndex;if(!(H<=0)){if(!k||J<0||J-H>$L)return t(`Resync: offset=${J} bChunks=${H} chunk=`+JSON.stringify(k)),R();if(!(J>=H))return S(Y-I.fragIndex,!1)}},A=(k,H,Y)=>{l&&l.abort(),l=Vi(this.urlResolver.resolve(k,!0,this.lowLatency),H,Y,()=>this._retryCallback()).withTimeout(Fs).withRetryCount(qu).withFinally(()=>{l=null}).withJSONResponse().send()};return{seek:(k,H)=>{A(P,Y=>{if(!d())return;I=Y;let J=!!I.lowLatency;J!==this.lowLatency&&b(J);let re=0;for(let Se=0;Se<I.dur.length;++Se)re+=I.dur[Se];re>0&&($r(this.filesFetcher),this.filesFetcher.optimizeForSegDuration(re/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(w(H))},()=>this._handleNetworkError())},nextChunk:W}},x=()=>{s=!1,o&&o.abort(),u&&u.abort(),l&&l.abort(),$r(this.filesFetcher),this.filesFetcher.abortAll()};return c={start:P=>{let{videoElement:I,logger:V}=this.params,B=v(e.jidxUrl),F,N,S,R,w=0,W,A,ie,k=()=>{W&&(clearTimeout(W),W=void 0);let $=Math.max(CL,1e3*(this._getBufferSizeSec()-this.sourceJitter-5)),Te=w+$,me=oe(),ae=Math.min(1e4,Te-me);w=me;let Be=()=>{l||d()&&B.seek(()=>{d()&&(w=oe(),H(),k())})};ae>0?W=window.setTimeout(()=>{this.paused?k():Be()},ae):Be()},H=()=>{let $;for(;$=B.nextChunk(R);)R=$,ye($);let Te=B.nextChunk(S);if(Te){if(S&&Te.discontinuity){V("Detected discontinuity; restarting playback"),this.paused?k():(x(),this._initPlayerWith(e));return}Se(Te)}else k()},Y=($,Te)=>{if(!d()||!this.sourceBuffer)return;let me,ae,Be,vt=Xe=>{window.setTimeout(()=>{d()&&Y($,Te)},Xe)};if(this.sourceBuffer.updating)V("Source buffer is updating; delaying appendBuffer"),vt(100);else{let Xe=oe(),Le=I.currentTime;!this.paused&&I.buffered.length>1&&A===Le&&Xe-ie>500&&(V("Stall suspected; trying to fix"),this._fixupStall()),A!==Le&&(A=Le,ie=Xe);let St=this._getBufferSizeSec();if(St>30)V(`Buffered ${St} seconds; delaying appendBuffer`),vt(2e3);else try{this.sourceBuffer.appendBuffer($),this.videoPlayStarted?(this.bufferStates.push({ts:Xe,buf:St}),g(),this.bufferStates.length>200&&this.bufferStates.shift()):this.shouldPlay()&&(this.videoPlayStarted=!0,this._playVideoElement()),Te&&Te()}catch(Je){if(Je.name==="QuotaExceededError")V("QuotaExceededError; delaying appendBuffer"),Be=this.sourceBuffer.buffered.length,Be!==0&&(me=this.sourceBuffer.buffered.start(0),ae=Le,ae-me>4&&this.sourceBuffer.remove(me,ae-3)),vt(1e3);else throw Je}}},J=()=>{N&&F&&(V([`Appending chunk, sz=${N.byteLength}:`,JSON.stringify(S)]),Y(N,function(){N=null,H()}))},re=$=>e.fragUrlTemplate.replace("%%id%%",$.chunkIdx),Se=$=>{d()&&h(re($),(Te,me)=>{if(d()){if(me/=1e3,N=Te,S=$,n=$.startTS,me){let ae=Math.min(10,$.dur/me);this.downloadRate=this.downloadRate?(1-.3)*this.downloadRate+.3*ae:ae}J()}},()=>this._handleNetworkError())},ye=$=>{d()&&($r(this.filesFetcher),this.filesFetcher.prefetch(this.urlResolver.resolve(re($),!1)))},j=$=>{d()&&(e.cachedHeader=$,Y($,()=>{F=!0,J()}))};s=!0,B.seek($=>{if(d()){if(w=oe(),!$){k();return}R=$,!AL(P)||$.startTS>P?Se($):(S=$,H())}},P),e.cachedHeader?j(e.cachedHeader):p(e.headerUrl,j,()=>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(),Ns(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,$r(this.bitrateSwitcher),this.bitrateSwitcher.notifySwitch(this.bitrate),this.rep.start(a),i({name:"qualitySwitch",quality:e}))}_qualityAvailable(e){return Ns(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=oe();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&&Nu(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=oe();d<o&&(n=p),o=d}}}_fetchManifest(e,t,i){this.manifestRequest=Vi(this.urlResolver.resolve(e,!0),t,i,()=>this._retryCallback()).withJSONResponse().withTimeout(Fs).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;we(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))},RL))}_initManifest(){this._fetchManifest(this.manifestUrl,e=>{this.destroyed||(this._handleManifestUpdate(e),this._refetchManifest(this.manifestUrl))},()=>this._handleNetworkError())}};var og=M(Ii(),1);import{debounce as DL,filter as sg,fromEvent as VL,interval as BL,isHigher as OL,isInvariantQuality as _L,isLower as NL,merge as FL,Subject as ng,Subscription as qL}from"@vkontakte/videoplayer-shared";var Uu=class{constructor(){this.onDroopedVideoFramesLimit$=new ng;this.subscription=new qL;this.playing=!1;this.tracks=[];this.forceChecker$=new ng;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&&!_L(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&&OL(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(VL(this.video,"resize").subscribe(this.handleChangeVideoQuality));let e=BL(this.droppedFramesChecker.checkTime).pipe(sg(()=>this.playing),sg(()=>{let a=!!this.isForceCheckCounter;return a&&(this.isForceCheckCounter-=1),!a})),t=this.forceChecker$.pipe(DL(this.droppedFramesChecker.checkTime)),i=FL(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,og.default)(this.limitCounts).filter(([,i])=>i>=this.droppedFramesChecker.countLimit).sort(([i],[a])=>NL(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}},qs=Uu;import{map as UL,Observable as HL}from"@vkontakte/videoplayer-shared";import{fromEvent as jL}from"@vkontakte/videoplayer-shared";var Cr=()=>!!window.documentPictureInPicture?.window||!!document.pictureInPictureElement;var QL=(r,e)=>new HL(t=>{if(!window.IntersectionObserver)return;let i={root:null},a=new IntersectionObserver((n,o)=>{n.forEach(u=>t.next(u.isIntersecting||Cr()))},{...i,...e});a.observe(r);let s=jL(document,"visibilitychange").pipe(UL(n=>!document.hidden||Cr())).subscribe(n=>t.next(n));return()=>{a.unobserve(r),s.unsubscribe()}}),qe=QL;var ZL=["paused","playing","ready"],eR=["paused","playing","ready"],Dr=class{constructor(e){this.subscription=new XL;this.videoState=new C("stopped");this.representations$=new ju([]);this.droppedFramesManager=new qs;this.maxSeekBackTime$=new ju(1/0);this.zeroTime$=new ju(void 0);this.liveOffset=new Zt;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:cg.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=At(a.name)??JL(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),Hu(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,Qu.default)(eR,e)&&(n||o)){this.prepare();return}if(a?.to!=="paused"&&s.state==="requested"&&(0,Qu.default)(ZL,e)){this.seek(s.position-this.liveOffset.getTotalPausedTime());return}switch(e){case"stopped":this.videoState.startTransitionTo("manifest_ready"),this.dash.attachSource(de(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(de(this.params.source.url,u))}return;default:return ug(e)}};this.textTracksManager=new Fe(e.source.url),this.params=e,this.log=this.params.dependencies.logger.createComponentLog("DashLiveProvider");let t=a=>{e.output.error$.next({id:"DashLiveProvider",category:cg.WTF,message:"DashLiveProvider internal logic error",thrown:a})};this.subscription.add(pg(this.videoState.stateChangeStarted$.pipe(Us(a=>({transition:a,type:"start"}))),this.videoState.stateChangeEnded$.pipe(Us(a=>({transition:a,type:"end"})))).subscribe(({transition:a,type:s})=>{this.log({message:`[videoState change] ${s}: ${JSON.stringify(a)}`})})),this.video=Ie(e.container,e.tuning),this.params.output.element$.next(this.video),this.dash=this.createLiveDashPlayer(),this.subscription.add(this.dash.soundProhibitedEvent$.subscribe(this.params.output.soundProhibitedEvent$)),this.params.output.duration$.next(1/0),this.params.output.position$.next(0),this.params.output.isLive$.next(!0),this.params.output.canChangePlaybackSpeed$.next(!1),this.params.output.hostname$.next(ne(this.params.source.url)),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.textTracksManager.connect(this.video,this.params.desiredState,this.params.output);let i=ke(this.video);this.subscription.add(()=>i.destroy()),this.subscription.add(this.representations$.pipe(Us(a=>a.map(({track:s})=>s)),dg(a=>!!a.length),KL()).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(YL(),Us(a=>-a/1e3)).subscribe(this.params.output.duration$)).add(GL({zeroTime:this.zeroTime$.pipe(dg(Hu)),position:i.timeUpdate$}).subscribe(({zeroTime:a,position:s})=>this.params.output.liveTime$.next(a+s*1e3),t)).add(rt(this.video,this.params.desiredState.isLooped,t)).add(xe(this.video,this.params.desiredState.volume,i.volumeState$,t)).add(i.volumeState$.subscribe(this.params.output.volume$,t)).add(Ne(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(qe(this.video).subscribe(this.params.output.elementVisible$)).add(this.params.desiredState.autoVideoTrackLimits.stateChangeStarted$.subscribe(({to:{max:a,min:s}})=>{this.dash.setAutoQualityLimits({max:a&&hg(a),min:s&&hg(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 ug(a.to)}},t)).add(pg(e.desiredState.playbackState.stateChangeStarted$,e.desiredState.seekState.stateChangeEnded$,e.desiredState.videoTrack.stateChangeStarted$,e.desiredState.autoVideoTrackSwitching.stateChangeStarted$,this.videoState.stateChangeEnded$,this.droppedFramesManager.onDroopedVideoFramesLimit$,zL(["init"])).pipe(WL(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),Ee(this.video)}createLiveDashPlayer(){let e=new Mr({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&&Hu(t)?t:$t(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;lg(l,"Representations missing"),this.dash.startPlay(l,i)}}setVideoTrack(e){let t=this.representations$.getValue().find(({track:i})=>i.id===e.id)?.representation;lg(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(de(this.params.source.url,n)),a&&this.dash.pause(),this.liveOffset.resetTo(n,a)}};var mg=Dr;var BS=M(_e(),1);var Bi=(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 VM,assertNonNullable as BM,debounce as OM,ErrorCategory as CS,filter as Ml,filterChanged as Ia,fromEvent as _M,isNonNullable as DS,map as Cl,merge as cn,observableFrom as Dl,once as VS,Subscription as NM}from"@vkontakte/videoplayer-shared";var Hs=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}},Oi=class extends Hs{constructor(){super(),this.listeners||Hs.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)}},Vr=class{constructor(){Object.defineProperty(this,"signal",{value:new Oi,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&&(Vr.prototype[Symbol.toStringTag]="AbortController",Oi.prototype[Symbol.toStringTag]="AbortSignal");function js(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 Gu(r){typeof r=="function"&&(r={fetch:r});let{fetch:e,Request:t=e.Request,AbortController:i,__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL:a=!1}=r;if(!js({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 Br=js({fetch:window.fetch,Request:window.Request,AbortController:window.AbortController}),fg=Br?Gu({fetch:window.fetch,Request:window.Request,AbortController:window.AbortController}):void 0,st=Br?fg.fetch:window.fetch,eF=Br?fg.Request:window.Request,pe=Br?Vr:window.AbortController,tF=Br?Oi:window.AbortSignal;var Al=M(Yu(),1);var tv=M(ev(),1);import{ErrorCategory as _r}from"@vkontakte/videoplayer-shared";var iv=r=>{if(!r)return{id:"EmptyResponse",category:_r.PARSER,message:"Empty response"};if(r.length<=2&&r.match(/^\d+$/))return{id:`UVError#${r}`,category:_r.NETWORK,message:`UV Error ${r}`};let e=(0,tv.default)(r).substring(0,100).toLowerCase();if(e.startsWith("<!doctype")||e.startsWith("<html>")||e.startsWith("<body>")||e.startsWith("<head>"))return{id:"UnexpectedHTML",category:_r.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:_r.PARSER,message:"XML parsing error"}:{id:"XMLParserLogicError",category:_r.PARSER,message:"Response is valid XML, but parser failed"}};var Mt=(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 Pl,assertNonNullable as Hi,combine as ji,ErrorCategory as nt,filter as rn,filterChanged as Sa,flattenObject as ya,fromEvent as bt,getTraceSubscriptionMethod as gM,interval as kl,isNonNullable as Ta,isNullable as kS,map as Qi,merge as si,now as wl,Subject as an,Subscription as wS,tap as vM,throttle as SM,ValueSubject as K}from"@vkontakte/videoplayer-shared";var Gs=M(_e(),1),qi=M(Lt(),1),Ws=M(Yu(),1);var NR=(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)},FR=r=>window.clearTimeout(r),rv=r=>typeof r=="function"&&r?.toString().endsWith("{ [native code] }"),av=!rv(window.requestIdleCallback)||!rv(window.cancelIdleCallback),Zu=av?NR:window.requestIdleCallback,Nr=av?FR:window.cancelIdleCallback;var hS=M(xs(),1);import{assertNever as qR,ErrorCategory as sv,Subject as nv}from"@vkontakte/videoplayer-shared";var UR=18,ov=!1;try{ov=O.browser.isSafari&&!!O.browser.safariVersion&&O.browser.safariVersion<=UR}catch(r){console.error(r)}var el=class{constructor(e){this.bufferFull$=new nv;this.error$=new nv;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:sv.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)};ov&&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:sv.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:qR(t)}}},uv=el;var tl=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 Dt,assertNonNullable as Ae,ErrorCategory as ft,fromEvent as vl,getExponentialDelay as Sl,isNonNullable as Fi,isNullable as he,now as Qs,once as aM,Subject as sM,Subscription as nM,ValueSubject as ii}from"@vkontakte/videoplayer-shared";var q=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 _i=class extends q{};var Fr=class extends q{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 qr=class extends q{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 Ur=class extends q{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var z=class extends q{constructor(e,t){super(e,t);let i=this.readUint32();this.version=i>>>24,this.flags=i&16777215}};var Hr=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 jr=class extends q{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Qr=class extends q{constructor(e,t){super(e,t),this.data=this.content}};var ei=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 Gr=class extends q{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Wr=class extends q{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Yr=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 zr=class extends z{constructor(e,t){super(e,t),this.poseYawDegrees=this.readUint32(),this.posePitchDegrees=this.readUint32(),this.poseRollDegrees=this.readUint32()}};var Kr=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 Xr=class extends q{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Jr=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 Zr=class extends q{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var ea=class extends q{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var ta=class extends z{constructor(e,t){super(e,t),this.sequenceNumber=this.readUint32()}};var ia=class extends q{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var ra=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 aa=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 sa=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 na=class extends q{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var oa=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 ua=class extends q{constructor(e,t){super(e,t),this.children=this.scanForBoxes(new DataView(this.content.buffer,this.content.byteOffset+78,this.content.byteLength-78))}};var jR={ftyp:qr,moov:Ur,mvhd:Hr,moof:jr,mdat:Qr,sidx:ei,trak:Gr,mdia:Xr,mfhd:ta,tkhd:Jr,traf:ia,tfhd:ra,tfdt:aa,trun:sa,minf:Zr,sv3d:Wr,st3d:Yr,prhd:zr,proj:ea,equi:Kr,uuid:Fr,stbl:na,stsd:oa,avc1:ua,unknown:_i},ht=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=jR[e];return i?new i(t,new r):new _i(t,new r)}};var Ct=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 GR=new TextDecoder("ascii"),WR=r=>GR.decode(new DataView(r.buffer,r.byteOffset+4,4))==="ftyp",YR=r=>{let e=new ei(r,new ht),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})},zR=(r,e)=>{let i=new ht().parse(r),a=new Ct(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)},KR=r=>{let t=new ht().parse(r),i=new Ct(t),a={},s=i.findAll("uuid");return s.length?s[s.length-1]:a},XR=r=>{let t=new ht().parse(r);return new Ct(t).find("sidx")?.timescale},JR=(r,e)=>{let i=new ht().parse(r),s=new Ct(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},ZR=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 ht().parse(r),a=new Ct(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},lv={validateData:WR,parseInit:ZR,getIndexRange:()=>{},parseSegments:YR,parseFeedableSegmentChunk:zR,getChunkEndTime:JR,getServerLatencyTimestamps:KR,getTimescaleFromIndex:XR};var ca=M(_e(),1);import{assertNonNullable as rl,isNonNullable as hv,isNullable as t$}from"@vkontakte/videoplayer-shared";import{assertNever as e$}from"@vkontakte/videoplayer-shared";var cv={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"}},dv=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=la(r,t),a=i in cv,s=a?cv[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=la(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}},la=(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},ze=(r,e)=>{switch(e){case"int":return r.getInt8(0);case"uint":return la(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:e$(e)}},ti=(r,e)=>{let t=0;for(;t<r.byteLength;){let i=new DataView(r.buffer,r.byteOffset+t),a=dv(i);if(!e(a))return;a.type==="master"&&ti(a.value,e),t=a.value.byteOffset-r.byteOffset+a.valueSize}},pv=r=>{if(r.getUint32(0)!==440786851)return!1;let e,t,i,a=dv(r);return ti(a.value,({tag:s,type:n,value:o})=>(s===17143?e=ze(o,n):s===17026?t=ze(o,n):s===17029&&(i=ze(o,n)),!0)),(e===void 0||e<=1)&&t!==void 0&&t==="webm"&&(i===void 0||i<=2)};var mv=[357149030,290298740,374648427,174,224,30320,30321,30322,272869232,524531317,475249515,423732329,307544935],i$=[231,22612,22743,167,171,163,160,175],r$=r=>{let e,t,i,a,s=!1,n=!1,o=!1,u,l,c=!1,d=0;return ti(r,({tag:p,type:h,value:f,valueSize:b})=>{if(p===21419){let g=ze(f,h);l=la(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=ze(f,h):p===17545?a=ze(f,h):p===21420&&l===475249515?u=ze(f,h):p===374648427?ti(f,({tag:g,type:v,value:x})=>g===30321?(c=ze(x,v)===1,!1):!0):s&&n&&(0,ca.default)(mv,p)&&(o=!0),!o}),rl(e,"Failed to parse webm Segment start"),rl(t,"Failed to parse webm Segment end"),rl(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}}}},a$=r=>{if(t$(r.cuesSeekPosition))return;let e=r.segmentStart+r.cuesSeekPosition,t=1024*1024;return{from:e,to:e+t}},s$=(r,e)=>{let t=!1,i=!1,a=o=>hv(o.time)&&hv(o.position),s=[],n;return ti(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=ze(l,u));break;case 183:break;case 241:n&&(n.position=ze(l,u));break;default:t&&(0,ca.default)(mv,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}}})},n$=r=>{let e=0,t=!1;try{ti(r,i=>i.tag===524531317?i.tagSize<=r.byteLength?(e=i.tagSize,!1):(e+=i.tagHeaderSize,!0):(0,ca.default)(i$,i.tag)?(e+i.tagSize<=r.byteLength&&(e+=i.tagSize,t||=(0,ca.default)([163,160,175],i.tag)),!0):!1)}catch{}return e>0&&e<=r.byteLength&&t?new DataView(r.buffer,r.byteOffset,e):null},fv={validateData:pv,parseInit:r$,getIndexRange:a$,parseSegments:s$,parseFeedableSegmentChunk:n$};var da=r=>{let e=/^(.+)\/([^;]+)(?:;.*)?$/.exec(r);if(e){let[,t,i]=e;if(t==="audio"||t==="video")switch(i){case"webm":return fv;case"mp4":return lv}}throw new ReferenceError(`Unsupported mime type ${r}`)};var fl=M(Vv(),1),oS=M(Ii(),1),uS=M(Xv(),1),lS=M(Lt(),1),bl=M(Ci(),1);var Jv=M(_e(),1),ll=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,Jv.default)(["6E","7A","F4"],o)}}return!1};import{isNonNullable as rM,isNullable as sS}from"@vkontakte/videoplayer-shared";var Zv=r=>{if(r.includes("/")){let e=r.split("/");return parseInt(e[0])/parseInt(e[1])}else return parseFloat(r)};var eS=r=>{try{let e=tM(),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 tM(){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},Io=(s,e,t,{estimatedThroughput:i,tuning:r,playbackRate:a,forwardBufferHealth:n,history:o,abrLogger:u,stallsPredictedThroughput:l})=>{bo(t,So);let c=r.considerPlaybackRate&&X(a)?a:1,p=ov.get(t);p||(p=[...t].sort(Pr(-1)),ov.set(t,p));let d=s.bitrate;hv(d);let h=c*go(n??.5,r.bitrateAudioFactorAtEmptyBuffer,r.bitrateAudioFactorAtFullBuffer),f,b=Rs(s,e,t,r.minVideoAudioRatio),g=l||i;X(g)&&isFinite(g)&&(f=p.find(y=>X(y.bitrate)&&X(b?.bitrate)?g-d>=y.bitrate*h&&y.bitrate>=b.bitrate:!1)),f||(f=b);let S=o?.last,T=f&&vo(r,u,f,o);return X(o)&&T?.bitrate!==S?.bitrate&&u({message:`
97
+ [AUDIO TRACKS ABR]
98
+ [available audio tracks]
99
+ ${t.map(y=>`{ id: ${y.id}, bitrate: ${y.bitrate} }`).join(`
100
+ `)}
101
+
102
+ [tuning]
103
+ ${(0,Hi.default)(r??{}).map(([y,E])=>`${y}: ${E}`).join(`
104
+ `)}
105
+
106
+ [limit params]
107
+ estimatedThroughput: ${i},
108
+ stallsPredictedThroughput: ${l},
109
+ reserve: ${d},
110
+ playbackRate: ${a},
111
+ playbackRateFactor: ${c},
112
+ forwardBufferHealth: ${n},
113
+ bitrateFactor: ${h},
114
+ minBufferToSwitchUp: ${r.minBufferToSwitchUp},
115
+
116
+ [selected audio track] ${T?.id}
117
+ `}),T};var xe=s=>new URL(s).hostname;import{assertNever as wv,assertNonNullable as Av,combine as L$,debounce as M$,ErrorCategory as kv,filter as Rv,filterChanged as $$,isNonNullable as qc,map as wo,merge as Lv,observableFrom as B$,once as D$,Subscription as C$,ValueSubject as Hc,videoQualityToHeight as Mv,videoSizeToQuality as V$}from"@vkontakte/videoplayer-shared";var Iv=C(kt(),1);var gv=C(ft(),1),bv=s=>{if(s instanceof DOMException&&(0,gv.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(!bv(i))return!1;if(e&&e(),t)return console.warn(i),!1;s.muted=!0;try{await s.play()}catch(r){return bv(r)&&(s.muted=!1,console.warn(r)),!1}}return!0};import{isNonNullable as Eo,isNullable as p$,assertNonNullable as $s}from"@vkontakte/videoplayer-shared";var vv=C(Ui(),1);import{isNonNullable as Sv,assertNonNullable as xo,now as c$}from"@vkontakte/videoplayer-shared";function Re(){return c$()}function _c(s){return Re()-s}function Fc(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 yv(s,e,t){let i=(...r)=>{t.apply(null,r),s.removeEventListener(e,i)};s.addEventListener(e,i)}function wr(s,e,t,i){let r=window.XMLHttpRequest,a,n,o,u=!1,l=0,c,p,d=!1,h="arraybuffer",f=7e3,b=2e3,g=()=>{if(u)return;xo(c);let I=_c(c),x;if(I<b){x=b-I,setTimeout(g,x);return}b*=2,b>f&&(b=f),n&&n.abort(),n=new r,$()},S=I=>(a=I,D),T=I=>(p=I,D),y=()=>(h="json",D),E=()=>{if(!u){if(--l>=0){g(),i&&i();return}u=!0,p&&p(),t&&t()}},P=I=>(d=I,D),$=()=>{c=Re(),n=new r,n.open("get",s);let I=0,x,R=0,re=()=>(xo(c),Math.max(c,Math.max(x||0,R||0)));if(a&&n.addEventListener("progress",B=>{let q=Re();a.updateChunk&&B.loaded>I&&(a.updateChunk(re(),B.loaded-I),I=B.loaded,x=q)}),o&&(n.timeout=o,n.addEventListener("timeout",()=>E())),n.addEventListener("load",()=>{if(u)return;xo(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 ge=ne-I;ge&&a.updateChunk&&a.updateChunk(re(),ge)}K==="json"&&(!q||!(0,vv.default)(q).length)?E():(p&&p(),e(q))}else E()}),n.addEventListener("error",()=>{E()}),d){let B=()=>{xo(n),n.readyState===XMLHttpRequest.HEADERS_RECEIVED&&(R=Re(),n.removeEventListener("readystatechange",B))};n.addEventListener("readystatechange",B)}return n.responseType=h,n.send(),D},D={withBitrateReporting:S,withParallel:P,withJSONResponse:y,withRetryCount:I=>(l=I,D),withRetryInterval:(I,x)=>(Sv(I)&&(b=I),Sv(x)&&(f=x),D),withTimeout:I=>(o=I,D),withFinally:T,send:$,abort:()=>{n&&(n.abort(),n=void 0),u=!0,p&&p()}};return D}var Ls=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 Tv=C(Ui(),1);var Ms=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=Re(),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=Re()-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=wr(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=Re()}_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=Re();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,Tv.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 h$}from"@vkontakte/videoplayer-shared";var Po=1e4,Nc=3;var f$=6e4,m$=10,b$=1,g$=500,Bs=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 h$,this.chunkRateEstimator=new Ls(this.params.logger),this._initVideo()}attachSource(e){this.manifestUrl=e,this.urlResolver=Fc(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=Fc(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*(_.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||{};!nv({limits:this.autoQualityLimits,highestAvailableHeight:this.manifest[0].video.height,lowestAvailableHeight:(0,Iv.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||Eo(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=()=>{yv(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 Ms(Nc,Po,this.bitrateSwitcher,this.params.config.maxParallelRequests,this.params.logger),this._setVideoSrc(e,()=>this._switchToQuality(e))}_representation(e){let{logger:t,videoElement:i,playerCallback:r}=this.params,a=!1,n=null,o=null,u=null,l=null,c=!1,p=()=>{let E=a&&(!c||c===this.rep);return E||t("Not running!"),E},d=(E,P,$)=>{u&&u.abort(),u=wr(this.urlResolver.resolve(E,!1),P,$,()=>this._retryCallback()).withTimeout(Po).withBitrateReporting(this.bitrateSwitcher).withRetryCount(Nc).withFinally(()=>{u=null}).send()},h=(E,P,$)=>{$s(this.filesFetcher),o?.abort(),o=this.filesFetcher.requestData(this.urlResolver.resolve(E,!1),P,$,()=>this._retryCallback()).withFinally(()=>{o=null}).send()},f=E=>{let P=i.playbackRate;i.playbackRate!==E&&(t(`Playback rate switch: ${P}=>${E}`),i.playbackRate=E)},b=E=>{this.lowLatency=E,t(`lowLatency changed to ${E}`),g()},g=()=>{if(!this.lowLatency&&!this.params.config.isLiveCatchUpMode)f(1);else{let E=this._getBufferSizeSec();if(this.bufferStates.length<5){f(1);return}let $=Re()-1e4,O=0;for(let A=0;A<this.bufferStates.length;A++){let v=this.bufferStates[A];E=Math.min(E,v.buf),v.ts<$&&O++}this.bufferStates.splice(0,O),t(`update playback rate; minBuffer=${E} drop=${O} jitter=${this.sourceJitter}`);let w=E-b$;this.sourceJitter>=0?w-=this.sourceJitter/2:this.sourceJitter-=1,w>3?f(1.15):w>1?f(1.1):w>.3?f(1.05):f(1)}},S=E=>{let P,$=()=>P&&P.start?P.start.length:0,O=B=>P.start[B]/1e3,w=B=>P.dur[B]/1e3,A=B=>P.fragIndex+B,v=(B,q)=>({chunkIdx:A(B),startTS:O(B),dur:w(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 ge=P.dur.length-1;for(;ge>=0&&(ne-=P.dur[ge],!(ne<=0));--ge);B=Math.min(ge,P.dur.length-1-K),B=Math.max(B,0)}return v(B,!0)},I=B=>{let q=$();if(!(q<=0)){if(Eo(B)){for(let K=0;K<q;K++)if(O(K)>B)return v(K)}return D()}},x=B=>{let q=$(),K=B?B.chunkIdx+1:0,ne=K-P.fragIndex;if(!(q<=0)){if(!B||ne<0||ne-q>m$)return t(`Resync: offset=${ne} bChunks=${q} chunk=`+JSON.stringify(B)),D();if(!(ne>=q))return v(K-P.fragIndex,!1)}},R=(B,q,K)=>{l&&l.abort(),l=wr(this.urlResolver.resolve(B,!0,this.lowLatency),q,K,()=>this._retryCallback()).withTimeout(Po).withRetryCount(Nc).withFinally(()=>{l=null}).withJSONResponse().send()};return{seek:(B,q)=>{R(E,K=>{if(!p())return;P=K;let ne=!!P.lowLatency;ne!==this.lowLatency&&b(ne);let ge=0;for(let oe=0;oe<P.dur.length;++oe)ge+=P.dur[oe];ge>0&&($s(this.filesFetcher),this.filesFetcher.optimizeForSegDuration(ge/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(),$s(this.filesFetcher),this.filesFetcher.abortAll()};return c={start:E=>{let{videoElement:P,logger:$}=this.params,O=S(e.jidxUrl),w,A,v,D,I=0,x,R,re,B=()=>{x&&(clearTimeout(x),x=void 0);let V=Math.max(g$,1e3*(this._getBufferSizeSec()-this.sourceJitter-5)),Pe=I+V,Se=Re(),te=Math.min(1e4,Pe-Se);I=Se;let ye=()=>{l||p()&&O.seek(()=>{p()&&(I=Re(),q(),B())})};te>0?x=window.setTimeout(()=>{this.paused?B():ye()},te):ye()},q=()=>{let V;for(;V=O.nextChunk(D);)D=V,Z(V);let Pe=O.nextChunk(v);if(Pe){if(v&&Pe.discontinuity){$("Detected discontinuity; restarting playback"),this.paused?B():(T(),this._initPlayerWith(e));return}oe(Pe)}else B()},K=(V,Pe)=>{if(!p()||!this.sourceBuffer)return;let Se,te,ye,rt=qe=>{window.setTimeout(()=>{p()&&K(V,Pe)},qe)};if(this.sourceBuffer.updating)$("Source buffer is updating; delaying appendBuffer"),rt(100);else{let qe=Re(),ce=P.currentTime;!this.paused&&P.buffered.length>1&&R===ce&&qe-re>500&&($("Stall suspected; trying to fix"),this._fixupStall()),R!==ce&&(R=ce,re=qe);let st=this._getBufferSizeSec();if(st>30)$(`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()),Pe&&Pe()}catch(Ee){if(Ee.name==="QuotaExceededError")$("QuotaExceededError; delaying appendBuffer"),ye=this.sourceBuffer.buffered.length,ye!==0&&(Se=this.sourceBuffer.buffered.start(0),te=ce,te-Se>4&&this.sourceBuffer.remove(Se,te-3)),rt(1e3);else throw Ee}}},ne=()=>{A&&w&&($([`Appending chunk, sz=${A.byteLength}:`,JSON.stringify(v)]),K(A,function(){A=null,q()}))},ge=V=>e.fragUrlTemplate.replace("%%id%%",V.chunkIdx),oe=V=>{p()&&h(ge(V),(Pe,Se)=>{if(p()){if(Se/=1e3,A=Pe,v=V,n=V.startTS,Se){let te=Math.min(10,V.dur/Se);this.downloadRate=this.downloadRate?(1-.3)*this.downloadRate+.3*te:te}ne()}},()=>this._handleNetworkError())},Z=V=>{p()&&($s(this.filesFetcher),this.filesFetcher.prefetch(this.urlResolver.resolve(ge(V),!1)))},L=V=>{p()&&(e.cachedHeader=V,K(V,()=>{w=!0,ne()}))};a=!0,O.seek(V=>{if(p()){if(I=Re(),!V){B();return}D=V,!p$(E)||V.startTS>E?oe(V):(v=V,q())}},E),e.cachedHeader?L(e.cachedHeader):d(e.headerUrl,L,()=>this._handleNetworkError())},stop:T,getTimestampSec:()=>n},c}_switchToQuality(e){let{logger:t,playerCallback:i}=this.params,r;e.bitrate!==this.bitrate&&(this.rep&&(r=this.rep.getTimestampSec(),Eo(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,$s(this.bitrateSwitcher),this.bitrateSwitcher.notifySwitch(this.bitrate),this.rep.start(r),i({name:"qualitySwitch",quality:e}))}_qualityAvailable(e){return Eo(this.manifest.find(t=>t.name===e))}_initBitrateSwitcher(){let{logger:e,playerCallback:t}=this.params,i=p=>{if(!this.autoQuality)return;let d,h,f;if(this.currentManifestEntry&&this._qualityAvailable(this.currentManifestEntry.name)&&p<this.bitrate&&(h=this._getBufferSizeSec(),f=p/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(p)}`);return}d=this._selectQuality(p),d?this._switchToQuality(d):e(`Could not find quality by bitrate ${p}`)},a={updateChunk:(d,h)=>{let f=Re();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 p=a.get();if(p&&o&&this.autoQuality){if(u&&p>o&&_c(n)<3e4)return;i(p)}u=this.autoQuality};return{updateChunk:(p,d)=>{let h=a.updateChunk(p,d);return h&&l(),h},notifySwitch:p=>{let d=Re();p<o&&(n=d),o=p}}}_fetchManifest(e,t,i){this.manifestRequest=wr(this.urlResolver.resolve(e,!0),t,i,()=>this._retryCallback()).withJSONResponse().withTimeout(Po).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))},f$))}_initManifest(){this._fetchManifest(this.manifestUrl,e=>{this.destroyed||(this._handleManifestUpdate(e),this._refetchManifest(this.manifestUrl))},()=>this._handleNetworkError())}};var Pv=C(Bi(),1);import{debounce as S$,filter as xv,fromEvent as v$,interval as y$,isHigher as T$,isInvariantQuality as I$,isLower as x$,merge as E$,Subject as Ev,Subscription as P$}from"@vkontakte/videoplayer-shared";var Uc=class{constructor(){this.onDroopedVideoFramesLimit$=new Ev;this.subscription=new P$;this.playing=!1;this.tracks=[];this.forceChecker$=new Ev;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&&!I$(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&&T$(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(v$(this.video,"resize").subscribe(this.handleChangeVideoQuality));let e=y$(this.droppedFramesChecker.checkTime).pipe(xv(()=>this.playing),xv(()=>{let r=!!this.isForceCheckCounter;return r&&(this.isForceCheckCounter-=1),!r})),t=this.forceChecker$.pipe(S$(this.droppedFramesChecker.checkTime)),i=E$(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,Pv.default)(this.limitCounts).filter(([,i])=>i>=this.droppedFramesChecker.countLimit).sort(([i],[r])=>x$(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}},Ar=Uc;import{map as w$,Observable as A$}from"@vkontakte/videoplayer-shared";import{fromEvent as k$}from"@vkontakte/videoplayer-shared";var Ds=()=>!!window.documentPictureInPicture?.window||!!document.pictureInPictureElement;var R$=(s,e)=>new A$(t=>{if(!window.IntersectionObserver)return;let i={root:null},r=new IntersectionObserver((n,o)=>{n.forEach(u=>t.next(u.isIntersecting||Ds()))},{...i,...e});r.observe(s);let a=k$(document,"visibilitychange").pipe(w$(n=>!document.hidden||Ds())).subscribe(n=>t.next(n));return()=>{r.unobserve(s),a.unsubscribe()}}),et=R$;var O$=["paused","playing","ready"],_$=["paused","playing","ready"],Cs=class{constructor(e){this.subscription=new C$;this.videoState=new F("stopped");this.representations$=new Hc([]);this.droppedFramesManager=new Ar;this.maxSeekBackTime$=new Hc(1/0);this.zeroTime$=new Hc(void 0);this.liveOffset=new qi;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:kv.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)??V$(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),qc(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,jc.default)(_$,e)&&(n||o)){this.prepare();return}if(r?.to!=="paused"&&a.state==="requested"&&(0,jc.default)(O$,e)){this.seek(a.position-this.liveOffset.getTotalPausedTime());return}switch(e){case"stopped":this.videoState.startTransitionTo("manifest_ready"),this.dash.attachSource(be(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(be(this.params.source.url,u))}return;default:return wv(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:kv.WTF,message:"DashLiveProvider internal logic error",thrown:r})};this.subscription.add(Lv(this.videoState.stateChangeStarted$.pipe(wo(r=>({transition:r,type:"start"}))),this.videoState.stateChangeEnded$.pipe(wo(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(xe(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(wo(r=>r.map(({track:a})=>a)),Rv(r=>!!r.length),D$()).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($$(),wo(r=>-r/1e3)).subscribe(this.params.output.duration$)).add(L$({zeroTime:this.zeroTime$.pipe(Rv(qc)),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&&Mv(r),min:a&&Mv(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 wv(r.to)}},t)).add(Lv(e.desiredState.playbackState.stateChangeStarted$,e.desiredState.seekState.stateChangeEnded$,e.desiredState.videoTrack.stateChangeStarted$,e.desiredState.autoVideoTrackSwitching.stateChangeStarted$,this.videoState.stateChangeEnded$,this.droppedFramesManager.onDroopedVideoFramesLimit$,B$(["init"])).pipe(M$(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 Bs({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&&qc(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:c})=>c.id===a)?.representation;Av(l,"Representations missing"),this.dash.startPlay(l,i)}}setVideoTrack(e){let t=this.representations$.getValue().find(({track:i})=>i.id===e.id)?.representation;Av(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(be(this.params.source.url,n)),r&&this.dash.pause(),this.liveOffset.resetTo(n,r)}};var $v=Cs;var GT=C(ft(),1);var Le=(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 vD,assertNonNullable as yD,debounce as TD,ErrorCategory as HT,filter as kd,filterChanged as Zo,fromEvent as ID,isNonNullable as jT,map as Rd,merge as eu,observableFrom as Ld,once as zT,Subscription as xD}from"@vkontakte/videoplayer-shared";var Ao=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}},kr=class extends Ao{constructor(){super(),this.listeners||Ao.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)}},Vs=class{constructor(){Object.defineProperty(this,"signal",{value:new kr,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&&(Vs.prototype[Symbol.toStringTag]="AbortController",kr.prototype[Symbol.toStringTag]="AbortSignal");function ko(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 zc(s){typeof s=="function"&&(s={fetch:s});let{fetch:e,Request:t=e.Request,AbortController:i,__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL:r=!1}=s;if(!ko({fetch:e,Request:t,AbortController:i,__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL:r}))return{fetch:e,Request:a};let a=t;(a&&!a.prototype.hasOwnProperty("signal")||r)&&(a=function(l,c){let p;c&&c.signal&&(p=c.signal,delete c.signal);let d=new t(l,c);return p&&Object.defineProperty(d,"signal",{writable:!1,enumerable:!1,configurable:!0,value:p}),d},a.prototype=t.prototype);let n=e;return{fetch:(u,l)=>{let c=a&&a.prototype.isPrototypeOf(u)?u.signal:l?l.signal:void 0;if(c){let p;try{p=new DOMException("Aborted","AbortError")}catch{p=new Error("Aborted"),p.name="AbortError"}if(c.aborted)return Promise.reject(p);let d=new Promise((h,f)=>{c.addEventListener("abort",()=>f(p),{once:!0})});return l&&l.signal&&delete l.signal,Promise.race([d,n(u,l)])}return n(u,l)},Request:a}}var Os=ko({fetch:window.fetch,Request:window.Request,AbortController:window.AbortController}),Bv=Os?zc({fetch:window.fetch,Request:window.Request,AbortController:window.AbortController}):void 0,vt=Os?Bv.fetch:window.fetch,D1=Os?Bv.Request:window.Request,ee=Os?Vs:window.AbortController,C1=Os?kr:window.AbortSignal;var Ed=C(_s(),1);var vy=C(Sy(),1);import{ErrorCategory as Ns}from"@vkontakte/videoplayer-shared";var Ro=s=>{if(!s)return{id:"EmptyResponse",category:Ns.PARSER,message:"Empty response"};if(s.length<=2&&s.match(/^\d+$/))return{id:`UVError#${s}`,category:Ns.NETWORK,message:`UV Error ${s}`};let e=(0,vy.default)(s).substring(0,100).toLowerCase();if(e.startsWith("<!doctype")||e.startsWith("<html>")||e.startsWith("<body>")||e.startsWith("<head>"))return{id:"UnexpectedHTML",category:Ns.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:Ns.PARSER,message:"XML parsing error"}:{id:"XMLParserLogicError",category:Ns.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 Td,assertNonNullable as _r,combine as Fr,ErrorCategory as Ft,filter as zo,filterChanged as va,flattenObject as ya,fromEvent as si,getTraceSubscriptionMethod as tD,interval as Id,isNonNullable as Ta,isNullable as VT,map as Nr,merge as Qi,now as xd,Subject as Go,Subscription as OT,tap as iD,throttle as rD,ValueSubject as de}from"@vkontakte/videoplayer-shared";var $o=C(ft(),1),Cr=C(kt(),1),Bo=C(_s(),1);var x0=(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)},E0=s=>window.clearTimeout(s),yy=s=>typeof s=="function"&&s?.toString().endsWith("{ [native code] }"),Ty=!yy(window.requestIdleCallback)||!yy(window.cancelIdleCallback),Rr=Ty?x0:window.requestIdleCallback,_t=Ty?E0:window.cancelIdleCallback;var wT=C(Ts(),1);import{assertNever as P0,ErrorCategory as Iy,Subject as xy}from"@vkontakte/videoplayer-shared";var w0=18,Ey=!1;try{Ey=_.browser.isSafari&&!!_.browser.safariVersion&&_.browser.safariVersion<=w0}catch(s){console.error(s)}var Xc=class{constructor(e){this.bufferFull$=new xy;this.error$=new xy;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:Iy.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)};Ey&&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:Iy.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:P0(t)}}},Py=Xc;var Lr=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 vi,assertNonNullable as tt,ErrorCategory as ti,fromEvent as md,getExponentialDelay as bd,isNonNullable as Dr,isNullable as Ne,now as Mo,once as HB,Subject as jB,Subscription as zB,ValueSubject as Gi}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 Mr=class extends z{};var Us=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 qs=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 Hs=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 js=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 zs=class extends z{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Gs=class extends z{constructor(e,t){super(e,t),this.data=this.content}};var ji=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 Qs=class extends z{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Ws=class extends z{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Ys=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 Ks=class extends se{constructor(e,t){super(e,t),this.poseYawDegrees=this.readUint32(),this.posePitchDegrees=this.readUint32(),this.poseRollDegrees=this.readUint32()}};var Xs=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 Js=class extends z{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Zs=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 ea=class extends z{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var ta=class extends z{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var ia=class extends se{constructor(e,t){super(e,t),this.sequenceNumber=this.readUint32()}};var ra=class extends z{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var sa=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 aa=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 na=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 oa=class extends z{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var ua=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 la=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 k0={ftyp:qs,moov:Hs,mvhd:js,moof:zs,mdat:Gs,sidx:ji,trak:Qs,mdia:Js,mfhd:ia,tkhd:Zs,traf:ra,tfhd:sa,tfdt:aa,trun:na,minf:ea,sv3d:Ws,st3d:Ys,prhd:Ks,proj:ta,equi:Xs,uuid:Us,stbl:oa,stsd:ua,avc1:la,unknown:Mr},Zt=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=k0[e];return i?new i(t,new s):new Mr(t,new s)}};var Si=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 L0=new TextDecoder("ascii"),M0=s=>L0.decode(new DataView(s.buffer,s.byteOffset+4,4))==="ftyp",$0=s=>{let e=new ji(s,new Zt),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})},B0=(s,e)=>{let i=new Zt().parse(s),r=new Si(i),a=r.findAll("moof"),n=e?r.findAll("uuid"):r.findAll("mdat");if(!(n.length&&a.length))return null;let o=a[0],u=n[n.length-1],l=o.source.byteOffset,p=u.source.byteOffset-o.source.byteOffset+u.size;return new DataView(s.buffer,l,p)},D0=s=>{let t=new Zt().parse(s),i=new Si(t),r={},a=i.findAll("uuid");return a.length?a[a.length-1]:r},C0=s=>{let t=new Zt().parse(s);return new Si(t).find("sidx")?.timescale},V0=(s,e)=>{let i=new Zt().parse(s),a=new Si(i).findAll("traf"),n=a[a.length-1].children.find(p=>p.type==="tfhd"),o=a[a.length-1].children.find(p=>p.type==="tfdt"),u=a[a.length-1].children.find(p=>p.type==="trun"),l=0;return u.sampleDuration.length?l=u.sampleDuration.reduce((p,d)=>p+d,0):l=n.defaultSampleDuration*u.sampleCount,(Number(o.baseMediaDecodeTime)+l)/e*1e3},O0=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 Zt().parse(s),r=new Si(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},wy={validateData:M0,parseInit:O0,getIndexRange:()=>{},parseSegments:$0,parseFeedableSegmentChunk:B0,getChunkEndTime:V0,getServerLatencyTimestamps:D0,getTimescaleFromIndex:C0};var da=C(ft(),1);import{assertNonNullable as Zc,isNonNullable as Ly,isNullable as F0}from"@vkontakte/videoplayer-shared";import{assertNever as _0}from"@vkontakte/videoplayer-shared";var Ay={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"}},ky=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=ca(s,t),r=i in Ay,a=r?Ay[i].type:"binary",n=s.getUint8(t),o=0;n&128?o=1:n&64?o=2:n&32?o=3:n&16?o=4:n&8?o=5:n&4?o=6:n&2?o=7:n&1&&(o=8);let u=new DataView(s.buffer,s.byteOffset+t+1,o-1),l=n&255>>o,c=ca(u),p=l*2**((o-1)*8)+c,d=t+o,h;return d+p>s.byteLength?h=new DataView(s.buffer,s.byteOffset+d):h=new DataView(s.buffer,s.byteOffset+d,p),{tag:r?i:"0x"+i.toString(16).toUpperCase(),type:a,tagHeaderSize:d,tagSize:d+p,value:h,valueSize:p}},ca=(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 ca(s);case"float":return s.byteLength===4?s.getFloat32(0):s.getFloat64(0);case"string":return new TextDecoder("ascii").decode(s);case"utf8":return new TextDecoder("utf-8").decode(s);case"date":return new Date(Date.UTC(2001,0)+s.getInt8(0)).getTime();case"master":return s;case"binary":return s;default:_0(e)}},zi=(s,e)=>{let t=0;for(;t<s.byteLength;){let i=new DataView(s.buffer,s.byteOffset+t),r=ky(i);if(!e(r))return;r.type==="master"&&zi(r.value,e),t=r.value.byteOffset-s.byteOffset+r.valueSize}},Ry=s=>{if(s.getUint32(0)!==440786851)return!1;let e,t,i,r=ky(s);return zi(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 My=[357149030,290298740,374648427,174,224,30320,30321,30322,272869232,524531317,475249515,423732329,307544935],N0=[231,22612,22743,167,171,163,160,175],U0=s=>{let e,t,i,r,a=!1,n=!1,o=!1,u,l,c=!1,p=0;return zi(s,({tag:d,type:h,value:f,valueSize:b})=>{if(d===21419){let g=Rt(f,h);l=ca(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?zi(f,({tag:g,type:S,value:T})=>g===30321?(c=Rt(T,S)===1,!1):!0):a&&n&&(0,da.default)(My,d)&&(o=!0),!o}),Zc(e,"Failed to parse webm Segment start"),Zc(t,"Failed to parse webm Segment end"),Zc(r,"Failed to parse webm Segment duration"),i=i??1e6,{segmentStart:Math.round(e/1e9*i*1e3),segmentEnd:Math.round(t/1e9*i*1e3),timeScale:i,segmentDuration:Math.round(r/1e9*i*1e3),cuesSeekPosition:u,is3dVideo:c,stereoMode:p,projectionType:1,projectionData:{pose:{yaw:0,pitch:0,roll:0},bounds:{top:0,bottom:0,left:0,right:0}}}},q0=s=>{if(F0(s.cuesSeekPosition))return;let e=s.segmentStart+s.cuesSeekPosition,t=1024*1024;return{from:e,to:e+t}},H0=(s,e)=>{let t=!1,i=!1,r=o=>Ly(o.time)&&Ly(o.position),a=[],n;return zi(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,da.default)(My,o)&&(i=!0)}return!(t&&i)}),n&&r(n)&&a.push(n),a.map((o,u)=>{let{time:l,position:c}=o,p=a[u+1];return{status:"none",time:{from:l,to:p?p.time:e.segmentDuration},byte:{from:e.segmentStart+c,to:p?e.segmentStart+p.position-1:e.segmentEnd-1}}})},j0=s=>{let e=0,t=!1;try{zi(s,i=>i.tag===524531317?i.tagSize<=s.byteLength?(e=i.tagSize,!1):(e+=i.tagHeaderSize,!0):(0,da.default)(N0,i.tag)?(e+i.tagSize<=s.byteLength&&(e+=i.tagSize,t||=(0,da.default)([163,160,175],i.tag)),!0):!1)}catch{}return e>0&&e<=s.byteLength&&t?new DataView(s.buffer,s.byteOffset,e):null},$y={validateData:Ry,parseInit:U0,getIndexRange:q0,parseSegments:H0,parseFeedableSegmentChunk:j0};var pa=s=>{let e=/^(.+)\/([^;]+)(?:;.*)?$/.exec(s);if(e){let[,t,i]=e;if(t==="audio"||t==="video")switch(i){case"webm":return $y;case"mp4":return wy}}throw new ReferenceError(`Unsupported mime type ${s}`)};var pd=C(ad(),1),TT=C(Bi(),1),IT=C(nd(),1),xT=C(kt(),1),hd=C(Ui(),1);var hT=C(ft(),1),Br=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,hT.default)(["6E","7A","F4"],o)}}return!1};import{isNonNullable as UB,isNullable as vT}from"@vkontakte/videoplayer-shared";var Lo=s=>{if(s.includes("/")){let e=s.split("/");return parseInt(e[0])/parseInt(e[1])}else return parseFloat(s)};var fT=s=>{try{let e=FB(),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 FB(){let s="(?<extlang>(?:[a-z]{3}(?:-[a-z]{3}){0,2}))",e="x(?:-[a-z0-9]{1,8})+",c=`^(?:(?<langtag>${`
118
+ (?<language>${`(?:[a-z]{2,3}(?:-${s})?|[a-z]{4}|[a-z]{5,8})`})
65
119
  (-(?<script>[a-z]{4}))?
66
120
  (-(?<region>(?:[a-z]{2}|[0-9]{3})))?
67
121
  (?<variants>(?:-(?:[a-z0-9]{5,8}|[0-9][a-z0-9]{3}))*)
68
122
  (?<extensions>(?:-[0-9a-wy-z](?:-[a-z0-9]{2,8})+)*)
69
123
  (?:-(?<privateuse>(?:${e})))?
70
- `})|(?<privateuse2>${e}))$`.replace(/[\s\t\n]/g,"");return new RegExp(c,"i")}var dl=M(Lt(),1);import{videoSizeToQuality as iM}from"@vkontakte/videoplayer-shared";var tS=({id:r,width:e,height:t,bitrate:i,fps:a,quality:s,streamId:n})=>{let o=(s?At(s):void 0)??iM({width:e,height:t});return o&&{id:r,quality:o,bitrate:i,size:{width:e,height:t},fps:a,streamId:n}},iS=({id:r,bitrate:e})=>({id:r,bitrate:e}),rS=({language:r,label:e},{id:t,url:i,isAuto:a})=>({id:t,url:i,isAuto:a,type:"internal",language:r,label:e}),aS=({language:r,label:e,id:t,url:i,isAuto:a})=>({id:t,url:i,isAuto:a,type:"internal",language:r,label:e}),pl=({id:r,language:e,label:t,codecs:i,isDefault:a})=>({id:r,language:e,label:t,codec:(0,dl.default)(i.split("."),0),isDefault:a}),hl=({id:r,language:e,label:t,hdr:i,codecs:a})=>({id:r,language:e,hdr:i,label:t,codec:(0,dl.default)(a.split("."),0)}),ml=r=>"url"in r,ve=r=>r.type==="template",pa=r=>r instanceof DOMException&&(r.name==="AbortError"||r.code===20);var nS=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},mt=(r,e)=>{let t=r;t=(0,fl.default)(t,"$$","$");let i={RepresentationID:e.representationId,Number:e.segmentNumber,Bandwidth:e.bandwidth,Time:e.segmentTime};for(let[a,s]of(0,oS.default)(i)){let n=new RegExp(`\\$${a}(?:%0(\\d+)d)?\\$`,"g");t=(0,fl.default)(t,n,(o,u)=>sS(s)?o:sS(u)?s:(0,uS.default)(s,parseInt(u,10),"0"))}return t},cS=(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(N=>N.textContent?.trim()??""),o=(0,lS.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")],P=T.reduce((N,S)=>({...N,[S.id]:S.children}),{}),I=T.reduce((N,S)=>({...N,[S.id]:S.getAttribute("duration")}),{});x?v=nS(x):(0,bl.default)(I).filter(N=>N).length&&!u?v=(0,bl.default)(I).reduce((N,S)=>N+(nS(S)??0),0):b&&(v=parseInt(b,10));let V=0,B=s.getAttribute("profiles")?.split(",")??[];for(let N of T.map(S=>S.id))for(let S of P[N]){let R=S.getAttribute("id")??"id"+(V++).toString(10),w=S.getAttribute("mimeType")??"",W=S.getAttribute("codecs")??"",A=S.getAttribute("contentType")??w?.split("/")[0],ie=S.getAttribute("profiles")?.split(",")??[],k=eS(S.getAttribute("lang")??"")??{},H=S.querySelector("Label")?.textContent?.trim()??void 0,Y=S.querySelectorAll("Representation"),J=S.querySelector("SegmentTemplate"),re=S.querySelector("Role")?.getAttribute("value")??void 0,Se=A,ye={id:R,language:k.language,isDefault:re==="main",label:H,codecs:W,hdr:Se==="video"&&ll(W),mime:w,representations:[]};for(let j of Y){let $=j.getAttribute("lang")??void 0,Te=H??S.getAttribute("label")??j.getAttribute("label")??void 0,me=j.querySelector("BaseURL")?.textContent?.trim()??"",ae=new URL(me||o,e).toString(),Be=j.getAttribute("mimeType")??w,vt=j.getAttribute("codecs")??W??"",Xe;if(A==="text"){let Le=j.getAttribute("id")||"",St=k.privateuse?.includes("x-auto")||Le.includes("_auto"),Je=j.querySelector("SegmentTemplate");if(Je){let Yi={representationId:j.getAttribute("id")??void 0,bandwidth:j.getAttribute("bandwidth")??void 0},Va=parseInt(j.getAttribute("bandwidth")??"",10)/1e3,Ba=parseInt(Je.getAttribute("startNumber")??"",10)??1,oi=parseInt(Je.getAttribute("timescale")??"",10),kn=Je.querySelectorAll("SegmentTimeline S")??[],ui=Je.getAttribute("media");if(!ui)continue;let Oa=[],_a=0,Na="",li=0,zi=Ba,fe=0;for(let Ue of kn){let Nt=parseInt(Ue.getAttribute("d")??"",10),Oe=parseInt(Ue.getAttribute("r")??"",10)||0,yt=parseInt(Ue.getAttribute("t")??"",10);fe=Number.isFinite(yt)?yt:fe;let Ft=Nt/oi*1e3,ci=fe/oi*1e3;for(let Ze=0;Ze<Oe+1;Ze++){let Tt=mt(ui,{...Yi,segmentNumber:zi.toString(10),segmentTime:(fe+Ze*Nt).toString(10)}),di=(ci??0)+Ze*Ft,Xi=di+Ft;zi++,Oa.push({time:{from:di,to:Xi},url:Tt})}fe+=(Oe+1)*Nt,_a+=(Oe+1)*Ft}li=fe/oi*1e3,Na=mt(ui,{...Yi,segmentNumber:zi.toString(10),segmentTime:fe.toString(10)});let Ki={time:{from:li,to:1/0},url:Na},ot={type:"template",baseUrl:ae,segmentTemplateUrl:ui,initUrl:"",totalSegmentsDurationMs:_a,segments:Oa,nextSegmentBeyondManifest:Ki,timescale:oi};Xe={id:Le,kind:"text",segmentReference:ot,profiles:[],duration:v,bitrate:Va,mime:"",codecs:"",width:0,height:0,isAuto:St}}else Xe={id:Le,isAuto:St,kind:"text",url:ae}}else{let Le=j.getAttribute("contentType")??Be?.split("/")[0]??A,St=S.getAttribute("profiles")?.split(",")??[],Je=parseInt(j.getAttribute("width")??"",10),Yi=parseInt(j.getAttribute("height")??"",10),Va=parseInt(j.getAttribute("bandwidth")??"",10)/1e3,Ba=j.getAttribute("frameRate")??"",oi=j.getAttribute("quality")??void 0,kn=Ba?Zv(Ba):void 0,ui=j.getAttribute("id")??"id"+(V++).toString(10),Oa=Le==="video"?`${Yi}p`:Le==="audio"?`${Va}Kbps`:vt,_a=`${ui}@${Oa}`,Na=[...B,...ie,...St],li,zi=j.querySelector("SegmentBase"),fe=j.querySelector("SegmentTemplate")??J;if(zi){let ot=j.querySelector("SegmentBase Initialization")?.getAttribute("range")??"",[Ue,Nt]=ot.split("-").map(Tt=>parseInt(Tt,10)),Oe={from:Ue,to:Nt},yt=j.querySelector("SegmentBase")?.getAttribute("indexRange"),[Ft,ci]=yt?yt.split("-").map(Tt=>parseInt(Tt,10)):[],Ze=yt?{from:Ft,to:ci}:void 0;li={type:"byteRange",url:ae,initRange:Oe,indexRange:Ze}}else if(fe){let ot={representationId:j.getAttribute("id")??void 0,bandwidth:j.getAttribute("bandwidth")??void 0},Ue=parseInt(fe.getAttribute("timescale")??"",10),Nt=fe.getAttribute("initialization")??"",Oe=fe.getAttribute("media"),yt=parseInt(fe.getAttribute("startNumber")??"",10)??1,Ft=mt(Nt,ot);if(!Oe)throw new ReferenceError("No media attribute in SegmentTemplate");let ci=fe.querySelectorAll("SegmentTimeline S")??[],Ze=[],Tt=0,di="",Xi=0;if(ci.length){let Fa=yt,He=0;for(let pi of ci){let et=parseInt(pi.getAttribute("d")??"",10),qt=parseInt(pi.getAttribute("r")??"",10)||0,qa=parseInt(pi.getAttribute("t")??"",10);He=Number.isFinite(qa)?qa:He;let wn=et/Ue*1e3,Dy=He/Ue*1e3;for(let Ua=0;Ua<qt+1;Ua++){let Vy=mt(Oe,{...ot,segmentNumber:Fa.toString(10),segmentTime:(He+Ua*et).toString(10)}),tc=(Dy??0)+Ua*wn,By=tc+wn;Fa++,Ze.push({time:{from:tc,to:By},url:Vy})}He+=(qt+1)*et,Tt+=(qt+1)*wn}Xi=He/Ue*1e3,di=mt(Oe,{...ot,segmentNumber:Fa.toString(10),segmentTime:He.toString(10)})}else if(rM(v)){let He=parseInt(fe.getAttribute("duration")??"",10)/Ue*1e3,pi=Math.ceil(v/He),et=0;for(let qt=1;qt<pi;qt++){let qa=mt(Oe,{...ot,segmentNumber:qt.toString(10),segmentTime:et.toString(10)});Ze.push({time:{from:et,to:et+He},url:qa}),et+=He}Xi=et,di=mt(Oe,{...ot,segmentNumber:pi.toString(10),segmentTime:et.toString(10)})}let Cy={time:{from:Xi,to:1/0},url:di};li={type:"template",baseUrl:ae,segmentTemplateUrl:Oe,initUrl:Ft,totalSegmentsDurationMs:Tt,segments:Ze,nextSegmentBeyondManifest:Cy,timescale:Ue}}else throw new ReferenceError("Unknown MPD segment referencing type");if(!Le||!Be)continue;let Ki={video:"video",audio:"audio",text:"text"}[Le];if(!Ki)continue;Se||=Ki,Xe={id:_a,kind:Ki,segmentReference:li,profiles:Na,duration:v,bitrate:Va,mime:Be,codecs:vt,width:Je,height:Yi,fps:kn,quality:oi}}ye.language||=$,ye.label||=Te,ye.mime||=Be,ye.codecs||=vt,ye.hdr||=Se==="video"&&ll(vt),ye.representations.push(Xe)}if(Se){let j=a[Se].find($=>$.id===ye.id);if(j&&ye.representations.every($=>ve($.segmentReference)))for(let $ of j.representations){let me=ye.representations.find(Be=>Be.id===$.id)?.segmentReference,ae=$.segmentReference;ae.segments.push(...me.segments),ae.nextSegmentBeyondManifest=me.nextSegmentBeyondManifest}else a[Se].push(ye)}}return{duration:v,streams:a,baseUrls:n,live:g}};var pS=M(_e(),1);import{isNonNullable as dS}from"@vkontakte/videoplayer-shared";var ee=(r,e)=>dS(r)&&dS(e)&&r.readyState==="open"&&(0,pS.default)([...r.activeSourceBuffers],e);var ha=class{constructor(e,t,i,{fetcher:a,tuning:s,getCurrentPosition:n,isActiveLowLatency:o,compatibilityMode:u=!1,manifest:l}){this.currentLiveSegmentServerLatency$=new ii(0);this.currentLowLatencySegmentLength$=new ii(0);this.currentSegmentLength$=new ii(0);this.onLastSegment$=new ii(!1);this.fullyBuffered$=new ii(!1);this.playingRepresentation$=new ii(void 0);this.playingRepresentationInit$=new ii(void 0);this.error$=new sM;this.gaps=[];this.subscription=new nM;this.allInitsLoaded=!1;this.activeSegments=new Set;this.downloadAbortController=new pe;this.switchAbortController=new pe;this.destroyAbortController=new pe;this.bufferLimit=1/0;this.failedDownloads=0;this.baseUrls=[];this.baseUrlsIndex=0;this.isLive=!1;this.liveUpdateSegmentIndex=0;this.liveInitialAdditionalOffset=0;this.isSeekingLive=!1;this.index=0;this.lastDataObtainedTimestampMs=0;this.loadByteRangeSegmentsTimeoutId=0;this.startWith=Dt(this.destroyAbortController.signal,async function*(e){let t=this.representations.get(e);Ae(t,`Cannot find representation ${e}`),this.playingRepresentationId=e,this.downloadingRepresentationId=e,this.sourceBuffer=this.mediaSource.addSourceBuffer(`${t.mime}; codecs="${t.codecs}"`),this.sourceBufferTaskQueue=new uv(this.sourceBuffer),this.subscription.add(vl(this.sourceBuffer,"updateend").subscribe(()=>{this.checkEjectedSegments(),this.maintain()},n=>{let o,u=this.mediaSource.readyState;u!=="open"&&(o={id:`SegmentEjection_source_${u}`,category:ft.VIDEO_PIPELINE,message:"Error when trying to clear segments ejected by browser",thrown:n}),o??={id:"SegmentEjection",category:ft.VIDEO_PIPELINE,message:"Error when trying to clear segments ejected by browser",thrown:n},this.error$.next(o)})),this.subscription.add(vl(this.sourceBuffer,"error").subscribe(()=>this.error$.next({id:"SourceBuffer",category:ft.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,tl(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);Ae(i,"No init buffer for starting representation"),Ae(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=Dt(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);Ae(i,`No such representation ${e}`);let a=this.segments.get(e),s=this.initData.get(e);if(he(s)||he(a)?yield this.loadInit(i,"high",!1):s instanceof Promise&&(yield s),a=this.segments.get(e),Ae(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();Fi(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=Dt(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);Ae(i,`No such representation ${e}`);let a=this.segments.get(e),s=this.initData.get(e);if(he(s)||he(a)?yield this.loadInit(i,"high",!1):s instanceof Promise&&(yield s),a=this.segments.get(e),Ae(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();Fi(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=Dt(this.destroyAbortController.signal,async function*(e){let t=(0,Ws.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||!ve(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);Ae(a);let s=this.segments.get(i);Ae(s,"No segments for starting representation");let n=this.initData.get(i);if(Ae(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 pe,Dt(this.switchAbortController.signal,async function*(i,a=!1){this.switchingToRepresentationId=i;let s=this.representations.get(i);Ae(s,`No such representation ${i}`);let n=this.segments.get(i),o=this.initData.get(i);if(he(o)||he(n)?yield this.loadInit(s,"high",!1):o instanceof Promise&&(yield o),n=this.segments.get(i),Ae(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();Fi(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(){!he(this.sourceBuffer)&&!this.sourceBuffer.updating&&(this.sourceBuffer.mode="segments")}async abort(){for(let e of this.activeSegments)this.abortSegment(e.segment);return this.activeSegments.clear(),this.downloadAbortController.abort(),this.downloadAbortController=new pe,this.abortBuffer()}maintain(e=this.getCurrentPosition()){if(he(e)||he(this.downloadingRepresentationId)||he(this.playingRepresentationId)||he(this.sourceBuffer)||!ee(this.mediaSource,this.sourceBuffer)||Fi(this.switchingToRepresentationId)||this.isSeekingLive)return;let t=this.representations.get(this.downloadingRepresentationId),i=this.segments.get(this.downloadingRepresentationId);if(Ae(t,`No such representation ${this.downloadingRepresentationId}`),!i)return;let a=i.find(c=>e>=c.time.from&&e<c.time.to);Fi(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)&&tl(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,Gs.default)(u,a))c="high";else{let d=(0,qi.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,qi.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;Fi(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,Ws.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,Ws.default)(e?.streams[this.kind],i=>i.representations)??[];if(![...this.segments.values()].every(i=>!i.length))for(let i of t){if(!i||!ve(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,qi.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;Ae(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(!ve(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=mt(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&&Nr&&Nr(this.gapDetectionIdleCallback),this.initLoadIdleCallback&&Nr&&Nr(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)&&!(Mt(this.sourceBuffer.buffered,p)&&Mt(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"){ve(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 Dt(o,async function*(){let c=Sl(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=Qs(),!c)return;let d=new DataView(c),p=da(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]),pa(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())ve(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 Dt(n,async function*(){let u=Sl(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(l=>{this.loadByteRangeSegmentsTimeoutId=window.setTimeout(l,u),vl(window,"online").pipe(aM()).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=Qs(),this.failedDownloads=0}catch(u){this.abortActiveSegments(e),pa(u)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}}prepareByteRangeFetchSegmentParams(e,t){if(ve(t.segmentReference))throw new Error("Representation is not byte range type");let i=t.segmentReference.url,a={from:(0,qi.default)(e,0).byte.from,to:(0,qi.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=Qs(),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:ft.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:l})}}}}prepareTemplateFetchSegmentParams(e,t){if(!ve(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=Qs();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:ft.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,Gs.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=da(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=da(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(!(he(this.sourceBuffer)||!ee(this.mediaSource,this.sourceBuffer))){!this.isLive&&O.browser.isSafari&&this.tuning.useSafariEndlessRequestBugfix&&(Mt(this.sourceBuffer.buffered,e.segment.time.from,100)&&Mt(this.sourceBuffer.buffered,e.segment.time.to,100)||this.error$.next({id:"EmptyAppendBuffer",category:ft.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",ml(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=Zu(()=>(0,hS.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?Dt(this.destroyAbortController.signal,async function*(){let o=Sl(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(u=>setTimeout(u,o))}.bind(this))():Promise.resolve()).then(()=>this.fetcher.fetchRepresentation(e.segmentReference,da(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&&ve(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:ft.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||he(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=ml(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,Gs.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||he(e)?0:Bi(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=Zu(()=>{try{this.detectGaps(e,t)}catch(i){this.error$.next({id:"GapDetection",category:ft.WTF,message:"detectGaps threw",thrown:i})}finally{this.gapDetectionIdleCallback=null}})}}checkEjectedSegments(){if(he(this.sourceBuffer)||!ee(this.mediaSource,this.sourceBuffer)||he(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:ft.VIDEO_PIPELINE,thrown:e,message:"Something went wrong"})}};var ma=r=>{let e=new URL(r);return e.searchParams.set("quic","1"),e.toString()};var mS=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 fa,assertNever as bS,fromEvent as gS,merge as oM,now as ba,Subscription as uM,Subject as vS,ValueSubject as yl,flattenObject as Ui,ErrorCategory as ga}from"@vkontakte/videoplayer-shared";var fS=r=>{let e=new URL(r);return e.searchParams.set("enable-subtitles","yes"),e.toString()};var zs=class{constructor({throughputEstimator:e,requestQuic:t,tracer:i,compatibilityMode:a=!1,useEnableSubtitlesParam:s=!1}){this.lastConnectionType$=new yl(void 0);this.lastConnectionReused$=new yl(void 0);this.lastRequestFirstBytes$=new yl(void 0);this.recoverableError$=new vS;this.error$=new vS;this.abortAllController=new pe;this.subscription=new uM;this.fetchManifest=fa(this.abortAllController.signal,async function*(e){let t=this.tracer.createComponentTracer("FetchManifest"),i=e;this.requestQuic&&(i=ma(i)),!this.compatibilityMode&&this.useEnableSubtitlesParam&&(i=fS(i));let a=yield this.doFetch(i,{signal:this.abortAllController.signal}).catch(Ys);return a?(t.log("success",Ui({url:i,message:"Request successfully executed"})),t.end(),this.onHeadersReceived(a.headers),a.text()):(t.error("error",Ui({url:i,message:"No data in request manifest"})),t.end(),null)}.bind(this));this.fetch=fa(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:bS(t)}this.requestQuic&&(l=ma(l));let p=this.abortAllController.signal,h;if(n){let R=new pe;if(h=oM(gS(this.abortAllController.signal,"abort"),gS(n,"abort")).subscribe(()=>{try{R.abort()}catch(w){Ys(w)}}),this.subscription.add(h),this.abortAllController.signal.aborted||n.aborted)try{R.abort()}catch(w){Ys(w)}p=R.signal}let f=ba();d.log("startRequest",Ui({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=ba();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=ba(),w={requestStartedAt:f,requestEndedAt:R,duration:R-f};return d.log("endRequest",Ui(w)),d.end(),b.arrayBuffer()}let[v,x]=b.body.tee(),T=v.getReader();o&&this.throughputEstimator?.trackStream(x,u);let P=0,I=new Uint8Array(0),V=!1,B=R=>{h?.unsubscribe(),V=!0,Ys(R)},F=fa(p,async function*({done:R,value:w}){if(P===0&&this.lastRequestFirstBytes$.next(ba()-f),p.aborted){h?.unsubscribe();return}if(!R&&w){let W=new Uint8Array(I.length+w.length);W.set(I),W.set(w,I.length),I=W,P+=w.byteLength,a?.(new DataView(I.buffer),P),yield T?.read().then(F,B)}}.bind(this));yield T?.read().then(F,B),h?.unsubscribe();let N=ba(),S={failed:V,requestStartedAt:f,requestEndedAt:N,duration:N-f};return V?(d.error("endRequest",Ui(S)),d.end(),null):(d.log("endRequest",Ui(S)),d.end(),I.buffer)}.bind(this));this.fetchByteRangeRepresentation=fa(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=fa(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}=mS(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:bS(a)}}destroy(){this.abortAllController.abort(),this.subscription.unsubscribe(),this.tracer.end()}async doFetch(e,t){let i=await st(e,t);if(i.ok)return i;let a=await i.text(),s=parseInt(a);if(!isNaN(s))switch(s){case 1:this.recoverableError$.next({id:"VideoDataLinkExpiredError",message:"Video data links have expired",category:ga.FATAL});break;case 8:this.recoverableError$.next({id:"VideoDataLinkBlockedForFloodError",message:"Url blocked for flood",category:ga.FATAL});break;case 18:this.recoverableError$.next({id:"VideoDataLinkIllegalIpChangeError",message:"Client IP has changed",category:ga.FATAL});break;case 21:this.recoverableError$.next({id:"VideoDataLinkIllegalHostChangeError",message:"Request HOST has changed",category:ga.FATAL});break;default:this.error$.next({id:"GeneralVideoDataFetchError",message:`Generic video data fetch error (${s})`,category:ga.FATAL})}}},Ys=r=>{if(!pa(r))throw r};var ri=(r,e,t)=>t*e+(1-t)*r,Tl=(r,e)=>r.reduce((t,i)=>t+i,0)/e,SS=(r,e,t,i)=>{let a=0,s=t,n=Tl(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 lM,ValueSubject as yS}from"@vkontakte/videoplayer-shared";var Vt=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 yS(e.initial),this.debounced$=new yS(e.initial);let t=e.label??"value"+Math.random().toString(16).substring(2,6);this.rawSeries$=new be(`raw_${t}`),this.smoothedSeries$=new be(`smoothed_${t}`),this.reportedSeries$=new be(`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)&&(lM(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 Ks=class extends Vt{constructor(e){super(e),this.slow=this.fast=e.initial}updateSmoothedValue(e){this.slow=ri(this.slow,e,this.params.emaAlphaSlow),this.fast=ri(this.fast,e,this.params.emaAlphaFast);let t=this.params.fastDirection>0?Math.max:Math.min;this.smoothed=t(this.slow,this.fast)}};var Xs=class extends Vt{constructor(e){super(e),this.emaSmoothed=e.initial}updateSmoothedValue(e){let t=Tl(this.pastMeasures,this.takenMeasures);this.emaSmoothed=ri(this.emaSmoothed,e,this.params.emaAlpha);let i=SS(this.pastMeasures,this.takenMeasures,this.measuresCursor-1,this.params.basisTrendChangeCount);this.smoothed=i?this.emaSmoothed:t}};var Js=class extends Vt{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?ri(this.smoothed,t,this.params.emaAlpha):t}};var ai=class{static getSmoothedValue(e,t,i){return i.type==="TwoEma"?new Ks({initial:e,emaAlphaSlow:i.emaAlphaSlow,emaAlphaFast:i.emaAlphaFast,changeThreshold:i.changeThreshold,fastDirection:t,deviationDepth:i.deviationDepth,deviationFactor:i.deviationFactor,label:"throughput"}):new Xs({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 Js({initial:e,label:"liveEdgeDelay",...t})}};var Il=(r,e)=>{r&&r.playbackRate!==e&&(r.playbackRate=e)};import{isNullable as cM,ValueSubject as dM}from"@vkontakte/videoplayer-shared";var va=class r{constructor(e,t){this.currentRepresentation$=new dM(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(!cM(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&&ve(t.segmentReference))}};var en=M(Lt(),1);import{assertNever as tn}from"@vkontakte/videoplayer-shared";var TS=(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 tn(c)}})},Zs=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:tn(r)}return[t,i]},IS=({webmCodec:r,androidPreferredFormat:e,preferMultiStream:t})=>{let i=[...t?["DASH_STREAMS"]:[],...Zs(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",...Zs(r),"HLS","HLS_ONDEMAND"];case"dash_any_webm":return[...Zs(r),"MPEG",...a,"HLS","HLS_ONDEMAND"];case"dash_sep":return["DASH_SEP","MPEG",...Zs(r),...a,"HLS","HLS_ONDEMAND"];default:tn(e)}return O.video.nativeHlsSupported?[...i,"HLS","HLS_ONDEMAND","MPEG"]:[...i,"HLS","HLS_ONDEMAND","MPEG"]},ES=({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:tn(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"]},El=r=>r?["HLS_LIVE","HLS_LIVE_CMAF","DASH_LIVE_CMAF"]:["DASH_WEBM","DASH_WEBM_AV1","DASH_SEP","DASH_ONDEMAND","HLS","HLS_ONDEMAND","MPEG"],xS=r=>{if(r.size===0)return;if(r.size===1){let t=r.values().next();return(0,en.default)(t.value.split("."),0)}for(let t of r){let i=(0,en.default)(t.split("."),0);if(i==="opus"||i==="vp09"||i==="av01")return i}let e=r.values().next();return(0,en.default)(e.value.split("."),0)};var yM=["timeupdate","progress","play","seeked","stalled","waiting"],TM=["timeupdate","progress","loadeddata","playing","seeked"];var sn=class{constructor(e){this.element=null;this.manifestUrlString="";this.source=null;this.manifest=null;this.subscription=new wS;this.representationSubscription=new wS;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 an;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 an;this.fetcherError$=new an;this.liveStreamEndTimestamp=0;this.isUpdatingLive=!1;this.isJumpGapAfterSeekLive=!1;this.forceEnded$=new an;this.gapWatchdogActive=!1;this.destroyController=new pe;this.initManifest=Pl(this.destroyController.signal,async function*(e,t,i){this.tracer.log("initManifest"),this.element=e,this.manifestUrlString=de(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:nt.PARSER,message:"No playable video representations"})}.bind(this));this.updateManifest=Pl(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:nt.NETWORK,message:"Failed to load manifest",thrown:n})});if(!e)return null;let t=null;try{t=cS(e??"",this.manifestUrlString)}catch(n){let o=iv(e)??{id:"ManifestParsing",category:nt.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)&&Ye()?.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=xS(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",ya(s)),s}.bind(this));this.initRepresentations=Pl(this.destroyController.signal,async function*(e,t,i){this.tracer.log("initRepresentationsStart",ya({initialVideo:e,initialAudio:t,sourceHls:i})),Hi(this.manifest),Hi(this.element),this.representationSubscription.unsubscribe(),this.state$.startTransitionTo("representations_ready");let a=p=>{this.representationSubscription.add(bt(p,"error").pipe(rn(h=>!!this.element?.played.length)).subscribe(h=>{this.error$.next({id:"VideoSource",category:nt.VIDEO_PIPELINE,message:"Unexpected video source error",thrown:h})}))};this.source=this.tuning.useManagedMediaSource?Eb():new MediaSource;let s=document.createElement("source");if(a(s),s.src=URL.createObjectURL(this.source),this.element.appendChild(s),this.tuning.useManagedMediaSource&&$s())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 ha("video",this.source,o,n),this.bufferManagers=[this.videoBufferManager],Ta(t)){let p=this.manifest.streams.audio.reduce((h,f)=>[...h,...f.representations],[]);this.audioBufferManager=new ha("audio",this.source,p,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(si(...TM.map(p=>bt(this.element,p))).pipe(Qi(p=>this.element?Bi(this.element.buffered,this.element.currentTime*1e3):0),Sa(),vM(p=>{p>this.tuning.dash.bufferEmptinessTolerance&&u()})).subscribe(this.bufferLength$)),this.representationSubscription.add(si(bt(this.element,"ended"),this.forceEnded$).subscribe(()=>{u()})),this.isLive$.getValue()){this.subscription.add(this.liveDuration$.pipe(Sa()).subscribe(h=>this.liveStreamEndTimestamp=wl())),this.subscription.add(bt(this.element,"pause").subscribe(()=>{this.livePauseWatchdogSubscription=kl(1e3).subscribe(h=>{let f=Ps(this.manifestUrlString,2);this.manifestUrlString=de(this.manifestUrlString,f+1e3,2),this.liveStreamStatus$.getValue()==="active"&&this.updateManifest()}),this.subscription.add(this.livePauseWatchdogSubscription)})).add(bt(this.element,"play").subscribe(h=>this.livePauseWatchdogSubscription?.unsubscribe())),this.representationSubscription.add(ji({isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe(Qi(({isActiveLive:h,isLowLatency:f})=>h&&f),Sa()).subscribe(h=>{this.isManualDecreasePlaybackInLive()||Il(this.element,1)})),this.representationSubscription.add(ji({bufferLength:this.bufferLength$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe(rn(({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(ji({isLive:this.isLive$,rtt:this.throughputEstimator.rtt$,bufferLength:this.bufferLength$,segmentServerLatency:this.videoBufferManager.currentLiveSegmentServerLatency$}).pipe(rn(({isLive:h})=>h),Sa((h,f)=>f.bufferLength<h.bufferLength),Qi(({rtt:h,bufferLength:f,segmentServerLatency:b})=>{let g=Ps(this.manifestUrlString,2);return(h/2+f+b+g)/1e3})).subscribe(this.liveLatency$)),this.representationSubscription.add(ji({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 P=1;Math.abs(T)>v&&(P=1+Math.sign(T)*x),Il(this.element,P)})),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(ji({liveLoadBufferLength:this.liveLoadBufferLength$,bufferLength:this.bufferLength$}).pipe(SM(1e3)).subscribe(async({liveLoadBufferLength:h,bufferLength:f})=>{if(!this.element||this.isUpdatingLive)return;let b=this.element.playbackRate,g=Ps(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,P=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 F="none";if(V?F="active_low_latency":this.isLowLatency$.getValue()&&B?(this.bufferManagers.forEach(N=>N.proceedLowLatencyLive()),F="active_low_latency"):g!==0&&I<x?F="live_forward_buffering":I<x+P&&(F="live_with_target_offset"),isFinite(h)&&(p=h>p?h:p),F==="live_forward_buffering"||F==="live_with_target_offset"){let N=p-(x+T),S=this.normolizeLiveOffset(Math.trunc(g+N/b)),R=Math.abs(S-g),w=0;!h||R<=this.tuning.dashCmafLive.offsetCalculationError?w=g:S>0&&R>this.tuning.dashCmafLive.offsetCalculationError&&(w=S),this.manifestUrlString=de(this.manifestUrlString,w,2)}(F==="live_with_target_offset"||F==="live_forward_buffering")&&(p=0,await this.updateLive())},h=>{this.error$.next({id:"updateLive",category:nt.VIDEO_PIPELINE,thrown:h,message:"Failed to update live with subscription"})}))}let l=si(...this.bufferManagers.map(p=>p.fullyBuffered$)).pipe(Qi(()=>this.bufferManagers.every(p=>p.fullyBuffered$.getValue()))),c=si(...this.bufferManagers.map(p=>p.onLastSegment$)).pipe(Qi(()=>this.bufferManagers.some(p=>p.onLastSegment$.getValue()))),d=ji({allBuffersFull:l,someBufferEnded:c}).pipe(Sa(),Qi(({allBuffersFull:p,someBufferEnded:h})=>p&&h),rn(p=>p));if(this.representationSubscription.add(si(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:nt.VIDEO_PIPELINE,message:"Failed to end MediaSource stream",thrown:p})}})),this.representationSubscription.add(si(...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,Al.default)((0,Al.default)([...this.manifest.streams.audio,...this.manifest.streams.video],h=>h.representations),h=>{let f=[];return h.duration&&f.push(h.duration),ve(h.segmentReference)&&h.segmentReference.totalSegmentsDurationMs&&f.push(h.segmentReference.totalSegmentsDurationMs),f})];this.source.duration=Math.max(...p)/1e3}this.audioBufferManager&&Ta(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=kl(this.tuning.gapWatchdogInterval).subscribe(()=>this.jumpGap(),t=>{this.error$.next({id:"GapWatchdog",category:nt.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 zs({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=ai.getLiveBufferSmoothedValue(this.tuning.dashCmafLive.lowLatency.maxTargetOffset,{...e.tuning.dashCmafLive.lowLatency.bufferEstimator}),this.initTracerSubscription()}async seekLive(e){Hi(this.element);let t=this.liveStreamStatus$.getValue()!=="active"?wl()-this.liveStreamEndTimestamp:0,i=this.normolizeLiveOffset(e+t);this.isActiveLive$.next(i===0),this.manifestUrlString=de(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(){Hi(this.element),this.state$.setState("running"),this.subscription.add(si(...yM.map(e=>bt(this.element,e)),bt(window,"online")).subscribe(()=>this.tick(),e=>{this.error$.next({id:"DashVKPlayer",category:nt.WTF,message:"Internal logic error",thrown:e})})),this.subscription.add(bt(this.element,"progress").subscribe(()=>{this.element&&this.element.readyState===2&&!this.element.seeking&&(this.element.currentTime=this.element.currentTime)})),this.subscription.add(bt(this.element,"waiting").subscribe(()=>{this.element&&this.element.readyState===2&&!this.element.seeking&&Mt(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=wl(),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:nt.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",ya(i))};this.stallWatchdogSubscription?.unsubscribe(),this.stallWatchdogSubscription=kl(50).subscribe(e,t=>{this.error$.next({id:"StallWatchdogCallback",category:nt.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){Hi(this.element),Hi(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),Mt(this.element.buffered,i)||await Promise.all([this.videoBufferManager.abort(),this.audioBufferManager?.abort()]),!(kS(this.element)||kS(this.videoBufferManager))&&(this.videoBufferManager.maintain(i),this.audioBufferManager?.maintain(i),this.element.currentTime=i/1e3,this.tracer.log("seek",ya({requestedPosition:e,forcePrecise:t,position:i})))}warmUpMediaSourceIfNeeded(e=this.element?.currentTime){Ta(this.element)&&Ta(this.source)&&Ta(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=gM(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",ya(i)))}}};var nn=class{constructor(e,t){this.fov=e,this.orientation=t}};var on=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 AS=`attribute vec2 a_vertex;
124
+ `})|(?<privateuse2>${e}))$`.replace(/[\s\t\n]/g,"");return new RegExp(c,"i")}var ud=C(kt(),1);import{videoSizeToQuality as NB}from"@vkontakte/videoplayer-shared";var mT=({id:s,width:e,height:t,bitrate:i,fps:r,quality:a,streamId:n})=>{let o=(a?Vt(a):void 0)??NB({width:e,height:t});return o&&{id:s,quality:o,bitrate:i,size:{width:e,height:t},fps:r,streamId:n}},bT=({id:s,bitrate:e})=>({id:s,bitrate:e}),gT=({language:s,label:e},{id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:s,label:e}),ST=({language:s,label:e,id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:s,label:e}),ld=({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}),cd=({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)}),dd=s=>"url"in s,We=s=>s.type==="template",ha=s=>s instanceof DOMException&&(s.name==="AbortError"||s.code===20);var yT=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},ei=(s,e)=>{let t=s;t=(0,pd.default)(t,"$$","$");let i={RepresentationID:e.representationId,Number:e.segmentNumber,Bandwidth:e.bandwidth,Time:e.segmentTime};for(let[r,a]of(0,TT.default)(i)){let n=new RegExp(`\\$${r}(?:%0(\\d+)d)?\\$`,"g");t=(0,pd.default)(t,n,(o,u)=>vT(a)?o:vT(u)?a:(0,IT.default)(a,parseInt(u,10),"0"))}return t},ET=(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(A=>A.textContent?.trim()??""),o=(0,xT.default)(n,0)??"",u=a.getAttribute("type")==="dynamic",l=a.getAttribute("availabilityStartTime"),c=a.getAttribute("publishTime"),p=a.getElementsByTagName("vk:Attrs")[0],d=p?.getElementsByTagName("vk:XLatestSegmentPublishTime")[0].textContent,h=p?.getElementsByTagName("vk:XStreamIsLive")[0].textContent,f=p?.getElementsByTagName("vk:XStreamIsUnpublished")[0].textContent,b=p?.getElementsByTagName("vk:XPlaybackDuration")[0].textContent,g;u&&(g={availabilityStartTime:l?new Date(l).getTime():0,publishTime:c?new Date(c).getTime():0,latestSegmentPublishTime:d?new Date(d).getTime():0,streamIsAlive:h==="yes",streamIsUnpublished:f==="yes"});let S,T=a.getAttribute("mediaPresentationDuration"),y=[...a.getElementsByTagName("Period")],E=y.reduce((A,v)=>({...A,[v.id]:v.children}),{}),P=y.reduce((A,v)=>({...A,[v.id]:v.getAttribute("duration")}),{});T?S=yT(T):(0,hd.default)(P).filter(A=>A).length&&!u?S=(0,hd.default)(P).reduce((A,v)=>A+(yT(v)??0),0):b&&(S=parseInt(b,10));let $=0,O=a.getAttribute("profiles")?.split(",")??[];for(let A of y.map(v=>v.id))for(let v of E[A]){let D=v.getAttribute("id")??"id"+($++).toString(10),I=v.getAttribute("mimeType")??"",x=v.getAttribute("codecs")??"",R=v.getAttribute("contentType")??I?.split("/")[0],re=v.getAttribute("profiles")?.split(",")??[],B=fT(v.getAttribute("lang")??"")??{},q=v.querySelector("Label")?.textContent?.trim()??void 0,K=v.querySelectorAll("Representation"),ne=v.querySelector("SegmentTemplate"),ge=v.querySelector("Role")?.getAttribute("value")??void 0,oe=R,Z={id:D,language:B.language,isDefault:ge==="main",label:q,codecs:x,hdr:oe==="video"&&Br(x),mime:I,representations:[]};for(let L of K){let V=L.getAttribute("lang")??void 0,Pe=q??v.getAttribute("label")??L.getAttribute("label")??void 0,Se=L.querySelector("BaseURL")?.textContent?.trim()??"",te=new URL(Se||o,e).toString(),ye=L.getAttribute("mimeType")??I,rt=L.getAttribute("codecs")??x??"",qe;if(R==="text"){let ce=L.getAttribute("id")||"",st=B.privateuse?.includes("x-auto")||ce.includes("_auto"),Ee=L.querySelector("SegmentTemplate");if(Ee){let yt={representationId:L.getAttribute("id")??void 0,bandwidth:L.getAttribute("bandwidth")??void 0},Ut=parseInt(L.getAttribute("bandwidth")??"",10)/1e3,qt=parseInt(Ee.getAttribute("startNumber")??"",10)??1,at=parseInt(Ee.getAttribute("timescale")??"",10),Ai=Ee.querySelectorAll("SegmentTimeline S")??[],nt=Ee.getAttribute("media");if(!nt)continue;let Ht=[],jt=0,zt="",ot=0,Tt=qt,W=0;for(let ue of Ai){let He=parseInt(ue.getAttribute("d")??"",10),ie=parseInt(ue.getAttribute("r")??"",10)||0,we=parseInt(ue.getAttribute("t")??"",10);W=Number.isFinite(we)?we:W;let je=He/at*1e3,ut=W/at*1e3;for(let he=0;he<ie+1;he++){let Ae=ei(nt,{...yt,segmentNumber:Tt.toString(10),segmentTime:(W+he*He).toString(10)}),lt=(ut??0)+he*je,xt=lt+je;Tt++,Ht.push({time:{from:lt,to:xt},url:Ae})}W+=(ie+1)*He,jt+=(ie+1)*je}ot=W/at*1e3,zt=ei(nt,{...yt,segmentNumber:Tt.toString(10),segmentTime:W.toString(10)});let It={time:{from:ot,to:1/0},url:zt},Te={type:"template",baseUrl:te,segmentTemplateUrl:nt,initUrl:"",totalSegmentsDurationMs:jt,segments:Ht,nextSegmentBeyondManifest:It,timescale:at};qe={id:ce,kind:"text",segmentReference:Te,profiles:[],duration:S,bitrate:Ut,mime:"",codecs:"",width:0,height:0,isAuto:st}}else qe={id:ce,isAuto:st,kind:"text",url:te}}else{let ce=L.getAttribute("contentType")??ye?.split("/")[0]??R,st=v.getAttribute("profiles")?.split(",")??[],Ee=parseInt(L.getAttribute("width")??"",10),yt=parseInt(L.getAttribute("height")??"",10),Ut=parseInt(L.getAttribute("bandwidth")??"",10)/1e3,qt=L.getAttribute("frameRate")??"",at=L.getAttribute("quality")??void 0,Ai=qt?Lo(qt):void 0,nt=L.getAttribute("id")??"id"+($++).toString(10),Ht=ce==="video"?`${yt}p`:ce==="audio"?`${Ut}Kbps`:rt,jt=`${nt}@${Ht}`,zt=[...O,...re,...st],ot,Tt=L.querySelector("SegmentBase"),W=L.querySelector("SegmentTemplate")??ne;if(Tt){let Te=L.querySelector("SegmentBase Initialization")?.getAttribute("range")??"",[ue,He]=Te.split("-").map(Ae=>parseInt(Ae,10)),ie={from:ue,to:He},we=L.querySelector("SegmentBase")?.getAttribute("indexRange"),[je,ut]=we?we.split("-").map(Ae=>parseInt(Ae,10)):[],he=we?{from:je,to:ut}:void 0;ot={type:"byteRange",url:te,initRange:ie,indexRange:he}}else if(W){let Te={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"),we=parseInt(W.getAttribute("startNumber")??"",10)??1,je=ei(He,Te);if(!ie)throw new ReferenceError("No media attribute in SegmentTemplate");let ut=W.querySelectorAll("SegmentTimeline S")??[],he=[],Ae=0,lt="",xt=0;if(ut.length){let Gt=we,le=0;for(let ct of ut){let fe=parseInt(ct.getAttribute("d")??"",10),ze=parseInt(ct.getAttribute("r")??"",10)||0,Qt=parseInt(ct.getAttribute("t")??"",10);le=Number.isFinite(Qt)?Qt:le;let ki=fe/ue*1e3,ku=le/ue*1e3;for(let Wt=0;Wt<ze+1;Wt++){let Ru=ei(ie,{...Te,segmentNumber:Gt.toString(10),segmentTime:(le+Wt*fe).toString(10)}),Xr=(ku??0)+Wt*ki,Lu=Xr+ki;Gt++,he.push({time:{from:Xr,to:Lu},url:Ru})}le+=(ze+1)*fe,Ae+=(ze+1)*ki}xt=le/ue*1e3,lt=ei(ie,{...Te,segmentNumber:Gt.toString(10),segmentTime:le.toString(10)})}else if(UB(S)){let le=parseInt(W.getAttribute("duration")??"",10)/ue*1e3,ct=Math.ceil(S/le),fe=0;for(let ze=1;ze<ct;ze++){let Qt=ei(ie,{...Te,segmentNumber:ze.toString(10),segmentTime:fe.toString(10)});he.push({time:{from:fe,to:fe+le},url:Qt}),fe+=le}xt=fe,lt=ei(ie,{...Te,segmentNumber:ct.toString(10),segmentTime:fe.toString(10)})}let Au={time:{from:xt,to:1/0},url:lt};ot={type:"template",baseUrl:te,segmentTemplateUrl:ie,initUrl:je,totalSegmentsDurationMs:Ae,segments:he,nextSegmentBeyondManifest:Au,timescale:ue}}else throw new ReferenceError("Unknown MPD segment referencing type");if(!ce||!ye)continue;let It={video:"video",audio:"audio",text:"text"}[ce];if(!It)continue;oe||=It,qe={id:jt,kind:It,segmentReference:ot,profiles:zt,duration:S,bitrate:Ut,mime:ye,codecs:rt,width:Ee,height:yt,fps:Ai,quality:at}}Z.language||=V,Z.label||=Pe,Z.mime||=ye,Z.codecs||=rt,Z.hdr||=oe==="video"&&Br(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 Se=Z.representations.find(ye=>ye.id===V.id)?.segmentReference,te=V.segmentReference;te.segments.push(...Se.segments),te.nextSegmentBeyondManifest=Se.nextSegmentBeyondManifest}else r[oe].push(Z)}}return{duration:S,streams:r,baseUrls:n,live:g}};import{isNonNullable as PT}from"@vkontakte/videoplayer-shared";var N=(s,e)=>PT(s)&&PT(e)&&s.readyState==="open"&&qB(s,e);function qB(s,e){for(let t=0;t<s.activeSourceBuffers.length;++t)if(s.activeSourceBuffers[t]===e)return!0;return!1}var fa=class{constructor(e,t,i,{fetcher:r,tuning:a,getCurrentPosition:n,isActiveLowLatency:o,compatibilityMode:u=!1,manifest:l}){this.currentLiveSegmentServerLatency$=new Gi(0);this.currentLowLatencySegmentLength$=new Gi(0);this.currentSegmentLength$=new Gi(0);this.onLastSegment$=new Gi(!1);this.fullyBuffered$=new Gi(!1);this.playingRepresentation$=new Gi(void 0);this.playingRepresentationInit$=new Gi(void 0);this.error$=new jB;this.gaps=[];this.subscription=new zB;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=vi(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 Py(this.sourceBuffer),this.subscription.add(md(this.sourceBuffer,"updateend").subscribe(()=>{this.checkEjectedSegments(),this.maintain()},n=>{let o,u=this.mediaSource.readyState;u!=="open"&&(o={id:`SegmentEjection_source_${u}`,category:ti.VIDEO_PIPELINE,message:"Error when trying to clear segments ejected by browser",thrown:n}),o??={id:"SegmentEjection",category:ti.VIDEO_PIPELINE,message:"Error when trying to clear segments ejected by browser",thrown:n},this.error$.next(o)})),this.subscription.add(md(this.sourceBuffer,"error").subscribe(()=>this.error$.next({id:"SourceBuffer",category:ti.VIDEO_PIPELINE,message:"SourceBuffer Error event fired"}))),this.subscription.add(this.sourceBufferTaskQueue.bufferFull$.subscribe(n=>{let o=this.getCurrentPosition();if(!this.sourceBuffer||!o||!N(this.mediaSource,this.sourceBuffer))return;let u=Math.min(this.bufferLimit,Lr(this.sourceBuffer.buffered)*.8);this.bufferLimit=u;let l=this.getForwardBufferDuration(o),c=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(o,n*2,l<c).catch(p=>{this.handleAsyncError(p,"pruneBuffer")})})),this.subscription.add(this.sourceBufferTaskQueue.error$.subscribe(n=>this.error$.next(n))),yield this.loadInit(t,"high",!0);let i=this.initData.get(t.id),r=this.segments.get(t.id),a=this.parsedInitData.get(t.id);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=vi(this.destroyAbortController.signal,async function*(e,t=!1){if(!N(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||!N(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();Dr(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=vi(this.destroyAbortController.signal,async function*(e,t=!1){if(!N(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||!N(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();Dr(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=vi(this.destroyAbortController.signal,async function*(e){let t=(0,Bo.default)(e,u=>u.representations)??[];if(this.isSeekingLive=!0,!this.downloadingRepresentationId||!t)return;for(let u of this.representations.keys()){let l=t.find(d=>d.id===u);l&&this.representations.set(u,l);let c=this.representations.get(u);if(!c||!We(c.segmentReference))return;let p=this.getActualLiveStartingSegments(c.segmentReference);this.segments.set(c.id,p)}let i=this.switchingToRepresentationId??this.downloadingRepresentationId,r=this.representations.get(i);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(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){!N(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId||(this.switchAbortController.abort(),this.switchAbortController=new ee,vi(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||!N(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();Dr(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)||!N(this.mediaSource,this.sourceBuffer)||Dr(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(c=>e>=c.time.from&&e<c.time.to);Dr(r)&&isFinite(r.time.from)&&isFinite(r.time.to)&&this.currentSegmentLength$.next(r?.time.to-r.time.from);let a=e,n=100;if(this.playingRepresentationId!==this.downloadingRepresentationId){let c=this.getForwardBufferDuration(e),p=r?r.time.to+n:-1/0;r&&r.time.to-e<this.tuning.dash.maxSegmentDurationLeftToSelectNextSegment&&c>=r.time.to-e+n&&(a=p)}if(isFinite(this.bufferLimit)&&Lr(this.sourceBuffer.buffered)>=this.bufferLimit){let c=this.getForwardBufferDuration(e),p=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(e,1/0,c<p).catch(d=>{this.handleAsyncError(d,"pruneBuffer")});return}let u=[];if(!this.activeSegments.size&&(u=this.selectForwardBufferSegments(i,t.segmentReference.type,a),u.length)){let c="auto";if(this.tuning.dash.useFetchPriorityHints&&r)if((0,$o.default)(u,r))c="high";else{let p=(0,Cr.default)(u,0);p&&p.time.from-r.time.to>=this.forwardBufferTarget/2&&(c="low")}this.loadSegments(u,t,c).catch(p=>{this.handleAsyncError(p,"loadSegments")})}(!this.preloadOnly&&!this.allInitsLoaded&&r&&r.status==="fed"&&!u.length&&this.getForwardBufferDuration(e)>3e3||this.isActiveLowLatency())&&this.loadNextInit();let l=(0,Cr.default)(i,-1);!this.isLive&&l&&(this.fullyBuffered$.next(l.time.to-e-this.getForwardBufferDuration(e)<n),this.onLastSegment$.next(e-l.time.from>0))}get lastDataObtainedTimestamp(){return this.lastDataObtainedTimestampMs}searchGaps(e,t){this.gaps=[];let i=0,r=this.isLive?this.liveInitialAdditionalOffset:0;for(let a of e)Math.trunc(a.time.from-i)>0&&this.gaps.push({representation:t.id,from:i,to:a.time.from+r}),i=a.time.to;Dr(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,Bo.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,Bo.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,Cr.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)??[],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=ei(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){let i=e.findIndex(r=>t>=r.time.from&&t<r.time.to);return this.playingRepresentationId!==this.downloadingRepresentationId&&(this.liveUpdateSegmentIndex=i),this.liveUpdateSegmentIndex<e.length?e.slice(this.liveUpdateSegmentIndex++):[]}selectForwardBufferSegmentsRecord(e,t,i){let r=e.findIndex(({status:p,time:{from:d,to:h}},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(p==="none"||p==="partially_ejected"&&g&&T&&this.sourceBuffer&&N(this.mediaSource,this.sourceBuffer)&&!(Fe(this.sourceBuffer.buffered,d)&&Fe(this.sourceBuffer.buffered,h)))&&g&&T});if(r===-1)return[];if(t!=="byteRange")return e.slice(r,r+1);let a=e,n=0,o=0,u=[],l=this.preloadOnly?0:this.tuning.dash.segmentRequestSize,c=this.preloadOnly?this.forwardBufferTarget:0;for(let p=r;p<a.length&&(n<=l||o<=c);p++){let d=a[p];if(n+=d.byte.to+1-d.byte.from,o+=d.time.to+1-d.time.from,d.status==="none"||d.status==="partially_ejected")u.push(d);else break}return u}async loadSegments(e,t,i="auto"){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 vi(o,async function*(){let c=bd(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(p=>setTimeout(p,c))}.bind(this))(),o.aborted&&this.abortActiveSegments([e]));try{let c=await this.fetcher.fetch(n,{range:a,signal:o,onProgress:u,priority:i,isLowLatency:this.isActiveLowLatency()});if(this.lastDataObtainedTimestampMs=Mo(),!c)return;let p=new DataView(c),d=pa(t.mime);if(!isFinite(r.segment.time.to)){let b=t.segmentReference.timescale;r.segment.time.to=d.getChunkEndTime(p,b)}u&&r.feedingBytes&&l?await Promise.all(l):await this.sourceBufferTaskQueue.append(p,o);let{serverDataReceivedTimestamp:h,serverDataPreparedTime:f}=d.getServerLatencyTimestamps(p);h&&f&&this.currentLiveSegmentServerLatency$.next(f-h),r.segment.status="downloaded",this.onSegmentFullyAppended(r,t.id),this.failedDownloads=0}catch(c){this.abortActiveSegments([e]),ha(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())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 vi(n,async function*(){let u=bd(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(l=>{this.loadByteRangeSegmentsTimeoutId=window.setTimeout(l,u),md(window,"online").pipe(HB()).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=Mo(),this.failedDownloads=0}catch(u){this.abortActiveSegments(e),ha(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,Cr.default)(e,0).byte.from,to:(0,Cr.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=Mo(),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:ti.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,c)=>{if(!a.aborted)try{this.lastDataObtainedTimestampMs=Mo();let p=this.onSomeTemplateDataLoaded({dataView:l,loaded:c,signal:a,onSegmentAppendFailed:()=>this.abort(),representationId:t.id});n.push(p)}catch(p){this.error$.next({id:"SegmentFeeding",category:ti.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:p})}}:void 0;return{url:r,signal:a,onProgress:u,onProgressTasks:n}}abortActiveSegments(e){for(let t of this.activeSegments)(0,$o.default)(e,t.segment)&&this.abortSegment(t.segment)}async onSomeTemplateDataLoaded({dataView:e,representationId:t,loaded:i,onSegmentAppendFailed:r,signal:a}){if(!this.activeSegments.size||!N(this.mediaSource,this.sourceBuffer))return;let n=this.representations.get(t);if(n)for(let o of this.activeSegments){let{segment:u}=o;if(o.representationId===t){if(a.aborted){r();continue}if(o.loadedBytes=i,o.loadedBytes>o.feedingBytes){let l=new DataView(e.buffer,e.byteOffset+o.feedingBytes,o.loadedBytes-o.feedingBytes),c=pa(n.mime).parseFeedableSegmentChunk(l,this.isLive);c?.byteLength&&(u.status="partially_fed",o.feedingBytes+=c.byteLength,await this.sourceBufferTaskQueue.append(c),o.fedBytes+=c.byteLength)}}}}async onSomeByteRangesDataLoaded({dataView:e,representationId:t,globalFrom:i,loaded:r,signal:a,onSegmentAppendFailed:n}){if(!this.activeSegments.size||!N(this.mediaSource,this.sourceBuffer))return;let o=this.representations.get(t);if(o)for(let u of this.activeSegments){let{segment:l}=u;if(u.representationId!==t)continue;if(a.aborted){await n();continue}let c=l.byte.from-i,p=l.byte.to-i,d=p-c+1,h=c<r,f=p<=r;if(!h)continue;let b=pa(o.mime);if(l.status==="downloading"&&f){l.status="downloaded";let g=new DataView(e.buffer,e.byteOffset+c,d);await this.sourceBufferTaskQueue.append(g,a)&&!a.aborted?this.onSegmentFullyAppended(u,t):await n()}else if(this.tuning.dash.enableSubSegmentBufferFeeding&&(l.status==="downloading"||l.status==="partially_fed")&&(u.loadedBytes=Math.min(d,r-c),u.loadedBytes>u.feedingBytes)){let g=new DataView(e.buffer,e.byteOffset+c+u.feedingBytes,u.loadedBytes-u.feedingBytes),S=u.loadedBytes===d?g:b.parseFeedableSegmentChunk(g);S?.byteLength&&(l.status="partially_fed",u.feedingBytes+=S.byteLength,await this.sourceBufferTaskQueue.append(S,a)&&!a.aborted?(u.fedBytes+=S.byteLength,u.fedBytes===d&&this.onSegmentFullyAppended(u,t)):await n())}}}onSegmentFullyAppended(e,t){if(!(Ne(this.sourceBuffer)||!N(this.mediaSource,this.sourceBuffer))){!this.isLive&&_.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:ti.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",dd(e.segment)&&(e.segment.size=e.fedBytes);for(let i of this.representations.values())if(i.id!==t)for(let r of this.segments.get(i.id)??[])r.status==="fed"&&Math.round(r.time.from)===Math.round(e.segment.time.from)&&Math.round(r.time.to)===Math.round(e.segment.time.to)&&(r.status="none");this.updateLowLatencyLiveIfNeeded(e.segment),this.activeSegments.delete(e),this.detectGapsWhenIdle(t,[e.segment])}}abortSegment(e){e.status==="partially_fed"?e.status="partially_ejected":e.status!=="partially_ejected"&&(e.status="none");for(let t of this.activeSegments.values())if(t.segment===e){this.activeSegments.delete(t);break}}loadNextInit(){if(this.allInitsLoaded||this.initLoadIdleCallback)return;let e=null,t=!1;for(let[r,a]of this.initData.entries()){let n=a instanceof Promise;t||=n,a===null&&(e=r)}if(!e){this.allInitsLoaded=!0;return}if(t)return;let i=this.representations.get(e);i&&(this.initLoadIdleCallback=Rr(()=>(0,wT.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?vi(this.destroyAbortController.signal,async function*(){let o=bd(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(u=>setTimeout(u,o))}.bind(this))():Promise.resolve()).then(()=>this.fetcher.fetchRepresentation(e.segmentReference,pa(e.mime),r)).then(async o=>{if(!o)return;let{init:u,dataView:l,segments:c}=o,p=l.buffer.slice(l.byteOffset,l.byteOffset+l.byteLength);this.initData.set(e.id,p);let d=c;this.isLive&&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:ti.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||!N(this.mediaSource,this.sourceBuffer)||!this.playingRepresentationId||Ne(e))return!1;let r=[],a=0,n=u=>{u.sort((c,p)=>c.from-p.from);let l=[u[0]];for(let c=1;c<u.length;c++){let{from:p,to:d}=u[c],h=l[l.length-1];h.to>=p?h.to=Math.max(h.to,d):l.push(u[c])}return l},o=u=>{if(a>=t)return r;r.push({...u.time}),r=n(r);let l=dd(u)?u.size??0:u.byte.to-u.byte.from;a+=l};for(let u of this.segments.values())for(let l of u){let c=l.time.to<=e-this.tuning.dash.bufferPruningSafeZone,p=l.time.from>=e+Math.min(this.forwardBufferTarget,this.bufferLimit);(c||p)&&l.status==="fed"&&o(l)}for(let u=0;u<this.sourceBuffer.buffered.length;u++){let l=this.sourceBuffer.buffered.start(u)*1e3,c=this.sourceBuffer.buffered.end(u)*1e3,p=0;for(let d of this.segments.values())for(let h of d)(0,$o.default)(["none","partially_ejected"],h.status)&&Math.round(h.time.from)<=Math.round(l)&&Math.round(h.time.to)>=Math.round(c)&&p++;if(p===this.segments.size){let d={time:{from:l,to:c},url:"",status:"none"};o(d)}}if(r.length&&i){let u=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;for(let l of this.segments.values())for(let c of l)c.time.from>=e+u&&c.status==="fed"&&o(c)}return r.length?(await Promise.all(r.map(l=>this.sourceBufferTaskQueue.remove(l.from,l.to)))).reduce((l,c)=>l||c,!1):!1}async abortBuffer(){if(!this.sourceBuffer||!N(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||!N(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||!N(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length||Ne(e)?0:Le(this.sourceBuffer.buffered,e)}detectGaps(e,t){if(!(!this.sourceBuffer||!N(this.mediaSource,this.sourceBuffer))){if(this.tuning.useRefactoredSearchGap)for(let i=0;i<this.sourceBuffer.buffered.length;i++)this.gaps=this.gaps.filter(r=>this.sourceBuffer&&(Math.round(r.from)<Math.round(this.sourceBuffer.buffered.start(i)*1e3)||Math.round(r.to)>Math.round(this.sourceBuffer.buffered.end(i)*1e3)));for(let i of t){let r={representation:e,from:i.time.from,to:i.time.to};for(let a=0;a<this.sourceBuffer.buffered.length;a++){let n=this.sourceBuffer.buffered.start(a)*1e3,o=this.sourceBuffer.buffered.end(a)*1e3;if(!(o<=i.time.from||n>=i.time.to)){if(n<=i.time.from&&o>=i.time.to){r=void 0;break}o>i.time.from&&o<i.time.to&&(r.from=o),n<i.time.to&&n>i.time.from&&(r.to=n)}}r&&r.to-r.from>1&&!this.gaps.some(a=>r&&a.from===r.from&&a.to===r.to)&&this.gaps.push(r)}}}detectGapsWhenIdle(e,t){if(!(this.gapDetectionIdleCallback||!this.sourceBuffer||!N(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=Rr(()=>{try{this.detectGaps(e,t)}catch(i){this.error$.next({id:"GapDetection",category:ti.WTF,message:"detectGaps threw",thrown:i})}finally{this.gapDetectionIdleCallback=null}})}}checkEjectedSegments(){if(Ne(this.sourceBuffer)||!N(this.mediaSource,this.sourceBuffer)||Ne(this.playingRepresentationId))return;let e=[];for(let i=0;i<this.sourceBuffer.buffered.length;i++){let r=Math.floor(this.sourceBuffer.buffered.start(i)*1e3),a=Math.ceil(this.sourceBuffer.buffered.end(i)*1e3);e.push({from:r,to:a})}let t=100;for(let i of this.segments.values())for(let r of i){let{status:a}=r;if(a!=="fed"&&a!=="partially_ejected")continue;let n=Math.floor(r.time.from),o=Math.ceil(r.time.to),u=e.some(c=>c.from-t<=n&&c.to+t>=o),l=e.filter(c=>n>=c.from&&n<c.to-t||o>c.from+t&&o<=c.to);u||(l.length===1?r.status="partially_ejected":this.gaps.some(c=>c.from===r.time.from||c.to===r.time.to)?r.status="partially_ejected":r.status="none")}}handleAsyncError(e,t){this.error$.next({id:t,category:ti.VIDEO_PIPELINE,thrown:e,message:"Something went wrong"})}};var yi=s=>{let e=new URL(s);return e.searchParams.set("quic","1"),e.toString()};var Do=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 ma,assertNever as AT,fromEvent as kT,merge as GB,now as ba,Subscription as QB,Subject as RT,ValueSubject as gd,flattenObject as Vr,ErrorCategory as ga}from"@vkontakte/videoplayer-shared";var Co=s=>{let e=new URL(s);return e.searchParams.set("enable-subtitles","yes"),e.toString()};var Oo=class{constructor({throughputEstimator:e,requestQuic:t,tracer:i,compatibilityMode:r=!1,useEnableSubtitlesParam:a=!1}){this.lastConnectionType$=new gd(void 0);this.lastConnectionReused$=new gd(void 0);this.lastRequestFirstBytes$=new gd(void 0);this.recoverableError$=new RT;this.error$=new RT;this.abortAllController=new ee;this.subscription=new QB;this.fetchManifest=ma(this.abortAllController.signal,async function*(e){let t=this.tracer.createComponentTracer("FetchManifest"),i=e;this.requestQuic&&(i=yi(i)),!this.compatibilityMode&&this.useEnableSubtitlesParam&&(i=Co(i));let r=yield this.doFetch(i,{signal:this.abortAllController.signal}).catch(Vo);return r?(t.log("success",Vr({url:i,message:"Request successfully executed"})),t.end(),this.onHeadersReceived(r.headers),r.text()):(t.error("error",Vr({url:i,message:"No data in request manifest"})),t.end(),null)}.bind(this));this.fetch=ma(this.abortAllController.signal,async function*(e,{rangeMethod:t=this.compatibilityMode?0:1,range:i,onProgress:r,priority:a="auto",signal:n,measureThroughput:o=!0,isLowLatency:u=!1}={}){let l=e,c=new Headers,p=this.tracer.createComponentTracer("Fetch");if(i)switch(t){case 0:{c.append("Range",`bytes=${i.from}-${i.to}`);break}case 1:{let D=new URL(l,location.href);D.searchParams.append("bytes",`${i.from}-${i.to}`),l=D.toString();break}default:AT(t)}this.requestQuic&&(l=yi(l));let d=this.abortAllController.signal,h;if(n){let D=new ee;if(h=GB(kT(this.abortAllController.signal,"abort"),kT(n,"abort")).subscribe(()=>{try{D.abort()}catch(I){Vo(I)}}),this.subscription.add(h),this.abortAllController.signal.aborted||n.aborted)try{D.abort()}catch(I){Vo(I)}d=D.signal}let f=ba();p.log("startRequest",Vr({url:l,priority:a,rangeMethod:t,range:i,isLowLatency:u,requestStartedAt:f}));let b=yield this.doFetch(l,{priority:a,headers:c,signal:d}),g=ba();if(!b)return p.error("error",{message:"No response in request"}),p.end(),h?.unsubscribe(),null;if(this.throughputEstimator?.addRawRtt(g-f),!b.ok||!b.body){h?.unsubscribe();let D=`Fetch error ${b.status}: ${b.statusText}`;return p.error("error",{message:D}),p.end(),Promise.reject(new Error(`Fetch error ${b.status}: ${b.statusText}`))}if(this.onHeadersReceived(b.headers),!r&&!o){h?.unsubscribe();let D=ba(),I={requestStartedAt:f,requestEndedAt:D,duration:D-f};return p.log("endRequest",Vr(I)),p.end(),b.arrayBuffer()}let[S,T]=b.body.tee(),y=S.getReader();o&&this.throughputEstimator?.trackStream(T,u);let E=0,P=new Uint8Array(0),$=!1,O=D=>{h?.unsubscribe(),$=!0,Vo(D)},w=ma(d,async function*({done:D,value:I}){if(E===0&&this.lastRequestFirstBytes$.next(ba()-f),d.aborted){h?.unsubscribe();return}if(!D&&I){let x=new Uint8Array(P.length+I.length);x.set(P),x.set(I,P.length),P=x,E+=I.byteLength,r?.(new DataView(P.buffer),E),yield y?.read().then(w,O)}}.bind(this));yield y?.read().then(w,O),h?.unsubscribe();let A=ba(),v={failed:$,requestStartedAt:f,requestEndedAt:A,duration:A-f};return $?(p.error("endRequest",Vr(v)),p.end(),null):(p.log("endRequest",Vr(v)),p.end(),P.buffer)}.bind(this));this.fetchByteRangeRepresentation=ma(this.abortAllController.signal,async function*(e,t,i){if(e.type!=="byteRange")return null;let{from:r,to:a}=e.initRange,n=r,o=a,u=!1,l,c;e.indexRange&&(l=e.indexRange.from,c=e.indexRange.to,u=a+1===l,u&&(n=Math.min(l,r),o=Math.max(c,a))),n=Math.min(n,0);let p=yield this.fetch(e.url,{range:{from:n,to:o},priority:i,measureThroughput:!1});if(!p)return null;let d=new DataView(p,r-n,a-n+1);if(!t.validateData(d))throw new Error("Invalid media file");let h=t.parseInit(d),f=e.indexRange??t.getIndexRange(h);if(!f)throw new ReferenceError("No way to load representation index");let b;if(u)b=new DataView(p,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(p),segments:g}}.bind(this));this.fetchTemplateRepresentation=ma(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}=Do(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:AT(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:ga.FATAL});break;case 8:this.recoverableError$.next({id:"VideoDataLinkBlockedForFloodError",message:"Url blocked for flood",category:ga.FATAL});break;case 18:this.recoverableError$.next({id:"VideoDataLinkIllegalIpChangeError",message:"Client IP has changed",category:ga.FATAL});break;case 21:this.recoverableError$.next({id:"VideoDataLinkIllegalHostChangeError",message:"Request HOST has changed",category:ga.FATAL});break;default:this.error$.next({id:"GeneralVideoDataFetchError",message:`Generic video data fetch error (${a})`,category:ga.FATAL})}}},Vo=s=>{if(!ha(s))throw s};var ii=(s,e,t)=>t*e+(1-t)*s,Sd=(s,e)=>s.reduce((t,i)=>t+i,0)/e,LT=(s,e,t,i)=>{let r=0,a=t,n=Sd(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 WB,ValueSubject as MT}from"@vkontakte/videoplayer-shared";var Ti=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 MT(e.initial),this.debounced$=new MT(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)&&(WB(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 _o=class extends Ti{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 Fo=class extends Ti{constructor(e){super(e),this.emaSmoothed=e.initial}updateSmoothedValue(e){let t=Sd(this.pastMeasures,this.takenMeasures);this.emaSmoothed=ii(this.emaSmoothed,e,this.params.emaAlpha);let i=LT(this.pastMeasures,this.takenMeasures,this.measuresCursor-1,this.params.basisTrendChangeCount);this.smoothed=i?this.emaSmoothed:t}};var No=class extends Ti{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 _o({initial:e,emaAlphaSlow:i.emaAlphaSlow,emaAlphaFast:i.emaAlphaFast,changeThreshold:i.changeThreshold,fastDirection:t,deviationDepth:i.deviationDepth,deviationFactor:i.deviationFactor,label:"throughput"}):new Fo({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 No({initial:e,label:"liveEdgeDelay",...t})}};var Or=(s,e)=>{s&&s.playbackRate!==e&&(s.playbackRate=e)};import{isNullable as YB,ValueSubject as KB}from"@vkontakte/videoplayer-shared";var Sa=class s{constructor(e,t){this.currentRepresentation$=new KB(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(!YB(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 qo=C(kt(),1);import{assertNever as Ho}from"@vkontakte/videoplayer-shared";var $T=(s,{useHlsJs:e,useManagedMediaSource:t,useOldMSEDetection:i})=>{let{containers:r,protocols:a,codecs:n,nativeHlsSupported:o}=_.video,u=(n.h264||n.h265)&&n.aac,l=a.mse&&(!i||!!window.MediaStreamTrack)||a.mms&&t;return s.filter(c=>{switch(c){case"DASH_SEP":return l&&r.mp4&&u;case"DASH_WEBM":return l&&r.webm&&n.vp9&&n.opus;case"DASH_WEBM_AV1":return l&&r.webm&&n.av1&&n.opus;case"DASH_STREAMS":return l&&(r.mp4&&u||r.webm&&(n.vp9||n.av1)&&(n.opus||n.aac));case"DASH_LIVE":return l&&r.mp4&&u;case"DASH_LIVE_CMAF":return l&&r.mp4&&u&&r.cmaf;case"DASH_ONDEMAND":return l&&r.mp4&&u;case"HLS":case"HLS_ONDEMAND":return o||e&&l&&r.mp4&&u;case"HLS_LIVE":case"HLS_LIVE_CMAF":return o;case"MPEG":return r.mp4;case"DASH":case"DASH_LIVE_WEBM":return!1;case"WEB_RTC_LIVE":return a.webrtc&&a.ws&&n.h264&&(r.mp4||r.webm);default:return Ho(c)}})},Uo=s=>{let{webmDecodingInfo:e}=_.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:Ho(s)}return[t,i]},BT=({webmCodec:s,androidPreferredFormat:e,preferMultiStream:t})=>{let i=[...t?["DASH_STREAMS"]:[],...Uo(s),"DASH_SEP","DASH_ONDEMAND",...t?[]:["DASH_STREAMS"]],r=[...t?["DASH_STREAMS"]:[],"DASH_SEP","DASH_ONDEMAND",...t?[]:["DASH_STREAMS"]];if(_.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",...Uo(s),"HLS","HLS_ONDEMAND"];case"dash_any_webm":return[...Uo(s),"MPEG",...r,"HLS","HLS_ONDEMAND"];case"dash_sep":return["DASH_SEP","MPEG",...Uo(s),...r,"HLS","HLS_ONDEMAND"];default:Ho(e)}return _.video.nativeHlsSupported?[...i,"HLS","HLS_ONDEMAND","MPEG"]:[...i,"HLS","HLS_ONDEMAND","MPEG"]},DT=({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=_.device.isMac&&_.browser.isSafari;if(_.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:Ho(s)}else _.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"]},vd=s=>s?["HLS_LIVE","HLS_LIVE_CMAF","DASH_LIVE_CMAF"]:["DASH_WEBM","DASH_WEBM_AV1","DASH_SEP","DASH_ONDEMAND","HLS","HLS_ONDEMAND","MPEG"],jo=s=>{if(s.size===0)return;if(s.size===1){let t=s.values().next();return(0,qo.default)(t.value.split("."),0)}for(let t of s){let i=(0,qo.default)(t.split("."),0);if(i==="opus"||i==="vp09"||i==="av01")return i}let e=s.values().next();return(0,qo.default)(e.value.split("."),0)};var sD=["timeupdate","progress","play","seeked","stalled","waiting"],aD=["timeupdate","progress","loadeddata","playing","seeked"];var Qo=class{constructor(e){this.element=null;this.manifestUrlString="";this.source=null;this.manifest=null;this.subscription=new OT;this.representationSubscription=new OT;this.state$=new F("none");this.currentVideoRepresentation$=new de(void 0);this.currentVideoRepresentationInit$=new de(void 0);this.currentAudioRepresentation$=new de(void 0);this.currentVideoSegmentLength$=new de(0);this.currentAudioSegmentLength$=new de(0);this.error$=new Go;this.lastConnectionType$=new de(void 0);this.lastConnectionReused$=new de(void 0);this.lastRequestFirstBytes$=new de(void 0);this.currentLiveTextRepresentation$=new de(null);this.isLive$=new de(!1);this.isActiveLive$=new de(!1);this.isLowLatency$=new de(!1);this.liveDuration$=new de(0);this.liveSeekableDuration$=new de(0);this.liveAvailabilityStartTime$=new de(0);this.liveStreamStatus$=new de(void 0);this.bufferLength$=new de(0);this.liveLatency$=new de(void 0);this.liveLoadBufferLength$=new de(0);this.livePositionFromPlayer$=new de(0);this.currentStallDuration$=new de(0);this.videoLastDataObtainedTimestamp$=new de(0);this.fetcherRecoverableError$=new Go;this.fetcherError$=new Go;this.liveStreamEndTimestamp=0;this.isUpdatingLive=!1;this.isJumpGapAfterSeekLive=!1;this.forceEnded$=new Go;this.gapWatchdogActive=!1;this.destroyController=new ee;this.initManifest=Td(this.destroyController.signal,async function*(e,t,i){this.tracer.log("initManifest"),this.element=e,this.manifestUrlString=be(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=Td(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=ET(e??"",this.manifestUrlString)}catch(n){let o=Ro(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)&&bt()?.isTypeSupported?.(`${o}; codecs="${u}"`)||n==="text");if(t.live){this.isLive$.next(!!t.live);let{availabilityStartTime:n,latestSegmentPublishTime:o,streamIsUnpublished:u,streamIsAlive:l}=t.live,c=(t.duration??0)/1e3;this.liveSeekableDuration$.next(-1*c),this.liveDuration$.next((o-n)/1e3),this.liveAvailabilityStartTime$.next(t.live.availabilityStartTime);let p="active";l||(p=u?"unpublished":"unexpectedly_down"),this.liveStreamStatus$.next(p)}let r={text:t.streams.text,video:[],audio:[]};for(let n of["video","audio"]){let u=t.streams[n].filter(({mime:p,codecs:d})=>i(n,p,d)),l=new Set(u.map(({codecs:p})=>p)),c=jo(l);if(c&&(r[n]=u.filter(({codecs:p})=>p.startsWith(c))),n==="video"){let p=this.tuning.preferHDR,d=r.video.some(f=>f.hdr),h=r.video.some(f=>!f.hdr);_.display.isHDR&&p&&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",ya(a)),a}.bind(this));this.initRepresentations=Td(this.destroyController.signal,async function*(e,t,i){this.tracer.log("initRepresentationsStart",ya({initialVideo:e,initialAudio:t,sourceHls:i})),_r(this.manifest),_r(this.element),this.representationSubscription.unsubscribe(),this.state$.startTransitionTo("representations_ready");let r=d=>{this.representationSubscription.add(si(d,"error").pipe(zo(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?ao():new MediaSource;let a=document.createElement("source");if(r(a),a.src=URL.createObjectURL(this.source),this.element.appendChild(a),this.tuning.useManagedMediaSource&&Tr())if(i){let d=document.createElement("source");r(d),d.type="application/x-mpegurl",d.src=i.url,this.element.appendChild(d)}else this.element.disableRemotePlayback=!0;this.isActiveLive$.next(this.isLive$.getValue());let n={fetcher:this.fetcher,tuning:this.tuning,getCurrentPosition:()=>this.element?this.element.currentTime*1e3:void 0,isActiveLowLatency:()=>this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),manifest:this.manifest},o=this.manifest.streams.video.reduce((d,h)=>[...d,...h.representations],[]);if(this.videoBufferManager=new fa("video",this.source,o,n),this.bufferManagers=[this.videoBufferManager],Ta(t)){let d=this.manifest.streams.audio.reduce((h,f)=>[...h,...f.representations],[]);this.audioBufferManager=new fa("audio",this.source,d,n),this.bufferManagers.push(this.audioBufferManager)}Sa.isSupported(this.manifest.streams.text)&&!this.isLowLatency$.getValue()&&(this.liveTextManager=new Sa(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(Qi(...aD.map(d=>si(this.element,d))).pipe(Nr(d=>this.element?Le(this.element.buffered,this.element.currentTime*1e3):0),va(),iD(d=>{d>this.tuning.dash.bufferEmptinessTolerance&&u()})).subscribe(this.bufferLength$)),this.representationSubscription.add(Qi(si(this.element,"ended"),this.forceEnded$).subscribe(()=>{u()})),this.isLive$.getValue()){this.subscription.add(this.liveDuration$.pipe(va()).subscribe(h=>this.liveStreamEndTimestamp=xd())),this.subscription.add(si(this.element,"pause").subscribe(()=>{this.livePauseWatchdogSubscription=Id(1e3).subscribe(h=>{let f=hi(this.manifestUrlString,2);this.manifestUrlString=be(this.manifestUrlString,f+1e3,2),this.liveStreamStatus$.getValue()==="active"&&this.updateManifest()}),this.subscription.add(this.livePauseWatchdogSubscription)})).add(si(this.element,"play").subscribe(h=>this.livePauseWatchdogSubscription?.unsubscribe())),this.representationSubscription.add(Fr({isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe(Nr(({isActiveLive:h,isLowLatency:f})=>h&&f),va()).subscribe(h=>{this.isManualDecreasePlaybackInLive()||Or(this.element,1)})),this.representationSubscription.add(Fr({bufferLength:this.bufferLength$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe(zo(({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(Fr({isLive:this.isLive$,rtt:this.throughputEstimator.rtt$,bufferLength:this.bufferLength$,segmentServerLatency:this.videoBufferManager.currentLiveSegmentServerLatency$}).pipe(zo(({isLive:h})=>h),va((h,f)=>f.bufferLength<h.bufferLength),Nr(({rtt:h,bufferLength:f,segmentServerLatency:b})=>{let g=hi(this.manifestUrlString,2);return(h/2+f+b+g)/1e3})).subscribe(this.liveLatency$)),this.representationSubscription.add(Fr({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,y=h-g;if(this.isManualDecreasePlaybackInLive())return;let E=1;Math.abs(y)>S&&(E=1+Math.sign(y)*T),Or(this.element,E)})),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(Fr({liveLoadBufferLength:this.liveLoadBufferLength$,bufferLength:this.bufferLength$}).pipe(rD(1e3)).subscribe(async({liveLoadBufferLength:h,bufferLength:f})=>{if(!this.element||this.isUpdatingLive)return;let b=this.element.playbackRate,g=hi(this.manifestUrlString,2),S=Math.abs(this.livePositionFromPlayer$.getValue())*1e3,T=Math.min(S,this.tuning.dashCmafLive.normalizedTargetMinBufferSize*b),y=this.tuning.dashCmafLive.normalizedActualBufferOffset*b,E=this.tuning.dashCmafLive.normalizedLiveMinBufferSize*b,P=isFinite(h)?h:f,$=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),O=S<=this.tuning.live.activeLiveDelay;this.isActiveLive$.next(O);let w="none";if($?w="active_low_latency":this.isLowLatency$.getValue()&&O?(this.bufferManagers.forEach(A=>A.proceedLowLatencyLive()),w="active_low_latency"):g!==0&&P<T?w="live_forward_buffering":P<T+E&&(w="live_with_target_offset"),isFinite(h)&&(d=h>d?h:d),w==="live_forward_buffering"||w==="live_with_target_offset"){let A=d-(T+y),v=this.normolizeLiveOffset(Math.trunc(g+A/b)),D=Math.abs(v-g),I=0;!h||D<=this.tuning.dashCmafLive.offsetCalculationError?I=g:v>0&&D>this.tuning.dashCmafLive.offsetCalculationError&&(I=v),this.manifestUrlString=be(this.manifestUrlString,I,2)}(w==="live_with_target_offset"||w==="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=Qi(...this.bufferManagers.map(d=>d.fullyBuffered$)).pipe(Nr(()=>this.bufferManagers.every(d=>d.fullyBuffered$.getValue()))),c=Qi(...this.bufferManagers.map(d=>d.onLastSegment$)).pipe(Nr(()=>this.bufferManagers.some(d=>d.onLastSegment$.getValue()))),p=Fr({allBuffersFull:l,someBufferEnded:c}).pipe(va(),Nr(({allBuffersFull:d,someBufferEnded:h})=>d&&h),zo(d=>d));if(this.representationSubscription.add(Qi(this.forceEnded$,p).subscribe(()=>{if(this.source&&this.source.readyState==="open"&&Array.from(this.source.sourceBuffers).every(d=>!d.updating))try{this.source?.endOfStream()}catch(d){this.error$.next({id:"EndOfStream",category:Ft.VIDEO_PIPELINE,message:"Failed to end MediaSource stream",thrown:d})}})),this.representationSubscription.add(Qi(...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,Ed.default)((0,Ed.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&&Ta(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=Id(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 Oo({throughputEstimator:this.throughputEstimator,requestQuic:this.tuning.requestQuick,compatibilityMode:e.compatibilityMode,tracer:this.tracer,useEnableSubtitlesParam:e.tuning.useEnableSubtitlesParam}),this.subscription.add(this.fetcher.recoverableError$.subscribe(this.fetcherRecoverableError$)),this.subscription.add(this.fetcher.error$.subscribe(this.fetcherError$)),this.liveBuffer=ri.getLiveBufferSmoothedValue(this.tuning.dashCmafLive.lowLatency.maxTargetOffset,{...e.tuning.dashCmafLive.lowLatency.bufferEstimator}),this.initTracerSubscription()}async seekLive(e){_r(this.element);let t=this.liveStreamStatus$.getValue()!=="active"?xd()-this.liveStreamEndTimestamp:0,i=this.normolizeLiveOffset(e+t);this.isActiveLive$.next(i===0),this.manifestUrlString=be(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(){_r(this.element),this.state$.setState("running"),this.subscription.add(Qi(...sD.map(e=>si(this.element,e)),si(window,"online")).subscribe(()=>this.tick(),e=>{this.error$.next({id:"DashVKPlayer",category:Ft.WTF,message:"Internal logic error",thrown:e})})),this.subscription.add(si(this.element,"progress").subscribe(()=>{this.element&&this.element.readyState===2&&!this.element.seeking&&(this.element.currentTime=this.element.currentTime)})),this.subscription.add(si(this.element,"waiting").subscribe(()=>{this.element&&this.element.readyState===2&&!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=xd(),a=100,n=this.videoBufferManager?.lastDataObtainedTimestamp??0;this.videoLastDataObtainedTimestamp$.next(n);let o=this.audioBufferManager?.lastDataObtainedTimestamp??0,u=this.videoBufferManager?.getForwardBufferDuration()??0,l=this.audioBufferManager?.getForwardBufferDuration()??0,c=u<a&&r-n>this.tuning.dash.crashOnStallTWithoutDataTimeout,p=this.audioBufferManager&&l<a&&r-o>this.tuning.dash.crashOnStallTWithoutDataTimeout;if((c||p)&&t>this.tuning.dash.crashOnStallTWithoutDataTimeout||t>=this.tuning.dash.crashOnStallTimeout)throw new Error(`Stall timeout exceeded: ${t} ms`);if(this.isLive$.getValue()&&t%2e3===0){let d=this.normolizeLiveOffset(-1*this.livePositionFromPlayer$.getValue()*1e3);this.seekLive(d).catch(h=>{this.error$.next({id:"stallIntervalCallback",category: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",ya(i))};this.stallWatchdogSubscription?.unsubscribe(),this.stallWatchdogSubscription=Id(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){_r(this.element),_r(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()]),!(VT(this.element)||VT(this.videoBufferManager))&&(this.videoBufferManager.maintain(i),this.audioBufferManager?.maintain(i),this.element.currentTime=i/1e3,this.tracer.log("seek",ya({requestedPosition:e,forcePrecise:t,position:i})))}warmUpMediaSourceIfNeeded(e=this.element?.currentTime){Ta(this.element)&&Ta(this.source)&&Ta(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=tD(this.tracer.error.bind(this.tracer));this.subscription.add(this.error$.subscribe(e("error")))}isManualDecreasePlaybackInLive(){return!this.element||!this.isLive$.getValue()?!1:1-this.element.playbackRate>this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup}normolizeLiveOffset(e){return Math.trunc(e/1e3)*1e3}async updateLive(){this.isUpdatingLive=!0,this.manifest=await this.updateManifest(),this.manifest&&(this.bufferManagers?.forEach(e=>e.updateLive(this.manifest)),this.liveTextManager?.updateLive(this.manifest)),this.isUpdatingLive=!1}jumpGap(){if(!this.element||!this.videoBufferManager)return;let e=this.videoBufferManager.getDebugBufferState();if(!e)return;let t=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),i={isJumpGapAfterSeekLive:this.isJumpGapAfterSeekLive,isActiveLowLatency:t,initialCurrentTime:this.element.currentTime};this.isJumpGapAfterSeekLive&&!t&&this.element.currentTime>e.to&&(this.isJumpGapAfterSeekLive=!1,this.element.currentTime=0);let r=this.element.currentTime*1e3,a=[],n=this.element.readyState===1?this.tuning.endGapTolerance:0;for(let o of this.bufferManagers)for(let u of o.gaps)o.playingRepresentation$.getValue()===u.representation&&u.from-n<=r&&u.to+n>r&&(this.element.duration*1e3-u.to<this.tuning.endGapTolerance?a.push(1/0):a.push(u.to));if(a.length){let o=Math.max(...a)+10;this.gapWatchdogSubscription.unsubscribe(),this.gapWatchdogActive=!1,o===1/0?this.forceEnded$.next():(this.element.currentTime=o/1e3,i={...i,gapEnds:a,jumpTo:o,resultCurrentTime:this.element.currentTime},this.tracer.log("jumpGap",ya(i)))}}};var Wo=class{constructor(e,t){this.fov=e,this.orientation=t}};var Yo=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 FT=`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 LS=`#ifdef GL_ES
135
+ `;var NT=`#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 un=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 nn(this.params.fov,this.params.orientation),this.cameraRotationManager=new on(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(AS,this.gl.VERTEX_SHADER),i=this.createShader(LS,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 xM,now as RS,Subscription as PM,filter as kM,combine as $S,debounce as wM,ValueSubject as Ll,isNonNullable as AM}from"@vkontakte/videoplayer-shared";var Rl=class{constructor(){this.isSeeked$=new Ll(!1);this.isBuffering$=new Ll(!1);this.currentStallsCount=0;this.maxQualityLimit=void 0;this.lastUniqueVideoTrackSelectedTimestamp=0;this.predictedThroughputWithoutData=0;this.subscription=new PM;this.severeStallOccurred$=new Ll(!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($S({isBuffering:this.isBuffering$,isSeeked:this.isSeeked$}).pipe(wM(this.qualityLimitsOnStall.stallDurationToBeCount),kM(({isBuffering:t,isSeeked:i})=>t&&!i)).subscribe(t=>{this.currentStallsCount++})),this.subscription.add($S({currentStallDuration:this.currentStallDuration$}).subscribe(({currentStallDuration:t})=>{let{stallDurationNoDataBeforeQualityDecrease:i,stallCountBeforeQualityDecrease:a,resetQualityRestrictionTimeout:s,ignoreStallsOnSeek:n}=this.qualityLimitsOnStall;if(xM(this.lastUniqueVideoTrackSelected)||n&&this.isSeeked$.getValue())return;let o=this.rtt$.getValue(),u=this.throughput$.getValue(),l=this.videoLastDataObtainedTimestamp$.getValue(),c=RS(),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,AM(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=RS(),this.currentStallsCount=0)}destroy(){window.clearTimeout(this.qualityRestrictionTimer),this.subscription.unsubscribe()}},MS=Rl;import{combine as LM,map as RM,observeElementSize as $M,Subscription as MM,ValueSubject as $l,noop as CM}from"@vkontakte/videoplayer-shared";var ln=class{constructor(){this.subscription=new MM;this.pipSize$=new $l(void 0);this.videoSize$=new $l(void 0);this.elementSize$=new $l(void 0);this.pictureInPictureWindowRemoveEventListener=CM}connect({observableVideo:e,video:t}){let i=a=>{let s=a.target;this.pipSize$.next({width:s.width,height:s.height})};this.subscription.add($M(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(LM({videoSize:this.videoSize$,pipSize:this.pipSize$,inPip:e.inPiP$}).pipe(RM(({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 ni=class{constructor(e){this.subscription=new NM;this.videoState=new C("stopped");this.droppedFramesManager=new qs;this.stallsManager=new MS;this.elementSizeManager=new ln;this.videoTracksMap=new Map;this.audioTracksMap=new Map;this.textTracksMap=new Map;this.videoStreamsMap=new Map;this.audioStreamsMap=new Map;this.videoTrackSwitchHistory=new Ar;this.audioTrackSwitchHistory=new Ar;this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),i=this.params.desiredState.playbackState.getTransition(),a=this.params.desiredState.seekState.getState();if(!this.videoState.getTransition()){if(a.state==="requested"&&i?.to!=="paused"&&e!=="stopped"&&t!=="stopped"&&this.seek(a.position,a.forcePrecise),t==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.player.stop(),this.video.load(),this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),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 VM(e)}}};this.init3DScene=e=>{if(this.scene3D)return;this.scene3D=new un(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 Fe(e.source.url),this.params=e,this.video=Ie(e.container,e.tuning),this.tracer=e.dependencies.tracer.createComponentTracer(this.constructor.name),this.params.output.element$.next(this.video),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(ne(this.params.source.url)),this.params.output.isLive$.next(!1),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.player=new sn({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:CS.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(Ml(l=>!!l.length),VS()).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(Cl(l=>l.to.state!=="none"),Ia());this.stallsManager.connect({isSeeked$:n,currentStallDuration$:this.player.currentStallDuration$.pipe(Ia()),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(Ml(DS),VS()),e.firstBytesEvent$),s(this.stallsManager.severeStallOccurred$,e.severeStallOccurred$),s(this.videoState.stateChangeEnded$.pipe(Cl(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(rt(this.video,t.isLooped,a)),this.subscription.add(xe(this.video,t.volume,i.volumeState$,a)),this.subscription.add(i.volumeState$.subscribe(this.params.output.volume$,a)),this.subscription.add(Ne(this.video,t.playbackRate,i.playbackRateState$,a)),this.elementSizeManager.connect({video:this.video,observableVideo:i}),s(qe(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(BM(c,"Manifest not loaded or empty"),!this.params.tuning.isAudioDisabled){let p=[];for(let h of c.audio){p.push(pl(h));let f=[];for(let b of h.representations){let g=iS(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(hl(p));let h=[];for(let f of p.representations){let b=tS({...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=rS(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(cn(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$,_M(this.video,"progress")).pipe(Ml(()=>this.videoTracksMap.size>0)).subscribe(async()=>{let l=this.player.state$.getState(),c=this.player.state$.getTransition();if(!(0,BS.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);DS(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(Ia()).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(hl(p))},a)),this.subscription.add(this.player.currentAudioRepresentation$.pipe(Ia()).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(pl(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(Cl(({to:l})=>l==="ready"),Ia());this.subscription.add(cn(o,t.autoVideoTrackSwitching.stateChangeStarted$,this.player.state$.stateChangeEnded$,Dl(["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(cn(o,this.player.state$.stateChangeEnded$,Dl(["init"])).subscribe(()=>this.player.setPreloadOnly(t.playbackState.getState()==="ready")));let u=cn(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,Dl(["init"])).pipe(OM(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=Bi(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=Os(n,c,this.audioStreamsMap.get(g)??[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);v=Math.max(v,B?.bitrate??-1/0)}if(o){let B=Os(o,c,this.audioStreamsMap.get(g)??[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);v=Math.max(v,B?.bitrate??-1/0)}}let x=$t(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,P=g&&Xb(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=P&&this.audioTracksMap.get(P)?.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(){we(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:CS.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),Ee(this.video),this.tracer.end()}};var Ea=class extends ni{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 Vl,merge as OS,filter as _S,filterChanged as FM,isNullable as Bl,map as NS,ValueSubject as Ol,isNonNullable as qM}from"@vkontakte/videoplayer-shared";var xa=class extends ni{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 Ol(1);s(i.playbackRateState$,n),this.subscription.add(this.params.output.position$.subscribe(this.player.livePositionFromPlayer$)).add(a.isLowLatency.stateChangeEnded$.pipe(NS(o=>o.to)).subscribe(this.player.isLowLatency$)).add(Vl({liveBufferTime:t.liveBufferTime$,liveAvailabilityStartTime:this.player.liveAvailabilityStartTime$}).pipe(NS(({liveBufferTime:o,liveAvailabilityStartTime:u})=>o&&u?o+u:void 0)).subscribe(t.liveTime$)).add(this.player.liveStreamStatus$.pipe(_S(o=>qM(o))).subscribe(o=>t.isLiveEnded$.next(o!=="active"&&t.position$.getValue()===0))).add(Vl({liveDuration:this.player.liveDuration$,liveStreamStatus:this.player.liveStreamStatus$,playbackRate:OS(i.playbackRateState$,new Ol(1))}).pipe(_S(({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||Bl(l)||(e=o-l)})).add(Vl({time:t.liveBufferTime$,liveDuration:this.player.liveDuration$,playbackRate:OS(i.playbackRateState$,new Ol(1))}).pipe(FM((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||Bl(o)||Bl(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=aS(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 qS=M(xs(),1);import{assertNever as Pa,assertNonNullable as FS,debounce as UM,ErrorCategory as dn,filter as HM,isNonNullable as jM,isNullable as QM,map as pn,merge as GM,Observable as WM,observableFrom as YM,Subscription as zM,videoSizeToQuality as KM}from"@vkontakte/videoplayer-shared";var Ke={};var Gi=(r,e)=>new WM(t=>{let i=(a,s)=>t.next(s);return r.on(e,i),()=>r.off(e,i)}),ka=class{constructor(e){this.subscription=new zM;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:Pa(e)}break;case"ready":switch(e){case"stopped":this.prepare();break;case"ready":case"playing":case"paused":break;default:Pa(e)}break;case"playing":switch(e){case"playing":break;case"stopped":this.prepare();break;case"ready":case"paused":this.playIfAllowed();break;default:Pa(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:Pa(e)}break;default:Pa(t)}};this.textTracksManager=new Fe(e.source.url),this.video=Ie(e.container,e.tuning),this.params=e,this.params.output.element$.next(this.video),this.params.output.isLive$.next(!1),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(ne(this.params.source.url)),this.loadHlsJs()}destroy(){this.subscription.unsubscribe(),this.trackLevels.clear(),this.textTracksManager.destroy(),this.hls?.detachMedia(),this.hls?.destroy(),this.params.output.element$.next(void 0),Ee(this.video)}loadHlsJs(){let e=!1,t=a=>{e||this.params.output.error$.next({id:a==="timeout"?"HlsJsTimeout":"HlsJsLoadError",category:dn.NETWORK,message:"Failed to load Hls.js",thrown:a}),e=!0},i=window.setTimeout(()=>t("timeout"),this.params.tuning.dynamicImportTimeout);(0,qS.default)(import("hls.js").then(a=>{e||(Ke.Hls=a.default,Ke.Events=a.default.Events,this.init())},t),()=>{window.clearTimeout(i),e=!0})}init(){FS(Ke.Hls,"hls.js not loaded"),this.hls=new Ke.Hls({fragLoadingMaxRetry:5,levelLoadingMaxRetry:2,manifestLoadingMaxRetry:2,fragLoadingMaxRetryTimeout:16e3,manifestLoadingMaxRetryTimeout:2e3,levelLoadingMaxRetryTimeout:2e3}),this.subscribe(),this.videoState.setState("stopped")}subscribe(){FS(Ke.Events,"hls.js not loaded");let{desiredState:e,output:t}=this.params,i=l=>{t.error$.next({id:"HlsJsProvider",category:dn.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(rt(this.video,e.isLooped,i)),this.subscription.add(xe(this.video,e.volume,a.volumeState$,i)),this.subscription.add(a.volumeState$.subscribe(this.params.output.volume$)),this.subscription.add(Ne(this.video,e.playbackRate,a.playbackRateState$,i)),s(qe(this.video),t.elementVisible$),s(this.videoState.stateChangeEnded$.pipe(pn(l=>l.to)),this.params.output.playbackState$),this.subscription.add(Gi(this.hls,Ke.Events.ERROR).subscribe(l=>{l.fatal&&t.error$.next({id:["HlsJsFatal",l.type,l.details].join("_"),category:dn.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(Gi(this.hls,Ke.Events.MANIFEST_PARSED).pipe(pn(({levels:l})=>l.reduce((c,d)=>{let p=d.name||d.height.toString(10),{width:h,height:f}=d,b=At(d.attrs.QUALITY??"")??KM({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(Gi(this.hls,Ke.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(Gi(this.hls,Ke.Events.LEVEL_LOADING).pipe(pn(({url:l})=>ne(l))),t.hostname$),s(Gi(this.hls,Ke.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(Pt(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=Gi(this.hls,Ke.Events.LEVEL_SWITCHED).pipe(pn(({level:l})=>n(this.hls.levels[l])));o.pipe(HM(jM)).subscribe(t.currentVideoTrack$,i),this.subscription.add(Pt(e.videoTrack,()=>n(this.hls.levels[this.hls.currentLevel]),l=>{if(QM(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=GM(e.playbackState.stateChangeStarted$,e.videoTrack.stateChangeStarted$,e.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,YM(["init"])).pipe(UM(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 we(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).catch(t=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:dn.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 US="X-Playback-Duration",_l=async r=>{let e=await st(r),t=await e.text(),i=/#EXT-X-VK-PLAYBACK-DURATION:(\d+)/m.exec(t)?.[1];return i?parseInt(i,10):e.headers.has(US)?parseInt(e.headers.get(US),10):void 0};import{assertNever as oC,combine as uC,debounce as lC,ErrorCategory as fn,filter as cC,filterChanged as dC,isNonNullable as QS,isNullable as bn,map as GS,merge as pC,observableFrom as hC,Subscription as mC,ValueSubject as ql,VideoQuality as fC}from"@vkontakte/videoplayer-shared";var Fl=M(Bo(),1);import{videoSizeToQuality as XM,getExponentialDelay as JM}from"@vkontakte/videoplayer-shared";var ZM=r=>{let e=null;if(r.QUALITY&&(e=At(r.QUALITY)),!e&&r.RESOLUTION){let[t,i]=r.RESOLUTION.split("x").map(a=>parseInt(a,10));e=XM({width:t,height:i})}return e??null},eC=(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,Fl.default)(o[1].split(",").map(g=>g.split("="))),c=l.QUALITY??`stream-${l.BANDWIDTH}`,d=ZM(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,Fl.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}},tC=r=>new Promise(e=>{setTimeout(()=>{e()},r)}),Nl=0,HS=async(r,e=r,t,i)=>{let s=await(await st(r,i)).text();Nl+=1;try{let{qualityManifests:n,textTracks:o}=eC(s,e);return{qualityManifests:n,textTracks:o}}catch{if(Nl<=t.manifestRetryMaxCount)return await tC(JM(Nl-1,{start:t.manifestRetryInterval,max:t.manifestRetryMaxInterval})),HS(r,e,t)}return{qualityManifests:[],textTracks:[]}},hn=HS;import{isNonNullable as iC,Subscription as rC,throttle as aC,ValueSubject as jS,Subject as sC,ErrorCategory as nC}from"@vkontakte/videoplayer-shared";var mn=class{constructor(e,t,i,a,s){this.subscription=new rC;this.abortControllers={destroy:new pe,nextManifest:null};this.prepareUrl=void 0;this.currentTextTrackData=null;this.availableTextTracks$=new jS(null);this.getCurrentTime$=new jS(null);this.error$=new sC;this.params={fetchManifestData:i,sourceUrl:a,downloadThreshold:s},this.subscription.add(e.pipe(aC(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 st(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(iC(e)&&this.currentTextTrackData){let{segments:t}=this.currentTextTrackData.playlist,{from:i}=t[0].time,{to:a}=t[t.length-1].time;if(e<i||e>a)return;a-e<this.params.downloadThreshold&&this.fetchNextManifestData();for(let n of t)if(n.time.from<=e&&n.time.to>=e){this.availableTextTracks$.next([{...this.currentTextTrackData.textTrack,url:n.url,isAuto:!0}]);break}}}async fetchNextManifestData(){try{if(this.abortControllers.nextManifest)return;this.abortControllers.nextManifest=new pe;let{textTracks:e}=await this.fetchManifestData(),t=await this.parseTextTracks(e,this.params.sourceUrl);this.currentTextTrackData&&t&&(this.currentTextTrackData.playlist.segments=t.playlist.segments)}catch(e){this.error("fetchNextManifestData",e)}finally{this.abortControllers.nextManifest=null}}async fetchManifestData(){let e=this.prepareUrl??this.params.sourceUrl;return await this.params.fetchManifestData(e,{signal:this.abortControllers.destroy.signal})}error(e,t){this.error$.next({id:"[LiveTextManager][HLS_LIVE_CMAF]",category:nC.WTF,thrown:t,message:e})}};var wa=class{constructor(e){this.subscription=new mC;this.videoState=new C("stopped");this.textTracksManager=null;this.liveTextManager=null;this.manifests$=new ql([]);this.liveOffset=new Zt;this.manifestStartTime$=new ql(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 oC(t)}};this.params=e,this.video=Ie(e.container,e.tuning),this.params.output.element$.next(this.video),this.masterManifest={id:"master",quality:fC.INVARIANT,url:this.params.source.url};let t=(i,a)=>hn(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 mn(this.params.output.liveTime$,this.video,t,this.params.source.url,this.params.tuning.hlsLiveNewTextManagerDownloadThreshold):this.textTracksManager=new Fe(e.source.url),t(this.generateLiveUrl()).then(({qualityManifests:i,textTracks:a})=>{i.length===0&&this.params.output.error$.next({id:"HlsLiveProviderInternal:empty_manifest",category:fn.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:fn.NETWORK,message:"Error fetching manifest and extracting qualities",thrown:i})}),this.params.output.isLive$.next(!0),this.params.output.canChangePlaybackSpeed$.next(!1),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(ne(this.params.source.url)),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.maxSeekBackTime$=new ql(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:fn.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(xe(this.video,t.volume,a.volumeState$,i)),this.subscription.add(a.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(Ne(this.video,t.playbackRate,a.playbackRateState$,i)),s(qe(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(dC(),GS(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&&QS(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(ne(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(uC({startTime:this.manifestStartTime$.pipe(cC(QS)),currentTime:a.timeUpdate$}).subscribe(({startTime:o,currentTime:u})=>this.params.output.liveTime$.next(o+u*1e3),i)),this.subscription.add(this.manifests$.pipe(GS(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=pC(t.playbackState.stateChangeStarted$,t.seekState.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.stateChangeStarted$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,this.manifests$,hC(["init"])).pipe(lC(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),Ee(this.video)}prepare(){let e=this.selectManifest();if(bn(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=de(a.toString(),this.liveOffset.getTotalOffset(),s);this.liveTextManager?.prepare(n),this.video.setAttribute("src",n),this.video.load(),_l(n).then(o=>{if(!bn(o))this.maxSeekBackTime$.next(o);else{let u=this.params.source.maxSeekBackTime??this.maxSeekBackTime$.getValue();(bn(u)||!isFinite(u))&&st(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();_l(d).then(p=>{bn(p)||this.maxSeekBackTime$.next(p)})}}).catch(()=>{})}})}playIfAllowed(){we(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:fn.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=de(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 bC,debounce as gC,ErrorCategory as Ul,fromEvent as Hl,isNonNullable as vC,isNullable as SC,map as WS,merge as YS,observableFrom as zS,Subscription as yC,ValueSubject as TC,VideoQuality as IC}from"@vkontakte/videoplayer-shared";var Aa=class{constructor(e){this.subscription=new yC;this.videoState=new C("stopped");this.manifests$=new TC([]);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 bC(t)}};this.textTracksManager=new Fe(e.source.url),this.params=e,this.video=Ie(e.container,e.tuning),this.params.output.element$.next(this.video),this.masterManifest={id:"master",quality:IC.INVARIANT,url:this.params.source.url},this.params.output.isLive$.next(!1),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(ne(this.params.source.url)),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),hn(de(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:Ul.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:Ul.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(WS(o=>o.to)),this.params.output.playbackState$),this.subscription.add(rt(this.video,t.isLooped,i)),this.subscription.add(xe(this.video,t.volume,a.volumeState$,i)),this.subscription.add(a.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(Ne(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&&vC(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(ne(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(WS(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(YS(Hl(o,"addtrack"),Hl(o,"removetrack"),Hl(o,"change"),zS(["init"])).subscribe(()=>{for(let u=0;u<o.length;u++)o[u].mode="hidden"},i))}let n=YS(t.playbackState.stateChangeStarted$,t.seekState.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.stateChangeStarted$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,this.manifests$,zS(["init"])).pipe(gC(0));this.subscription.add(n.subscribe(this.syncPlayback,i))}destroy(){this.subscription.unsubscribe(),this.textTracksManager.destroy(),this.params.output.element$.next(void 0),Ee(this.video)}prepare(){let e=this.selectManifest();if(SC(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(){we(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:Ul.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next(),this.video.currentTime=e/1e3}};var JS=M(Ii(),1),jl=M(Ci(),1),ZS=M(Lt(),1);import{assertNever as EC,assertNonNullable as KS,debounce as xC,ErrorCategory as XS,isHigherOrEqual as PC,isLowerOrEqual as kC,isNonNullable as wC,merge as AC,observableFrom as LC,Subscription as RC,map as $C}from"@vkontakte/videoplayer-shared";var La=class{constructor(e){this.subscription=new RC;this.videoState=new C("stopped");this.trackUrls={};this.textTracksManager=new Fe;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 EC(e)}};this.params=e,this.video=Ie(e.container,e.tuning),this.params.output.element$.next(this.video),(0,JS.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,jl.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:XS.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($C(o=>o.to)),this.params.output.playbackState$),this.subscription.add(rt(this.video,t.isLooped,i)),this.subscription.add(xe(this.video,t.volume,a.volumeState$,i)),this.subscription.add(a.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(Ne(this.video,t.playbackRate,a.playbackRateState$,i)),s(qe(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&&wC(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=AC(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,LC(["init"])).pipe(xC(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),Ee(this.video)}prepare(){let e=this.params.desiredState.videoTrack.getState()?.id;KS(e,"MpegProvider: track is not selected");let{url:t}=this.trackUrls[e];KS(t,`MpegProvider: No url for ${e}`),this.params.tuning.requestQuick&&(t=ma(t)),this.video.setAttribute("src",t),this.video.load(),this.params.output.hostname$.next(ne(t))}playIfAllowed(){we(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:XS.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=$t(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,jl.default)(this.trackUrls).map(l=>l.track);if(!a||!s||wr({limits:e,lowestAvailableQuality:(0,ZS.default)(n,-1)?.quality,highestAvailableQuality:n[0].quality})){i();return}let o=e.max?kC(a,e.max):!0,u=e.min?PC(a,e.min):!0;o&&u||i(e)}};import{assertNever as ty,debounce as VC,merge as iy,observableFrom as BC,Subscription as OC,map as ry,ValueSubject as _C,ErrorCategory as Gl,VideoQuality as NC}from"@vkontakte/videoplayer-shared";import{ErrorCategory as MC}from"@vkontakte/videoplayer-shared";var ey=["stun:videostun.mycdn.me:80"],CC=1e3,DC=3,Ql=()=>null,gn=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=Ql;this.externalStopCallback=Ql;this.externalErrorCallback=Ql;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:ey}]};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:MC.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),CC)}normalizeOptions(e={}){let t={stunServerList:ey,maxRetryNumber:DC,errorChanel:null};return e.stunServerList&&(t.stunServerList=e.stunServerList),e.maxRetryNumber&&e.maxRetryNumber>0&&(t.maxRetryNumber=e.maxRetryNumber),t}};var Ra=class{constructor(e){this.videoState=new C("stopped");this.maxSeekBackTime$=new _C(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 ty(e)}};this.subscription=new OC,this.params=e,this.log=this.params.dependencies.logger.createComponentLog("WebRTCLiveProvider"),this.video=Ie(e.container,e.tuning),this.liveStreamClient=new gn(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),Ee(this.video)}subscribe(){let{output:e,desiredState:t}=this.params,i=n=>{e.error$.next({id:"WebRTCLiveProvider",category:Gl.WTF,message:"WebRTCLiveProvider internal logic error",thrown:n})};this.subscription.add(iy(this.videoState.stateChangeStarted$.pipe(ry(n=>({transition:n,type:"start"}))),this.videoState.stateChangeEnded$.pipe(ry(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(qe(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(xe(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 ty(n.to)}},i)).add(iy(t.playbackState.stateChangeStarted$,this.videoState.stateChangeEnded$,BC(["init"])).pipe(VC(0)).subscribe(this.syncPlayback.bind(this),i)),this.subscription.add(t.isLooped.stateChangeStarted$.subscribe(()=>t.isLooped.setState(!1),i)),this.subscription.add(t.autoVideoTrackSwitching.stateChangeStarted$.subscribe(()=>t.autoVideoTrackSwitching.setState(!1),i))}onLiveStreamStart(e){this.params.output.element$.next(this.video),this.params.output.duration$.next(0),this.params.output.position$.next(0),this.params.output.isLive$.next(!0),this.params.output.canChangePlaybackSpeed$.next(!1),this.params.output.hostname$.next(ne(this.params.source.url)),this.params.output.autoVideoTrackLimitingAvailable$.next(!1),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.currentVideoTrack$.next({id:"webrtc",quality:NC.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:Gl.EXTERNAL_API,message:e.message,thrown:e})}playIfAllowed(){we(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:Gl.DOM,thrown:e}))}prepare(){this.liveStreamClient.connect()}};var $a=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 Ma,assertNonNullable as Bt,ErrorCategory as vn,filter as ly,isNonNullable as cy,isNullable as GC,map as WC,merge as YC,once as zC,Subject as ue,Subscription as dy,ValueSubject as D,flattenObject as py}from"@vkontakte/videoplayer-shared";import{Observable as FC,map as ay,Subscription as qC,Subject as UC}from"@vkontakte/videoplayer-shared";var sy=r=>new FC(e=>{let t=new qC,i=r.desiredPlaybackState$.stateChangeStarted$.pipe(ay(({from:l,to:c})=>`${l}-${c}`)),a=r.desiredPlaybackState$.stateChangeEnded$,s=r.providerChanged$.pipe(ay(({type:l})=>l!==void 0)),n=new UC,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 HC,Subscription as jC,combine as QC,filter as oy,once as uy}from"@vkontakte/videoplayer-shared";function ny(){return new(window.AudioContext||window.webkitAudioContext)}var Wi=class r{constructor(e,t,i,a){this.providerOutput=e;this.provider$=t;this.volumeMultiplierError$=i;this.volumeMultiplier=a;this.destroyController=new pe;this.subscriptions=new jC;this.audioContext=null;this.gainNode=null;this.mediaElementSource=null;this.subscriptions.add(this.provider$.pipe(oy(s=>!!s.type),uy()).subscribe(({type:s})=>this.subscribe(s)))}static{this.errorId="VolumeMultiplierManager"}subscribe(e){O.browser.isSafari&&e!=="MPEG"||this.subscriptions.add(QC({video:this.providerOutput.element$,playbackState:this.providerOutput.playbackState$,volume:this.providerOutput.volume$}).pipe(oy(({playbackState:t,video:i,volume:{muted:a,volume:s}})=>t==="playing"&&!!i&&!a&&!!s),uy()).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=ny();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:HC.VIDEO_PIPELINE,message:e?.message??`${r.errorId} exception`,thrown:e})}};var KC={chunkDuration:5e3,maxParallelRequests:5},Ca=class{constructor(e){this.current$=new D({type:void 0});this.providerError$=new ue;this.noAvailableProvidersError$=new ue;this.volumeMultiplierError$=new ue;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 ue,fetcherError$:new ue,fetcherRecoverableError$:new ue,warning$:new ue,willSeekEvent$:new ue,soundProhibitedEvent$:new ue,seekedEvent$:new ue,loopedEvent$:new ue,endedEvent$:new ue,firstBytesEvent$:new ue,loadedMetadataEvent$:new ue,firstFrameEvent$:new ue,canplay$:new ue,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 ue,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 dy;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=TS([...ES(this.params.tuning),...IS(this.params.tuning)],this.params.tuning).filter(l=>cy(e.sources[l])),{forceFormat:i,formatsToAvoid:a}=this.params.tuning,s=[];i?s=[i]:a.length?s=[...t.filter(l=>!(0,Wl.default)(a,l)),...t.filter(l=>(0,Wl.default)(a,l))]:s=t,this.log({message:`Selected formats: ${s.join(" > ")}`}),this.tracer.log("Selected formats",py(s)),this.screenFormatsIterator=new $a(s);let n=[...El(!0),...El(!1)];this.chromecastFormatsIterator=new $a(n.filter(l=>cy(e.sources[l]))),this.providerOutput.availableSources$.next(e.sources);let{volumeMultiplier:o=1,tuning:{useVolumeMultiplier:u}}=this.params;u&&o!==1&&Wi.isSupported()&&(this.volumeMultiplierManager=new Wi(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(GC(t)){this.handleNoFormatsError(e);return}let i;try{i=this.createProvider(e,t)}catch(a){this.providerError$.next({id:"ProviderNotConstructed",category:vn.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 Ma(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 Bt(u),new Ea({...o,source:u,sourceHls:l})}case"DASH_LIVE_CMAF":{let u=this.applyFailoverHost(t[e]);return Bt(u),new xa({...o,source:u})}case"HLS":case"HLS_ONDEMAND":{let u=this.applyFailoverHost(t[e]);return Bt(u),O.video.nativeHlsSupported||!this.params.tuning.useHlsJs?new Aa({...o,source:u}):new ka({...o,source:u})}case"HLS_LIVE":case"HLS_LIVE_CMAF":{let u=this.applyFailoverHost(t[e]);return Bt(u),new wa({...o,source:u,config:{maxPausedTime:this.params.tuning.live.maxPausedTime},format:e})}case"MPEG":{let u=this.applyFailoverHost(t[e]);return Bt(u),new La({...o,source:u})}case"DASH_LIVE":{let u=this.applyFailoverHost(t[e]);return Bt(u),new mg({...o,source:u,config:{...KC,maxPausedTime:this.params.tuning.live.maxPausedTime}})}case"WEB_RTC_LIVE":{let u=this.applyFailoverHost(t[e]);return Bt(u),new Ra({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 Ma(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 Bt(o),new Tr({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 Ma(e)}}skipFormat(e){switch(e){case"SCREEN":return this.screenFormatsIterator.next();case"CHROMECAST":return this.chromecastFormatsIterator.next();default:return Ma(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 Ma(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,my.default)((0,hy.default)(e).map(([a,s])=>[a,i(s)]))}initProviderErrorHandling(){let e=new dy,t=!1,i=0;return e.add(YC(this.providerOutput.error$.pipe(ly(a=>!this.params.tuning.ignoreAudioRendererError||!a.message||!/AUDIO_RENDERER_ERROR/ig.test(a.message))),sy({desiredPlaybackState$:this.params.desiredState.playbackState,maxTransitionInterval:this.params.tuning.maxPlaybackTransitionInterval,position$:this.providerOutput.position$,providerChanged$:this.current$}).pipe(WC(a=>({id:`ProviderHangup:${a}`,category:vn.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(ly(({to:s})=>s==="playing"),zC()).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===vn.NETWORK,u=a.category===vn.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",py(n))})),e}};import{fromEvent as Sn,once as XC,combine as JC,Subscription as fy,ValueSubject as Yl,map as ZC,filter as eD,isNonNullable as yn,now as Ve,safeStorage as zl}from"@vkontakte/videoplayer-shared";var tD=5e3,by="one_video_throughput",gy="one_video_rtt",Da=window.navigator.connection,vy=()=>{let r=Da?.downlink;if(yn(r)&&r!==10)return r*1e3},Sy=()=>{let r=Da?.rtt;if(yn(r)&&r!==3e3)return r},yy=(r,e,t)=>{let i=t*8,a=i/r;return i/(a+e)},Kl=class r{constructor(e){this.subscription=new fy;this.concurrentDownloads=new Set;this.tuningConfig=e;let t=r.load(by)||(e.useBrowserEstimation?vy():void 0)||tD,i=r.load(gy)??(e.useBrowserEstimation?Sy():void 0)??0;if(this.throughput$=new Yl(t),this.rtt$=new Yl(i),this.rttAdjustedThroughput$=new Yl(yy(t,i,e.rttPenaltyRequestSize)),this.throughput=ai.getSmoothedValue(t,-1,e),this.rtt=ai.getSmoothedValue(i,1,e),e.useBrowserEstimation){let a=()=>{let n=vy();n&&this.throughput.next(n);let o=Sy();yn(o)&&this.rtt.next(o)};Da&&"onchange"in Da&&this.subscription.add(Sn(Da,"change").subscribe(a)),a()}this.subscription.add(this.throughput.smoothed$.subscribe(a=>{zl.set(by,a.toFixed(0))})),this.subscription.add(this.rtt.smoothed$.subscribe(a=>{zl.set(gy,a.toFixed(0))})),this.subscription.add(this.throughput.debounced$.subscribe(this.throughput$)),this.subscription.add(this.rtt.debounced$.subscribe(this.rtt$)),this.subscription.add(JC({throughput:this.throughput.smoothed$,rtt:this.rtt.smoothed$}).pipe(ZC(({throughput:a,rtt:s})=>yy(a,s,e.rttPenaltyRequestSize)),eD(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=Ve(),a=new fy;switch(this.subscription.add(a),this.concurrentDownloads.add(e),e.readyState){case 4:break;case 3:case 2:a.add(Sn(e,"progress").pipe(XC()).subscribe(s=>{t=s.loaded,i=Ve()}));break;case 1:case 0:a.add(Sn(e,"loadstart").subscribe(()=>{t=0,i=Ve()}));break}a.add(Sn(e,"loadend").subscribe(s=>{if(e.status===200){let n=s.loaded,o=Ve(),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=Ve(),n=0,o=Ve(),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,Ve()-s,1),this.concurrentDownloads.delete(e);else if(d){if(t){let p=Ve();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=Ve()}else n+=d.byteLength;o=Ve()}else a+=d.byteLength,n+=d.byteLength,n>=this.tuningConfig.streamMinSampleSize&&Ve()-o>=this.tuningConfig.streamMinSampleTime&&(this.addRawSpeed(n,Ve()-o,this.concurrentDownloads.size),n=0,o=Ve());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=zl.get(e);if(yn(t))return parseInt(t,10)??void 0}},Ty=Kl;import{fillWithDefault as iD,VideoQuality as Tn}from"@vkontakte/videoplayer-shared";var Iy={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:Tn.Q_4320P,activeVideoAreaThreshold:.1,highQualityLimit:Tn.Q_720P,trafficSavingLimit:Tn.Q_480P},droppedFramesChecker:{enabled:!1,percentLimit:.1,checkTime:1e3,countLimit:3,tickCountAfterQualityChange:5,qualityUpWaitingTime:5e3,minQualityBanLimit:Tn.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},Ey=r=>({...iD(r,Iy),configName:[...r.configName??[],...Iy.configName]});import{assertNonNullable as In,combine as gt,ErrorCategory as En,filter as L,filterChanged as Q,fromEvent as Jl,isNonNullable as wy,isNullable as lD,Logger as cD,map as U,mapTo as Ay,merge as Ot,now as xn,once as _,Subject as G,Subscription as Ly,tap as Zl,ValueSubject as y,isHigher as dD,isInvariantQuality as Ry,flattenObject as _t,throttle as ec,getTraceSubscriptionMethod as $y,Tracer as pD,InternalsExposure as hD}from"@vkontakte/videoplayer-shared";import{merge as rD,map as aD,filter as xy,isNonNullable as sD}from"@vkontakte/videoplayer-shared";var Xl=({seekState:r,position$:e})=>rD(r.stateChangeEnded$.pipe(aD(({to:t})=>t.state==="none"?void 0:(t.position??NaN)/1e3),xy(sD)),e.pipe(xy(()=>r.getState().state==="none")));import{assertNonNullable as nD}from"@vkontakte/videoplayer-shared";var Py=r=>{let e=typeof r.container=="string"?document.getElementById(r.container):r.container;return nD(e,`Wrong container or containerId {${r.container}}`),e};import{filter as oD,once as uD}from"@vkontakte/videoplayer-shared";var ky=(r,e,t,i)=>{r!==void 0&&e.getState()===void 0&&e.getPrevState()===void 0&&t?.getValue().length===0?t.pipe(oD(a=>a.length>0),uD()).subscribe(a=>{a.find(i)&&e.startTransitionTo(r)}):(r===void 0||t?.getValue().find(i))&&e.startTransitionTo(r)};var Pn=class{constructor(e={configName:[]},t=pD.createRootTracer(!1)){this.subscription=new Ly;this.logger=new cD;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 G,ready$:new G,started$:new G,playing$:new G,paused$:new G,stopped$:new G,willStart$:new G,willResume$:new G,willPause$:new G,willStop$:new G,willDestruct$:new G,watchCoverageRecord$:new G,watchCoverageLive$:new G,managedError$:new G,fatalError$:new G,fetcherRecoverableError$:new G,ended$:new G,looped$:new G,seeked$:new G,willSeek$:new G,autoplaySoundProhibited$:new G,firstBytes$:new G,loadedMetadata$:new G,firstFrame$:new G,canplay$:new G,log$:new G,fetcherError$:new G,severeStallOccured$:new G};this.experimental={element$:new y(void 0),tuningConfigName$:new y([]),enableDebugTelemetry$:new y(!1),dumpTelemetry:_b,getCurrentTime$:new y(null)};if(this.initLogs(),this.tuning=Ey(e),this.tracer=t,this.experimental.tuningConfigName$.next(this.tuning.configName),this.chromecastInitializer=new Ka({receiverApplicationId:e.chromecastReceiverId,isDisabled:e.disableChromecast,dependencies:{logger:this.logger}}),this.throughputEstimator=new Ty(this.tuning.throughputEstimator),e.exposeInternalsToGlobal&&(this.internalsExposure=new hD("CORE"),this.internalsExposure.expose({player:this})),this.initChromecastSubscription(),this.initDesiredStateSubscriptions(),Proxy&&Reflect)return new Proxy(this,{get:(i,a,s)=>{let n=Reflect.get(i,a,s);return typeof n!="function"?n:(...o)=>{try{return n.apply(i,o)}catch(u){let l=o.map(p=>JSON.stringify(p,(h,f)=>{let b=typeof f;return(0,My.default)(["number","string","boolean"],b)?f:f===null?null:`<${b}>`})),c=`Player.${String(a)}`,d=`Exception calling ${c} (${l.join(", ")})`;throw this.events.fatalError$.next({id:c,category:En.WTF,message:d,thrown:u}),u}}}})}initVideo(e){this.config=e,this.internalsExposure?.expose({config:e,logger:this.logger,tuning:this.tuning});let t=()=>{let{container:s,...n}=e;this.tracer.log("initVideo",_t(n)),this.domContainer=Py(e),this.chromecastInitializer.contentId=e.meta?.videoId,this.providerContainer=new Ca({sources:e.sources,meta:e.meta??{},failoverHosts:e.failoverHosts??[],container:this.domContainer,desiredState:this.desiredState,dependencies:{throughputEstimator:this.throughputEstimator,chromecastInitializer:this.chromecastInitializer,tracer:this.tracer,logger:this.logger,abrLogger:this.abrLogger},tuning:this.tuning,volumeMultiplier:e.volumeMultiplier,panelSize:e.panelSize}),this.initProviderContainerSubscription(this.providerContainer),this.initStartingVideoTrack(this.providerContainer),this.initTracerSubscription(),this.providerContainer.init(),this.setLiveLowLatency(this.tuning.dashCmafLive.lowLatency.isActiveOnDefault),this.setMuted(this.tuning.isAudioDisabled),this.initDebugTelemetry(),this.initWakeLock(),this.playerInited.next(!0)},i=()=>{this.tuning.autostartOnlyIfVisible&&window.requestAnimationFrame?this.playerInitRequest=window.requestAnimationFrame(()=>t()):t()},a=()=>{this.tuning.asyncResolveClientChecker?O.isInited$.pipe(L(s=>!!s),_()).subscribe(()=>{console.log("Core SDK async start"),i()}):i()};return this.isNotActiveTabCase()?(this.tracer.log("request play from hidden tab"),Jl(document,"visibilitychange").pipe(_()).subscribe(a)):a(),this}destroy(){this.tracer.log("destroy"),window.clearTimeout(this.hasLiveOffsetByPausedTimer),this.playerInitRequest&&window.cancelAnimationFrame(this.playerInitRequest),this.events.willDestruct$.next(),this.stop(),this.providerContainer?.destroy(),this.throughputEstimator.destroy(),this.chromecastInitializer.destroy(),this.subscription.unsubscribe(),this.tracer.end(),this.internalsExposure?.destroy()}prepare(){return this.subscription.add(this.playerInited.pipe(L(e=>!!e),_()).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(L(e=>!!e),_()).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(L(e=>!!e),_()).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(L(e=>!!e),_()).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(L(i=>!!i),_()).subscribe(()=>{let i=this.info.duration$.getValue(),a=this.info.isLive$.getValue(),s=e;e>=i&&!a&&(s=i-this.tuning.seekNearDurationBias),this.tracer.log("seekTime",{duration:i,isLive:a,time:e,calculatedTime:s,forcePrecise:t}),Number.isFinite(s)&&(this.events.willSeek$.next({from:this.getExactTime(),to:s}),this.desiredState.seekState.setState({state:"requested",position:s*1e3,forcePrecise:t}))})),this}seekPercent(e){return this.subscription.add(this.playerInited.pipe(L(t=>!!t),_()).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(L(i=>!!i),_()).subscribe(()=>{let i=this.desiredState.volume,s=i.getTransition()?.to.muted??this.info.muted$.getValue(),n=t??(this.tuning.isAudioDisabled||s);this.tracer.log("setVolume",{volume:e,isAudioDisabled:this.tuning.isAudioDisabled,chromecastState:this.chromecastInitializer.castState$.getValue(),muted:n}),this.chromecastInitializer.castState$.getValue()==="CONNECTED"?this.chromecastInitializer.setVolume(e):i.startTransitionTo({volume:e,muted:n})})),this}setMuted(e){return this.subscription.add(this.playerInited.pipe(L(t=>!!t),_()).subscribe(()=>{let t=this.desiredState.volume,i=this.tuning.isAudioDisabled||e,s=t.getTransition()?.to.volume??this.info.volume$.getValue();this.tracer.log("setMuted",{isMuted:e,nextMuted:i,volume:s,isAudioDisabled:this.tuning.isAudioDisabled,chromecastState:this.chromecastInitializer.castState$.getValue()}),this.chromecastInitializer.castState$.getValue()==="CONNECTED"?this.chromecastInitializer.setMuted(i):t.startTransitionTo({volume:s,muted:i})})),this}setVideoStream(e){return this.subscription.add(this.playerInited.pipe(L(t=>!!t),_()).subscribe(()=>{this.desiredState.videoStream.startTransitionTo(e)})),this}setAudioStream(e){return this.subscription.add(this.playerInited.pipe(L(t=>!!t),_()).subscribe(()=>{this.desiredState.audioStream.startTransitionTo(e)})),this}setQuality(e){return this.subscription.add(this.playerInited.pipe(L(t=>!!t),_()).subscribe(()=>{In(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(L(i=>i.length>0),_()).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(L(t=>!!t),_()).subscribe(()=>{this.tracer.log("setAutoQuality",{enable:e}),this.desiredState.autoVideoTrackSwitching.startTransitionTo(e)})),this}setAutoQualityLimits(e){return this.subscription.add(this.playerInited.pipe(L(t=>!!t),_()).subscribe(()=>{this.tracer.log("setAutoQualityLimits",_t(e)),this.desiredState.autoVideoTrackLimits.startTransitionTo(e)})),this}setPredefinedQualityLimits(e){return this.subscription.add(this.playerInited.pipe(L(t=>!!t),_()).subscribe(()=>{if(this.info.predefinedQualityLimitType$.getValue()===e)return this;let{highQualityLimit:t,trafficSavingLimit:i}=this.tuning.autoTrackSelection,a;switch(e){case"high_quality":a={min:t,max:void 0};break;case"traffic_saving":a={max:i,min:void 0};break;default:a={max:void 0,min:void 0}}this.setAutoQualityLimits(a)})),this}setPlaybackRate(e){return this.subscription.add(this.playerInited.pipe(L(t=>!!t),_()).subscribe(()=>{In(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(L(t=>!!t),_()).subscribe(()=>{e.length&&this.tracer.log("setExternalTextTracks",_t(e)),this.desiredState.externalTextTracks.startTransitionTo(e.map(t=>({type:"external",...t})))})),this}selectTextTrack(e){return this.subscription.add(this.playerInited.pipe(L(t=>!!t),_()).subscribe(()=>{ky(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(L(t=>!!t),_()).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(L(t=>!!t),_()).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(L(i=>!!i),_()).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(L(t=>!!t),_()).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(L(i=>!!i),_()).subscribe(()=>{let i=this.getScene3D();if(this.tracer.log("moveCameraFocusPX",{isScene3DAvailable:!!i,dxpx:e,dypx:t}),i){let a=i.getCameraRotation(),s=i.pixelToDegree({x:e,y:t});this.desiredState.cameraOrientation.setState({x:a.x+s.x,y:a.y+s.y})}})),this}holdCamera(){return this.subscription.add(this.playerInited.pipe(L(e=>e),_()).subscribe(()=>{let e=this.getScene3D();e&&e.holdCamera()})),this}releaseCamera(){return this.subscription.add(this.playerInited.pipe(L(e=>!!e),_()).subscribe(()=>{let e=this.getScene3D();e&&e.releaseCamera()})),this}getExactTime(){if(!this.providerContainer)return 0;let e=this.providerContainer.providerOutput.element$.getValue();if(lD(e))return this.info.position$.getValue();let t=this.desiredState.seekState.getState(),i=t.state==="none"?void 0:t.position;return wy(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(Ot(this.desiredState.playbackState.stateChangeStarted$,this.desiredState.playbackState.forceChanged$).pipe(U(e=>e.to)).subscribe(this.info.playbackState$)).add(this.desiredState.isLooped.stateChangeEnded$.pipe(U(e=>e.to)).subscribe(this.info.isLooped$)).add(this.desiredState.playbackRate.stateChangeEnded$.pipe(U(e=>e.to)).subscribe(this.info.currentPlaybackRate$)).add(this.desiredState.autoVideoTrackSwitching.stateChangeEnded$.pipe(U(e=>e.to)).subscribe(this.info.isAutoQualityEnabled$)).add(this.desiredState.autoVideoTrackLimits.stateChangeEnded$.pipe(U(e=>e.to)).subscribe(e=>{this.info.autoQualityLimits$.next(e);let{highQualityLimit:t,trafficSavingLimit:i}=this.tuning.autoTrackSelection;this.info.predefinedQualityLimitType$.next(Du({limits:e,highQualityLimit:t,trafficSavingLimit:i}))})),this.subscription.add(this.desiredState.playbackState.stateChangeStarted$.pipe(L(({from:e})=>e==="stopped"),_()).subscribe(()=>{this.initedAt=xn(),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",_t(n)),n.state==="requested"?this.desiredState.seekState.setState({...n,state:"applying"}):this.events.managedError$.next({id:`WillSeekIn${n.state}`,category:En.WTF,message:"Received unexpeceted willSeek$"})})).add(e.providerOutput.soundProhibitedEvent$.pipe(_()).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",_t(n)),n.state==="applying"&&(this.desiredState.seekState.setState({state:"none"}),this.events.seeked$.next())})).add(e.current$.pipe(U(n=>n.type)).subscribe(this.info.currentFormat$)).add(e.current$.pipe(U(n=>n.destination),Q()).subscribe(()=>this.isPlaybackStarted=!1)).add(e.providerOutput.availableVideoStreams$.subscribe(this.info.availableVideoStreams$)).add(gt({availableVideoTracks:e.providerOutput.availableVideoTracks$,currentVideoStream:e.providerOutput.currentVideoStream$}).pipe(U(({availableVideoTracks:n,currentVideoStream:o})=>n.filter(u=>o?o.id===u.streamId:!0).map(({quality:u})=>u).sort((u,l)=>Ry(u)?1:Ry(l)?-1:dD(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(Q()).subscribe(this.info.isAudioAvailable$)).add(e.providerOutput.currentVideoTrack$.pipe(L(n=>wy(n))).subscribe(n=>{this.info.currentQuality$.next(n?.quality),this.info.videoBitrate$.next(n?.bitrate)})).add(e.providerOutput.currentVideoSegmentLength$.pipe(Q((n,o)=>Math.round(n)===Math.round(o))).subscribe(this.info.currentVideoSegmentLength$)).add(e.providerOutput.currentAudioSegmentLength$.pipe(Q((n,o)=>Math.round(n)===Math.round(o))).subscribe(this.info.currentAudioSegmentLength$)).add(e.providerOutput.hostname$.pipe(Q()).subscribe(this.info.hostname$)).add(e.providerOutput.httpConnectionType$.pipe(Q()).subscribe(this.info.httpConnectionType$)).add(e.providerOutput.httpConnectionReused$.pipe(Q()).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(U(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(Zl(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(gt({hasLiveOffsetByPaused:Ot(this.desiredState.playbackState.stateChangeStarted$,this.desiredState.playbackState.forceChanged$).pipe(U(n=>n.to),Q(),U(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(gt({atLiveEdge:gt({isLive:e.providerOutput.isLive$,isLowLatency:e.providerOutput.isLowLatency$,position:Xl({seekState:this.desiredState.seekState,position$:e.providerOutput.position$})}).pipe(U(({isLive:n,position:o,isLowLatency:u})=>{let l=this.getActiveLiveDelay(u);return n&&Math.abs(o)<l/1e3}),Q(),Zl(n=>n&&this.setPlaybackRate(1))),hasPausedTimeoutCase:this.hasLiveOffsetByPaused}).pipe(U(({atLiveEdge:n,hasPausedTimeoutCase:o})=>n&&!o)).subscribe(this.info.atLiveEdge$)).add(gt({isLive:e.providerOutput.isLive$,position:e.providerOutput.position$,duration:e.providerOutput.duration$}).pipe(U(({isLive:n,position:o,duration:u})=>n&&(Math.abs(u)-Math.abs(o))*1e3<this.tuning.live.activeLiveDelay),Q(),Zl(n=>n&&this.setPlaybackRate(1))).subscribe(this.info.atLiveDurationEdge$)).add(e.providerOutput.volume$.pipe(U(n=>n.muted),Q()).subscribe(this.info.muted$)).add(e.providerOutput.volume$.pipe(U(n=>n.volume),Q()).subscribe(this.info.volume$)).add(Xl({seekState:this.desiredState.seekState,position$:e.providerOutput.position$}).subscribe(this.info.position$)).add(Ot(e.providerOutput.endedEvent$.pipe(Ay(!0)),e.providerOutput.seekedEvent$.pipe(Ay(!1))).pipe(Q()).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(U(n=>({id:n?`No${n}`:"NoProviders",category:En.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(_(),U(n=>n??xn()-this.initedAt)).subscribe(this.events.firstBytes$)).add(e.providerOutput.loadedMetadataEvent$.subscribe(this.events.loadedMetadata$)).add(e.providerOutput.firstFrameEvent$.pipe(_(),U(()=>xn()-this.initedAt)).subscribe(this.events.firstFrame$)).add(e.providerOutput.canplay$.pipe(_(),U(()=>xn()-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(L(({to:n})=>n==="playing"),_()).subscribe(()=>i.next(!1)));let a=0,s=Ot(e.providerOutput.isBuffering$,t,i).pipe(U(()=>{let n=e.providerOutput.isBuffering$.getValue(),o=t.getValue()||i.getValue();return n&&!o}),Q());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(Ot(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(Ot(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(U(e=>e?.castDevice.friendlyName)).subscribe(this.info.chromecastDeviceName$)),this.subscription.add(this.chromecastInitializer.errorEvent$.subscribe(this.events.managedError$))}initStartingVideoTrack(e){let t=new Ly;this.subscription.add(t),this.subscription.add(e.current$.pipe(Q((i,a)=>i.provider===a.provider)).subscribe(()=>{t.unsubscribe(),t.add(e.providerOutput.availableVideoTracks$.pipe(L(i=>i.length>0),_()).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=$t(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(Ot(this.desiredState.videoTrack.stateChangeStarted$.pipe(U(e=>({transition:e,entity:"quality",type:"start"}))),this.desiredState.videoTrack.stateChangeEnded$.pipe(U(e=>({transition:e,entity:"quality",type:"end"}))),this.desiredState.autoVideoTrackSwitching.stateChangeStarted$.pipe(U(e=>({transition:e,entity:"autoQualityEnabled",type:"start"}))),this.desiredState.autoVideoTrackSwitching.stateChangeEnded$.pipe(U(e=>({transition:e,entity:"autoQualityEnabled",type:"end"}))),this.desiredState.seekState.stateChangeStarted$.pipe(U(e=>({transition:e,entity:"seekState",type:"start"}))),this.desiredState.seekState.stateChangeEnded$.pipe(U(e=>({transition:e,entity:"seekState",type:"end"}))),this.desiredState.playbackState.stateChangeStarted$.pipe(U(e=>({transition:e,entity:"playbackState",type:"start"}))),this.desiredState.playbackState.stateChangeEnded$.pipe(U(e=>({transition:e,entity:"playbackState",type:"end"})))).pipe(U(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;In(this.providerContainer),In(e),Ob(),this.experimental.enableDebugTelemetry$.next(this.tuning.enableTelemetryAtStart),[this.experimental.enableDebugTelemetry$.subscribe(t=>Bb(t)),this.providerContainer.current$.subscribe(({type:t})=>kr("provider",t)),e.duration$.subscribe(t=>kr("duration",t)),e.availableVideoTracks$.pipe(L(t=>!!t.length),_()).subscribe(t=>kr("tracks",t)),this.events.fatalError$.subscribe(new be("fatalError")),this.events.managedError$.subscribe(new be("managedError")),e.position$.subscribe(new be("position")),e.currentVideoTrack$.pipe(U(t=>t?.quality)).subscribe(new be("quality")),this.info.currentBuffer$.subscribe(new be("buffer")),e.isBuffering$.subscribe(new be("isBuffering"))].forEach(t=>this.subscription.add(t)),kr("codecs",O.video.supportedCodecs)}initTracerSubscription(){let e=$y(this.tracer.log.bind(this.tracer)),t=$y(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(Q()).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(gt({currentQuality:this.info.currentQuality$,videoBitrate:this.info.videoBitrate$}).pipe(L(({currentQuality:i,videoBitrate:a})=>!!i&&!!a),Q((i,a)=>i.currentQuality===a.currentQuality)).subscribe(e("currentVideoTrack"))).add(this.info.currentVideoSegmentLength$.pipe(L(i=>i>0),Q()).subscribe(e("currentVideoSegmentLength"))).add(this.info.currentAudioSegmentLength$.pipe(L(i=>i>0),Q()).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(gt({currentBuffer:this.info.currentBuffer$.pipe(L(i=>i.end>0),Q((i,a)=>i.end===a.end&&i.start===a.start)),position:this.info.position$.pipe(Q())}).pipe(ec(1e3)).subscribe(e("currentBufferAndPosition"))).add(this.info.duration$.pipe(Q()).subscribe(e("duration"))).add(this.info.isBuffering$.subscribe(e("isBuffering"))).add(this.info.isLive$.pipe(Q()).subscribe(e("isLive"))).add(this.info.canChangePlaybackSpeed$.pipe(Q()).subscribe(e("canChangePlaybackSpeed"))).add(gt({liveTime:this.info.liveTime$,liveBufferTime:this.info.liveBufferTime$,position:this.info.position$}).pipe(L(({liveTime:i,liveBufferTime:a})=>!!i&&!!a),ec(1e3)).subscribe(e("liveBufferAndPosition"))).add(this.info.atLiveEdge$.pipe(Q(),L(i=>i===!0)).subscribe(e("atLiveEdge"))).add(this.info.atLiveDurationEdge$.pipe(Q(),L(i=>i===!0)).subscribe(e("atLiveDurationEdge"))).add(this.info.muted$.pipe(Q()).subscribe(e("muted"))).add(this.info.volume$.pipe(Q()).subscribe(e("volume"))).add(this.info.isEnded$.pipe(Q(),L(i=>i===!0)).subscribe(e("isEnded"))).add(this.info.availableSources$.subscribe(e("availableSources"))).add(gt({throughputEstimation:this.info.throughputEstimation$,rtt:this.info.rttEstimation$}).pipe(L(({throughputEstimation:i,rtt:a})=>!!i&&!!a),ec(3e3)).subscribe(e("throughputEstimation"))).add(this.info.isStalled$.subscribe(e("isStalled"))).add(this.info.is3DVideo$.pipe(Q(),L(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:En.DOM,message:String(a)})})};this.subscription.add(Ot(Jl(document,"visibilitychange"),Jl(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",_t({quality:t,availableTracks:_t(e),track:_t(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&&!Cr()}};import{Subscription as n4,Observable as o4,Subject as u4,ValueSubject as l4,VideoQuality as c4}from"@vkontakte/videoplayer-shared";var d4=`@vkontakte/videoplayer-core@${rc}`;export{Ha as ChromecastState,An as HttpConnectionType,o4 as Observable,Re as PlaybackState,Pn as Player,ja as PredefinedQualityLimits,d4 as SDK_VERSION,u4 as Subject,n4 as Subscription,Ln as Surface,rc as VERSION,l4 as ValueSubject,ut as VideoFormat,c4 as VideoQuality,O as clientChecker,xr as isMobile};
178
+ `;var Ur=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 Wo(this.params.fov,this.params.orientation),this.cameraRotationManager=new Yo(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(FT,this.gl.VERTEX_SHADER),i=this.createShader(NT,this.gl.FRAGMENT_SHADER);if(this.gl.attachShader(e,t),this.gl.attachShader(e,i),this.gl.linkProgram(e),!this.gl.getProgramParameter(e,this.gl.LINK_STATUS))throw this.destroy(),new Error("Could not link shader program.");return e}createTexture(){let e=this.gl.createTexture();if(!e)throw this.destroy(),new Error("Could not create texture");return this.gl.bindTexture(this.gl.TEXTURE_2D,e),this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_MAG_FILTER,this.gl.LINEAR),this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_MIN_FILTER,this.gl.LINEAR),this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_WRAP_S,this.gl.CLAMP_TO_EDGE),this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_WRAP_T,this.gl.CLAMP_TO_EDGE),this.gl.bindTexture(this.gl.TEXTURE_2D,null),e}updateTexture(){this.gl.bindTexture(this.gl.TEXTURE_2D,this.videoTexture),this.gl.pixelStorei(this.gl.UNPACK_FLIP_Y_WEBGL,!0),this.gl.texImage2D(this.gl.TEXTURE_2D,0,this.gl.RGBA,this.gl.RGBA,this.gl.UNSIGNED_BYTE,this.sourceVideoElement),this.gl.bindTexture(this.gl.TEXTURE_2D,null)}createVertexBuffer(){let e=this.gl.createBuffer();if(!e)throw this.destroy(),new Error("Could not create vertex buffer");let t=1,i=1,r=this.frameHeight/(this.frameWidth/this.viewportWidth);return r>this.viewportHeight?t=this.viewportHeight/r:i=r/this.viewportHeight,this.gl.bindBuffer(this.gl.ARRAY_BUFFER,e),this.gl.bufferData(this.gl.ARRAY_BUFFER,new Float32Array([-t,-i,t,-i,t,i,-t,i]),this.gl.STATIC_DRAW),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,null),e}createTextureMappingBuffer(){let e=this.gl.createBuffer();if(!e)throw this.destroy(),new Error("Could not create texture mapping buffer");return e}calculateTexturePosition(){let e=.5-this.camera.orientation.x/360,t=.5-this.camera.orientation.y/180,i=this.camera.fov.x/360/2,r=this.camera.fov.y/180/2,a=e-i,n=t-r,o=e+i,u=t-r,l=e+i,c=t+r,p=e-i,d=t+r;return[a,n,o,u,l,c,p,d]}updateTextureMappingBuffer(){this.gl.bindBuffer(this.gl.ARRAY_BUFFER,this.textureMappingBuffer),this.gl.bufferData(this.gl.ARRAY_BUFFER,new Float32Array([...this.calculateTexturePosition()]),this.gl.STATIC_DRAW),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,null)}updateFrameSize(){this.frameWidth=this.sourceVideoElement.videoWidth,this.frameHeight=this.sourceVideoElement.videoHeight}createCanvas(){let e=document.createElement("canvas");return e.style.position="absolute",e.style.left="0",e.style.top="0",e.style.width="100%",e.style.height="100%",e}};import{isNullable as uD,now as Ia,once as lD,Subscription as cD,ValueSubject as Pd,isNonNullable as dD,safeStorage as UT,filterChanged as pD}from"@vkontakte/videoplayer-shared";var Ko="stalls_manager_metrics",qT="stalls_manager_abr_params",wd=class{constructor(){this.isSeeked$=new Pd(!1);this.isBuffering$=new Pd(!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 cD;this.severeStallOccurred$=new Pd(!1)}connect(e){this.currentStallDuration$=e.currentStallDuration$,this.videoLastDataObtainedTimestamp$=e.videoLastDataObtainedTimestamp$,this.throughput$=e.throughput$,this.rtt$=e.rtt$,this.tuning=e.tuning,this.abrParams=e.abrParams,this.subscribe(e)}get videoMaxQualityLimit(){return this.maxQualityLimit}get predictedThroughput(){return this.predictedThroughputWithoutData}get abrTuningParams(){return{...this.abrParams,...this.getStoredData(qT)}}set lastVideoTrackSelected(e){this.lastUniqueVideoTrackSelected?.id!==e.id&&(this.lastUniqueVideoTrackSelected=e,this.lastUniqueVideoTrackSelectedTimestamp=Ia(),this.currentStallsCount=0)}destroy(){window.clearTimeout(this.qualityRestrictionTimer),this.subscription.unsubscribe(),this.currentStallDuration$.getValue()!==0&&this.updateStallData();let e=(Ia()-this.providerStartWatchingTimestamp-this.sumStallsDuration)/1e3,t=this.sumStallsDuration;this.addStallInfoToHistory(e,t),this.updateStoredAbrParams()}updateStoredAbrParams(){let e=[],t=this.getStoredData(Ko,"[]");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(Ko,[]),this.setStoredData(qT,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(UT.get(e)??t)}setStoredData(e,t){UT.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(Ko,"[]"),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(Ko,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(lD()).subscribe(t=>this.providerStartWatchingTimestamp=Ia())),this.subscription.add(this.currentStallDuration$.pipe(pD()).subscribe(t=>{let{stallDurationNoDataBeforeQualityDecrease:i,stallCountBeforeQualityDecrease:r,resetQualityRestrictionTimeout:a,ignoreStallsOnSeek:n}=this.tuning;if(uD(this.lastUniqueVideoTrackSelected)||n&&this.isSeeked$.getValue())return;let o=this.rtt$.getValue(),u=this.throughput$.getValue(),l=this.videoLastDataObtainedTimestamp$.getValue(),c=Ia(),p=r&&this.currentStallsCount>=r,d=i&&c-this.lastUniqueVideoTrackSelectedTimestamp>=i+o&&c-l>=i+o&&t>=i;(p||d)&&(this.severeStallOccurred$.next(!0),window.clearTimeout(this.qualityRestrictionTimer),this.maxQualityLimit=this.lastUniqueVideoTrackSelected.quality,dD(this.lastUniqueVideoTrackSelected.bitrate)&&u>this.lastUniqueVideoTrackSelected.bitrate&&(this.predictedThroughputWithoutData=this.lastUniqueVideoTrackSelected.bitrate)),!t&&Ia()-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}))}},Xo=wd;import{combine as hD,map as fD,observeElementSize as mD,Subscription as bD,ValueSubject as Ad,noop as gD}from"@vkontakte/videoplayer-shared";var Jo=class{constructor(){this.subscription=new bD;this.pipSize$=new Ad(void 0);this.videoSize$=new Ad(void 0);this.elementSize$=new Ad(void 0);this.pictureInPictureWindowRemoveEventListener=gD}connect({observableVideo:e,video:t}){let i=r=>{let a=r.target;this.pipSize$.next({width:a.width,height:a.height})};this.subscription.add(mD(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(hD({videoSize:this.videoSize$,pipSize:this.pipSize$,inPip:e.inPiP$}).pipe(fD(({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 Wi=class{constructor(e){this.subscription=new xD;this.videoState=new F("stopped");this.droppedFramesManager=new Ar;this.stallsManager=new Xo;this.elementSizeManager=new Jo;this.videoTracksMap=new Map;this.audioTracksMap=new Map;this.textTracksMap=new Map;this.videoStreamsMap=new Map;this.audioStreamsMap=new Map;this.videoTrackSwitchHistory=new gi;this.audioTrackSwitchHistory=new gi;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"),k(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"),k(this.params.desiredState.playbackState,"paused")):t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):i?.to==="ready"&&k(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"&&k(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):i?.to==="paused"&&k(this.params.desiredState.playbackState,"paused");return;default:return vD(e)}}};this.init3DScene=e=>{if(this.scene3D)return;this.scene3D=new Ur(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(xe(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 Qo({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:HT.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(kd(l=>!!l.length),zT()).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(Rd(l=>l.to.state!=="none"),Zo());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(kd(jT),zT()),e.firstBytesEvent$),a(this.stallsManager.severeStallOccurred$,e.severeStallOccurred$),a(this.videoState.stateChangeEnded$.pipe(Rd(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"),k(t.playbackState,"playing"),this.scene3D&&this.scene3D.play()},r)).add(i.pause$.subscribe(()=>{this.videoState.setState("paused"),k(t.playbackState,"paused")},r)).add(i.canplay$.subscribe(()=>{this.videoState.getState()==="playing"&&this.playIfAllowed()},r)),this.subscription.add(this.player.state$.stateChangeEnded$.subscribe(({to:l})=>{if(l==="manifest_ready"){this.videoTracksMap=new Map,this.audioTracksMap=new Map,this.textTracksMap=new Map;let c=this.player.getStreams();if(yD(c,"Manifest not loaded or empty"),!this.params.tuning.isAudioDisabled){let d=[];for(let h of c.audio){d.push(ld(h));let f=[];for(let b of h.representations){let g=bT(b);f.push(g),this.audioTracksMap.set(g,{stream:h,representation:b})}this.audioStreamsMap.set(h,f)}this.params.output.availableAudioStreams$.next(d)}let p=[];for(let d of c.video){p.push(cd(d));let h=[];for(let f of d.representations){let b=mT({...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(p);for(let d of c.text)for(let h of d.representations){let f=gT(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(eu(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$,ID(this.video,"progress")).pipe(kd(()=>this.videoTracksMap.size>0)).subscribe(async()=>{let l=this.player.state$.getState(),c=this.player.state$.getTransition();if(!(0,GT.default)(["manifest_ready","running"],l)||c)return;t.autoVideoTrackSwitching.getTransition()&&t.autoVideoTrackSwitching.setState(t.autoVideoTrackSwitching.getState());let p=this.selectVideoAudioRepresentations();if(!p)return;let[d,h]=p,f=[...this.videoTracksMap.keys()].find(g=>this.videoTracksMap.get(g)?.representation.id===d.id);jT(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(d.id,h?.id,this.params.sourceHls);else if(await this.player.switchRepresentation("video",d.id),h){let g=!!t.audioStream.getTransition();await this.player.switchRepresentation("audio",h.id,g)}},r)),this.subscription.add(t.cameraOrientation.stateChangeEnded$.subscribe(({to:l})=>{this.scene3D&&l&&this.scene3D.pointCameraTo(l.x,l.y)})),this.subscription.add(this.elementSizeManager.subscribe(l=>{this.scene3D&&l&&this.scene3D.setViewportSize(l.width,l.height)})),this.subscription.add(this.player.currentVideoRepresentation$.pipe(Zo()).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[p,{stream:d}]=c,h=this.params.desiredState.videoStream.getTransition();h&&h.to&&h.to.id===d.id&&this.params.desiredState.videoStream.setState(h.to),e.currentVideoTrack$.next(p),e.currentVideoStream$.next(cd(d))},r)),this.subscription.add(this.player.currentAudioRepresentation$.pipe(Zo()).subscribe(l=>{let c=[...this.audioTracksMap.entries()].find(([,{representation:f}])=>f.id===l);if(!c){e.currentAudioStream$.next(void 0);return}let[p,{stream:d}]=c,h=this.params.desiredState.audioStream.getTransition();h&&h.to&&h.to.id===d.id&&this.params.desiredState.audioStream.setState(h.to),e.currentAudioStream$.next(ld(d))},r)),this.subscription.add(this.player.currentVideoRepresentationInit$.subscribe(l=>{if(l?.is3dVideo&&this.params.tuning.spherical?.enabled)try{this.init3DScene(l),e.is3DVideo$.next(!0)}catch(c){e.warning$.next({id:"DashProvider",message:`DashProvider could not initialize 3D-scene: ${c}`})}else this.destroy3DScene(),this.params.tuning.spherical?.enabled&&e.is3DVideo$.next(!1)},r)),this.subscription.add(this.player.currentVideoSegmentLength$.subscribe(e.currentVideoSegmentLength$,r)),this.subscription.add(this.player.currentAudioSegmentLength$.subscribe(e.currentAudioSegmentLength$,r)),this.textTracksManager.connect(this.video,t,e);let o=t.playbackState.stateChangeStarted$.pipe(Rd(({to:l})=>l==="ready"),Zo());this.subscription.add(eu(o,t.autoVideoTrackSwitching.stateChangeStarted$,this.player.state$.stateChangeEnded$,Ld(["init"])).subscribe(()=>{let l=t.autoVideoTrackSwitching.getState(),p=t.playbackState.getState()==="ready"?this.params.tuning.dash.forwardBufferTargetPreload:l?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;this.player.setBufferTarget(p)})),this.subscription.add(eu(o,this.player.state$.stateChangeEnded$,Ld(["init"])).subscribe(()=>this.player.setPreloadOnly(t.playbackState.getState()==="ready")));let u=eu(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,Ld(["init"])).pipe(TD(0));this.subscription.add(u.subscribe(this.syncPlayback,r))}selectVideoAudioRepresentations(){if(this.player.isStreamEnded)return;let e=this.params.tuning.useNewAutoSelectVideoTrack?Rs:ks,t=this.params.tuning.useNewAutoSelectVideoTrack?Io:To,i=this.params.tuning.useNewAutoSelectVideoTrack?Ot:yo,{desiredState:r,output:a}=this.params,n=r.autoVideoTrackSwitching.getState(),o=r.videoTrack.getState()?.id,l=[...this.videoTracksMap.keys()].find(({id:v})=>v===o),c=a.currentVideoTrack$.getValue(),p=r.videoStream.getState()??(l&&this.videoTracksMap.get(l)?.stream)??this.videoStreamsMap.size===1?this.videoStreamsMap.keys().next().value:void 0;if(!p)return;let d=[...this.videoStreamsMap.keys()].find(({id:v})=>v===p.id),h=d&&this.videoStreamsMap.get(d);if(!h)return;let f=Le(this.video.buffered,this.video.currentTime*1e3),b;this.player.isActiveLive$.getValue()?b=this.player.isLowLatency$.getValue()?this.params.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.params.tuning.dashCmafLive.normalizedLiveMinBufferSize:this.player.isLive$.getValue()?b=this.params.tuning.dashCmafLive.normalizedTargetMinBufferSize:b=n?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;let g=(this.video.duration*1e3||1/0)-this.video.currentTime*1e3,S=Math.min(f/Math.min(b,g||1/0),1),T=r.audioStream.getState()??(this.audioStreamsMap.size===1?this.audioStreamsMap.keys().next().value:void 0),y=[...this.audioStreamsMap.keys()].find(({id:v})=>v===T?.id)??this.audioStreamsMap.keys().next().value,E=0;if(y){if(l&&!n){let v=e(l,h,this.audioStreamsMap.get(y)??[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);E=Math.max(E,v?.bitrate??-1/0)}if(c){let v=e(c,h,this.audioStreamsMap.get(y)??[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);E=Math.max(E,v?.bitrate??-1/0)}}let P=i(h,{container:this.elementSizeManager.getValue(),panelSize:this.params.panelSize,estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),tuning:this.stallsManager.abrTuningParams,limits:this.params.desiredState.autoVideoTrackLimits.getState(),reserve:E,forwardBufferHealth:S,current:c,visible:this.params.output.elementVisible$.getValue(),history:this.videoTrackSwitchHistory,playbackRate:this.video.playbackRate,droppedVideoMaxQualityLimit:this.droppedFramesManager.droppedVideoMaxQualityLimit,stallsVideoMaxQualityLimit:this.stallsManager.videoMaxQualityLimit,stallsPredictedThroughput:this.stallsManager.predictedThroughput,abrLogger:this.params.dependencies.abrLogger}),$=n?P??l:l??P,O=y&&t($,h,this.audioStreamsMap.get(y)??[],{estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),stallsPredictedThroughput:this.stallsManager.predictedThroughput,tuning:this.stallsManager.abrTuningParams,forwardBufferHealth:S,history:this.audioTrackSwitchHistory,playbackRate:this.video.playbackRate,abrLogger:this.params.dependencies.abrLogger}),w=this.videoTracksMap.get($)?.representation,A=O&&this.audioTracksMap.get(O)?.representation;if(w&&A)return[w,A];if(w&&!A&&this.audioTracksMap.size===0)return[w,void 0]}prepare(e=0){this.player.initManifest(this.video,this.params.source.url,e)}playIfAllowed(){_e(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),k(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:HT.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 xa=class extends Wi{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 Md,merge as QT,filter as WT,filterChanged as ED,isNullable as $d,map as YT,ValueSubject as Bd,isNonNullable as PD}from"@vkontakte/videoplayer-shared";var Ea=class extends Wi{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 Bd(1);a(i.playbackRateState$,n),this.subscription.add(this.params.output.position$.subscribe(this.player.livePositionFromPlayer$)).add(r.isLowLatency.stateChangeEnded$.pipe(YT(o=>o.to)).subscribe(this.player.isLowLatency$)).add(Md({liveBufferTime:t.liveBufferTime$,liveAvailabilityStartTime:this.player.liveAvailabilityStartTime$}).pipe(YT(({liveBufferTime:o,liveAvailabilityStartTime:u})=>o&&u?o+u:void 0)).subscribe(t.liveTime$)).add(this.player.liveStreamStatus$.pipe(WT(o=>PD(o))).subscribe(o=>t.isLiveEnded$.next(o!=="active"&&t.position$.getValue()===0))).add(Md({liveDuration:this.player.liveDuration$,liveStreamStatus:this.player.liveStreamStatus$,playbackRate:QT(i.playbackRateState$,new Bd(1))}).pipe(WT(({liveStreamStatus:o,liveDuration:u})=>o==="active"&&!!u)).subscribe(({liveDuration:o,playbackRate:u})=>{let l=t.liveBufferTime$.getValue(),c=t.position$.getValue(),{playbackCatchupSpeedup:p}=this.params.tuning.dashCmafLive.lowLatency;c||u<1-p||this.video.paused||$d(l)||(e=o-l)})).add(Md({time:t.liveBufferTime$,liveDuration:this.player.liveDuration$,playbackRate:QT(i.playbackRateState$,new Bd(1))}).pipe(ED((o,u)=>this.player.liveStreamStatus$.getValue()==="active"?o.liveDuration===u.liveDuration:o.time===u.time)).subscribe(({time:o,liveDuration:u,playbackRate:l})=>{let c=t.position$.getValue(),{playbackCatchupSpeedup:p}=this.params.tuning.dashCmafLive.lowLatency;if(!c&&!this.video.paused&&l>=1-p||$d(o)||$d(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=ST(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 mC,assertNonNullable as bC,debounce as gC,ErrorCategory as PI,filter as wI,filterChanged as cu,fromEvent as SC,isNonNullable as AI,map as tp,merge as du,observableFrom as ip,once as kI,Subscription as vC}from"@vkontakte/videoplayer-shared";var Zd=C(_s(),1);import{abortable as Yd,assertNonNullable as Gr,combine as Qr,ErrorCategory as Nt,filter as nu,filterChanged as sn,flattenObject as an,fromEvent as ui,getTraceSubscriptionMethod as sC,interval as Kd,isNonNullable as nn,isNullable as EI,map as Wr,merge as Zi,now as Xd,Subject as ou,Subscription as Jd,tap as aC,throttle as nC,ValueSubject as pe}from"@vkontakte/videoplayer-shared";var iu=C(ft(),1),jr=C(kt(),1),ru=C(_s(),1);var vI=C(Ts(),1);import{assertNever as wD,ErrorCategory as KT,Subject as XT}from"@vkontakte/videoplayer-shared";var AD=18,JT=!1;try{JT=_.browser.isSafari&&!!_.browser.safariVersion&&_.browser.safariVersion<=AD}catch(s){console.error(s)}var Dd=class{constructor(e){this.bufferFull$=new XT;this.error$=new XT;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:KT.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)};JT&&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:KT.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:wD(t)}}},ZT=Dd;import{abortable as xi,assertNonNullable as it,ErrorCategory as oi,fromEvent as zd,getExponentialDelay as Gd,isNonNullable as Hr,isNullable as Ue,now as tu,once as YD,Subject as KD,Subscription as XD,ValueSubject as Ji}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 qr=class extends G{};var Pa=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 wa=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 Aa=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 ka=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 Ra=class extends G{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var La=class extends G{constructor(e,t){super(e,t),this.data=this.content}};var Yi=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 Ma=class extends G{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var $a=class extends G{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Ba=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 Da=class extends ae{constructor(e,t){super(e,t),this.poseYawDegrees=this.readUint32(),this.posePitchDegrees=this.readUint32(),this.poseRollDegrees=this.readUint32()}};var Ca=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 Va=class extends G{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Oa=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 _a=class extends G{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Fa=class extends G{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Na=class extends ae{constructor(e,t){super(e,t),this.sequenceNumber=this.readUint32()}};var Ua=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.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 Ha=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 ja=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 za=class extends G{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Ga=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 Qa=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 RD={ftyp:wa,moov:Aa,mvhd:ka,moof:Ra,mdat:La,sidx:Yi,trak:Ma,mdia:Va,mfhd:Na,tkhd:Oa,traf:Ua,tfhd:qa,tfdt:Ha,trun:ja,minf:_a,sv3d:$a,st3d:Ba,prhd:Da,proj:Fa,equi:Ca,uuid:Pa,stbl:za,stsd:Ga,avc1:Qa,unknown:qr},ai=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=RD[e];return i?new i(t,new s):new qr(t,new s)}};var Ii=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 MD=new TextDecoder("ascii"),$D=s=>MD.decode(new DataView(s.buffer,s.byteOffset+4,4))==="ftyp",BD=s=>{let e=new Yi(s,new ai),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})},DD=(s,e)=>{let i=new ai().parse(s),r=new Ii(i),a=r.findAll("moof"),n=e?r.findAll("uuid"):r.findAll("mdat");if(!(n.length&&a.length))return null;let o=a[0],u=n[n.length-1],l=o.source.byteOffset,p=u.source.byteOffset-o.source.byteOffset+u.size;return new DataView(s.buffer,l,p)},CD=s=>{let t=new ai().parse(s),i=new Ii(t),r={},a=i.findAll("uuid");return a.length?a[a.length-1]:r},VD=s=>{let t=new ai().parse(s);return new Ii(t).find("sidx")?.timescale},OD=(s,e)=>{let i=new ai().parse(s),a=new Ii(i).findAll("traf"),n=a[a.length-1].children.find(p=>p.type==="tfhd"),o=a[a.length-1].children.find(p=>p.type==="tfdt"),u=a[a.length-1].children.find(p=>p.type==="trun"),l=0;return u.sampleDuration.length?l=u.sampleDuration.reduce((p,d)=>p+d,0):l=n.defaultSampleDuration*u.sampleCount,(Number(o.baseMediaDecodeTime)+l)/e*1e3},_D=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 ai().parse(s),r=new Ii(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},eI={validateData:$D,parseInit:_D,getIndexRange:()=>{},parseSegments:BD,parseFeedableSegmentChunk:DD,getChunkEndTime:OD,getServerLatencyTimestamps:CD,getTimescaleFromIndex:VD};var Ya=C(ft(),1);import{assertNonNullable as Vd,isNonNullable as sI,isNullable as ND}from"@vkontakte/videoplayer-shared";import{assertNever as FD}from"@vkontakte/videoplayer-shared";var tI={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"}},iI=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=Wa(s,t),r=i in tI,a=r?tI[i].type:"binary",n=s.getUint8(t),o=0;n&128?o=1:n&64?o=2:n&32?o=3:n&16?o=4:n&8?o=5:n&4?o=6:n&2?o=7:n&1&&(o=8);let u=new DataView(s.buffer,s.byteOffset+t+1,o-1),l=n&255>>o,c=Wa(u),p=l*2**((o-1)*8)+c,d=t+o,h;return d+p>s.byteLength?h=new DataView(s.buffer,s.byteOffset+d):h=new DataView(s.buffer,s.byteOffset+d,p),{tag:r?i:"0x"+i.toString(16).toUpperCase(),type:a,tagHeaderSize:d,tagSize:d+p,value:h,valueSize:p}},Wa=(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 Wa(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:FD(e)}},Ki=(s,e)=>{let t=0;for(;t<s.byteLength;){let i=new DataView(s.buffer,s.byteOffset+t),r=iI(i);if(!e(r))return;r.type==="master"&&Ki(r.value,e),t=r.value.byteOffset-s.byteOffset+r.valueSize}},rI=s=>{if(s.getUint32(0)!==440786851)return!1;let e,t,i,r=iI(s);return Ki(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 aI=[357149030,290298740,374648427,174,224,30320,30321,30322,272869232,524531317,475249515,423732329,307544935],UD=[231,22612,22743,167,171,163,160,175],qD=s=>{let e,t,i,r,a=!1,n=!1,o=!1,u,l,c=!1,p=0;return Ki(s,({tag:d,type:h,value:f,valueSize:b})=>{if(d===21419){let g=Lt(f,h);l=Wa(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?Ki(f,({tag:g,type:S,value:T})=>g===30321?(c=Lt(T,S)===1,!1):!0):a&&n&&(0,Ya.default)(aI,d)&&(o=!0),!o}),Vd(e,"Failed to parse webm Segment start"),Vd(t,"Failed to parse webm Segment end"),Vd(r,"Failed to parse webm Segment duration"),i=i??1e6,{segmentStart:Math.round(e/1e9*i*1e3),segmentEnd:Math.round(t/1e9*i*1e3),timeScale:i,segmentDuration:Math.round(r/1e9*i*1e3),cuesSeekPosition:u,is3dVideo:c,stereoMode:p,projectionType:1,projectionData:{pose:{yaw:0,pitch:0,roll:0},bounds:{top:0,bottom:0,left:0,right:0}}}},HD=s=>{if(ND(s.cuesSeekPosition))return;let e=s.segmentStart+s.cuesSeekPosition,t=1024*1024;return{from:e,to:e+t}},jD=(s,e)=>{let t=!1,i=!1,r=o=>sI(o.time)&&sI(o.position),a=[],n;return Ki(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,Ya.default)(aI,o)&&(i=!0)}return!(t&&i)}),n&&r(n)&&a.push(n),a.map((o,u)=>{let{time:l,position:c}=o,p=a[u+1];return{status:"none",time:{from:l,to:p?p.time:e.segmentDuration},byte:{from:e.segmentStart+c,to:p?e.segmentStart+p.position-1:e.segmentEnd-1}}})},zD=s=>{let e=0,t=!1;try{Ki(s,i=>i.tag===524531317?i.tagSize<=s.byteLength?(e=i.tagSize,!1):(e+=i.tagHeaderSize,!0):(0,Ya.default)(UD,i.tag)?(e+i.tagSize<=s.byteLength&&(e+=i.tagSize,t||=(0,Ya.default)([163,160,175],i.tag)),!0):!1)}catch{}return e>0&&e<=s.byteLength&&t?new DataView(s.buffer,s.byteOffset,e):null},nI={validateData:rI,parseInit:qD,getIndexRange:HD,parseSegments:jD,parseFeedableSegmentChunk:zD};var Ka=s=>{let e=/^(.+)\/([^;]+)(?:;.*)?$/.exec(s);if(e){let[,t,i]=e;if(t==="audio"||t==="video")switch(i){case"webm":return nI;case"mp4":return eI}}throw new ReferenceError(`Unsupported mime type ${s}`)};var qd=C(ad(),1),mI=C(Bi(),1),bI=C(nd(),1),gI=C(kt(),1),Hd=C(Ui(),1);import{isNonNullable as WD,isNullable as hI}from"@vkontakte/videoplayer-shared";var oI=s=>{try{let e=GD(),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 GD(){let s="(?<extlang>(?:[a-z]{3}(?:-[a-z]{3}){0,2}))",e="x(?:-[a-z0-9]{1,8})+",c=`^(?:(?<langtag>${`
179
+ (?<language>${`(?:[a-z]{2,3}(?:-${s})?|[a-z]{4}|[a-z]{5,8})`})
180
+ (-(?<script>[a-z]{4}))?
181
+ (-(?<region>(?:[a-z]{2}|[0-9]{3})))?
182
+ (?<variants>(?:-(?:[a-z0-9]{5,8}|[0-9][a-z0-9]{3}))*)
183
+ (?<extensions>(?:-[0-9a-wy-z](?:-[a-z0-9]{2,8})+)*)
184
+ (?:-(?<privateuse>(?:${e})))?
185
+ `})|(?<privateuse2>${e}))$`.replace(/[\s\t\n]/g,"");return new RegExp(c,"i")}var _d=C(kt(),1);import{videoSizeToQuality as QD}from"@vkontakte/videoplayer-shared";var uI=({id:s,width:e,height:t,bitrate:i,fps:r,quality:a,streamId:n})=>{let o=(a?Vt(a):void 0)??QD({width:e,height:t});return o&&{id:s,quality:o,bitrate:i,size:{width:e,height:t},fps:r,streamId:n}},lI=({id:s,bitrate:e})=>({id:s,bitrate:e}),cI=({language:s,label:e},{id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:s,label:e}),dI=({language:s,label:e,id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:s,label:e}),Fd=({id:s,language:e,label:t,codecs:i,isDefault:r})=>({id:s,language:e,label:t,codec:(0,_d.default)(i.split("."),0),isDefault:r}),Nd=({id:s,language:e,label:t,hdr:i,codecs:r})=>({id:s,language:e,hdr:i,label:t,codec:(0,_d.default)(r.split("."),0)}),Ud=s=>"url"in s,Ye=s=>s.type==="template",Xa=s=>s instanceof DOMException&&(s.name==="AbortError"||s.code===20);var pI=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},Xi=(s,e)=>{for(let t of s)if(e(t))return t;return null};var fI=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},ni=(s,e)=>{let t=s;t=(0,qd.default)(t,"$$","$");let i={RepresentationID:e.representationId,Number:e.segmentNumber,Bandwidth:e.bandwidth,Time:e.segmentTime};for(let[r,a]of(0,mI.default)(i)){let n=new RegExp(`\\$${r}(?:%0(\\d+)d)?\\$`,"g");t=(0,qd.default)(t,n,(o,u)=>hI(a)?o:hI(u)?a:(0,bI.default)(a,parseInt(u,10),"0"))}return t},SI=(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(A=>A.textContent?.trim()??""),o=(0,gI.default)(n,0)??"",u=a.getAttribute("type")==="dynamic",l=a.getAttribute("availabilityStartTime"),c=a.getAttribute("publishTime"),p=a.getElementsByTagName("vk:Attrs")[0],d=p?.getElementsByTagName("vk:XLatestSegmentPublishTime")[0].textContent,h=p?.getElementsByTagName("vk:XStreamIsLive")[0].textContent,f=p?.getElementsByTagName("vk:XStreamIsUnpublished")[0].textContent,b=p?.getElementsByTagName("vk:XPlaybackDuration")[0].textContent,g;u&&(g={availabilityStartTime:l?new Date(l).getTime():0,publishTime:c?new Date(c).getTime():0,latestSegmentPublishTime:d?new Date(d).getTime():0,streamIsAlive:h==="yes",streamIsUnpublished:f==="yes"});let S,T=a.getAttribute("mediaPresentationDuration"),y=[...a.getElementsByTagName("Period")],E=y.reduce((A,v)=>({...A,[v.id]:v.children}),{}),P=y.reduce((A,v)=>({...A,[v.id]:v.getAttribute("duration")}),{});T?S=fI(T):(0,Hd.default)(P).filter(A=>A).length&&!u?S=(0,Hd.default)(P).reduce((A,v)=>A+(fI(v)??0),0):b&&(S=parseInt(b,10));let $=0,O=a.getAttribute("profiles")?.split(",")??[];for(let A of y.map(v=>v.id))for(let v of E[A]){let D=v.getAttribute("id")??"id"+($++).toString(10),I=v.getAttribute("mimeType")??"",x=v.getAttribute("codecs")??"",R=v.getAttribute("contentType")??I?.split("/")[0],re=v.getAttribute("profiles")?.split(",")??[],B=oI(v.getAttribute("lang")??"")??{},q=v.querySelector("Label")?.textContent?.trim()??void 0,K=v.querySelectorAll("Representation"),ne=v.querySelector("SegmentTemplate"),ge=v.querySelector("Role")?.getAttribute("value")??void 0,oe=R,Z={id:D,language:B.language,isDefault:ge==="main",label:q,codecs:x,hdr:oe==="video"&&Br(x),mime:I,representations:[]};for(let L of K){let V=L.getAttribute("lang")??void 0,Pe=q??v.getAttribute("label")??L.getAttribute("label")??void 0,Se=L.querySelector("BaseURL")?.textContent?.trim()??"",te=new URL(Se||o,e).toString(),ye=L.getAttribute("mimeType")??I,rt=L.getAttribute("codecs")??x??"",qe;if(R==="text"){let ce=L.getAttribute("id")||"",st=B.privateuse?.includes("x-auto")||ce.includes("_auto"),Ee=L.querySelector("SegmentTemplate");if(Ee){let yt={representationId:L.getAttribute("id")??void 0,bandwidth:L.getAttribute("bandwidth")??void 0},Ut=parseInt(L.getAttribute("bandwidth")??"",10)/1e3,qt=parseInt(Ee.getAttribute("startNumber")??"",10)??1,at=parseInt(Ee.getAttribute("timescale")??"",10),Ai=Ee.querySelectorAll("SegmentTimeline S")??[],nt=Ee.getAttribute("media");if(!nt)continue;let Ht=[],jt=0,zt="",ot=0,Tt=qt,W=0;for(let ue of Ai){let He=parseInt(ue.getAttribute("d")??"",10),ie=parseInt(ue.getAttribute("r")??"",10)||0,we=parseInt(ue.getAttribute("t")??"",10);W=Number.isFinite(we)?we:W;let je=He/at*1e3,ut=W/at*1e3;for(let he=0;he<ie+1;he++){let Ae=ni(nt,{...yt,segmentNumber:Tt.toString(10),segmentTime:(W+he*He).toString(10)}),lt=(ut??0)+he*je,xt=lt+je;Tt++,Ht.push({time:{from:lt,to:xt},url:Ae})}W+=(ie+1)*He,jt+=(ie+1)*je}ot=W/at*1e3,zt=ni(nt,{...yt,segmentNumber:Tt.toString(10),segmentTime:W.toString(10)});let It={time:{from:ot,to:1/0},url:zt},Te={type:"template",baseUrl:te,segmentTemplateUrl:nt,initUrl:"",totalSegmentsDurationMs:jt,segments:Ht,nextSegmentBeyondManifest:It,timescale:at};qe={id:ce,kind:"text",segmentReference:Te,profiles:[],duration:S,bitrate:Ut,mime:"",codecs:"",width:0,height:0,isAuto:st}}else qe={id:ce,isAuto:st,kind:"text",url:te}}else{let ce=L.getAttribute("contentType")??ye?.split("/")[0]??R,st=v.getAttribute("profiles")?.split(",")??[],Ee=parseInt(L.getAttribute("width")??"",10),yt=parseInt(L.getAttribute("height")??"",10),Ut=parseInt(L.getAttribute("bandwidth")??"",10)/1e3,qt=L.getAttribute("frameRate")??"",at=L.getAttribute("quality")??void 0,Ai=qt?Lo(qt):void 0,nt=L.getAttribute("id")??"id"+($++).toString(10),Ht=ce==="video"?`${yt}p`:ce==="audio"?`${Ut}Kbps`:rt,jt=`${nt}@${Ht}`,zt=[...O,...re,...st],ot,Tt=L.querySelector("SegmentBase"),W=L.querySelector("SegmentTemplate")??ne;if(Tt){let Te=L.querySelector("SegmentBase Initialization")?.getAttribute("range")??"",[ue,He]=Te.split("-").map(Ae=>parseInt(Ae,10)),ie={from:ue,to:He},we=L.querySelector("SegmentBase")?.getAttribute("indexRange"),[je,ut]=we?we.split("-").map(Ae=>parseInt(Ae,10)):[],he=we?{from:je,to:ut}:void 0;ot={type:"byteRange",url:te,initRange:ie,indexRange:he}}else if(W){let Te={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"),we=parseInt(W.getAttribute("startNumber")??"",10)??1,je=ni(He,Te);if(!ie)throw new ReferenceError("No media attribute in SegmentTemplate");let ut=W.querySelectorAll("SegmentTimeline S")??[],he=[],Ae=0,lt="",xt=0;if(ut.length){let Gt=we,le=0;for(let ct of ut){let fe=parseInt(ct.getAttribute("d")??"",10),ze=parseInt(ct.getAttribute("r")??"",10)||0,Qt=parseInt(ct.getAttribute("t")??"",10);le=Number.isFinite(Qt)?Qt:le;let ki=fe/ue*1e3,ku=le/ue*1e3;for(let Wt=0;Wt<ze+1;Wt++){let Ru=ni(ie,{...Te,segmentNumber:Gt.toString(10),segmentTime:(le+Wt*fe).toString(10)}),Xr=(ku??0)+Wt*ki,Lu=Xr+ki;Gt++,he.push({time:{from:Xr,to:Lu},url:Ru})}le+=(ze+1)*fe,Ae+=(ze+1)*ki}xt=le/ue*1e3,lt=ni(ie,{...Te,segmentNumber:Gt.toString(10),segmentTime:le.toString(10)})}else if(WD(S)){let le=parseInt(W.getAttribute("duration")??"",10)/ue*1e3,ct=Math.ceil(S/le),fe=0;for(let ze=1;ze<ct;ze++){let Qt=ni(ie,{...Te,segmentNumber:ze.toString(10),segmentTime:fe.toString(10)});he.push({time:{from:fe,to:fe+le},url:Qt}),fe+=le}xt=fe,lt=ni(ie,{...Te,segmentNumber:ct.toString(10),segmentTime:fe.toString(10)})}let Au={time:{from:xt,to:1/0},url:lt};ot={type:"template",baseUrl:te,segmentTemplateUrl:ie,initUrl:je,totalSegmentsDurationMs:Ae,segments:he,nextSegmentBeyondManifest:Au,timescale:ue}}else throw new ReferenceError("Unknown MPD segment referencing type");if(!ce||!ye)continue;let It={video:"video",audio:"audio",text:"text"}[ce];if(!It)continue;oe||=It,qe={id:jt,kind:It,segmentReference:ot,profiles:zt,duration:S,bitrate:Ut,mime:ye,codecs:rt,width:Ee,height:yt,fps:Ai,quality:at}}Z.language||=V,Z.label||=Pe,Z.mime||=ye,Z.codecs||=rt,Z.hdr||=oe==="video"&&Br(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 Se=Z.representations.find(ye=>ye.id===V.id)?.segmentReference,te=V.segmentReference;te.segments.push(...Se.segments),te.nextSegmentBeyondManifest=Se.nextSegmentBeyondManifest}else r[oe].push(Z)}}return{duration:S,streams:r,baseUrls:n,live:g}};var Ja=class{constructor(e,t,i,{fetcher:r,tuning:a,getCurrentPosition:n,isActiveLowLatency:o,compatibilityMode:u=!1,manifest:l}){this.currentLiveSegmentServerLatency$=new Ji(0);this.currentLowLatencySegmentLength$=new Ji(0);this.currentSegmentLength$=new Ji(0);this.onLastSegment$=new Ji(!1);this.fullyBuffered$=new Ji(!1);this.playingRepresentation$=new Ji(void 0);this.playingRepresentationInit$=new Ji(void 0);this.error$=new KD;this.gaps=[];this.subscription=new XD;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=xi(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 ZT(this.sourceBuffer),this.subscription.add(zd(this.sourceBuffer,"updateend").subscribe(()=>{this.checkEjectedSegments(),this.maintain()},n=>{let o,u=this.mediaSource.readyState;u!=="open"&&(o={id:`SegmentEjection_source_${u}`,category:oi.VIDEO_PIPELINE,message:"Error when trying to clear segments ejected by browser",thrown:n}),o??={id:"SegmentEjection",category:oi.VIDEO_PIPELINE,message:"Error when trying to clear segments ejected by browser",thrown:n},this.error$.next(o)})),this.subscription.add(zd(this.sourceBuffer,"error").subscribe(()=>this.error$.next({id:"SourceBuffer",category:oi.VIDEO_PIPELINE,message:"SourceBuffer Error event fired"}))),this.subscription.add(this.sourceBufferTaskQueue.bufferFull$.subscribe(n=>{let o=this.getCurrentPosition();if(!this.sourceBuffer||!o||!N(this.mediaSource,this.sourceBuffer))return;let u=Math.min(this.bufferLimit,Lr(this.sourceBuffer.buffered)*.8);this.bufferLimit=u;let l=Le(this.sourceBuffer.buffered,o),c=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(o,n*2,l<c).catch(p=>{this.handleAsyncError(p,"pruneBuffer")})})),this.subscription.add(this.sourceBufferTaskQueue.error$.subscribe(n=>this.error$.next(n))),yield this.loadInit(t,"high",!0);let i=this.initData.get(t.id),r=this.segments.get(t.id),a=this.parsedInitData.get(t.id);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=xi(this.destroyAbortController.signal,async function*(e,t=!1){if(!N(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||!N(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();Hr(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=xi(this.destroyAbortController.signal,async function*(e,t=!1){if(!N(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||!N(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();Hr(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=xi(this.destroyAbortController.signal,async function*(e){let t=(0,ru.default)(e,u=>u.representations)??[];if(this.isSeekingLive=!0,!this.downloadingRepresentationId||!t)return;for(let u of this.representations.keys()){let l=t.find(d=>d.id===u);l&&this.representations.set(u,l);let c=this.representations.get(u);if(!c||!Ye(c.segmentReference))return;let p=this.getActualLiveStartingSegments(c.segmentReference);this.segments.set(c.id,p)}let i=this.switchingToRepresentationId??this.downloadingRepresentationId,r=this.representations.get(i);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(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){!N(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId||(this.switchAbortController.abort(),this.switchAbortController=new ee,xi(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||!N(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();Hr(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)||!N(this.mediaSource,this.sourceBuffer)||Hr(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(c=>e>=c.time.from&&e<c.time.to);Hr(r)&&isFinite(r.time.from)&&isFinite(r.time.to)&&this.currentSegmentLength$.next(r?.time.to-r.time.from);let a=e,n=100;if(this.playingRepresentationId!==this.downloadingRepresentationId){let c=Le(this.sourceBuffer.buffered,e),p=r?r.time.to+n:-1/0;r&&r.time.to-e<this.tuning.dash.maxSegmentDurationLeftToSelectNextSegment&&c>=r.time.to-e+n&&(a=p)}if(isFinite(this.bufferLimit)&&Lr(this.sourceBuffer.buffered)>=this.bufferLimit){let c=Le(this.sourceBuffer.buffered,e),p=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(e,1/0,c<p).catch(d=>{this.handleAsyncError(d,"pruneBuffer")});return}let u=null;if(!this.activeSegments.size&&(u=this.selectForwardBufferSegments(i,t.segmentReference.type,a),u?.length)){let c="auto";if(this.tuning.dash.useFetchPriorityHints&&r)if((0,iu.default)(u,r))c="high";else{let p=(0,jr.default)(u,0);p&&p.time.from-r.time.to>=this.forwardBufferTarget/2&&(c="low")}this.loadSegments(u,t,c).catch(p=>{this.handleAsyncError(p,"loadSegments")})}(!this.preloadOnly&&!this.allInitsLoaded&&r&&r.status==="fed"&&!u?.length&&Le(this.sourceBuffer.buffered,e)>3e3||this.isActiveLowLatency())&&this.loadNextInit();let l=(0,jr.default)(i,-1);!this.isLive&&l&&(this.fullyBuffered$.next(l.time.to-e-Le(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;Hr(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,ru.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,ru.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,jr.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=ni(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:p,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(p==="none"||p==="partially_ejected"&&g&&T&&this.sourceBuffer&&N(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,c=this.preloadOnly?this.forwardBufferTarget:0;for(let p=r;p<a.length&&(n<=l||o<=c);p++){let d=a[p];if(n+=d.byte.to+1-d.byte.from,o+=d.time.to+1-d.time.from,d.status==="none"||d.status==="partially_ejected")u.push(d);else break}return u}async loadSegments(e,t,i="auto"){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 xi(o,async function*(){let c=Gd(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(p=>setTimeout(p,c))}.bind(this))(),o.aborted&&this.abortActiveSegments([e]));try{let c=await this.fetcher.fetch(n,{range:a,signal:o,onProgress:u,priority:i,isLowLatency:this.isActiveLowLatency()});if(this.lastDataObtainedTimestampMs=tu(),!c)return;let p=new DataView(c),d=Ka(t.mime);if(!isFinite(r.segment.time.to)){let b=t.segmentReference.timescale;r.segment.time.to=d.getChunkEndTime(p,b)}u&&r.feedingBytes&&l?await Promise.all(l):await this.sourceBufferTaskQueue.append(p,o);let{serverDataReceivedTimestamp:h,serverDataPreparedTime:f}=d.getServerLatencyTimestamps(p);h&&f&&this.currentLiveSegmentServerLatency$.next(f-h),r.segment.status="downloaded",this.onSegmentFullyAppended(r,t.id),this.failedDownloads=0}catch(c){this.abortActiveSegments([e]),Xa(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())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 xi(n,async function*(){let u=Gd(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(l=>{this.loadByteRangeSegmentsTimeoutId=window.setTimeout(l,u),zd(window,"online").pipe(YD()).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=tu(),this.failedDownloads=0}catch(u){this.abortActiveSegments(e),Xa(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,jr.default)(e,0).byte.from,to:(0,jr.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=tu(),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:oi.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,c)=>{if(!a.aborted)try{this.lastDataObtainedTimestampMs=tu();let p=this.onSomeTemplateDataLoaded({dataView:l,loaded:c,signal:a,onSegmentAppendFailed:()=>this.abort(),representationId:t.id});n.push(p)}catch(p){this.error$.next({id:"SegmentFeeding",category:oi.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:p})}}:void 0;return{url:r,signal:a,onProgress:u,onProgressTasks:n}}abortActiveSegments(e){for(let t of this.activeSegments)(0,iu.default)(e,t.segment)&&this.abortSegment(t.segment)}async onSomeTemplateDataLoaded({dataView:e,representationId:t,loaded:i,onSegmentAppendFailed:r,signal:a}){if(!this.activeSegments.size||!N(this.mediaSource,this.sourceBuffer))return;let n=this.representations.get(t);if(n)for(let o of this.activeSegments){let{segment:u}=o;if(o.representationId===t){if(a.aborted){r();continue}if(o.loadedBytes=i,o.loadedBytes>o.feedingBytes){let l=new DataView(e.buffer,e.byteOffset+o.feedingBytes,o.loadedBytes-o.feedingBytes),c=Ka(n.mime).parseFeedableSegmentChunk(l,this.isLive);c?.byteLength&&(u.status="partially_fed",o.feedingBytes+=c.byteLength,await this.sourceBufferTaskQueue.append(c),o.fedBytes+=c.byteLength)}}}}async onSomeByteRangesDataLoaded({dataView:e,representationId:t,globalFrom:i,loaded:r,signal:a,onSegmentAppendFailed:n}){if(!this.activeSegments.size||!N(this.mediaSource,this.sourceBuffer))return;let o=this.representations.get(t);if(o)for(let u of this.activeSegments){if(u.representationId!==t)continue;if(a.aborted){await n();continue}let{segment:l}=u,c=l.byte.from-i,p=l.byte.to-i,d=p-c+1,h=c<r,f=p<=r;if(h){if(l.status==="downloading"&&f){l.status="downloaded";let b=new DataView(e.buffer,e.byteOffset+c,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-c),u.loadedBytes>u.feedingBytes)){let b=new DataView(e.buffer,e.byteOffset+c+u.feedingBytes,u.loadedBytes-u.feedingBytes),g=u.loadedBytes===d?b:Ka(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)||!N(this.mediaSource,this.sourceBuffer))){!this.isLive&&_.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:oi.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",Ud(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=Rr(()=>(0,vI.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?xi(this.destroyAbortController.signal,async function*(){let o=Gd(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(u=>setTimeout(u,o))}.bind(this))():Promise.resolve()).then(()=>this.fetcher.fetchRepresentation(e.segmentReference,Ka(e.mime),r)).then(o=>{if(!o)return;let{init:u,dataView:l,segments:c}=o,p=l.buffer.slice(l.byteOffset,l.byteOffset+l.byteLength);this.initData.set(e.id,p);let d=c;this.isLive&&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:oi.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||!N(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=Ud(o)?o.size??0:o.byte.to-o.byte.from;a+=u};for(let o of this.segments.values())for(let u of o){let l=u.time.to<=e-this.tuning.dash.bufferPruningSafeZone,c=u.time.from>=e+Math.min(this.forwardBufferTarget,this.bufferLimit);(l||c)&&u.status==="fed"&&n(u)}for(let o=0;o<this.sourceBuffer.buffered.length;o++){let u=this.sourceBuffer.buffered.start(o)*1e3,l=this.sourceBuffer.buffered.end(o)*1e3,c=0;for(let p of this.segments.values())for(let d of p)(0,iu.default)(["none","partially_ejected"],d.status)&&Math.round(d.time.from)<=Math.round(u)&&Math.round(d.time.to)>=Math.round(l)&&c++;if(c===this.segments.size){let p={time:{from:u,to:l},url:"",status:"none"};n(p)}}if(r.length&&i){let o=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;for(let u of this.segments.values())for(let l of u)l.time.from>=e+o&&l.status==="fed"&&n(l)}return r.length?(r=pI(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||!N(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||!N(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||!N(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||!N(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length||Ue(e)?0:Le(this.sourceBuffer.buffered,e)}detectGaps(e,t){if(!this.sourceBuffer||!N(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||!N(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=Rr(()=>{try{this.detectGaps(e,t)}catch(i){this.error$.next({id:"GapDetection",category:oi.WTF,message:"detectGaps threw",thrown:i})}finally{this.gapDetectionIdleCallback=null}})}}checkEjectedSegments(){if(Ue(this.sourceBuffer)||!N(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(c=>c.from-t<=n&&c.to+t>=o),l=e.filter(c=>n>=c.from&&n<c.to-t||o>c.from+t&&o<=c.to);u||(l.length===1?r.status="partially_ejected":this.gaps.some(c=>c.from===r.time.from||c.to===r.time.to)?r.status="partially_ejected":r.status="none")}}handleAsyncError(e,t){this.error$.next({id:t,category:oi.VIDEO_PIPELINE,thrown:e,message:"Something went wrong"})}};import{abortable as Za,assertNever as yI,fromEvent as TI,merge as JD,now as en,Subject as II,ValueSubject as Qd,flattenObject as zr,ErrorCategory as tn,SubscriptionRemovable as ZD}from"@vkontakte/videoplayer-shared";var au=class{constructor({throughputEstimator:e,requestQuic:t,tracer:i,compatibilityMode:r=!1,useEnableSubtitlesParam:a=!1}){this.lastConnectionType$=new Qd(void 0);this.lastConnectionReused$=new Qd(void 0);this.lastRequestFirstBytes$=new Qd(void 0);this.recoverableError$=new II;this.error$=new II;this.abortAllController=new ee;this.subscription=new ZD;this.fetchManifest=Za(this.abortAllController.signal,async function*(e){let t=this.tracer.createComponentTracer("FetchManifest"),i=e;this.requestQuic&&(i=yi(i)),!this.compatibilityMode&&this.useEnableSubtitlesParam&&(i=Co(i));let r=yield this.doFetch(i,{signal:this.abortAllController.signal}).catch(su);return r?(t.log("success",zr({url:i,message:"Request successfully executed"})),t.end(),this.onHeadersReceived(r.headers),r.text()):(t.error("error",zr({url:i,message:"No data in request manifest"})),t.end(),null)}.bind(this));this.fetch=Za(this.abortAllController.signal,async function*(e,{rangeMethod:t=this.compatibilityMode?0:1,range:i,onProgress:r,priority:a="auto",signal:n,measureThroughput:o=!0,isLowLatency:u=!1}={}){let l=e,c=new Headers,p=this.tracer.createComponentTracer("Fetch");if(i)switch(t){case 0:{c.append("Range",`bytes=${i.from}-${i.to}`);break}case 1:{let I=new URL(l,location.href);I.searchParams.append("bytes",`${i.from}-${i.to}`),l=I.toString();break}default:yI(t)}this.requestQuic&&(l=yi(l));let d=this.abortAllController.signal,h;if(n){let I=new ee;if(h=JD(TI(this.abortAllController.signal,"abort"),TI(n,"abort")).subscribe(()=>{try{I.abort()}catch(x){su(x)}}),this.abortAllController.signal.aborted||n.aborted)try{I.abort()}catch(x){su(x)}d=I.signal}let f=en();p.log("startRequest",zr({url:l,priority:a,rangeMethod:t,range:i,isLowLatency:u,requestStartedAt:f}));let b=yield this.doFetch(l,{priority:a,headers:c,signal:d}),g=en();if(!b)return p.error("error",{message:"No response in request"}),p.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 p.error("error",{message:I}),p.end(),Promise.reject(new Error(`Fetch error ${b.status}: ${b.statusText}`))}if(this.onHeadersReceived(b.headers),!r&&!o){this.unsubscribeAbortSubscription(h);let I=en(),x={requestStartedAt:f,requestEndedAt:I,duration:I-f};return p.log("endRequest",zr(x)),p.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(),y,E=parseInt(b.headers.get("content-length")??"",10);Number.isFinite(E)&&(y=E),!y&&i&&(y=i.to-i.from+1);let P=0,$=y?new Uint8Array(y):new Uint8Array(0),O=!1,w=I=>{this.unsubscribeAbortSubscription(h),O=!0,su(I)},A=Za(d,async function*({done:I,value:x}){if(P===0&&this.lastRequestFirstBytes$.next(en()-f),d.aborted){this.unsubscribeAbortSubscription(h);return}if(!I&&x){if(y)$.set(x,P),P+=x.byteLength;else{let R=new Uint8Array($.length+x.length);R.set($),R.set(x,$.length),$=R,P+=x.byteLength}r?.(new DataView($.buffer),P),yield T?.read().then(A,w)}}.bind(this));yield T?.read().then(A,w),this.unsubscribeAbortSubscription(h);let v=en(),D={failed:O,requestStartedAt:f,requestEndedAt:v,duration:v-f};return O?(p.error("endRequest",zr(D)),p.end(),null):(p.log("endRequest",zr(D)),p.end(),$.buffer)}.bind(this));this.fetchByteRangeRepresentation=Za(this.abortAllController.signal,async function*(e,t,i){if(e.type!=="byteRange")return null;let{from:r,to:a}=e.initRange,n=r,o=a,u=!1,l,c;e.indexRange&&(l=e.indexRange.from,c=e.indexRange.to,u=a+1===l,u&&(n=Math.min(l,r),o=Math.max(c,a))),n=Math.min(n,0);let p=yield this.fetch(e.url,{range:{from:n,to:o},priority:i,measureThroughput:!1});if(!p)return null;let d=new DataView(p,r-n,a-n+1);if(!t.validateData(d))throw new Error("Invalid media file");let h=t.parseInit(d),f=e.indexRange??t.getIndexRange(h);if(!f)throw new ReferenceError("No way to load representation index");let b;if(u)b=new DataView(p,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(p),segments:g}}.bind(this));this.fetchTemplateRepresentation=Za(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}=Do(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:yI(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:tn.FATAL});break;case 8:this.recoverableError$.next({id:"VideoDataLinkBlockedForFloodError",message:"Url blocked for flood",category:tn.FATAL});break;case 18:this.recoverableError$.next({id:"VideoDataLinkIllegalIpChangeError",message:"Client IP has changed",category:tn.FATAL});break;case 21:this.recoverableError$.next({id:"VideoDataLinkIllegalHostChangeError",message:"Request HOST has changed",category:tn.FATAL});break;default:this.error$.next({id:"GeneralVideoDataFetchError",message:`Generic video data fetch error (${a})`,category:tn.FATAL})}}unsubscribeAbortSubscription(e){e&&(e.unsubscribe(),this.subscription.remove(e))}},su=s=>{if(!Xa(s))throw s};import{isNullable as eC,ValueSubject as tC}from"@vkontakte/videoplayer-shared";var rn=class s{constructor(e,t){this.currentRepresentation$=new tC(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(!eC(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 oC=["timeupdate","progress","play","seeked","stalled","waiting"],uC=["timeupdate","progress","loadeddata","playing","seeked"];var uu=class{constructor(e){this.element=null;this.manifestUrlString="";this.source=null;this.manifest=null;this.subscription=new Jd;this.representationSubscription=new Jd;this.state$=new F("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 ou;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 ou;this.fetcherError$=new ou;this.liveStreamEndTimestamp=0;this.isUpdatingLive=!1;this.isJumpGapAfterSeekLive=!1;this.forceEnded$=new ou;this.gapWatchdogActive=!1;this.destroyController=new ee;this.initManifest=Yd(this.destroyController.signal,async function*(e,t,i){this.tracer.log("initManifest"),this.element=e,this.manifestUrlString=be(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:Nt.PARSER,message:"No playable video representations"})}.bind(this));this.updateManifest=Yd(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:Nt.NETWORK,message:"Failed to load manifest",thrown:n})});if(!e)return null;let t=null;try{t=SI(e??"",this.manifestUrlString)}catch(n){let o=Ro(e)??{id:"ManifestParsing",category:Nt.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)&&bt()?.isTypeSupported?.(`${o}; codecs="${u}"`)||n==="text");if(t.live){this.isLive$.next(!!t.live);let{availabilityStartTime:n,latestSegmentPublishTime:o,streamIsUnpublished:u,streamIsAlive:l}=t.live,c=(t.duration??0)/1e3;this.liveSeekableDuration$.next(-1*c),this.liveDuration$.next((o-n)/1e3),this.liveAvailabilityStartTime$.next(t.live.availabilityStartTime);let p="active";l||(p=u?"unpublished":"unexpectedly_down"),this.liveStreamStatus$.next(p)}let r={text:t.streams.text,video:[],audio:[]};for(let n of["video","audio"]){let u=t.streams[n].filter(({mime:p,codecs:d})=>i(n,p,d)),l=new Set(u.map(({codecs:p})=>p)),c=jo(l);if(c&&(r[n]=u.filter(({codecs:p})=>p.startsWith(c))),n==="video"){let p=this.tuning.preferHDR,d=r.video.some(f=>f.hdr),h=r.video.some(f=>!f.hdr);_.display.isHDR&&p&&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",an(a)),a}.bind(this));this.initRepresentations=Yd(this.destroyController.signal,async function*(e,t,i){this.tracer.log("initRepresentationsStart",an({initialVideo:e,initialAudio:t,sourceHls:i})),Gr(this.manifest),Gr(this.element),this.representationSubscription.unsubscribe(),this.representationSubscription=new Jd,this.state$.startTransitionTo("representations_ready");let r=d=>{this.representationSubscription.add(ui(d,"error").pipe(nu(h=>!!this.element?.played.length)).subscribe(h=>{this.error$.next({id:"VideoSource",category:Nt.VIDEO_PIPELINE,message:"Unexpected video source error",thrown:h})}))};this.source=this.tuning.useManagedMediaSource?ao():new MediaSource;let a=document.createElement("source");if(r(a),a.src=URL.createObjectURL(this.source),this.element.appendChild(a),this.tuning.useManagedMediaSource&&Tr())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 Ja("video",this.source,o,n),this.bufferManagers=[this.videoBufferManager],nn(t)){let d=this.manifest.streams.audio.reduce((h,f)=>[...h,...f.representations],[]);this.audioBufferManager=new Ja("audio",this.source,d,n),this.bufferManagers.push(this.audioBufferManager)}rn.isSupported(this.manifest.streams.text)&&!this.isLowLatency$.getValue()&&(this.liveTextManager=new rn(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(Zi(...uC.map(d=>ui(this.element,d))).pipe(Wr(d=>this.element?Le(this.element.buffered,this.element.currentTime*1e3):0),sn(),aC(d=>{d>this.tuning.dash.bufferEmptinessTolerance&&u()})).subscribe(this.bufferLength$)),this.representationSubscription.add(Zi(ui(this.element,"ended"),this.forceEnded$).subscribe(()=>{u()})),this.isLive$.getValue()){this.subscription.add(this.liveDuration$.pipe(sn()).subscribe(h=>this.liveStreamEndTimestamp=Xd())),this.subscription.add(ui(this.element,"pause").subscribe(()=>{this.livePauseWatchdogSubscription=Kd(1e3).subscribe(h=>{let f=hi(this.manifestUrlString,2);this.manifestUrlString=be(this.manifestUrlString,f+1e3,2),this.liveStreamStatus$.getValue()==="active"&&this.updateManifest()}),this.subscription.add(this.livePauseWatchdogSubscription)})).add(ui(this.element,"play").subscribe(h=>this.livePauseWatchdogSubscription?.unsubscribe())),this.representationSubscription.add(Qr({isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe(Wr(({isActiveLive:h,isLowLatency:f})=>h&&f),sn()).subscribe(h=>{this.isManualDecreasePlaybackInLive()||Or(this.element,1)})),this.representationSubscription.add(Qr({bufferLength:this.bufferLength$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe(nu(({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(Qr({isLive:this.isLive$,rtt:this.throughputEstimator.rtt$,bufferLength:this.bufferLength$,segmentServerLatency:this.videoBufferManager.currentLiveSegmentServerLatency$}).pipe(nu(({isLive:h})=>h),sn((h,f)=>f.bufferLength<h.bufferLength),Wr(({rtt:h,bufferLength:f,segmentServerLatency:b})=>{let g=hi(this.manifestUrlString,2);return(h/2+f+b+g)/1e3})).subscribe(this.liveLatency$)),this.representationSubscription.add(Qr({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,y=h-g;if(this.isManualDecreasePlaybackInLive())return;let E=1;Math.abs(y)>S&&(E=1+Math.sign(y)*T),Or(this.element,E)})),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(Qr({liveLoadBufferLength:this.liveLoadBufferLength$,bufferLength:this.bufferLength$}).pipe(nC(1e3)).subscribe(async({liveLoadBufferLength:h,bufferLength:f})=>{if(!this.element||this.isUpdatingLive)return;let b=this.element.playbackRate,g=hi(this.manifestUrlString,2),S=Math.abs(this.livePositionFromPlayer$.getValue())*1e3,T=Math.min(S,this.tuning.dashCmafLive.normalizedTargetMinBufferSize*b),y=this.tuning.dashCmafLive.normalizedActualBufferOffset*b,E=this.tuning.dashCmafLive.normalizedLiveMinBufferSize*b,P=isFinite(h)?h:f,$=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),O=S<=this.tuning.live.activeLiveDelay;this.isActiveLive$.next(O);let w="none";if($?w="active_low_latency":this.isLowLatency$.getValue()&&O?(this.bufferManagers.forEach(A=>A.proceedLowLatencyLive()),w="active_low_latency"):g!==0&&P<T?w="live_forward_buffering":P<T+E&&(w="live_with_target_offset"),isFinite(h)&&(d=h>d?h:d),w==="live_forward_buffering"||w==="live_with_target_offset"){let A=d-(T+y),v=this.normolizeLiveOffset(Math.trunc(g+A/b)),D=Math.abs(v-g),I=0;!h||D<=this.tuning.dashCmafLive.offsetCalculationError?I=g:v>0&&D>this.tuning.dashCmafLive.offsetCalculationError&&(I=v),this.manifestUrlString=be(this.manifestUrlString,I,2)}(w==="live_with_target_offset"||w==="live_forward_buffering")&&(d=0,await this.updateLive())},h=>{this.error$.next({id:"updateLive",category:Nt.VIDEO_PIPELINE,thrown:h,message:"Failed to update live with subscription"})}))}let l=Zi(...this.bufferManagers.map(d=>d.fullyBuffered$)).pipe(Wr(()=>this.bufferManagers.every(d=>d.fullyBuffered$.getValue()))),c=Zi(...this.bufferManagers.map(d=>d.onLastSegment$)).pipe(Wr(()=>this.bufferManagers.some(d=>d.onLastSegment$.getValue()))),p=Qr({allBuffersFull:l,someBufferEnded:c}).pipe(sn(),Wr(({allBuffersFull:d,someBufferEnded:h})=>d&&h),nu(d=>d));if(this.representationSubscription.add(Zi(this.forceEnded$,p).subscribe(()=>{if(this.source&&this.source.readyState==="open"&&Array.from(this.source.sourceBuffers).every(d=>!d.updating))try{this.source?.endOfStream()}catch(d){this.error$.next({id:"EndOfStream",category:Nt.VIDEO_PIPELINE,message:"Failed to end MediaSource stream",thrown:d})}})),this.representationSubscription.add(Zi(...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,Zd.default)((0,Zd.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&&nn(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=Kd(this.tuning.gapWatchdogInterval).subscribe(()=>this.jumpGap(),t=>{this.error$.next({id:"GapWatchdog",category:Nt.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 au({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){Gr(this.element);let t=this.liveStreamStatus$.getValue()!=="active"?Xd()-this.liveStreamEndTimestamp:0,i=this.normolizeLiveOffset(e+t);this.isActiveLive$.next(i===0),this.manifestUrlString=be(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(){Gr(this.element),this.state$.setState("running"),this.subscription.add(Zi(...oC.map(e=>ui(this.element,e)),ui(window,"online")).subscribe(()=>this.tick(),e=>{this.error$.next({id:"DashVKPlayer",category:Nt.WTF,message:"Internal logic error",thrown:e})})),this.subscription.add(ui(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(ui(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=Xd(),a=100,n=this.videoBufferManager?.lastDataObtainedTimestamp??0;this.videoLastDataObtainedTimestamp$.next(n);let o=this.audioBufferManager?.lastDataObtainedTimestamp??0,u=this.videoBufferManager?.getForwardBufferDuration()??0,l=this.audioBufferManager?.getForwardBufferDuration()??0,c=u<a&&r-n>this.tuning.dash.crashOnStallTWithoutDataTimeout,p=this.audioBufferManager&&l<a&&r-o>this.tuning.dash.crashOnStallTWithoutDataTimeout;if((c||p)&&t>this.tuning.dash.crashOnStallTWithoutDataTimeout||t>=this.tuning.dash.crashOnStallTimeout)throw new Error(`Stall timeout exceeded: ${t} ms`);if(this.isLive$.getValue()&&t%2e3===0){let d=this.normolizeLiveOffset(-1*this.livePositionFromPlayer$.getValue()*1e3);this.seekLive(d).catch(h=>{this.error$.next({id:"stallIntervalCallback",category:Nt.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",an(i))};this.stallWatchdogSubscription?.unsubscribe(),this.stallWatchdogSubscription=Kd(50).subscribe(e,t=>{this.error$.next({id:"StallWatchdogCallback",category:Nt.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){Gr(this.element),Gr(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()]),!(EI(this.element)||EI(this.videoBufferManager))&&(this.videoBufferManager.maintain(i),this.audioBufferManager?.maintain(i),this.element.currentTime=i/1e3,this.tracer.log("seek",an({requestedPosition:e,forcePrecise:t,position:i})))}warmUpMediaSourceIfNeeded(e=this.element?.currentTime){nn(this.element)&&nn(this.source)&&nn(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=sC(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",an({isJumpGapAfterSeekLive:this.isJumpGapAfterSeekLive,isActiveLowLatency:t,initialCurrentTime:this.element.currentTime,jumpTo:n,resultCurrentTime:this.element.currentTime})))}}};import{combine as lC,map as cC,observeElementSize as dC,Subscription as pC,ValueSubject as ep,noop as hC}from"@vkontakte/videoplayer-shared";var lu=class{constructor(){this.subscription=new pC;this.pipSize$=new ep(void 0);this.videoSize$=new ep(void 0);this.elementSize$=new ep(void 0);this.pictureInPictureWindowRemoveEventListener=hC}connect({observableVideo:e,video:t}){let i=r=>{let a=r.target;this.pipSize$.next({width:a.width,height:a.height})};this.subscription.add(dC(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(lC({videoSize:this.videoSize$,pipSize:this.pipSize$,inPip:e.inPiP$}).pipe(cC(({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 er=class{constructor(e){this.subscription=new vC;this.videoState=new F("stopped");this.droppedFramesManager=new Ar;this.stallsManager=new Xo;this.elementSizeManager=new lu;this.videoTracksMap=new Map;this.audioTracksMap=new Map;this.textTracksMap=new Map;this.videoStreamsMap=new Map;this.audioStreamsMap=new Map;this.videoTrackSwitchHistory=new gi;this.audioTrackSwitchHistory=new gi;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"),k(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"),k(this.params.desiredState.playbackState,"paused")):t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):i?.to==="ready"&&k(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"&&k(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):i?.to==="paused"&&k(this.params.desiredState.playbackState,"paused");return;default:return mC(e)}}};this.init3DScene=e=>{if(this.scene3D)return;this.scene3D=new Ur(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(xe(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 uu({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:PI.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(wI(l=>!!l.length),kI()).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(tp(l=>l.to.state!=="none"),cu());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(wI(AI),kI()),e.firstBytesEvent$),a(this.stallsManager.severeStallOccurred$,e.severeStallOccurred$),a(this.videoState.stateChangeEnded$.pipe(tp(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"),k(t.playbackState,"playing"),this.scene3D&&this.scene3D.play()},r)).add(i.pause$.subscribe(()=>{this.videoState.setState("paused"),k(t.playbackState,"paused")},r)).add(i.canplay$.subscribe(()=>{this.videoState.getState()==="playing"&&this.playIfAllowed()},r)),this.subscription.add(this.player.state$.stateChangeEnded$.subscribe(({to:l})=>{if(l==="manifest_ready"){this.videoTracksMap=new Map,this.audioTracksMap=new Map,this.textTracksMap=new Map;let c=this.player.getStreams();if(bC(c,"Manifest not loaded or empty"),!this.params.tuning.isAudioDisabled){let d=[];for(let h of c.audio){d.push(Fd(h));let f=[];for(let b of h.representations){let g=lI(b);f.push(g),this.audioTracksMap.set(g,{stream:h,representation:b})}this.audioStreamsMap.set(h,f)}this.params.output.availableAudioStreams$.next(d)}let p=[];for(let d of c.video){p.push(Nd(d));let h=[];for(let f of d.representations){let b=uI({...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(p);for(let d of c.text)for(let h of d.representations){let f=cI(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(du(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$,SC(this.video,"progress")).subscribe(async()=>{let l=this.player.state$.getState(),c=this.player.state$.getTransition();if(l!=="manifest_ready"&&l!=="running"||c)return;t.autoVideoTrackSwitching.getTransition()&&t.autoVideoTrackSwitching.setState(t.autoVideoTrackSwitching.getState()),this.selectVideoAudioRepresentations();let{video:p,audio:d}=this.selectedRepresentations;if(!p)return;let h=Xi(this.videoTracksMap.keys(),b=>this.videoTracksMap.get(b)?.representation.id===p.id);AI(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(p.id,d?.id,this.params.sourceHls);else if(await this.player.switchRepresentation("video",p.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(cu()).subscribe(l=>{let c=Xi(this.videoTracksMap.entries(),([,{representation:f}])=>f.id===l);if(!c){e.currentVideoTrack$.next(void 0),e.currentVideoStream$.next(void 0);return}let[p,{stream:d}]=c,h=this.params.desiredState.videoStream.getTransition();h&&h.to&&h.to.id===d.id&&this.params.desiredState.videoStream.setState(h.to),e.currentVideoTrack$.next(p),e.currentVideoStream$.next(Nd(d))},r)),this.subscription.add(this.player.currentAudioRepresentation$.pipe(cu()).subscribe(l=>{let c=Xi(this.audioTracksMap.entries(),([,{representation:f}])=>f.id===l);if(!c){e.currentAudioStream$.next(void 0);return}let[p,{stream:d}]=c,h=this.params.desiredState.audioStream.getTransition();h&&h.to&&h.to.id===d.id&&this.params.desiredState.audioStream.setState(h.to),e.currentAudioStream$.next(Fd(d))},r)),this.subscription.add(this.player.currentVideoRepresentationInit$.subscribe(l=>{if(l?.is3dVideo&&this.params.tuning.spherical?.enabled)try{this.init3DScene(l),e.is3DVideo$.next(!0)}catch(c){e.warning$.next({id:"DashProvider",message:`DashProvider could not initialize 3D-scene: ${c}`})}else this.destroy3DScene(),this.params.tuning.spherical?.enabled&&e.is3DVideo$.next(!1)},r)),this.subscription.add(this.player.currentVideoSegmentLength$.subscribe(e.currentVideoSegmentLength$,r)),this.subscription.add(this.player.currentAudioSegmentLength$.subscribe(e.currentAudioSegmentLength$,r)),this.textTracksManager.connect(this.video,t,e);let o=t.playbackState.stateChangeStarted$.pipe(tp(({to:l})=>l==="ready"),cu());this.subscription.add(du(o,t.autoVideoTrackSwitching.stateChangeStarted$,this.player.state$.stateChangeEnded$,ip(["init"])).subscribe(()=>{let l=t.autoVideoTrackSwitching.getState(),p=t.playbackState.getState()==="ready"?this.params.tuning.dash.forwardBufferTargetPreload:l?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;this.player.setBufferTarget(p)})),this.subscription.add(du(o,this.player.state$.stateChangeEnded$,ip(["init"])).subscribe(()=>this.player.setPreloadOnly(t.playbackState.getState()==="ready")));let u=du(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,ip(["init"])).pipe(gC(0));this.subscription.add(u.subscribe(this.syncPlayback,r))}selectVideoAudioRepresentations(){if(this.player.isStreamEnded)return;let e=this.params.tuning.useNewAutoSelectVideoTrack?Rs:ks,t=this.params.tuning.useNewAutoSelectVideoTrack?Io:To,i=this.params.tuning.useNewAutoSelectVideoTrack?Ot:yo,{desiredState:r,output:a}=this.params,n=r.autoVideoTrackSwitching.getState(),o=r.videoTrack.getState()?.id,u=Xi(this.videoTracksMap.keys(),w=>w.id===o),l=a.currentVideoTrack$.getValue(),c=r.videoStream.getState()??(u&&this.videoTracksMap.get(u)?.stream)??this.videoStreamsMap.size===1?this.videoStreamsMap.keys().next().value:void 0;if(!c)return;let p=Xi(this.videoStreamsMap.keys(),w=>w.id===c.id),d=p&&this.videoStreamsMap.get(p);if(!d)return;let h=Le(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&&Xi(this.audioStreamsMap.keys(),w=>w.id===S.id)||this.audioStreamsMap.keys().next().value,y=0;if(T){if(u&&!n){let w=e(u,d,this.audioStreamsMap.get(T)??[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);y=Math.max(y,w?.bitrate??-1/0)}if(l){let w=e(l,d,this.audioStreamsMap.get(T)??[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);y=Math.max(y,w?.bitrate??-1/0)}}let E=u;(n||!E)&&(E=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:y,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(E,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}),$=this.videoTracksMap.get(E)?.representation,O=P&&this.audioTracksMap.get(P)?.representation;$&&O?(this.selectedRepresentations.video=$,this.selectedRepresentations.audio=O):$&&!O&&this.audioTracksMap.size===0&&(this.selectedRepresentations.video=$,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"),k(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:PI.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 on=class extends er{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 rp,merge as RI,filter as LI,filterChanged as yC,isNullable as sp,map as MI,ValueSubject as ap,isNonNullable as TC}from"@vkontakte/videoplayer-shared";var un=class extends er{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 ap(1);a(i.playbackRateState$,n),this.subscription.add(this.params.output.position$.subscribe(this.player.livePositionFromPlayer$)).add(r.isLowLatency.stateChangeEnded$.pipe(MI(o=>o.to)).subscribe(this.player.isLowLatency$)).add(rp({liveBufferTime:t.liveBufferTime$,liveAvailabilityStartTime:this.player.liveAvailabilityStartTime$}).pipe(MI(({liveBufferTime:o,liveAvailabilityStartTime:u})=>o&&u?o+u:void 0)).subscribe(t.liveTime$)).add(this.player.liveStreamStatus$.pipe(LI(o=>TC(o))).subscribe(o=>t.isLiveEnded$.next(o!=="active"&&t.position$.getValue()===0))).add(rp({liveDuration:this.player.liveDuration$,liveStreamStatus:this.player.liveStreamStatus$,playbackRate:RI(i.playbackRateState$,new ap(1))}).pipe(LI(({liveStreamStatus:o,liveDuration:u})=>o==="active"&&!!u)).subscribe(({liveDuration:o,playbackRate:u})=>{let l=t.liveBufferTime$.getValue(),c=t.position$.getValue(),{playbackCatchupSpeedup:p}=this.params.tuning.dashCmafLive.lowLatency;c||u<1-p||this.video.paused||sp(l)||(e=o-l)})).add(rp({time:t.liveBufferTime$,liveDuration:this.player.liveDuration$,playbackRate:RI(i.playbackRateState$,new ap(1))}).pipe(yC((o,u)=>this.player.liveStreamStatus$.getValue()==="active"?o.liveDuration===u.liveDuration:o.time===u.time)).subscribe(({time:o,liveDuration:u,playbackRate:l})=>{let c=t.position$.getValue(),{playbackCatchupSpeedup:p}=this.params.tuning.dashCmafLive.lowLatency;if(!c&&!this.video.paused&&l>=1-p||sp(o)||sp(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=dI(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 BI=C(Ts(),1);import{assertNever as ln,assertNonNullable as $I,debounce as IC,ErrorCategory as pu,filter as xC,isNonNullable as EC,isNullable as PC,map as hu,merge as wC,Observable as AC,observableFrom as kC,Subscription as RC,videoSizeToQuality as LC}from"@vkontakte/videoplayer-shared";var Mt={};var Yr=(s,e)=>new AC(t=>{let i=(r,a)=>t.next(a);return s.on(e,i),()=>s.off(e,i)}),cn=class{constructor(e){this.subscription=new RC;this.videoState=new F("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:ln(e)}break;case"ready":switch(e){case"stopped":this.prepare();break;case"ready":case"playing":case"paused":break;default:ln(e)}break;case"playing":switch(e){case"playing":break;case"stopped":this.prepare();break;case"ready":case"paused":this.playIfAllowed();break;default:ln(e)}break;case"paused":switch(e){case"paused":break;case"stopped":this.prepare();break;case"ready":this.videoState.setState("paused"),k(this.params.desiredState.playbackState,"paused");break;case"playing":this.pause();break;default:ln(e)}break;default:ln(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(xe(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:pu.NETWORK,message:"Failed to load Hls.js",thrown:r}),e=!0},i=window.setTimeout(()=>t("timeout"),this.params.tuning.dynamicImportTimeout);(0,BI.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(){$I(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(){$I(Mt.Events,"hls.js not loaded");let{desiredState:e,output:t}=this.params,i=l=>{t.error$.next({id:"HlsJsProvider",category:pu.WTF,message:"HlsJsProvider internal logic error",thrown:l})},r=Oe(this.video);this.subscription.add(()=>r.destroy());let a=(l,c)=>this.subscription.add(l.subscribe(c,i));a(r.timeUpdate$,t.position$),a(r.durationChange$,t.duration$),a(r.ended$,t.endedEvent$),a(r.looped$,t.loopedEvent$),a(r.error$,t.error$),a(r.isBuffering$,t.isBuffering$),a(r.currentBuffer$,t.currentBuffer$),a(r.loadStart$,t.firstBytesEvent$),a(r.loadedMetadata$,t.loadedMetadataEvent$),a(r.playing$,t.firstFrameEvent$),a(r.canplay$,t.canplay$),a(r.seeked$,t.seekedEvent$),a(r.inPiP$,t.inPiP$),a(r.inFullscreen$,t.inFullscreen$),this.subscription.add(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(hu(l=>l.to)),this.params.output.playbackState$),this.subscription.add(Yr(this.hls,Mt.Events.ERROR).subscribe(l=>{l.fatal&&t.error$.next({id:["HlsJsFatal",l.type,l.details].join("_"),category:pu.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"),k(e.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),k(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(Yr(this.hls,Mt.Events.MANIFEST_PARSED).pipe(hu(({levels:l})=>l.reduce((c,p)=>{let d=p.name||p.height.toString(10),{width:h,height:f}=p,b=Vt(p.attrs.QUALITY??"")??LC({width:h,height:f});if(!b)return c;let g=p.attrs["FRAME-RATE"]?parseFloat(p.attrs["FRAME-RATE"]):void 0,S={id:d.toString(),quality:b,bitrate:p.bitrate/1e3,size:{width:h,height:f},fps:g};return this.trackLevels.set(d,{track:S,level:p}),c.push(S),c},[]))),t.availableVideoTracks$),a(Yr(this.hls,Mt.Events.MANIFEST_PARSED),l=>{if(l.subtitleTracks.length>0){let c=[];for(let p of l.subtitleTracks){let d=p.name,h=p.attrs.URI||"",f=p.lang;c.push({id:d,url:h,language:f,type:"internal"})}e.internalTextTracks.startTransitionTo(c)}}),a(Yr(this.hls,Mt.Events.LEVEL_LOADING).pipe(hu(({url:l})=>xe(l))),t.hostname$),a(Yr(this.hls,Mt.Events.FRAG_CHANGED),l=>{let{video:c,audio:p}=l.frag.elementaryStreams;t.currentVideoSegmentLength$.next(((c?.endPTS??0)-(c?.startPTS??0))*1e3),t.currentAudioSegmentLength$.next(((p?.endPTS??0)-(p?.startPTS??0))*1e3)}),this.subscription.add(fi(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=Yr(this.hls,Mt.Events.LEVEL_SWITCHED).pipe(hu(({level:l})=>n(this.hls.levels[l])));o.pipe(xC(EC)).subscribe(t.currentVideoTrack$,i),this.subscription.add(fi(e.videoTrack,()=>n(this.hls.levels[this.hls.currentLevel]),l=>{if(PC(l))return;let c=this.trackLevels.get(l.id)?.level;if(!c)return;let p=this.hls.levels.indexOf(c),d=this.hls.currentLevel,h=this.hls.levels[d];!h||c.bitrate>h.bitrate?this.hls.nextLevel=p:(this.hls.loadLevel=p,this.hls.loadLevel=p)},{changed$:o,onError:i})),a(r.progress$,()=>{this.params.dependencies.throughputEstimator.addRawThroughput(this.hls.bandwidthEstimate/1e3)}),this.textTracksManager.connect(this.video,e,t);let u=wC(e.playbackState.stateChangeStarted$,e.videoTrack.stateChangeStarted$,e.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,kC(["init"])).pipe(IC(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:pu.DOM,thrown:t}))||(this.videoState.setState("paused"),k(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"),k(this.params.desiredState.playbackState,"stopped",!0)}};var DI="X-Playback-Duration",np=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(DI)?parseInt(e.headers.get(DI),10):void 0};import{assertNever as UC,combine as qC,debounce as HC,ErrorCategory as bu,filter as jC,filterChanged as zC,isNonNullable as OI,isNullable as gu,map as _I,merge as GC,observableFrom as QC,Subscription as WC,ValueSubject as lp,VideoQuality as YC}from"@vkontakte/videoplayer-shared";var up=C(_l(),1);import{videoSizeToQuality as MC,getExponentialDelay as $C}from"@vkontakte/videoplayer-shared";var BC=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=MC({width:t,height:i})}return e??null},DC=(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,up.default)(o[1].split(",").map(g=>g.split("="))),c=l.QUALITY??`stream-${l.BANDWIDTH}`,p=BC(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();p&&i.push({id:c,quality:p,url:b,bandwidth:d,size:f,fps:h})}if(u){let l=(0,up.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"),p=l.LANGUAGE,d=l.NAME;c&&p&&r.push({type:"internal",id:p,label:d,language:p,url:c,isAuto:!1})}}}if(!i.length)throw new Error("Empty manifest");return{qualityManifests:i,textTracks:r}},CC=s=>new Promise(e=>{setTimeout(()=>{e()},s)}),op=0,CI=async(s,e=s,t,i)=>{let a=await(await vt(s,i)).text();op+=1;try{let{qualityManifests:n,textTracks:o}=DC(a,e);return{qualityManifests:n,textTracks:o}}catch{if(op<=t.manifestRetryMaxCount)return await CC($C(op-1,{start:t.manifestRetryInterval,max:t.manifestRetryMaxInterval})),CI(s,e,t)}return{qualityManifests:[],textTracks:[]}},fu=CI;import{isNonNullable as VC,Subscription as OC,throttle as _C,ValueSubject as VI,Subject as FC,ErrorCategory as NC}from"@vkontakte/videoplayer-shared";var mu=class{constructor(e,t,i,r,a){this.subscription=new OC;this.abortControllers={destroy:new ee,nextManifest:null};this.prepareUrl=void 0;this.currentTextTrackData=null;this.availableTextTracks$=new VI(null);this.getCurrentTime$=new VI(null);this.error$=new FC;this.params={fetchManifestData:i,sourceUrl:r,downloadThreshold:a},this.subscription.add(e.pipe(_C(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(),c=Number(this.extractPlaylistRowValue("#EXTINF:",o))*1e3;if(i.segments.push({time:{from:a,to:a+c},url:l}),a=a+c,!i.segmentStartTime){let p=new Date(i.vkStartTime).valueOf(),d=new Date(i.programDateTime).valueOf();i.segmentStartTime=d-p}break}case o.startsWith("#EXT-X-TARGETDURATION:"):i.targetDuration=Number(this.extractPlaylistRowValue("#EXT-X-TARGETDURATION:",o));break;case o.startsWith("#EXT-X-MEDIA-SEQUENCE:"):i.mediaSequence=Number(this.extractPlaylistRowValue("#EXT-X-MEDIA-SEQUENCE:",o));break;case o.startsWith("#EXT-X-VK-PLAYBACK-DURATION:"):i.vkPlaybackDuration=Number(this.extractPlaylistRowValue("#EXT-X-VK-PLAYBACK-DURATION:",o));break;case o.startsWith("#EXT-X-PROGRAM-DATE-TIME:"):{let u=this.extractPlaylistRowValue("#EXT-X-PROGRAM-DATE-TIME:",o);i.programDateTime=u;let l=new Date(u);l.setMilliseconds(0),a=l.valueOf();break}case o.startsWith("#EXT-X-VK-START-TIME:"):i.vkStartTime=this.extractPlaylistRowValue("#EXT-X-VK-START-TIME:",o);break}}return i}extractPlaylistRowValue(e,t){switch(e){case"#EXTINF:":return t.substring(e.length,t.length-1);default:return t.substring(e.length)}}processLiveTime(e){if(VC(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:NC.WTF,thrown:t,message:e})}};var dn=class{constructor(e){this.subscription=new WC;this.videoState=new F("stopped");this.textTracksManager=null;this.liveTextManager=null;this.manifests$=new lp([]);this.liveOffset=new qi;this.manifestStartTime$=new lp(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"),k(this.params.desiredState.playbackState,"stopped",!0));return}if(this.videoState.getTransition())return;let l=this.params.desiredState.seekState.getState();if(t==="stopped"){this.videoState.startTransitionTo("ready"),this.prepare();return}if(a||n||o){let c=this.videoState.getState();this.videoState.setState("changing_manifest"),this.videoState.startTransitionTo(c),this.prepare(),o&&this.params.output.autoVideoTrackLimits$.next(o.to),l.state==="none"&&this.params.desiredState.seekState.setState({state:"requested",position:-this.liveOffset.getTotalOffset(),forcePrecise:!0});return}if(r?.to!=="paused"&&l.state==="requested"){this.videoState.startTransitionTo("ready"),this.seek(l.position&&l.position-this.liveOffset.getTotalPausedTime()),this.prepare();return}switch(t){case"ready":i==="ready"?k(this.params.desiredState.playbackState,"ready"):i==="paused"?(this.videoState.setState("paused"),this.liveOffset.pause(),k(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"&&k(this.params.desiredState.playbackState,"playing");return;case"paused":if(i==="playing")if(this.videoState.startTransitionTo("playing"),this.liveOffset.getTotalPausedTime()<this.params.config.maxPausedTime&&this.liveOffset.getTotalOffset()<this.maxSeekBackTime$.getValue())this.liveOffset.resume(),this.playIfAllowed(),this.params.output.position$.next(-this.liveOffset.getTotalOffset()/1e3);else{let c=this.liveOffset.getTotalOffset();c>=this.maxSeekBackTime$.getValue()&&(c=0,this.liveOffset.resetTo(c)),this.liveOffset.resume(),this.params.output.position$.next(-c/1e3),this.prepare()}else r?.to==="paused"&&(k(this.params.desiredState.playbackState,"paused"),this.liveOffset.pause());return;case"changing_manifest":break;default:return UC(t)}};this.params=e,this.video=De(e.container,e.tuning),this.params.output.element$.next(this.video),this.masterManifest={id:"master",quality:YC.INVARIANT,url:this.params.source.url};let t=(i,r)=>fu(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 mu(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:bu.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:bu.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(xe(this.params.source.url)),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.maxSeekBackTime$=new lp(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:bu.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"),k(t.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),k(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(),_I(o=>-o/1e3)).subscribe(this.params.output.duration$,i)),this.subscription.add(r.loadedMetadata$.subscribe(()=>{let o=this.params.desiredState.seekState.getState(),u=this.videoState.getTransition(),l=this.params.desiredState.videoTrack.getTransition(),c=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(l&&OI(l.to)){let p=l.to.id;this.params.desiredState.videoTrack.setState(l.to);let d=this.manifests$.getValue().find(h=>h.id===p);d&&(this.params.output.currentVideoTrack$.next(d),this.params.output.hostname$.next(xe(d.url)))}c&&this.params.desiredState.autoVideoTrackSwitching.setState(c.to),u&&u.from==="changing_manifest"&&this.videoState.setState(u.to),o&&o.state==="requested"&&this.seek(o.position)},i)),this.subscription.add(r.loadedData$.subscribe(()=>{let o=this.video?.getStartDate?.()?.getTime();this.manifestStartTime$.next(o||void 0)},i)),this.subscription.add(qC({startTime:this.manifestStartTime$.pipe(jC(OI)),currentTime:r.timeUpdate$}).subscribe(({startTime:o,currentTime:u})=>this.params.output.liveTime$.next(o+u*1e3),i)),this.subscription.add(this.manifests$.pipe(_I(o=>o.map(({id:u,quality:l,size:c,bandwidth:p,fps:d})=>({id:u,quality:l,size:c,fps:d,bitrate:p})))).subscribe(this.params.output.availableVideoTracks$,i));let n=GC(t.playbackState.stateChangeStarted$,t.seekState.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.stateChangeStarted$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,this.manifests$,QC(["init"])).pipe(HC(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(gu(e))return;let t=this.params.desiredState.autoVideoTrackLimits.getTransition(),i=this.params.desiredState.autoVideoTrackLimits.getState(),r=new URL(e.url);if((t||i)&&e.id===this.masterManifest.id){let{max:o,min:u}=t?.to??i??{};for(let[l,c]of[[o,"mq"],[u,"lq"]]){let p=String(parseFloat(l||""));c&&l&&r.searchParams.set(c,p)}}let a=this.params.format==="HLS_LIVE_CMAF"?2:0,n=be(r.toString(),this.liveOffset.getTotalOffset(),a);this.liveTextManager?.prepare(n),this.video.setAttribute("src",n),this.video.load(),np(n).then(o=>{if(!gu(o))this.maxSeekBackTime$.next(o);else{let u=this.params.source.maxSeekBackTime??this.maxSeekBackTime$.getValue();(gu(u)||!isFinite(u))&&vt(n).then(l=>l.text()).then(l=>{let c=/#EXT-X-STREAM-INF[^\n]+\n(.+)/m.exec(l)?.[1];if(c){let p=new URL(c,n).toString();np(p).then(d=>{gu(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(),k(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:bu.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=be(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 KC,debounce as XC,ErrorCategory as cp,fromEvent as dp,isNonNullable as JC,isNullable as ZC,map as FI,merge as NI,observableFrom as UI,Subscription as eV,ValueSubject as tV,VideoQuality as iV}from"@vkontakte/videoplayer-shared";var pn=class{constructor(e){this.subscription=new eV;this.videoState=new F("stopped");this.manifests$=new tV([]);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"),k(this.params.desiredState.playbackState,"stopped",!0));return}if(this.videoState.getTransition())return;let l=this.params.desiredState.seekState.getState();if(t==="stopped"){this.videoState.startTransitionTo("ready"),this.prepare();return}if(a||n||o){let c=this.videoState.getState();this.videoState.setState("changing_manifest"),this.videoState.startTransitionTo(c);let{currentTime:p}=this.video;this.prepare(),o&&this.params.output.autoVideoTrackLimits$.next(o.to),l.state==="none"&&this.params.desiredState.seekState.setState({state:"requested",position:p*1e3,forcePrecise:!0});return}switch(r?.to!=="paused"&&l.state==="requested"&&this.seek(l.position),t){case"ready":i==="ready"?k(this.params.desiredState.playbackState,"ready"):i==="paused"?(this.videoState.setState("paused"),k(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"&&k(this.params.desiredState.playbackState,"playing");return;case"paused":i==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):r?.to==="paused"&&k(this.params.desiredState.playbackState,"paused");return;case"changing_manifest":break;default:return KC(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:iV.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(xe(this.params.source.url)),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),fu(be(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:cp.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:cp.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(FI(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"),k(t.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),k(t.playbackState,"paused")},i)).add(r.canplay$.subscribe(()=>{this.videoState.getTransition()?.to==="ready"&&this.videoState.setState("ready"),this.videoState.getState()==="playing"&&this.playIfAllowed()},i).add(r.loadedMetadata$.subscribe(()=>{let o=this.params.desiredState.seekState.getState(),u=this.videoState.getTransition(),l=this.params.desiredState.videoTrack.getTransition(),c=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(l&&JC(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(xe(f.url)))}let p=this.params.desiredState.playbackRate.getState(),d=this.params.output.element$.getValue()?.playbackRate;if(p!==d){let h=this.params.output.element$.getValue();h&&(this.params.desiredState.playbackRate.setState(p),h.playbackRate=p)}c&&this.params.desiredState.autoVideoTrackSwitching.setState(c.to),u&&u.from==="changing_manifest"&&this.videoState.setState(u.to),o.state==="requested"&&this.seek(o.position)},i))),this.subscription.add(this.manifests$.pipe(FI(o=>o.map(({id:u,quality:l,size:c,bandwidth:p,fps:d})=>({id:u,quality:l,size:c,fps:d,bitrate:p})))).subscribe(this.params.output.availableVideoTracks$,i)),!_.device.isIOS||!this.params.tuning.useNativeHLSTextTracks){let{textTracks:o}=this.video;this.subscription.add(NI(dp(o,"addtrack"),dp(o,"removetrack"),dp(o,"change"),UI(["init"])).subscribe(()=>{for(let u=0;u<o.length;u++)o[u].mode="hidden"},i))}let n=NI(t.playbackState.stateChangeStarted$,t.seekState.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.stateChangeStarted$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,this.manifests$,UI(["init"])).pipe(XC(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(ZC(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"),k(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:cp.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next(),this.video.currentTime=e/1e3}};var jI=C(Bi(),1),pp=C(Ui(),1),zI=C(kt(),1);import{assertNever as rV,assertNonNullable as qI,debounce as sV,ErrorCategory as HI,isHigherOrEqual as aV,isLowerOrEqual as nV,isNonNullable as oV,merge as uV,observableFrom as lV,Subscription as cV,map as dV}from"@vkontakte/videoplayer-shared";var hn=class{constructor(e){this.subscription=new cV;this.videoState=new F("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"),k(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"?k(this.params.desiredState.playbackState,"ready"):t==="paused"?(this.videoState.setState("paused"),k(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"&&k(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):i?.to==="paused"&&k(this.params.desiredState.playbackState,"paused");return;default:return rV(e)}};this.params=e,this.video=De(e.container,e.tuning),this.params.output.element$.next(this.video),(0,jI.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,pp.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:HI.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(dV(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"),k(t.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),k(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&&oV(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=uV(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,lV(["init"])).pipe(sV(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;qI(e,"MpegProvider: track is not selected");let{url:t}=this.trackUrls[e];qI(t,`MpegProvider: No url for ${e}`),this.params.tuning.requestQuick&&(t=yi(t)),this.video.setAttribute("src",t),this.video.load(),this.params.output.hostname$.next(xe(t))}playIfAllowed(){_e(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),k(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:HI.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=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(c)},r=this.params.output.currentVideoTrack$.getValue()?.quality,a=!!(e.max||e.min),n=(0,pp.default)(this.trackUrls).map(l=>l.track);if(!r||!a||Ir(e,n[0].quality,(0,zI.default)(n,-1)?.quality)){i();return}let o=e.max?nV(r,e.max):!0,u=e.min?aV(r,e.min):!0;o&&u||i(e)}};import{assertNever as QI,debounce as mV,merge as WI,observableFrom as bV,Subscription as gV,map as YI,ValueSubject as SV,ErrorCategory as fp,VideoQuality as vV}from"@vkontakte/videoplayer-shared";import{ErrorCategory as pV}from"@vkontakte/videoplayer-shared";var GI=["stun:videostun.mycdn.me:80"],hV=1e3,fV=3,hp=()=>null,Su=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=hp;this.externalStopCallback=hp;this.externalErrorCallback=hp;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:GI}]};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:pV.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),hV)}normalizeOptions(e={}){let t={stunServerList:GI,maxRetryNumber:fV,errorChanel:null};return e.stunServerList&&(t.stunServerList=e.stunServerList),e.maxRetryNumber&&e.maxRetryNumber>0&&(t.maxRetryNumber=e.maxRetryNumber),t}};var fn=class{constructor(e){this.videoState=new F("stopped");this.maxSeekBackTime$=new SV(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"),k(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"),k(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"&&k(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):i?.to==="paused"&&k(this.params.desiredState.playbackState,"paused");return;default:return QI(e)}};this.subscription=new gV,this.params=e,this.log=this.params.dependencies.logger.createComponentLog("WebRTCLiveProvider"),this.video=De(e.container,e.tuning),this.liveStreamClient=new Su(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:fp.WTF,message:"WebRTCLiveProvider internal logic error",thrown:n})};this.subscription.add(WI(this.videoState.stateChangeStarted$.pipe(YI(n=>({transition:n,type:"start"}))),this.videoState.stateChangeEnded$.pipe(YI(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 QI(n.to)}},i)).add(WI(t.playbackState.stateChangeStarted$,this.videoState.stateChangeEnded$,bV(["init"])).pipe(mV(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(xe(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:vV.INVARIANT}),this.video.srcObject=e,k(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:fp.EXTERNAL_API,message:e.message,thrown:e})}playIfAllowed(){_e(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),k(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:fp.DOM,thrown:e}))}prepare(){this.liveStreamClient.connect()}};var mn=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 bn,assertNonNullable as Ei,ErrorCategory as vu,filter as tx,isNonNullable as ix,isNullable as wV,map as AV,merge as kV,once as RV,Subject as Me,Subscription as rx,ValueSubject as H,flattenObject as sx}from"@vkontakte/videoplayer-shared";import{Observable as yV,map as KI,Subscription as TV,Subject as IV}from"@vkontakte/videoplayer-shared";var XI=s=>new yV(e=>{let t=new TV,i=s.desiredPlaybackState$.stateChangeStarted$.pipe(KI(({from:l,to:c})=>`${l}-${c}`)),r=s.desiredPlaybackState$.stateChangeEnded$,a=s.providerChanged$.pipe(KI(({type:l})=>l!==void 0)),n=new IV,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 xV,Subscription as EV,combine as PV,filter as ZI,once as ex}from"@vkontakte/videoplayer-shared";function JI(){return new(window.AudioContext||window.webkitAudioContext)}var Kr=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 EV;this.audioContext=null;this.gainNode=null;this.mediaElementSource=null;this.subscriptions.add(this.provider$.pipe(ZI(a=>!!a.type),ex()).subscribe(({type:a})=>this.subscribe(a)))}static{this.errorId="VolumeMultiplierManager"}subscribe(e){_.browser.isSafari&&e!=="MPEG"||this.subscriptions.add(PV({video:this.providerOutput.element$,playbackState:this.providerOutput.playbackState$,volume:this.providerOutput.volume$}).pipe(ZI(({playbackState:t,video:i,volume:{muted:r,volume:a}})=>t==="playing"&&!!i&&!r&&!!a),ex()).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=JI();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:xV.VIDEO_PIPELINE,message:e?.message??`${s.errorId} exception`,thrown:e})}};var LV={chunkDuration:5e3,maxParallelRequests:5},gn=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 rx;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([...DT(this.params.tuning),...BT(this.params.tuning)],this.params.tuning).filter(l=>ix(e.sources[l])),{forceFormat:i,formatsToAvoid:r}=this.params.tuning,a=[];i?a=[i]:r.length?a=[...t.filter(l=>!(0,mp.default)(r,l)),...t.filter(l=>(0,mp.default)(r,l))]:a=t,this.log({message:`Selected formats: ${a.join(" > ")}`}),this.tracer.log("Selected formats",sx(a)),this.screenFormatsIterator=new mn(a);let n=[...vd(!0),...vd(!1)];this.chromecastFormatsIterator=new mn(n.filter(l=>ix(e.sources[l]))),this.providerOutput.availableSources$.next(e.sources);let{volumeMultiplier:o=1,tuning:{useVolumeMultiplier:u}}=this.params;u&&o!==1&&Kr.isSupported()&&(this.volumeMultiplierManager=new Kr(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(wV(t)){this.handleNoFormatsError(e);return}let i;try{i=this.createProvider(e,t)}catch(r){this.providerError$.next({id:"ProviderNotConstructed",category:vu.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 bn(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 Ei(u),this.params.tuning.useNewDashProvider?new on({...o,source:u,sourceHls:l}):new xa({...o,source:u,sourceHls:l})}case"DASH_LIVE_CMAF":{let u=this.applyFailoverHost(t[e]);return Ei(u),this.params.tuning.useNewDashProvider?new un({...o,source:u}):new Ea({...o,source:u})}case"HLS":case"HLS_ONDEMAND":{let u=this.applyFailoverHost(t[e]);return Ei(u),_.video.nativeHlsSupported||!this.params.tuning.useHlsJs?new pn({...o,source:u}):new cn({...o,source:u})}case"HLS_LIVE":case"HLS_LIVE_CMAF":{let u=this.applyFailoverHost(t[e]);return Ei(u),new dn({...o,source:u,config:{maxPausedTime:this.params.tuning.live.maxPausedTime},format:e})}case"MPEG":{let u=this.applyFailoverHost(t[e]);return Ei(u),new hn({...o,source:u})}case"DASH_LIVE":{let u=this.applyFailoverHost(t[e]);return Ei(u),new $v({...o,source:u,config:{...LV,maxPausedTime:this.params.tuning.live.maxPausedTime}})}case"WEB_RTC_LIVE":{let u=this.applyFailoverHost(t[e]);return Ei(u),new fn({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 bn(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 Ei(o),new Is({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 bn(e)}}skipFormat(e){switch(e){case"SCREEN":return this.screenFormatsIterator.next();case"CHROMECAST":return this.chromecastFormatsIterator.next();default:return bn(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 bn(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,nx.default)((0,ax.default)(e).map(([r,a])=>[r,i(a)]))}initProviderErrorHandling(){let e=new rx,t=!1,i=0;return e.add(kV(this.providerOutput.error$.pipe(tx(r=>!this.params.tuning.ignoreAudioRendererError||!r.message||!/AUDIO_RENDERER_ERROR/ig.test(r.message))),XI({desiredPlaybackState$:this.params.desiredState.playbackState,maxTransitionInterval:this.params.tuning.maxPlaybackTransitionInterval,position$:this.providerOutput.position$,providerChanged$:this.current$}).pipe(AV(r=>({id:`ProviderHangup:${r}`,category:vu.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(tx(({to:a})=>a==="playing"),RV()).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===vu.NETWORK,u=r.category===vu.FATAL,l=this.params.failoverHosts.length>0&&(this.failoverIndex===void 0||this.failoverIndex<this.params.failoverHosts.length-1),c=i<this.params.tuning.providerErrorLimit&&!u,p=l&&!u&&(o&&t||!c);n={...n,isNetworkError:o,isFatalError:u,haveFailoverHost:l,tryFailover:p,canReinitProvider:c},c?(i++,this.reinitProvider()):p?(this.failoverIndex=this.failoverIndex===void 0?0:this.failoverIndex+1,this.reinitProvider()):(i=0,this.switchToNextProvider(a??"SCREEN"))}this.tracer.error("providerError",sx(n))})),e}};import{fromEvent as yu,once as MV,combine as $V,Subscription as ox,ValueSubject as bp,map as BV,filter as DV,isNonNullable as Tu,now as gt,safeStorage as gp}from"@vkontakte/videoplayer-shared";var CV=5e3,ux="one_video_throughput",lx="one_video_rtt",Sn=window.navigator.connection,cx=()=>{let s=Sn?.downlink;if(Tu(s)&&s!==10)return s*1e3},dx=()=>{let s=Sn?.rtt;if(Tu(s)&&s!==3e3)return s},px=(s,e,t)=>{let i=t*8,r=i/s;return i/(r+e)},Sp=class s{constructor(e){this.subscription=new ox;this.concurrentDownloads=new Set;this.tuningConfig=e;let t=s.load(ux)||(e.useBrowserEstimation?cx():void 0)||CV,i=s.load(lx)??(e.useBrowserEstimation?dx():void 0)??0;if(this.throughput$=new bp(t),this.rtt$=new bp(i),this.rttAdjustedThroughput$=new bp(px(t,i,e.rttPenaltyRequestSize)),this.throughput=ri.getSmoothedValue(t,-1,e),this.rtt=ri.getSmoothedValue(i,1,e),e.useBrowserEstimation){let r=()=>{let n=cx();n&&this.throughput.next(n);let o=dx();Tu(o)&&this.rtt.next(o)};Sn&&"onchange"in Sn&&this.subscription.add(yu(Sn,"change").subscribe(r)),r()}this.subscription.add(this.throughput.smoothed$.subscribe(r=>{gp.set(ux,r.toFixed(0))})),this.subscription.add(this.rtt.smoothed$.subscribe(r=>{gp.set(lx,r.toFixed(0))})),this.subscription.add(this.throughput.debounced$.subscribe(this.throughput$)),this.subscription.add(this.rtt.debounced$.subscribe(this.rtt$)),this.subscription.add($V({throughput:this.throughput.smoothed$,rtt:this.rtt.smoothed$}).pipe(BV(({throughput:r,rtt:a})=>px(r,a,e.rttPenaltyRequestSize)),DV(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=gt(),r=new ox;switch(this.subscription.add(r),this.concurrentDownloads.add(e),e.readyState){case 4:break;case 3:case 2:r.add(yu(e,"progress").pipe(MV()).subscribe(a=>{t=a.loaded,i=gt()}));break;case 1:case 0:r.add(yu(e,"loadstart").subscribe(()=>{t=0,i=gt()}));break}r.add(yu(e,"loadend").subscribe(a=>{if(e.status===200){let n=a.loaded,o=gt(),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=gt(),n=0,o=gt(),u=c=>{this.concurrentDownloads.delete(e),i.releaseLock(),e.cancel(`Throughput Estimator error: ${c}`).catch(()=>{})},l=async({done:c,value:p})=>{if(c)!t&&this.addRawSpeed(r,gt()-a,1),this.concurrentDownloads.delete(e);else if(p){if(t){let d=gt();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=p.byteLength,a=gt()}else n+=p.byteLength;o=gt()}else r+=p.byteLength,n+=p.byteLength,n>=this.tuningConfig.streamMinSampleSize&&gt()-o>=this.tuningConfig.streamMinSampleTime&&(this.addRawSpeed(n,gt()-o,this.concurrentDownloads.size),n=0,o=gt());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=gp.get(e);if(Tu(t))return parseInt(t,10)??void 0}},hx=Sp;import{fillWithDefault as VV,VideoQuality as Iu}from"@vkontakte/videoplayer-shared";var fx={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:Iu.Q_4320P,activeVideoAreaThreshold:.1,highQualityLimit:Iu.Q_720P,trafficSavingLimit:Iu.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:Iu.Q_480P},dash:{forwardBufferTarget:6e4,forwardBufferTargetAuto:6e4,forwardBufferTargetManual:5*6e4,forwardBufferTargetPreload:5e3,seekBiasInTheEnd:2e3,maxSegmentDurationLeftToSelectNextSegment:3e3,minSafeBufferThreshold:.5,bufferPruningSafeZone:1e3,segmentRequestSize:1*1024*1024,representationSwitchForwardBufferGap:3e3,crashOnStallTimeout:25e3,crashOnStallTWithoutDataTimeout:5e3,enableSubSegmentBufferFeeding:!0,bufferEmptinessTolerance:100,useFetchPriorityHints:!0,enableBaseUrlSupport:!0,maxSegmentRetryCount:5,sourceOpenTimeout:1e3,rejectOnSourceOpenTimeout:!1},dashCmafLive:{maxActiveLiveOffset:1e4,normalizedTargetMinBufferSize:6e4,normalizedLiveMinBufferSize:5e3,normalizedActualBufferOffset:1e4,offsetCalculationError:3e3,maxLiveDuration:7200,lowLatency:{maxTargetOffset:3e3,maxTargetOffsetDeviation:250,playbackCatchupSpeedup:.05,isActiveOnDefault:!1,bufferEstimator:{emaAlpha:.45,changeThreshold:.05,deviationDepth:20,deviationFactor:.5,extremumInterval:5}}},live:{minBuffer:3e3,minBufferSegments:3,lowLatencyMinBuffer:1e3,lowLatencyMinBufferSegments:1,isLiveCatchUpMode:!1,lowLatencyActiveLiveDelay:3e3,activeLiveDelay:5e3,maxPausedTime:5e3},downloadBackoff:{bufferThreshold:100,start:100,factor:2,max:3*1e3,random:.1},enableWakeLock:!0,enableTelemetryAtStart:!1,forceFormat:void 0,formatsToAvoid:[],disableChromecast:!1,chromecastReceiverId:"07A4434E",useWebmBigRequest:!1,webmCodec:"vp9",androidPreferredFormat:"dash",preferCMAF:!1,preferWebRTC:!1,preferMultiStream:!1,preferHDR:!1,bigRequestMinInitSize:50*1024,bigRequestMinDataSize:1*1024*1024,stripRangeHeader:!0,flushShortLoopedBuffers:!0,insufficientBufferRuleMargin:1e4,seekNearDurationBias:1,dashSeekInSegmentDurationThreshold:3*60*1e3,dashSeekInSegmentAlwaysSeekDelta:1e4,endGapTolerance:300,stallIgnoreThreshold:33,gapWatchdogInterval:50,requestQuick:!1,useHlsJs:!1,useNativeHLSTextTracks:!1,useManagedMediaSource:!0,useNewSwitchTo:!1,useNewDashProvider:!1,useNewAutoSelectVideoTrack:!1,useSafariEndlessRequestBugfix:!0,useRefactoredSearchGap:!1,isAudioDisabled:!1,autoplayOnlyInActiveTab:!0,dynamicImportTimeout:5e3,maxPlaybackTransitionInterval:2e4,providerErrorLimit:3,manifestRetryInterval:300,manifestRetryMaxInterval:1e4,manifestRetryMaxCount:10,audioVideoSyncRate:20,webrtc:{connectionRetryMaxNumber:3},spherical:{enabled:!1,fov:{x:135,y:76},rotationSpeed:45,maxYawAngle:175,rotationSpeedCorrection:10,degreeToPixelCorrection:5,speedFadeTime:2e3,speedFadeThreshold:50},useVolumeMultiplier:!1,ignoreAudioRendererError:!1,useEnableSubtitlesParam:!1,useOldMSEDetection:!1,useHlsLiveNewTextManager:!1,exposeInternalsToGlobal:!1,hlsLiveNewTextManagerDownloadThreshold:4e3,disableYandexPiP:!1,asyncResolveClientChecker:!1,autostartOnlyIfVisible:!1},mx=s=>({...VV(s,fx),configName:[...s.configName??[],...fx.configName]});import{assertNonNullable as xu,combine as li,ErrorCategory as Eu,filter as U,filterChanged as Y,fromEvent as yp,isNonNullable as vx,isNullable as HV,Logger as jV,map as Q,mapTo as yx,merge as Pi,now as Pu,once as j,Subject as J,Subscription as Tx,tap as Tp,ValueSubject as M,isHigher as zV,isInvariantQuality as Ix,flattenObject as wi,throttle as Ip,getTraceSubscriptionMethod as xx,Tracer as GV,InternalsExposure as QV}from"@vkontakte/videoplayer-shared";import{merge as OV,map as _V,filter as bx,isNonNullable as FV}from"@vkontakte/videoplayer-shared";var vp=({seekState:s,position$:e})=>OV(s.stateChangeEnded$.pipe(_V(({to:t})=>t.state==="none"?void 0:(t.position??NaN)/1e3),bx(FV)),e.pipe(bx(()=>s.getState().state==="none")));import{assertNonNullable as NV}from"@vkontakte/videoplayer-shared";var gx=s=>{let e=typeof s.container=="string"?document.getElementById(s.container):s.container;return NV(e,`Wrong container or containerId {${s.container}}`),e};import{filter as UV,once as qV}from"@vkontakte/videoplayer-shared";var Sx=(s,e,t,i)=>{s!==void 0&&e.getState()===void 0&&e.getPrevState()===void 0&&t?.getValue().length===0?t.pipe(UV(r=>r.length>0),qV()).subscribe(r=>{r.find(i)&&e.startTransitionTo(s)}):(s===void 0||t?.getValue().find(i))&&e.startTransitionTo(s)};var wu=class{constructor(e={configName:[]},t=GV.createRootTracer(!1)){this.subscription=new Tx;this.logger=new jV;this.abrLogger=this.logger.createComponentLog("ABR");this.internalsExposure=null;this.isPlaybackStarted=!1;this.hasLiveOffsetByPaused=new M(!1);this.hasLiveOffsetByPausedTimer=0;this.playerInitRequest=0;this.playerInited=new M(!1);this.wasSetStartedQuality=!1;this.desiredState={playbackState:new F("stopped"),seekState:new F({state:"none"}),volume:new F({volume:1,muted:!1}),videoTrack:new F(void 0),videoStream:new F(void 0),audioStream:new F(void 0),autoVideoTrackSwitching:new F(!0),autoVideoTrackLimits:new F({}),isLooped:new F(!1),isLowLatency:new F(!1),playbackRate:new F(1),externalTextTracks:new F([]),internalTextTracks:new F([]),currentTextTrack:new F(void 0),textTrackCuesSettings:new F({}),cameraOrientation:new F({x:0,y:0})};this.info={playbackState$:new M(void 0),position$:new M(0),duration$:new M(1/0),muted$:new M(!1),volume$:new M(1),availableVideoStreams$:new M([]),currentVideoStream$:new M(void 0),availableQualities$:new M([]),availableQualitiesFps$:new M({}),currentQuality$:new M(void 0),isAutoQualityEnabled$:new M(!0),autoQualityLimitingAvailable$:new M(!1),autoQualityLimits$:new M({}),predefinedQualityLimitType$:new M("unknown"),availableAudioStreams$:new M([]),currentAudioStream$:new M(void 0),availableAudioTracks$:new M([]),isAudioAvailable$:new M(!0),currentPlaybackRate$:new M(1),currentBuffer$:new M({start:0,end:0}),isBuffering$:new M(!0),isStalled$:new M(!1),isEnded$:new M(!1),isLooped$:new M(!1),isLive$:new M(void 0),isLiveEnded$:new M(null),canChangePlaybackSpeed$:new M(void 0),atLiveEdge$:new M(void 0),atLiveDurationEdge$:new M(void 0),liveTime$:new M(void 0),liveBufferTime$:new M(void 0),liveLatency$:new M(void 0),currentFormat$:new M(void 0),availableTextTracks$:new M([]),currentTextTrack$:new M(void 0),throughputEstimation$:new M(void 0),rttEstimation$:new M(void 0),videoBitrate$:new M(void 0),hostname$:new M(void 0),httpConnectionType$:new M(void 0),httpConnectionReused$:new M(void 0),surface$:new M("none"),chromecastState$:new M("NOT_AVAILABLE"),chromecastDeviceName$:new M(void 0),intrinsicVideoSize$:new M(void 0),availableSources$:new M(void 0),is3DVideo$:new M(!1),currentVideoSegmentLength$:new M(0),currentAudioSegmentLength$:new M(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 M(void 0),tuningConfigName$:new M([]),enableDebugTelemetry$:new M(!1),dumpTelemetry:sv,getCurrentTime$:new M(null)};if(this.initLogs(),this.tuning=mx(e),this.tracer=t,this.experimental.tuningConfigName$.next(this.tuning.configName),this.chromecastInitializer=new wn({receiverApplicationId:e.chromecastReceiverId,isDisabled:e.disableChromecast,dependencies:{logger:this.logger}}),this.throughputEstimator=new hx(this.tuning.throughputEstimator),e.exposeInternalsToGlobal&&(this.internalsExposure=new QV("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,Ex.default)(["number","string","boolean"],b)?f:f===null?null:`<${b}>`})),c=`Player.${String(r)}`,p=`Exception calling ${c} (${l.join(", ")})`;throw this.events.fatalError$.next({id:c,category:Eu.WTF,message:p,thrown:u}),u}}}})}initVideo(e){this.config=e,this.internalsExposure?.expose({config:e,logger:this.logger,tuning:this.tuning}),this.setMuted(this.tuning.isAudioDisabled);let t=()=>{let{container:a,...n}=e;this.tracer.log("initVideo",wi(n)),this.domContainer=gx(e),this.chromecastInitializer.contentId=e.meta?.videoId,this.providerContainer=new gn({sources:e.sources,meta:e.meta??{},failoverHosts:e.failoverHosts??[],container:this.domContainer,desiredState:this.desiredState,dependencies:{throughputEstimator:this.throughputEstimator,chromecastInitializer:this.chromecastInitializer,tracer:this.tracer,logger:this.logger,abrLogger:this.abrLogger},tuning:this.tuning,volumeMultiplier:e.volumeMultiplier,panelSize:e.panelSize}),this.initProviderContainerSubscription(this.providerContainer),this.initStartingVideoTrack(this.providerContainer),this.initTracerSubscription(),this.providerContainer.init(),this.setLiveLowLatency(this.tuning.dashCmafLive.lowLatency.isActiveOnDefault),this.initDebugTelemetry(),this.initWakeLock(),this.playerInited.next(!0)},i=()=>{this.tuning.autostartOnlyIfVisible&&window.requestAnimationFrame?this.playerInitRequest=window.requestAnimationFrame(()=>t()):t()},r=()=>{this.tuning.asyncResolveClientChecker?_.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"),yp(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(()=>{xu(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",wi(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(()=>{xu(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",wi(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(()=>{Sx(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(HV(e))return this.info.position$.getValue();let t=this.desiredState.seekState.getState(),i=t.state==="none"?void 0:t.position;return vx(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(Pi(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(Vc(e,t,i))})),this.subscription.add(this.desiredState.playbackState.stateChangeStarted$.pipe(U(({from:e})=>e==="stopped"),j()).subscribe(()=>{this.initedAt=Pu(),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",wi(n)),n.state==="requested"?this.desiredState.seekState.setState({...n,state:"applying"}):this.events.managedError$.next({id:`WillSeekIn${n.state}`,category:Eu.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",wi(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(li({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)=>Ix(u)?1:Ix(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=>vx(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(Tp(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(li({hasLiveOffsetByPaused:Pi(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(li({atLiveEdge:li({isLive:e.providerOutput.isLive$,isLowLatency:e.providerOutput.isLowLatency$,position:vp({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(),Tp(n=>n&&this.setPlaybackRate(1))),hasPausedTimeoutCase:this.hasLiveOffsetByPaused}).pipe(Q(({atLiveEdge:n,hasPausedTimeoutCase:o})=>n&&!o)).subscribe(this.info.atLiveEdge$)).add(li({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(),Tp(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(vp({seekState:this.desiredState.seekState,position$:e.providerOutput.position$}).subscribe(this.info.position$)).add(Pi(e.providerOutput.endedEvent$.pipe(yx(!0)),e.providerOutput.seekedEvent$.pipe(yx(!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:Eu.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??Pu()-this.initedAt)).subscribe(this.events.firstBytes$)).add(e.providerOutput.loadedMetadataEvent$.subscribe(this.events.loadedMetadata$)).add(e.providerOutput.firstFrameEvent$.pipe(j(),Q(()=>Pu()-this.initedAt)).subscribe(this.events.firstFrame$)).add(e.providerOutput.canplay$.pipe(j(),Q(()=>Pu()-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 M(!1);this.subscription.add(e.providerOutput.seekedEvent$.subscribe(()=>t.next(!1))).add(e.providerOutput.willSeekEvent$.subscribe(()=>t.next(!0)));let i=new M(!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=Pi(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(Pi(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(Pi(e.providerOutput.inPiP$,e.providerOutput.inFullscreen$,e.providerOutput.element$,e.providerOutput.elementVisible$,this.chromecastInitializer.castState$).subscribe(()=>{let n=e.providerOutput.inPiP$.getValue(),o=e.providerOutput.inFullscreen$.getValue(),u=e.providerOutput.element$.getValue(),l=e.providerOutput.elementVisible$.getValue(),c=this.chromecastInitializer.castState$.getValue(),p;c==="CONNECTED"?p="second_screen":u?l?n?p="pip":o?p="fullscreen":p="inline":p="invisible":p="none",this.info.surface$.getValue()!==p&&this.info.surface$.next(p)}))}initChromecastSubscription(){this.subscription.add(this.chromecastInitializer.castState$.subscribe(this.info.chromecastState$)),this.subscription.add(this.chromecastInitializer.connection$.pipe(Q(e=>e?.castDevice.friendlyName)).subscribe(this.info.chromecastDeviceName$)),this.subscription.add(this.chromecastInitializer.errorEvent$.subscribe(this.events.managedError$))}initStartingVideoTrack(e){let t=new Tx;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(Pi(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;xu(this.providerContainer),xu(e),rv(),this.experimental.enableDebugTelemetry$.next(this.tuning.enableTelemetryAtStart),[this.experimental.enableDebugTelemetry$.subscribe(t=>iv(t)),this.providerContainer.current$.subscribe(({type:t})=>As("provider",t)),e.duration$.subscribe(t=>As("duration",t)),e.availableVideoTracks$.pipe(U(t=>!!t.length),j()).subscribe(t=>As("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)),As("codecs",_.video.supportedCodecs)}initTracerSubscription(){let e=xx(this.tracer.log.bind(this.tracer)),t=xx(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(li({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(li({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(Ip(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(li({liveTime:this.info.liveTime$,liveBufferTime:this.info.liveBufferTime$,position:this.info.position$}).pipe(U(({liveTime:i,liveBufferTime:r})=>!!i&&!!r),Ip(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(li({throughputEstimation:this.info.throughputEstimation$,rtt:this.info.rttEstimation$}).pipe(U(({throughputEstimation:i,rtt:r})=>!!i&&!!r),Ip(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:Eu.DOM,message:String(r)})})};this.subscription.add(Pi(yp(document,"visibilitychange"),yp(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",wi({quality:t,availableTracks:wi(e),track:wi(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&&!Ds()}};import{Subscription as BZ,Observable as DZ,Subject as CZ,ValueSubject as VZ,VideoQuality as OZ}from"@vkontakte/videoplayer-shared";var _Z=`@vkontakte/videoplayer-core@${Ep}`;export{vn as ChromecastState,Mu as HttpConnectionType,DZ as Observable,Ke as PlaybackState,wu as Player,yn as PredefinedQualityLimits,_Z as SDK_VERSION,CZ as Subject,BZ as Subscription,$u as Surface,Ep as VERSION,VZ as ValueSubject,Yt as VideoFormat,OZ as VideoQuality,_ as clientChecker,Ps as isMobile};