@vkontakte/videoplayer-core 2.0.131-dev.abb2b2b1.0 → 2.0.131-dev.c93c80a1.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 (69) hide show
  1. package/es2015.cjs.js +91 -30
  2. package/es2015.esm.js +93 -32
  3. package/es2018.cjs.js +91 -30
  4. package/es2018.esm.js +93 -32
  5. package/es2024.cjs.js +98 -37
  6. package/es2024.esm.js +95 -34
  7. package/esnext.cjs.js +98 -37
  8. package/esnext.esm.js +95 -34
  9. package/evergreen.esm.js +92 -31
  10. package/package.json +2 -2
  11. package/types/providers/DashProvider/baseDashProvider.d.ts +1 -0
  12. package/types/providers/DashProvider/lib/buffer.d.ts +3 -0
  13. package/types/providers/DashProvider/lib/fetcher.d.ts +2 -1
  14. package/types/providers/DashProvider/lib/player.d.ts +1 -0
  15. package/types/providers/DashProvider/lib/sourceBufferBufferedDiff.d.ts +19 -0
  16. package/types/providers/DashProvider/lib/utils.d.ts +11 -0
  17. package/types/providers/DashProviderNew/baseDashProvider.d.ts +57 -0
  18. package/types/providers/DashProviderNew/consts.d.ts +3 -0
  19. package/types/providers/DashProviderNew/index.d.ts +2 -0
  20. package/types/providers/DashProviderNew/lib/ElementSizeManager.d.ts +19 -0
  21. package/types/providers/DashProviderNew/lib/LiveTextManager.d.ts +23 -0
  22. package/types/providers/DashProviderNew/lib/buffer.d.ts +117 -0
  23. package/types/providers/DashProviderNew/lib/fetcher.d.ts +59 -0
  24. package/types/providers/DashProviderNew/lib/parsers/ietf/index.d.ts +13 -0
  25. package/types/providers/DashProviderNew/lib/parsers/index.d.ts +3 -0
  26. package/types/providers/DashProviderNew/lib/parsers/mpd.d.ts +3 -0
  27. package/types/providers/DashProviderNew/lib/parsers/mpeg/BoxModel.d.ts +20 -0
  28. package/types/providers/DashProviderNew/lib/parsers/mpeg/BoxParser.d.ts +21 -0
  29. package/types/providers/DashProviderNew/lib/parsers/mpeg/BoxTypeEnum.d.ts +30 -0
  30. package/types/providers/DashProviderNew/lib/parsers/mpeg/box.d.ts +74 -0
  31. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/avc1.d.ts +8 -0
  32. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/equi.d.ts +21 -0
  33. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/ftyp.d.ts +17 -0
  34. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/index.d.ts +26 -0
  35. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/mdat.d.ts +15 -0
  36. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/mdia.d.ts +8 -0
  37. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/mfhd.d.ts +11 -0
  38. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/minf.d.ts +8 -0
  39. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/moof.d.ts +8 -0
  40. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/moov.d.ts +8 -0
  41. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/mvhd.d.ts +35 -0
  42. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/prhd.d.ts +16 -0
  43. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/proj.d.ts +8 -0
  44. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/sidx.d.ts +48 -0
  45. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/st3d.d.ts +23 -0
  46. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/stbl.d.ts +8 -0
  47. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/stsd.d.ts +11 -0
  48. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/sv3d.d.ts +8 -0
  49. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/tfdt.d.ts +17 -0
  50. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/tfhd.d.ts +22 -0
  51. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/tkhd.d.ts +42 -0
  52. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/traf.d.ts +8 -0
  53. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/trak.d.ts +8 -0
  54. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/trun.d.ts +31 -0
  55. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/unknown.d.ts +6 -0
  56. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/uuid.d.ts +11 -0
  57. package/types/providers/DashProviderNew/lib/parsers/mpeg/fullBox.d.ts +15 -0
  58. package/types/providers/DashProviderNew/lib/parsers/mpeg/isobmff.d.ts +12 -0
  59. package/types/providers/DashProviderNew/lib/parsers/webm/ebml.d.ts +76 -0
  60. package/types/providers/DashProviderNew/lib/parsers/webm/webm.d.ts +3 -0
  61. package/types/providers/DashProviderNew/lib/player.d.ts +92 -0
  62. package/types/providers/DashProviderNew/lib/sourceBufferTaskQueue.d.ts +19 -0
  63. package/types/providers/DashProviderNew/lib/types.d.ts +186 -0
  64. package/types/providers/DashProviderNew/lib/utils.d.ts +21 -0
  65. package/types/providers/DashProviderNew/newDashCmafLiveProvider.d.ts +8 -0
  66. package/types/providers/DashProviderNew/newDashProvider.d.ts +6 -0
  67. package/types/utils/autoSelectTrack.d.ts +6 -3
  68. package/types/utils/qualityLimits.d.ts +3 -18
  69. package/types/utils/tuningConfig.d.ts +3 -0
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.c93c80a1.0
3
+ * Mon, 05 May 2025 09:33:28 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 Ax=Object.create;var Ep=Object.defineProperty;var Rx=Object.getOwnPropertyDescriptor;var Lx=Object.getOwnPropertyNames;var Mx=Object.getPrototypeOf,$x=Object.prototype.hasOwnProperty;var m=(s,e)=>()=>(e||s((e={exports:{}}).exports,e),e.exports);var Bx=(s,e,t,i)=>{if(e&&typeof e=="object"||typeof e=="function")for(let r of Lx(e))!$x.call(s,r)&&r!==t&&Ep(s,r,{get:()=>e[r],enumerable:!(i=Rx(e,r))||i.enumerable});return s};var C=(s,e,t)=>(t=s!=null?Ax(Mx(s)):{},Bx(e||!s||!s.__esModule?Ep(t,"default",{value:s,enumerable:!0}):t,s));var ye=m((Du,Pp)=>{"use strict";var Zr=function(s){return s&&s.Math===Math&&s};Pp.exports=Zr(typeof globalThis=="object"&&globalThis)||Zr(typeof window=="object"&&window)||Zr(typeof self=="object"&&self)||Zr(typeof global=="object"&&global)||Zr(typeof Du=="object"&&Du)||function(){return this}()||Function("return this")()});var $e=m((rO,kp)=>{"use strict";kp.exports=function(s){try{return!!s()}catch{return!0}}});var es=m((sO,Ap)=>{"use strict";var Dx=$e();Ap.exports=!Dx(function(){var s=function(){}.bind();return typeof s!="function"||s.hasOwnProperty("prototype")})});var Cu=m((aO,$p)=>{"use strict";var Cx=es(),Mp=Function.prototype,Rp=Mp.apply,Lp=Mp.call;$p.exports=typeof Reflect=="object"&&Reflect.apply||(Cx?Lp.bind(Rp):function(){return Lp.apply(Rp,arguments)})});var Re=m((nO,Cp)=>{"use strict";var Bp=es(),Dp=Function.prototype,Vu=Dp.call,Vx=Bp&&Dp.bind.bind(Vu,Vu);Cp.exports=Bp?Vx:function(s){return function(){return Vu.apply(s,arguments)}}});var ki=m((oO,Op)=>{"use strict";var Vp=Re(),Ox=Vp({}.toString),_x=Vp("".slice);Op.exports=function(s){return _x(Ox(s),8,-1)}});var Ou=m((uO,_p)=>{"use strict";var Nx=ki(),Fx=Re();_p.exports=function(s){if(Nx(s)==="Function")return Fx(s)}});var be=m((lO,Np)=>{"use strict";var _u=typeof document=="object"&&document.all;Np.exports=typeof _u>"u"&&_u!==void 0?function(s){return typeof s=="function"||s===_u}:function(s){return typeof s=="function"}});var dt=m((cO,Fp)=>{"use strict";var Ux=$e();Fp.exports=!Ux(function(){return Object.defineProperty({},1,{get:function(){return 7}})[1]!==7})});var pt=m((dO,Up)=>{"use strict";var qx=es(),xn=Function.prototype.call;Up.exports=qx?xn.bind(xn):function(){return xn.apply(xn,arguments)}});var Nu=m(jp=>{"use strict";var qp={}.propertyIsEnumerable,Hp=Object.getOwnPropertyDescriptor,Hx=Hp&&!qp.call({1:2},1);jp.f=Hx?function(e){var t=Hp(this,e);return!!t&&t.enumerable}:qp});var ts=m((hO,Gp)=>{"use strict";Gp.exports=function(s,e){return{enumerable:!(s&1),configurable:!(s&2),writable:!(s&4),value:e}}});var Qp=m((fO,zp)=>{"use strict";var jx=Re(),Gx=$e(),zx=ki(),Fu=Object,Qx=jx("".split);zp.exports=Gx(function(){return!Fu("z").propertyIsEnumerable(0)})?function(s){return zx(s)==="String"?Qx(s,""):Fu(s)}:Fu});var ir=m((mO,Wp)=>{"use strict";Wp.exports=function(s){return s==null}});var ui=m((bO,Yp)=>{"use strict";var Wx=ir(),Yx=TypeError;Yp.exports=function(s){if(Wx(s))throw new Yx("Can't call method on "+s);return s}});var Ai=m((gO,Kp)=>{"use strict";var Kx=Qp(),Xx=ui();Kp.exports=function(s){return Kx(Xx(s))}});var ht=m((SO,Xp)=>{"use strict";var Jx=be();Xp.exports=function(s){return typeof s=="object"?s!==null:Jx(s)}});var rr=m((vO,Jp)=>{"use strict";Jp.exports={}});var Xt=m((yO,eh)=>{"use strict";var Uu=rr(),qu=ye(),Zx=be(),Zp=function(s){return Zx(s)?s:void 0};eh.exports=function(s,e){return arguments.length<2?Zp(Uu[s])||Zp(qu[s]):Uu[s]&&Uu[s][e]||qu[s]&&qu[s][e]}});var is=m((TO,th)=>{"use strict";var eE=Re();th.exports=eE({}.isPrototypeOf)});var Ri=m((IO,sh)=>{"use strict";var tE=ye(),ih=tE.navigator,rh=ih&&ih.userAgent;sh.exports=rh?String(rh):""});var ju=m((xO,ch)=>{"use strict";var lh=ye(),Hu=Ri(),ah=lh.process,nh=lh.Deno,oh=ah&&ah.versions||nh&&nh.version,uh=oh&&oh.v8,Et,En;uh&&(Et=uh.split("."),En=Et[0]>0&&Et[0]<4?1:+(Et[0]+Et[1]));!En&&Hu&&(Et=Hu.match(/Edge\/(\d+)/),(!Et||Et[1]>=74)&&(Et=Hu.match(/Chrome\/(\d+)/),Et&&(En=+Et[1])));ch.exports=En});var Gu=m((EO,ph)=>{"use strict";var dh=ju(),iE=$e(),rE=ye(),sE=rE.String;ph.exports=!!Object.getOwnPropertySymbols&&!iE(function(){var s=Symbol("symbol detection");return!sE(s)||!(Object(s)instanceof Symbol)||!Symbol.sham&&dh&&dh<41})});var zu=m((wO,hh)=>{"use strict";var aE=Gu();hh.exports=aE&&!Symbol.sham&&typeof Symbol.iterator=="symbol"});var Qu=m((PO,fh)=>{"use strict";var nE=Xt(),oE=be(),uE=is(),lE=zu(),cE=Object;fh.exports=lE?function(s){return typeof s=="symbol"}:function(s){var e=nE("Symbol");return oE(e)&&uE(e.prototype,cE(s))}});var rs=m((kO,mh)=>{"use strict";var dE=String;mh.exports=function(s){try{return dE(s)}catch{return"Object"}}});var $t=m((AO,bh)=>{"use strict";var pE=be(),hE=rs(),fE=TypeError;bh.exports=function(s){if(pE(s))return s;throw new fE(hE(s)+" is not a function")}});var ss=m((RO,gh)=>{"use strict";var mE=$t(),bE=ir();gh.exports=function(s,e){var t=s[e];return bE(t)?void 0:mE(t)}});var vh=m((LO,Sh)=>{"use strict";var Wu=pt(),Yu=be(),Ku=ht(),gE=TypeError;Sh.exports=function(s,e){var t,i;if(e==="string"&&Yu(t=s.toString)&&!Ku(i=Wu(t,s))||Yu(t=s.valueOf)&&!Ku(i=Wu(t,s))||e!=="string"&&Yu(t=s.toString)&&!Ku(i=Wu(t,s)))return i;throw new gE("Can't convert object to primitive value")}});var wt=m((MO,yh)=>{"use strict";yh.exports=!0});var xh=m(($O,Ih)=>{"use strict";var Th=ye(),SE=Object.defineProperty;Ih.exports=function(s,e){try{SE(Th,s,{value:e,configurable:!0,writable:!0})}catch{Th[s]=e}return e}});var as=m((BO,Ph)=>{"use strict";var vE=wt(),yE=ye(),TE=xh(),Eh="__core-js_shared__",wh=Ph.exports=yE[Eh]||TE(Eh,{});(wh.versions||(wh.versions=[])).push({version:"3.38.0",mode:vE?"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 Xu=m((DO,Ah)=>{"use strict";var kh=as();Ah.exports=function(s,e){return kh[s]||(kh[s]=e||{})}});var sr=m((CO,Rh)=>{"use strict";var IE=ui(),xE=Object;Rh.exports=function(s){return xE(IE(s))}});var Pt=m((VO,Lh)=>{"use strict";var EE=Re(),wE=sr(),PE=EE({}.hasOwnProperty);Lh.exports=Object.hasOwn||function(e,t){return PE(wE(e),t)}});var Ju=m((OO,Mh)=>{"use strict";var kE=Re(),AE=0,RE=Math.random(),LE=kE(1 .toString);Mh.exports=function(s){return"Symbol("+(s===void 0?"":s)+")_"+LE(++AE+RE,36)}});var Be=m((_O,Bh)=>{"use strict";var ME=ye(),$E=Xu(),$h=Pt(),BE=Ju(),DE=Gu(),CE=zu(),ar=ME.Symbol,Zu=$E("wks"),VE=CE?ar.for||ar:ar&&ar.withoutSetter||BE;Bh.exports=function(s){return $h(Zu,s)||(Zu[s]=DE&&$h(ar,s)?ar[s]:VE("Symbol."+s)),Zu[s]}});var Oh=m((NO,Vh)=>{"use strict";var OE=pt(),Dh=ht(),Ch=Qu(),_E=ss(),NE=vh(),FE=Be(),UE=TypeError,qE=FE("toPrimitive");Vh.exports=function(s,e){if(!Dh(s)||Ch(s))return s;var t=_E(s,qE),i;if(t){if(e===void 0&&(e="default"),i=OE(t,s,e),!Dh(i)||Ch(i))return i;throw new UE("Can't convert object to primitive value")}return e===void 0&&(e="number"),NE(s,e)}});var el=m((FO,_h)=>{"use strict";var HE=Oh(),jE=Qu();_h.exports=function(s){var e=HE(s,"string");return jE(e)?e:e+""}});var wn=m((UO,Fh)=>{"use strict";var GE=ye(),Nh=ht(),tl=GE.document,zE=Nh(tl)&&Nh(tl.createElement);Fh.exports=function(s){return zE?tl.createElement(s):{}}});var il=m((qO,Uh)=>{"use strict";var QE=dt(),WE=$e(),YE=wn();Uh.exports=!QE&&!WE(function(){return Object.defineProperty(YE("div"),"a",{get:function(){return 7}}).a!==7})});var jh=m(Hh=>{"use strict";var KE=dt(),XE=pt(),JE=Nu(),ZE=ts(),ew=Ai(),tw=el(),iw=Pt(),rw=il(),qh=Object.getOwnPropertyDescriptor;Hh.f=KE?qh:function(e,t){if(e=ew(e),t=tw(t),rw)try{return qh(e,t)}catch{}if(iw(e,t))return ZE(!XE(JE.f,e,t),e[t])}});var rl=m((jO,Gh)=>{"use strict";var sw=$e(),aw=be(),nw=/#|\.prototype\./,ns=function(s,e){var t=uw[ow(s)];return t===cw?!0:t===lw?!1:aw(e)?sw(e):!!e},ow=ns.normalize=function(s){return String(s).replace(nw,".").toLowerCase()},uw=ns.data={},lw=ns.NATIVE="N",cw=ns.POLYFILL="P";Gh.exports=ns});var nr=m((GO,Qh)=>{"use strict";var zh=Ou(),dw=$t(),pw=es(),hw=zh(zh.bind);Qh.exports=function(s,e){return dw(s),e===void 0?s:pw?hw(s,e):function(){return s.apply(e,arguments)}}});var sl=m((zO,Wh)=>{"use strict";var fw=dt(),mw=$e();Wh.exports=fw&&mw(function(){return Object.defineProperty(function(){},"prototype",{value:42,writable:!1}).prototype!==42})});var Bt=m((QO,Yh)=>{"use strict";var bw=ht(),gw=String,Sw=TypeError;Yh.exports=function(s){if(bw(s))return s;throw new Sw(gw(s)+" is not an object")}});var Li=m(Xh=>{"use strict";var vw=dt(),yw=il(),Tw=sl(),Pn=Bt(),Kh=el(),Iw=TypeError,al=Object.defineProperty,xw=Object.getOwnPropertyDescriptor,nl="enumerable",ol="configurable",ul="writable";Xh.f=vw?Tw?function(e,t,i){if(Pn(e),t=Kh(t),Pn(i),typeof e=="function"&&t==="prototype"&&"value"in i&&ul in i&&!i[ul]){var r=xw(e,t);r&&r[ul]&&(e[t]=i.value,i={configurable:ol in i?i[ol]:r[ol],enumerable:nl in i?i[nl]:r[nl],writable:!1})}return al(e,t,i)}:al:function(e,t,i){if(Pn(e),t=Kh(t),Pn(i),yw)try{return al(e,t,i)}catch{}if("get"in i||"set"in i)throw new Iw("Accessors not supported");return"value"in i&&(e[t]=i.value),e}});var or=m((YO,Jh)=>{"use strict";var Ew=dt(),ww=Li(),Pw=ts();Jh.exports=Ew?function(s,e,t){return ww.f(s,e,Pw(1,t))}:function(s,e,t){return s[e]=t,s}});var xe=m((KO,ef)=>{"use strict";var os=ye(),kw=Cu(),Aw=Ou(),Rw=be(),Lw=jh().f,Mw=rl(),ur=rr(),$w=nr(),lr=or(),Zh=Pt();as();var Bw=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 kw(s,this,arguments)};return e.prototype=s.prototype,e};ef.exports=function(s,e){var t=s.target,i=s.global,r=s.stat,a=s.proto,n=i?os:r?os[t]:os[t]&&os[t].prototype,o=i?ur:ur[t]||lr(ur,t,{})[t],u=o.prototype,l,p,c,d,h,f,b,g,S;for(d in e)l=Mw(i?d:t+(r?".":"#")+d,s.forced),p=!l&&n&&Zh(n,d),f=o[d],p&&(s.dontCallGetSet?(S=Lw(n,d),b=S&&S.value):b=n[d]),h=p&&b?b:e[d],!(!l&&!a&&typeof f==typeof h)&&(s.bind&&p?g=$w(h,os):s.wrap&&p?g=Bw(h):a&&Rw(h)?g=Aw(h):g=h,(s.sham||h&&h.sham||f&&f.sham)&&lr(g,"sham",!0),lr(o,d,g),a&&(c=t+"Prototype",Zh(ur,c)||lr(ur,c,{}),lr(ur[c],d,h),s.real&&u&&(l||!u[d])&&lr(u,d,h)))}});var rf=m((XO,tf)=>{"use strict";var Dw=Math.ceil,Cw=Math.floor;tf.exports=Math.trunc||function(e){var t=+e;return(t>0?Cw:Dw)(t)}});var us=m((JO,sf)=>{"use strict";var Vw=rf();sf.exports=function(s){var e=+s;return e!==e||e===0?0:Vw(e)}});var nf=m((ZO,af)=>{"use strict";var Ow=us(),_w=Math.max,Nw=Math.min;af.exports=function(s,e){var t=Ow(s);return t<0?_w(t+e,0):Nw(t,e)}});var ll=m((e_,of)=>{"use strict";var Fw=us(),Uw=Math.min;of.exports=function(s){var e=Fw(s);return e>0?Uw(e,9007199254740991):0}});var cr=m((t_,uf)=>{"use strict";var qw=ll();uf.exports=function(s){return qw(s.length)}});var cl=m((i_,cf)=>{"use strict";var Hw=Ai(),jw=nf(),Gw=cr(),lf=function(s){return function(e,t,i){var r=Hw(e),a=Gw(r);if(a===0)return!s&&-1;var n=jw(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}};cf.exports={includes:lf(!0),indexOf:lf(!1)}});var ls=m((r_,df)=>{"use strict";df.exports=function(){}});var pf=m(()=>{"use strict";var zw=xe(),Qw=cl().includes,Ww=$e(),Yw=ls(),Kw=Ww(function(){return!Array(1).includes()});zw({target:"Array",proto:!0,forced:Kw},{includes:function(e){return Qw(this,e,arguments.length>1?arguments[1]:void 0)}});Yw("includes")});var li=m((n_,hf)=>{"use strict";var Xw=Xt();hf.exports=Xw});var mf=m((o_,ff)=>{"use strict";pf();var Jw=li();ff.exports=Jw("Array","includes")});var gf=m((u_,bf)=>{"use strict";var Zw=mf();bf.exports=Zw});var gt=m((l_,Sf)=>{"use strict";var eP=gf();Sf.exports=eP});var Rn=m((T_,Pf)=>{"use strict";var uP=Xu(),lP=Ju(),wf=uP("keys");Pf.exports=function(s){return wf[s]||(wf[s]=lP(s))}});var Af=m((I_,kf)=>{"use strict";var cP=$e();kf.exports=!cP(function(){function s(){}return s.prototype.constructor=null,Object.getPrototypeOf(new s)!==s.prototype})});var Ln=m((x_,Lf)=>{"use strict";var dP=Pt(),pP=be(),hP=sr(),fP=Rn(),mP=Af(),Rf=fP("IE_PROTO"),hl=Object,bP=hl.prototype;Lf.exports=mP?hl.getPrototypeOf:function(s){var e=hP(s);if(dP(e,Rf))return e[Rf];var t=e.constructor;return pP(t)&&e instanceof t?t.prototype:e instanceof hl?bP:null}});var Mn=m((E_,Mf)=>{"use strict";Mf.exports={}});var Df=m((w_,Bf)=>{"use strict";var gP=Re(),fl=Pt(),SP=Ai(),vP=cl().indexOf,yP=Mn(),$f=gP([].push);Bf.exports=function(s,e){var t=SP(s),i=0,r=[],a;for(a in t)!fl(yP,a)&&fl(t,a)&&$f(r,a);for(;e.length>i;)fl(t,a=e[i++])&&(~vP(r,a)||$f(r,a));return r}});var ml=m((P_,Cf)=>{"use strict";Cf.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]});var bl=m((k_,Vf)=>{"use strict";var TP=Df(),IP=ml();Vf.exports=Object.keys||function(e){return TP(e,IP)}});var gl=m((A_,Uf)=>{"use strict";var _f=dt(),xP=$e(),Nf=Re(),EP=Ln(),wP=bl(),PP=Ai(),kP=Nu().f,Ff=Nf(kP),AP=Nf([].push),RP=_f&&xP(function(){var s=Object.create(null);return s[2]=2,!Ff(s,2)}),Of=function(s){return function(e){for(var t=PP(e),i=wP(t),r=RP&&EP(t)===null,a=i.length,n=0,o=[],u;a>n;)u=i[n++],(!_f||(r?u in t:Ff(t,u)))&&AP(o,s?[u,t[u]]:t[u]);return o}};Uf.exports={entries:Of(!0),values:Of(!1)}});var qf=m(()=>{"use strict";var LP=xe(),MP=gl().entries;LP({target:"Object",stat:!0},{entries:function(e){return MP(e)}})});var jf=m((M_,Hf)=>{"use strict";qf();var $P=rr();Hf.exports=$P.Object.entries});var zf=m(($_,Gf)=>{"use strict";var BP=jf();Gf.exports=BP});var Mi=m((B_,Qf)=>{"use strict";var DP=zf();Qf.exports=DP});var $i=m((D_,Wf)=>{"use strict";Wf.exports={}});var Xf=m((C_,Kf)=>{"use strict";var CP=ye(),VP=be(),Yf=CP.WeakMap;Kf.exports=VP(Yf)&&/native code/.test(String(Yf))});var Tl=m((V_,em)=>{"use strict";var OP=Xf(),Zf=ye(),_P=ht(),NP=or(),Sl=Pt(),vl=as(),FP=Rn(),UP=Mn(),Jf="Object already initialized",yl=Zf.TypeError,qP=Zf.WeakMap,$n,cs,Bn,HP=function(s){return Bn(s)?cs(s):$n(s,{})},jP=function(s){return function(e){var t;if(!_P(e)||(t=cs(e)).type!==s)throw new yl("Incompatible receiver, "+s+" required");return t}};OP||vl.state?(kt=vl.state||(vl.state=new qP),kt.get=kt.get,kt.has=kt.has,kt.set=kt.set,$n=function(s,e){if(kt.has(s))throw new yl(Jf);return e.facade=s,kt.set(s,e),e},cs=function(s){return kt.get(s)||{}},Bn=function(s){return kt.has(s)}):(Bi=FP("state"),UP[Bi]=!0,$n=function(s,e){if(Sl(s,Bi))throw new yl(Jf);return e.facade=s,NP(s,Bi,e),e},cs=function(s){return Sl(s,Bi)?s[Bi]:{}},Bn=function(s){return Sl(s,Bi)});var kt,Bi;em.exports={set:$n,get:cs,has:Bn,enforce:HP,getterFor:jP}});var El=m((O_,im)=>{"use strict";var Il=dt(),GP=Pt(),tm=Function.prototype,zP=Il&&Object.getOwnPropertyDescriptor,xl=GP(tm,"name"),QP=xl&&function(){}.name==="something",WP=xl&&(!Il||Il&&zP(tm,"name").configurable);im.exports={EXISTS:xl,PROPER:QP,CONFIGURABLE:WP}});var sm=m(rm=>{"use strict";var YP=dt(),KP=sl(),XP=Li(),JP=Bt(),ZP=Ai(),ek=bl();rm.f=YP&&!KP?Object.defineProperties:function(e,t){JP(e);for(var i=ZP(t),r=ek(t),a=r.length,n=0,o;a>n;)XP.f(e,o=r[n++],i[o]);return e}});var wl=m((N_,am)=>{"use strict";var tk=Xt();am.exports=tk("document","documentElement")});var Rl=m((F_,pm)=>{"use strict";var ik=Bt(),rk=sm(),nm=ml(),sk=Mn(),ak=wl(),nk=wn(),ok=Rn(),om=">",um="<",kl="prototype",Al="script",cm=ok("IE_PROTO"),Pl=function(){},dm=function(s){return um+Al+om+s+um+"/"+Al+om},lm=function(s){s.write(dm("")),s.close();var e=s.parentWindow.Object;return s=null,e},uk=function(){var s=nk("iframe"),e="java"+Al+":",t;return s.style.display="none",ak.appendChild(s),s.src=String(e),t=s.contentWindow.document,t.open(),t.write(dm("document.F=Object")),t.close(),t.F},Dn,Cn=function(){try{Dn=new ActiveXObject("htmlfile")}catch{}Cn=typeof document<"u"?document.domain&&Dn?lm(Dn):uk():lm(Dn);for(var s=nm.length;s--;)delete Cn[kl][nm[s]];return Cn()};sk[cm]=!0;pm.exports=Object.create||function(e,t){var i;return e!==null?(Pl[kl]=ik(e),i=new Pl,Pl[kl]=null,i[cm]=e):i=Cn(),t===void 0?i:rk.f(i,t)}});var dr=m((U_,hm)=>{"use strict";var lk=or();hm.exports=function(s,e,t,i){return i&&i.enumerable?s[e]=t:lk(s,e,t),s}});var Bl=m((q_,bm)=>{"use strict";var ck=$e(),dk=be(),pk=ht(),hk=Rl(),fm=Ln(),fk=dr(),mk=Be(),bk=wt(),$l=mk("iterator"),mm=!1,Jt,Ll,Ml;[].keys&&(Ml=[].keys(),"next"in Ml?(Ll=fm(fm(Ml)),Ll!==Object.prototype&&(Jt=Ll)):mm=!0);var gk=!pk(Jt)||ck(function(){var s={};return Jt[$l].call(s)!==s});gk?Jt={}:bk&&(Jt=hk(Jt));dk(Jt[$l])||fk(Jt,$l,function(){return this});bm.exports={IteratorPrototype:Jt,BUGGY_SAFARI_ITERATORS:mm}});var Vn=m((H_,Sm)=>{"use strict";var Sk=Be(),vk=Sk("toStringTag"),gm={};gm[vk]="z";Sm.exports=String(gm)==="[object z]"});var ds=m((j_,vm)=>{"use strict";var yk=Vn(),Tk=be(),On=ki(),Ik=Be(),xk=Ik("toStringTag"),Ek=Object,wk=On(function(){return arguments}())==="Arguments",Pk=function(s,e){try{return s[e]}catch{}};vm.exports=yk?On:function(s){var e,t,i;return s===void 0?"Undefined":s===null?"Null":typeof(t=Pk(e=Ek(s),xk))=="string"?t:wk?On(e):(i=On(e))==="Object"&&Tk(e.callee)?"Arguments":i}});var Tm=m((G_,ym)=>{"use strict";var kk=Vn(),Ak=ds();ym.exports=kk?{}.toString:function(){return"[object "+Ak(this)+"]"}});var ps=m((z_,xm)=>{"use strict";var Rk=Vn(),Lk=Li().f,Mk=or(),$k=Pt(),Bk=Tm(),Dk=Be(),Im=Dk("toStringTag");xm.exports=function(s,e,t,i){var r=t?s:s&&s.prototype;r&&($k(r,Im)||Lk(r,Im,{configurable:!0,value:e}),i&&!Rk&&Mk(r,"toString",Bk))}});var wm=m((Q_,Em)=>{"use strict";var Ck=Bl().IteratorPrototype,Vk=Rl(),Ok=ts(),_k=ps(),Nk=$i(),Fk=function(){return this};Em.exports=function(s,e,t,i){var r=e+" Iterator";return s.prototype=Vk(Ck,{next:Ok(+!i,t)}),_k(s,r,!1,!0),Nk[r]=Fk,s}});var km=m((W_,Pm)=>{"use strict";var Uk=Re(),qk=$t();Pm.exports=function(s,e,t){try{return Uk(qk(Object.getOwnPropertyDescriptor(s,e)[t]))}catch{}}});var Rm=m((Y_,Am)=>{"use strict";var Hk=ht();Am.exports=function(s){return Hk(s)||s===null}});var Mm=m((K_,Lm)=>{"use strict";var jk=Rm(),Gk=String,zk=TypeError;Lm.exports=function(s){if(jk(s))return s;throw new zk("Can't set "+Gk(s)+" as a prototype")}});var Dl=m((X_,$m)=>{"use strict";var Qk=km(),Wk=ht(),Yk=ui(),Kk=Mm();$m.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var s=!1,e={},t;try{t=Qk(Object.prototype,"__proto__","set"),t(e,[]),s=e instanceof Array}catch{}return function(r,a){return Yk(r),Kk(a),Wk(r)&&(s?t(r,a):r.__proto__=a),r}}():void 0)});var Hm=m((J_,qm)=>{"use strict";var Xk=xe(),Jk=pt(),_n=wt(),Fm=El(),Zk=be(),eA=wm(),Bm=Ln(),Dm=Dl(),tA=ps(),iA=or(),Cl=dr(),rA=Be(),Cm=$i(),Um=Bl(),sA=Fm.PROPER,aA=Fm.CONFIGURABLE,Vm=Um.IteratorPrototype,Nn=Um.BUGGY_SAFARI_ITERATORS,hs=rA("iterator"),Om="keys",fs="values",_m="entries",Nm=function(){return this};qm.exports=function(s,e,t,i,r,a,n){eA(t,e,i);var o=function(S){if(S===r&&d)return d;if(!Nn&&S&&S in p)return p[S];switch(S){case Om:return function(){return new t(this,S)};case fs:return function(){return new t(this,S)};case _m:return function(){return new t(this,S)}}return function(){return new t(this)}},u=e+" Iterator",l=!1,p=s.prototype,c=p[hs]||p["@@iterator"]||r&&p[r],d=!Nn&&c||o(r),h=e==="Array"&&p.entries||c,f,b,g;if(h&&(f=Bm(h.call(new s)),f!==Object.prototype&&f.next&&(!_n&&Bm(f)!==Vm&&(Dm?Dm(f,Vm):Zk(f[hs])||Cl(f,hs,Nm)),tA(f,u,!0,!0),_n&&(Cm[u]=Nm))),sA&&r===fs&&c&&c.name!==fs&&(!_n&&aA?iA(p,"name",fs):(l=!0,d=function(){return Jk(c,this)})),r)if(b={values:o(fs),keys:a?d:o(Om),entries:o(_m)},n)for(g in b)(Nn||l||!(g in p))&&Cl(p,g,b[g]);else Xk({target:e,proto:!0,forced:Nn||l},b);return(!_n||n)&&p[hs]!==d&&Cl(p,hs,d,{name:r}),Cm[e]=d,b}});var Gm=m((Z_,jm)=>{"use strict";jm.exports=function(s,e){return{value:s,done:e}}});var Ol=m((eN,Km)=>{"use strict";var nA=Ai(),Vl=ls(),zm=$i(),Wm=Tl(),oA=Li().f,uA=Hm(),Fn=Gm(),lA=wt(),cA=dt(),Ym="Array Iterator",dA=Wm.set,pA=Wm.getterFor(Ym);Km.exports=uA(Array,"Array",function(s,e){dA(this,{type:Ym,target:nA(s),index:0,kind:e})},function(){var s=pA(this),e=s.target,t=s.index++;if(!e||t>=e.length)return s.target=void 0,Fn(void 0,!0);switch(s.kind){case"keys":return Fn(t,!1);case"values":return Fn(e[t],!1)}return Fn([t,e[t]],!1)},"values");var Qm=zm.Arguments=zm.Array;Vl("keys");Vl("values");Vl("entries");if(!lA&&cA&&Qm.name!=="values")try{oA(Qm,"name",{value:"values"})}catch{}});var Jm=m((tN,Xm)=>{"use strict";var hA=Be(),fA=$i(),mA=hA("iterator"),bA=Array.prototype;Xm.exports=function(s){return s!==void 0&&(fA.Array===s||bA[mA]===s)}});var _l=m((iN,eb)=>{"use strict";var gA=ds(),Zm=ss(),SA=ir(),vA=$i(),yA=Be(),TA=yA("iterator");eb.exports=function(s){if(!SA(s))return Zm(s,TA)||Zm(s,"@@iterator")||vA[gA(s)]}});var ib=m((rN,tb)=>{"use strict";var IA=pt(),xA=$t(),EA=Bt(),wA=rs(),PA=_l(),kA=TypeError;tb.exports=function(s,e){var t=arguments.length<2?PA(s):e;if(xA(t))return EA(IA(t,s));throw new kA(wA(s)+" is not iterable")}});var ab=m((sN,sb)=>{"use strict";var AA=pt(),rb=Bt(),RA=ss();sb.exports=function(s,e,t){var i,r;rb(s);try{if(i=RA(s,"return"),!i){if(e==="throw")throw t;return t}i=AA(i,s)}catch(a){r=!0,i=a}if(e==="throw")throw t;if(r)throw i;return rb(i),t}});var qn=m((aN,lb)=>{"use strict";var LA=nr(),MA=pt(),$A=Bt(),BA=rs(),DA=Jm(),CA=cr(),nb=is(),VA=ib(),OA=_l(),ob=ab(),_A=TypeError,Un=function(s,e){this.stopped=s,this.result=e},ub=Un.prototype;lb.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=LA(e,i),l,p,c,d,h,f,b,g=function(T){return l&&ob(l,"normal",T),new Un(!0,T)},S=function(T){return r?($A(T),o?u(T[0],T[1],g):u(T[0],T[1])):o?u(T,g):u(T)};if(a)l=s.iterator;else if(n)l=s;else{if(p=OA(s),!p)throw new _A(BA(s)+" is not iterable");if(DA(p)){for(c=0,d=CA(s);d>c;c++)if(h=S(s[c]),h&&nb(ub,h))return h;return new Un(!1)}l=VA(s,p)}for(f=a?s.next:l.next;!(b=MA(f,l)).done;){try{h=S(b.value)}catch(T){ob(l,"throw",T)}if(typeof h=="object"&&h&&nb(ub,h))return h}return new Un(!1)}});var db=m((nN,cb)=>{"use strict";var NA=dt(),FA=Li(),UA=ts();cb.exports=function(s,e,t){NA?FA.f(s,e,UA(0,t)):s[e]=t}});var pb=m(()=>{"use strict";var qA=xe(),HA=qn(),jA=db();qA({target:"Object",stat:!0},{fromEntries:function(e){var t={};return HA(e,function(i,r){jA(t,i,r)},{AS_ENTRIES:!0}),t}})});var fb=m((lN,hb)=>{"use strict";Ol();pb();var GA=rr();hb.exports=GA.Object.fromEntries});var bb=m((cN,mb)=>{"use strict";mb.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 Sb=m(()=>{"use strict";Ol();var zA=bb(),QA=ye(),WA=ps(),gb=$i();for(Hn in zA)WA(QA[Hn],Hn),gb[Hn]=gb.Array;var Hn});var yb=m((hN,vb)=>{"use strict";var YA=fb();Sb();vb.exports=YA});var Nl=m((fN,Tb)=>{"use strict";var KA=yb();Tb.exports=KA});var Ib=m(()=>{"use strict"});var Fl=m((gN,xb)=>{"use strict";var ms=ye(),XA=Ri(),JA=ki(),jn=function(s){return XA.slice(0,s.length)===s};xb.exports=function(){return jn("Bun/")?"BUN":jn("Cloudflare-Workers")?"CLOUDFLARE":jn("Deno/")?"DENO":jn("Node.js/")?"NODE":ms.Bun&&typeof Bun.version=="string"?"BUN":ms.Deno&&typeof Deno.version=="object"?"DENO":JA(ms.process)==="process"?"NODE":ms.window&&ms.document?"BROWSER":"REST"}()});var Gn=m((SN,Eb)=>{"use strict";var ZA=Fl();Eb.exports=ZA==="NODE"});var Pb=m((vN,wb)=>{"use strict";var eR=Li();wb.exports=function(s,e,t){return eR.f(s,e,t)}});var Rb=m((yN,Ab)=>{"use strict";var tR=Xt(),iR=Pb(),rR=Be(),sR=dt(),kb=rR("species");Ab.exports=function(s){var e=tR(s);sR&&e&&!e[kb]&&iR(e,kb,{configurable:!0,get:function(){return this}})}});var Mb=m((TN,Lb)=>{"use strict";var aR=is(),nR=TypeError;Lb.exports=function(s,e){if(aR(e,s))return s;throw new nR("Incorrect invocation")}});var ql=m((IN,$b)=>{"use strict";var oR=Re(),uR=be(),Ul=as(),lR=oR(Function.toString);uR(Ul.inspectSource)||(Ul.inspectSource=function(s){return lR(s)});$b.exports=Ul.inspectSource});var jl=m((xN,Ob)=>{"use strict";var cR=Re(),dR=$e(),Bb=be(),pR=ds(),hR=Xt(),fR=ql(),Db=function(){},Cb=hR("Reflect","construct"),Hl=/^\s*(?:class|function)\b/,mR=cR(Hl.exec),bR=!Hl.test(Db),bs=function(e){if(!Bb(e))return!1;try{return Cb(Db,[],e),!0}catch{return!1}},Vb=function(e){if(!Bb(e))return!1;switch(pR(e)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return bR||!!mR(Hl,fR(e))}catch{return!0}};Vb.sham=!0;Ob.exports=!Cb||dR(function(){var s;return bs(bs.call)||!bs(Object)||!bs(function(){s=!0})||s})?Vb:bs});var Nb=m((EN,_b)=>{"use strict";var gR=jl(),SR=rs(),vR=TypeError;_b.exports=function(s){if(gR(s))return s;throw new vR(SR(s)+" is not a constructor")}});var Gl=m((wN,Ub)=>{"use strict";var Fb=Bt(),yR=Nb(),TR=ir(),IR=Be(),xR=IR("species");Ub.exports=function(s,e){var t=Fb(s).constructor,i;return t===void 0||TR(i=Fb(t)[xR])?e:yR(i)}});var Hb=m((PN,qb)=>{"use strict";var ER=Re();qb.exports=ER([].slice)});var Gb=m((kN,jb)=>{"use strict";var wR=TypeError;jb.exports=function(s,e){if(s<e)throw new wR("Not enough arguments");return s}});var zl=m((AN,zb)=>{"use strict";var PR=Ri();zb.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(PR)});var tc=m((RN,tg)=>{"use strict";var ft=ye(),kR=Cu(),AR=nr(),Qb=be(),RR=Pt(),eg=$e(),Wb=wl(),LR=Hb(),Yb=wn(),MR=Gb(),$R=zl(),BR=Gn(),Jl=ft.setImmediate,Zl=ft.clearImmediate,DR=ft.process,Ql=ft.Dispatch,CR=ft.Function,Kb=ft.MessageChannel,VR=ft.String,Wl=0,gs={},Xb="onreadystatechange",Ss,Di,Yl,Kl;eg(function(){Ss=ft.location});var ec=function(s){if(RR(gs,s)){var e=gs[s];delete gs[s],e()}},Xl=function(s){return function(){ec(s)}},Jb=function(s){ec(s.data)},Zb=function(s){ft.postMessage(VR(s),Ss.protocol+"//"+Ss.host)};(!Jl||!Zl)&&(Jl=function(e){MR(arguments.length,1);var t=Qb(e)?e:CR(e),i=LR(arguments,1);return gs[++Wl]=function(){kR(t,void 0,i)},Di(Wl),Wl},Zl=function(e){delete gs[e]},BR?Di=function(s){DR.nextTick(Xl(s))}:Ql&&Ql.now?Di=function(s){Ql.now(Xl(s))}:Kb&&!$R?(Yl=new Kb,Kl=Yl.port2,Yl.port1.onmessage=Jb,Di=AR(Kl.postMessage,Kl)):ft.addEventListener&&Qb(ft.postMessage)&&!ft.importScripts&&Ss&&Ss.protocol!=="file:"&&!eg(Zb)?(Di=Zb,ft.addEventListener("message",Jb,!1)):Xb in Yb("script")?Di=function(s){Wb.appendChild(Yb("script"))[Xb]=function(){Wb.removeChild(this),ec(s)}}:Di=function(s){setTimeout(Xl(s),0)});tg.exports={set:Jl,clear:Zl}});var sg=m((LN,rg)=>{"use strict";var ig=ye(),OR=dt(),_R=Object.getOwnPropertyDescriptor;rg.exports=function(s){if(!OR)return ig[s];var e=_R(ig,s);return e&&e.value}});var ic=m((MN,ng)=>{"use strict";var ag=function(){this.head=null,this.tail=null};ag.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}}};ng.exports=ag});var ug=m(($N,og)=>{"use strict";var NR=Ri();og.exports=/ipad|iphone|ipod/i.test(NR)&&typeof Pebble<"u"});var cg=m((BN,lg)=>{"use strict";var FR=Ri();lg.exports=/web0s(?!.*chrome)/i.test(FR)});var gg=m((DN,bg)=>{"use strict";var hr=ye(),UR=sg(),dg=nr(),rc=tc().set,qR=ic(),HR=zl(),jR=ug(),GR=cg(),sc=Gn(),pg=hr.MutationObserver||hr.WebKitMutationObserver,hg=hr.document,fg=hr.process,zn=hr.Promise,oc=UR("queueMicrotask"),pr,ac,nc,Qn,mg;oc||(vs=new qR,ys=function(){var s,e;for(sc&&(s=fg.domain)&&s.exit();e=vs.get();)try{e()}catch(t){throw vs.head&&pr(),t}s&&s.enter()},!HR&&!sc&&!GR&&pg&&hg?(ac=!0,nc=hg.createTextNode(""),new pg(ys).observe(nc,{characterData:!0}),pr=function(){nc.data=ac=!ac}):!jR&&zn&&zn.resolve?(Qn=zn.resolve(void 0),Qn.constructor=zn,mg=dg(Qn.then,Qn),pr=function(){mg(ys)}):sc?pr=function(){fg.nextTick(ys)}:(rc=dg(rc,hr),pr=function(){rc(ys)}),oc=function(s){vs.head||pr(),vs.add(s)});var vs,ys;bg.exports=oc});var vg=m((CN,Sg)=>{"use strict";Sg.exports=function(s,e){try{arguments.length===1?console.error(s):console.error(s,e)}catch{}}});var Wn=m((VN,yg)=>{"use strict";yg.exports=function(s){try{return{error:!1,value:s()}}catch(e){return{error:!0,value:e}}}});var Ci=m((ON,Tg)=>{"use strict";var zR=ye();Tg.exports=zR.Promise});var fr=m((_N,wg)=>{"use strict";var QR=ye(),Ts=Ci(),WR=be(),YR=rl(),KR=ql(),XR=Be(),Ig=Fl(),JR=wt(),uc=ju(),xg=Ts&&Ts.prototype,ZR=XR("species"),lc=!1,Eg=WR(QR.PromiseRejectionEvent),eL=YR("Promise",function(){var s=KR(Ts),e=s!==String(Ts);if(!e&&uc===66||JR&&!(xg.catch&&xg.finally))return!0;if(!uc||uc<51||!/native code/.test(s)){var t=new Ts(function(a){a(1)}),i=function(a){a(function(){},function(){})},r=t.constructor={};if(r[ZR]=i,lc=t.then(function(){})instanceof i,!lc)return!0}return!e&&(Ig==="BROWSER"||Ig==="DENO")&&!Eg});wg.exports={CONSTRUCTOR:eL,REJECTION_EVENT:Eg,SUBCLASSING:lc}});var mr=m((NN,kg)=>{"use strict";var Pg=$t(),tL=TypeError,iL=function(s){var e,t;this.promise=new s(function(i,r){if(e!==void 0||t!==void 0)throw new tL("Bad Promise constructor");e=i,t=r}),this.resolve=Pg(e),this.reject=Pg(t)};kg.exports.f=function(s){return new iL(s)}});var zg=m(()=>{"use strict";var rL=xe(),sL=wt(),Jn=Gn(),ci=ye(),vr=pt(),Ag=dr(),Rg=Dl(),aL=ps(),nL=Rb(),oL=$t(),Xn=be(),uL=ht(),lL=Mb(),cL=Gl(),Dg=tc().set,fc=gg(),dL=vg(),pL=Wn(),hL=ic(),Cg=Tl(),Zn=Ci(),mc=fr(),Vg=mr(),eo="Promise",Og=mc.CONSTRUCTOR,fL=mc.REJECTION_EVENT,mL=mc.SUBCLASSING,cc=Cg.getterFor(eo),bL=Cg.set,br=Zn&&Zn.prototype,Vi=Zn,Yn=br,_g=ci.TypeError,dc=ci.document,bc=ci.process,pc=Vg.f,gL=pc,SL=!!(dc&&dc.createEvent&&ci.dispatchEvent),Ng="unhandledrejection",vL="rejectionhandled",Lg=0,Fg=1,yL=2,gc=1,Ug=2,Kn,Mg,TL,$g,qg=function(s){var e;return uL(s)&&Xn(e=s.then)?e:!1},Hg=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,p;try{r?(i||(e.rejection===Ug&&xL(e),e.rejection=gc),r===!0?u=t:(o&&o.enter(),u=r(t),o&&(o.exit(),p=!0)),u===s.promise?n(new _g("Promise-chain cycle")):(l=qg(u))?vr(l,u,a,n):a(u)):n(t)}catch(c){o&&!p&&o.exit(),n(c)}},jg=function(s,e){s.notified||(s.notified=!0,fc(function(){for(var t=s.reactions,i;i=t.get();)Hg(i,s);s.notified=!1,e&&!s.rejection&&IL(s)}))},Gg=function(s,e,t){var i,r;SL?(i=dc.createEvent("Event"),i.promise=e,i.reason=t,i.initEvent(s,!1,!0),ci.dispatchEvent(i)):i={promise:e,reason:t},!fL&&(r=ci["on"+s])?r(i):s===Ng&&dL("Unhandled promise rejection",t)},IL=function(s){vr(Dg,ci,function(){var e=s.facade,t=s.value,i=Bg(s),r;if(i&&(r=pL(function(){Jn?bc.emit("unhandledRejection",t,e):Gg(Ng,e,t)}),s.rejection=Jn||Bg(s)?Ug:gc,r.error))throw r.value})},Bg=function(s){return s.rejection!==gc&&!s.parent},xL=function(s){vr(Dg,ci,function(){var e=s.facade;Jn?bc.emit("rejectionHandled",e):Gg(vL,e,s.value)})},gr=function(s,e,t){return function(i){s(e,i,t)}},Sr=function(s,e,t){s.done||(s.done=!0,t&&(s=t),s.value=e,s.state=yL,jg(s,!0))},hc=function(s,e,t){if(!s.done){s.done=!0,t&&(s=t);try{if(s.facade===e)throw new _g("Promise can't be resolved itself");var i=qg(e);i?fc(function(){var r={done:!1};try{vr(i,e,gr(hc,r,s),gr(Sr,r,s))}catch(a){Sr(r,a,s)}}):(s.value=e,s.state=Fg,jg(s,!1))}catch(r){Sr({done:!1},r,s)}}};if(Og&&(Vi=function(e){lL(this,Yn),oL(e),vr(Kn,this);var t=cc(this);try{e(gr(hc,t),gr(Sr,t))}catch(i){Sr(t,i)}},Yn=Vi.prototype,Kn=function(e){bL(this,{type:eo,done:!1,notified:!1,parent:!1,reactions:new hL,rejection:!1,state:Lg,value:void 0})},Kn.prototype=Ag(Yn,"then",function(e,t){var i=cc(this),r=pc(cL(this,Vi));return i.parent=!0,r.ok=Xn(e)?e:!0,r.fail=Xn(t)&&t,r.domain=Jn?bc.domain:void 0,i.state===Lg?i.reactions.add(r):fc(function(){Hg(r,i)}),r.promise}),Mg=function(){var s=new Kn,e=cc(s);this.promise=s,this.resolve=gr(hc,e),this.reject=gr(Sr,e)},Vg.f=pc=function(s){return s===Vi||s===TL?new Mg(s):gL(s)},!sL&&Xn(Zn)&&br!==Object.prototype)){$g=br.then,mL||Ag(br,"then",function(e,t){var i=this;return new Vi(function(r,a){vr($g,i,r,a)}).then(e,t)},{unsafe:!0});try{delete br.constructor}catch{}Rg&&Rg(br,Yn)}rL({global:!0,constructor:!0,wrap:!0,forced:Og},{Promise:Vi});aL(Vi,eo,!1,!0);nL(eo)});var Xg=m((qN,Kg)=>{"use strict";var EL=Be(),Wg=EL("iterator"),Yg=!1;try{Qg=0,Sc={next:function(){return{done:!!Qg++}},return:function(){Yg=!0}},Sc[Wg]=function(){return this},Array.from(Sc,function(){throw 2})}catch{}var Qg,Sc;Kg.exports=function(s,e){try{if(!e&&!Yg)return!1}catch{return!1}var t=!1;try{var i={};i[Wg]=function(){return{next:function(){return{done:t=!0}}}},s(i)}catch{}return t}});var vc=m((HN,Jg)=>{"use strict";var wL=Ci(),PL=Xg(),kL=fr().CONSTRUCTOR;Jg.exports=kL||!PL(function(s){wL.all(s).then(void 0,function(){})})});var Zg=m(()=>{"use strict";var AL=xe(),RL=pt(),LL=$t(),ML=mr(),$L=Wn(),BL=qn(),DL=vc();AL({target:"Promise",stat:!0,forced:DL},{all:function(e){var t=this,i=ML.f(t),r=i.resolve,a=i.reject,n=$L(function(){var o=LL(t.resolve),u=[],l=0,p=1;BL(e,function(c){var d=l++,h=!1;p++,RL(o,t,c).then(function(f){h||(h=!0,u[d]=f,--p||r(u))},a)}),--p||r(u)});return n.error&&a(n.value),i.promise}})});var tS=m(()=>{"use strict";var CL=xe(),VL=wt(),OL=fr().CONSTRUCTOR,Tc=Ci(),_L=Xt(),NL=be(),FL=dr(),eS=Tc&&Tc.prototype;CL({target:"Promise",proto:!0,forced:OL,real:!0},{catch:function(s){return this.then(void 0,s)}});!VL&&NL(Tc)&&(yc=_L("Promise").prototype.catch,eS.catch!==yc&&FL(eS,"catch",yc,{unsafe:!0}));var yc});var iS=m(()=>{"use strict";var UL=xe(),qL=pt(),HL=$t(),jL=mr(),GL=Wn(),zL=qn(),QL=vc();UL({target:"Promise",stat:!0,forced:QL},{race:function(e){var t=this,i=jL.f(t),r=i.reject,a=GL(function(){var n=HL(t.resolve);zL(e,function(o){qL(n,t,o).then(i.resolve,r)})});return a.error&&r(a.value),i.promise}})});var rS=m(()=>{"use strict";var WL=xe(),YL=mr(),KL=fr().CONSTRUCTOR;WL({target:"Promise",stat:!0,forced:KL},{reject:function(e){var t=YL.f(this),i=t.reject;return i(e),t.promise}})});var Ic=m((JN,sS)=>{"use strict";var XL=Bt(),JL=ht(),ZL=mr();sS.exports=function(s,e){if(XL(s),JL(e)&&e.constructor===s)return e;var t=ZL.f(s),i=t.resolve;return i(e),t.promise}});var oS=m(()=>{"use strict";var eM=xe(),tM=Xt(),aS=wt(),iM=Ci(),nS=fr().CONSTRUCTOR,rM=Ic(),sM=tM("Promise"),aM=aS&&!nS;eM({target:"Promise",stat:!0,forced:aS||nS},{resolve:function(e){return rM(aM&&this===sM?iM:this,e)}})});var uS=m(()=>{"use strict";zg();Zg();tS();iS();rS();oS()});var pS=m(()=>{"use strict";var nM=xe(),oM=wt(),to=Ci(),uM=$e(),cS=Xt(),dS=be(),lM=Gl(),lS=Ic(),cM=dr(),Ec=to&&to.prototype,dM=!!to&&uM(function(){Ec.finally.call({then:function(){}},function(){})});nM({target:"Promise",proto:!0,real:!0,forced:dM},{finally:function(s){var e=lM(this,cS("Promise")),t=dS(s);return this.then(t?function(i){return lS(e,s()).then(function(){return i})}:s,t?function(i){return lS(e,s()).then(function(){throw i})}:s)}});!oM&&dS(to)&&(xc=cS("Promise").prototype.finally,Ec.finally!==xc&&cM(Ec,"finally",xc,{unsafe:!0}));var xc});var fS=m((aF,hS)=>{"use strict";Ib();uS();pS();var pM=li();hS.exports=pM("Promise","finally")});var bS=m((nF,mS)=>{"use strict";var hM=fS();mS.exports=hM});var Is=m((oF,gS)=>{"use strict";var fM=bS();gS.exports=fM});var LS=m(()=>{"use strict";var AM=xe(),RM=gl().values;AM({target:"Object",stat:!0},{values:function(e){return RM(e)}})});var $S=m((GF,MS)=>{"use strict";LS();var LM=rr();MS.exports=LM.Object.values});var DS=m((zF,BS)=>{"use strict";var MM=$S();BS.exports=MM});var Ni=m((QF,CS)=>{"use strict";var $M=DS();CS.exports=$M});var XS=m(()=>{"use strict";var i$=xe(),r$=sr(),s$=cr(),a$=us(),n$=ls();i$({target:"Array",proto:!0},{at:function(e){var t=r$(this),i=s$(t),r=a$(e),a=r>=0?r:i+r;return a<0||a>=i?void 0:t[a]}});n$("at")});var ZS=m((iq,JS)=>{"use strict";XS();var o$=li();JS.exports=o$("Array","at")});var tv=m((rq,ev)=>{"use strict";var u$=ZS();ev.exports=u$});var At=m((sq,iv)=>{"use strict";var l$=tv();iv.exports=l$});var Qc=m((H1,Cv)=>{"use strict";var H$=ki();Cv.exports=Array.isArray||function(e){return H$(e)==="Array"}});var Ov=m((j1,Vv)=>{"use strict";var j$=TypeError,G$=9007199254740991;Vv.exports=function(s){if(s>G$)throw j$("Maximum allowed index exceeded");return s}});var Fv=m((G1,Nv)=>{"use strict";var z$=Qc(),Q$=cr(),W$=Ov(),Y$=nr(),_v=function(s,e,t,i,r,a,n,o){for(var u=r,l=0,p=n?Y$(n,o):!1,c,d;l<i;)l in t&&(c=p?p(t[l],l,e):t[l],a>0&&z$(c)?(d=Q$(c),u=_v(s,e,c,d,u,a-1)-1):(W$(u+1),s[u]=c),u++),l++;return u};Nv.exports=_v});var jv=m((z1,Hv)=>{"use strict";var Uv=Qc(),K$=jl(),X$=ht(),J$=Be(),Z$=J$("species"),qv=Array;Hv.exports=function(s){var e;return Uv(s)&&(e=s.constructor,K$(e)&&(e===qv||Uv(e.prototype))?e=void 0:X$(e)&&(e=e[Z$],e===null&&(e=void 0))),e===void 0?qv:e}});var zv=m((Q1,Gv)=>{"use strict";var e0=jv();Gv.exports=function(s,e){return new(e0(s))(e===0?0:e)}});var Qv=m(()=>{"use strict";var t0=xe(),i0=Fv(),r0=$t(),s0=sr(),a0=cr(),n0=zv();t0({target:"Array",proto:!0},{flatMap:function(e){var t=s0(this),i=a0(t),r;return r0(e),r=n0(t,0),r.length=i0(r,t,t,i,0,1,e,arguments.length>1?arguments[1]:void 0),r}})});var Wv=m(()=>{"use strict";var o0=ls();o0("flatMap")});var Kv=m((J1,Yv)=>{"use strict";Qv();Wv();var u0=li();Yv.exports=u0("Array","flatMap")});var Jv=m((Z1,Xv)=>{"use strict";var l0=Kv();Xv.exports=l0});var Ns=m((eH,Zv)=>{"use strict";var c0=Jv();Zv.exports=c0});var Fs=m((tH,ey)=>{"use strict";var d0=ds(),p0=String;ey.exports=function(s){if(d0(s)==="Symbol")throw new TypeError("Cannot convert a Symbol value to a string");return p0(s)}});var Wc=m((iH,ty)=>{"use strict";ty.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 sy=m((rH,ry)=>{"use strict";var h0=Re(),f0=ui(),m0=Fs(),Kc=Wc(),iy=h0("".replace),b0=RegExp("^["+Kc+"]+"),g0=RegExp("(^|[^"+Kc+"])["+Kc+"]+$"),Yc=function(s){return function(e){var t=m0(f0(e));return s&1&&(t=iy(t,b0,"")),s&2&&(t=iy(t,g0,"$1")),t}};ry.exports={start:Yc(1),end:Yc(2),trim:Yc(3)}});var uy=m((sH,oy)=>{"use strict";var S0=El().PROPER,v0=$e(),ay=Wc(),ny="\u200B\x85\u180E";oy.exports=function(s){return v0(function(){return!!ay[s]()||ny[s]()!==ny||S0&&ay[s].name!==s})}});var Xc=m((aH,ly)=>{"use strict";var y0=sy().start,T0=uy();ly.exports=T0("trimStart")?function(){return y0(this)}:"".trimStart});var dy=m(()=>{"use strict";var I0=xe(),cy=Xc();I0({target:"String",proto:!0,name:"trimStart",forced:"".trimLeft!==cy},{trimLeft:cy})});var hy=m(()=>{"use strict";dy();var x0=xe(),py=Xc();x0({target:"String",proto:!0,name:"trimStart",forced:"".trimStart!==py},{trimStart:py})});var my=m((cH,fy)=>{"use strict";hy();var E0=li();fy.exports=E0("String","trimLeft")});var gy=m((dH,by)=>{"use strict";var w0=my();by.exports=w0});var vy=m((pH,Sy)=>{"use strict";var P0=gy();Sy.exports=P0});var Dy=m(()=>{"use strict"});var Cy=m(()=>{"use strict"});var Oy=m((z2,Vy)=>{"use strict";var Y0=ht(),K0=ki(),X0=Be(),J0=X0("match");Vy.exports=function(s){var e;return Y0(s)&&((e=s[J0])!==void 0?!!e:K0(s)==="RegExp")}});var Ny=m((Q2,_y)=>{"use strict";var Z0=Bt();_y.exports=function(){var s=Z0(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 qy=m((W2,Uy)=>{"use strict";var eB=pt(),tB=Pt(),iB=is(),rB=Ny(),Fy=RegExp.prototype;Uy.exports=function(s){var e=s.flags;return e===void 0&&!("flags"in Fy)&&!tB(s,"flags")&&iB(Fy,s)?eB(rB,s):e}});var jy=m((Y2,Hy)=>{"use strict";var rd=Re(),sB=sr(),aB=Math.floor,td=rd("".charAt),nB=rd("".replace),id=rd("".slice),oB=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,uB=/\$([$&'`]|\d{1,2})/g;Hy.exports=function(s,e,t,i,r,a){var n=t+s.length,o=i.length,u=uB;return r!==void 0&&(r=sB(r),u=oB),nB(a,u,function(l,p){var c;switch(td(p,0)){case"$":return"$";case"&":return s;case"`":return id(e,0,t);case"'":return id(e,n);case"<":c=r[id(p,1,-1)];break;default:var d=+p;if(d===0)return l;if(d>o){var h=aB(d/10);return h===0?l:h<=o?i[h-1]===void 0?td(p,1):i[h-1]+td(p,1):l}c=i[d-1]}return c===void 0?"":c})}});var Qy=m(()=>{"use strict";var lB=xe(),cB=pt(),ad=Re(),Gy=ui(),dB=be(),pB=ir(),hB=Oy(),Br=Fs(),fB=ss(),mB=qy(),bB=jy(),gB=Be(),SB=wt(),vB=gB("replace"),yB=TypeError,sd=ad("".indexOf),TB=ad("".replace),zy=ad("".slice),IB=Math.max;lB({target:"String",proto:!0},{replaceAll:function(e,t){var i=Gy(this),r,a,n,o,u,l,p,c,d,h,f=0,b="";if(!pB(e)){if(r=hB(e),r&&(a=Br(Gy(mB(e))),!~sd(a,"g")))throw new yB("`.replaceAll` does not allow non-global regexes");if(n=fB(e,vB),n)return cB(n,e,i,t);if(SB&&r)return TB(Br(i),e,t)}for(o=Br(i),u=Br(e),l=dB(t),l||(t=Br(t)),p=u.length,c=IB(1,p),d=sd(o,u);d!==-1;)h=l?Br(t(u,d,o)):bB(u,o,d,[],void 0,t),b+=zy(o,f,d)+h,f=d+p,d=d+c>o.length?-1:sd(o,u,d+c);return f<o.length&&(b+=zy(o,f)),b}})});var Yy=m((J2,Wy)=>{"use strict";Dy();Cy();Qy();var xB=li();Wy.exports=xB("String","replaceAll")});var Xy=m((Z2,Ky)=>{"use strict";var EB=Yy();Ky.exports=EB});var nd=m((e3,Jy)=>{"use strict";var wB=Xy();Jy.exports=wB});var eT=m((t3,Zy)=>{"use strict";var PB=us(),kB=Fs(),AB=ui(),RB=RangeError;Zy.exports=function(e){var t=kB(AB(this)),i="",r=PB(e);if(r<0||r===1/0)throw new RB("Wrong number of repetitions");for(;r>0;(r>>>=1)&&(t+=t))r&1&&(i+=t);return i}});var aT=m((i3,sT)=>{"use strict";var rT=Re(),LB=ll(),tT=Fs(),MB=eT(),$B=ui(),BB=rT(MB),DB=rT("".slice),CB=Math.ceil,iT=function(s){return function(e,t,i){var r=tT($B(e)),a=LB(t),n=r.length,o=i===void 0?" ":tT(i),u,l;return a<=n||o===""?r:(u=a-n,l=BB(o,CB(u/o.length)),l.length>u&&(l=DB(l,0,u)),s?r+l:l+r)}};sT.exports={start:iT(!1),end:iT(!0)}});var oT=m((r3,nT)=>{"use strict";var VB=Ri();nT.exports=/Version\/10(?:\.\d+){1,2}(?: [\w./]+)?(?: Mobile\/\w+)? Safari\//.test(VB)});var uT=m(()=>{"use strict";var OB=xe(),_B=aT().start,NB=oT();OB({target:"String",proto:!0,forced:NB},{padStart:function(e){return _B(this,e,arguments.length>1?arguments[1]:void 0)}})});var cT=m((n3,lT)=>{"use strict";uT();var FB=li();lT.exports=FB("String","padStart")});var pT=m((o3,dT)=>{"use strict";var UB=cT();dT.exports=UB});var od=m((u3,hT)=>{"use strict";var qB=pT();hT.exports=qB});var wp="2.0.131-dev.c93c80a1.0";var Ke=(r=>(r.STOPPED="stopped",r.READY="ready",r.PLAYING="playing",r.PAUSED="paused",r))(Ke||{}),Kt=(v=>(v.MPEG="MPEG",v.DASH="DASH",v.DASH_SEP="DASH_SEP",v.DASH_SEP_VK="DASH_SEP",v.DASH_WEBM="DASH_WEBM",v.DASH_WEBM_AV1="DASH_WEBM_AV1",v.DASH_STREAMS="DASH_STREAMS",v.DASH_WEBM_VK="DASH_WEBM",v.DASH_ONDEMAND="DASH_ONDEMAND",v.DASH_ONDEMAND_VK="DASH_ONDEMAND",v.DASH_LIVE="DASH_LIVE",v.DASH_LIVE_CMAF="DASH_LIVE_CMAF",v.DASH_LIVE_WEBM="DASH_LIVE_WEBM",v.HLS="HLS",v.HLS_ONDEMAND="HLS_ONDEMAND",v.HLS_JS="HLS",v.HLS_LIVE="HLS_LIVE",v.HLS_LIVE_CMAF="HLS_LIVE_CMAF",v.WEB_RTC_LIVE="WEB_RTC_LIVE",v))(Kt||{});var Tn=(r=>(r.NOT_AVAILABLE="NOT_AVAILABLE",r.AVAILABLE="AVAILABLE",r.CONNECTING="CONNECTING",r.CONNECTED="CONNECTED",r))(Tn||{}),$u=(i=>(i.HTTP1="http1",i.HTTP2="http2",i.QUIC="quic",i))($u||{});var Bu=(n=>(n.NONE="none",n.INLINE="inline",n.FULLSCREEN="fullscreen",n.SECOND_SCREEN="second_screen",n.PIP="pip",n.INVISIBLE="invisible",n))(Bu||{}),In=(i=>(i.TRAFFIC_SAVING="traffic_saving",i.HIGH_QUALITY="high_quality",i.UNKNOWN="unknown",i))(In||{});var kx=C(gt(),1);import{assertNever as Ef,assertNonNullable as tP,isNonNullable as kn,ValueSubject as dl,Subject as iP,Subscription as rP,merge as sP,observableFrom as aP,fromEvent as yf,map as Tf,tap as If,filterChanged as nP,isNullable as pl,ErrorCategory as xf}from"@vkontakte/videoplayer-shared";var vf=s=>new Promise((e,t)=>{let i=document.createElement("script");i.setAttribute("src",s),i.onload=()=>e(),i.onerror=r=>t(r),document.body.appendChild(i)});var An=class{constructor(e){this.connection$=new dl(void 0);this.castState$=new dl("NOT_AVAILABLE");this.errorEvent$=new iP;this.realCastState$=new dl("NOT_AVAILABLE");this.subscription=new rP;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=kn(window.chrome?.cast),r=!!window.__onGCastApiAvailable;i?this.initializeCastApi():(window.__onGCastApiAvailable=a=>{delete window.__onGCastApiAvailable,a&&!this.isDestroyed&&this.initializeCastApi()},r||vf("https://www.gstatic.com/cv/js/sender/v1/cast_sender.js?loadCastFramework=1").catch(()=>this.errorEvent$.next({id:"ChromecastLoading",category:xf.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(){kn(this.connection$.getValue())?this.disconnect():this.connect()}setVolume(e){let t=this.connection$.getValue();pl(t)||(t.remotePlayer.volumeLevel=e,t.remotePlayerController.setVolumeLevel())}setMuted(e){let t=this.connection$.getValue();pl(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(yf(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 Ef(r.sessionState)}})).add(sP(yf(i,cast.framework.CastContextEventType.CAST_STATE_CHANGED).pipe(If(r=>{this.log({message:`[cast.framework.RemotePlayerEventType.CAST_STATE_CHANGED]: ${JSON.stringify(r)}`})}),Tf(r=>r.castState)),aP([i.getCastState()])).pipe(nP(),Tf(oP),If(r=>{this.log({message:`realCastState$: ${r}`})})).subscribe(this.realCastState$)).add(this.realCastState$.subscribe(r=>{let a=r==="CONNECTED",n=kn(this.connection$.getValue());if(a&&!n){let o=i.getCurrentSession();tP(o);let u=o.getCastDevice(),l=o.getMediaSession()?.media?.contentId;(pl(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"?kn(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:xf.EXTERNAL_API,message:"[initializeCastApi] failed",thrown:r})}}},oP=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 Ef(s)}};var bp=C(gt(),1),ux=C(Mi(),1),lx=C(Nl(),1);var kS=C(Is(),1);import{assertNever as SS}from"@vkontakte/videoplayer-shared";var ge=(s,e=0,t=0)=>{switch(t){case 0:return s.replace("_offset_p",e===0?"":"_"+e.toFixed(0));case 1:{if(e===0)return s;let i=new URL(s);return i.searchParams.append("playback_shift",e.toFixed(0)),i.toString()}case 2:{let i=new URL(s);return!i.searchParams.get("offset_p")&&e===0?s:(i.searchParams.set("offset_p",e.toFixed(0)),i.toString())}default:SS(t)}return s},di=(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:SS(e)}};var k=(s,e,t=!1)=>{let i=s.getTransition();(t||!i||i.to===e)&&s.setState(e)};import{isNonNullable as mM,Subject as io,merge as vS}from"@vkontakte/videoplayer-shared";var F=class{constructor(e){this.transitionStarted$=new io;this.transitionEnded$=new io;this.transitionUpdated$=new io;this.forceChanged$=new io;this.stateChangeStarted$=vS(this.transitionStarted$,this.transitionUpdated$);this.stateChangeEnded$=vS(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||mM(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 bM}from"@vkontakte/videoplayer-shared";var yS=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 bM(s)}};import{assertNever as yr,assertNonNullable as Oi,debounce as TS,ErrorCategory as IS,fromEvent as _i,isNonNullable as xS,map as ES,merge as wS,observableFrom as gM,Subject as SM,Subscription as wc,timeout as vM,getHighestQuality as yM}from"@vkontakte/videoplayer-shared";var TM=5,IM=5,xM=500,PS=7e3,xs=class{constructor(e){this.subscription=new wc;this.loadMediaTimeoutSubscription=new wc;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:yr(e)}break}case"playing":{switch(e){case"playing":break;case"paused":this.videoState.startTransitionTo("playing"),this.params.connection.remotePlayerController.playOrPause();break;case"ready":this.videoState.startTransitionTo("playing"),this.params.connection.remotePlayerController.playOrPause();break;case"stopped":this.videoState.startTransitionTo("ready"),this.prepare();break;default:yr(e)}break}case"paused":{switch(e){case"playing":this.videoState.startTransitionTo("paused"),this.params.connection.remotePlayerController.playOrPause();break;case"paused":break;case"ready":this.videoState.startTransitionTo("paused"),this.videoState.setState("paused");break;case"stopped":this.videoState.startTransitionTo("ready"),this.prepare();break;default:yr(e)}break}default:yr(i)}}};this.params=e,this.log=this.params.dependencies.logger.createComponentLog("ChromecastProvider"),this.log({message:`constructor, format: ${e.format}`}),this.params.output.isLive$.next(yS(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 wc;this.subscription.add(e),this.subscription.add(wS(this.videoState.stateChangeStarted$.pipe(ES(r=>`stateChangeStarted$ ${JSON.stringify(r)}`)),this.videoState.stateChangeEnded$.pipe(ES(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 SM;e.add(r.pipe(TS(xM)).subscribe(()=>{this.params.output.seekedEvent$.next()}));let a=NaN;e.add(_i(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)>TM)&&r.next(o),a=o})),e.add(_i(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.DURATION_CHANGED).subscribe(n=>{this.logRemoteEvent(n),this.params.output.duration$.next(n.value)}))}t(_i(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_MEDIA_LOADED_CHANGED),r=>{this.logRemoteEvent(r),r.value?this.handleRemoteReady():(this.handleRemoteStop(),e.unsubscribe())}),t(_i(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_PAUSED_CHANGED),r=>{this.logRemoteEvent(r),r.value?this.handleRemotePause():this.handleRemotePlay()}),t(_i(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<IM&&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:yr(n)}}),t(_i(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.VOLUME_LEVEL_CHANGED),r=>{this.logRemoteEvent(r),this.handleRemoteVolumeChange({volume:r.value})}),t(_i(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_MUTED_CHANGED),r=>{this.logRemoteEvent(r),this.handleRemoteVolumeChange({muted:r.value})});let i=wS(this.params.desiredState.playbackState.stateChangeStarted$,this.params.desiredState.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,gM(["init"])).pipe(TS(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];Oi(l);let p=yM(Object.keys(l));Oi(p);let c=l[p];Oi(c),i=c,r="video/mp4",a=chrome.cast.media.StreamType.BUFFERED;break}case"HLS":case"HLS_ONDEMAND":{let l=t[e];Oi(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];Oi(l),i=l.url,r="application/dash+xml",a=chrome.cast.media.StreamType.BUFFERED;break}case"DASH_LIVE_CMAF":{let l=t[e];Oi(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];Oi(l),i=ge(l.url),r="application/x-mpegurl",a=chrome.cast.media.StreamType.LIVE;break}case"DASH_LIVE":case"WEB_RTC_LIVE":{let l="Unsupported format for Chromecast",p=new Error(l);throw this.params.output.error$.next({id:"ChromecastProvider.createMediaInfo()",category:IS.VIDEO_PIPELINE,message:l,thrown:p}),p}case"DASH":case"DASH_LIVE_WEBM":throw new Error(`${e} is no longer supported`);default:return yr(e)}let n=new chrome.cast.media.MediaInfo(this.params.meta.videoId??i,r);n.contentUrl=i,n.streamType=a,n.metadata=new chrome.cast.media.GenericMediaMetadata;let{title:o,subtitle:u}=this.params.meta;return xS(o)&&(n.metadata.title=o),xS(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(vM(PS).subscribe(()=>a(`timeout(${PS})`)))});(0,kS.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:IS.VIDEO_PIPELINE,message:a,thrown:r})}),()=>{this.loadMediaTimeoutSubscription.unsubscribe()})}logRemoteEvent(e){this.log({message:`[remoteEvent] ${JSON.stringify(e)}`})}};var Gc=C(gt(),1);import{clearVideoElement as RS}from"@vkontakte/videoplayer-shared";import{clearVideoElement as EM}from"@vkontakte/videoplayer-shared";var AS=s=>{try{s.pause(),s.playbackRate=0,EM(s),s.remove()}catch(e){console.error(e)}};import{fromEvent as wM,Subscription as PM}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)}},kc=window.WeakMap?new WeakMap:new Pc,Ac=window.WeakMap?new WeakMap:new Map,kM=(s,e=20)=>{let t=0;return wM(s,"ratechange").subscribe(i=>{t++,t>=e&&(s.currentTime=s.currentTime,t=0)})},De=(s,{audioVideoSyncRate:e,disableYandexPiP:t})=>{let i=s.querySelector("video"),r=!!i;i?RS(i):(i=document.createElement("video"),s.appendChild(i)),kc.set(i,r);let a=new PM;return a.add(kM(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=kc.get(s);kc.delete(s),t?RS(s):AS(s)};var Lc=C(Ni(),1);import{assertNonNullable as Es,isNonNullable as Ct,isNullable as CM,fromEvent as Tr,merge as VS,observableFrom as OS,filterChanged as _S,map as ws,Subject as NS,Subscription as VM,ValueSubject as OM,ErrorCategory as _M}from"@vkontakte/videoplayer-shared";import{isNonNullable as Rc,isNullable as BM,Subscription as DM}from"@vkontakte/videoplayer-shared";var ro=(s,e,t,{equal:i=(n,o)=>n===o,changed$:r,onError:a}={})=>{let n=s.getState(),o=e(),u=BM(r),l=new DM;return r&&l.add(r.subscribe(p=>{let c=s.getState();i(p,c)&&s.setState(p)},a)),i(o,n)||(t(n),u&&s.setState(n)),l.add(s.stateChangeStarted$.subscribe(p=>{t(p.to),u&&s.setState(p.to)},a)),l},St=(s,e,t)=>ro(e,()=>s.loop,i=>{Rc(i)&&(s.loop=i)},{onError:t}),Ve=(s,e,t,i)=>ro(e,()=>({muted:s.muted,volume:s.volume}),r=>{Rc(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)=>ro(e,()=>s.playbackRate,r=>{Rc(r)&&(s.playbackRate=r)},{changed$:t,onError:i}),pi=ro;var NM=s=>["__",s.language,s.label].join("|"),FM=(s,e)=>{if(s.id===e)return!0;let[t,i,r]=e.split("|");return s.language===i&&s.label===r},Mc=class s{constructor(e){this.available$=new NS;this.current$=new OM(void 0);this.error$=new NS;this.subscription=new VM;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:_M.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(pi(t.internalTextTracks,()=>(0,Lc.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(ws(a=>a.filter(({type:n})=>n==="internal"))),onError:r})),this.subscription.add(pi(t.externalTextTracks,()=>(0,Lc.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(ws(a=>a.filter(({type:n})=>n==="external"))),onError:r})),this.subscription.add(pi(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(pi(t.textTrackCuesSettings,()=>({}),()=>{if(this.video)for(let a of this.htmlTextTracksAsArray())this.applyCueSettings(a.cues),this.applyCueSettings(a.activeCues)}))}subscribe(){Es(this.video);let{textTracks:e}=this.video;this.subscription.add(Tr(e,"addtrack").subscribe(()=>{let i=this.current$.getValue();i&&this.select(i)})),this.subscription.add(VS(Tr(e,"addtrack"),Tr(e,"removetrack"),OS(["init"])).pipe(ws(()=>this.htmlTextTracksAsArray().map(i=>this.htmlTextTrackToITextTrack(i))),_S((i,r)=>i.length===r.length&&i.every(({id:a},n)=>a===r[n].id))).subscribe(this.available$)),this.subscription.add(VS(Tr(e,"change"),OS(["init"])).pipe(ws(()=>this.htmlTextTracksAsArray().find(({mode:i})=>i==="showing")),ws(i=>i&&this.htmlTextTrackToITextTrack(i).id),_S()).subscribe(this.current$));let t=i=>this.applyCueSettings(i.target?.activeCues??null);this.subscription.add(Tr(e,"addtrack").subscribe(i=>{i.track?.addEventListener("cuechange",t);let r=a=>{let n=a.target?.cues??null;n&&n.length&&(this.applyCueSettings(a.target?.cues??null),a.target?.removeEventListener("cuechange",r))};i.track?.addEventListener("cuechange",r)})),this.subscription.add(Tr(e,"removetrack").subscribe(i=>{i.track?.removeEventListener("cuechange",t)}))}applyCueSettings(e){if(!e||!e.length)return;let t=this.cueSettings.getState();for(let i of Array.from(e)){let r=i;Ct(t.align)&&(r.align=t.align),Ct(t.position)&&(r.position=t.position),Ct(t.size)&&(r.size=t.size),Ct(t.line)&&(r.line=t.line)}}htmlTextTracksAsArray(e=!1){Es(this.video);let t=[...this.video.textTracks];return e?t:t.filter(s.isHealthyTrack)}htmlTextTrackToITextTrack(e){let{language:t,label:i}=e,r=e.id?e.id:NM(e),a=this.externalTracks.has(r),n=(a?this.externalTracks.get(r)?.isAuto:this.internalTracks.get(r)?.isAuto)??r.includes("auto");return a?{id:r,type:"external",isAuto:n,language:t,label:i,url:this.externalTracks.get(r)?.url}:{id:r,type:"internal",isAuto:n,language:t,label:i,url:this.internalTracks.get(r)?.url}}static isHealthyTrack(e){return!(e.kind==="metadata"||e.groupId||e.id===""&&e.label===""&&e.language==="")}setExternal(e){this.internalTracks.size>0&&Array.from(this.internalTracks).forEach(([,t])=>this.detach(t)),e.filter(({id:t})=>!this.externalTracks.has(t)).forEach(t=>this.attach(t)),Array.from(this.externalTracks).filter(([t])=>!e.find(i=>i.id===t)).forEach(([,t])=>this.detach(t))}setInternal(e){let t=[...this.externalTracks];e.filter(({id:i,language:r,isAuto:a})=>!this.internalTracks.has(i)&&!t.some(([,n])=>n.language===r&&n.isAuto===a)).forEach(i=>this.attach(i)),Array.from(this.internalTracks).filter(([i])=>!e.find(r=>r.id===i)).forEach(([,i])=>this.detach(i))}select(e){Es(this.video);for(let t of this.htmlTextTracksAsArray(!0))t.mode="showing";for(let t of this.htmlTextTracksAsArray(!0))(CM(e)||!FM(t,e))&&(t.mode="disabled")}destroy(){if(this.subscription.unsubscribe(),this.video)for(let e of Array.from(this.video.getElementsByTagName("track"))){let t=e.getAttribute("id");t&&this.externalTracks.has(t)&&this.video.removeChild(e)}this.externalTracks.clear()}attach(e){Es(this.video);let t=document.createElement("track");this.baseURL?t.setAttribute("src",new URL(e.url,this.baseURL).toString()):t.setAttribute("src",e.url),t.setAttribute("id",e.id),e.label&&t.setAttribute("label",e.label),e.language&&t.setAttribute("srclang",e.language),e.type==="external"?this.externalTracks.set(e.id,e):e.type==="internal"&&this.internalTracks.set(e.id,e),this.video.appendChild(t)}detach(e){Es(this.video);let t=Array.prototype.find.call(this.video.getElementsByTagName("track"),i=>i.getAttribute("id")===e.id);t&&this.video.removeChild(t),e.type==="external"?this.externalTracks.delete(e.id):e.type==="internal"&&this.internalTracks.delete(e.id)}},Je=Mc;var Fi=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},$c=s=>{let e=FS(s);return!!(e&&e.fullscreenElement&&e.fullscreenElement===s)},US=s=>{let e=FS(s);return!!(e&&e.pictureInPictureElement&&e.pictureInPictureElement===s)};import{fromEvent as Ze,map as hi,merge as Dc,filterChanged as YM,isNonNullable as YS,Subject as KM,filter as ks,mapTo as Cc,combine as XM,once as JM,throttle as ZM,ErrorCategory as e$,ValueSubject as KS,Subscription as t$}from"@vkontakte/videoplayer-shared";var UM=3,qS=(s,e,t=UM)=>{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 so=class{get current(){return this._current}get isYandex(){return this.current==="Yandex"}get isSafari(){return this.current==="Safari"}get isSamsungBrowser(){return this.current==="SamsungBrowser"}get safariVersion(){return this._safariVersion}detect(){let{userAgent:e}=navigator;try{let t=/yabrowser/i.test(e)?"Yandex":void 0,i=/samsungbrowser/i.test(e)?"SamsungBrowser":void 0,r=/chrome|crios/i.test(e)?"Chrome":void 0,a=/chromium/i.test(e)?"Chromium":void 0,n=/firefox|fxios/i.test(e)?"Firefox":void 0,o=/webkit|safari|khtml/i.test(e)?"Safari":void 0,u=/opr\//i.test(e)?"Opera":void 0,l=/edg/i.test(e)?"Edge":void 0;this._current=t||i||n||u||l||r||a||o||"Rest"}catch(t){console.error(t)}this.isSafari&&this.detectSafariVersion()}detectSafariVersion(){try{let{userAgent:e}=window.navigator,t=e.match(/Version\/(\d+)/);if(!t)return;let i=t[1],r=parseInt(i,10);if(isNaN(r))return;this._safariVersion=r}catch(e){console.error(e)}}};var HS=C(gt(),1);var Ps=()=>/Mobile|mini|Fennec|Android|iP(ad|od|hone)/.test(navigator.appVersion??navigator.userAgent)||navigator?.userAgentData?.mobile;var ao=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,HS.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){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 no=class{get isTouch(){return typeof this._maxTouchPoints=="number"?this._maxTouchPoints>1:"ontouchstart"in window}get maxTouchPoints(){return this._maxTouchPoints}get height(){return this._height}get width(){return this._width}get screenHeight(){return this._screenHeight}get screenWidth(){return this._screenWidth}get pixelRatio(){return this._pixelRatio}get isHDR(){return this._isHdr}get colorDepth(){return this._colorDepth}detect(){let{maxTouchPoints:e}=navigator;try{this._maxTouchPoints=e??0,this._isHdr=!!matchMedia("(dynamic-range: high)")?.matches,this._colorDepth=screen.colorDepth}catch(t){console.error(t)}try{this._pixelRatio=window.devicePixelRatio||1,this._height=screen.height,this._width=screen.width,this._height=screen.height,this._screenHeight=this._height*this._pixelRatio,this._screenWidth=this._width*this._pixelRatio}catch(t){console.error(t)}}};var mt=()=>window.ManagedMediaSource||window.MediaSource,Ir=()=>!!(window.ManagedMediaSource&&window.ManagedSourceBuffer?.prototype?.appendBuffer),jS=()=>!!(window.MediaSource&&window.SourceBuffer?.prototype?.appendBuffer),oo=()=>window.ManagedMediaSource?new ManagedMediaSource:new MediaSource;var qM=document.createElement("video"),HM='video/mp4; codecs="avc1.42000a,mp4a.40.2"',jM='video/mp4; codecs="hev1.1.6.L93.B0"',GS='video/webm; codecs="vp09.00.10.08"',zS='video/webm; codecs="av01.0.00M.08"',GM='audio/mp4; codecs="mp4a.40.2"',zM='audio/webm; codecs="opus"',QS,QM=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:GS}})]);QS={DASH_WEBM_AV1:e,DASH_WEBM:t}};QM().catch(s=>{console.log(qM),console.error(s)});var uo=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 QS}get supportedCodecs(){return Object.keys(this._codecs).filter(e=>this._codecs[e])}get nativeHlsSupported(){return this._nativeHlsSupported}detect(){this._video=document.createElement("video");try{this._protocols={mms:Ir(),mse:jS(),hls:!!(this._video.canPlayType?.("application/x-mpegurl")||this._video.canPlayType?.("vnd.apple.mpegURL")),webrtc:!!window.RTCPeerConnection,ws:!!window.WebSocket},this._containers={mp4:!!this._video.canPlayType?.("video/mp4"),webm:!!this._video.canPlayType?.("video/webm"),cmaf:!0};let e=!!mt()?.isTypeSupported?.(HM),t=!!mt()?.isTypeSupported?.(jM),i=!!mt()?.isTypeSupported?.(GM);this._codecs={h264:e,h265:t,vp9:!!mt()?.isTypeSupported?.(GS),av1:!!mt()?.isTypeSupported?.(zS),aac:i,opus:!!mt()?.isTypeSupported?.(zM),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 WS="audio/mpeg",lo=class{supportMp3(){return this._codecs.mp3&&this._containers.mpeg}detect(){this._audio=document.createElement("audio");try{this._containers={mpeg:!!this._audio.canPlayType?.(WS)},this._codecs={mp3:!!mt()?.isTypeSupported?.(WS)}}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 WM}from"@vkontakte/videoplayer-shared";var Bc=class{constructor(){this.isInited$=new WM(!1);this._displayChecker=new no,this._deviceChecker=new ao(this._displayChecker),this._browserChecker=new so,this._videoChecker=new uo(this._deviceChecker,this._browserChecker),this._audioChecker=new lo,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)}},N=new Bc;var Oe=s=>{let e=y=>Ze(s,y).pipe(Cc(void 0)),t=new t$,i=()=>t.unsubscribe(),a=Dc(...["waiting","pause","canplay","play","canplaythrough","playing","seeking","seeked","ended"].map(y=>Ze(s,y))).pipe(hi(y=>y.type==="ended"?s.readyState<2:s.readyState<3),YM()),n=Dc(Ze(s,"progress"),Ze(s,"timeupdate")).pipe(hi(()=>qS(s.buffered,s.currentTime))),o=N.browser.isSafari?XM({play:e("play").pipe(JM()),playing:e("playing")}).pipe(Cc(void 0)):e("playing"),u=Ze(s,"volumechange").pipe(hi(()=>({muted:s.muted,volume:s.volume}))),l=Ze(s,"ratechange").pipe(hi(()=>s.playbackRate)),p=Ze(s,"error").pipe(ks(()=>!!(s.error||s.played.length)),hi(()=>{let y=s.error;return{id:y?`MediaError#${y.code}`:"HtmlVideoError",category:e$.VIDEO_PIPELINE,message:y?y.message:"Error event from HTML video element",thrown:s.error??void 0}})),c=Ze(s,"timeupdate").pipe(hi(()=>s.currentTime)),d=new KM,h=.3,f;t.add(c.subscribe(y=>{s.loop&&YS(f)&&YS(y)&&f>=s.duration-h&&y<=h&&d.next(f),f=y}));let b=e("pause").pipe(ks(()=>!s.error&&f!==s.duration)),g=Ze(s,"enterpictureinpicture"),S=Ze(s,"leavepictureinpicture"),T=new KS(US(s));t.add(g.subscribe(()=>T.next(!0))),t.add(S.subscribe(()=>T.next(!1)));let v=new KS($c(s)),P=Ze(s,"fullscreenchange");t.add(P.pipe(hi(()=>$c(s))).subscribe(v));let w=.1,M=1e3,O=Ze(s,"timeupdate").pipe(ks(y=>s.duration-s.currentTime<w)),E=Dc(O.pipe(ks(y=>!s.loop)),Ze(s,"ended")).pipe(ZM(M),Cc(void 0)),R=O.pipe(ks(y=>s.loop));return{playing$:o,pause$:b,canplay$:e("canplay"),ended$:E,looped$:d,loopExpected$:R,error$:p,seeked$:e("seeked"),seeking$:e("seeking"),progress$:e("progress"),loadStart$:e("loadstart"),loadedMetadata$:e("loadedmetadata"),loadedData$:e("loadeddata"),timeUpdate$:c,durationChange$:Ze(s,"durationchange").pipe(hi(()=>s.duration)),isBuffering$:a,currentBuffer$:n,volumeState$:u,playbackRateState$:l,inPiP$:T,inFullscreen$:v,enterPip$:g,leavePip$:S,destroy:i}};import{VideoQuality as fi}from"@vkontakte/videoplayer-shared";var Vt=s=>{switch(s){case"mobile":return fi.Q_144P;case"lowest":return fi.Q_240P;case"low":return fi.Q_360P;case"sd":case"medium":return fi.Q_480P;case"hd":case"high":return fi.Q_720P;case"fullhd":case"full":return fi.Q_1080P;case"quadhd":case"quad":return fi.Q_1440P;case"ultrahd":case"ultra":return fi.Q_2160P}};var Qe=C(At(),1),_c=C(gt(),1),Ui=C(Mi(),1);import{isNonNullable as X,isNullable as mo,now as pv,isHigher as bo,isHigherOrEqual as Er,isInvariantQuality as go,isLowerOrEqual as wr,videoSizeToQuality as hv,assertNotEmptyArray as So,assertNonNullable as fv}from"@vkontakte/videoplayer-shared";var Vc=!1,Zt={},rv=s=>{Vc=s},sv=()=>{Zt={}},av=s=>{s(Zt)},As=(s,e)=>{Vc&&(Zt.meta=Zt.meta??{},Zt.meta[s]=e)},ze=class{constructor(e){this.name=e}next(e){if(!Vc)return;Zt.series=Zt.series??{};let t=Zt.series[this.name]??[];t.push([Date.now(),e]),Zt.series[this.name]=t}};import{isHigher as c$,isHigherOrEqual as cq,isLower as nv,isLowerOrEqual as dq,isNonNullable as co,isNullable as d$,videoHeightToQuality as po}from"@vkontakte/videoplayer-shared";function Oc(s,e,t){return!s.max&&s.min===e?"high_quality":!s.min&&s.max===t?"traffic_saving":"unknown"}function ho(s,e,t){return!!s&&Oc(s,e,t)==="high_quality"}function xr(s,e,t){return d$(s)||co(s.min)&&co(s.max)&&nv(s.max,s.min)||co(s.min)&&e&&c$(s.min,e)||co(s.max)&&t&&nv(s.max,t)}function ov({limits:s,highestAvailableHeight:e,lowestAvailableHeight:t}){return xr({max:s?.max?po(s.max):void 0,min:s?.min?po(s.min):void 0},e?po(e):void 0,t?po(t):void 0)}var mv=new ze("best_bitrate"),vo=(s,e,t)=>(e-t)*Math.pow(2,-10*s)+t;var Pr=s=>(e,t)=>s*(Number(e.bitrate)-Number(t.bitrate)),mi=class{constructor(){this.history={}}recordSelection(e){this.history[e.id]=pv()}recordSwitch(e){this.last=e}clear(){this.last=void 0,this.history={}}},yo='Assertion "ABR Tracks is empty array" failed',fo=new WeakMap,uv=new WeakMap,lv=new WeakMap,Rs=(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,_c.default)(n,o)?o:n.length?(0,Qe.default)(n,-1):(0,Qe.default)(a,0)},Ls=(s,e,t,i)=>{let r=fo.get(e);r||(r=[...e].sort(Pr(1)),fo.set(e,r));let a=fo.get(t);a||(a=[...t].sort(Pr(1)),fo.set(t,a));let n=lv.get(s);n||(n=a.filter(u=>X(u.bitrate)&&X(s.bitrate)?s.bitrate/u.bitrate>i:!0),lv.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,_c.default)(n,o)?o:n.length?(0,Qe.default)(n,-1):(0,Qe.default)(a,0)},cv=s=>"quality"in s,To=(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]&&pv()-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=cv(n)?"video":"audio",u=cv(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},p$=(s,e)=>Math.log(e)/Math.log(s),bv=({tuning:s,container:e,limits:t,panelSize:i})=>{let r=s.containerSizeFactor;if(i)return{containerSizeLimit:i,containerSizeFactor:r};if(s.usePixelRatio&&N.display.pixelRatio){let a=N.display.pixelRatio;if(s.pixelRatioMultiplier)r*=s.pixelRatioMultiplier*(a-1)+1;else{let n=s.pixelRatioLogBase,[o=0,u=0,l=0]=s.pixelRatioLogCoefficients,p=p$(n,o*a+u)+l;Number.isFinite(p)&&(r*=p)}}return ho(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}},dv=new WeakMap,Ot=(s,{container:e,estimatedThroughput:t,tuning:i,limits:r,reserve:a=0,forwardBufferHealth:n,playbackRate:o,current:u,history:l,visible:p,droppedVideoMaxQualityLimit:c,stallsVideoMaxQualityLimit:d,stallsPredictedThroughput:h,abrLogger:f,panelSize:b})=>{So(s,yo);let{containerSizeFactor:g,containerSizeLimit:S}=bv({container:e,tuning:i,limits:r,panelSize:b}),T=i.considerPlaybackRate&&X(o)?o:1,v=dv.get(s);v||(v=s.filter(x=>!go(x.quality)).sort((x,A)=>bo(x.quality,A.quality)?-1:1),dv.set(s,v));let P=(0,Qe.default)(v,-1)?.quality,w=(0,Qe.default)(v,0)?.quality,M=xr(r,w,P),O=T*vo(n??.5,i.bitrateFactorAtEmptyBuffer,i.bitrateFactorAtFullBuffer),E={},R=null;for(let x of v){let A=!0;if(S)if(x.size)A=x.size.width<=S.width&&x.size.height<=S.height;else{let L=S&&hv(S);A=L?wr(x.quality,L):!0}if(!A){E[x.quality]="FitsContainer";continue}let re=h||t,B=X(re)&&isFinite(re)&&X(x.bitrate)?re-a>=x.bitrate*O:!0,q=ho(r,i.highQualityLimit,i.trafficSavingLimit)&&r?.min===x.quality;if(!B&&!q){E[x.quality]="FitsThroughput";continue}if(i.lazyQualitySwitch&&X(i.minBufferToSwitchUp)&&u&&!go(u.quality)&&(n??0)<i.minBufferToSwitchUp&&bo(x.quality,u.quality)){E[x.quality]="Buffer";continue}if(!!c&&Er(x.quality,c)&&!q){E[x.quality]="DroppedFramesLimit";continue}if(!!d&&Er(x.quality,d)&&!q){E[x.quality]="StallsLimit";continue}let oe=M||(mo(r?.max)||wr(x.quality,r.max))&&(mo(r?.min)||Er(x.quality,r.min)),Z=X(p)&&!p?wr(x.quality,i.backgroundVideoQualityLimit):!0;if(!oe||!Z){E[x.quality]="FitsQualityLimits";continue}R||(R=x)}R&&R.bitrate&&mv.next(R.bitrate);let y=R??(0,Qe.default)(v,-1)??s[0],D=l?.last,I=To(i,f,y,l);return X(l)&&I.quality!==D?.quality&&f({message:`
10
10
  [VIDEO TRACKS ABR]
11
11
  [available video tracks]
12
- ${r.map(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,Ui.default)(i??{}).map(([x,A])=>`${x}: ${A}`).join(`
17
17
  `)}
18
18
 
19
19
  [limit params]
20
20
  containerSizeFactor: ${g},
21
- containerSizeLimit: ${v?.width??0} x ${v?.height??0},
21
+ containerSizeLimit: ${S?.width??0} x ${S?.height??0},
22
22
  estimatedThroughput: ${t},
23
23
  stallsPredictedThroughput: ${h},
24
- reserve: ${s},
24
+ reserve: ${a},
25
25
  playbackRate: ${o},
26
- playbackRateFactor: ${x},
26
+ playbackRateFactor: ${T},
27
27
  forwardBufferHealth: ${n},
28
- bitrateFactor: ${B},
28
+ bitrateFactor: ${O},
29
29
  minBufferToSwitchUp: ${i.minBufferToSwitchUp},
30
- droppedVideoMaxQualityLimit: ${d},
31
- stallsVideoMaxQualityLimit: ${p},
32
- limitsAreInvalid: ${V},
33
- maxQualityLimit: ${a?.max},
34
- minQualityLimit: ${a?.min},
30
+ droppedVideoMaxQualityLimit: ${c},
31
+ stallsVideoMaxQualityLimit: ${d},
32
+ limitsAreInvalid: ${M},
33
+ maxQualityLimit: ${r?.max},
34
+ minQualityLimit: ${r?.min},
35
35
 
36
36
  [limited video tracks]
37
- ${(0,Bs.default)(F).map(([A,ie])=>`${A}: ${ie}`).join(`
37
+ ${(0,Ui.default)(E).map(([x,A])=>`${x}: ${A}`).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] ${R?.quality}
41
+ [selected video track] ${I?.quality}
42
+ `}),I},Io=(s,{container:e,estimatedThroughput:t,tuning:i,limits:r,reserve:a=0,forwardBufferHealth:n,playbackRate:o,current:u,history:l,visible:p,droppedVideoMaxQualityLimit:c,stallsVideoMaxQualityLimit:d,stallsPredictedThroughput:h,abrLogger:f,panelSize:b})=>{So(s,yo);let{containerSizeFactor:g,containerSizeLimit:S}=bv({container:e,tuning:i,limits:r,panelSize:b}),T=i.considerPlaybackRate&&X(o)?o:1,v=s.filter(A=>!go(A.quality)).sort((A,re)=>bo(A.quality,re.quality)?-1:1),P=(0,Qe.default)(v,-1)?.quality,w=(0,Qe.default)(v,0)?.quality,M=xr(r,P,w),O=T*vo(n??.5,i.bitrateFactorAtEmptyBuffer,i.bitrateFactorAtFullBuffer),E={},y=v.filter(A=>{let re=!0;if(S)if(A.size)re=A.size.width<=S.width&&A.size.height<=S.height;else{let V=S&&hv(S);re=V?wr(A.quality,V):!0}if(!re)return E[A.quality]="FitsContainer",!1;let B=h||t,q=X(B)&&isFinite(B)&&X(A.bitrate)?B-a>=A.bitrate*O:!0,K=ho(r,i.highQualityLimit,i.trafficSavingLimit)&&r?.min===A.quality;if(!q&&!K)return E[A.quality]="FitsThroughput",!1;if(i.lazyQualitySwitch&&X(i.minBufferToSwitchUp)&&u&&!go(u.quality)&&(n??0)<i.minBufferToSwitchUp&&bo(A.quality,u.quality))return E[A.quality]="Buffer",!1;if(!!c&&Er(A.quality,c)&&!K)return E[A.quality]="DroppedFramesLimit",!1;if(!!d&&Er(A.quality,d)&&!K)return E[A.quality]="StallsLimit",!1;let Z=M||(mo(r?.max)||wr(A.quality,r.max))&&(mo(r?.min)||Er(A.quality,r.min)),L=X(p)&&!p?wr(A.quality,i.backgroundVideoQualityLimit):!0;return!Z||!L?(E[A.quality]="FitsQualityLimits",!1):!0})[0];y&&y.bitrate&&mv.next(y.bitrate);let D=y??(0,Qe.default)(v,-1)??s[0],I=l?.last,x=To(i,f,D,l);return X(l)&&x.quality!==I?.quality&&f({message:`
43
+ [VIDEO TRACKS ABR]
44
+ [available video tracks]
45
+ ${s.map(A=>`{ id: ${A.id}, quality: ${A.quality}, bitrate: ${A.bitrate}, size: ${A.size?.width}:${A.size?.height} }`).join(`
46
+ `)}
47
+
48
+ [tuning]
49
+ ${(0,Ui.default)(i??{}).map(([A,re])=>`${A}: ${re}`).join(`
50
+ `)}
51
+
52
+ [limit params]
53
+ containerSizeFactor: ${g},
54
+ containerSizeLimit: ${S?.width??0} x ${S?.height??0},
55
+ estimatedThroughput: ${t},
56
+ stallsPredictedThroughput: ${h},
57
+ reserve: ${a},
58
+ playbackRate: ${o},
59
+ playbackRateFactor: ${T},
60
+ forwardBufferHealth: ${n},
61
+ bitrateFactor: ${O},
62
+ minBufferToSwitchUp: ${i.minBufferToSwitchUp},
63
+ droppedVideoMaxQualityLimit: ${c},
64
+ stallsVideoMaxQualityLimit: ${d},
65
+ limitsAreInvalid: ${M},
66
+ maxQualityLimit: ${r?.max},
67
+ minQualityLimit: ${r?.min},
68
+
69
+ [limited video tracks]
70
+ ${(0,Ui.default)(E).map(([A,re])=>`${A}: ${re}`).join(`
71
+ `)||"All tracks are available"}
72
+
73
+ [best video track] ${y?.quality}
74
+ [selected video track] ${x?.quality}
75
+ `}),x},xo=(s,e,t,{estimatedThroughput:i,tuning:r,playbackRate:a,forwardBufferHealth:n,history:o,abrLogger:u,stallsPredictedThroughput:l})=>{So(t,yo);let p=r.considerPlaybackRate&&X(a)?a:1,c=[...t].sort(Pr(-1)),d=s.bitrate;fv(d);let h=p*vo(n??.5,r.bitrateAudioFactorAtEmptyBuffer,r.bitrateAudioFactorAtFullBuffer),f,b=Rs(s,e,t,r.minVideoAudioRatio),g=l||i;X(g)&&isFinite(g)&&(f=c.find(v=>X(v.bitrate)&&X(b?.bitrate)?g-d>=v.bitrate*h&&v.bitrate>=b.bitrate:!1)),f||(f=b);let S=o?.last,T=f&&To(r,u,f,o);return X(o)&&T?.bitrate!==S?.bitrate&&u({message:`
43
76
  [AUDIO TRACKS ABR]
44
77
  [available audio tracks]
45
- ${t.map(T=>`{ id: ${T.id}, bitrate: ${T.bitrate} }`).join(`
78
+ ${t.map(v=>`{ id: ${v.id}, bitrate: ${v.bitrate} }`).join(`
46
79
  `)}
47
80
 
48
81
  [tuning]
49
- ${(0,Bs.default)(a??{}).map(([T,P])=>`${T}: ${P}`).join(`
82
+ ${(0,Ui.default)(r??{}).map(([v,P])=>`${v}: ${P}`).join(`
50
83
  `)}
51
84
 
52
85
  [limit params]
53
86
  estimatedThroughput: ${i},
54
87
  stallsPredictedThroughput: ${l},
55
- reserve: ${p},
56
- playbackRate: ${s},
57
- playbackRateFactor: ${c},
88
+ reserve: ${d},
89
+ playbackRate: ${a},
90
+ playbackRateFactor: ${p},
58
91
  forwardBufferHealth: ${n},
59
92
  bitrateFactor: ${h},
60
- minBufferToSwitchUp: ${a.minBufferToSwitchUp},
93
+ minBufferToSwitchUp: ${r.minBufferToSwitchUp},
61
94
 
62
- [selected audio track] ${x?.id}
63
- `}),x};var 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},Eo=(s,e,t,{estimatedThroughput:i,tuning:r,playbackRate:a,forwardBufferHealth:n,history:o,abrLogger:u,stallsPredictedThroughput:l})=>{So(t,yo);let p=r.considerPlaybackRate&&X(a)?a:1,c=uv.get(t);c||(c=[...t].sort(Pr(-1)),uv.set(t,c));let d=s.bitrate;fv(d);let h=p*vo(n??.5,r.bitrateAudioFactorAtEmptyBuffer,r.bitrateAudioFactorAtFullBuffer),f,b=Ls(s,e,t,r.minVideoAudioRatio),g=l||i;X(g)&&isFinite(g)&&(f=c.find(v=>X(v.bitrate)&&X(b?.bitrate)?g-d>=v.bitrate*h&&v.bitrate>=b.bitrate:!1)),f||(f=b);let S=o?.last,T=f&&To(r,u,f,o);return X(o)&&T?.bitrate!==S?.bitrate&&u({message:`
97
+ [AUDIO TRACKS ABR]
98
+ [available audio tracks]
99
+ ${t.map(v=>`{ id: ${v.id}, bitrate: ${v.bitrate} }`).join(`
100
+ `)}
101
+
102
+ [tuning]
103
+ ${(0,Ui.default)(r??{}).map(([v,P])=>`${v}: ${P}`).join(`
104
+ `)}
105
+
106
+ [limit params]
107
+ estimatedThroughput: ${i},
108
+ stallsPredictedThroughput: ${l},
109
+ reserve: ${d},
110
+ playbackRate: ${a},
111
+ playbackRateFactor: ${p},
112
+ forwardBufferHealth: ${n},
113
+ bitrateFactor: ${h},
114
+ minBufferToSwitchUp: ${r.minBufferToSwitchUp},
115
+
116
+ [selected audio track] ${T?.id}
117
+ `}),T};var Ee=s=>new URL(s).hostname;import{assertNever as kv,assertNonNullable as Av,combine as B$,debounce as D$,ErrorCategory as Rv,filter as Lv,filterChanged as C$,isNonNullable as Hc,map as Ao,merge as Mv,observableFrom as V$,once as O$,Subscription as _$,ValueSubject as jc,videoQualityToHeight as $v,videoSizeToQuality as N$}from"@vkontakte/videoplayer-shared";var xv=C(At(),1);var Sv=C(gt(),1),gv=s=>{if(s instanceof DOMException&&(0,Sv.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(!gv(i))return!1;if(e&&e(),t)return console.warn(i),!1;s.muted=!0;try{await s.play()}catch(r){return gv(r)&&(s.muted=!1,console.warn(r)),!1}}return!0};import{isNonNullable as Po,isNullable as m$,assertNonNullable as Bs}from"@vkontakte/videoplayer-shared";var yv=C(Ni(),1);import{isNonNullable as vv,assertNonNullable as wo,now as h$}from"@vkontakte/videoplayer-shared";function Le(){return h$()}function Nc(s){return Le()-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 Tv(s,e,t){let i=(...r)=>{t.apply(null,r),s.removeEventListener(e,i)};s.addEventListener(e,i)}function kr(s,e,t,i){let r=window.XMLHttpRequest,a,n,o,u=!1,l=0,p,c,d=!1,h="arraybuffer",f=7e3,b=2e3,g=()=>{if(u)return;wo(p);let I=Nc(p),x;if(I<b){x=b-I,setTimeout(g,x);return}b*=2,b>f&&(b=f),n&&n.abort(),n=new r,M()},S=I=>(a=I,D),T=I=>(c=I,D),v=()=>(h="json",D),P=()=>{if(!u){if(--l>=0){g(),i&&i();return}u=!0,c&&c(),t&&t()}},w=I=>(d=I,D),M=()=>{p=Le(),n=new r,n.open("get",s);let I=0,x,A=0,re=()=>(wo(p),Math.max(p,Math.max(x||0,A||0)));if(a&&n.addEventListener("progress",B=>{let q=Le();a.updateChunk&&B.loaded>I&&(a.updateChunk(re(),B.loaded-I),I=B.loaded,x=q)}),o&&(n.timeout=o,n.addEventListener("timeout",()=>P())),n.addEventListener("load",()=>{if(u)return;wo(n);let B=n.status;if(B>=200&&B<300){let{response:q,responseType:K}=n,ne=q?.byteLength;if(typeof ne=="number"&&a){let Se=ne-I;Se&&a.updateChunk&&a.updateChunk(re(),Se)}K==="json"&&(!q||!(0,yv.default)(q).length)?P():(c&&c(),e(q))}else P()}),n.addEventListener("error",()=>{P()}),d){let B=()=>{wo(n),n.readyState===XMLHttpRequest.HEADERS_RECEIVED&&(A=Le(),n.removeEventListener("readystatechange",B))};n.addEventListener("readystatechange",B)}return n.responseType=h,n.send(),D},D={withBitrateReporting:S,withParallel:w,withJSONResponse:v,withRetryCount:I=>(l=I,D),withRetryInterval:(I,x)=>(vv(I)&&(b=I),vv(x)&&(f=x),D),withTimeout:I=>(o=I,D),withFinally:T,send:M,abort:()=>{n&&(n.abort(),n=void 0),u=!0,c&&c()}};return D}var Ms=class{constructor(e){this.intervals=[];this.currentRate=0;this.logger=e}_updateRate(e){let t=.2;this.currentRate&&(e<this.currentRate*.1?t=.8:e<this.currentRate*.5?t=.5:e<this.currentRate*.7&&(t=.3)),e=Math.max(1,Math.min(e,100*1024*1024)),this.currentRate=this.currentRate?this.currentRate*(1-t)+e*t:e}_createInterval(e,t,i){return{start:e,end:t,bytes:i}}_doMergeIntervals(e,t){e.start=Math.min(t.start,e.start),e.end=Math.max(t.end,e.end),e.bytes+=t.bytes}_mergeIntervals(e,t){return e.start<=t.end&&t.start<=e.end?(this._doMergeIntervals(e,t),!0):!1}_flushIntervals(){if(!this.intervals.length)return!1;let e=this.intervals[0].start,t=this.intervals[this.intervals.length-1].end-500;if(t-e>2e3){let i=0,r=0;for(;this.intervals.length>0;){let a=this.intervals[0];if(a.end<=t)i+=a.end-a.start,r+=a.bytes,this.intervals.splice(0,1);else{if(a.start>=t)break;{let n=t-a.start,o=a.end-a.start;i+=n;let u=a.bytes*n/o;r+=u,a.start=t,a.bytes-=u}}}if(r>0&&i>0){let a=r*8/(i/1e3);return this._updateRate(a),this.logger(`rate updated, new=${Math.round(a/1024)}K; average=${Math.round(this.currentRate/1024)}K bytes/ms=${Math.round(r)}/${Math.round(i)} interval=${Math.round(t-e)}`),!0}}return!1}_joinIntervals(){let e;do{e=!1;for(let t=0;t<this.intervals.length-1;++t)this._mergeIntervals(this.intervals[t],this.intervals[t+1])&&(this.intervals.splice(t+1,1),e=!0)}while(e)}addInterval(e,t,i){return this.intervals.push(this._createInterval(e,t,i)),this._joinIntervals(),this.intervals.length>100&&(this.logger(`too many intervals (${this.intervals.length}); will merge`,{type:"warn"}),this._doMergeIntervals(this.intervals[1],this.intervals[0]),this.intervals.splice(0,1)),this._flushIntervals()}getBitRate(){return this.currentRate}};var Iv=C(Ni(),1);var $s=class{constructor(e,t,i,r,a){this.pendingQueue=[];this.activeRequests={};this.completeRequests={};this.averageSegmentDuration=2e3;this.lastPrefetchStart=0;this.throttleTimeout=null;this.RETRY_COUNT=e,this.TIMEOUT=t,this.BITRATE_ESTIMATOR=i,this.MAX_PARALLEL_REQUESTS=r,this.logger=a}limitCompleteCount(){let e;for(;(e=Object.keys(this.completeRequests)).length>this._getParallelRequestCount()+2;){let t=e[Math.floor(Math.random()*e.length)];this.logger(`Dropping completed request for url ${t}`,{type:"warn"}),delete this.completeRequests[t]}}_sendRequest(e,t){let i=Le(),r=u=>{delete this.activeRequests[t],this.limitCompleteCount(),this.completeRequests[t]=e,this._sendPending(),e._error=1,e._errorMsg=u,e._errorCB?e._errorCB(u):(this.limitCompleteCount(),this.completeRequests[t]=e)},a=u=>{e._complete=1,e._responseData=u,e._downloadTime=Le()-i,delete this.activeRequests[t],this._sendPending(),e._cb?e._cb(u,e._downloadTime):(this.limitCompleteCount(),this.completeRequests[t]=e)},n=()=>{e._finallyCB&&e._finallyCB()},o=()=>{e._retry=1,e._retryCB&&e._retryCB()};e._request=kr(t,a,()=>r("error"),o),e._request.withRetryCount(this.RETRY_COUNT).withTimeout(this.TIMEOUT).withBitrateReporting(this.BITRATE_ESTIMATOR).withParallel(this._getParallelRequestCount()>1).withFinally(n),this.activeRequests[t]=e,e._request.send(),this.lastPrefetchStart=Le()}_getParallelRequestCount(){return Math.min(this.MAX_PARALLEL_REQUESTS,this.averageSegmentDuration<3e3?3:2)}_getPrefetchDelay(){return Math.max(100,Math.min(5e3,this.averageSegmentDuration/3))}_canSendPending(){let e=this._getParallelRequestCount(),t=Le();if(Object.keys(this.activeRequests).length>=e)return!1;let i=this._getPrefetchDelay()-(t-this.lastPrefetchStart);return this.throttleTimeout&&clearTimeout(this.throttleTimeout),i>0?(this.throttleTimeout=window.setTimeout(()=>this._sendPending(),i),!1):!0}_sendPending(){for(;this._canSendPending();){let e=this.pendingQueue.pop();if(e){if(this.activeRequests[e]||this.completeRequests[e])continue;this.logger(`Submitting pending request url=${e}`),this._sendRequest({},e)}else return}}_removeFromActive(e){delete this.completeRequests[e],delete this.activeRequests[e]}abortAll(){(0,Iv.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 b$}from"@vkontakte/videoplayer-shared";var ko=1e4,Uc=3;var g$=6e4,S$=10,v$=1,y$=500,Ds=class{constructor(e){this.paused=!1;this.autoQuality=!0;this.autoQualityLimits=void 0;this.buffering=!0;this.destroyed=!1;this.videoPlayStarted=!1;this.lowLatency=!1;this.bitrate=0;this.manifest=[];this.sourceBuffer=0;this.bufferStates=[];this.sourceJitter=-1;this.waitingForFirstBufferAfterSrcChange=!1;this.params=e,this.soundProhibitedEvent$=new b$,this.chunkRateEstimator=new Ms(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*(N.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||{};!ov({limits:this.autoQualityLimits,highestAvailableHeight:this.manifest[0].video.height,lowestAvailableHeight:(0,xv.default)(this.manifest,-1).video.height})&&(u&&a.video.height>u||l&&a.video.height<l)||(a.bitrate<e&&n>Math.min(a.video.height,a.video.width)?(!r||a.bitrate>r.bitrate)&&(r=a):(!i||i.bitrate>a.bitrate)&&(i=a))}return r||i}shouldPlay(){if(this.paused)return!1;let t=this._getBufferSizeSec()-Math.max(1,this.sourceJitter);return t>3||Po(this.downloadRate)&&(this.downloadRate>1.5&&t>2||this.downloadRate>2&&t>1)}_setVideoSrc(e,t){let{logger:i,videoElement:r,playerCallback:a}=this.params;this.mediaSource=new window.MediaSource,i("setting video src"),r.src=URL.createObjectURL(this.mediaSource),this.mediaSource.addEventListener("sourceopen",()=>{this.mediaSource&&(this.sourceBuffer=this.mediaSource.addSourceBuffer(e.codecs),this.bufferStates=[],t())}),this.videoPlayStarted=!1,r.addEventListener("canplay",()=>{this.shouldPlay()&&(this.videoPlayStarted=!0,this._playVideoElement())});let n=()=>{Tv(r,"progress",()=>{r.buffered.length?(r.currentTime=r.buffered.start(0),this.waitingForFirstBufferAfterSrcChange=!1,a({name:"playing"})):n()})};this.waitingForFirstBufferAfterSrcChange=!0,n()}_initPlayerWith(e){this.bitrate=0,this.rep=0,this.sourceBuffer=0,this.bufferStates=[],this.filesFetcher&&this.filesFetcher.abortAll(),this.filesFetcher=new $s(Uc,ko,this.bitrateSwitcher,this.params.config.maxParallelRequests,this.params.logger),this._setVideoSrc(e,()=>this._switchToQuality(e))}_representation(e){let{logger:t,videoElement:i,playerCallback:r}=this.params,a=!1,n=null,o=null,u=null,l=null,p=!1,c=()=>{let P=a&&(!p||p===this.rep);return P||t("Not running!"),P},d=(P,w,M)=>{u&&u.abort(),u=kr(this.urlResolver.resolve(P,!1),w,M,()=>this._retryCallback()).withTimeout(ko).withBitrateReporting(this.bitrateSwitcher).withRetryCount(Uc).withFinally(()=>{u=null}).send()},h=(P,w,M)=>{Bs(this.filesFetcher),o?.abort(),o=this.filesFetcher.requestData(this.urlResolver.resolve(P,!1),w,M,()=>this._retryCallback()).withFinally(()=>{o=null}).send()},f=P=>{let w=i.playbackRate;i.playbackRate!==P&&(t(`Playback rate switch: ${w}=>${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 M=Le()-1e4,O=0;for(let R=0;R<this.bufferStates.length;R++){let y=this.bufferStates[R];P=Math.min(P,y.buf),y.ts<M&&O++}this.bufferStates.splice(0,O),t(`update playback rate; minBuffer=${P} drop=${O} jitter=${this.sourceJitter}`);let E=P-v$;this.sourceJitter>=0?E-=this.sourceJitter/2:this.sourceJitter-=1,E>3?f(1.15):E>1?f(1.1):E>.3?f(1.05):f(1)}},S=P=>{let w,M=()=>w&&w.start?w.start.length:0,O=B=>w.start[B]/1e3,E=B=>w.dur[B]/1e3,R=B=>w.fragIndex+B,y=(B,q)=>({chunkIdx:R(B),startTS:O(B),dur:E(B),discontinuity:q}),D=()=>{let B=0;if(w&&w.dur){let q=this.lowLatency?this.params.config.lowLatencyMinBuffer:this.params.config.minBuffer,K=this.lowLatency?this.params.config.lowLatencyMinBufferSegments:this.params.config.minBufferSegments,ne=q;this.sourceJitter>1&&(ne+=this.sourceJitter-1);let Se=w.dur.length-1;for(;Se>=0&&(ne-=w.dur[Se],!(ne<=0));--Se);B=Math.min(Se,w.dur.length-1-K),B=Math.max(B,0)}return y(B,!0)},I=B=>{let q=M();if(!(q<=0)){if(Po(B)){for(let K=0;K<q;K++)if(O(K)>B)return y(K)}return D()}},x=B=>{let q=M(),K=B?B.chunkIdx+1:0,ne=K-w.fragIndex;if(!(q<=0)){if(!B||ne<0||ne-q>S$)return t(`Resync: offset=${ne} bChunks=${q} chunk=`+JSON.stringify(B)),D();if(!(ne>=q))return y(K-w.fragIndex,!1)}},A=(B,q,K)=>{l&&l.abort(),l=kr(this.urlResolver.resolve(B,!0,this.lowLatency),q,K,()=>this._retryCallback()).withTimeout(ko).withRetryCount(Uc).withFinally(()=>{l=null}).withJSONResponse().send()};return{seek:(B,q)=>{A(P,K=>{if(!c())return;w=K;let ne=!!w.lowLatency;ne!==this.lowLatency&&b(ne);let Se=0;for(let oe=0;oe<w.dur.length;++oe)Se+=w.dur[oe];Se>0&&(Bs(this.filesFetcher),this.filesFetcher.optimizeForSegDuration(Se/w.dur.length)),r({name:"index",zeroTime:w.zeroTime,shiftDuration:w.shiftDuration}),this.sourceJitter=w.hasOwnProperty("jitter")?Math.min(10,Math.max(.01,w.jitter/1e3)):1,B(I(q))},()=>this._handleNetworkError())},nextChunk:x}},T=()=>{a=!1,o&&o.abort(),u&&u.abort(),l&&l.abort(),Bs(this.filesFetcher),this.filesFetcher.abortAll()};return p={start:P=>{let{videoElement:w,logger:M}=this.params,O=S(e.jidxUrl),E,R,y,D,I=0,x,A,re,B=()=>{x&&(clearTimeout(x),x=void 0);let V=Math.max(y$,1e3*(this._getBufferSizeSec()-this.sourceJitter-5)),Pe=I+V,ve=Le(),te=Math.min(1e4,Pe-ve);I=ve;let Te=()=>{l||c()&&O.seek(()=>{c()&&(I=Le(),q(),B())})};te>0?x=window.setTimeout(()=>{this.paused?B():Te()},te):Te()},q=()=>{let V;for(;V=O.nextChunk(D);)D=V,Z(V);let Pe=O.nextChunk(y);if(Pe){if(y&&Pe.discontinuity){M("Detected discontinuity; restarting playback"),this.paused?B():(T(),this._initPlayerWith(e));return}oe(Pe)}else B()},K=(V,Pe)=>{if(!c()||!this.sourceBuffer)return;let ve,te,Te,rt=qe=>{window.setTimeout(()=>{c()&&K(V,Pe)},qe)};if(this.sourceBuffer.updating)M("Source buffer is updating; delaying appendBuffer"),rt(100);else{let qe=Le(),ce=w.currentTime;!this.paused&&w.buffered.length>1&&A===ce&&qe-re>500&&(M("Stall suspected; trying to fix"),this._fixupStall()),A!==ce&&(A=ce,re=qe);let st=this._getBufferSizeSec();if(st>30)M(`Buffered ${st} seconds; delaying appendBuffer`),rt(2e3);else try{this.sourceBuffer.appendBuffer(V),this.videoPlayStarted?(this.bufferStates.push({ts:qe,buf:st}),g(),this.bufferStates.length>200&&this.bufferStates.shift()):this.shouldPlay()&&(this.videoPlayStarted=!0,this._playVideoElement()),Pe&&Pe()}catch(we){if(we.name==="QuotaExceededError")M("QuotaExceededError; delaying appendBuffer"),Te=this.sourceBuffer.buffered.length,Te!==0&&(ve=this.sourceBuffer.buffered.start(0),te=ce,te-ve>4&&this.sourceBuffer.remove(ve,te-3)),rt(1e3);else throw we}}},ne=()=>{R&&E&&(M([`Appending chunk, sz=${R.byteLength}:`,JSON.stringify(y)]),K(R,function(){R=null,q()}))},Se=V=>e.fragUrlTemplate.replace("%%id%%",V.chunkIdx),oe=V=>{c()&&h(Se(V),(Pe,ve)=>{if(c()){if(ve/=1e3,R=Pe,y=V,n=V.startTS,ve){let te=Math.min(10,V.dur/ve);this.downloadRate=this.downloadRate?(1-.3)*this.downloadRate+.3*te:te}ne()}},()=>this._handleNetworkError())},Z=V=>{c()&&(Bs(this.filesFetcher),this.filesFetcher.prefetch(this.urlResolver.resolve(Se(V),!1)))},L=V=>{c()&&(e.cachedHeader=V,K(V,()=>{E=!0,ne()}))};a=!0,O.seek(V=>{if(c()){if(I=Le(),!V){B();return}D=V,!m$(P)||V.startTS>P?oe(V):(y=V,q())}},P),e.cachedHeader?L(e.cachedHeader):d(e.headerUrl,L,()=>this._handleNetworkError())},stop:T,getTimestampSec:()=>n},p}_switchToQuality(e){let{logger:t,playerCallback:i}=this.params,r;e.bitrate!==this.bitrate&&(this.rep&&(r=this.rep.getTimestampSec(),Po(r)&&(r+=.1),this.rep.stop()),this.currentManifestEntry=e,this.rep=this._representation(e),t(`switch to quality: codecs=${e.codecs}; headerUrl=${e.headerUrl}; bitrate=${e.bitrate}`),this.bitrate=e.bitrate,Bs(this.bitrateSwitcher),this.bitrateSwitcher.notifySwitch(this.bitrate),this.rep.start(r),i({name:"qualitySwitch",quality:e}))}_qualityAvailable(e){return Po(this.manifest.find(t=>t.name===e))}_initBitrateSwitcher(){let{logger:e,playerCallback:t}=this.params,i=c=>{if(!this.autoQuality)return;let d,h,f;if(this.currentManifestEntry&&this._qualityAvailable(this.currentManifestEntry.name)&&c<this.bitrate&&(h=this._getBufferSizeSec(),f=c/this.bitrate,h>10&&f>.8||h>15&&f>.5||h>20&&f>.3)){e(`Not switching: buffer=${Math.floor(h)}; bitrate=${this.bitrate}; newRate=${Math.floor(c)}`);return}d=this._selectQuality(c),d?this._switchToQuality(d):e(`Could not find quality by bitrate ${c}`)},a={updateChunk:(d,h)=>{let f=Le();if(this.chunkRateEstimator.addInterval(d,f,h)){let g=this.chunkRateEstimator.getBitRate();return t({name:"bandwidth",size:h,duration:f-d,speed:g}),!0}},get:()=>{let d=this.chunkRateEstimator.getBitRate();return d?d*.85:0}},n=-1/0,o,u=!0,l=()=>{let c=a.get();if(c&&o&&this.autoQuality){if(u&&c>o&&Nc(n)<3e4)return;i(c)}u=this.autoQuality};return{updateChunk:(c,d)=>{let h=a.updateChunk(c,d);return h&&l(),h},notifySwitch:c=>{let d=Le();c<o&&(n=d),o=c}}}_fetchManifest(e,t,i){this.manifestRequest=kr(this.urlResolver.resolve(e,!0),t,i,()=>this._retryCallback()).withJSONResponse().withTimeout(ko).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))},g$))}_initManifest(){this._fetchManifest(this.manifestUrl,e=>{this.destroyed||(this._handleManifestUpdate(e),this._refetchManifest(this.manifestUrl))},()=>this._handleNetworkError())}};var Pv=C(Mi(),1);import{debounce as T$,filter as Ev,fromEvent as I$,interval as x$,isHigher as E$,isInvariantQuality as w$,isLower as P$,merge as k$,Subject as wv,Subscription as A$}from"@vkontakte/videoplayer-shared";var qc=class{constructor(){this.onDroopedVideoFramesLimit$=new wv;this.subscription=new A$;this.playing=!1;this.tracks=[];this.forceChecker$=new wv;this.isForceCheckCounter=0;this.prevTotalVideoFrames=0;this.prevDroppedVideoFrames=0;this.limitCounts={};this.handleChangeVideoQuality=()=>{let e=this.tracks.find(({size:t})=>t?.height===this.video.videoHeight&&t?.width===this.video.videoWidth);e&&!w$(e.quality)&&this.onChangeQuality(e.quality)};this.checkDroppedFrames=()=>{let{totalVideoFrames:e,droppedVideoFrames:t}=this.video.getVideoPlaybackQuality(),i=e-this.prevTotalVideoFrames,r=t-this.prevDroppedVideoFrames,a=1-(i-r)/i;!isNaN(a)&&a>0&&this.log({message:`[dropped]. current dropped percent: ${a}, limit: ${this.droppedFramesChecker.percentLimit}`}),!isNaN(a)&&a>=this.droppedFramesChecker.percentLimit&&E$(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(I$(this.video,"resize").subscribe(this.handleChangeVideoQuality));let e=x$(this.droppedFramesChecker.checkTime).pipe(Ev(()=>this.playing),Ev(()=>{let r=!!this.isForceCheckCounter;return r&&(this.isForceCheckCounter-=1),!r})),t=this.forceChecker$.pipe(T$(this.droppedFramesChecker.checkTime)),i=k$(e,t);this.subscription.add(i.subscribe(this.checkDroppedFrames))}onChangeQuality(e){this.currentQuality=e;let{totalVideoFrames:t,droppedVideoFrames:i}=this.video.getVideoPlaybackQuality();this.savePrevFrameCounts(t,i),this.isForceCheckCounter=this.droppedFramesChecker.tickCountAfterQualityChange,this.forceChecker$.next()}onDroopedVideoFramesLimitTrigger(){this.isAuto.getState()&&(this.log({message:`[onDroopedVideoFramesLimit]. maxQualityLimit: ${this.maxQualityLimit}`}),this.onDroopedVideoFramesLimit$.next())}getMaxQualityLimit(e){let t=(0,Pv.default)(this.limitCounts).filter(([,i])=>i>=this.droppedFramesChecker.countLimit).sort(([i],[r])=>P$(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=qc;import{map as R$,Observable as L$}from"@vkontakte/videoplayer-shared";import{fromEvent as M$}from"@vkontakte/videoplayer-shared";var Cs=()=>!!window.documentPictureInPicture?.window||!!document.pictureInPictureElement;var $$=(s,e)=>new L$(t=>{if(!window.IntersectionObserver)return;let i={root:null},r=new IntersectionObserver((n,o)=>{n.forEach(u=>t.next(u.isIntersecting||Cs()))},{...i,...e});r.observe(s);let a=M$(document,"visibilitychange").pipe(R$(n=>!document.hidden||Cs())).subscribe(n=>t.next(n));return()=>{r.unobserve(s),a.unsubscribe()}}),et=$$;var F$=["paused","playing","ready"],U$=["paused","playing","ready"],Vs=class{constructor(e){this.subscription=new _$;this.videoState=new F("stopped");this.representations$=new jc([]);this.droppedFramesManager=new Ar;this.maxSeekBackTime$=new jc(1/0);this.zeroTime$=new jc(void 0);this.liveOffset=new Fi;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:Rv.WTF,message:"LiveDashPlayer reported error"});break}case"manifest":{let t=e.manifest,i=[];for(let r of t){let a=r.name??r.index.toString(10),n=Vt(r.name)??N$(r.video),o=r.bitrate/1e3,u={...r.video};if(!n)continue;let l={id:a,quality:n,bitrate:o,size:u};i.push({track:l,representation:r})}this.representations$.next(i),this.params.output.availableVideoTracks$.next(i.map(({track:r})=>r)),this.videoState.getTransition()?.to==="manifest_ready"&&this.videoState.setState("manifest_ready");break}case"qualitySwitch":{let t=e.quality,i=this.representations$.getValue().find(({representation:r})=>r===t)?.track;this.params.output.hostname$.next(new URL(t.headerUrl,this.params.source.url).hostname),Hc(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,Gc.default)(U$,e)&&(n||o)){this.prepare();return}if(r?.to!=="paused"&&a.state==="requested"&&(0,Gc.default)(F$,e)){this.seek(a.position-this.liveOffset.getTotalPausedTime());return}switch(e){case"stopped":this.videoState.startTransitionTo("manifest_ready"),this.dash.attachSource(ge(this.params.source.url));return;case"manifest_ready":this.videoState.startTransitionTo("ready"),this.prepare();break;case"ready":if(i==="paused")this.videoState.setState("paused");else if(i==="playing"){this.videoState.startTransitionTo("playing");let u=r?.from;u&&u==="ready"&&this.dash.catchUp(),this.dash.play()}return;case"playing":i==="paused"&&(this.videoState.startTransitionTo("paused"),this.liveOffset.pause(),this.dash.pause());return;case"paused":if(i==="playing")if(this.videoState.startTransitionTo("playing"),this.liveOffset.getTotalPausedTime()<this.params.config.maxPausedTime&&this.liveOffset.getTotalOffset()<this.maxSeekBackTime$.getValue())this.liveOffset.resume(),this.dash.play(),this.params.output.position$.next(-this.liveOffset.getTotalOffset()/1e3);else{let u=this.liveOffset.getTotalOffset();u>=this.maxSeekBackTime$.getValue()&&(u=0,this.liveOffset.resetTo(u)),this.liveOffset.resume(),this.params.output.position$.next(-u/1e3),this.dash.reinit(ge(this.params.source.url,u))}return;default:return kv(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:Rv.WTF,message:"DashLiveProvider internal logic error",thrown:r})};this.subscription.add(Mv(this.videoState.stateChangeStarted$.pipe(Ao(r=>({transition:r,type:"start"}))),this.videoState.stateChangeEnded$.pipe(Ao(r=>({transition:r,type:"end"})))).subscribe(({transition:r,type:a})=>{this.log({message:`[videoState change] ${a}: ${JSON.stringify(r)}`})})),this.video=De(e.container,e.tuning),this.params.output.element$.next(this.video),this.dash=this.createLiveDashPlayer(),this.subscription.add(this.dash.soundProhibitedEvent$.subscribe(this.params.output.soundProhibitedEvent$)),this.params.output.duration$.next(1/0),this.params.output.position$.next(0),this.params.output.isLive$.next(!0),this.params.output.canChangePlaybackSpeed$.next(!1),this.params.output.hostname$.next(Ee(this.params.source.url)),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.textTracksManager.connect(this.video,this.params.desiredState,this.params.output);let i=Oe(this.video);this.subscription.add(()=>i.destroy()),this.subscription.add(this.representations$.pipe(Ao(r=>r.map(({track:a})=>a)),Lv(r=>!!r.length),O$()).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(C$(),Ao(r=>-r/1e3)).subscribe(this.params.output.duration$)).add(B$({zeroTime:this.zeroTime$.pipe(Lv(Hc)),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&&$v(r),min:a&&$v(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 kv(r.to)}},t)).add(Mv(e.desiredState.playbackState.stateChangeStarted$,e.desiredState.seekState.stateChangeEnded$,e.desiredState.videoTrack.stateChangeStarted$,e.desiredState.autoVideoTrackSwitching.stateChangeStarted$,this.videoState.stateChangeEnded$,this.droppedFramesManager.onDroopedVideoFramesLimit$,V$(["init"])).pipe(D$(0)).subscribe(this.syncPlayback,t))}destroy(){this.subscription.unsubscribe(),this.textTracksManager.destroy(),this.droppedFramesManager.destroy(),this.dash.destroy(),this.params.output.element$.next(void 0),Ce(this.video)}createLiveDashPlayer(){let e=new Ds({videoElement:this.video,videoState:this.videoState,liveOffset:this.liveOffset,config:{maxParallelRequests:this.params.config.maxParallelRequests,minBuffer:this.params.tuning.live.minBuffer,minBufferSegments:this.params.tuning.live.minBufferSegments,lowLatencyMinBuffer:this.params.tuning.live.lowLatencyMinBuffer,lowLatencyMinBufferSegments:this.params.tuning.live.lowLatencyMinBufferSegments,isLiveCatchUpMode:this.params.tuning.live.isLiveCatchUpMode,manifestRetryInterval:this.params.tuning.manifestRetryInterval,manifestRetryMaxInterval:this.params.tuning.manifestRetryMaxInterval,manifestRetryMaxCount:this.params.tuning.manifestRetryMaxCount},playerCallback:this._dashCb,logger:t=>{this.params.dependencies.logger.log({message:String(t),component:"LiveDashPlayer"})}});return e.pause(),e}prepare(){let e=this.representations$.getValue(),t=this.params.desiredState.videoTrack.getTransition()?.to??this.params.desiredState.videoTrack.getState(),i=this.params.desiredState.autoVideoTrackSwitching.getTransition()?.to??this.params.desiredState.autoVideoTrackSwitching.getState(),r=!i&&Hc(t)?t:Ot(e.map(({track:l})=>l),{container:this.video.getBoundingClientRect(),panelSize:this.params.panelSize,estimatedThroughput:this.params.dependencies.throughputEstimator.throughput$.getValue(),tuning:this.params.tuning.autoTrackSelection,limits:this.params.desiredState.autoVideoTrackLimits.getState(),droppedVideoMaxQualityLimit:this.droppedFramesManager.droppedVideoMaxQualityLimit,abrLogger:this.params.dependencies.abrLogger}),a=r?.id,n=this.params.desiredState.videoTrack.getTransition(),o=this.params.desiredState.videoTrack.getState()?.id,u=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(r&&(n||a!==o)&&this.setVideoTrack(r),u&&this.setAutoQuality(i),n||u||a!==o){let l=e.find(({track:p})=>p.id===a)?.representation;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(ge(this.params.source.url,n)),r&&this.dash.pause(),this.liveOffset.resetTo(n,r)}};var Bv=Vs;var de=(s,e)=>{let t=0;for(let i=0;i<s.length;i++){let r=s.start(i)*1e3,a=s.end(i)*1e3;r<=e&&e<=a&&(t=a)}return Math.max(t-e,0)};import{assertNever as wD,assertNonNullable as PD,debounce as kD,ErrorCategory as QT,filter as Rd,filterChanged as xa,fromEvent as AD,isNonNullable as WT,map as Ld,merge as iu,observableFrom as Md,once as YT,Subscription as RD}from"@vkontakte/videoplayer-shared";var Ro=class{constructor(){Object.defineProperty(this,"listeners",{value:{},writable:!0,configurable:!0})}addEventListener(e,t,i){e in this.listeners||(this.listeners[e]=[]),this.listeners[e].push({callback:t,options:i})}removeEventListener(e,t){if(!(e in this.listeners))return;let i=this.listeners[e];for(let r=0,a=i.length;r<a;r++)if(i[r].callback===t){i.splice(r,1);return}}dispatchEvent(e){if(!(e.type in this.listeners))return;let i=this.listeners[e.type].slice();for(let r=0,a=i.length;r<a;r++){let n=i[r];try{n.callback.call(this,e)}catch(o){Promise.resolve().then(()=>{throw o})}n.options&&n.options.once&&this.removeEventListener(e.type,n.callback)}return!e.defaultPrevented}},Rr=class extends Ro{constructor(){super(),this.listeners||Ro.call(this),Object.defineProperty(this,"aborted",{value:!1,writable:!0,configurable:!0}),Object.defineProperty(this,"onabort",{value:null,writable:!0,configurable:!0}),Object.defineProperty(this,"reason",{value:void 0,writable:!0,configurable:!0})}toString(){return"[object AbortSignal]"}dispatchEvent(e){e.type==="abort"&&(this.aborted=!0,typeof this.onabort=="function"&&this.onabort.call(this,e)),super.dispatchEvent(e)}},Os=class{constructor(){Object.defineProperty(this,"signal",{value:new Rr,writable:!0,configurable:!0})}abort(e){let t;try{t=new Event("abort")}catch{typeof document<"u"?document.createEvent?(t=document.createEvent("Event"),t.initEvent("abort",!1,!1)):(t=document.createEventObject(),t.type="abort"):t={type:"abort",bubbles:!1,cancelable:!1}}let i=e;if(i===void 0)if(typeof document>"u")i=new Error("This operation was aborted"),i.name="AbortError";else try{i=new DOMException("signal is aborted without reason")}catch{i=new Error("This operation was aborted"),i.name="AbortError"}this.signal.reason=i,this.signal.dispatchEvent(t)}toString(){return"[object AbortController]"}};typeof Symbol<"u"&&Symbol.toStringTag&&(Os.prototype[Symbol.toStringTag]="AbortController",Rr.prototype[Symbol.toStringTag]="AbortSignal");function Lo(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(!Lo({fetch:e,Request:t,AbortController:i,__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL:r}))return{fetch:e,Request:a};let a=t;(a&&!a.prototype.hasOwnProperty("signal")||r)&&(a=function(l,p){let c;p&&p.signal&&(c=p.signal,delete p.signal);let d=new t(l,p);return c&&Object.defineProperty(d,"signal",{writable:!1,enumerable:!1,configurable:!0,value:c}),d},a.prototype=t.prototype);let n=e;return{fetch:(u,l)=>{let p=a&&a.prototype.isPrototypeOf(u)?u.signal:l?l.signal:void 0;if(p){let c;try{c=new DOMException("Aborted","AbortError")}catch{c=new Error("Aborted"),c.name="AbortError"}if(p.aborted)return Promise.reject(c);let d=new Promise((h,f)=>{p.addEventListener("abort",()=>f(c),{once:!0})});return l&&l.signal&&delete l.signal,Promise.race([d,n(u,l)])}return n(u,l)},Request:a}}var q$=()=>"fetch"in window,_s=q$()&&Lo({fetch:window.fetch,Request:window.Request,AbortController:window.AbortController}),Dv=_s?zc({fetch:window.fetch,Request:window.Request,AbortController:window.AbortController}):void 0,vt=_s?Dv.fetch:window.fetch,F1=_s?Dv.Request:window.Request,ee=_s?Os:window.AbortController,U1=_s?Rr:window.AbortSignal;var wd=C(Ns(),1);var yy=C(vy(),1);import{ErrorCategory as Us}from"@vkontakte/videoplayer-shared";var Mo=s=>{if(!s)return{id:"EmptyResponse",category:Us.PARSER,message:"Empty response"};if(s.length<=2&&s.match(/^\d+$/))return{id:`UVError#${s}`,category:Us.NETWORK,message:`UV Error ${s}`};let e=(0,yy.default)(s).substring(0,100).toLowerCase();if(e.startsWith("<!doctype")||e.startsWith("<html>")||e.startsWith("<body>")||e.startsWith("<head>"))return{id:"UnexpectedHTML",category:Us.NETWORK,message:"Received unexpected HTML, possibly a ISP block"};if(e.startsWith("<?xml"))return new DOMParser().parseFromString(s,"text/xml").querySelector("parsererror")?{id:"InvalidXML",category:Us.PARSER,message:"XML parsing error"}:{id:"XMLParserLogicError",category:Us.PARSER,message:"Response is valid XML, but parser failed"}};var Ne=(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 Nr,combine as Fr,ErrorCategory as Nt,filter as Yo,filterChanged as ya,flattenObject as Ta,fromEvent as Ft,getTraceSubscriptionMethod as uD,interval as Id,isNonNullable as Ia,isNullable as FT,map as Ur,merge as Wi,now as xd,Subject as Ko,Subscription as Ed,tap as lD,throttle as UT,ValueSubject as pe}from"@vkontakte/videoplayer-shared";var Vo=C(gt(),1),Vr=C(At(),1),Oo=C(Ns(),1);var k0=(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)},A0=s=>window.clearTimeout(s),Ty=s=>typeof s=="function"&&s?.toString().endsWith("{ [native code] }"),Iy=!Ty(window.requestIdleCallback)||!Ty(window.cancelIdleCallback),Lr=Iy?k0:window.requestIdleCallback,_t=Iy?A0:window.cancelIdleCallback;var LT=C(Is(),1);import{assertNever as R0,ErrorCategory as xy,Subject as Ey}from"@vkontakte/videoplayer-shared";var L0=18,wy=!1;try{wy=N.browser.isSafari&&!!N.browser.safariVersion&&N.browser.safariVersion<=L0}catch(s){console.error(s)}var Jc=class{constructor(e){this.bufferFull$=new Ey;this.error$=new Ey;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:xy.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)};wy&&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:xy.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:R0(t)}}},Py=Jc;var Mr=s=>{let e=0;for(let t=0;t<s.length;t++)e+=s.end(t)-s.start(t);return e*1e3};import{abortable as gi,assertNonNullable as tt,ErrorCategory as Gi,fromEvent as RT,getExponentialDelay as bd,isNonNullable as Cr,isNullable as Fe,now as Co,once as KB,Subject as XB,Subscription as JB,ValueSubject as zi}from"@vkontakte/videoplayer-shared";var G=class{constructor(e,t){this.cursor=0;this.source=e,this.boxParser=t,this.children=[];let i=this.readUint32();this.type=this.readString(4),this.size32=i<=e.buffer.byteLength-e.byteOffset?i:NaN;let r=this.size32?this.size32-8:void 0,a=e.byteOffset+this.cursor;this.size64=0,this.usertype=0,this.content=new DataView(e.buffer,a,r)}get id(){return this.type}get size(){return this.size32}scanForBoxes(e){return this.boxParser.parse(e)}readString(e,t="ascii"){let r=new TextDecoder(t).decode(new DataView(this.source.buffer,this.source.byteOffset+this.cursor,e));return this.cursor+=e,r}readUint8(){let e=this.source.getUint8(this.cursor);return this.cursor+=1,e}readUint16(){let e=this.source.getUint16(this.cursor);return this.cursor+=2,e}readUint32(){let e=this.source.getUint32(this.cursor);return this.cursor+=4,e}readUint64(){let e=this.source.getBigInt64(this.cursor);return this.cursor+=8,e}};var $r=class extends G{};var qs=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 Hs=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 js=class extends G{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var se=class extends G{constructor(e,t){super(e,t);let i=this.readUint32();this.version=i>>>24,this.flags=i&16777215}};var Gs=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 G{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Qs=class extends G{constructor(e,t){super(e,t),this.data=this.content}};var qi=class extends se{get earliestPresentationTime(){return this.earliestPresentationTime32}get firstOffset(){return this.firstOffset32}constructor(e,t){super(e,t),this.segments=[],this.referenceId=this.readUint32(),this.timescale=this.readUint32(),this.earliestPresentationTime32=this.readUint32(),this.firstOffset32=this.readUint32(),this.earliestPresentationTime64=0,this.firstOffset64=0,this.referenceCount=this.readUint32()&65535;for(let i=0;i<this.referenceCount;i++){let r=this.readUint32(),a=r>>>31,n=r<<1>>>1,o=this.readUint32();r=this.readUint32();let u=r>>>28,l=r<<3>>>3;this.segments.push({referenceType:a,referencedSize:n,subsegmentDuration:o,SAPType:u,SAPDeltaTime:l})}}};var Ws=class extends G{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Ys=class extends G{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Ks=class extends se{constructor(e,t){switch(super(e,t),this.readUint8()){case 0:this.stereoMode=0;break;case 1:this.stereoMode=1;break;case 2:this.stereoMode=2;break;case 3:this.stereoMode=3;break;case 4:this.stereoMode=4;break}this.cursor+=1}};var Xs=class extends se{constructor(e,t){super(e,t),this.poseYawDegrees=this.readUint32(),this.posePitchDegrees=this.readUint32(),this.poseRollDegrees=this.readUint32()}};var Js=class extends se{constructor(e,t){super(e,t),this.projectionBoundsTop=this.readUint32(),this.projectionBoundsBottom=this.readUint32(),this.projectionBoundsLeft=this.readUint32(),this.projectionBoundsRight=this.readUint32()}};var Zs=class extends G{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var ea=class extends se{constructor(e,t){super(e,t),this.creationTime=this.readUint32(),this.modificationTime=this.readUint32(),this.trackId=this.readUint32(),this.cursor+=4,this.duration=this.readUint32(),this.cursor+=8,this.layer=this.readUint16(),this.alternateGroup=this.readUint16(),this.cursor+=2,this.cursor+=2,this.matrix=[[this.readUint32(),this.readUint32(),this.readUint32()],[this.readUint32(),this.readUint32(),this.readUint32()],[this.readUint32(),this.readUint32(),this.readUint32()]],this.width=this.readUint32(),this.height=this.readUint32()}};var ta=class extends G{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var ia=class extends G{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var ra=class extends se{constructor(e,t){super(e,t),this.sequenceNumber=this.readUint32()}};var sa=class extends G{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var aa=class extends se{constructor(e,t){super(e,t),this.trackId=this.readUint32(),this.flags&1&&(this.baseDataOffset=this.readUint64()),this.flags&2&&(this.sampleDescriptionIndex=this.readUint32()),this.flags&8&&(this.defaultSampleDuration=this.readUint32()),this.flags&16&&(this.defaultSampleSize=this.readUint32()),this.flags&32&&(this.defaultSampleFlags=this.readUint32())}};var na=class extends se{constructor(t,i){super(t,i);this.baseMediaDecodeTime32=0;this.baseMediaDecodeTime64=BigInt(0);this.version===1?this.baseMediaDecodeTime64=this.readUint64():this.baseMediaDecodeTime32=this.readUint32()}get baseMediaDecodeTime(){return this.version===1?this.baseMediaDecodeTime64:this.baseMediaDecodeTime32}};var oa=class extends se{constructor(t,i){super(t,i);this.sampleDuration=[];this.sampleSize=[];this.sampleFlags=[];this.sampleCompositionTimeOffset=[];this.optionalFields=0;this.sampleCount=this.readUint32(),this.flags&1&&(this.dataOffset=this.readUint32()),this.flags&4&&(this.firstSampleFlags=this.readUint32());for(let r=0;r<this.sampleCount;r++)this.flags&256&&this.sampleDuration.push(this.readUint32()),this.flags&512&&this.sampleSize.push(this.readUint32()),this.flags&1024&&this.sampleFlags.push(this.readUint32()),this.flags&2048&&this.sampleCompositionTimeOffset.push(this.readUint32())}};var ua=class extends G{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var la=class extends se{constructor(e,t){super(e,t),this.entryCount=this.readUint32(),this.children=this.scanForBoxes(new DataView(this.content.buffer,this.content.byteOffset+8,this.content.byteLength-8))}};var ca=class extends 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 $0={ftyp:Hs,moov:js,mvhd:Gs,moof:zs,mdat:Qs,sidx:qi,trak:Ws,mdia:Zs,mfhd:ra,tkhd:ea,traf:sa,tfhd:aa,tfdt:na,trun:oa,minf:ta,sv3d:Ys,st3d:Ks,prhd:Xs,proj:ia,equi:Js,uuid:qs,stbl:ua,stsd:la,avc1:ca,unknown:$r},ei=class s{constructor(e={}){this.options={offset:0,...e}}parse(e){let t=[],i=this.options.offset;for(;i<e.byteLength;)try{let a=new TextDecoder("ascii").decode(new DataView(e.buffer,e.byteOffset+i+4,4)),n=this.createBox(a,new DataView(e.buffer,e.byteOffset+i));if(!n.size)break;t.push(n),i+=n.size}catch{break}return t}createBox(e,t){let i=$0[e];return i?new i(t,new s):new $r(t,new s)}};var bi=class{constructor(e){this.index={},this.indexBoxLevel(e)}indexBoxLevel(e){e.forEach(t=>{this.index[t.type]??=[],this.index[t.type].push(t),t.children.length>0&&this.indexBoxLevel(t.children)})}find(e){return this.index[e]&&this.index[e][0]?this.index[e][0]:null}findAll(e){return this.index[e]||[]}};var D0=new TextDecoder("ascii"),C0=s=>D0.decode(new DataView(s.buffer,s.byteOffset+4,4))==="ftyp",V0=s=>{let e=new qi(s,new ei),t=e.earliestPresentationTime/e.timescale*1e3,i=s.byteOffset+s.byteLength+e.firstOffset;return e.segments.map(a=>{if(a.referenceType!==0)throw new Error("Unsupported multilevel sidx");let n=a.subsegmentDuration/e.timescale*1e3,o={status:"none",time:{from:t,to:t+n},byte:{from:i,to:i+a.referencedSize-1}};return t+=n,i+=a.referencedSize,o})},O0=(s,e)=>{let i=new ei().parse(s),r=new bi(i),a=r.findAll("moof"),n=e?r.findAll("uuid"):r.findAll("mdat");if(!(n.length&&a.length))return null;let o=a[0],u=n[n.length-1],l=o.source.byteOffset,c=u.source.byteOffset-o.source.byteOffset+u.size;return new DataView(s.buffer,l,c)},_0=s=>{let t=new ei().parse(s),i=new bi(t),r={},a=i.findAll("uuid");return a.length?a[a.length-1]:r},N0=s=>{let t=new ei().parse(s);return new bi(t).find("sidx")?.timescale},F0=(s,e)=>{let i=new ei().parse(s),a=new bi(i).findAll("traf"),n=a[a.length-1].children.find(c=>c.type==="tfhd"),o=a[a.length-1].children.find(c=>c.type==="tfdt"),u=a[a.length-1].children.find(c=>c.type==="trun"),l=0;return u.sampleDuration.length?l=u.sampleDuration.reduce((c,d)=>c+d,0):l=n.defaultSampleDuration*u.sampleCount,(Number(o.baseMediaDecodeTime)+l)/e*1e3},U0=s=>{let e={is3dVideo:!1,stereoMode:0,projectionType:1,projectionData:{pose:{yaw:0,pitch:0,roll:0},bounds:{top:0,bottom:0,left:0,right:0}}},i=new ei().parse(s),r=new bi(i);if(r.find("sv3d")){e.is3dVideo=!0;let n=r.find("st3d");n&&(e.stereoMode=n.stereoMode);let o=r.find("prhd");o&&(e.projectionData.pose.yaw=o.poseYawDegrees,e.projectionData.pose.pitch=o.posePitchDegrees,e.projectionData.pose.roll=o.poseRollDegrees);let u=r.find("equi");u&&(e.projectionData.bounds.top=u.projectionBoundsTop,e.projectionData.bounds.right=u.projectionBoundsRight,e.projectionData.bounds.bottom=u.projectionBoundsBottom,e.projectionData.bounds.left=u.projectionBoundsLeft)}return e},ky={validateData:C0,parseInit:U0,getIndexRange:()=>{},parseSegments:V0,parseFeedableSegmentChunk:O0,getChunkEndTime:F0,getServerLatencyTimestamps:_0,getTimescaleFromIndex:N0};var pa=C(gt(),1);import{assertNonNullable as ed,isNonNullable as My,isNullable as H0}from"@vkontakte/videoplayer-shared";import{assertNever as q0}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"}},Ry=s=>{let e=s.getUint8(0),t=0;e&128?t=1:e&64?t=2:e&32?t=3:e&16&&(t=4);let i=da(s,t),r=i in 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,p=da(u),c=l*2**((o-1)*8)+p,d=t+o,h;return d+c>s.byteLength?h=new DataView(s.buffer,s.byteOffset+d):h=new DataView(s.buffer,s.byteOffset+d,c),{tag:r?i:"0x"+i.toString(16).toUpperCase(),type:a,tagHeaderSize:d,tagSize:d+c,value:h,valueSize:c}},da=(s,e=s.byteLength)=>{switch(e){case 1:return s.getUint8(0);case 2:return s.getUint16(0);case 3:return s.getUint8(0)*2**16+s.getUint16(1);case 4:return s.getUint32(0);case 5:return s.getUint8(0)*2**32+s.getUint32(1);case 6:return s.getUint16(0)*2**32+s.getUint32(2);case 7:{let t=s.getUint8(0)*281474976710656+s.getUint16(1)*4294967296+s.getUint32(3);if(Number.isSafeInteger(t))return t}case 8:throw new ReferenceError("Int64 is not supported")}return 0},Rt=(s,e)=>{switch(e){case"int":return s.getInt8(0);case"uint":return da(s);case"float":return s.byteLength===4?s.getFloat32(0):s.getFloat64(0);case"string":return new TextDecoder("ascii").decode(s);case"utf8":return new TextDecoder("utf-8").decode(s);case"date":return new Date(Date.UTC(2001,0)+s.getInt8(0)).getTime();case"master":return s;case"binary":return s;default:q0(e)}},Hi=(s,e)=>{let t=0;for(;t<s.byteLength;){let i=new DataView(s.buffer,s.byteOffset+t),r=Ry(i);if(!e(r))return;r.type==="master"&&Hi(r.value,e),t=r.value.byteOffset-s.byteOffset+r.valueSize}},Ly=s=>{if(s.getUint32(0)!==440786851)return!1;let e,t,i,r=Ry(s);return Hi(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 $y=[357149030,290298740,374648427,174,224,30320,30321,30322,272869232,524531317,475249515,423732329,307544935],j0=[231,22612,22743,167,171,163,160,175],G0=s=>{let e,t,i,r,a=!1,n=!1,o=!1,u,l,p=!1,c=0;return Hi(s,({tag:d,type:h,value:f,valueSize:b})=>{if(d===21419){let g=Rt(f,h);l=da(g)}else d!==21420&&(l=void 0);return d===408125543?(e=f.byteOffset,t=f.byteOffset+b):d===357149030?a=!0:d===290298740?n=!0:d===2807729?i=Rt(f,h):d===17545?r=Rt(f,h):d===21420&&l===475249515?u=Rt(f,h):d===374648427?Hi(f,({tag:g,type:S,value:T})=>g===30321?(p=Rt(T,S)===1,!1):!0):a&&n&&(0,pa.default)($y,d)&&(o=!0),!o}),ed(e,"Failed to parse webm Segment start"),ed(t,"Failed to parse webm Segment end"),ed(r,"Failed to parse webm Segment duration"),i=i??1e6,{segmentStart:Math.round(e/1e9*i*1e3),segmentEnd:Math.round(t/1e9*i*1e3),timeScale:i,segmentDuration:Math.round(r/1e9*i*1e3),cuesSeekPosition:u,is3dVideo:p,stereoMode:c,projectionType:1,projectionData:{pose:{yaw:0,pitch:0,roll:0},bounds:{top:0,bottom:0,left:0,right:0}}}},z0=s=>{if(H0(s.cuesSeekPosition))return;let e=s.segmentStart+s.cuesSeekPosition,t=1024*1024;return{from:e,to:e+t}},Q0=(s,e)=>{let t=!1,i=!1,r=o=>My(o.time)&&My(o.position),a=[],n;return Hi(s,({tag:o,type:u,value:l})=>{switch(o){case 475249515:t=!0;break;case 187:n&&r(n)&&a.push(n),n={};break;case 179:n&&(n.time=Rt(l,u));break;case 183:break;case 241:n&&(n.position=Rt(l,u));break;default:t&&(0,pa.default)($y,o)&&(i=!0)}return!(t&&i)}),n&&r(n)&&a.push(n),a.map((o,u)=>{let{time:l,position:p}=o,c=a[u+1];return{status:"none",time:{from:l,to:c?c.time:e.segmentDuration},byte:{from:e.segmentStart+p,to:c?e.segmentStart+c.position-1:e.segmentEnd-1}}})},W0=s=>{let e=0,t=!1;try{Hi(s,i=>i.tag===524531317?i.tagSize<=s.byteLength?(e=i.tagSize,!1):(e+=i.tagHeaderSize,!0):(0,pa.default)(j0,i.tag)?(e+i.tagSize<=s.byteLength&&(e+=i.tagSize,t||=(0,pa.default)([163,160,175],i.tag)),!0):!1)}catch{}return e>0&&e<=s.byteLength&&t?new DataView(s.buffer,s.byteOffset,e):null},By={validateData:Ly,parseInit:G0,getIndexRange:z0,parseSegments:Q0,parseFeedableSegmentChunk:W0};var ha=s=>{let e=/^(.+)\/([^;]+)(?:;.*)?$/.exec(s);if(e){let[,t,i]=e;if(t==="audio"||t==="video")switch(i){case"webm":return By;case"mp4":return ky}}throw new ReferenceError(`Unsupported mime type ${s}`)};var hd=C(nd(),1),ET=C(Mi(),1),wT=C(od(),1),PT=C(At(),1),fd=C(Ni(),1);var fT=C(gt(),1),Dr=s=>{let e=s.split("."),[t,...i]=e;if(!t)return!1;switch(t){case"av01":{let[r,a,n]=i;return!!(n&&parseInt(n,10)>8)}case"vp09":{let[r,a,n]=i;return!!(r&&parseInt(r,10)>=2&&n&&parseInt(n,10)>8)}case"avc1":{let r=i[0];if(!r||r.length!==6)return!1;let[a,n]=r.toUpperCase(),o=a+n;return(0,fT.default)(["6E","7A","F4"],o)}}return!1};import{isNonNullable as zB,isNullable as IT}from"@vkontakte/videoplayer-shared";var $o=s=>{if(s.includes("/")){let e=s.split("/");return parseInt(e[0])/parseInt(e[1])}else return parseFloat(s)};var mT=s=>{try{let e=HB(),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 HB(){let s="(?<extlang>(?:[a-z]{3}(?:-[a-z]{3}){0,2}))",e="x(?:-[a-z0-9]{1,8})+",p=`^(?:(?<langtag>${`
118
+ (?<language>${`(?:[a-z]{2,3}(?:-${s})?|[a-z]{4}|[a-z]{5,8})`})
65
119
  (-(?<script>[a-z]{4}))?
66
120
  (-(?<region>(?:[a-z]{2}|[0-9]{3})))?
67
121
  (?<variants>(?:-(?:[a-z0-9]{5,8}|[0-9][a-z0-9]{3}))*)
68
122
  (?<extensions>(?:-[0-9a-wy-z](?:-[a-z0-9]{2,8})+)*)
69
123
  (?:-(?<privateuse>(?:${e})))?
70
- `})|(?<privateuse2>${e}))$`.replace(/[\s\t\n]/g,"");return new RegExp(c,"i")}var 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(p,"i")}var ld=C(At(),1);import{videoSizeToQuality as jB}from"@vkontakte/videoplayer-shared";var bT=({id:s,width:e,height:t,bitrate:i,fps:r,quality:a,streamId:n})=>{let o=(a?Vt(a):void 0)??jB({width:e,height:t});return o&&{id:s,quality:o,bitrate:i,size:{width:e,height:t},fps:r,streamId:n}},gT=({id:s,bitrate:e})=>({id:s,bitrate:e}),ST=({language:s,label:e},{id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:s,label:e}),vT=({language:s,label:e,id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:s,label:e}),cd=({id:s,language:e,label:t,codecs:i,isDefault:r})=>({id:s,language:e,label:t,codec:(0,ld.default)(i.split("."),0),isDefault:r}),dd=({id:s,language:e,label:t,hdr:i,codecs:r})=>({id:s,language:e,hdr:i,label:t,codec:(0,ld.default)(r.split("."),0)}),pd=s=>"url"in s,We=s=>s.type==="template",fa=s=>s instanceof DOMException&&(s.name==="AbortError"||s.code===20);var yT=s=>{s.sort((t,i)=>t.from-i.from);let e=[s[0]];for(let t=1;t<s.length;t++){let{from:i,to:r}=s[t],a=e[e.length-1];a.to>=i?a.to=Math.max(a.to,r):e.push(s[t])}return e},ji=(s,e)=>{for(let t of s)if(e(t))return t;return null},GB=(s,e)=>{let t=0;return()=>{let i=Date.now();i-t>=e&&(s(),t=i)}},TT=s=>{let e=!1,t=GB(()=>{e=!0},s);return()=>{try{return t(),e}finally{e=!1}}},Bo=s=>{let e=[];for(let t=0;t<s.length;t++){let i=Math.floor(s.start(t)*1e3),r=Math.ceil(s.end(t)*1e3);e.push(i,r)}return e};var xT=s=>{if(!s?.startsWith("P"))return;let e=(n,o)=>{let u=n?parseFloat(n.replace(",",".")):NaN;return(isNaN(u)?0:u)*o},i=/^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/.exec(s),r=i?.[1]==="-"?-1:1,a={days:e(i?.[5],r),hours:e(i?.[6],r),minutes:e(i?.[7],r),seconds:e(i?.[8],r)};return a.days*24*60*60*1e3+a.hours*60*60*1e3+a.minutes*60*1e3+a.seconds*1e3},ti=(s,e)=>{let t=s;t=(0,hd.default)(t,"$$","$");let i={RepresentationID:e.representationId,Number:e.segmentNumber,Bandwidth:e.bandwidth,Time:e.segmentTime};for(let[r,a]of(0,ET.default)(i)){let n=new RegExp(`\\$${r}(?:%0(\\d+)d)?\\$`,"g");t=(0,hd.default)(t,n,(o,u)=>IT(a)?o:IT(u)?a:(0,wT.default)(a,parseInt(u,10),"0"))}return t},kT=(s,e)=>{let i=new DOMParser().parseFromString(s,"application/xml"),r={video:[],audio:[],text:[]},a=i.children[0],n=Array.from(a.querySelectorAll("MPD > BaseURL").values()).map(R=>R.textContent?.trim()??""),o=(0,PT.default)(n,0)??"",u=a.getAttribute("type")==="dynamic",l=a.getAttribute("availabilityStartTime"),p=a.getAttribute("publishTime"),c=a.getElementsByTagName("vk:Attrs")[0],d=c?.getElementsByTagName("vk:XLatestSegmentPublishTime")[0].textContent,h=c?.getElementsByTagName("vk:XStreamIsLive")[0].textContent,f=c?.getElementsByTagName("vk:XStreamIsUnpublished")[0].textContent,b=c?.getElementsByTagName("vk:XPlaybackDuration")[0].textContent,g;u&&(g={availabilityStartTime:l?new Date(l).getTime():0,publishTime:p?new Date(p).getTime():0,latestSegmentPublishTime:d?new Date(d).getTime():0,streamIsAlive:h==="yes",streamIsUnpublished:f==="yes"});let S,T=a.getAttribute("mediaPresentationDuration"),v=[...a.getElementsByTagName("Period")],P=v.reduce((R,y)=>({...R,[y.id]:y.children}),{}),w=v.reduce((R,y)=>({...R,[y.id]:y.getAttribute("duration")}),{});T?S=xT(T):(0,fd.default)(w).filter(R=>R).length&&!u?S=(0,fd.default)(w).reduce((R,y)=>R+(xT(y)??0),0):b&&(S=parseInt(b,10));let M=0,O=a.getAttribute("profiles")?.split(",")??[];for(let R of v.map(y=>y.id))for(let y of P[R]){let D=y.getAttribute("id")??"id"+(M++).toString(10),I=y.getAttribute("mimeType")??"",x=y.getAttribute("codecs")??"",A=y.getAttribute("contentType")??I?.split("/")[0],re=y.getAttribute("profiles")?.split(",")??[],B=mT(y.getAttribute("lang")??"")??{},q=y.querySelector("Label")?.textContent?.trim()??void 0,K=y.querySelectorAll("Representation"),ne=y.querySelector("SegmentTemplate"),Se=y.querySelector("Role")?.getAttribute("value")??void 0,oe=A,Z={id:D,language:B.language,isDefault:Se==="main",label:q,codecs:x,hdr:oe==="video"&&Dr(x),mime:I,representations:[]};for(let L of K){let V=L.getAttribute("lang")??void 0,Pe=q??y.getAttribute("label")??L.getAttribute("label")??void 0,ve=L.querySelector("BaseURL")?.textContent?.trim()??"",te=new URL(ve||o,e).toString(),Te=L.getAttribute("mimeType")??I,rt=L.getAttribute("codecs")??x??"",qe;if(A==="text"){let ce=L.getAttribute("id")||"",st=B.privateuse?.includes("x-auto")||ce.includes("_auto"),we=L.querySelector("SegmentTemplate");if(we){let yt={representationId:L.getAttribute("id")??void 0,bandwidth:L.getAttribute("bandwidth")??void 0},qt=parseInt(L.getAttribute("bandwidth")??"",10)/1e3,Ht=parseInt(we.getAttribute("startNumber")??"",10)??1,at=parseInt(we.getAttribute("timescale")??"",10),wi=we.querySelectorAll("SegmentTimeline S")??[],nt=we.getAttribute("media");if(!nt)continue;let jt=[],Gt=0,zt="",ot=0,Tt=Ht,W=0;for(let ue of wi){let He=parseInt(ue.getAttribute("d")??"",10),ie=parseInt(ue.getAttribute("r")??"",10)||0,ke=parseInt(ue.getAttribute("t")??"",10);W=Number.isFinite(ke)?ke:W;let je=He/at*1e3,ut=W/at*1e3;for(let fe=0;fe<ie+1;fe++){let Ae=ti(nt,{...yt,segmentNumber:Tt.toString(10),segmentTime:(W+fe*He).toString(10)}),lt=(ut??0)+fe*je,xt=lt+je;Tt++,jt.push({time:{from:lt,to:xt},url:Ae})}W+=(ie+1)*He,Gt+=(ie+1)*je}ot=W/at*1e3,zt=ti(nt,{...yt,segmentNumber:Tt.toString(10),segmentTime:W.toString(10)});let It={time:{from:ot,to:1/0},url:zt},Ie={type:"template",baseUrl:te,segmentTemplateUrl:nt,initUrl:"",totalSegmentsDurationMs:Gt,segments:jt,nextSegmentBeyondManifest:It,timescale:at};qe={id:ce,kind:"text",segmentReference:Ie,profiles:[],duration:S,bitrate:qt,mime:"",codecs:"",width:0,height:0,isAuto:st}}else qe={id:ce,isAuto:st,kind:"text",url:te}}else{let ce=L.getAttribute("contentType")??Te?.split("/")[0]??A,st=y.getAttribute("profiles")?.split(",")??[],we=parseInt(L.getAttribute("width")??"",10),yt=parseInt(L.getAttribute("height")??"",10),qt=parseInt(L.getAttribute("bandwidth")??"",10)/1e3,Ht=L.getAttribute("frameRate")??"",at=L.getAttribute("quality")??void 0,wi=Ht?$o(Ht):void 0,nt=L.getAttribute("id")??"id"+(M++).toString(10),jt=ce==="video"?`${yt}p`:ce==="audio"?`${qt}Kbps`:rt,Gt=`${nt}@${jt}`,zt=[...O,...re,...st],ot,Tt=L.querySelector("SegmentBase"),W=L.querySelector("SegmentTemplate")??ne;if(Tt){let Ie=L.querySelector("SegmentBase Initialization")?.getAttribute("range")??"",[ue,He]=Ie.split("-").map(Ae=>parseInt(Ae,10)),ie={from:ue,to:He},ke=L.querySelector("SegmentBase")?.getAttribute("indexRange"),[je,ut]=ke?ke.split("-").map(Ae=>parseInt(Ae,10)):[],fe=ke?{from:je,to:ut}:void 0;ot={type:"byteRange",url:te,initRange:ie,indexRange:fe}}else if(W){let Ie={representationId:L.getAttribute("id")??void 0,bandwidth:L.getAttribute("bandwidth")??void 0},ue=parseInt(W.getAttribute("timescale")??"",10),He=W.getAttribute("initialization")??"",ie=W.getAttribute("media"),ke=parseInt(W.getAttribute("startNumber")??"",10)??1,je=ti(He,Ie);if(!ie)throw new ReferenceError("No media attribute in SegmentTemplate");let ut=W.querySelectorAll("SegmentTimeline S")??[],fe=[],Ae=0,lt="",xt=0;if(ut.length){let Qt=ke,le=0;for(let ct of ut){let me=parseInt(ct.getAttribute("d")??"",10),Ge=parseInt(ct.getAttribute("r")??"",10)||0,Wt=parseInt(ct.getAttribute("t")??"",10);le=Number.isFinite(Wt)?Wt:le;let Pi=me/ue*1e3,Ru=le/ue*1e3;for(let Yt=0;Yt<Ge+1;Yt++){let Lu=ti(ie,{...Ie,segmentNumber:Qt.toString(10),segmentTime:(le+Yt*me).toString(10)}),Jr=(Ru??0)+Yt*Pi,Mu=Jr+Pi;Qt++,fe.push({time:{from:Jr,to:Mu},url:Lu})}le+=(Ge+1)*me,Ae+=(Ge+1)*Pi}xt=le/ue*1e3,lt=ti(ie,{...Ie,segmentNumber:Qt.toString(10),segmentTime:le.toString(10)})}else if(zB(S)){let le=parseInt(W.getAttribute("duration")??"",10)/ue*1e3,ct=Math.ceil(S/le),me=0;for(let Ge=1;Ge<ct;Ge++){let Wt=ti(ie,{...Ie,segmentNumber:Ge.toString(10),segmentTime:me.toString(10)});fe.push({time:{from:me,to:me+le},url:Wt}),me+=le}xt=me,lt=ti(ie,{...Ie,segmentNumber:ct.toString(10),segmentTime:me.toString(10)})}let Au={time:{from:xt,to:1/0},url:lt};ot={type:"template",baseUrl:te,segmentTemplateUrl:ie,initUrl:je,totalSegmentsDurationMs:Ae,segments:fe,nextSegmentBeyondManifest:Au,timescale:ue}}else throw new ReferenceError("Unknown MPD segment referencing type");if(!ce||!Te)continue;let It={video:"video",audio:"audio",text:"text"}[ce];if(!It)continue;oe||=It,qe={id:Gt,kind:It,segmentReference:ot,profiles:zt,duration:S,bitrate:qt,mime:Te,codecs:rt,width:we,height:yt,fps:wi,quality:at}}Z.language||=V,Z.label||=Pe,Z.mime||=Te,Z.codecs||=rt,Z.hdr||=oe==="video"&&Dr(rt),Z.representations.push(qe)}if(oe){let L=r[oe].find(V=>V.id===Z.id);if(L&&Z.representations.every(V=>We(V.segmentReference)))for(let V of L.representations){let ve=Z.representations.find(Te=>Te.id===V.id)?.segmentReference,te=V.segmentReference;te.segments.push(...ve.segments),te.nextSegmentBeyondManifest=ve.nextSegmentBeyondManifest}else r[oe].push(Z)}}return{duration:S,streams:r,baseUrls:n,live:g}};import{isNonNullable as AT}from"@vkontakte/videoplayer-shared";var _=(s,e)=>AT(s)&&AT(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}import{fromEvent as WB,Subscription as YB}from"@vkontakte/videoplayer-shared";var Do=class{constructor(e,t){this.lastUpdateTs=0;this.lastCallTs=0;this.prevRanges=[];this.subscription=new YB;this.mediaSource=e,this.sourceBuffer=t,this.subscription.add(WB(this.sourceBuffer,"updateend").subscribe(()=>this.updateend()))}updateend(){if(!_(this.mediaSource,this.sourceBuffer))return;let{prevRanges:e}=this,t=Bo(this.sourceBuffer.buffered);this.prevRanges=t,this.isRangesRemoved(e,t)&&(this.lastUpdateTs=Date.now())}isRangesRemoved(e,t){if(e.length!==t.length)return!0;for(let i=0;i<e.length;i+=2){let r=e[i],a=e[i+1],n=t[i],o=t[i+1];if(n>r||o<a)return!0}return!1}wasUpdated(){let{lastCallTs:e,lastUpdateTs:t}=this;return this.lastCallTs=Date.now(),e<=t}destroy(){this.subscription.unsubscribe()}};var ma=class{constructor(e,t,i,{fetcher:r,tuning:a,getCurrentPosition:n,isActiveLowLatency:o,compatibilityMode:u=!1,manifest:l}){this.currentLiveSegmentServerLatency$=new zi(0);this.currentLowLatencySegmentLength$=new zi(0);this.currentSegmentLength$=new zi(0);this.onLastSegment$=new zi(!1);this.fullyBuffered$=new zi(!1);this.playingRepresentation$=new zi(void 0);this.playingRepresentationInit$=new zi(void 0);this.error$=new XB;this.gaps=[];this.subscription=new JB;this.allInitsLoaded=!1;this.activeSegments=new Set;this.downloadAbortController=new ee;this.switchAbortController=new ee;this.destroyAbortController=new ee;this.bufferLimit=1/0;this.failedDownloads=0;this.baseUrls=[];this.baseUrlsIndex=0;this.isLive=!1;this.liveUpdateSegmentIndex=0;this.liveInitialAdditionalOffset=0;this.isSeekingLive=!1;this.index=0;this.lastDataObtainedTimestampMs=0;this.loadByteRangeSegmentsTimeoutId=0;this.sourceBufferBufferedDiff=null;this.startWith=gi(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.sourceBufferBufferedDiff=new Do(this.mediaSource,this.sourceBuffer),this.subscription.add(RT(this.sourceBuffer,"error").subscribe(()=>this.error$.next({id:"SourceBuffer",category:Gi.VIDEO_PIPELINE,message:"SourceBuffer Error event fired"}))),this.subscription.add(this.sourceBufferTaskQueue.bufferFull$.subscribe(n=>{let o=this.getCurrentPosition();if(!this.sourceBuffer||!o||!_(this.mediaSource,this.sourceBuffer))return;let u=Math.min(this.bufferLimit,Mr(this.sourceBuffer.buffered)*.8);this.bufferLimit=u;let l=de(this.sourceBuffer.buffered,o),p=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(o,n*2,l<p).catch(c=>{this.handleAsyncError(c,"pruneBuffer")})})),this.subscription.add(this.sourceBufferTaskQueue.error$.subscribe(n=>this.error$.next(n))),yield this.loadInit(t,"high",!0);let i=this.initData.get(t.id),r=this.segments.get(t.id),a=this.parsedInitData.get(t.id);tt(i,"No init buffer for starting representation"),tt(r,"No segments for starting representation"),i instanceof ArrayBuffer&&(this.searchGaps(r,t),yield this.sourceBufferTaskQueue.append(i,this.destroyAbortController.signal),this.playingRepresentation$.next(this.playingRepresentationId),this.playingRepresentationInit$.next(a))}.bind(this));this.switchTo=gi(this.destroyAbortController.signal,async function*(e,t=!1){if(!_(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);tt(i,`No such representation ${e}`);let r=this.segments.get(e),a=this.initData.get(e);if(Fe(a)||Fe(r)?yield this.loadInit(i,"high",!1):a instanceof Promise&&(yield a),r=this.segments.get(e),tt(r,"No segments for starting representation"),a=this.initData.get(e),!(!a||!(a instanceof ArrayBuffer)||!this.sourceBuffer||!_(this.mediaSource,this.sourceBuffer))){if(yield this.abort(),yield this.sourceBufferTaskQueue.append(a,this.downloadAbortController.signal),t)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e,yield this.dropBuffer();else{let n=this.getCurrentPosition();Cr(n)&&!this.isLive&&(this.bufferLimit=1/0,await this.pruneBuffer(n,1/0,!0)),this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e}this.maintain()}}.bind(this));this.switchToOld=gi(this.destroyAbortController.signal,async function*(e,t=!1){if(!_(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);tt(i,`No such representation ${e}`);let r=this.segments.get(e),a=this.initData.get(e);if(Fe(a)||Fe(r)?yield this.loadInit(i,"high",!1):a instanceof Promise&&(yield a),r=this.segments.get(e),tt(r,"No segments for starting representation"),a=this.initData.get(e),!(!a||!(a instanceof ArrayBuffer)||!this.sourceBuffer||!_(this.mediaSource,this.sourceBuffer)))if(yield this.abort(),yield this.sourceBufferTaskQueue.append(a,this.downloadAbortController.signal),t)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e,yield this.dropBuffer(),this.maintain();else{let n=this.getCurrentPosition();Cr(n)&&(this.isLive||(this.bufferLimit=1/0,await this.pruneBuffer(n,1/0,!0)),this.maintain(n)),this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e}}.bind(this));this.seekLive=gi(this.destroyAbortController.signal,async function*(e){let t=(0,Oo.default)(e,u=>u.representations)??[];if(this.isSeekingLive=!0,!this.downloadingRepresentationId||!t)return;for(let u of this.representations.keys()){let l=t.find(d=>d.id===u);l&&this.representations.set(u,l);let p=this.representations.get(u);if(!p||!We(p.segmentReference))return;let c=this.getActualLiveStartingSegments(p.segmentReference);this.segments.set(p.id,c)}let i=this.switchingToRepresentationId??this.downloadingRepresentationId,r=this.representations.get(i);tt(r);let a=this.segments.get(i);tt(a,"No segments for starting representation");let n=this.initData.get(i);if(tt(n,"No init buffer for starting representation"),!(n instanceof ArrayBuffer))return;let o=this.getDebugBufferState();this.liveUpdateSegmentIndex=0,yield this.abort(),o&&(yield this.sourceBufferTaskQueue.remove(o.from*1e3,o.to*1e3,this.destroyAbortController.signal)),this.searchGaps(a,r),yield this.sourceBufferTaskQueue.append(n,this.destroyAbortController.signal),this.isSeekingLive=!1}.bind(this));this.fetcher=r,this.tuning=a,this.compatibilityMode=u,this.forwardBufferTarget=a.dash.forwardBufferTargetAuto,this.getCurrentPosition=n,this.isActiveLowLatency=o,this.isLive=!!l?.live,this.baseUrls=l?.baseUrls??[],this.initData=new Map(i.map(p=>[p.id,null])),this.segments=new Map,this.parsedInitData=new Map,this.representations=new Map(i.map(p=>[p.id,p])),this.kind=e,this.mediaSource=t,this.sourceBuffer=null}switchToWithPreviousAbort(e,t=!1){!_(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId||(this.switchAbortController.abort(),this.switchAbortController=new ee,gi(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(Fe(o)||Fe(n)?yield this.loadInit(a,"high",!1):o instanceof Promise&&(yield o),n=this.segments.get(i),tt(n,"No segments for starting representation"),o=this.initData.get(i),!(!(o instanceof ArrayBuffer)||!this.sourceBuffer||!_(this.mediaSource,this.sourceBuffer))){if(yield this.abort(),yield this.sourceBufferTaskQueue.append(o,this.downloadAbortController.signal),r)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=i,yield this.dropBuffer();else{let u=this.getCurrentPosition();Cr(u)&&!this.isLive&&(this.bufferLimit=this.forwardBufferTarget,yield this.pruneBuffer(u,1/0,!0)),this.downloadingRepresentationId=i,this.switchingToRepresentationId=void 0}this.maintain()}}.bind(this))(e,t))}warmUpMediaSource(){!Fe(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(Fe(e)||Fe(this.downloadingRepresentationId)||Fe(this.playingRepresentationId)||Fe(this.sourceBuffer)||!_(this.mediaSource,this.sourceBuffer)||Cr(this.switchingToRepresentationId)||this.isSeekingLive)return;let t=this.representations.get(this.downloadingRepresentationId),i=this.segments.get(this.downloadingRepresentationId);if(tt(t,`No such representation ${this.downloadingRepresentationId}`),!i)return;let r=i.find(p=>e>=p.time.from&&e<p.time.to);Cr(r)&&isFinite(r.time.from)&&isFinite(r.time.to)&&this.currentSegmentLength$.next(r?.time.to-r.time.from);let a=e,n=100;if(this.playingRepresentationId!==this.downloadingRepresentationId){let p=de(this.sourceBuffer.buffered,e),c=r?r.time.to+n:-1/0;r&&r.time.to-e<this.tuning.dash.maxSegmentDurationLeftToSelectNextSegment&&p>=r.time.to-e+n&&(a=c)}if(isFinite(this.bufferLimit)&&Mr(this.sourceBuffer.buffered)>=this.bufferLimit){let p=de(this.sourceBuffer.buffered,e),c=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(e,1/0,p<c).catch(d=>{this.handleAsyncError(d,"pruneBuffer")});return}let u=null;if(!this.activeSegments.size&&(u=this.selectForwardBufferSegments(i,t.segmentReference.type,a),u?.length)){let p="auto";if(this.tuning.dash.useFetchPriorityHints&&r)if((0,Vo.default)(u,r))p="high";else{let c=(0,Vr.default)(u,0);c&&c.time.from-r.time.to>=this.forwardBufferTarget/2&&(p="low")}this.loadSegments(u,t,p).catch(c=>{this.handleAsyncError(c,"loadSegments")})}(!this.preloadOnly&&!this.allInitsLoaded&&r&&r.status==="fed"&&!u?.length&&de(this.sourceBuffer.buffered,e)>3e3||this.isActiveLowLatency())&&this.loadNextInit();let l=(0,Vr.default)(i,-1);!this.isLive&&l&&(this.fullyBuffered$.next(l.time.to-e-de(this.sourceBuffer.buffered,e)<n),this.onLastSegment$.next(e-l.time.from>0))}get lastDataObtainedTimestamp(){return this.lastDataObtainedTimestampMs}searchGaps(e,t){this.gaps=[];let i=0,r=this.isLive?this.liveInitialAdditionalOffset:0;for(let a of e)Math.trunc(a.time.from-i)>0&&this.gaps.push({representation:t.id,from:i,to:a.time.from+r,persistent:!0}),i=a.time.to;Cr(t.duration)&&t.duration-i>0&&!this.isLive&&this.gaps.push({representation:t.id,from:i,to:t.duration,persistent:!0})}getActualLiveStartingSegments(e){let t=e.segments,i=this.isActiveLowLatency()?this.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.tuning.dashCmafLive.maxActiveLiveOffset,r=[],a=0,n=t.length-1;do r.unshift(t[n]),a+=t[n].time.to-t[n].time.from,n--;while(a<i&&n>=0);return this.liveInitialAdditionalOffset=a-i,this.isActiveLowLatency()?[r[0]]:r}getLiveSegmentsToLoadState(e){let t=(0,Oo.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,Oo.default)(e?.streams[this.kind],i=>i.representations)??[];if(![...this.segments.values()].every(i=>!i.length))for(let i of t){if(!i||!We(i.segmentReference))return;let r=i.segmentReference.segments.map(l=>({...l,status:"none",size:void 0})),a=100,n=this.segments.get(i.id)??[],o=(0,Vr.default)(n,-1)?.time.to??0,u=r?.findIndex(l=>o>=l.time.from+a&&o<=l.time.to+a);if(u===-1){this.liveUpdateSegmentIndex=0;let l=this.getActualLiveStartingSegments(i.segmentReference);this.segments.set(i.id,l)}else{let l=r.slice(u+1);this.segments.set(i.id,[...n,...l])}}}proceedLowLatencyLive(){let e=this.downloadingRepresentationId;tt(e);let t=this.segments.get(e);if(t?.length){let i=t[t.length-1];this.updateLowLatencyLiveIfNeeded(i)}}updateLowLatencyLiveIfNeeded(e){let t=0;for(let i of this.representations.values()){let r=i.segmentReference;if(!We(r))return;let a=this.segments.get(i.id);if(!a)continue;let n=a.find(u=>Math.floor(u.time.from)===Math.floor(e.time.from));if(n&&!isFinite(n.time.to)&&(n.time.to=e.time.to,t=n.time.to-n.time.from),!!!a.find(u=>Math.floor(u.time.from)===Math.floor(e.time.to))&&this.isActiveLowLatency()){let u=Math.round(e.time.to*r.timescale/1e3).toString(10),l=ti(r.segmentTemplateUrl,{segmentTime:u});a.push({status:"none",time:{from:e.time.to,to:1/0},url:l})}}this.currentLowLatencySegmentLength$.next(t)}findSegmentStartTime(e){let t=this.switchingToRepresentationId??this.downloadingRepresentationId??this.playingRepresentationId;if(!t)return;let i=this.segments.get(t);return i?i.find(a=>a.time.from<=e&&a.time.to>=e)?.time.from??void 0:void 0}setTarget(e){this.forwardBufferTarget=e}setPreloadOnly(e){this.preloadOnly=e}destroy(){if(this.initData.clear(),this.segments.clear(),this.parsedInitData.clear(),this.representations.clear(),this.sourceBufferTaskQueue?.destroy(),this.sourceBufferBufferedDiff?.destroy(),this.gapDetectionIdleCallback&&_t&&_t(this.gapDetectionIdleCallback),this.initLoadIdleCallback&&_t&&_t(this.initLoadIdleCallback),this.subscription.unsubscribe(),this.sourceBuffer)try{this.mediaSource.removeSourceBuffer(this.sourceBuffer)}catch(e){if(!(e instanceof DOMException&&e.name==="NotFoundError"))throw e}this.sourceBuffer=null,this.downloadAbortController.abort(),this.switchAbortController.abort(),this.destroyAbortController.abort(),window.clearTimeout(this.loadByteRangeSegmentsTimeoutId)}selectForwardBufferSegments(e,t,i){return this.checkEjectedSegments(),this.isLive?this.selectForwardBufferSegmentsLive(e,i):this.selectForwardBufferSegmentsRecord(e,t,i)}selectForwardBufferSegmentsLive(e,t){if(this.playingRepresentationId!==this.downloadingRepresentationId){let i=e.findIndex(r=>t>=r.time.from&&t<r.time.to);this.liveUpdateSegmentIndex=i}return this.liveUpdateSegmentIndex<e.length?e.slice(this.liveUpdateSegmentIndex++):null}selectForwardBufferSegmentsRecord(e,t,i){let r=e.findIndex(({status:c,time:{from:d,to:h}},f)=>{let b=d<=i&&h>=i,g=d>i||b||f===0&&i===0,S=Math.min(this.forwardBufferTarget,this.bufferLimit),T=this.preloadOnly&&d<=i+S||h<=i+S;return(c==="none"||c==="partially_ejected"&&g&&T&&this.sourceBuffer&&_(this.mediaSource,this.sourceBuffer)&&!(Ne(this.sourceBuffer.buffered,d)&&Ne(this.sourceBuffer.buffered,h)))&&g&&T});if(r===-1)return null;if(t!=="byteRange")return e.slice(r,r+1);let a=e,n=0,o=0,u=[],l=this.preloadOnly?0:this.tuning.dash.segmentRequestSize,p=this.preloadOnly?this.forwardBufferTarget:0;for(let c=r;c<a.length&&(n<=l||o<=p);c++){let d=a[c];if(n+=d.byte.to+1-d.byte.from,o+=d.time.to+1-d.time.from,d.status==="none"||d.status==="partially_ejected")u.push(d);else break}return u}async loadSegments(e,t,i="auto"){We(t.segmentReference)?await this.loadTemplateSegment(e[0],t,i):await this.loadByteRangeSegments(e,t,i)}async loadTemplateSegment(e,t,i="auto"){e.status="downloading";let r={segment:e,loadedBytes:0,feedingBytes:0,fedBytes:0,representationId:t.id};this.activeSegments.add(r);let{range:a,url:n,signal:o,onProgress:u,onProgressTasks:l}=this.prepareTemplateFetchSegmentParams(e,t);this.failedDownloads&&o&&(await gi(o,async function*(){let p=bd(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(c=>setTimeout(c,p))}.bind(this))(),o.aborted&&this.abortActiveSegments([e]));try{let p=await this.fetcher.fetch(n,{range:a,signal:o,onProgress:u,priority:i,isLowLatency:this.isActiveLowLatency()});if(this.lastDataObtainedTimestampMs=Co(),!p)return;let c=new DataView(p),d=ha(t.mime);if(!isFinite(r.segment.time.to)){let b=t.segmentReference.timescale;r.segment.time.to=d.getChunkEndTime(c,b)}u&&r.feedingBytes&&l?await Promise.all(l):await this.sourceBufferTaskQueue.append(c,o);let{serverDataReceivedTimestamp:h,serverDataPreparedTime:f}=d.getServerLatencyTimestamps(c);h&&f&&this.currentLiveSegmentServerLatency$.next(f-h),r.segment.status="downloaded",this.onSegmentFullyAppended(r,t.id),this.failedDownloads=0}catch(p){this.abortActiveSegments([e]),fa(p)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}}updateRepresentationsBaseUrlIfNeeded(){if(!this.tuning.dash.enableBaseUrlSupport||!this.baseUrls.length||this.failedDownloads<=this.tuning.dash.maxSegmentRetryCount)return;this.baseUrlsIndex=(this.baseUrlsIndex+1)%this.baseUrls.length;let e=this.baseUrls[this.baseUrlsIndex];for(let t of this.representations.values())We(t.segmentReference)?t.segmentReference.baseUrl=e:t.segmentReference.url=e}async loadByteRangeSegments(e,t,i="auto"){if(!e.length)return;for(let u of e)u.status="downloading",this.activeSegments.add({segment:u,loadedBytes:0,feedingBytes:0,fedBytes:0,representationId:t.id});let{range:r,url:a,signal:n,onProgress:o}=this.prepareByteRangeFetchSegmentParams(e,t);this.failedDownloads&&n&&(await gi(n,async function*(){let u=bd(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(l=>{this.loadByteRangeSegmentsTimeoutId=window.setTimeout(l,u),RT(window,"online").pipe(KB()).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=Co(),this.failedDownloads=0}catch(u){this.abortActiveSegments(e),fa(u)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}}prepareByteRangeFetchSegmentParams(e,t){if(We(t.segmentReference))throw new Error("Representation is not byte range type");let i=t.segmentReference.url,r={from:(0,Vr.default)(e,0).byte.from,to:(0,Vr.default)(e,-1).byte.to},{signal:a}=this.downloadAbortController;return{url:i,range:r,signal:a,onProgress:async(o,u)=>{if(!a.aborted)try{this.lastDataObtainedTimestampMs=Co(),await this.onSomeByteRangesDataLoaded({dataView:o,loaded:u,signal:a,onSegmentAppendFailed:()=>this.abort(),globalFrom:r?r.from:0,representationId:t.id})}catch(l){this.error$.next({id:"SegmentFeeding",category:Gi.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:l})}}}}prepareTemplateFetchSegmentParams(e,t){if(!We(t.segmentReference))throw new Error("Representation is not template type");let i=new URL(e.url,t.segmentReference.baseUrl);this.isActiveLowLatency()&&i.searchParams.set("low-latency","yes");let r=i.toString(),{signal:a}=this.downloadAbortController,n=[],u=this.isActiveLowLatency()||this.tuning.dash.enableSubSegmentBufferFeeding&&this.liveUpdateSegmentIndex<3?(l,p)=>{if(!a.aborted)try{this.lastDataObtainedTimestampMs=Co();let c=this.onSomeTemplateDataLoaded({dataView:l,loaded:p,signal:a,onSegmentAppendFailed:()=>this.abort(),representationId:t.id});n.push(c)}catch(c){this.error$.next({id:"SegmentFeeding",category:Gi.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:c})}}:void 0;return{url:r,signal:a,onProgress:u,onProgressTasks:n}}abortActiveSegments(e){for(let t of this.activeSegments)(0,Vo.default)(e,t.segment)&&this.abortSegment(t.segment)}async onSomeTemplateDataLoaded({dataView:e,representationId:t,loaded:i,onSegmentAppendFailed:r,signal:a}){if(!this.activeSegments.size||!_(this.mediaSource,this.sourceBuffer))return;let n=this.representations.get(t);if(n)for(let o of this.activeSegments){let{segment:u}=o;if(o.representationId===t){if(a.aborted){r();continue}if(o.loadedBytes=i,o.loadedBytes>o.feedingBytes){let l=new DataView(e.buffer,e.byteOffset+o.feedingBytes,o.loadedBytes-o.feedingBytes),p=ha(n.mime).parseFeedableSegmentChunk(l,this.isLive);p?.byteLength&&(u.status="partially_fed",o.feedingBytes+=p.byteLength,await this.sourceBufferTaskQueue.append(p),o.fedBytes+=p.byteLength)}}}}async onSomeByteRangesDataLoaded({dataView:e,representationId:t,globalFrom:i,loaded:r,signal:a,onSegmentAppendFailed:n}){if(!this.activeSegments.size||!_(this.mediaSource,this.sourceBuffer))return;let o=this.representations.get(t);if(o)for(let u of this.activeSegments){if(u.representationId!==t)continue;if(a.aborted){await n();continue}let{segment:l}=u,p=l.byte.from-i,c=l.byte.to-i,d=c-p+1,h=p<r,f=c<=r;if(h){if(l.status==="downloading"&&f){l.status="downloaded";let b=new DataView(e.buffer,e.byteOffset+p,d);await this.sourceBufferTaskQueue.append(b,a)&&!a.aborted?this.onSegmentFullyAppended(u,t):await n()}else if(this.tuning.dash.enableSubSegmentBufferFeeding&&(l.status==="downloading"||l.status==="partially_fed")&&(u.loadedBytes=Math.min(d,r-p),u.loadedBytes>u.feedingBytes)){let b=new DataView(e.buffer,e.byteOffset+p+u.feedingBytes,u.loadedBytes-u.feedingBytes),g=u.loadedBytes===d?b:ha(o.mime).parseFeedableSegmentChunk(b);g?.byteLength&&(l.status="partially_fed",u.feedingBytes+=g.byteLength,await this.sourceBufferTaskQueue.append(g,a)&&!a.aborted?(u.fedBytes+=g.byteLength,u.fedBytes===d&&this.onSegmentFullyAppended(u,t)):await n())}}}}onSegmentFullyAppended(e,t){if(!(Fe(this.sourceBuffer)||!_(this.mediaSource,this.sourceBuffer))){!this.isLive&&N.browser.isSafari&&this.tuning.useSafariEndlessRequestBugfix&&(Ne(this.sourceBuffer.buffered,e.segment.time.from,100)&&Ne(this.sourceBuffer.buffered,e.segment.time.to,100)||this.error$.next({id:"EmptyAppendBuffer",category:Gi.VIDEO_PIPELINE,message:"Browser stuck on empty result of adding segment to source buffer"})),this.playingRepresentationId=t,this.playingRepresentation$.next(this.playingRepresentationId),this.playingRepresentationInit$.next(this.parsedInitData.get(this.playingRepresentationId)),e.segment.status="fed",pd(e.segment)&&(e.segment.size=e.fedBytes);for(let i of this.representations.values()){if(i.id===t)continue;let r=this.segments.get(i.id);if(r)for(let a of r)a.status==="fed"&&Math.round(a.time.from)===Math.round(e.segment.time.from)&&Math.round(a.time.to)===Math.round(e.segment.time.to)&&(a.status="none")}this.isActiveLowLatency()&&this.updateLowLatencyLiveIfNeeded(e.segment),this.activeSegments.delete(e),this.detectGapsWhenIdle(t,e.segment)}}abortSegment(e){e.status==="partially_fed"?e.status="partially_ejected":e.status!=="partially_ejected"&&(e.status="none");for(let t of this.activeSegments.values())if(t.segment===e){this.activeSegments.delete(t);break}}loadNextInit(){if(this.allInitsLoaded||this.initLoadIdleCallback)return;let e=null,t=!1;for(let[r,a]of this.initData.entries()){let n=a instanceof Promise;t||=n,a===null&&(e=r)}if(!e){this.allInitsLoaded=!0;return}if(t)return;let i=this.representations.get(e);i&&(this.initLoadIdleCallback=Lr(()=>(0,LT.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?gi(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,ha(e.mime),r)).then(o=>{if(!o)return;let{init:u,dataView:l,segments:p}=o,c=l.buffer.slice(l.byteOffset,l.byteOffset+l.byteLength);this.initData.set(e.id,c);let d=p;this.isLive&&We(e.segmentReference)&&(d=this.getActualLiveStartingSegments(e.segmentReference)),(!this.isLive||!this.segments.has(e.id))&&this.segments.set(e.id,d),u&&this.parsedInitData.set(e.id,u)}).then(()=>this.failedDownloads=0,o=>{this.initData.set(e.id,null),i&&this.error$.next({id:"LoadInits",category:Gi.WTF,message:"loadInit threw",thrown:o})});return this.initData.set(e.id,n),n}async dropBuffer(){for(let e of this.segments.values())for(let t of e)t.status="none";await this.pruneBuffer(0,1/0,!0)}async pruneBuffer(e,t,i=!1){if(!this.sourceBuffer||!_(this.mediaSource,this.sourceBuffer)||!this.playingRepresentationId||Fe(e))return!1;this.checkEjectedSegments();let r=[],a=0,n=o=>{if(a>=t)return;r.push({...o.time});let u=pd(o)?o.size??0:o.byte.to-o.byte.from;a+=u};for(let o of this.segments.values())for(let u of o){let l=u.time.to<=e-this.tuning.dash.bufferPruningSafeZone,p=u.time.from>=e+Math.min(this.forwardBufferTarget,this.bufferLimit);(l||p)&&u.status==="fed"&&n(u)}for(let o=0;o<this.sourceBuffer.buffered.length;o++){let u=this.sourceBuffer.buffered.start(o)*1e3,l=this.sourceBuffer.buffered.end(o)*1e3,p=0;for(let c of this.segments.values())for(let d of c)(0,Vo.default)(["none","partially_ejected"],d.status)&&Math.round(d.time.from)<=Math.round(u)&&Math.round(d.time.to)>=Math.round(l)&&p++;if(p===this.segments.size){let c={time:{from:u,to:l},url:"",status:"none"};n(c)}}if(r.length&&i){let o=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;for(let u of this.segments.values())for(let l of u)l.time.from>=e+o&&l.status==="fed"&&n(l)}return r.length?(r=yT(r),(await Promise.all(r.map(u=>this.sourceBufferTaskQueue.remove(u.from,u.to)))).reduce((u,l)=>u||l,!1)):!1}async abortBuffer(){if(!this.sourceBuffer||!_(this.mediaSource,this.sourceBuffer))return!1;let e=this.playingRepresentationId&&this.initData.get(this.playingRepresentationId),t=e instanceof ArrayBuffer?e:void 0;return this.sourceBufferTaskQueue.abort(t)}getDebugBufferState(){if(!(!this.sourceBuffer||!_(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length))return{from:this.sourceBuffer.buffered.start(0),to:this.sourceBuffer.buffered.end(this.sourceBuffer.buffered.length-1)}}getBufferedTo(){return!this.sourceBuffer||!_(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length?null:this.sourceBuffer.buffered.end(this.sourceBuffer.buffered.length-1)}getForwardBufferDuration(e=this.getCurrentPosition()){return!this.sourceBuffer||!_(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length||Fe(e)?0:de(this.sourceBuffer.buffered,e)}detectGaps(e,t){if(!this.sourceBuffer||!_(this.mediaSource,this.sourceBuffer))return;let{buffered:i}=this.sourceBuffer;this.tuning.useRefactoredSearchGap&&(this.gaps=this.gaps.filter(a=>{if(a.persistent)return!0;let n=Math.round(a.from),o=Math.round(a.to);for(let u=0;u<i.length;u++)if(n>=Math.round(i.start(u)*1e3)&&o<=Math.round(i.end(u)*1e3))return!1;return!0}));let r={representation:e,from:t.time.from,to:t.time.to,persistent:!1};for(let a=0;a<i.length;a++){let n=i.start(a)*1e3,o=i.end(a)*1e3;if(!(o<=t.time.from||n>=t.time.to)){if(n<=t.time.from&&o>=t.time.to){r=void 0;break}o>t.time.from&&o<t.time.to&&(r.from=o),n<t.time.to&&n>t.time.from&&(r.to=n)}}r&&r.to-r.from>1&&!this.gaps.some(a=>r&&a.from===r.from&&a.to===r.to)&&this.gaps.push(r)}detectGapsWhenIdle(e,t){if(!(this.gapDetectionIdleCallback||!this.sourceBuffer||!_(this.mediaSource,this.sourceBuffer))){if(!this.tuning.useRefactoredSearchGap)for(let i=0;i<this.sourceBuffer.buffered.length;i++)this.gaps=this.gaps.filter(r=>r.persistent||this.sourceBuffer&&(Math.round(r.from)<Math.round(this.sourceBuffer.buffered.start(i)*1e3)||Math.round(r.to)>Math.round(this.sourceBuffer.buffered.end(i)*1e3)));this.gapDetectionIdleCallback=Lr(()=>{try{this.detectGaps(e,t)}catch(i){this.error$.next({id:"GapDetection",category:Gi.WTF,message:"detectGaps threw",thrown:i})}finally{this.gapDetectionIdleCallback=null}})}}checkEjectedSegments(){if(Fe(this.sourceBuffer)||!_(this.mediaSource,this.sourceBuffer)||Fe(this.playingRepresentationId)||this.sourceBufferBufferedDiff&&!this.sourceBufferBufferedDiff.wasUpdated())return;let e=Bo(this.sourceBuffer.buffered),t=100;for(let i of this.segments.values())for(let r of i){let{status:a}=r;if(a!=="fed"&&a!=="partially_ejected")continue;let n=Math.floor(r.time.from),o=Math.ceil(r.time.to),u=!1,l=0;for(let p=0;p<e.length;p+=2){let c=e[p],d=e[p+1];u||(u=c-t<=n&&d+t>=o),(n>=c&&n<d-t||o>c+t&&o<=d)&&(l+=1)}u||(l===1?r.status="partially_ejected":this.gaps.some(p=>p.from===r.time.from||p.to===r.time.to)?r.status="partially_ejected":r.status="none")}}handleAsyncError(e,t){this.error$.next({id:t,category:Gi.VIDEO_PIPELINE,thrown:e,message:"Something went wrong"})}};var Si=s=>{let e=new URL(s);return e.searchParams.set("quic","1"),e.toString()};var _o=s=>{let e=s.get("X-Delivery-Type"),t=s.get("X-Reused"),i=e===null?"http1":e??void 0,r=t===null?void 0:{1:!0,0:!1}[t]??void 0;return{type:i,reused:r}};import{abortable as ba,assertNever as MT,fromEvent as $T,merge as ZB,now as ga,Subject as BT,ValueSubject as gd,flattenObject as Or,ErrorCategory as Sa,SubscriptionRemovable as eD}from"@vkontakte/videoplayer-shared";var No=s=>{let e=new URL(s);return e.searchParams.set("enable-subtitles","yes"),e.toString()};var Uo=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 BT;this.error$=new BT;this.abortAllController=new ee;this.subscription=new eD;this.fetchManifest=ba(this.abortAllController.signal,async function*(e){let t=this.tracer.createComponentTracer("FetchManifest"),i=e;this.requestQuic&&(i=Si(i)),!this.compatibilityMode&&this.useEnableSubtitlesParam&&(i=No(i));let r=yield this.doFetch(i,{signal:this.abortAllController.signal}).catch(Fo);return r?(t.log("success",Or({url:i,message:"Request successfully executed"})),t.end(),this.onHeadersReceived(r.headers),r.text()):(t.error("error",Or({url:i,message:"No data in request manifest"})),t.end(),null)}.bind(this));this.fetch=ba(this.abortAllController.signal,async function*(e,{rangeMethod:t=this.compatibilityMode?0:1,range:i,onProgress:r,priority:a="auto",signal:n,measureThroughput:o=!0,isLowLatency:u=!1}={}){let l=e,p=new Headers,c=this.tracer.createComponentTracer("Fetch");if(i)switch(t){case 0:{p.append("Range",`bytes=${i.from}-${i.to}`);break}case 1:{let D=new URL(l,location.href);D.searchParams.append("bytes",`${i.from}-${i.to}`),l=D.toString();break}default:MT(t)}this.requestQuic&&(l=Si(l));let d=this.abortAllController.signal,h;if(n){let D=new ee;if(h=ZB($T(this.abortAllController.signal,"abort"),$T(n,"abort")).subscribe(()=>{try{D.abort()}catch(I){Fo(I)}}),this.abortAllController.signal.aborted||n.aborted)try{D.abort()}catch(I){Fo(I)}d=D.signal}let f=ga();c.log("startRequest",Or({url:l,priority:a,rangeMethod:t,range:i,isLowLatency:u,requestStartedAt:f}));let b=yield this.doFetch(l,{priority:a,headers:p,signal:d}),g=ga();if(!b)return c.error("error",{message:"No response in request"}),c.end(),this.unsubscribeAbortSubscription(h),null;if(this.throughputEstimator?.addRawRtt(g-f),!b.ok||!b.body){this.unsubscribeAbortSubscription(h);let D=`Fetch error ${b.status}: ${b.statusText}`;return c.error("error",{message:D}),c.end(),Promise.reject(new Error(`Fetch error ${b.status}: ${b.statusText}`))}if(this.onHeadersReceived(b.headers),!r&&!o){this.unsubscribeAbortSubscription(h);let D=ga(),I={requestStartedAt:f,requestEndedAt:D,duration:D-f};return c.log("endRequest",Or(I)),c.end(),b.arrayBuffer()}let[S,T]=b.body.tee(),v=S.getReader();o&&this.throughputEstimator?.trackStream(T,u);let P=0,w=new Uint8Array(0),M=!1,O=D=>{this.unsubscribeAbortSubscription(h),M=!0,Fo(D)},E=ba(d,async function*({done:D,value:I}){if(P===0&&this.lastRequestFirstBytes$.next(ga()-f),d.aborted){this.unsubscribeAbortSubscription(h);return}if(!D&&I){let x=new Uint8Array(w.length+I.length);x.set(w),x.set(I,w.length),w=x,P+=I.byteLength,r?.(new DataView(w.buffer),P),yield v?.read().then(E,O)}}.bind(this));yield v?.read().then(E,O),this.unsubscribeAbortSubscription(h);let R=ga(),y={failed:M,requestStartedAt:f,requestEndedAt:R,duration:R-f};return M?(c.error("endRequest",Or(y)),c.end(),null):(c.log("endRequest",Or(y)),c.end(),w.buffer)}.bind(this));this.fetchByteRangeRepresentation=ba(this.abortAllController.signal,async function*(e,t,i){if(e.type!=="byteRange")return null;let{from:r,to:a}=e.initRange,n=r,o=a,u=!1,l,p;e.indexRange&&(l=e.indexRange.from,p=e.indexRange.to,u=a+1===l,u&&(n=Math.min(l,r),o=Math.max(p,a))),n=Math.min(n,0);let c=yield this.fetch(e.url,{range:{from:n,to:o},priority:i,measureThroughput:!1});if(!c)return null;let d=new DataView(c,r-n,a-n+1);if(!t.validateData(d))throw new Error("Invalid media file");let h=t.parseInit(d),f=e.indexRange??t.getIndexRange(h);if(!f)throw new ReferenceError("No way to load representation index");let b;if(u)b=new DataView(c,f.from-n,f.to-f.from+1);else{let S=yield this.fetch(e.url,{range:f,priority:i,measureThroughput:!1});if(!S)return null;b=new DataView(S)}let g=t.parseSegments(b,h,f);return{init:h,dataView:new DataView(c),segments:g}}.bind(this));this.fetchTemplateRepresentation=ba(this.abortAllController.signal,async function*(e,t){if(e.type!=="template")return null;let i=new URL(e.initUrl,e.baseUrl).toString(),r=yield this.fetch(i,{priority:t,measureThroughput:!1});return r?{init:null,segments:e.segments.map(n=>({...n,status:"none",size:void 0})),dataView:new DataView(r)}:null}.bind(this));this.throughputEstimator=e,this.requestQuic=t,this.compatibilityMode=r,this.tracer=i.createComponentTracer("Fetcher"),this.useEnableSubtitlesParam=a}onHeadersReceived(e){let{type:t,reused:i}=_o(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:MT(r)}}destroy(){this.abortAllController.abort(),this.subscription.unsubscribe(),this.tracer.end()}async doFetch(e,t){let i=await vt(e,t);if(i.ok)return i;let r=await i.text(),a=parseInt(r);if(!isNaN(a))switch(a){case 1:this.recoverableError$.next({id:"VideoDataLinkExpiredError",message:"Video data links have expired",category:Sa.FATAL});break;case 8:this.recoverableError$.next({id:"VideoDataLinkBlockedForFloodError",message:"Url blocked for flood",category:Sa.FATAL});break;case 18:this.recoverableError$.next({id:"VideoDataLinkIllegalIpChangeError",message:"Client IP has changed",category:Sa.FATAL});break;case 21:this.recoverableError$.next({id:"VideoDataLinkIllegalHostChangeError",message:"Request HOST has changed",category:Sa.FATAL});break;default:this.error$.next({id:"GeneralVideoDataFetchError",message:`Generic video data fetch error (${a})`,category:Sa.FATAL})}}unsubscribeAbortSubscription(e){e&&(e.unsubscribe(),this.subscription.remove(e))}},Fo=s=>{if(!fa(s))throw s};var Qi=(s,e,t)=>t*e+(1-t)*s,Sd=(s,e)=>s.reduce((t,i)=>t+i,0)/e,DT=(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 tD,ValueSubject as CT}from"@vkontakte/videoplayer-shared";var vi=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 CT(e.initial),this.debounced$=new CT(e.initial);let t=e.label??"value"+Math.random().toString(16).substring(2,6);this.rawSeries$=new ze(`raw_${t}`),this.smoothedSeries$=new ze(`smoothed_${t}`),this.reportedSeries$=new ze(`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)&&(tD(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 qo=class extends vi{constructor(e){super(e),this.slow=this.fast=e.initial}updateSmoothedValue(e){this.slow=Qi(this.slow,e,this.params.emaAlphaSlow),this.fast=Qi(this.fast,e,this.params.emaAlphaFast);let t=this.params.fastDirection>0?Math.max:Math.min;this.smoothed=t(this.slow,this.fast)}};var Ho=class extends vi{constructor(e){super(e),this.emaSmoothed=e.initial}updateSmoothedValue(e){let t=Sd(this.pastMeasures,this.takenMeasures);this.emaSmoothed=Qi(this.emaSmoothed,e,this.params.emaAlpha);let i=DT(this.pastMeasures,this.takenMeasures,this.measuresCursor-1,this.params.basisTrendChangeCount);this.smoothed=i?this.emaSmoothed:t}};var jo=class extends vi{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?Qi(this.smoothed,t,this.params.emaAlpha):t}};var ii=class{static getSmoothedValue(e,t,i){return i.type==="TwoEma"?new qo({initial:e,emaAlphaSlow:i.emaAlphaSlow,emaAlphaFast:i.emaAlphaFast,changeThreshold:i.changeThreshold,fastDirection:t,deviationDepth:i.deviationDepth,deviationFactor:i.deviationFactor,label:"throughput"}):new Ho({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 jo({initial:e,label:"liveEdgeDelay",...t})}};var _r=(s,e)=>{s&&s.playbackRate!==e&&(s.playbackRate=e)};import{isNullable as iD,ValueSubject as rD}from"@vkontakte/videoplayer-shared";var va=class s{constructor(e,t){this.currentRepresentation$=new rD(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(!iD(e))for(let t of this.representations)for(let i of t){let r=i.segmentReference,a=r.segments.length,n=r.segments[0].time.from,o=r.segments[a-1].time.to;if(e<n||e>o)continue;let u=r.segments.find(l=>l.time.from<=e&&l.time.to>=e);!u||this.currentSegment?.time.from===u.time.from&&this.currentSegment.time.to===u.time.to||(this.currentSegment=u,this.currentRepresentation$.next({...i,label:"Live Text",language:"ru",isAuto:!0,url:new URL(u.url,r.baseUrl).toString()}))}}destroy(){this.currentRepresentation$.next(null),this.currentSegment=null,this.representations=[]}processStreams(e){for(let t of e??[]){let i=s.filterRepresentations(t.representations);if(i){this.representations[this.representationsCursor]=i,this.representationsCursor=(this.representationsCursor+1)%this.maxRepresentations;break}}}static isSupported(e){return!!e?.some(t=>s.filterRepresentations(t.representations))}static filterRepresentations(e){return e?.filter(t=>t.kind==="text"&&"segmentReference"in t&&We(t.segmentReference))}};var zo=C(At(),1);import{assertNever as Qo}from"@vkontakte/videoplayer-shared";var VT=(s,{useHlsJs:e,useManagedMediaSource:t,useOldMSEDetection:i})=>{let{containers:r,protocols:a,codecs:n,nativeHlsSupported:o}=N.video,u=(n.h264||n.h265)&&n.aac,l=a.mse&&(!i||!!window.MediaStreamTrack)||a.mms&&t;return s.filter(p=>{switch(p){case"DASH_SEP":return l&&r.mp4&&u;case"DASH_WEBM":return l&&r.webm&&n.vp9&&n.opus;case"DASH_WEBM_AV1":return l&&r.webm&&n.av1&&n.opus;case"DASH_STREAMS":return l&&(r.mp4&&u||r.webm&&(n.vp9||n.av1)&&(n.opus||n.aac));case"DASH_LIVE":return l&&r.mp4&&u;case"DASH_LIVE_CMAF":return l&&r.mp4&&u&&r.cmaf;case"DASH_ONDEMAND":return l&&r.mp4&&u;case"HLS":case"HLS_ONDEMAND":return o||e&&l&&r.mp4&&u;case"HLS_LIVE":case"HLS_LIVE_CMAF":return o;case"MPEG":return r.mp4;case"DASH":case"DASH_LIVE_WEBM":return!1;case"WEB_RTC_LIVE":return a.webrtc&&a.ws&&n.h264&&(r.mp4||r.webm);default:return Qo(p)}})},Go=s=>{let{webmDecodingInfo:e}=N.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:Qo(s)}return[t,i]},OT=({webmCodec:s,androidPreferredFormat:e,preferMultiStream:t})=>{let i=[...t?["DASH_STREAMS"]:[],...Go(s),"DASH_SEP","DASH_ONDEMAND",...t?[]:["DASH_STREAMS"]],r=[...t?["DASH_STREAMS"]:[],"DASH_SEP","DASH_ONDEMAND",...t?[]:["DASH_STREAMS"]];if(N.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",...Go(s),"HLS","HLS_ONDEMAND"];case"dash_any_webm":return[...Go(s),"MPEG",...r,"HLS","HLS_ONDEMAND"];case"dash_sep":return["DASH_SEP","MPEG",...Go(s),...r,"HLS","HLS_ONDEMAND"];default:Qo(e)}return N.video.nativeHlsSupported?[...i,"HLS","HLS_ONDEMAND","MPEG"]:[...i,"HLS","HLS_ONDEMAND","MPEG"]},_T=({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=N.device.isMac&&N.browser.isSafari;if(N.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:Qo(s)}else N.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"],Wo=s=>{if(s.size===0)return;if(s.size===1){let t=s.values().next();return(0,zo.default)(t.value.split("."),0)}for(let t of s){let i=(0,zo.default)(t.split("."),0);if(i==="opus"||i==="vp09"||i==="av01")return i}let e=s.values().next();return(0,zo.default)(e.value.split("."),0)};var cD=["timeupdate","progress","play","seeked","stalled","waiting"],dD=["timeupdate","progress","loadeddata","playing","seeked"];var Xo=class{constructor(e){this.element=null;this.manifestUrlString="";this.source=null;this.manifest=null;this.subscription=new Ed;this.representationSubscription=new Ed;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 Ko;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 Ko;this.fetcherError$=new Ko;this.liveStreamEndTimestamp=0;this.isUpdatingLive=!1;this.isJumpGapAfterSeekLive=!1;this.forceEnded$=new Ko;this.gapWatchdogActive=!1;this.destroyController=new ee;this.initedPruneBufferCallback=!1;this.initManifest=Td(this.destroyController.signal,async function*(e,t,i){this.tracer.log("initManifest"),this.element=e,this.manifestUrlString=ge(t,i,2),this.state$.startTransitionTo("manifest_ready"),this.manifest=yield this.updateManifest(),this.manifest?.streams.video.length?this.state$.setState("manifest_ready"):this.error$.next({id:"NoRepresentations",category:Nt.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:Nt.NETWORK,message:"Failed to load manifest",thrown:n})});if(!e)return null;let t=null;try{t=kT(e??"",this.manifestUrlString)}catch(n){let o=Mo(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)&&mt()?.isTypeSupported?.(`${o}; codecs="${u}"`)||n==="text");if(t.live){this.isLive$.next(!!t.live);let{availabilityStartTime:n,latestSegmentPublishTime:o,streamIsUnpublished:u,streamIsAlive:l}=t.live,p=(t.duration??0)/1e3;this.liveSeekableDuration$.next(-1*p),this.liveDuration$.next((o-n)/1e3),this.liveAvailabilityStartTime$.next(t.live.availabilityStartTime);let c="active";l||(c=u?"unpublished":"unexpectedly_down"),this.liveStreamStatus$.next(c)}let r={text:t.streams.text,video:[],audio:[]};for(let n of["video","audio"]){let u=t.streams[n].filter(({mime:c,codecs:d})=>i(n,c,d)),l=new Set(u.map(({codecs:c})=>c)),p=Wo(l);if(p&&(r[n]=u.filter(({codecs:c})=>c.startsWith(p))),n==="video"){let c=this.tuning.preferHDR,d=r.video.some(f=>f.hdr),h=r.video.some(f=>!f.hdr);N.display.isHDR&&c&&d?r.video=r.video.filter(f=>f.hdr):h&&(r.video=r.video.filter(f=>!f.hdr))}}let a={...t,streams:r};return this.tracer.log("updateManifestEnd",Ta(a)),a}.bind(this));this.initRepresentations=Td(this.destroyController.signal,async function*(e,t,i){this.tracer.log("initRepresentationsStart",Ta({initialVideo:e,initialAudio:t,sourceHls:i})),Nr(this.manifest),Nr(this.element),this.representationSubscription.unsubscribe(),this.representationSubscription=new Ed,this.state$.startTransitionTo("representations_ready");let r=d=>{this.representationSubscription.add(Ft(d,"error").pipe(Yo(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?oo():new MediaSource;let a=document.createElement("source");if(r(a),a.src=URL.createObjectURL(this.source),this.element.appendChild(a),this.tuning.useManagedMediaSource&&Ir())if(i){let d=document.createElement("source");r(d),d.type="application/x-mpegurl",d.src=i.url,this.element.appendChild(d)}else this.element.disableRemotePlayback=!0;this.isActiveLive$.next(this.isLive$.getValue());let n={fetcher:this.fetcher,tuning:this.tuning,getCurrentPosition:()=>this.element?this.element.currentTime*1e3:void 0,isActiveLowLatency:()=>this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),manifest:this.manifest},o=this.manifest.streams.video.reduce((d,h)=>[...d,...h.representations],[]);if(this.videoBufferManager=new ma("video",this.source,o,n),this.bufferManagers=[this.videoBufferManager],Ia(t)){let d=this.manifest.streams.audio.reduce((h,f)=>[...h,...f.representations],[]);this.audioBufferManager=new ma("audio",this.source,d,n),this.bufferManagers.push(this.audioBufferManager)}va.isSupported(this.manifest.streams.text)&&!this.isLowLatency$.getValue()&&(this.liveTextManager=new va(this.manifest.streams.text,n)),this.representationSubscription.add(this.fetcher.lastConnectionType$.subscribe(this.lastConnectionType$)),this.representationSubscription.add(this.fetcher.lastConnectionReused$.subscribe(this.lastConnectionReused$)),this.representationSubscription.add(this.fetcher.lastRequestFirstBytes$.subscribe(this.lastRequestFirstBytes$));let u=()=>{this.stallWatchdogSubscription?.unsubscribe(),this.currentStallDuration$.next(0)};if(this.representationSubscription.add(Wi(...dD.map(d=>Ft(this.element,d))).pipe(Ur(d=>this.element?de(this.element.buffered,this.element.currentTime*1e3):0),ya(),lD(d=>{d>this.tuning.dash.bufferEmptinessTolerance&&u()})).subscribe(this.bufferLength$)),this.representationSubscription.add(Wi(Ft(this.element,"ended"),this.forceEnded$).subscribe(()=>{u()})),this.isLive$.getValue()){this.subscription.add(this.liveDuration$.pipe(ya()).subscribe(h=>this.liveStreamEndTimestamp=xd())),this.subscription.add(Ft(this.element,"pause").subscribe(()=>{this.livePauseWatchdogSubscription=Id(1e3).subscribe(h=>{let f=di(this.manifestUrlString,2);this.manifestUrlString=ge(this.manifestUrlString,f+1e3,2),this.liveStreamStatus$.getValue()==="active"&&this.updateManifest()}),this.subscription.add(this.livePauseWatchdogSubscription)})).add(Ft(this.element,"play").subscribe(h=>this.livePauseWatchdogSubscription?.unsubscribe())),this.representationSubscription.add(Fr({isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe(Ur(({isActiveLive:h,isLowLatency:f})=>h&&f),ya()).subscribe(h=>{this.isManualDecreasePlaybackInLive()||_r(this.element,1)})),this.representationSubscription.add(Fr({bufferLength:this.bufferLength$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe(Yo(({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(Yo(({isLive:h})=>h),ya((h,f)=>f.bufferLength<h.bufferLength),Ur(({rtt:h,bufferLength:f,segmentServerLatency:b})=>{let g=di(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,v=h-g;if(this.isManualDecreasePlaybackInLive())return;let P=1;Math.abs(v)>S&&(P=1+Math.sign(v)*T),_r(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(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(UT(1e3)).subscribe(async({liveLoadBufferLength:h,bufferLength:f})=>{if(!this.element||this.isUpdatingLive)return;let b=this.element.playbackRate,g=di(this.manifestUrlString,2),S=Math.abs(this.livePositionFromPlayer$.getValue())*1e3,T=Math.min(S,this.tuning.dashCmafLive.normalizedTargetMinBufferSize*b),v=this.tuning.dashCmafLive.normalizedActualBufferOffset*b,P=this.tuning.dashCmafLive.normalizedLiveMinBufferSize*b,w=isFinite(h)?h:f,M=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),O=S<=this.tuning.live.activeLiveDelay;this.isActiveLive$.next(O);let E="none";if(M?E="active_low_latency":this.isLowLatency$.getValue()&&O?(this.bufferManagers.forEach(R=>R.proceedLowLatencyLive()),E="active_low_latency"):g!==0&&w<T?E="live_forward_buffering":w<T+P&&(E="live_with_target_offset"),isFinite(h)&&(d=h>d?h:d),E==="live_forward_buffering"||E==="live_with_target_offset"){let R=d-(T+v),y=this.normolizeLiveOffset(Math.trunc(g+R/b)),D=Math.abs(y-g),I=0;!h||D<=this.tuning.dashCmafLive.offsetCalculationError?I=g:y>0&&D>this.tuning.dashCmafLive.offsetCalculationError&&(I=y),this.manifestUrlString=ge(this.manifestUrlString,I,2)}(E==="live_with_target_offset"||E==="live_forward_buffering")&&(d=0,await this.updateLive())},h=>{this.error$.next({id:"updateLive",category:Nt.VIDEO_PIPELINE,thrown:h,message:"Failed to update live with subscription"})}))}let l=Wi(...this.bufferManagers.map(d=>d.fullyBuffered$)).pipe(Ur(()=>this.bufferManagers.every(d=>d.fullyBuffered$.getValue()))),p=Wi(...this.bufferManagers.map(d=>d.onLastSegment$)).pipe(Ur(()=>this.bufferManagers.some(d=>d.onLastSegment$.getValue()))),c=Fr({allBuffersFull:l,someBufferEnded:p}).pipe(ya(),Ur(({allBuffersFull:d,someBufferEnded:h})=>d&&h),Yo(d=>d));if(this.representationSubscription.add(Wi(this.forceEnded$,c).subscribe(()=>{if(this.source&&this.source.readyState==="open"&&Array.from(this.source.sourceBuffers).every(d=>!d.updating))try{this.source?.endOfStream()}catch(d){this.error$.next({id:"EndOfStream",category:Nt.VIDEO_PIPELINE,message:"Failed to end MediaSource stream",thrown:d})}})),this.representationSubscription.add(Wi(...this.bufferManagers.map(d=>d.error$)).subscribe(this.error$)),this.representationSubscription.add(this.videoBufferManager.playingRepresentation$.subscribe(this.currentVideoRepresentation$)),this.representationSubscription.add(this.videoBufferManager.playingRepresentationInit$.subscribe(this.currentVideoRepresentationInit$)),this.representationSubscription.add(this.videoBufferManager.currentSegmentLength$.subscribe(this.currentVideoSegmentLength$)),this.audioBufferManager&&(this.representationSubscription.add(this.audioBufferManager.playingRepresentation$.subscribe(this.currentAudioRepresentation$)),this.representationSubscription.add(this.audioBufferManager.currentSegmentLength$.subscribe(this.currentAudioSegmentLength$))),this.liveTextManager&&this.representationSubscription.add(this.liveTextManager.currentRepresentation$.subscribe(this.currentLiveTextRepresentation$)),this.source.readyState!=="open"){let d=this.tuning.dash.sourceOpenTimeout>=0;yield new Promise((h,f)=>{d&&(this.timeoutSourceOpenId=setTimeout(()=>{if(this.source?.readyState==="open"){h();return}this.tuning.dash.rejectOnSourceOpenTimeout?f(new Error("Timeout reject when wait sourceopen event")):h()},this.tuning.dash.sourceOpenTimeout)),this.source?.addEventListener("sourceopen",()=>{this.timeoutSourceOpenId&&clearTimeout(this.timeoutSourceOpenId),h()},{once:!0})})}if(!this.isLive$.getValue()){let d=[this.manifest.duration??0,...(0,wd.default)((0,wd.default)([...this.manifest.streams.audio,...this.manifest.streams.video],h=>h.representations),h=>{let f=[];return h.duration&&f.push(h.duration),We(h.segmentReference)&&h.segmentReference.totalSegmentsDurationMs&&f.push(h.segmentReference.totalSegmentsDurationMs),f})];this.source.duration=Math.max(...d)/1e3}this.audioBufferManager&&Ia(t)?yield Promise.all([this.videoBufferManager.startWith(e),this.audioBufferManager.startWith(t)]):yield this.videoBufferManager.startWith(e),this.state$.setState("representations_ready"),this.tracer.log("initRepresentationsEnd")}.bind(this));this.tick=()=>{if(!this.element||!this.videoBufferManager||this.source?.readyState!=="open")return;let e=this.element.currentTime*1e3;this.videoBufferManager.maintain(e),this.audioBufferManager?.maintain(e),this.liveTextManager?.maintain(e),(this.videoBufferManager.gaps.length||this.audioBufferManager?.gaps.length)&&!this.gapWatchdogActive&&(this.gapWatchdogActive=!0,this.gapWatchdogSubscription=Id(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 Uo({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=ii.getLiveBufferSmoothedValue(this.tuning.dashCmafLive.lowLatency.maxTargetOffset,{...e.tuning.dashCmafLive.lowLatency.bufferEstimator}),this.initTracerSubscription()}async seekLive(e){Nr(this.element);let t=this.liveStreamStatus$.getValue()!=="active"?xd()-this.liveStreamEndTimestamp:0,i=this.normolizeLiveOffset(e+t);this.isActiveLive$.next(i===0),this.manifestUrlString=ge(this.manifestUrlString,i,2),this.manifest=await this.updateManifest(),this.manifest&&(this.isJumpGapAfterSeekLive=!0,await this.videoBufferManager?.seekLive(this.manifest.streams.video),await this.audioBufferManager?.seekLive(this.manifest.streams.audio),this.liveTextManager?.seekLive(this.manifest.streams.text))}initBuffer(){Nr(this.element),this.state$.setState("running"),this.subscription.add(Wi(...cD.filter(e=>e!=="timeupdate").map(e=>Ft(this.element,e)),Ft(window,"online"),Ft(this.element,"timeupdate").pipe(UT(300))).subscribe(()=>this.tick(),e=>{this.error$.next({id:"DashVKPlayer",category:Nt.WTF,message:"Internal logic error",thrown:e})})),this.subscription.add(Ft(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(Ft(this.element,"waiting").subscribe(()=>{this.element&&this.element.readyState===HTMLMediaElement.HAVE_CURRENT_DATA&&!this.element.seeking&&Ne(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,p=u<a&&r-n>this.tuning.dash.crashOnStallTWithoutDataTimeout,c=this.audioBufferManager&&l<a&&r-o>this.tuning.dash.crashOnStallTWithoutDataTimeout;if((p||c)&&t>this.tuning.dash.crashOnStallTWithoutDataTimeout||t>=this.tuning.dash.crashOnStallTimeout)throw new Error(`Stall timeout exceeded: ${t} ms`);if(this.isLive$.getValue()&&t%2e3===0){let d=this.normolizeLiveOffset(-1*this.livePositionFromPlayer$.getValue()*1e3);this.seekLive(d).catch(h=>{this.error$.next({id:"stallIntervalCallback",category: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",Ta(i))};this.stallWatchdogSubscription?.unsubscribe(),this.stallWatchdogSubscription=Id(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){Nr(this.element),Nr(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),Ne(this.element.buffered,i)||await Promise.all([this.videoBufferManager.abort(),this.audioBufferManager?.abort()]),!(FT(this.element)||FT(this.videoBufferManager))&&(this.videoBufferManager.maintain(i),this.audioBufferManager?.maintain(i),this.element.currentTime=i/1e3,this.tracer.log("seek",Ta({requestedPosition:e,forcePrecise:t,position:i})))}warmUpMediaSourceIfNeeded(e=this.element?.currentTime){Ia(this.element)&&Ia(this.source)&&Ia(e)&&this.source?.readyState==="ended"&&this.element.duration*1e3-e>this.tuning.dash.seekBiasInTheEnd&&this.bufferManagers.forEach(t=>t.warmUpMediaSource())}get isStreamEnded(){return this.source?.readyState==="ended"}stop(){this.tracer.log("stop"),this.element?.querySelectorAll("source").forEach(e=>{URL.revokeObjectURL(e.src),e.remove()}),this.element=null,this.source=null,this.manifest=null,this.currentVideoRepresentation$.next(void 0),this.videoBufferManager?.destroy(),this.videoBufferManager=null,this.audioBufferManager?.destroy(),this.audioBufferManager=null,this.bufferManagers=[],this.state$.setState("none")}setBufferTarget(e){for(let t of this.bufferManagers)t.setTarget(e)}getStreams(){return this.manifest?.streams}setPreloadOnly(e){for(let t of this.bufferManagers)t.setPreloadOnly(e)}destroy(){this.subscription.unsubscribe(),this.representationSubscription.unsubscribe(),this.timeoutSourceOpenId&&clearTimeout(this.timeoutSourceOpenId),this.destroyController.abort(),this.fetcher.destroy(),this.stop(),this.source?.readyState==="open"&&Array.from(this.source.sourceBuffers).every(e=>!e.updating)&&this.source.endOfStream(),this.source=null,this.tracer.end()}initTracerSubscription(){let e=uD(this.tracer.error.bind(this.tracer));this.subscription.add(this.error$.subscribe(e("error")))}isManualDecreasePlaybackInLive(){return!this.element||!this.isLive$.getValue()?!1:1-this.element.playbackRate>this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup}normolizeLiveOffset(e){return Math.trunc(e/1e3)*1e3}async updateLive(){this.isUpdatingLive=!0,this.manifest=await this.updateManifest(),this.manifest&&(this.bufferManagers?.forEach(e=>e.updateLive(this.manifest)),this.liveTextManager?.updateLive(this.manifest)),this.isUpdatingLive=!1}jumpGap(){if(!this.element||!this.videoBufferManager)return;let e=this.videoBufferManager.getBufferedTo();if(e===null)return;let t=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),i=this.isJumpGapAfterSeekLive,r=this.element.currentTime;this.isJumpGapAfterSeekLive&&!t&&this.element.currentTime>e&&(this.isJumpGapAfterSeekLive=!1,this.element.currentTime=0);let a=this.element.currentTime*1e3,n=null,o=this.element.readyState===HTMLMediaElement.HAVE_METADATA?this.tuning.endGapTolerance:0;for(let u of this.bufferManagers)for(let l of u.gaps)(l.persistent||u.playingRepresentation$.getValue()===l.representation)&&l.from-o<=a&&l.to+o>a&&(this.element.duration*1e3-l.to<this.tuning.endGapTolerance?n=1/0:(n===null||l.to>n)&&(n=l.to));if(n!==null){let u=n+10;this.gapWatchdogSubscription.unsubscribe(),this.gapWatchdogActive=!1,u===1/0?this.forceEnded$.next():(this.element.currentTime=u/1e3,this.tracer.log("jumpGap",Ta({isJumpGapAfterSeekLive:i,isActiveLowLatency:t,initialCurrentTime:r,jumpTo:u,resultCurrentTime:this.element.currentTime})))}}};var Jo=class{constructor(e,t){this.fov=e,this.orientation=t}};var Zo=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 HT=`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 jT=`#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 qr=class{constructor(e,t,i){this.videoInitialized=!1;this.active=!1;this.container=e,this.sourceVideoElement=t,this.params=i,this.canvas=this.createCanvas();let r=this.canvas.getContext("webgl");if(!r)throw new Error("Could not initialize WebGL context");this.gl=r,this.container.appendChild(this.canvas),this.camera=new Jo(this.params.fov,this.params.orientation),this.cameraRotationManager=new Zo(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(HT,this.gl.VERTEX_SHADER),i=this.createShader(jT,this.gl.FRAGMENT_SHADER);if(this.gl.attachShader(e,t),this.gl.attachShader(e,i),this.gl.linkProgram(e),!this.gl.getProgramParameter(e,this.gl.LINK_STATUS))throw this.destroy(),new Error("Could not link shader program.");return e}createTexture(){let e=this.gl.createTexture();if(!e)throw this.destroy(),new Error("Could not create texture");return this.gl.bindTexture(this.gl.TEXTURE_2D,e),this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_MAG_FILTER,this.gl.LINEAR),this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_MIN_FILTER,this.gl.LINEAR),this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_WRAP_S,this.gl.CLAMP_TO_EDGE),this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_WRAP_T,this.gl.CLAMP_TO_EDGE),this.gl.bindTexture(this.gl.TEXTURE_2D,null),e}updateTexture(){this.gl.bindTexture(this.gl.TEXTURE_2D,this.videoTexture),this.gl.pixelStorei(this.gl.UNPACK_FLIP_Y_WEBGL,!0),this.gl.texImage2D(this.gl.TEXTURE_2D,0,this.gl.RGBA,this.gl.RGBA,this.gl.UNSIGNED_BYTE,this.sourceVideoElement),this.gl.bindTexture(this.gl.TEXTURE_2D,null)}createVertexBuffer(){let e=this.gl.createBuffer();if(!e)throw this.destroy(),new Error("Could not create vertex buffer");let t=1,i=1,r=this.frameHeight/(this.frameWidth/this.viewportWidth);return r>this.viewportHeight?t=this.viewportHeight/r:i=r/this.viewportHeight,this.gl.bindBuffer(this.gl.ARRAY_BUFFER,e),this.gl.bufferData(this.gl.ARRAY_BUFFER,new Float32Array([-t,-i,t,-i,t,i,-t,i]),this.gl.STATIC_DRAW),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,null),e}createTextureMappingBuffer(){let e=this.gl.createBuffer();if(!e)throw this.destroy(),new Error("Could not create texture mapping buffer");return e}calculateTexturePosition(){let e=.5-this.camera.orientation.x/360,t=.5-this.camera.orientation.y/180,i=this.camera.fov.x/360/2,r=this.camera.fov.y/180/2,a=e-i,n=t-r,o=e+i,u=t-r,l=e+i,p=t+r,c=e-i,d=t+r;return[a,n,o,u,l,p,c,d]}updateTextureMappingBuffer(){this.gl.bindBuffer(this.gl.ARRAY_BUFFER,this.textureMappingBuffer),this.gl.bufferData(this.gl.ARRAY_BUFFER,new Float32Array([...this.calculateTexturePosition()]),this.gl.STATIC_DRAW),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,null)}updateFrameSize(){this.frameWidth=this.sourceVideoElement.videoWidth,this.frameHeight=this.sourceVideoElement.videoHeight}createCanvas(){let e=document.createElement("canvas");return e.style.position="absolute",e.style.left="0",e.style.top="0",e.style.width="100%",e.style.height="100%",e}};import{isNullable as fD,now as GT,Subscription as mD,filter as bD,combine as zT,debounce as gD,ValueSubject as Pd,isNonNullable as SD}from"@vkontakte/videoplayer-shared";var kd=class{constructor(){this.isSeeked$=new Pd(!1);this.isBuffering$=new Pd(!1);this.currentStallsCount=0;this.maxQualityLimit=void 0;this.lastUniqueVideoTrackSelectedTimestamp=0;this.predictedThroughputWithoutData=0;this.subscription=new mD;this.severeStallOccurred$=new Pd(!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(zT({isBuffering:this.isBuffering$,isSeeked:this.isSeeked$}).pipe(gD(this.qualityLimitsOnStall.stallDurationToBeCount),bD(({isBuffering:t,isSeeked:i})=>t&&!i)).subscribe(t=>{this.currentStallsCount++})),this.subscription.add(zT({currentStallDuration:this.currentStallDuration$}).subscribe(({currentStallDuration:t})=>{let{stallDurationNoDataBeforeQualityDecrease:i,stallCountBeforeQualityDecrease:r,resetQualityRestrictionTimeout:a,ignoreStallsOnSeek:n}=this.qualityLimitsOnStall;if(fD(this.lastUniqueVideoTrackSelected)||n&&this.isSeeked$.getValue())return;let o=this.rtt$.getValue(),u=this.throughput$.getValue(),l=this.videoLastDataObtainedTimestamp$.getValue(),p=GT(),c=r&&this.currentStallsCount>=r,d=i&&p-this.lastUniqueVideoTrackSelectedTimestamp>=i+o&&p-l>=i+o&&t>=i;(c||d)&&(this.severeStallOccurred$.next(!0),window.clearTimeout(this.qualityRestrictionTimer),this.maxQualityLimit=this.lastUniqueVideoTrackSelected.quality,SD(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},a))}))}get videoMaxQualityLimit(){return this.maxQualityLimit}get predictedThroughput(){return this.predictedThroughputWithoutData}set lastVideoTrackSelected(e){this.lastUniqueVideoTrackSelected?.id!==e.id&&(this.lastUniqueVideoTrackSelected=e,this.lastUniqueVideoTrackSelectedTimestamp=GT(),this.currentStallsCount=0)}destroy(){window.clearTimeout(this.qualityRestrictionTimer),this.subscription.unsubscribe()}},eu=kd;import{combine as vD,map as yD,observeElementSize as TD,Subscription as ID,ValueSubject as Ad,noop as xD}from"@vkontakte/videoplayer-shared";var tu=class{constructor(){this.subscription=new ID;this.pipSize$=new Ad(void 0);this.videoSize$=new Ad(void 0);this.elementSize$=new Ad(void 0);this.pictureInPictureWindowRemoveEventListener=xD}connect({observableVideo:e,video:t}){let i=r=>{let a=r.target;this.pipSize$.next({width:a.width,height:a.height})};this.subscription.add(TD(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(vD({videoSize:this.videoSize$,pipSize:this.pipSize$,inPip:e.inPiP$}).pipe(yD(({videoSize:r,inPip:a,pipSize:n})=>a?n:r)).subscribe(this.elementSize$))}getValue(){return this.elementSize$.getValue()}subscribe(e,t){return this.elementSize$.subscribe(e,t)}getObservable(){return this.elementSize$}destroy(){this.pictureInPictureWindowRemoveEventListener(),this.subscription.unsubscribe()}};var Yi=class{constructor(e){this.subscription=new RD;this.videoState=new F("stopped");this.droppedFramesManager=new Ar;this.stallsManager=new eu;this.elementSizeManager=new tu;this.videoTracksMap=new Map;this.audioTracksMap=new Map;this.textTracksMap=new Map;this.videoStreamsMap=new Map;this.audioStreamsMap=new Map;this.videoTrackSwitchHistory=new mi;this.audioTrackSwitchHistory=new mi;this.selectedRepresentations={audio:null,video:null};this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),i=this.params.desiredState.playbackState.getTransition(),r=this.params.desiredState.seekState.getState();if(!this.videoState.getTransition()){if(r.state==="requested"&&i?.to!=="paused"&&e!=="stopped"&&t!=="stopped"&&this.seek(r.position,r.forcePrecise),t==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.player.stop(),this.video.load(),this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),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 wD(e)}}};this.init3DScene=e=>{if(this.scene3D)return;this.scene3D=new qr(this.params.container,this.video,{fov:this.params.tuning.spherical.fov,orientation:this.params.tuning.spherical.orientation||{x:e.projectionData?.pose.yaw||0,y:e.projectionData?.pose.pitch||0,z:e.projectionData?.pose.roll||0},rotationSpeed:this.params.tuning.spherical.rotationSpeed,maxYawAngle:this.params.tuning.spherical.maxYawAngle,rotationSpeedCorrection:this.params.tuning.spherical.rotationSpeedCorrection,degreeToPixelCorrection:this.params.tuning.spherical.degreeToPixelCorrection,speedFadeTime:this.params.tuning.spherical.speedFadeTime,speedFadeThreshold:this.params.tuning.spherical.speedFadeThreshold});let t=this.elementSizeManager.getValue();t&&this.scene3D.setViewportSize(t.width,t.height)};this.destroy3DScene=()=>{this.scene3D&&(this.scene3D.destroy(),this.scene3D=void 0)};this.textTracksManager=new Je(e.source.url),this.params=e,this.video=De(e.container,e.tuning),this.tracer=e.dependencies.tracer.createComponentTracer(this.constructor.name),this.params.output.element$.next(this.video),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(Ee(this.params.source.url)),this.params.output.isLive$.next(!1),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.player=new Xo({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:QT.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(Rd(c=>!!c.length),YT()).subscribe(c=>{this.droppedFramesManager.connect({logger:this.params.dependencies.logger,video:this.video,droppedFramesChecker:this.params.tuning.droppedFramesChecker,isAuto:this.params.desiredState.autoVideoTrackSwitching,playing$:i.playing$,pause$:i.pause$,tracks:c})}));let n=this.params.desiredState.seekState.stateChangeEnded$.pipe(Ld(c=>c.to.state!=="none"),xa());this.stallsManager.connect({isSeeked$:n,currentStallDuration$:this.player.currentStallDuration$.pipe(xa()),videoLastDataObtainedTimestamp$:this.player.videoLastDataObtainedTimestamp$,throughput$:this.params.dependencies.throughputEstimator.throughput$,rtt$:this.params.dependencies.throughputEstimator.rtt$,qualityLimitsOnStall:this.params.tuning.dash.qualityLimitsOnStall,isBuffering$:i.isBuffering$,looped$:i.looped$}),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(Rd(WT),YT()),e.firstBytesEvent$),a(this.stallsManager.severeStallOccurred$,e.severeStallOccurred$),a(this.videoState.stateChangeEnded$.pipe(Ld(c=>c.to)),this.params.output.playbackState$),this.subscription.add(i.loopExpected$.subscribe(c=>{t.seekState.setState({state:"requested",position:0,forcePrecise:!1})})),this.subscription.add(i.looped$.subscribe(()=>this.player.warmUpMediaSourceIfNeeded(),r)),this.subscription.add(i.seeked$.subscribe(e.seekedEvent$,r)),this.subscription.add(St(this.video,t.isLooped,r)),this.subscription.add(Ve(this.video,t.volume,i.volumeState$,r)),this.subscription.add(i.volumeState$.subscribe(this.params.output.volume$,r)),this.subscription.add(Xe(this.video,t.playbackRate,i.playbackRateState$,r)),this.elementSizeManager.connect({video:this.video,observableVideo:i}),a(et(this.video,{threshold:this.params.tuning.autoTrackSelection.activeVideoAreaThreshold}),e.elementVisible$),this.subscription.add(i.playing$.subscribe(()=>{this.videoState.setState("playing"),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:c})=>{if(c==="manifest_ready"){this.videoTracksMap=new Map,this.audioTracksMap=new Map,this.textTracksMap=new Map;let d=this.player.getStreams();if(PD(d,"Manifest not loaded or empty"),!this.params.tuning.isAudioDisabled){let f=[];for(let b of d.audio){f.push(cd(b));let g=[];for(let S of b.representations){let T=gT(S);g.push(T),this.audioTracksMap.set(T,{stream:b,representation:S})}this.audioStreamsMap.set(b,g)}this.params.output.availableAudioStreams$.next(f)}let h=[];for(let f of d.video){h.push(dd(f));let b=[];for(let g of f.representations){let S=bT({...g,streamId:f.id});S&&(b.push(S),this.videoTracksMap.set(S,{stream:f,representation:g}))}this.videoStreamsMap.set(f,b)}this.params.output.availableVideoStreams$.next(h);for(let f of d.text)for(let b of f.representations){let g=ST(f,b);this.textTracksMap.set(g,{stream:f,representation:b})}this.params.output.availableVideoTracks$.next(Array.from(this.videoTracksMap.keys())),this.params.output.availableAudioTracks$.next(Array.from(this.audioTracksMap.keys())),this.params.output.isAudioAvailable$.next(!!this.audioTracksMap.size),this.audioTracksMap.size&&this.textTracksMap.size&&this.params.desiredState.internalTextTracks.startTransitionTo(Array.from(this.textTracksMap.keys()))}else c==="representations_ready"&&(this.videoState.setState("ready"),this.player.initBuffer())},r));let{vktvAbrThrottle:o}=this.params.tuning.dash,u=o&&TT(o)||null;this.subscription.add(iu(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$,AD(this.video,"progress")).pipe(Rd(()=>this.videoTracksMap.size>0)).subscribe(async()=>{let c=this.player.state$.getState(),d=this.player.state$.getTransition();if(c!=="manifest_ready"&&c!=="running"||d||c==="running"&&u&&!u())return;t.autoVideoTrackSwitching.getTransition()&&t.autoVideoTrackSwitching.setState(t.autoVideoTrackSwitching.getState()),this.selectVideoAudioRepresentations();let{video:h,audio:f}=this.selectedRepresentations;if(!h)return;let b=ji(this.videoTracksMap.keys(),S=>this.videoTracksMap.get(S)?.representation.id===h.id);WT(b)&&(this.stallsManager.lastVideoTrackSelected=b);let g=this.params.desiredState.autoVideoTrackLimits.getTransition();if(g&&this.params.output.autoVideoTrackLimits$.next(g.to),c==="manifest_ready")await this.player.initRepresentations(h.id,f?.id,this.params.sourceHls);else if(await this.player.switchRepresentation("video",h.id),f){let S=!!t.audioStream.getTransition();await this.player.switchRepresentation("audio",f.id,S)}},r)),this.subscription.add(t.cameraOrientation.stateChangeEnded$.subscribe(({to:c})=>{this.scene3D&&c&&this.scene3D.pointCameraTo(c.x,c.y)})),this.subscription.add(this.elementSizeManager.subscribe(c=>{this.scene3D&&c&&this.scene3D.setViewportSize(c.width,c.height)})),this.subscription.add(this.player.currentVideoRepresentation$.pipe(xa()).subscribe(c=>{let d=ji(this.videoTracksMap.entries(),([,{representation:g}])=>g.id===c);if(!d){e.currentVideoTrack$.next(void 0),e.currentVideoStream$.next(void 0);return}let[h,{stream:f}]=d,b=this.params.desiredState.videoStream.getTransition();b&&b.to&&b.to.id===f.id&&this.params.desiredState.videoStream.setState(b.to),e.currentVideoTrack$.next(h),e.currentVideoStream$.next(dd(f))},r)),this.subscription.add(this.player.currentAudioRepresentation$.pipe(xa()).subscribe(c=>{let d=ji(this.audioTracksMap.entries(),([,{representation:g}])=>g.id===c);if(!d){e.currentAudioStream$.next(void 0);return}let[h,{stream:f}]=d,b=this.params.desiredState.audioStream.getTransition();b&&b.to&&b.to.id===f.id&&this.params.desiredState.audioStream.setState(b.to),e.currentAudioStream$.next(cd(f))},r)),this.subscription.add(this.player.currentVideoRepresentationInit$.subscribe(c=>{if(c?.is3dVideo&&this.params.tuning.spherical?.enabled)try{this.init3DScene(c),e.is3DVideo$.next(!0)}catch(d){e.warning$.next({id:"DashProvider",message:`DashProvider could not initialize 3D-scene: ${d}`})}else this.destroy3DScene(),this.params.tuning.spherical?.enabled&&e.is3DVideo$.next(!1)},r)),this.subscription.add(this.player.currentVideoSegmentLength$.subscribe(e.currentVideoSegmentLength$,r)),this.subscription.add(this.player.currentAudioSegmentLength$.subscribe(e.currentAudioSegmentLength$,r)),this.textTracksManager.connect(this.video,t,e);let l=t.playbackState.stateChangeStarted$.pipe(Ld(({to:c})=>c==="ready"),xa());this.subscription.add(iu(l,t.autoVideoTrackSwitching.stateChangeStarted$,this.player.state$.stateChangeEnded$,Md(["init"])).subscribe(()=>{let c=t.autoVideoTrackSwitching.getState(),h=t.playbackState.getState()==="ready"?this.params.tuning.dash.forwardBufferTargetPreload:c?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;this.player.setBufferTarget(h)})),this.subscription.add(iu(l,this.player.state$.stateChangeEnded$,Md(["init"])).subscribe(()=>this.player.setPreloadOnly(t.playbackState.getState()==="ready")));let p=iu(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,Md(["init"])).pipe(kD(0));this.subscription.add(p.subscribe(this.syncPlayback,r))}selectVideoAudioRepresentations(){if(this.player.isStreamEnded)return;let e=this.params.tuning.useNewAutoSelectVideoTrack?Ls:Rs,t=this.params.tuning.useNewAutoSelectVideoTrack?Eo:xo,i=this.params.tuning.useNewAutoSelectVideoTrack?Ot:Io,{desiredState:r,output:a}=this.params,n=r.autoVideoTrackSwitching.getState(),o=r.videoTrack.getState()?.id,u=ji(this.videoTracksMap.keys(),E=>E.id===o),l=a.currentVideoTrack$.getValue(),p=r.videoStream.getState()??(u&&this.videoTracksMap.get(u)?.stream)??this.videoStreamsMap.size===1?this.videoStreamsMap.keys().next().value:void 0;if(!p)return;let c=ji(this.videoStreamsMap.keys(),E=>E.id===p.id),d=c&&this.videoStreamsMap.get(c);if(!d)return;let h=de(this.video.buffered,this.video.currentTime*1e3),f;this.player.isActiveLive$.getValue()?f=this.player.isLowLatency$.getValue()?this.params.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.params.tuning.dashCmafLive.normalizedLiveMinBufferSize:this.player.isLive$.getValue()?f=this.params.tuning.dashCmafLive.normalizedTargetMinBufferSize:f=n?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;let b=(this.video.duration*1e3||1/0)-this.video.currentTime*1e3,g=Math.min(h/Math.min(f,b||1/0),1),S=r.audioStream.getState()??(this.audioStreamsMap.size===1?this.audioStreamsMap.keys().next().value:void 0),T=S?.id&&ji(this.audioStreamsMap.keys(),E=>E.id===S.id)||this.audioStreamsMap.keys().next().value,v=0;if(T){if(u&&!n){let E=e(u,d,this.audioStreamsMap.get(T)??[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);v=Math.max(v,E?.bitrate??-1/0)}if(l){let E=e(l,d,this.audioStreamsMap.get(T)??[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);v=Math.max(v,E?.bitrate??-1/0)}}let P=u;(n||!P)&&(P=i(d,{container:this.elementSizeManager.getValue(),panelSize:this.params.panelSize,estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),tuning:this.params.tuning.autoTrackSelection,limits:this.params.desiredState.autoVideoTrackLimits.getState(),reserve:v,forwardBufferHealth:g,current:l,visible:this.params.output.elementVisible$.getValue(),history:this.videoTrackSwitchHistory,playbackRate:this.video.playbackRate,droppedVideoMaxQualityLimit:this.droppedFramesManager.droppedVideoMaxQualityLimit,stallsVideoMaxQualityLimit:this.stallsManager.videoMaxQualityLimit,stallsPredictedThroughput:this.stallsManager.predictedThroughput,abrLogger:this.params.dependencies.abrLogger}));let w=T&&t(P,d,this.audioStreamsMap.get(T)??[],{estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),stallsPredictedThroughput:this.stallsManager.predictedThroughput,tuning:this.params.tuning.autoTrackSelection,forwardBufferHealth:g,history:this.audioTrackSwitchHistory,playbackRate:this.video.playbackRate,abrLogger:this.params.dependencies.abrLogger}),M=this.videoTracksMap.get(P)?.representation,O=w&&this.audioTracksMap.get(w)?.representation;M&&O?(this.selectedRepresentations.video=M,this.selectedRepresentations.audio=O):M&&!O&&this.audioTracksMap.size===0&&(this.selectedRepresentations.video=M,this.selectedRepresentations.audio=null)}prepare(e=0){this.player.initManifest(this.video,this.params.source.url,e)}playIfAllowed(){_e(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),k(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:QT.DOM,thrown:e}))}destroy(){this.subscription.unsubscribe(),this.droppedFramesManager.destroy(),this.stallsManager.destroy(),this.elementSizeManager.destroy(),this.destroy3DScene(),this.textTracksManager.destroy(),this.player.destroy(),this.params.output.element$.next(void 0),this.params.output.currentVideoStream$.next(void 0),Ce(this.video),this.tracer.end()}};var Ea=class extends Yi{subscribe(){super.subscribe();let{output:e,observableVideo:t,connect:i}=this.getProviderSubscriptionInfo();i(t.timeUpdate$,e.position$),i(t.durationChange$,e.duration$)}seek(e,t){this.params.output.willSeekEvent$.next(),this.player.seek(e,t)}};import{combine as $d,merge as KT,filter as XT,filterChanged as LD,isNullable as Bd,map as JT,ValueSubject as Dd,isNonNullable as MD}from"@vkontakte/videoplayer-shared";var wa=class extends Yi{constructor(e){super(e),this.textTracksManager.destroy()}subscribe(){super.subscribe();let e=-1,{output:t,observableVideo:i,desiredState:r,connect:a}=this.getProviderSubscriptionInfo();this.params.output.position$.next(0),this.params.output.isLive$.next(!0),a(i.timeUpdate$,t.liveBufferTime$),a(this.player.liveSeekableDuration$,t.duration$),a(this.player.liveLatency$,t.liveLatency$);let n=new Dd(1);a(i.playbackRateState$,n),this.subscription.add(this.params.output.position$.subscribe(this.player.livePositionFromPlayer$)).add(r.isLowLatency.stateChangeEnded$.pipe(JT(o=>o.to)).subscribe(this.player.isLowLatency$)).add($d({liveBufferTime:t.liveBufferTime$,liveAvailabilityStartTime:this.player.liveAvailabilityStartTime$}).pipe(JT(({liveBufferTime:o,liveAvailabilityStartTime:u})=>o&&u?o+u:void 0)).subscribe(t.liveTime$)).add(this.player.liveStreamStatus$.pipe(XT(o=>MD(o))).subscribe(o=>t.isLiveEnded$.next(o!=="active"&&t.position$.getValue()===0))).add($d({liveDuration:this.player.liveDuration$,liveStreamStatus:this.player.liveStreamStatus$,playbackRate:KT(i.playbackRateState$,new Dd(1))}).pipe(XT(({liveStreamStatus:o,liveDuration:u})=>o==="active"&&!!u)).subscribe(({liveDuration:o,playbackRate:u})=>{let l=t.liveBufferTime$.getValue(),p=t.position$.getValue(),{playbackCatchupSpeedup:c}=this.params.tuning.dashCmafLive.lowLatency;p||u<1-c||this.video.paused||Bd(l)||(e=o-l)})).add($d({time:t.liveBufferTime$,liveDuration:this.player.liveDuration$,playbackRate:KT(i.playbackRateState$,new Dd(1))}).pipe(LD((o,u)=>this.player.liveStreamStatus$.getValue()==="active"?o.liveDuration===u.liveDuration:o.time===u.time)).subscribe(({time:o,liveDuration:u,playbackRate:l})=>{let p=t.position$.getValue(),{playbackCatchupSpeedup:c}=this.params.tuning.dashCmafLive.lowLatency;if(!p&&!this.video.paused&&l>=1-c||Bd(o)||Bd(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=vT(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 TC,assertNonNullable as IC,debounce as xC,ErrorCategory as AI,filter as RI,filterChanged as un,fromEvent as EC,isNonNullable as LI,map as ip,merge as pu,observableFrom as rp,once as MI,Subscription as wC}from"@vkontakte/videoplayer-shared";var ep=C(Ns(),1);import{abortable as Kd,assertNonNullable as Qr,combine as Wr,ErrorCategory as Ut,filter as uu,filterChanged as an,flattenObject as nn,fromEvent as ni,getTraceSubscriptionMethod as cC,interval as Xd,isNonNullable as on,isNullable as kI,map as Yr,merge as er,now as Jd,Subject as lu,Subscription as Zd,tap as dC,throttle as pC,ValueSubject as he}from"@vkontakte/videoplayer-shared";var su=C(gt(),1),Gr=C(At(),1),au=C(Ns(),1);var II=C(Is(),1);import{assertNever as $D,ErrorCategory as ZT,Subject as eI}from"@vkontakte/videoplayer-shared";var BD=18,tI=!1;try{tI=N.browser.isSafari&&!!N.browser.safariVersion&&N.browser.safariVersion<=BD}catch(s){console.error(s)}var Cd=class{constructor(e){this.bufferFull$=new eI;this.error$=new eI;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:ZT.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)};tI&&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:ZT.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:$D(t)}}},iI=Cd;import{abortable as Ti,assertNonNullable as it,ErrorCategory as ai,fromEvent as zd,getExponentialDelay as Qd,isNonNullable as jr,isNullable as Ue,now as ru,once as tC,Subject as iC,Subscription as rC,ValueSubject as Zi}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),i>e.byteLength-e.byteOffset&&(this.size32=NaN);let r=this.size32?this.size32-8:void 0,a=e.byteOffset+this.cursor;this.size64=0,this.usertype=0,this.content=new DataView(e.buffer,a,r)}get id(){return this.type}get size(){return this.size32}scanForBoxes(e){return this.boxParser.parse(e)}readString(e,t="ascii"){let r=new TextDecoder(t).decode(new DataView(this.source.buffer,this.source.byteOffset+this.cursor,e));return this.cursor+=e,r}readUint8(){let e=this.source.getUint8(this.cursor);return this.cursor+=1,e}readUint16(){let e=this.source.getUint16(this.cursor);return this.cursor+=2,e}readUint32(){let e=this.source.getUint32(this.cursor);return this.cursor+=4,e}readUint64(){let e=this.source.getBigInt64(this.cursor);return this.cursor+=8,e}};var Hr=class extends z{};var Pa=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 ka=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 Aa=class extends z{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var ae=class extends z{constructor(e,t){super(e,t);let i=this.readUint32();this.version=i>>>24,this.flags=i&16777215}};var Ra=class extends ae{constructor(e,t){super(e,t),this.creationTime=this.readUint32(),this.modificationTime=this.readUint32(),this.timescale=this.readUint32(),this.duration=this.readUint32(),this.rate=this.readUint32(),this.volume=this.readUint16()}};var La=class extends z{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Ma=class extends z{constructor(e,t){super(e,t),this.data=this.content}};var Ki=class extends ae{get earliestPresentationTime(){return this.earliestPresentationTime32}get firstOffset(){return this.firstOffset32}constructor(e,t){super(e,t),this.segments=[],this.referenceId=this.readUint32(),this.timescale=this.readUint32(),this.earliestPresentationTime32=this.readUint32(),this.firstOffset32=this.readUint32(),this.earliestPresentationTime64=0,this.firstOffset64=0,this.referenceCount=this.readUint32()&65535;for(let i=0;i<this.referenceCount;i++){let r=this.readUint32(),a=r>>>31,n=r<<1>>>1,o=this.readUint32();r=this.readUint32();let u=r>>>28,l=r<<3>>>3;this.segments.push({referenceType:a,referencedSize:n,subsegmentDuration:o,SAPType:u,SAPDeltaTime:l})}}};var $a=class extends z{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Ba=class extends z{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Da=class extends ae{constructor(e,t){switch(super(e,t),this.readUint8()){case 0:this.stereoMode=0;break;case 1:this.stereoMode=1;break;case 2:this.stereoMode=2;break;case 3:this.stereoMode=3;break;case 4:this.stereoMode=4;break}this.cursor+=1}};var Ca=class extends ae{constructor(e,t){super(e,t),this.poseYawDegrees=this.readUint32(),this.posePitchDegrees=this.readUint32(),this.poseRollDegrees=this.readUint32()}};var Va=class extends ae{constructor(e,t){super(e,t),this.projectionBoundsTop=this.readUint32(),this.projectionBoundsBottom=this.readUint32(),this.projectionBoundsLeft=this.readUint32(),this.projectionBoundsRight=this.readUint32()}};var Oa=class extends z{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var _a=class extends ae{constructor(e,t){super(e,t),this.creationTime=this.readUint32(),this.modificationTime=this.readUint32(),this.trackId=this.readUint32(),this.cursor+=4,this.duration=this.readUint32(),this.cursor+=8,this.layer=this.readUint16(),this.alternateGroup=this.readUint16(),this.cursor+=2,this.cursor+=2,this.matrix=[[this.readUint32(),this.readUint32(),this.readUint32()],[this.readUint32(),this.readUint32(),this.readUint32()],[this.readUint32(),this.readUint32(),this.readUint32()]],this.width=this.readUint32(),this.height=this.readUint32()}};var Na=class extends z{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Fa=class extends z{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Ua=class extends ae{constructor(e,t){super(e,t),this.sequenceNumber=this.readUint32()}};var qa=class extends z{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Ha=class extends ae{constructor(e,t){super(e,t),this.trackId=this.readUint32(),this.flags&1&&(this.baseDataOffset=this.readUint64()),this.flags&2&&(this.sampleDescriptionIndex=this.readUint32()),this.flags&8&&(this.defaultSampleDuration=this.readUint32()),this.flags&16&&(this.defaultSampleSize=this.readUint32()),this.flags&32&&(this.defaultSampleFlags=this.readUint32())}};var ja=class extends ae{constructor(t,i){super(t,i);this.baseMediaDecodeTime32=0;this.baseMediaDecodeTime64=BigInt(0);this.version===1?this.baseMediaDecodeTime64=this.readUint64():this.baseMediaDecodeTime32=this.readUint32()}get baseMediaDecodeTime(){return this.version===1?this.baseMediaDecodeTime64:this.baseMediaDecodeTime32}};var Ga=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 z{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Qa=class extends ae{constructor(e,t){super(e,t),this.entryCount=this.readUint32(),this.children=this.scanForBoxes(new DataView(this.content.buffer,this.content.byteOffset+8,this.content.byteLength-8))}};var Wa=class extends 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 CD={ftyp:ka,moov:Aa,mvhd:Ra,moof:La,mdat:Ma,sidx:Ki,trak:$a,mdia:Oa,mfhd:Ua,tkhd:_a,traf:qa,tfhd:Ha,tfdt:ja,trun:Ga,minf:Na,sv3d:Ba,st3d:Da,prhd:Ca,proj:Fa,equi:Va,uuid:Pa,stbl:za,stsd:Qa,avc1:Wa,unknown:Hr},ri=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=CD[e];return i?new i(t,new s):new Hr(t,new s)}};var yi=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 OD=new TextDecoder("ascii"),_D=s=>OD.decode(new DataView(s.buffer,s.byteOffset+4,4))==="ftyp",ND=s=>{let e=new Ki(s,new ri),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})},FD=(s,e)=>{let i=new ri().parse(s),r=new yi(i),a=r.findAll("moof"),n=e?r.findAll("uuid"):r.findAll("mdat");if(!(n.length&&a.length))return null;let o=a[0],u=n[n.length-1],l=o.source.byteOffset,c=u.source.byteOffset-o.source.byteOffset+u.size;return new DataView(s.buffer,l,c)},UD=s=>{let t=new ri().parse(s),i=new yi(t),r={},a=i.findAll("uuid");return a.length?a[a.length-1]:r},qD=s=>{let t=new ri().parse(s);return new yi(t).find("sidx")?.timescale},HD=(s,e)=>{let i=new ri().parse(s),a=new yi(i).findAll("traf"),n=a[a.length-1].children.find(c=>c.type==="tfhd"),o=a[a.length-1].children.find(c=>c.type==="tfdt"),u=a[a.length-1].children.find(c=>c.type==="trun"),l=0;return u.sampleDuration.length?l=u.sampleDuration.reduce((c,d)=>c+d,0):l=n.defaultSampleDuration*u.sampleCount,(Number(o.baseMediaDecodeTime)+l)/e*1e3},jD=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 ri().parse(s),r=new yi(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},rI={validateData:_D,parseInit:jD,getIndexRange:()=>{},parseSegments:ND,parseFeedableSegmentChunk:FD,getChunkEndTime:HD,getServerLatencyTimestamps:UD,getTimescaleFromIndex:qD};var Ka=C(gt(),1);import{assertNonNullable as Od,isNonNullable as oI,isNullable as zD}from"@vkontakte/videoplayer-shared";import{assertNever as GD}from"@vkontakte/videoplayer-shared";var sI={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"}},aI=s=>{let e=s.getUint8(0),t=0;e&128?t=1:e&64?t=2:e&32?t=3:e&16&&(t=4);let i=Ya(s,t),r=i in sI,a=r?sI[i].type:"binary",n=s.getUint8(t),o=0;n&128?o=1:n&64?o=2:n&32?o=3:n&16?o=4:n&8?o=5:n&4?o=6:n&2?o=7:n&1&&(o=8);let u=new DataView(s.buffer,s.byteOffset+t+1,o-1),l=n&255>>o,p=Ya(u),c=l*2**((o-1)*8)+p,d=t+o,h;return d+c>s.byteLength?h=new DataView(s.buffer,s.byteOffset+d):h=new DataView(s.buffer,s.byteOffset+d,c),{tag:r?i:"0x"+i.toString(16).toUpperCase(),type:a,tagHeaderSize:d,tagSize:d+c,value:h,valueSize:c}},Ya=(s,e=s.byteLength)=>{switch(e){case 1:return s.getUint8(0);case 2:return s.getUint16(0);case 3:return s.getUint8(0)*2**16+s.getUint16(1);case 4:return s.getUint32(0);case 5:return s.getUint8(0)*2**32+s.getUint32(1);case 6:return s.getUint16(0)*2**32+s.getUint32(2);case 7:{let t=s.getUint8(0)*281474976710656+s.getUint16(1)*4294967296+s.getUint32(3);if(Number.isSafeInteger(t))return t}case 8:throw new ReferenceError("Int64 is not supported")}return 0},Lt=(s,e)=>{switch(e){case"int":return s.getInt8(0);case"uint":return Ya(s);case"float":return s.byteLength===4?s.getFloat32(0):s.getFloat64(0);case"string":return new TextDecoder("ascii").decode(s);case"utf8":return new TextDecoder("utf-8").decode(s);case"date":return new Date(Date.UTC(2001,0)+s.getInt8(0)).getTime();case"master":return s;case"binary":return s;default:GD(e)}},Xi=(s,e)=>{let t=0;for(;t<s.byteLength;){let i=new DataView(s.buffer,s.byteOffset+t),r=aI(i);if(!e(r))return;r.type==="master"&&Xi(r.value,e),t=r.value.byteOffset-s.byteOffset+r.valueSize}},nI=s=>{if(s.getUint32(0)!==440786851)return!1;let e,t,i,r=aI(s);return Xi(r.value,({tag:a,type:n,value:o})=>(a===17143?e=Lt(o,n):a===17026?t=Lt(o,n):a===17029&&(i=Lt(o,n)),!0)),(e===void 0||e<=1)&&t!==void 0&&t==="webm"&&(i===void 0||i<=2)};var uI=[357149030,290298740,374648427,174,224,30320,30321,30322,272869232,524531317,475249515,423732329,307544935],QD=[231,22612,22743,167,171,163,160,175],WD=s=>{let e,t,i,r,a=!1,n=!1,o=!1,u,l,p=!1,c=0;return Xi(s,({tag:d,type:h,value:f,valueSize:b})=>{if(d===21419){let g=Lt(f,h);l=Ya(g)}else d!==21420&&(l=void 0);return d===408125543?(e=f.byteOffset,t=f.byteOffset+b):d===357149030?a=!0:d===290298740?n=!0:d===2807729?i=Lt(f,h):d===17545?r=Lt(f,h):d===21420&&l===475249515?u=Lt(f,h):d===374648427?Xi(f,({tag:g,type:S,value:T})=>g===30321?(p=Lt(T,S)===1,!1):!0):a&&n&&(0,Ka.default)(uI,d)&&(o=!0),!o}),Od(e,"Failed to parse webm Segment start"),Od(t,"Failed to parse webm Segment end"),Od(r,"Failed to parse webm Segment duration"),i=i??1e6,{segmentStart:Math.round(e/1e9*i*1e3),segmentEnd:Math.round(t/1e9*i*1e3),timeScale:i,segmentDuration:Math.round(r/1e9*i*1e3),cuesSeekPosition:u,is3dVideo:p,stereoMode:c,projectionType:1,projectionData:{pose:{yaw:0,pitch:0,roll:0},bounds:{top:0,bottom:0,left:0,right:0}}}},YD=s=>{if(zD(s.cuesSeekPosition))return;let e=s.segmentStart+s.cuesSeekPosition,t=1024*1024;return{from:e,to:e+t}},KD=(s,e)=>{let t=!1,i=!1,r=o=>oI(o.time)&&oI(o.position),a=[],n;return Xi(s,({tag:o,type:u,value:l})=>{switch(o){case 475249515:t=!0;break;case 187:n&&r(n)&&a.push(n),n={};break;case 179:n&&(n.time=Lt(l,u));break;case 183:break;case 241:n&&(n.position=Lt(l,u));break;default:t&&(0,Ka.default)(uI,o)&&(i=!0)}return!(t&&i)}),n&&r(n)&&a.push(n),a.map((o,u)=>{let{time:l,position:p}=o,c=a[u+1];return{status:"none",time:{from:l,to:c?c.time:e.segmentDuration},byte:{from:e.segmentStart+p,to:c?e.segmentStart+c.position-1:e.segmentEnd-1}}})},XD=s=>{let e=0,t=!1;try{Xi(s,i=>i.tag===524531317?i.tagSize<=s.byteLength?(e=i.tagSize,!1):(e+=i.tagHeaderSize,!0):(0,Ka.default)(QD,i.tag)?(e+i.tagSize<=s.byteLength&&(e+=i.tagSize,t||=(0,Ka.default)([163,160,175],i.tag)),!0):!1)}catch{}return e>0&&e<=s.byteLength&&t?new DataView(s.buffer,s.byteOffset,e):null},lI={validateData:nI,parseInit:WD,getIndexRange:YD,parseSegments:KD,parseFeedableSegmentChunk:XD};var Xa=s=>{let e=/^(.+)\/([^;]+)(?:;.*)?$/.exec(s);if(e){let[,t,i]=e;if(t==="audio"||t==="video")switch(i){case"webm":return lI;case"mp4":return rI}}throw new ReferenceError(`Unsupported mime type ${s}`)};var Hd=C(nd(),1),SI=C(Mi(),1),vI=C(od(),1),yI=C(At(),1),jd=C(Ni(),1);import{isNonNullable as eC,isNullable as bI}from"@vkontakte/videoplayer-shared";var cI=s=>{try{let e=JD(),t=s.match(e),{groups:i}=t??{};if(i){let r={};if(i.extensions){let o=i.extensions.toLowerCase().match(/(?:[0-9a-wy-z](?:-[a-z0-9]{2,8})+)/g);Array.from(o||[]).forEach(u=>{r[u[0]]=u.slice(2)})}let a=i.variants?.split(/-/).filter(o=>o!==""),n={extlang:i.extlang,langtag:i.langtag,language:i.language,privateuse:i.privateuse||i.privateuse2,region:i.region,script:i.script,extensions:r,variants:a};return Object.keys(n).forEach(o=>{let u=n[o];(typeof u>"u"||u==="")&&delete n[o]}),n}return null}catch{return null}};function JD(){let s="(?<extlang>(?:[a-z]{3}(?:-[a-z]{3}){0,2}))",e="x(?:-[a-z0-9]{1,8})+",p=`^(?:(?<langtag>${`
179
+ (?<language>${`(?:[a-z]{2,3}(?:-${s})?|[a-z]{4}|[a-z]{5,8})`})
180
+ (-(?<script>[a-z]{4}))?
181
+ (-(?<region>(?:[a-z]{2}|[0-9]{3})))?
182
+ (?<variants>(?:-(?:[a-z0-9]{5,8}|[0-9][a-z0-9]{3}))*)
183
+ (?<extensions>(?:-[0-9a-wy-z](?:-[a-z0-9]{2,8})+)*)
184
+ (?:-(?<privateuse>(?:${e})))?
185
+ `})|(?<privateuse2>${e}))$`.replace(/[\s\t\n]/g,"");return new RegExp(p,"i")}var Nd=C(At(),1);import{videoSizeToQuality as ZD}from"@vkontakte/videoplayer-shared";var dI=({id:s,width:e,height:t,bitrate:i,fps:r,quality:a,streamId:n})=>{let o=(a?Vt(a):void 0)??ZD({width:e,height:t});return o&&{id:s,quality:o,bitrate:i,size:{width:e,height:t},fps:r,streamId:n}},pI=({id:s,bitrate:e})=>({id:s,bitrate:e}),hI=({language:s,label:e},{id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:s,label:e}),fI=({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,Nd.default)(i.split("."),0),isDefault:r}),Ud=({id:s,language:e,label:t,hdr:i,codecs:r})=>({id:s,language:e,hdr:i,label:t,codec:(0,Nd.default)(r.split("."),0)}),qd=s=>"url"in s,Ye=s=>s.type==="template",Ja=s=>s instanceof DOMException&&(s.name==="AbortError"||s.code===20);var mI=s=>{s.sort((t,i)=>t.from-i.from);let e=[s[0]];for(let t=1;t<s.length;t++){let{from:i,to:r}=s[t],a=e[e.length-1];a.to>=i?a.to=Math.max(a.to,r):e.push(s[t])}return e},Ji=(s,e)=>{for(let t of s)if(e(t))return t;return null};var gI=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},si=(s,e)=>{let t=s;t=(0,Hd.default)(t,"$$","$");let i={RepresentationID:e.representationId,Number:e.segmentNumber,Bandwidth:e.bandwidth,Time:e.segmentTime};for(let[r,a]of(0,SI.default)(i)){let n=new RegExp(`\\$${r}(?:%0(\\d+)d)?\\$`,"g");t=(0,Hd.default)(t,n,(o,u)=>bI(a)?o:bI(u)?a:(0,vI.default)(a,parseInt(u,10),"0"))}return t},TI=(s,e)=>{let i=new DOMParser().parseFromString(s,"application/xml"),r={video:[],audio:[],text:[]},a=i.children[0],n=Array.from(a.querySelectorAll("MPD > BaseURL").values()).map(R=>R.textContent?.trim()??""),o=(0,yI.default)(n,0)??"",u=a.getAttribute("type")==="dynamic",l=a.getAttribute("availabilityStartTime"),p=a.getAttribute("publishTime"),c=a.getElementsByTagName("vk:Attrs")[0],d=c?.getElementsByTagName("vk:XLatestSegmentPublishTime")[0].textContent,h=c?.getElementsByTagName("vk:XStreamIsLive")[0].textContent,f=c?.getElementsByTagName("vk:XStreamIsUnpublished")[0].textContent,b=c?.getElementsByTagName("vk:XPlaybackDuration")[0].textContent,g;u&&(g={availabilityStartTime:l?new Date(l).getTime():0,publishTime:p?new Date(p).getTime():0,latestSegmentPublishTime:d?new Date(d).getTime():0,streamIsAlive:h==="yes",streamIsUnpublished:f==="yes"});let S,T=a.getAttribute("mediaPresentationDuration"),v=[...a.getElementsByTagName("Period")],P=v.reduce((R,y)=>({...R,[y.id]:y.children}),{}),w=v.reduce((R,y)=>({...R,[y.id]:y.getAttribute("duration")}),{});T?S=gI(T):(0,jd.default)(w).filter(R=>R).length&&!u?S=(0,jd.default)(w).reduce((R,y)=>R+(gI(y)??0),0):b&&(S=parseInt(b,10));let M=0,O=a.getAttribute("profiles")?.split(",")??[];for(let R of v.map(y=>y.id))for(let y of P[R]){let D=y.getAttribute("id")??"id"+(M++).toString(10),I=y.getAttribute("mimeType")??"",x=y.getAttribute("codecs")??"",A=y.getAttribute("contentType")??I?.split("/")[0],re=y.getAttribute("profiles")?.split(",")??[],B=cI(y.getAttribute("lang")??"")??{},q=y.querySelector("Label")?.textContent?.trim()??void 0,K=y.querySelectorAll("Representation"),ne=y.querySelector("SegmentTemplate"),Se=y.querySelector("Role")?.getAttribute("value")??void 0,oe=A,Z={id:D,language:B.language,isDefault:Se==="main",label:q,codecs:x,hdr:oe==="video"&&Dr(x),mime:I,representations:[]};for(let L of K){let V=L.getAttribute("lang")??void 0,Pe=q??y.getAttribute("label")??L.getAttribute("label")??void 0,ve=L.querySelector("BaseURL")?.textContent?.trim()??"",te=new URL(ve||o,e).toString(),Te=L.getAttribute("mimeType")??I,rt=L.getAttribute("codecs")??x??"",qe;if(A==="text"){let ce=L.getAttribute("id")||"",st=B.privateuse?.includes("x-auto")||ce.includes("_auto"),we=L.querySelector("SegmentTemplate");if(we){let yt={representationId:L.getAttribute("id")??void 0,bandwidth:L.getAttribute("bandwidth")??void 0},qt=parseInt(L.getAttribute("bandwidth")??"",10)/1e3,Ht=parseInt(we.getAttribute("startNumber")??"",10)??1,at=parseInt(we.getAttribute("timescale")??"",10),wi=we.querySelectorAll("SegmentTimeline S")??[],nt=we.getAttribute("media");if(!nt)continue;let jt=[],Gt=0,zt="",ot=0,Tt=Ht,W=0;for(let ue of wi){let He=parseInt(ue.getAttribute("d")??"",10),ie=parseInt(ue.getAttribute("r")??"",10)||0,ke=parseInt(ue.getAttribute("t")??"",10);W=Number.isFinite(ke)?ke:W;let je=He/at*1e3,ut=W/at*1e3;for(let fe=0;fe<ie+1;fe++){let Ae=si(nt,{...yt,segmentNumber:Tt.toString(10),segmentTime:(W+fe*He).toString(10)}),lt=(ut??0)+fe*je,xt=lt+je;Tt++,jt.push({time:{from:lt,to:xt},url:Ae})}W+=(ie+1)*He,Gt+=(ie+1)*je}ot=W/at*1e3,zt=si(nt,{...yt,segmentNumber:Tt.toString(10),segmentTime:W.toString(10)});let It={time:{from:ot,to:1/0},url:zt},Ie={type:"template",baseUrl:te,segmentTemplateUrl:nt,initUrl:"",totalSegmentsDurationMs:Gt,segments:jt,nextSegmentBeyondManifest:It,timescale:at};qe={id:ce,kind:"text",segmentReference:Ie,profiles:[],duration:S,bitrate:qt,mime:"",codecs:"",width:0,height:0,isAuto:st}}else qe={id:ce,isAuto:st,kind:"text",url:te}}else{let ce=L.getAttribute("contentType")??Te?.split("/")[0]??A,st=y.getAttribute("profiles")?.split(",")??[],we=parseInt(L.getAttribute("width")??"",10),yt=parseInt(L.getAttribute("height")??"",10),qt=parseInt(L.getAttribute("bandwidth")??"",10)/1e3,Ht=L.getAttribute("frameRate")??"",at=L.getAttribute("quality")??void 0,wi=Ht?$o(Ht):void 0,nt=L.getAttribute("id")??"id"+(M++).toString(10),jt=ce==="video"?`${yt}p`:ce==="audio"?`${qt}Kbps`:rt,Gt=`${nt}@${jt}`,zt=[...O,...re,...st],ot,Tt=L.querySelector("SegmentBase"),W=L.querySelector("SegmentTemplate")??ne;if(Tt){let Ie=L.querySelector("SegmentBase Initialization")?.getAttribute("range")??"",[ue,He]=Ie.split("-").map(Ae=>parseInt(Ae,10)),ie={from:ue,to:He},ke=L.querySelector("SegmentBase")?.getAttribute("indexRange"),[je,ut]=ke?ke.split("-").map(Ae=>parseInt(Ae,10)):[],fe=ke?{from:je,to:ut}:void 0;ot={type:"byteRange",url:te,initRange:ie,indexRange:fe}}else if(W){let Ie={representationId:L.getAttribute("id")??void 0,bandwidth:L.getAttribute("bandwidth")??void 0},ue=parseInt(W.getAttribute("timescale")??"",10),He=W.getAttribute("initialization")??"",ie=W.getAttribute("media"),ke=parseInt(W.getAttribute("startNumber")??"",10)??1,je=si(He,Ie);if(!ie)throw new ReferenceError("No media attribute in SegmentTemplate");let ut=W.querySelectorAll("SegmentTimeline S")??[],fe=[],Ae=0,lt="",xt=0;if(ut.length){let Qt=ke,le=0;for(let ct of ut){let me=parseInt(ct.getAttribute("d")??"",10),Ge=parseInt(ct.getAttribute("r")??"",10)||0,Wt=parseInt(ct.getAttribute("t")??"",10);le=Number.isFinite(Wt)?Wt:le;let Pi=me/ue*1e3,Ru=le/ue*1e3;for(let Yt=0;Yt<Ge+1;Yt++){let Lu=si(ie,{...Ie,segmentNumber:Qt.toString(10),segmentTime:(le+Yt*me).toString(10)}),Jr=(Ru??0)+Yt*Pi,Mu=Jr+Pi;Qt++,fe.push({time:{from:Jr,to:Mu},url:Lu})}le+=(Ge+1)*me,Ae+=(Ge+1)*Pi}xt=le/ue*1e3,lt=si(ie,{...Ie,segmentNumber:Qt.toString(10),segmentTime:le.toString(10)})}else if(eC(S)){let le=parseInt(W.getAttribute("duration")??"",10)/ue*1e3,ct=Math.ceil(S/le),me=0;for(let Ge=1;Ge<ct;Ge++){let Wt=si(ie,{...Ie,segmentNumber:Ge.toString(10),segmentTime:me.toString(10)});fe.push({time:{from:me,to:me+le},url:Wt}),me+=le}xt=me,lt=si(ie,{...Ie,segmentNumber:ct.toString(10),segmentTime:me.toString(10)})}let Au={time:{from:xt,to:1/0},url:lt};ot={type:"template",baseUrl:te,segmentTemplateUrl:ie,initUrl:je,totalSegmentsDurationMs:Ae,segments:fe,nextSegmentBeyondManifest:Au,timescale:ue}}else throw new ReferenceError("Unknown MPD segment referencing type");if(!ce||!Te)continue;let It={video:"video",audio:"audio",text:"text"}[ce];if(!It)continue;oe||=It,qe={id:Gt,kind:It,segmentReference:ot,profiles:zt,duration:S,bitrate:qt,mime:Te,codecs:rt,width:we,height:yt,fps:wi,quality:at}}Z.language||=V,Z.label||=Pe,Z.mime||=Te,Z.codecs||=rt,Z.hdr||=oe==="video"&&Dr(rt),Z.representations.push(qe)}if(oe){let L=r[oe].find(V=>V.id===Z.id);if(L&&Z.representations.every(V=>Ye(V.segmentReference)))for(let V of L.representations){let ve=Z.representations.find(Te=>Te.id===V.id)?.segmentReference,te=V.segmentReference;te.segments.push(...ve.segments),te.nextSegmentBeyondManifest=ve.nextSegmentBeyondManifest}else r[oe].push(Z)}}return{duration:S,streams:r,baseUrls:n,live:g}};var Za=class{constructor(e,t,i,{fetcher:r,tuning:a,getCurrentPosition:n,isActiveLowLatency:o,compatibilityMode:u=!1,manifest:l}){this.currentLiveSegmentServerLatency$=new Zi(0);this.currentLowLatencySegmentLength$=new Zi(0);this.currentSegmentLength$=new Zi(0);this.onLastSegment$=new Zi(!1);this.fullyBuffered$=new Zi(!1);this.playingRepresentation$=new Zi(void 0);this.playingRepresentationInit$=new Zi(void 0);this.error$=new iC;this.gaps=[];this.subscription=new rC;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=Ti(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 iI(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:ai.VIDEO_PIPELINE,message:"Error when trying to clear segments ejected by browser",thrown:n}),o??={id:"SegmentEjection",category:ai.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:ai.VIDEO_PIPELINE,message:"SourceBuffer Error event fired"}))),this.subscription.add(this.sourceBufferTaskQueue.bufferFull$.subscribe(n=>{let o=this.getCurrentPosition();if(!this.sourceBuffer||!o||!_(this.mediaSource,this.sourceBuffer))return;let u=Math.min(this.bufferLimit,Mr(this.sourceBuffer.buffered)*.8);this.bufferLimit=u;let l=de(this.sourceBuffer.buffered,o),p=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(o,n*2,l<p).catch(c=>{this.handleAsyncError(c,"pruneBuffer")})})),this.subscription.add(this.sourceBufferTaskQueue.error$.subscribe(n=>this.error$.next(n))),yield this.loadInit(t,"high",!0);let i=this.initData.get(t.id),r=this.segments.get(t.id),a=this.parsedInitData.get(t.id);it(i,"No init buffer for starting representation"),it(r,"No segments for starting representation"),i instanceof ArrayBuffer&&(this.searchGaps(r,t),yield this.sourceBufferTaskQueue.append(i,this.destroyAbortController.signal),this.playingRepresentation$.next(this.playingRepresentationId),this.playingRepresentationInit$.next(a))}.bind(this));this.switchTo=Ti(this.destroyAbortController.signal,async function*(e,t=!1){if(!_(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);it(i,`No such representation ${e}`);let r=this.segments.get(e),a=this.initData.get(e);if(Ue(a)||Ue(r)?yield this.loadInit(i,"high",!1):a instanceof Promise&&(yield a),r=this.segments.get(e),it(r,"No segments for starting representation"),a=this.initData.get(e),!(!a||!(a instanceof ArrayBuffer)||!this.sourceBuffer||!_(this.mediaSource,this.sourceBuffer))){if(yield this.abort(),yield this.sourceBufferTaskQueue.append(a,this.downloadAbortController.signal),t)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e,yield this.dropBuffer();else{let n=this.getCurrentPosition();jr(n)&&!this.isLive&&(this.bufferLimit=1/0,await this.pruneBuffer(n,1/0,!0)),this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e}this.maintain()}}.bind(this));this.switchToOld=Ti(this.destroyAbortController.signal,async function*(e,t=!1){if(!_(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);it(i,`No such representation ${e}`);let r=this.segments.get(e),a=this.initData.get(e);if(Ue(a)||Ue(r)?yield this.loadInit(i,"high",!1):a instanceof Promise&&(yield a),r=this.segments.get(e),it(r,"No segments for starting representation"),a=this.initData.get(e),!(!a||!(a instanceof ArrayBuffer)||!this.sourceBuffer||!_(this.mediaSource,this.sourceBuffer)))if(yield this.abort(),yield this.sourceBufferTaskQueue.append(a,this.downloadAbortController.signal),t)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e,yield this.dropBuffer(),this.maintain();else{let n=this.getCurrentPosition();jr(n)&&(this.isLive||(this.bufferLimit=1/0,await this.pruneBuffer(n,1/0,!0)),this.maintain(n)),this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e}}.bind(this));this.seekLive=Ti(this.destroyAbortController.signal,async function*(e){let t=(0,au.default)(e,u=>u.representations)??[];if(this.isSeekingLive=!0,!this.downloadingRepresentationId||!t)return;for(let u of this.representations.keys()){let l=t.find(d=>d.id===u);l&&this.representations.set(u,l);let p=this.representations.get(u);if(!p||!Ye(p.segmentReference))return;let c=this.getActualLiveStartingSegments(p.segmentReference);this.segments.set(p.id,c)}let i=this.switchingToRepresentationId??this.downloadingRepresentationId,r=this.representations.get(i);it(r);let a=this.segments.get(i);it(a,"No segments for starting representation");let n=this.initData.get(i);if(it(n,"No init buffer for starting representation"),!(n instanceof ArrayBuffer))return;let o=this.getDebugBufferState();this.liveUpdateSegmentIndex=0,yield this.abort(),o&&(yield this.sourceBufferTaskQueue.remove(o.from*1e3,o.to*1e3,this.destroyAbortController.signal)),this.searchGaps(a,r),yield this.sourceBufferTaskQueue.append(n,this.destroyAbortController.signal),this.isSeekingLive=!1}.bind(this));this.fetcher=r,this.tuning=a,this.compatibilityMode=u,this.forwardBufferTarget=a.dash.forwardBufferTargetAuto,this.getCurrentPosition=n,this.isActiveLowLatency=o,this.isLive=!!l?.live,this.baseUrls=l?.baseUrls??[],this.initData=new Map(i.map(p=>[p.id,null])),this.segments=new Map,this.parsedInitData=new Map,this.representations=new Map(i.map(p=>[p.id,p])),this.kind=e,this.mediaSource=t,this.sourceBuffer=null}switchToWithPreviousAbort(e,t=!1){!_(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId||(this.switchAbortController.abort(),this.switchAbortController=new ee,Ti(this.switchAbortController.signal,async function*(i,r=!1){this.switchingToRepresentationId=i;let a=this.representations.get(i);it(a,`No such representation ${i}`);let n=this.segments.get(i),o=this.initData.get(i);if(Ue(o)||Ue(n)?yield this.loadInit(a,"high",!1):o instanceof Promise&&(yield o),n=this.segments.get(i),it(n,"No segments for starting representation"),o=this.initData.get(i),!(!(o instanceof ArrayBuffer)||!this.sourceBuffer||!_(this.mediaSource,this.sourceBuffer))){if(yield this.abort(),yield this.sourceBufferTaskQueue.append(o,this.downloadAbortController.signal),r)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=i,yield this.dropBuffer();else{let u=this.getCurrentPosition();jr(u)&&!this.isLive&&(this.bufferLimit=this.forwardBufferTarget,yield this.pruneBuffer(u,1/0,!0)),this.downloadingRepresentationId=i,this.switchingToRepresentationId=void 0}this.maintain()}}.bind(this))(e,t))}warmUpMediaSource(){!Ue(this.sourceBuffer)&&!this.sourceBuffer.updating&&(this.sourceBuffer.mode="segments")}async abort(){for(let e of this.activeSegments)this.abortSegment(e.segment);return this.activeSegments.clear(),this.downloadAbortController.abort(),this.downloadAbortController=new ee,this.abortBuffer()}maintain(e=this.getCurrentPosition()){if(Ue(e)||Ue(this.downloadingRepresentationId)||Ue(this.playingRepresentationId)||Ue(this.sourceBuffer)||!_(this.mediaSource,this.sourceBuffer)||jr(this.switchingToRepresentationId)||this.isSeekingLive)return;let t=this.representations.get(this.downloadingRepresentationId),i=this.segments.get(this.downloadingRepresentationId);if(it(t,`No such representation ${this.downloadingRepresentationId}`),!i)return;let r=i.find(p=>e>=p.time.from&&e<p.time.to);jr(r)&&isFinite(r.time.from)&&isFinite(r.time.to)&&this.currentSegmentLength$.next(r?.time.to-r.time.from);let a=e,n=100;if(this.playingRepresentationId!==this.downloadingRepresentationId){let p=de(this.sourceBuffer.buffered,e),c=r?r.time.to+n:-1/0;r&&r.time.to-e<this.tuning.dash.maxSegmentDurationLeftToSelectNextSegment&&p>=r.time.to-e+n&&(a=c)}if(isFinite(this.bufferLimit)&&Mr(this.sourceBuffer.buffered)>=this.bufferLimit){let p=de(this.sourceBuffer.buffered,e),c=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(e,1/0,p<c).catch(d=>{this.handleAsyncError(d,"pruneBuffer")});return}let u=null;if(!this.activeSegments.size&&(u=this.selectForwardBufferSegments(i,t.segmentReference.type,a),u?.length)){let p="auto";if(this.tuning.dash.useFetchPriorityHints&&r)if((0,su.default)(u,r))p="high";else{let c=(0,Gr.default)(u,0);c&&c.time.from-r.time.to>=this.forwardBufferTarget/2&&(p="low")}this.loadSegments(u,t,p).catch(c=>{this.handleAsyncError(c,"loadSegments")})}(!this.preloadOnly&&!this.allInitsLoaded&&r&&r.status==="fed"&&!u?.length&&de(this.sourceBuffer.buffered,e)>3e3||this.isActiveLowLatency())&&this.loadNextInit();let l=(0,Gr.default)(i,-1);!this.isLive&&l&&(this.fullyBuffered$.next(l.time.to-e-de(this.sourceBuffer.buffered,e)<n),this.onLastSegment$.next(e-l.time.from>0))}get lastDataObtainedTimestamp(){return this.lastDataObtainedTimestampMs}searchGaps(e,t){this.gaps=[];let i=0,r=this.isLive?this.liveInitialAdditionalOffset:0;for(let a of e)Math.trunc(a.time.from-i)>0&&this.gaps.push({representation:t.id,from:i,to:a.time.from+r}),i=a.time.to;jr(t.duration)&&t.duration-i>0&&!this.isLive&&this.gaps.push({representation:t.id,from:i,to:t.duration})}getActualLiveStartingSegments(e){let t=e.segments,i=this.isActiveLowLatency()?this.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.tuning.dashCmafLive.maxActiveLiveOffset,r=[],a=0,n=t.length-1;do r.unshift(t[n]),a+=t[n].time.to-t[n].time.from,n--;while(a<i&&n>=0);return this.liveInitialAdditionalOffset=a-i,this.isActiveLowLatency()?[r[0]]:r}getLiveSegmentsToLoadState(e){let t=(0,au.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,au.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,Gr.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=si(r.segmentTemplateUrl,{segmentTime:u});a.push({status:"none",time:{from:e.time.to,to:1/0},url:l})}}this.currentLowLatencySegmentLength$.next(t)}findSegmentStartTime(e){let t=this.switchingToRepresentationId??this.downloadingRepresentationId??this.playingRepresentationId;if(!t)return;let i=this.segments.get(t);return i?i.find(a=>a.time.from<=e&&a.time.to>=e)?.time.from??void 0:void 0}setTarget(e){this.forwardBufferTarget=e}setPreloadOnly(e){this.preloadOnly=e}destroy(){if(this.initData.clear(),this.segments.clear(),this.parsedInitData.clear(),this.representations.clear(),this.sourceBufferTaskQueue?.destroy(),this.gapDetectionIdleCallback&&_t&&_t(this.gapDetectionIdleCallback),this.initLoadIdleCallback&&_t&&_t(this.initLoadIdleCallback),this.subscription.unsubscribe(),this.sourceBuffer)try{this.mediaSource.removeSourceBuffer(this.sourceBuffer)}catch(e){if(!(e instanceof DOMException&&e.name==="NotFoundError"))throw e}this.sourceBuffer=null,this.downloadAbortController.abort(),this.switchAbortController.abort(),this.destroyAbortController.abort(),window.clearTimeout(this.loadByteRangeSegmentsTimeoutId)}selectForwardBufferSegments(e,t,i){return this.isLive?this.selectForwardBufferSegmentsLive(e,i):this.selectForwardBufferSegmentsRecord(e,t,i)}selectForwardBufferSegmentsLive(e,t){if(this.playingRepresentationId!==this.downloadingRepresentationId){let i=e.findIndex(r=>t>=r.time.from&&t<r.time.to);this.liveUpdateSegmentIndex=i}return this.liveUpdateSegmentIndex<e.length?e.slice(this.liveUpdateSegmentIndex++):null}selectForwardBufferSegmentsRecord(e,t,i){let r=e.findIndex(({status:c,time:{from:d,to:h}},f)=>{let b=d<=i&&h>=i,g=d>i||b||f===0&&i===0,S=Math.min(this.forwardBufferTarget,this.bufferLimit),T=this.preloadOnly&&d<=i+S||h<=i+S;return(c==="none"||c==="partially_ejected"&&g&&T&&this.sourceBuffer&&_(this.mediaSource,this.sourceBuffer)&&!(Ne(this.sourceBuffer.buffered,d)&&Ne(this.sourceBuffer.buffered,h)))&&g&&T});if(r===-1)return null;if(t!=="byteRange")return e.slice(r,r+1);let a=e,n=0,o=0,u=[],l=this.preloadOnly?0:this.tuning.dash.segmentRequestSize,p=this.preloadOnly?this.forwardBufferTarget:0;for(let c=r;c<a.length&&(n<=l||o<=p);c++){let d=a[c];if(n+=d.byte.to+1-d.byte.from,o+=d.time.to+1-d.time.from,d.status==="none"||d.status==="partially_ejected")u.push(d);else break}return u}async loadSegments(e,t,i="auto"){Ye(t.segmentReference)?await this.loadTemplateSegment(e[0],t,i):await this.loadByteRangeSegments(e,t,i)}async loadTemplateSegment(e,t,i="auto"){e.status="downloading";let r={segment:e,loadedBytes:0,feedingBytes:0,fedBytes:0,representationId:t.id};this.activeSegments.add(r);let{range:a,url:n,signal:o,onProgress:u,onProgressTasks:l}=this.prepareTemplateFetchSegmentParams(e,t);this.failedDownloads&&o&&(await Ti(o,async function*(){let p=Qd(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(c=>setTimeout(c,p))}.bind(this))(),o.aborted&&this.abortActiveSegments([e]));try{let p=await this.fetcher.fetch(n,{range:a,signal:o,onProgress:u,priority:i,isLowLatency:this.isActiveLowLatency()});if(this.lastDataObtainedTimestampMs=ru(),!p)return;let c=new DataView(p),d=Xa(t.mime);if(!isFinite(r.segment.time.to)){let b=t.segmentReference.timescale;r.segment.time.to=d.getChunkEndTime(c,b)}u&&r.feedingBytes&&l?await Promise.all(l):await this.sourceBufferTaskQueue.append(c,o);let{serverDataReceivedTimestamp:h,serverDataPreparedTime:f}=d.getServerLatencyTimestamps(c);h&&f&&this.currentLiveSegmentServerLatency$.next(f-h),r.segment.status="downloaded",this.onSegmentFullyAppended(r,t.id),this.failedDownloads=0}catch(p){this.abortActiveSegments([e]),Ja(p)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}}updateRepresentationsBaseUrlIfNeeded(){if(!this.tuning.dash.enableBaseUrlSupport||!this.baseUrls.length||this.failedDownloads<=this.tuning.dash.maxSegmentRetryCount)return;this.baseUrlsIndex=(this.baseUrlsIndex+1)%this.baseUrls.length;let e=this.baseUrls[this.baseUrlsIndex];for(let t of this.representations.values())Ye(t.segmentReference)?t.segmentReference.baseUrl=e:t.segmentReference.url=e}async loadByteRangeSegments(e,t,i="auto"){if(!e.length)return;for(let u of e)u.status="downloading",this.activeSegments.add({segment:u,loadedBytes:0,feedingBytes:0,fedBytes:0,representationId:t.id});let{range:r,url:a,signal:n,onProgress:o}=this.prepareByteRangeFetchSegmentParams(e,t);this.failedDownloads&&n&&(await Ti(n,async function*(){let u=Qd(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(l=>{this.loadByteRangeSegmentsTimeoutId=window.setTimeout(l,u),zd(window,"online").pipe(tC()).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=ru(),this.failedDownloads=0}catch(u){this.abortActiveSegments(e),Ja(u)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}}prepareByteRangeFetchSegmentParams(e,t){if(Ye(t.segmentReference))throw new Error("Representation is not byte range type");let i=t.segmentReference.url,r={from:(0,Gr.default)(e,0).byte.from,to:(0,Gr.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=ru(),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:ai.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:l})}}}}prepareTemplateFetchSegmentParams(e,t){if(!Ye(t.segmentReference))throw new Error("Representation is not template type");let i=new URL(e.url,t.segmentReference.baseUrl);this.isActiveLowLatency()&&i.searchParams.set("low-latency","yes");let r=i.toString(),{signal:a}=this.downloadAbortController,n=[],u=this.isActiveLowLatency()||this.tuning.dash.enableSubSegmentBufferFeeding&&this.liveUpdateSegmentIndex<3?(l,p)=>{if(!a.aborted)try{this.lastDataObtainedTimestampMs=ru();let c=this.onSomeTemplateDataLoaded({dataView:l,loaded:p,signal:a,onSegmentAppendFailed:()=>this.abort(),representationId:t.id});n.push(c)}catch(c){this.error$.next({id:"SegmentFeeding",category:ai.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:c})}}:void 0;return{url:r,signal:a,onProgress:u,onProgressTasks:n}}abortActiveSegments(e){for(let t of this.activeSegments)(0,su.default)(e,t.segment)&&this.abortSegment(t.segment)}async onSomeTemplateDataLoaded({dataView:e,representationId:t,loaded:i,onSegmentAppendFailed:r,signal:a}){if(!this.activeSegments.size||!_(this.mediaSource,this.sourceBuffer))return;let n=this.representations.get(t);if(n)for(let o of this.activeSegments){let{segment:u}=o;if(o.representationId===t){if(a.aborted){r();continue}if(o.loadedBytes=i,o.loadedBytes>o.feedingBytes){let l=new DataView(e.buffer,e.byteOffset+o.feedingBytes,o.loadedBytes-o.feedingBytes),p=Xa(n.mime).parseFeedableSegmentChunk(l,this.isLive);p?.byteLength&&(u.status="partially_fed",o.feedingBytes+=p.byteLength,await this.sourceBufferTaskQueue.append(p),o.fedBytes+=p.byteLength)}}}}async onSomeByteRangesDataLoaded({dataView:e,representationId:t,globalFrom:i,loaded:r,signal:a,onSegmentAppendFailed:n}){if(!this.activeSegments.size||!_(this.mediaSource,this.sourceBuffer))return;let o=this.representations.get(t);if(o)for(let u of this.activeSegments){if(u.representationId!==t)continue;if(a.aborted){await n();continue}let{segment:l}=u,p=l.byte.from-i,c=l.byte.to-i,d=c-p+1,h=p<r,f=c<=r;if(h){if(l.status==="downloading"&&f){l.status="downloaded";let b=new DataView(e.buffer,e.byteOffset+p,d);await this.sourceBufferTaskQueue.append(b,a)&&!a.aborted?this.onSegmentFullyAppended(u,t):await n()}else if(this.tuning.dash.enableSubSegmentBufferFeeding&&(l.status==="downloading"||l.status==="partially_fed")&&(u.loadedBytes=Math.min(d,r-p),u.loadedBytes>u.feedingBytes)){let b=new DataView(e.buffer,e.byteOffset+p+u.feedingBytes,u.loadedBytes-u.feedingBytes),g=u.loadedBytes===d?b:Xa(o.mime).parseFeedableSegmentChunk(b);g?.byteLength&&(l.status="partially_fed",u.feedingBytes+=g.byteLength,await this.sourceBufferTaskQueue.append(g,a)&&!a.aborted?(u.fedBytes+=g.byteLength,u.fedBytes===d&&this.onSegmentFullyAppended(u,t)):await n())}}}}onSegmentFullyAppended(e,t){if(!(Ue(this.sourceBuffer)||!_(this.mediaSource,this.sourceBuffer))){!this.isLive&&N.browser.isSafari&&this.tuning.useSafariEndlessRequestBugfix&&(Ne(this.sourceBuffer.buffered,e.segment.time.from,100)&&Ne(this.sourceBuffer.buffered,e.segment.time.to,100)||this.error$.next({id:"EmptyAppendBuffer",category:ai.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",qd(e.segment)&&(e.segment.size=e.fedBytes);for(let i of this.representations.values()){if(i.id===t)continue;let r=this.segments.get(i.id);if(r)for(let a of r)a.status==="fed"&&Math.round(a.time.from)===Math.round(e.segment.time.from)&&Math.round(a.time.to)===Math.round(e.segment.time.to)&&(a.status="none")}this.isActiveLowLatency()&&this.updateLowLatencyLiveIfNeeded(e.segment),this.activeSegments.delete(e),this.detectGapsWhenIdle(t,e.segment)}}abortSegment(e){e.status==="partially_fed"?e.status="partially_ejected":e.status!=="partially_ejected"&&(e.status="none");for(let t of this.activeSegments.values())if(t.segment===e){this.activeSegments.delete(t);break}}loadNextInit(){if(this.allInitsLoaded||this.initLoadIdleCallback)return;let e=null,t=!1;for(let[r,a]of this.initData.entries()){let n=a instanceof Promise;t||=n,a===null&&(e=r)}if(!e){this.allInitsLoaded=!0;return}if(t)return;let i=this.representations.get(e);i&&(this.initLoadIdleCallback=Lr(()=>(0,II.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?Ti(this.destroyAbortController.signal,async function*(){let o=Qd(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(u=>setTimeout(u,o))}.bind(this))():Promise.resolve()).then(()=>this.fetcher.fetchRepresentation(e.segmentReference,Xa(e.mime),r)).then(o=>{if(!o)return;let{init:u,dataView:l,segments:p}=o,c=l.buffer.slice(l.byteOffset,l.byteOffset+l.byteLength);this.initData.set(e.id,c);let d=p;this.isLive&&Ye(e.segmentReference)&&(d=this.getActualLiveStartingSegments(e.segmentReference)),(!this.isLive||!this.segments.has(e.id))&&this.segments.set(e.id,d),u&&this.parsedInitData.set(e.id,u)}).then(()=>this.failedDownloads=0,o=>{this.initData.set(e.id,null),i&&this.error$.next({id:"LoadInits",category:ai.WTF,message:"loadInit threw",thrown:o})});return this.initData.set(e.id,n),n}async dropBuffer(){for(let e of this.segments.values())for(let t of e)t.status="none";await this.pruneBuffer(0,1/0,!0)}async pruneBuffer(e,t,i=!1){if(!this.sourceBuffer||!_(this.mediaSource,this.sourceBuffer)||!this.playingRepresentationId||Ue(e))return!1;let r=[],a=0,n=o=>{if(a>=t)return;r.push({...o.time});let u=qd(o)?o.size??0:o.byte.to-o.byte.from;a+=u};for(let o of this.segments.values())for(let u of o){let l=u.time.to<=e-this.tuning.dash.bufferPruningSafeZone,p=u.time.from>=e+Math.min(this.forwardBufferTarget,this.bufferLimit);(l||p)&&u.status==="fed"&&n(u)}for(let o=0;o<this.sourceBuffer.buffered.length;o++){let u=this.sourceBuffer.buffered.start(o)*1e3,l=this.sourceBuffer.buffered.end(o)*1e3,p=0;for(let c of this.segments.values())for(let d of c)(0,su.default)(["none","partially_ejected"],d.status)&&Math.round(d.time.from)<=Math.round(u)&&Math.round(d.time.to)>=Math.round(l)&&p++;if(p===this.segments.size){let c={time:{from:u,to:l},url:"",status:"none"};n(c)}}if(r.length&&i){let o=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;for(let u of this.segments.values())for(let l of u)l.time.from>=e+o&&l.status==="fed"&&n(l)}return r.length?(r=mI(r),(await Promise.all(r.map(u=>this.sourceBufferTaskQueue.remove(u.from,u.to)))).reduce((u,l)=>u||l,!1)):!1}async abortBuffer(){if(!this.sourceBuffer||!_(this.mediaSource,this.sourceBuffer))return!1;let e=this.playingRepresentationId&&this.initData.get(this.playingRepresentationId),t=e instanceof ArrayBuffer?e:void 0;return this.sourceBufferTaskQueue.abort(t)}getDebugBufferState(){if(!(!this.sourceBuffer||!_(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length))return{from:this.sourceBuffer.buffered.start(0),to:this.sourceBuffer.buffered.end(this.sourceBuffer.buffered.length-1)}}getBufferedTo(){return!this.sourceBuffer||!_(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length?null:this.sourceBuffer.buffered.end(this.sourceBuffer.buffered.length-1)}getForwardBufferDuration(e=this.getCurrentPosition()){return!this.sourceBuffer||!_(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length||Ue(e)?0:de(this.sourceBuffer.buffered,e)}detectGaps(e,t){if(!this.sourceBuffer||!_(this.mediaSource,this.sourceBuffer))return;if(this.tuning.useRefactoredSearchGap)for(let r=0;r<this.sourceBuffer.buffered.length;r++)this.gaps=this.gaps.filter(a=>this.sourceBuffer&&(Math.round(a.from)<Math.round(this.sourceBuffer.buffered.start(r)*1e3)||Math.round(a.to)>Math.round(this.sourceBuffer.buffered.end(r)*1e3)));let i={representation:e,from:t.time.from,to:t.time.to};for(let r=0;r<this.sourceBuffer.buffered.length;r++){let a=this.sourceBuffer.buffered.start(r)*1e3,n=this.sourceBuffer.buffered.end(r)*1e3;if(!(n<=t.time.from||a>=t.time.to)){if(a<=t.time.from&&n>=t.time.to){i=void 0;break}n>t.time.from&&n<t.time.to&&(i.from=n),a<t.time.to&&a>t.time.from&&(i.to=a)}}i&&i.to-i.from>1&&!this.gaps.some(r=>i&&r.from===i.from&&r.to===i.to)&&this.gaps.push(i)}detectGapsWhenIdle(e,t){if(!(this.gapDetectionIdleCallback||!this.sourceBuffer||!_(this.mediaSource,this.sourceBuffer))){if(!this.tuning.useRefactoredSearchGap)for(let i=0;i<this.sourceBuffer.buffered.length;i++)this.gaps=this.gaps.filter(r=>this.sourceBuffer&&(Math.round(r.from)<Math.round(this.sourceBuffer.buffered.start(i)*1e3)||Math.round(r.to)>Math.round(this.sourceBuffer.buffered.end(i)*1e3)));this.gapDetectionIdleCallback=Lr(()=>{try{this.detectGaps(e,t)}catch(i){this.error$.next({id:"GapDetection",category:ai.WTF,message:"detectGaps threw",thrown:i})}finally{this.gapDetectionIdleCallback=null}})}}checkEjectedSegments(){if(Ue(this.sourceBuffer)||!_(this.mediaSource,this.sourceBuffer)||Ue(this.playingRepresentationId))return;let e=[];for(let i=0;i<this.sourceBuffer.buffered.length;i++){let r=Math.floor(this.sourceBuffer.buffered.start(i)*1e3),a=Math.ceil(this.sourceBuffer.buffered.end(i)*1e3);e.push({from:r,to:a})}let t=100;for(let i of this.segments.values())for(let r of i){let{status:a}=r;if(a!=="fed"&&a!=="partially_ejected")continue;let n=Math.floor(r.time.from),o=Math.ceil(r.time.to),u=e.some(p=>p.from-t<=n&&p.to+t>=o),l=e.filter(p=>n>=p.from&&n<p.to-t||o>p.from+t&&o<=p.to);u||(l.length===1?r.status="partially_ejected":this.gaps.some(p=>p.from===r.time.from||p.to===r.time.to)?r.status="partially_ejected":r.status="none")}}handleAsyncError(e,t){this.error$.next({id:t,category:ai.VIDEO_PIPELINE,thrown:e,message:"Something went wrong"})}};import{abortable as en,assertNever as xI,fromEvent as EI,merge as sC,now as tn,Subject as wI,ValueSubject as Wd,flattenObject as zr,ErrorCategory as rn,SubscriptionRemovable as aC}from"@vkontakte/videoplayer-shared";var ou=class{constructor({throughputEstimator:e,requestQuic:t,tracer:i,compatibilityMode:r=!1,useEnableSubtitlesParam:a=!1}){this.lastConnectionType$=new Wd(void 0);this.lastConnectionReused$=new Wd(void 0);this.lastRequestFirstBytes$=new Wd(void 0);this.recoverableError$=new wI;this.error$=new wI;this.abortAllController=new ee;this.subscription=new aC;this.fetchManifest=en(this.abortAllController.signal,async function*(e){let t=this.tracer.createComponentTracer("FetchManifest"),i=e;this.requestQuic&&(i=Si(i)),!this.compatibilityMode&&this.useEnableSubtitlesParam&&(i=No(i));let r=yield this.doFetch(i,{signal:this.abortAllController.signal}).catch(nu);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=en(this.abortAllController.signal,async function*(e,{rangeMethod:t=this.compatibilityMode?0:1,range:i,onProgress:r,priority:a="auto",signal:n,measureThroughput:o=!0,isLowLatency:u=!1}={}){let l=e,p=new Headers,c=this.tracer.createComponentTracer("Fetch");if(i)switch(t){case 0:{p.append("Range",`bytes=${i.from}-${i.to}`);break}case 1:{let I=new URL(l,location.href);I.searchParams.append("bytes",`${i.from}-${i.to}`),l=I.toString();break}default:xI(t)}this.requestQuic&&(l=Si(l));let d=this.abortAllController.signal,h;if(n){let I=new ee;if(h=sC(EI(this.abortAllController.signal,"abort"),EI(n,"abort")).subscribe(()=>{try{I.abort()}catch(x){nu(x)}}),this.abortAllController.signal.aborted||n.aborted)try{I.abort()}catch(x){nu(x)}d=I.signal}let f=tn();c.log("startRequest",zr({url:l,priority:a,rangeMethod:t,range:i,isLowLatency:u,requestStartedAt:f}));let b=yield this.doFetch(l,{priority:a,headers:p,signal:d}),g=tn();if(!b)return c.error("error",{message:"No response in request"}),c.end(),this.unsubscribeAbortSubscription(h),null;if(this.throughputEstimator?.addRawRtt(g-f),!b.ok||!b.body){this.unsubscribeAbortSubscription(h);let I=`Fetch error ${b.status}: ${b.statusText}`;return c.error("error",{message:I}),c.end(),Promise.reject(new Error(`Fetch error ${b.status}: ${b.statusText}`))}if(this.onHeadersReceived(b.headers),!r&&!o){this.unsubscribeAbortSubscription(h);let I=tn(),x={requestStartedAt:f,requestEndedAt:I,duration:I-f};return c.log("endRequest",zr(x)),c.end(),b.arrayBuffer()}let S=b.body;if(o){let I;[S,I]=b.body.tee(),this.throughputEstimator?.trackStream(I,u)}let T=S.getReader(),v,P=parseInt(b.headers.get("content-length")??"",10);Number.isFinite(P)&&(v=P),!v&&i&&(v=i.to-i.from+1);let w=0,M=v?new Uint8Array(v):new Uint8Array(0),O=!1,E=I=>{this.unsubscribeAbortSubscription(h),O=!0,nu(I)},R=en(d,async function*({done:I,value:x}){if(w===0&&this.lastRequestFirstBytes$.next(tn()-f),d.aborted){this.unsubscribeAbortSubscription(h);return}if(!I&&x){if(v)M.set(x,w),w+=x.byteLength;else{let A=new Uint8Array(M.length+x.length);A.set(M),A.set(x,M.length),M=A,w+=x.byteLength}r?.(new DataView(M.buffer),w),yield T?.read().then(R,E)}}.bind(this));yield T?.read().then(R,E),this.unsubscribeAbortSubscription(h);let y=tn(),D={failed:O,requestStartedAt:f,requestEndedAt:y,duration:y-f};return O?(c.error("endRequest",zr(D)),c.end(),null):(c.log("endRequest",zr(D)),c.end(),M.buffer)}.bind(this));this.fetchByteRangeRepresentation=en(this.abortAllController.signal,async function*(e,t,i){if(e.type!=="byteRange")return null;let{from:r,to:a}=e.initRange,n=r,o=a,u=!1,l,p;e.indexRange&&(l=e.indexRange.from,p=e.indexRange.to,u=a+1===l,u&&(n=Math.min(l,r),o=Math.max(p,a))),n=Math.min(n,0);let c=yield this.fetch(e.url,{range:{from:n,to:o},priority:i,measureThroughput:!1});if(!c)return null;let d=new DataView(c,r-n,a-n+1);if(!t.validateData(d))throw new Error("Invalid media file");let h=t.parseInit(d),f=e.indexRange??t.getIndexRange(h);if(!f)throw new ReferenceError("No way to load representation index");let b;if(u)b=new DataView(c,f.from-n,f.to-f.from+1);else{let S=yield this.fetch(e.url,{range:f,priority:i,measureThroughput:!1});if(!S)return null;b=new DataView(S)}let g=t.parseSegments(b,h,f);return{init:h,dataView:new DataView(c),segments:g}}.bind(this));this.fetchTemplateRepresentation=en(this.abortAllController.signal,async function*(e,t){if(e.type!=="template")return null;let i=new URL(e.initUrl,e.baseUrl).toString(),r=yield this.fetch(i,{priority:t,measureThroughput:!1});return r?{init:null,segments:e.segments.map(n=>({...n,status:"none",size:void 0})),dataView:new DataView(r)}:null}.bind(this));this.throughputEstimator=e,this.requestQuic=t,this.compatibilityMode=r,this.tracer=i.createComponentTracer("Fetcher"),this.useEnableSubtitlesParam=a}onHeadersReceived(e){let{type:t,reused:i}=_o(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:xI(r)}}destroy(){this.abortAllController.abort(),this.tracer.end(),this.subscription.unsubscribe()}async doFetch(e,t){let i=await vt(e,t);if(i.ok)return i;let r=await i.text(),a=parseInt(r);if(!isNaN(a))switch(a){case 1:this.recoverableError$.next({id:"VideoDataLinkExpiredError",message:"Video data links have expired",category:rn.FATAL});break;case 8:this.recoverableError$.next({id:"VideoDataLinkBlockedForFloodError",message:"Url blocked for flood",category:rn.FATAL});break;case 18:this.recoverableError$.next({id:"VideoDataLinkIllegalIpChangeError",message:"Client IP has changed",category:rn.FATAL});break;case 21:this.recoverableError$.next({id:"VideoDataLinkIllegalHostChangeError",message:"Request HOST has changed",category:rn.FATAL});break;default:this.error$.next({id:"GeneralVideoDataFetchError",message:`Generic video data fetch error (${a})`,category:rn.FATAL})}}unsubscribeAbortSubscription(e){e&&(e.unsubscribe(),this.subscription.remove(e))}},nu=s=>{if(!Ja(s))throw s};import{isNullable as nC,ValueSubject as oC}from"@vkontakte/videoplayer-shared";var sn=class s{constructor(e,t){this.currentRepresentation$=new oC(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(!nC(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 hC=["timeupdate","progress","play","seeked","stalled","waiting"],fC=["timeupdate","progress","loadeddata","playing","seeked"];var cu=class{constructor(e){this.element=null;this.manifestUrlString="";this.source=null;this.manifest=null;this.subscription=new Zd;this.representationSubscription=new Zd;this.state$=new F("none");this.currentVideoRepresentation$=new he(void 0);this.currentVideoRepresentationInit$=new he(void 0);this.currentAudioRepresentation$=new he(void 0);this.currentVideoSegmentLength$=new he(0);this.currentAudioSegmentLength$=new he(0);this.error$=new lu;this.lastConnectionType$=new he(void 0);this.lastConnectionReused$=new he(void 0);this.lastRequestFirstBytes$=new he(void 0);this.currentLiveTextRepresentation$=new he(null);this.isLive$=new he(!1);this.isActiveLive$=new he(!1);this.isLowLatency$=new he(!1);this.liveDuration$=new he(0);this.liveSeekableDuration$=new he(0);this.liveAvailabilityStartTime$=new he(0);this.liveStreamStatus$=new he(void 0);this.bufferLength$=new he(0);this.liveLatency$=new he(void 0);this.liveLoadBufferLength$=new he(0);this.livePositionFromPlayer$=new he(0);this.currentStallDuration$=new he(0);this.videoLastDataObtainedTimestamp$=new he(0);this.fetcherRecoverableError$=new lu;this.fetcherError$=new lu;this.liveStreamEndTimestamp=0;this.isUpdatingLive=!1;this.isJumpGapAfterSeekLive=!1;this.forceEnded$=new lu;this.gapWatchdogActive=!1;this.destroyController=new ee;this.initManifest=Kd(this.destroyController.signal,async function*(e,t,i){this.tracer.log("initManifest"),this.element=e,this.manifestUrlString=ge(t,i,2),this.state$.startTransitionTo("manifest_ready"),this.manifest=yield this.updateManifest(),this.manifest?.streams.video.length?this.state$.setState("manifest_ready"):this.error$.next({id:"NoRepresentations",category:Ut.PARSER,message:"No playable video representations"})}.bind(this));this.updateManifest=Kd(this.destroyController.signal,async function*(){this.tracer.log("updateManifestStart",{manifestUrl:this.manifestUrlString});let e=yield this.fetcher.fetchManifest(this.manifestUrlString).catch(n=>{!this.manifest&&!this.bufferLength$.getValue()&&this.error$.next({id:"LoadManifest",category:Ut.NETWORK,message:"Failed to load manifest",thrown:n})});if(!e)return null;let t=null;try{t=TI(e??"",this.manifestUrlString)}catch(n){let o=Mo(e)??{id:"ManifestParsing",category:Ut.PARSER,message:"Failed to parse MPD manifest",thrown:n};this.error$.next(o)}if(!t)return null;let i=(n,o,u)=>!!(this.element?.canPlayType?.(o)&&mt()?.isTypeSupported?.(`${o}; codecs="${u}"`)||n==="text");if(t.live){this.isLive$.next(!!t.live);let{availabilityStartTime:n,latestSegmentPublishTime:o,streamIsUnpublished:u,streamIsAlive:l}=t.live,p=(t.duration??0)/1e3;this.liveSeekableDuration$.next(-1*p),this.liveDuration$.next((o-n)/1e3),this.liveAvailabilityStartTime$.next(t.live.availabilityStartTime);let c="active";l||(c=u?"unpublished":"unexpectedly_down"),this.liveStreamStatus$.next(c)}let r={text:t.streams.text,video:[],audio:[]};for(let n of["video","audio"]){let u=t.streams[n].filter(({mime:c,codecs:d})=>i(n,c,d)),l=new Set(u.map(({codecs:c})=>c)),p=Wo(l);if(p&&(r[n]=u.filter(({codecs:c})=>c.startsWith(p))),n==="video"){let c=this.tuning.preferHDR,d=r.video.some(f=>f.hdr),h=r.video.some(f=>!f.hdr);N.display.isHDR&&c&&d?r.video=r.video.filter(f=>f.hdr):h&&(r.video=r.video.filter(f=>!f.hdr))}}let a={...t,streams:r};return this.tracer.log("updateManifestEnd",nn(a)),a}.bind(this));this.initRepresentations=Kd(this.destroyController.signal,async function*(e,t,i){this.tracer.log("initRepresentationsStart",nn({initialVideo:e,initialAudio:t,sourceHls:i})),Qr(this.manifest),Qr(this.element),this.representationSubscription.unsubscribe(),this.representationSubscription=new Zd,this.state$.startTransitionTo("representations_ready");let r=d=>{this.representationSubscription.add(ni(d,"error").pipe(uu(h=>!!this.element?.played.length)).subscribe(h=>{this.error$.next({id:"VideoSource",category:Ut.VIDEO_PIPELINE,message:"Unexpected video source error",thrown:h})}))};this.source=this.tuning.useManagedMediaSource?oo():new MediaSource;let a=document.createElement("source");if(r(a),a.src=URL.createObjectURL(this.source),this.element.appendChild(a),this.tuning.useManagedMediaSource&&Ir())if(i){let d=document.createElement("source");r(d),d.type="application/x-mpegurl",d.src=i.url,this.element.appendChild(d)}else this.element.disableRemotePlayback=!0;this.isActiveLive$.next(this.isLive$.getValue());let n={fetcher:this.fetcher,tuning:this.tuning,getCurrentPosition:()=>this.element?this.element.currentTime*1e3:void 0,isActiveLowLatency:()=>this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),manifest:this.manifest},o=this.manifest.streams.video.reduce((d,h)=>[...d,...h.representations],[]);if(this.videoBufferManager=new Za("video",this.source,o,n),this.bufferManagers=[this.videoBufferManager],on(t)){let d=this.manifest.streams.audio.reduce((h,f)=>[...h,...f.representations],[]);this.audioBufferManager=new Za("audio",this.source,d,n),this.bufferManagers.push(this.audioBufferManager)}sn.isSupported(this.manifest.streams.text)&&!this.isLowLatency$.getValue()&&(this.liveTextManager=new sn(this.manifest.streams.text,n)),this.representationSubscription.add(this.fetcher.lastConnectionType$.subscribe(this.lastConnectionType$)),this.representationSubscription.add(this.fetcher.lastConnectionReused$.subscribe(this.lastConnectionReused$)),this.representationSubscription.add(this.fetcher.lastRequestFirstBytes$.subscribe(this.lastRequestFirstBytes$));let u=()=>{this.stallWatchdogSubscription?.unsubscribe(),this.currentStallDuration$.next(0)};if(this.representationSubscription.add(er(...fC.map(d=>ni(this.element,d))).pipe(Yr(d=>this.element?de(this.element.buffered,this.element.currentTime*1e3):0),an(),dC(d=>{d>this.tuning.dash.bufferEmptinessTolerance&&u()})).subscribe(this.bufferLength$)),this.representationSubscription.add(er(ni(this.element,"ended"),this.forceEnded$).subscribe(()=>{u()})),this.isLive$.getValue()){this.subscription.add(this.liveDuration$.pipe(an()).subscribe(h=>this.liveStreamEndTimestamp=Jd())),this.subscription.add(ni(this.element,"pause").subscribe(()=>{this.livePauseWatchdogSubscription=Xd(1e3).subscribe(h=>{let f=di(this.manifestUrlString,2);this.manifestUrlString=ge(this.manifestUrlString,f+1e3,2),this.liveStreamStatus$.getValue()==="active"&&this.updateManifest()}),this.subscription.add(this.livePauseWatchdogSubscription)})).add(ni(this.element,"play").subscribe(h=>this.livePauseWatchdogSubscription?.unsubscribe())),this.representationSubscription.add(Wr({isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe(Yr(({isActiveLive:h,isLowLatency:f})=>h&&f),an()).subscribe(h=>{this.isManualDecreasePlaybackInLive()||_r(this.element,1)})),this.representationSubscription.add(Wr({bufferLength:this.bufferLength$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe(uu(({bufferLength:h,isActiveLive:f,isLowLatency:b})=>f&&b&&!!h)).subscribe(({bufferLength:h})=>this.liveBuffer.next(h))),this.representationSubscription.add(this.videoBufferManager.currentLowLatencySegmentLength$.subscribe(h=>{if(!this.isActiveLive$.getValue()&&!this.isLowLatency$.getValue()&&!h)return;let f=this.liveSeekableDuration$.getValue()-h/1e3;this.liveSeekableDuration$.next(Math.max(f,-1*this.tuning.dashCmafLive.maxLiveDuration)),this.liveDuration$.next(this.liveDuration$.getValue()+h/1e3)})),this.representationSubscription.add(Wr({isLive:this.isLive$,rtt:this.throughputEstimator.rtt$,bufferLength:this.bufferLength$,segmentServerLatency:this.videoBufferManager.currentLiveSegmentServerLatency$}).pipe(uu(({isLive:h})=>h),an((h,f)=>f.bufferLength<h.bufferLength),Yr(({rtt:h,bufferLength:f,segmentServerLatency:b})=>{let g=di(this.manifestUrlString,2);return(h/2+f+b+g)/1e3})).subscribe(this.liveLatency$)),this.representationSubscription.add(Wr({liveBuffer:this.liveBuffer.smoothed$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).subscribe(({liveBuffer:h,isActiveLive:f,isLowLatency:b})=>{if(!b||!f)return;let g=this.tuning.dashCmafLive.lowLatency.maxTargetOffset,S=this.tuning.dashCmafLive.lowLatency.maxTargetOffsetDeviation,T=this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup,v=h-g;if(this.isManualDecreasePlaybackInLive())return;let P=1;Math.abs(v)>S&&(P=1+Math.sign(v)*T),_r(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(S=>S.getLiveSegmentsToLoadState(this.manifest)?.to??b))-b}this.liveLoadBufferLength$.getValue()!==f&&this.liveLoadBufferLength$.next(f)}));let d=0;this.representationSubscription.add(Wr({liveLoadBufferLength:this.liveLoadBufferLength$,bufferLength:this.bufferLength$}).pipe(pC(1e3)).subscribe(async({liveLoadBufferLength:h,bufferLength:f})=>{if(!this.element||this.isUpdatingLive)return;let b=this.element.playbackRate,g=di(this.manifestUrlString,2),S=Math.abs(this.livePositionFromPlayer$.getValue())*1e3,T=Math.min(S,this.tuning.dashCmafLive.normalizedTargetMinBufferSize*b),v=this.tuning.dashCmafLive.normalizedActualBufferOffset*b,P=this.tuning.dashCmafLive.normalizedLiveMinBufferSize*b,w=isFinite(h)?h:f,M=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),O=S<=this.tuning.live.activeLiveDelay;this.isActiveLive$.next(O);let E="none";if(M?E="active_low_latency":this.isLowLatency$.getValue()&&O?(this.bufferManagers.forEach(R=>R.proceedLowLatencyLive()),E="active_low_latency"):g!==0&&w<T?E="live_forward_buffering":w<T+P&&(E="live_with_target_offset"),isFinite(h)&&(d=h>d?h:d),E==="live_forward_buffering"||E==="live_with_target_offset"){let R=d-(T+v),y=this.normolizeLiveOffset(Math.trunc(g+R/b)),D=Math.abs(y-g),I=0;!h||D<=this.tuning.dashCmafLive.offsetCalculationError?I=g:y>0&&D>this.tuning.dashCmafLive.offsetCalculationError&&(I=y),this.manifestUrlString=ge(this.manifestUrlString,I,2)}(E==="live_with_target_offset"||E==="live_forward_buffering")&&(d=0,await this.updateLive())},h=>{this.error$.next({id:"updateLive",category:Ut.VIDEO_PIPELINE,thrown:h,message:"Failed to update live with subscription"})}))}let l=er(...this.bufferManagers.map(d=>d.fullyBuffered$)).pipe(Yr(()=>this.bufferManagers.every(d=>d.fullyBuffered$.getValue()))),p=er(...this.bufferManagers.map(d=>d.onLastSegment$)).pipe(Yr(()=>this.bufferManagers.some(d=>d.onLastSegment$.getValue()))),c=Wr({allBuffersFull:l,someBufferEnded:p}).pipe(an(),Yr(({allBuffersFull:d,someBufferEnded:h})=>d&&h),uu(d=>d));if(this.representationSubscription.add(er(this.forceEnded$,c).subscribe(()=>{if(this.source&&this.source.readyState==="open"&&Array.from(this.source.sourceBuffers).every(d=>!d.updating))try{this.source?.endOfStream()}catch(d){this.error$.next({id:"EndOfStream",category:Ut.VIDEO_PIPELINE,message:"Failed to end MediaSource stream",thrown:d})}})),this.representationSubscription.add(er(...this.bufferManagers.map(d=>d.error$)).subscribe(this.error$)),this.representationSubscription.add(this.videoBufferManager.playingRepresentation$.subscribe(this.currentVideoRepresentation$)),this.representationSubscription.add(this.videoBufferManager.playingRepresentationInit$.subscribe(this.currentVideoRepresentationInit$)),this.representationSubscription.add(this.videoBufferManager.currentSegmentLength$.subscribe(this.currentVideoSegmentLength$)),this.audioBufferManager&&(this.representationSubscription.add(this.audioBufferManager.playingRepresentation$.subscribe(this.currentAudioRepresentation$)),this.representationSubscription.add(this.audioBufferManager.currentSegmentLength$.subscribe(this.currentAudioSegmentLength$))),this.liveTextManager&&this.representationSubscription.add(this.liveTextManager.currentRepresentation$.subscribe(this.currentLiveTextRepresentation$)),this.source.readyState!=="open"){let d=this.tuning.dash.sourceOpenTimeout>=0;yield new Promise((h,f)=>{d&&(this.timeoutSourceOpenId=setTimeout(()=>{if(this.source?.readyState==="open"){h();return}this.tuning.dash.rejectOnSourceOpenTimeout?f(new Error("Timeout reject when wait sourceopen event")):h()},this.tuning.dash.sourceOpenTimeout)),this.source?.addEventListener("sourceopen",()=>{this.timeoutSourceOpenId&&clearTimeout(this.timeoutSourceOpenId),h()},{once:!0})})}if(!this.isLive$.getValue()){let d=[this.manifest.duration??0,...(0,ep.default)((0,ep.default)([...this.manifest.streams.audio,...this.manifest.streams.video],h=>h.representations),h=>{let f=[];return h.duration&&f.push(h.duration),Ye(h.segmentReference)&&h.segmentReference.totalSegmentsDurationMs&&f.push(h.segmentReference.totalSegmentsDurationMs),f})];this.source.duration=Math.max(...d)/1e3}this.audioBufferManager&&on(t)?yield Promise.all([this.videoBufferManager.startWith(e),this.audioBufferManager.startWith(t)]):yield this.videoBufferManager.startWith(e),this.state$.setState("representations_ready"),this.tracer.log("initRepresentationsEnd")}.bind(this));this.tick=()=>{if(!this.element||!this.videoBufferManager||this.source?.readyState!=="open")return;let e=this.element.currentTime*1e3;this.videoBufferManager.maintain(e),this.audioBufferManager?.maintain(e),this.liveTextManager?.maintain(e),(this.videoBufferManager.gaps.length||this.audioBufferManager?.gaps.length)&&!this.gapWatchdogActive&&(this.gapWatchdogActive=!0,this.gapWatchdogSubscription=Xd(this.tuning.gapWatchdogInterval).subscribe(()=>this.jumpGap(),t=>{this.error$.next({id:"GapWatchdog",category:Ut.WTF,message:"Error handling gaps",thrown:t})}),this.subscription.add(this.gapWatchdogSubscription))};this.throughputEstimator=e.throughputEstimator,this.tuning=e.tuning,this.tracer=e.tracer.createComponentTracer(this.constructor.name),this.fetcher=new ou({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=ii.getLiveBufferSmoothedValue(this.tuning.dashCmafLive.lowLatency.maxTargetOffset,{...e.tuning.dashCmafLive.lowLatency.bufferEstimator}),this.initTracerSubscription()}async seekLive(e){Qr(this.element);let t=this.liveStreamStatus$.getValue()!=="active"?Jd()-this.liveStreamEndTimestamp:0,i=this.normolizeLiveOffset(e+t);this.isActiveLive$.next(i===0),this.manifestUrlString=ge(this.manifestUrlString,i,2),this.manifest=await this.updateManifest(),this.manifest&&(this.isJumpGapAfterSeekLive=!0,await this.videoBufferManager?.seekLive(this.manifest.streams.video),await this.audioBufferManager?.seekLive(this.manifest.streams.audio),this.liveTextManager?.seekLive(this.manifest.streams.text))}initBuffer(){Qr(this.element),this.state$.setState("running"),this.subscription.add(er(...hC.map(e=>ni(this.element,e)),ni(window,"online")).subscribe(()=>this.tick(),e=>{this.error$.next({id:"DashVKPlayer",category:Ut.WTF,message:"Internal logic error",thrown:e})})),this.subscription.add(ni(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(ni(this.element,"waiting").subscribe(()=>{this.element&&this.element.readyState===HTMLMediaElement.HAVE_CURRENT_DATA&&!this.element.seeking&&Ne(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=Jd(),a=100,n=this.videoBufferManager?.lastDataObtainedTimestamp??0;this.videoLastDataObtainedTimestamp$.next(n);let o=this.audioBufferManager?.lastDataObtainedTimestamp??0,u=this.videoBufferManager?.getForwardBufferDuration()??0,l=this.audioBufferManager?.getForwardBufferDuration()??0,p=u<a&&r-n>this.tuning.dash.crashOnStallTWithoutDataTimeout,c=this.audioBufferManager&&l<a&&r-o>this.tuning.dash.crashOnStallTWithoutDataTimeout;if((p||c)&&t>this.tuning.dash.crashOnStallTWithoutDataTimeout||t>=this.tuning.dash.crashOnStallTimeout)throw new Error(`Stall timeout exceeded: ${t} ms`);if(this.isLive$.getValue()&&t%2e3===0){let d=this.normolizeLiveOffset(-1*this.livePositionFromPlayer$.getValue()*1e3);this.seekLive(d).catch(h=>{this.error$.next({id:"stallIntervalCallback",category:Ut.VIDEO_PIPELINE,message:"stallIntervalCallback failed",thrown:h})}),i.liveLastOffset=d}else{let d=this.element.currentTime*1e3;this.videoBufferManager?.maintain(d),this.audioBufferManager?.maintain(d),i.position=d}this.tracer.log("stallIntervalCallback",nn(i))};this.stallWatchdogSubscription?.unsubscribe(),this.stallWatchdogSubscription=Xd(50).subscribe(e,t=>{this.error$.next({id:"StallWatchdogCallback",category:Ut.NETWORK,message:"Can't restore DASH after stall.",thrown:t})}),this.subscription.add(this.stallWatchdogSubscription)})),this.tick()}async switchRepresentation(e,t,i=!1){let r={video:this.videoBufferManager,audio:this.audioBufferManager,text:null}[e];return this.tuning.useNewSwitchTo?this.currentStallDuration$.getValue()>0?r?.switchToWithPreviousAbort(t,i):r?.switchTo(t,i):r?.switchToOld(t,i)}async seek(e,t){Qr(this.element),Qr(this.videoBufferManager);let i;t||this.element.duration*1e3<=this.tuning.dashSeekInSegmentDurationThreshold||Math.abs(this.element.currentTime*1e3-e)<=this.tuning.dashSeekInSegmentAlwaysSeekDelta?i=e:i=Math.max(this.videoBufferManager.findSegmentStartTime(e)??e,this.audioBufferManager?.findSegmentStartTime(e)??e),this.warmUpMediaSourceIfNeeded(i),Ne(this.element.buffered,i)||await Promise.all([this.videoBufferManager.abort(),this.audioBufferManager?.abort()]),!(kI(this.element)||kI(this.videoBufferManager))&&(this.videoBufferManager.maintain(i),this.audioBufferManager?.maintain(i),this.element.currentTime=i/1e3,this.tracer.log("seek",nn({requestedPosition:e,forcePrecise:t,position:i})))}warmUpMediaSourceIfNeeded(e=this.element?.currentTime){on(this.element)&&on(this.source)&&on(e)&&this.source?.readyState==="ended"&&this.element.duration*1e3-e>this.tuning.dash.seekBiasInTheEnd&&this.bufferManagers.forEach(t=>t.warmUpMediaSource())}get isStreamEnded(){return this.source?.readyState==="ended"}stop(){this.tracer.log("stop"),this.element?.querySelectorAll("source").forEach(e=>{URL.revokeObjectURL(e.src),e.remove()}),this.element=null,this.source=null,this.manifest=null,this.currentVideoRepresentation$.next(void 0),this.videoBufferManager?.destroy(),this.videoBufferManager=null,this.audioBufferManager?.destroy(),this.audioBufferManager=null,this.bufferManagers=[],this.state$.setState("none")}setBufferTarget(e){for(let t of this.bufferManagers)t.setTarget(e)}getStreams(){return this.manifest?.streams}setPreloadOnly(e){for(let t of this.bufferManagers)t.setPreloadOnly(e)}destroy(){this.subscription.unsubscribe(),this.representationSubscription.unsubscribe(),this.timeoutSourceOpenId&&clearTimeout(this.timeoutSourceOpenId),this.destroyController.abort(),this.fetcher.destroy(),this.stop(),this.source?.readyState==="open"&&Array.from(this.source.sourceBuffers).every(e=>!e.updating)&&this.source.endOfStream(),this.source=null,this.tracer.end()}initTracerSubscription(){let e=cC(this.tracer.error.bind(this.tracer));this.subscription.add(this.error$.subscribe(e("error")))}isManualDecreasePlaybackInLive(){return!this.element||!this.isLive$.getValue()?!1:1-this.element.playbackRate>this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup}normolizeLiveOffset(e){return Math.trunc(e/1e3)*1e3}async updateLive(){this.isUpdatingLive=!0,this.manifest=await this.updateManifest(),this.manifest&&(this.bufferManagers?.forEach(e=>e.updateLive(this.manifest)),this.liveTextManager?.updateLive(this.manifest)),this.isUpdatingLive=!1}jumpGap(){if(!this.element||!this.videoBufferManager)return;let e=this.videoBufferManager.getBufferedTo();if(e===null)return;let t=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue();this.isJumpGapAfterSeekLive&&!t&&this.element.currentTime>e&&(this.isJumpGapAfterSeekLive=!1,this.element.currentTime=0);let i=this.element.currentTime*1e3,r=null,a=this.element.readyState===HTMLMediaElement.HAVE_METADATA?this.tuning.endGapTolerance:0;for(let n of this.bufferManagers)for(let o of n.gaps)n.playingRepresentation$.getValue()===o.representation&&o.from-a<=i&&o.to+a>i&&(this.element.duration*1e3-o.to<this.tuning.endGapTolerance?r=1/0:(r===null||o.to>r)&&(r=o.to));if(r!==null){let n=r+10;this.gapWatchdogSubscription.unsubscribe(),this.gapWatchdogActive=!1,n===1/0?this.forceEnded$.next():(this.element.currentTime=n/1e3,this.tracer.log("jumpGap",nn({isJumpGapAfterSeekLive:this.isJumpGapAfterSeekLive,isActiveLowLatency:t,initialCurrentTime:this.element.currentTime,jumpTo:n,resultCurrentTime:this.element.currentTime})))}}};import{combine as mC,map as bC,observeElementSize as gC,Subscription as SC,ValueSubject as tp,noop as vC}from"@vkontakte/videoplayer-shared";var du=class{constructor(){this.subscription=new SC;this.pipSize$=new tp(void 0);this.videoSize$=new tp(void 0);this.elementSize$=new tp(void 0);this.pictureInPictureWindowRemoveEventListener=vC}connect({observableVideo:e,video:t}){let i=r=>{let a=r.target;this.pipSize$.next({width:a.width,height:a.height})};this.subscription.add(gC(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(mC({videoSize:this.videoSize$,pipSize:this.pipSize$,inPip:e.inPiP$}).pipe(bC(({videoSize:r,inPip:a,pipSize:n})=>a?n:r)).subscribe(this.elementSize$))}getValue(){return this.elementSize$.getValue()}subscribe(e,t){return this.elementSize$.subscribe(e,t)}getObservable(){return this.elementSize$}destroy(){this.pictureInPictureWindowRemoveEventListener(),this.subscription.unsubscribe()}};var tr=class{constructor(e){this.subscription=new wC;this.videoState=new F("stopped");this.droppedFramesManager=new Ar;this.stallsManager=new eu;this.elementSizeManager=new du;this.videoTracksMap=new Map;this.audioTracksMap=new Map;this.textTracksMap=new Map;this.videoStreamsMap=new Map;this.audioStreamsMap=new Map;this.videoTrackSwitchHistory=new mi;this.audioTrackSwitchHistory=new mi;this.selectedRepresentations={audio:null,video:null};this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),i=this.params.desiredState.playbackState.getTransition(),r=this.params.desiredState.seekState.getState();if(!this.videoState.getTransition()){if(r.state==="requested"&&i?.to!=="paused"&&e!=="stopped"&&t!=="stopped"&&this.seek(r.position,r.forcePrecise),t==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.player.stop(),this.video.load(),this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),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 TC(e)}}};this.init3DScene=e=>{if(this.scene3D)return;this.scene3D=new qr(this.params.container,this.video,{fov:this.params.tuning.spherical.fov,orientation:this.params.tuning.spherical.orientation||{x:e.projectionData?.pose.yaw||0,y:e.projectionData?.pose.pitch||0,z:e.projectionData?.pose.roll||0},rotationSpeed:this.params.tuning.spherical.rotationSpeed,maxYawAngle:this.params.tuning.spherical.maxYawAngle,rotationSpeedCorrection:this.params.tuning.spherical.rotationSpeedCorrection,degreeToPixelCorrection:this.params.tuning.spherical.degreeToPixelCorrection,speedFadeTime:this.params.tuning.spherical.speedFadeTime,speedFadeThreshold:this.params.tuning.spherical.speedFadeThreshold});let t=this.elementSizeManager.getValue();t&&this.scene3D.setViewportSize(t.width,t.height)};this.destroy3DScene=()=>{this.scene3D&&(this.scene3D.destroy(),this.scene3D=void 0)};this.textTracksManager=new Je(e.source.url),this.params=e,this.video=De(e.container,e.tuning),this.tracer=e.dependencies.tracer.createComponentTracer(this.constructor.name),this.params.output.element$.next(this.video),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(Ee(this.params.source.url)),this.params.output.isLive$.next(!1),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.player=new cu({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:AI.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(RI(l=>!!l.length),MI()).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(ip(l=>l.to.state!=="none"),un());this.stallsManager.connect({isSeeked$:n,currentStallDuration$:this.player.currentStallDuration$.pipe(un()),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$}),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(RI(LI),MI()),e.firstBytesEvent$),a(this.stallsManager.severeStallOccurred$,e.severeStallOccurred$),a(this.videoState.stateChangeEnded$.pipe(ip(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 p=this.player.getStreams();if(IC(p,"Manifest not loaded or empty"),!this.params.tuning.isAudioDisabled){let d=[];for(let h of p.audio){d.push(Fd(h));let f=[];for(let b of h.representations){let g=pI(b);f.push(g),this.audioTracksMap.set(g,{stream:h,representation:b})}this.audioStreamsMap.set(h,f)}this.params.output.availableAudioStreams$.next(d)}let c=[];for(let d of p.video){c.push(Ud(d));let h=[];for(let f of d.representations){let b=dI({...f,streamId:d.id});b&&(h.push(b),this.videoTracksMap.set(b,{stream:d,representation:f}))}this.videoStreamsMap.set(d,h)}this.params.output.availableVideoStreams$.next(c);for(let d of p.text)for(let h of d.representations){let f=hI(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(pu(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$,EC(this.video,"progress")).subscribe(async()=>{let l=this.player.state$.getState(),p=this.player.state$.getTransition();if(l!=="manifest_ready"&&l!=="running"||p)return;t.autoVideoTrackSwitching.getTransition()&&t.autoVideoTrackSwitching.setState(t.autoVideoTrackSwitching.getState()),this.selectVideoAudioRepresentations();let{video:c,audio:d}=this.selectedRepresentations;if(!c)return;let h=Ji(this.videoTracksMap.keys(),b=>this.videoTracksMap.get(b)?.representation.id===c.id);LI(h)&&(this.stallsManager.lastVideoTrackSelected=h);let f=this.params.desiredState.autoVideoTrackLimits.getTransition();if(f&&this.params.output.autoVideoTrackLimits$.next(f.to),l==="manifest_ready")await this.player.initRepresentations(c.id,d?.id,this.params.sourceHls);else if(await this.player.switchRepresentation("video",c.id),d){let b=!!t.audioStream.getTransition();await this.player.switchRepresentation("audio",d.id,b)}},r)),this.subscription.add(t.cameraOrientation.stateChangeEnded$.subscribe(({to:l})=>{this.scene3D&&l&&this.scene3D.pointCameraTo(l.x,l.y)})),this.subscription.add(this.elementSizeManager.subscribe(l=>{this.scene3D&&l&&this.scene3D.setViewportSize(l.width,l.height)})),this.subscription.add(this.player.currentVideoRepresentation$.pipe(un()).subscribe(l=>{let p=Ji(this.videoTracksMap.entries(),([,{representation:f}])=>f.id===l);if(!p){e.currentVideoTrack$.next(void 0),e.currentVideoStream$.next(void 0);return}let[c,{stream:d}]=p,h=this.params.desiredState.videoStream.getTransition();h&&h.to&&h.to.id===d.id&&this.params.desiredState.videoStream.setState(h.to),e.currentVideoTrack$.next(c),e.currentVideoStream$.next(Ud(d))},r)),this.subscription.add(this.player.currentAudioRepresentation$.pipe(un()).subscribe(l=>{let p=Ji(this.audioTracksMap.entries(),([,{representation:f}])=>f.id===l);if(!p){e.currentAudioStream$.next(void 0);return}let[c,{stream:d}]=p,h=this.params.desiredState.audioStream.getTransition();h&&h.to&&h.to.id===d.id&&this.params.desiredState.audioStream.setState(h.to),e.currentAudioStream$.next(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(p){e.warning$.next({id:"DashProvider",message:`DashProvider could not initialize 3D-scene: ${p}`})}else this.destroy3DScene(),this.params.tuning.spherical?.enabled&&e.is3DVideo$.next(!1)},r)),this.subscription.add(this.player.currentVideoSegmentLength$.subscribe(e.currentVideoSegmentLength$,r)),this.subscription.add(this.player.currentAudioSegmentLength$.subscribe(e.currentAudioSegmentLength$,r)),this.textTracksManager.connect(this.video,t,e);let o=t.playbackState.stateChangeStarted$.pipe(ip(({to:l})=>l==="ready"),un());this.subscription.add(pu(o,t.autoVideoTrackSwitching.stateChangeStarted$,this.player.state$.stateChangeEnded$,rp(["init"])).subscribe(()=>{let l=t.autoVideoTrackSwitching.getState(),c=t.playbackState.getState()==="ready"?this.params.tuning.dash.forwardBufferTargetPreload:l?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;this.player.setBufferTarget(c)})),this.subscription.add(pu(o,this.player.state$.stateChangeEnded$,rp(["init"])).subscribe(()=>this.player.setPreloadOnly(t.playbackState.getState()==="ready")));let u=pu(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,rp(["init"])).pipe(xC(0));this.subscription.add(u.subscribe(this.syncPlayback,r))}selectVideoAudioRepresentations(){if(this.player.isStreamEnded)return;let e=this.params.tuning.useNewAutoSelectVideoTrack?Ls:Rs,t=this.params.tuning.useNewAutoSelectVideoTrack?Eo:xo,i=this.params.tuning.useNewAutoSelectVideoTrack?Ot:Io,{desiredState:r,output:a}=this.params,n=r.autoVideoTrackSwitching.getState(),o=r.videoTrack.getState()?.id,u=Ji(this.videoTracksMap.keys(),E=>E.id===o),l=a.currentVideoTrack$.getValue(),p=r.videoStream.getState()??(u&&this.videoTracksMap.get(u)?.stream)??this.videoStreamsMap.size===1?this.videoStreamsMap.keys().next().value:void 0;if(!p)return;let c=Ji(this.videoStreamsMap.keys(),E=>E.id===p.id),d=c&&this.videoStreamsMap.get(c);if(!d)return;let h=de(this.video.buffered,this.video.currentTime*1e3),f;this.player.isActiveLive$.getValue()?f=this.player.isLowLatency$.getValue()?this.params.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.params.tuning.dashCmafLive.normalizedLiveMinBufferSize:this.player.isLive$.getValue()?f=this.params.tuning.dashCmafLive.normalizedTargetMinBufferSize:f=n?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;let b=(this.video.duration*1e3||1/0)-this.video.currentTime*1e3,g=Math.min(h/Math.min(f,b||1/0),1),S=r.audioStream.getState()??(this.audioStreamsMap.size===1?this.audioStreamsMap.keys().next().value:void 0),T=S?.id&&Ji(this.audioStreamsMap.keys(),E=>E.id===S.id)||this.audioStreamsMap.keys().next().value,v=0;if(T){if(u&&!n){let E=e(u,d,this.audioStreamsMap.get(T)??[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);v=Math.max(v,E?.bitrate??-1/0)}if(l){let E=e(l,d,this.audioStreamsMap.get(T)??[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);v=Math.max(v,E?.bitrate??-1/0)}}let P=u;(n||!P)&&(P=i(d,{container:this.elementSizeManager.getValue(),panelSize:this.params.panelSize,estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),tuning:this.params.tuning.autoTrackSelection,limits:this.params.desiredState.autoVideoTrackLimits.getState(),reserve:v,forwardBufferHealth:g,current:l,visible:this.params.output.elementVisible$.getValue(),history:this.videoTrackSwitchHistory,playbackRate:this.video.playbackRate,droppedVideoMaxQualityLimit:this.droppedFramesManager.droppedVideoMaxQualityLimit,stallsVideoMaxQualityLimit:this.stallsManager.videoMaxQualityLimit,stallsPredictedThroughput:this.stallsManager.predictedThroughput,abrLogger:this.params.dependencies.abrLogger}));let w=T&&t(P,d,this.audioStreamsMap.get(T)??[],{estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),stallsPredictedThroughput:this.stallsManager.predictedThroughput,tuning:this.params.tuning.autoTrackSelection,forwardBufferHealth:g,history:this.audioTrackSwitchHistory,playbackRate:this.video.playbackRate,abrLogger:this.params.dependencies.abrLogger}),M=this.videoTracksMap.get(P)?.representation,O=w&&this.audioTracksMap.get(w)?.representation;M&&O?(this.selectedRepresentations.video=M,this.selectedRepresentations.audio=O):M&&!O&&this.audioTracksMap.size===0&&(this.selectedRepresentations.video=M,this.selectedRepresentations.audio=null)}prepare(e=0){this.player.initManifest(this.video,this.params.source.url,e)}playIfAllowed(){_e(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),k(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:AI.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 ln=class extends tr{subscribe(){super.subscribe();let{output:e,observableVideo:t,connect:i}=this.getProviderSubscriptionInfo();i(t.timeUpdate$,e.position$),i(t.durationChange$,e.duration$)}seek(e,t){this.params.output.willSeekEvent$.next(),this.player.seek(e,t)}};import{combine as sp,merge as $I,filter as BI,filterChanged as PC,isNullable as ap,map as DI,ValueSubject as np,isNonNullable as kC}from"@vkontakte/videoplayer-shared";var cn=class extends tr{constructor(e){super(e),this.textTracksManager.destroy()}subscribe(){super.subscribe();let e=-1,{output:t,observableVideo:i,desiredState:r,connect:a}=this.getProviderSubscriptionInfo();this.params.output.position$.next(0),this.params.output.isLive$.next(!0),a(i.timeUpdate$,t.liveBufferTime$),a(this.player.liveSeekableDuration$,t.duration$),a(this.player.liveLatency$,t.liveLatency$);let n=new np(1);a(i.playbackRateState$,n),this.subscription.add(this.params.output.position$.subscribe(this.player.livePositionFromPlayer$)).add(r.isLowLatency.stateChangeEnded$.pipe(DI(o=>o.to)).subscribe(this.player.isLowLatency$)).add(sp({liveBufferTime:t.liveBufferTime$,liveAvailabilityStartTime:this.player.liveAvailabilityStartTime$}).pipe(DI(({liveBufferTime:o,liveAvailabilityStartTime:u})=>o&&u?o+u:void 0)).subscribe(t.liveTime$)).add(this.player.liveStreamStatus$.pipe(BI(o=>kC(o))).subscribe(o=>t.isLiveEnded$.next(o!=="active"&&t.position$.getValue()===0))).add(sp({liveDuration:this.player.liveDuration$,liveStreamStatus:this.player.liveStreamStatus$,playbackRate:$I(i.playbackRateState$,new np(1))}).pipe(BI(({liveStreamStatus:o,liveDuration:u})=>o==="active"&&!!u)).subscribe(({liveDuration:o,playbackRate:u})=>{let l=t.liveBufferTime$.getValue(),p=t.position$.getValue(),{playbackCatchupSpeedup:c}=this.params.tuning.dashCmafLive.lowLatency;p||u<1-c||this.video.paused||ap(l)||(e=o-l)})).add(sp({time:t.liveBufferTime$,liveDuration:this.player.liveDuration$,playbackRate:$I(i.playbackRateState$,new np(1))}).pipe(PC((o,u)=>this.player.liveStreamStatus$.getValue()==="active"?o.liveDuration===u.liveDuration:o.time===u.time)).subscribe(({time:o,liveDuration:u,playbackRate:l})=>{let p=t.position$.getValue(),{playbackCatchupSpeedup:c}=this.params.tuning.dashCmafLive.lowLatency;if(!p&&!this.video.paused&&l>=1-c||ap(o)||ap(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=fI(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 VI=C(Is(),1);import{assertNever as dn,assertNonNullable as CI,debounce as AC,ErrorCategory as hu,filter as RC,isNonNullable as LC,isNullable as MC,map as fu,merge as $C,Observable as BC,observableFrom as DC,Subscription as CC,videoSizeToQuality as VC}from"@vkontakte/videoplayer-shared";var Mt={};var Kr=(s,e)=>new BC(t=>{let i=(r,a)=>t.next(a);return s.on(e,i),()=>s.off(e,i)}),pn=class{constructor(e){this.subscription=new CC;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:dn(e)}break;case"ready":switch(e){case"stopped":this.prepare();break;case"ready":case"playing":case"paused":break;default:dn(e)}break;case"playing":switch(e){case"playing":break;case"stopped":this.prepare();break;case"ready":case"paused":this.playIfAllowed();break;default:dn(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:dn(e)}break;default:dn(t)}};this.textTracksManager=new Je(e.source.url),this.video=De(e.container,e.tuning),this.params=e,this.params.output.element$.next(this.video),this.params.output.isLive$.next(!1),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(Ee(this.params.source.url)),this.loadHlsJs()}destroy(){this.subscription.unsubscribe(),this.trackLevels.clear(),this.textTracksManager.destroy(),this.hls?.detachMedia(),this.hls?.destroy(),this.params.output.element$.next(void 0),Ce(this.video)}loadHlsJs(){let e=!1,t=r=>{e||this.params.output.error$.next({id:r==="timeout"?"HlsJsTimeout":"HlsJsLoadError",category:hu.NETWORK,message:"Failed to load Hls.js",thrown:r}),e=!0},i=window.setTimeout(()=>t("timeout"),this.params.tuning.dynamicImportTimeout);(0,VI.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(){CI(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(){CI(Mt.Events,"hls.js not loaded");let{desiredState:e,output:t}=this.params,i=l=>{t.error$.next({id:"HlsJsProvider",category:hu.WTF,message:"HlsJsProvider internal logic error",thrown:l})},r=Oe(this.video);this.subscription.add(()=>r.destroy());let a=(l,p)=>this.subscription.add(l.subscribe(p,i));a(r.timeUpdate$,t.position$),a(r.durationChange$,t.duration$),a(r.ended$,t.endedEvent$),a(r.looped$,t.loopedEvent$),a(r.error$,t.error$),a(r.isBuffering$,t.isBuffering$),a(r.currentBuffer$,t.currentBuffer$),a(r.loadStart$,t.firstBytesEvent$),a(r.loadedMetadata$,t.loadedMetadataEvent$),a(r.playing$,t.firstFrameEvent$),a(r.canplay$,t.canplay$),a(r.seeked$,t.seekedEvent$),a(r.inPiP$,t.inPiP$),a(r.inFullscreen$,t.inFullscreen$),this.subscription.add(St(this.video,e.isLooped,i)),this.subscription.add(Ve(this.video,e.volume,r.volumeState$,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$)),this.subscription.add(Xe(this.video,e.playbackRate,r.playbackRateState$,i)),a(et(this.video),t.elementVisible$),a(this.videoState.stateChangeEnded$.pipe(fu(l=>l.to)),this.params.output.playbackState$),this.subscription.add(Kr(this.hls,Mt.Events.ERROR).subscribe(l=>{l.fatal&&t.error$.next({id:["HlsJsFatal",l.type,l.details].join("_"),category:hu.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(Kr(this.hls,Mt.Events.MANIFEST_PARSED).pipe(fu(({levels:l})=>l.reduce((p,c)=>{let d=c.name||c.height.toString(10),{width:h,height:f}=c,b=Vt(c.attrs.QUALITY??"")??VC({width:h,height:f});if(!b)return p;let g=c.attrs["FRAME-RATE"]?parseFloat(c.attrs["FRAME-RATE"]):void 0,S={id:d.toString(),quality:b,bitrate:c.bitrate/1e3,size:{width:h,height:f},fps:g};return this.trackLevels.set(d,{track:S,level:c}),p.push(S),p},[]))),t.availableVideoTracks$),a(Kr(this.hls,Mt.Events.MANIFEST_PARSED),l=>{if(l.subtitleTracks.length>0){let p=[];for(let c of l.subtitleTracks){let d=c.name,h=c.attrs.URI||"",f=c.lang;p.push({id:d,url:h,language:f,type:"internal"})}e.internalTextTracks.startTransitionTo(p)}}),a(Kr(this.hls,Mt.Events.LEVEL_LOADING).pipe(fu(({url:l})=>Ee(l))),t.hostname$),a(Kr(this.hls,Mt.Events.FRAG_CHANGED),l=>{let{video:p,audio:c}=l.frag.elementaryStreams;t.currentVideoSegmentLength$.next(((p?.endPTS??0)-(p?.startPTS??0))*1e3),t.currentAudioSegmentLength$.next(((c?.endPTS??0)-(c?.startPTS??0))*1e3)}),this.subscription.add(pi(e.autoVideoTrackSwitching,()=>this.hls.autoLevelEnabled,l=>{this.hls.nextLevel=l?-1:this.hls.currentLevel,this.hls.loadLevel=l?-1:this.hls.loadLevel},{onError:i}));let n=l=>Array.from(this.trackLevels.values()).find(({level:p})=>p===l)?.track,o=Kr(this.hls,Mt.Events.LEVEL_SWITCHED).pipe(fu(({level:l})=>n(this.hls.levels[l])));o.pipe(RC(LC)).subscribe(t.currentVideoTrack$,i),this.subscription.add(pi(e.videoTrack,()=>n(this.hls.levels[this.hls.currentLevel]),l=>{if(MC(l))return;let p=this.trackLevels.get(l.id)?.level;if(!p)return;let c=this.hls.levels.indexOf(p),d=this.hls.currentLevel,h=this.hls.levels[d];!h||p.bitrate>h.bitrate?this.hls.nextLevel=c:(this.hls.loadLevel=c,this.hls.loadLevel=c)},{changed$:o,onError:i})),a(r.progress$,()=>{this.params.dependencies.throughputEstimator.addRawThroughput(this.hls.bandwidthEstimate/1e3)}),this.textTracksManager.connect(this.video,e,t);let u=$C(e.playbackState.stateChangeStarted$,e.videoTrack.stateChangeStarted$,e.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,DC(["init"])).pipe(AC(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:hu.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 OI="X-Playback-Duration",op=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(OI)?parseInt(e.headers.get(OI),10):void 0};import{assertNever as QC,combine as WC,debounce as YC,ErrorCategory as gu,filter as KC,filterChanged as XC,isNonNullable as FI,isNullable as Su,map as UI,merge as JC,observableFrom as ZC,Subscription as eV,ValueSubject as cp,VideoQuality as tV}from"@vkontakte/videoplayer-shared";var lp=C(Nl(),1);import{videoSizeToQuality as OC,getExponentialDelay as _C}from"@vkontakte/videoplayer-shared";var NC=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=OC({width:t,height:i})}return e??null},FC=(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,lp.default)(o[1].split(",").map(g=>g.split("="))),p=l.QUALITY??`stream-${l.BANDWIDTH}`,c=NC(l),d;l.BANDWIDTH&&(d=parseInt(l.BANDWIDTH,10)/1e3||void 0),!d&&l["AVERAGE-BANDWIDTH"]&&(d=parseInt(l["AVERAGE-BANDWIDTH"],10)/1e3||void 0);let h=l["FRAME-RATE"]?parseFloat(l["FRAME-RATE"]):void 0,f;if(l.RESOLUTION){let[g,S]=l.RESOLUTION.split("x").map(T=>parseInt(T,10));g&&S&&(f={width:g,height:S})}let b=new URL(t[++a],e).toString();c&&i.push({id:p,quality:c,url:b,bandwidth:d,size:f,fps:h})}if(u){let l=(0,lp.default)(u[1].split(",").map(h=>{let f=h.indexOf("=");return[h.substring(0,f),h.substring(f+1)]}).map(([h,f])=>[h,f.replace(/^"|"$/g,"")])),p=l.URI?.replace(/playlist$/,"subtitles.vtt"),c=l.LANGUAGE,d=l.NAME;p&&c&&r.push({type:"internal",id:c,label:d,language:c,url:p,isAuto:!1})}}}if(!i.length)throw new Error("Empty manifest");return{qualityManifests:i,textTracks:r}},UC=s=>new Promise(e=>{setTimeout(()=>{e()},s)}),up=0,_I=async(s,e=s,t,i)=>{let a=await(await vt(s,i)).text();up+=1;try{let{qualityManifests:n,textTracks:o}=FC(a,e);return{qualityManifests:n,textTracks:o}}catch{if(up<=t.manifestRetryMaxCount)return await UC(_C(up-1,{start:t.manifestRetryInterval,max:t.manifestRetryMaxInterval})),_I(s,e,t)}return{qualityManifests:[],textTracks:[]}},mu=_I;import{isNonNullable as qC,Subscription as HC,throttle as jC,ValueSubject as NI,Subject as GC,ErrorCategory as zC}from"@vkontakte/videoplayer-shared";var bu=class{constructor(e,t,i,r,a){this.subscription=new HC;this.abortControllers={destroy:new ee,nextManifest:null};this.prepareUrl=void 0;this.currentTextTrackData=null;this.availableTextTracks$=new NI(null);this.getCurrentTime$=new NI(null);this.error$=new GC;this.params={fetchManifestData:i,sourceUrl:r,downloadThreshold:a},this.subscription.add(e.pipe(jC(1e3)).subscribe(n=>{this.processLiveTime(n)})),this.getCurrentTime$.next(()=>this.currentTextTrackData?this.currentTextTrackData.playlist.segmentStartTime/1e3+t.currentTime:0)}destroy(){this.subscription.unsubscribe(),this.abortControllers.destroy.abort()}async prepare(e){try{let t=new URL(e);t.searchParams.set("enable-subtitles","yes"),this.prepareUrl=t.toString();let{textTracks:i}=await this.fetchManifestData();await this.processTextTracks(i,this.params.sourceUrl)}catch(t){this.error("prepare",t)}}async processTextTracks(e,t){try{let i=await this.parseTextTracks(e,t);i&&(this.currentTextTrackData=i)}catch(i){this.error("processTextTracks",i)}}async parseTextTracks(e,t){for(let i of e){let r=new URL(i.url,t).toString(),n=await(await vt(r,{signal:this.abortControllers.destroy.signal})).text(),o=this.parsePlaylist(n,r);return{textTrack:i,playlist:o}}}parsePlaylist(e,t){let i={mediaSequence:0,programDateTime:"",segments:[],targetDuration:0,vkPlaybackDuration:0,segmentStartTime:0,vkStartTime:""},r=e.split(`
187
+ `),a=0;for(let n=0;n<r.length;++n){let o=r[n];switch(!0){case o.startsWith("#EXTINF:"):{let u=r[++n],l=new URL(u,t).toString(),p=Number(this.extractPlaylistRowValue("#EXTINF:",o))*1e3;if(i.segments.push({time:{from:a,to:a+p},url:l}),a=a+p,!i.segmentStartTime){let c=new Date(i.vkStartTime).valueOf(),d=new Date(i.programDateTime).valueOf();i.segmentStartTime=d-c}break}case o.startsWith("#EXT-X-TARGETDURATION:"):i.targetDuration=Number(this.extractPlaylistRowValue("#EXT-X-TARGETDURATION:",o));break;case o.startsWith("#EXT-X-MEDIA-SEQUENCE:"):i.mediaSequence=Number(this.extractPlaylistRowValue("#EXT-X-MEDIA-SEQUENCE:",o));break;case o.startsWith("#EXT-X-VK-PLAYBACK-DURATION:"):i.vkPlaybackDuration=Number(this.extractPlaylistRowValue("#EXT-X-VK-PLAYBACK-DURATION:",o));break;case o.startsWith("#EXT-X-PROGRAM-DATE-TIME:"):{let u=this.extractPlaylistRowValue("#EXT-X-PROGRAM-DATE-TIME:",o);i.programDateTime=u;let l=new Date(u);l.setMilliseconds(0),a=l.valueOf();break}case o.startsWith("#EXT-X-VK-START-TIME:"):i.vkStartTime=this.extractPlaylistRowValue("#EXT-X-VK-START-TIME:",o);break}}return i}extractPlaylistRowValue(e,t){switch(e){case"#EXTINF:":return t.substring(e.length,t.length-1);default:return t.substring(e.length)}}processLiveTime(e){if(qC(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:zC.WTF,thrown:t,message:e})}};var hn=class{constructor(e){this.subscription=new eV;this.videoState=new F("stopped");this.textTracksManager=null;this.liveTextManager=null;this.manifests$=new cp([]);this.liveOffset=new Fi;this.manifestStartTime$=new cp(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 p=this.videoState.getState();this.videoState.setState("changing_manifest"),this.videoState.startTransitionTo(p),this.prepare(),o&&this.params.output.autoVideoTrackLimits$.next(o.to),l.state==="none"&&this.params.desiredState.seekState.setState({state:"requested",position:-this.liveOffset.getTotalOffset(),forcePrecise:!0});return}if(r?.to!=="paused"&&l.state==="requested"){this.videoState.startTransitionTo("ready"),this.seek(l.position&&l.position-this.liveOffset.getTotalPausedTime()),this.prepare();return}switch(t){case"ready":i==="ready"?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 p=this.liveOffset.getTotalOffset();p>=this.maxSeekBackTime$.getValue()&&(p=0,this.liveOffset.resetTo(p)),this.liveOffset.resume(),this.params.output.position$.next(-p/1e3),this.prepare()}else r?.to==="paused"&&(k(this.params.desiredState.playbackState,"paused"),this.liveOffset.pause());return;case"changing_manifest":break;default:return QC(t)}};this.params=e,this.video=De(e.container,e.tuning),this.params.output.element$.next(this.video),this.masterManifest={id:"master",quality:tV.INVARIANT,url:this.params.source.url};let t=(i,r)=>mu(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 bu(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:gu.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:gu.NETWORK,message:"Error fetching manifest and extracting qualities",thrown:i})}),this.params.output.isLive$.next(!0),this.params.output.canChangePlaybackSpeed$.next(!1),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(Ee(this.params.source.url)),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.maxSeekBackTime$=new cp(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:gu.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(XC(),UI(o=>-o/1e3)).subscribe(this.params.output.duration$,i)),this.subscription.add(r.loadedMetadata$.subscribe(()=>{let o=this.params.desiredState.seekState.getState(),u=this.videoState.getTransition(),l=this.params.desiredState.videoTrack.getTransition(),p=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(l&&FI(l.to)){let c=l.to.id;this.params.desiredState.videoTrack.setState(l.to);let d=this.manifests$.getValue().find(h=>h.id===c);d&&(this.params.output.currentVideoTrack$.next(d),this.params.output.hostname$.next(Ee(d.url)))}p&&this.params.desiredState.autoVideoTrackSwitching.setState(p.to),u&&u.from==="changing_manifest"&&this.videoState.setState(u.to),o&&o.state==="requested"&&this.seek(o.position)},i)),this.subscription.add(r.loadedData$.subscribe(()=>{let o=this.video?.getStartDate?.()?.getTime();this.manifestStartTime$.next(o||void 0)},i)),this.subscription.add(WC({startTime:this.manifestStartTime$.pipe(KC(FI)),currentTime:r.timeUpdate$}).subscribe(({startTime:o,currentTime:u})=>this.params.output.liveTime$.next(o+u*1e3),i)),this.subscription.add(this.manifests$.pipe(UI(o=>o.map(({id:u,quality:l,size:p,bandwidth:c,fps:d})=>({id:u,quality:l,size:p,fps:d,bitrate:c})))).subscribe(this.params.output.availableVideoTracks$,i));let n=JC(t.playbackState.stateChangeStarted$,t.seekState.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.stateChangeStarted$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,this.manifests$,ZC(["init"])).pipe(YC(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(Su(e))return;let t=this.params.desiredState.autoVideoTrackLimits.getTransition(),i=this.params.desiredState.autoVideoTrackLimits.getState(),r=new URL(e.url);if((t||i)&&e.id===this.masterManifest.id){let{max:o,min:u}=t?.to??i??{};for(let[l,p]of[[o,"mq"],[u,"lq"]]){let c=String(parseFloat(l||""));p&&l&&r.searchParams.set(p,c)}}let a=this.params.format==="HLS_LIVE_CMAF"?2:0,n=ge(r.toString(),this.liveOffset.getTotalOffset(),a);this.liveTextManager?.prepare(n),this.video.setAttribute("src",n),this.video.load(),op(n).then(o=>{if(!Su(o))this.maxSeekBackTime$.next(o);else{let u=this.params.source.maxSeekBackTime??this.maxSeekBackTime$.getValue();(Su(u)||!isFinite(u))&&vt(n).then(l=>l.text()).then(l=>{let p=/#EXT-X-STREAM-INF[^\n]+\n(.+)/m.exec(l)?.[1];if(p){let c=new URL(p,n).toString();op(c).then(d=>{Su(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:gu.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next();let t=-e,i=t<this.maxSeekBackTime$.getValue()?t:0;this.liveOffset.resetTo(i),this.params.output.position$.next(-i/1e3),this.params.output.seekedEvent$.next()}generateLiveUrl(){let e=ge(this.params.source.url);if(this.params.tuning.useHlsLiveNewTextManager){let t=new URL(e);t.searchParams.set("enable-subtitles","yes"),e=t.toString()}return e}};import{assertNever as iV,debounce as rV,ErrorCategory as dp,fromEvent as pp,isNonNullable as sV,isNullable as aV,map as qI,merge as HI,observableFrom as jI,Subscription as nV,ValueSubject as oV,VideoQuality as uV}from"@vkontakte/videoplayer-shared";var fn=class{constructor(e){this.subscription=new nV;this.videoState=new F("stopped");this.manifests$=new oV([]);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 p=this.videoState.getState();this.videoState.setState("changing_manifest"),this.videoState.startTransitionTo(p);let{currentTime:c}=this.video;this.prepare(),o&&this.params.output.autoVideoTrackLimits$.next(o.to),l.state==="none"&&this.params.desiredState.seekState.setState({state:"requested",position:c*1e3,forcePrecise:!0});return}switch(r?.to!=="paused"&&l.state==="requested"&&this.seek(l.position),t){case"ready":i==="ready"?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 iV(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:uV.INVARIANT,url:this.params.source.url},this.params.output.isLive$.next(!1),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(Ee(this.params.source.url)),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),mu(ge(this.params.source.url),this.params.source.url,{manifestRetryInterval:this.params.tuning.manifestRetryInterval,manifestRetryMaxInterval:this.params.tuning.manifestRetryMaxInterval,manifestRetryMaxCount:this.params.tuning.manifestRetryMaxCount}).then(({qualityManifests:t,textTracks:i})=>{this.manifests$.next([this.masterManifest,...t]),this.params.tuning.useNativeHLSTextTracks||this.params.desiredState.internalTextTracks.startTransitionTo(i)},t=>this.params.output.error$.next({id:"ExtractHlsQualities",category:dp.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:dp.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(qI(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(),p=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(l&&sV(l.to)){let h=l.to.id;this.params.desiredState.videoTrack.setState(l.to);let f=this.manifests$.getValue().find(b=>b.id===h);f&&(this.params.output.currentVideoTrack$.next(f),this.params.output.hostname$.next(Ee(f.url)))}let c=this.params.desiredState.playbackRate.getState(),d=this.params.output.element$.getValue()?.playbackRate;if(c!==d){let h=this.params.output.element$.getValue();h&&(this.params.desiredState.playbackRate.setState(c),h.playbackRate=c)}p&&this.params.desiredState.autoVideoTrackSwitching.setState(p.to),u&&u.from==="changing_manifest"&&this.videoState.setState(u.to),o.state==="requested"&&this.seek(o.position)},i))),this.subscription.add(this.manifests$.pipe(qI(o=>o.map(({id:u,quality:l,size:p,bandwidth:c,fps:d})=>({id:u,quality:l,size:p,fps:d,bitrate:c})))).subscribe(this.params.output.availableVideoTracks$,i)),!N.device.isIOS||!this.params.tuning.useNativeHLSTextTracks){let{textTracks:o}=this.video;this.subscription.add(HI(pp(o,"addtrack"),pp(o,"removetrack"),pp(o,"change"),jI(["init"])).subscribe(()=>{for(let u=0;u<o.length;u++)o[u].mode="hidden"},i))}let n=HI(t.playbackState.stateChangeStarted$,t.seekState.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.stateChangeStarted$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,this.manifests$,jI(["init"])).pipe(rV(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(aV(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:dp.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next(),this.video.currentTime=e/1e3}};var QI=C(Mi(),1),hp=C(Ni(),1),WI=C(At(),1);import{assertNever as lV,assertNonNullable as GI,debounce as cV,ErrorCategory as zI,isHigherOrEqual as dV,isLowerOrEqual as pV,isNonNullable as hV,merge as fV,observableFrom as mV,Subscription as bV,map as gV}from"@vkontakte/videoplayer-shared";var mn=class{constructor(e){this.subscription=new bV;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 lV(e)}};this.params=e,this.video=De(e.container,e.tuning),this.params.output.element$.next(this.video),(0,QI.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,hp.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:zI.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(gV(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&&hV(o.to)){this.params.desiredState.videoTrack.setState(o.to),this.params.output.currentVideoTrack$.next(this.trackUrls[o.to.id].track);let u=this.params.desiredState.playbackRate.getState(),l=this.params.output.element$.getValue()?.playbackRate;if(u!==l){let p=this.params.output.element$.getValue();p&&(this.params.desiredState.playbackRate.setState(u),p.playbackRate=u)}}this.videoState.getState()==="playing"&&this.playIfAllowed()},i)),this.textTracksManager.connect(this.video,t,e);let n=fV(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,mV(["init"])).pipe(cV(0));this.subscription.add(n.subscribe(this.syncPlayback,i))}destroy(){this.subscription.unsubscribe(),this.textTracksManager.destroy(),this.trackUrls={},this.params.output.element$.next(void 0),Ce(this.video)}prepare(){let e=this.params.desiredState.videoTrack.getState()?.id;GI(e,"MpegProvider: track is not selected");let{url:t}=this.trackUrls[e];GI(t,`MpegProvider: No url for ${e}`),this.params.tuning.requestQuick&&(t=Si(t)),this.video.setAttribute("src",t),this.video.load(),this.params.output.hostname$.next(Ee(t))}playIfAllowed(){_e(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),k(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:zI.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next(),this.video.currentTime=e/1e3}handleQualityLimitTransition(e){this.params.output.autoVideoTrackLimits$.next(e);let t=l=>{this.params.output.currentVideoTrack$.next(l),this.params.desiredState.videoTrack.startTransitionTo(l)},i=l=>{let p=Ot(n,{container:this.video.getBoundingClientRect(),panelSize:this.params.panelSize,estimatedThroughput:this.params.dependencies.throughputEstimator.throughput$.getValue(),tuning:this.params.tuning.autoTrackSelection,forwardBufferHealth:0,limits:l,abrLogger:this.params.dependencies.abrLogger});t(p)},r=this.params.output.currentVideoTrack$.getValue()?.quality,a=!!(e.max||e.min),n=(0,hp.default)(this.trackUrls).map(l=>l.track);if(!r||!a||xr(e,n[0].quality,(0,WI.default)(n,-1)?.quality)){i();return}let o=e.max?pV(r,e.max):!0,u=e.min?dV(r,e.min):!0;o&&u||i(e)}};import{assertNever as KI,debounce as TV,merge as XI,observableFrom as IV,Subscription as xV,map as JI,ValueSubject as EV,ErrorCategory as mp,VideoQuality as wV}from"@vkontakte/videoplayer-shared";import{ErrorCategory as SV}from"@vkontakte/videoplayer-shared";var YI=["stun:videostun.mycdn.me:80"],vV=1e3,yV=3,fp=()=>null,vu=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=fp;this.externalStopCallback=fp;this.externalErrorCallback=fp;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:YI}]};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:SV.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),vV)}normalizeOptions(e={}){let t={stunServerList:YI,maxRetryNumber:yV,errorChanel:null};return e.stunServerList&&(t.stunServerList=e.stunServerList),e.maxRetryNumber&&e.maxRetryNumber>0&&(t.maxRetryNumber=e.maxRetryNumber),t}};var bn=class{constructor(e){this.videoState=new F("stopped");this.maxSeekBackTime$=new EV(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 KI(e)}};this.subscription=new xV,this.params=e,this.log=this.params.dependencies.logger.createComponentLog("WebRTCLiveProvider"),this.video=De(e.container,e.tuning),this.liveStreamClient=new vu(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:mp.WTF,message:"WebRTCLiveProvider internal logic error",thrown:n})};this.subscription.add(XI(this.videoState.stateChangeStarted$.pipe(JI(n=>({transition:n,type:"start"}))),this.videoState.stateChangeEnded$.pipe(JI(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 KI(n.to)}},i)).add(XI(t.playbackState.stateChangeStarted$,this.videoState.stateChangeEnded$,IV(["init"])).pipe(TV(0)).subscribe(this.syncPlayback.bind(this),i)),this.subscription.add(t.isLooped.stateChangeStarted$.subscribe(()=>t.isLooped.setState(!1),i)),this.subscription.add(t.autoVideoTrackSwitching.stateChangeStarted$.subscribe(()=>t.autoVideoTrackSwitching.setState(!1),i))}onLiveStreamStart(e){this.params.output.element$.next(this.video),this.params.output.duration$.next(0),this.params.output.position$.next(0),this.params.output.isLive$.next(!0),this.params.output.canChangePlaybackSpeed$.next(!1),this.params.output.hostname$.next(Ee(this.params.source.url)),this.params.output.autoVideoTrackLimitingAvailable$.next(!1),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.currentVideoTrack$.next({id:"webrtc",quality:wV.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:mp.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:mp.DOM,thrown:e}))}prepare(){this.liveStreamClient.connect()}};var gn=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 Sn,assertNonNullable as Ii,ErrorCategory as yu,filter as sx,isNonNullable as ax,isNullable as $V,map as BV,merge as DV,once as CV,Subject as Me,Subscription as nx,ValueSubject as H,flattenObject as ox}from"@vkontakte/videoplayer-shared";import{Observable as PV,map as ZI,Subscription as kV,Subject as AV}from"@vkontakte/videoplayer-shared";var ex=s=>new PV(e=>{let t=new kV,i=s.desiredPlaybackState$.stateChangeStarted$.pipe(ZI(({from:l,to:p})=>`${l}-${p}`)),r=s.desiredPlaybackState$.stateChangeEnded$,a=s.providerChanged$.pipe(ZI(({type:l})=>l!==void 0)),n=new AV,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 RV,Subscription as LV,combine as MV,filter as ix,once as rx}from"@vkontakte/videoplayer-shared";function tx(){return new(window.AudioContext||window.webkitAudioContext)}var Xr=class s{constructor(e,t,i,r){this.providerOutput=e;this.provider$=t;this.volumeMultiplierError$=i;this.volumeMultiplier=r;this.destroyController=new ee;this.subscriptions=new LV;this.audioContext=null;this.gainNode=null;this.mediaElementSource=null;this.subscriptions.add(this.provider$.pipe(ix(a=>!!a.type),rx()).subscribe(({type:a})=>this.subscribe(a)))}static{this.errorId="VolumeMultiplierManager"}subscribe(e){N.browser.isSafari&&e!=="MPEG"||this.subscriptions.add(MV({video:this.providerOutput.element$,playbackState:this.providerOutput.playbackState$,volume:this.providerOutput.volume$}).pipe(ix(({playbackState:t,video:i,volume:{muted:r,volume:a}})=>t==="playing"&&!!i&&!r&&!!a),rx()).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=tx();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:RV.VIDEO_PIPELINE,message:e?.message??`${s.errorId} exception`,thrown:e})}};var VV={chunkDuration:5e3,maxParallelRequests:5},vn=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 nx;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=VT([..._T(this.params.tuning),...OT(this.params.tuning)],this.params.tuning).filter(l=>ax(e.sources[l])),{forceFormat:i,formatsToAvoid:r}=this.params.tuning,a=[];i?a=[i]:r.length?a=[...t.filter(l=>!(0,bp.default)(r,l)),...t.filter(l=>(0,bp.default)(r,l))]:a=t,this.log({message:`Selected formats: ${a.join(" > ")}`}),this.tracer.log("Selected formats",ox(a)),this.screenFormatsIterator=new gn(a);let n=[...vd(!0),...vd(!1)];this.chromecastFormatsIterator=new gn(n.filter(l=>ax(e.sources[l]))),this.providerOutput.availableSources$.next(e.sources);let{volumeMultiplier:o=1,tuning:{useVolumeMultiplier:u}}=this.params;u&&o!==1&&Xr.isSupported()&&(this.volumeMultiplierManager=new Xr(this.providerOutput,this.current$,this.volumeMultiplierError$,o))}init(){this.subscription.add(this.initProviderErrorHandling()),this.subscription.add(this.params.dependencies.chromecastInitializer.connection$.subscribe(()=>{this.reinitProvider()}))}destroy(){this.destroyProvider(),this.current$.next({type:void 0}),this.subscription.unsubscribe(),this.volumeMultiplierManager?.destroy(),this.volumeMultiplierManager=null,this.tracer.end()}initProvider(){let e=this.chooseDestination(),t=this.chooseFormat(e);if($V(t)){this.handleNoFormatsError(e);return}let i;try{i=this.createProvider(e,t)}catch(r){this.providerError$.next({id:"ProviderNotConstructed",category:yu.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");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})}e.destroy();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 Sn(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 Ii(u),this.params.tuning.useNewDashProvider?new ln({...o,source:u,sourceHls:l}):new Ea({...o,source:u,sourceHls:l})}case"DASH_LIVE_CMAF":{let u=this.applyFailoverHost(t[e]);return Ii(u),this.params.tuning.useNewDashProvider?new cn({...o,source:u}):new wa({...o,source:u})}case"HLS":case"HLS_ONDEMAND":{let u=this.applyFailoverHost(t[e]);return Ii(u),N.video.nativeHlsSupported||!this.params.tuning.useHlsJs?new fn({...o,source:u}):new pn({...o,source:u})}case"HLS_LIVE":case"HLS_LIVE_CMAF":{let u=this.applyFailoverHost(t[e]);return Ii(u),new hn({...o,source:u,config:{maxPausedTime:this.params.tuning.live.maxPausedTime},format:e})}case"MPEG":{let u=this.applyFailoverHost(t[e]);return Ii(u),new mn({...o,source:u})}case"DASH_LIVE":{let u=this.applyFailoverHost(t[e]);return Ii(u),new Bv({...o,source:u,config:{...VV,maxPausedTime:this.params.tuning.live.maxPausedTime}})}case"WEB_RTC_LIVE":{let u=this.applyFailoverHost(t[e]);return Ii(u),new bn({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 Sn(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 Ii(o),new xs({connection:o,meta:a,container:i,source:t,format:e,desiredState:r,output:n,dependencies:this.params.dependencies,tuning:this.params.tuning})}chooseDestination(){return this.params.dependencies.chromecastInitializer.connection$.getValue()?"CHROMECAST":"SCREEN"}chooseFormat(e){switch(e){case"SCREEN":return this.screenFormatsIterator.isCompleted()?void 0:this.screenFormatsIterator.getValue();case"CHROMECAST":return this.chromecastFormatsIterator.isCompleted()?void 0:this.chromecastFormatsIterator.getValue();default:return Sn(e)}}skipFormat(e){switch(e){case"SCREEN":return this.screenFormatsIterator.next();case"CHROMECAST":return this.chromecastFormatsIterator.next();default:return Sn(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 Sn(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,lx.default)((0,ux.default)(e).map(([r,a])=>[r,i(a)]))}initProviderErrorHandling(){let e=new nx,t=!1,i=0;return e.add(DV(this.providerOutput.error$.pipe(sx(r=>!this.params.tuning.ignoreAudioRendererError||!r.message||!/AUDIO_RENDERER_ERROR/ig.test(r.message))),ex({desiredPlaybackState$:this.params.desiredState.playbackState,maxTransitionInterval:this.params.tuning.maxPlaybackTransitionInterval,position$:this.providerOutput.position$,providerChanged$:this.current$}).pipe(BV(r=>({id:`ProviderHangup:${r}`,category:yu.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(sx(({to:a})=>a==="playing"),CV()).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===yu.NETWORK,u=r.category===yu.FATAL,l=this.params.failoverHosts.length>0&&(this.failoverIndex===void 0||this.failoverIndex<this.params.failoverHosts.length-1),p=i<this.params.tuning.providerErrorLimit&&!u,c=l&&!u&&(o&&t||!p);n={...n,isNetworkError:o,isFatalError:u,haveFailoverHost:l,tryFailover:c,canReinitProvider:p},p?(i++,this.reinitProvider()):c?(this.failoverIndex=this.failoverIndex===void 0?0:this.failoverIndex+1,this.reinitProvider()):(i=0,this.switchToNextProvider(a??"SCREEN"))}this.tracer.error("providerError",ox(n))})),e}};import{fromEvent as Tu,once as OV,combine as _V,Subscription as cx,ValueSubject as gp,map as NV,filter as FV,isNonNullable as Iu,now as bt,safeStorage as Sp}from"@vkontakte/videoplayer-shared";var UV=5e3,dx="one_video_throughput",px="one_video_rtt",yn=window.navigator.connection,hx=()=>{let s=yn?.downlink;if(Iu(s)&&s!==10)return s*1e3},fx=()=>{let s=yn?.rtt;if(Iu(s)&&s!==3e3)return s},mx=(s,e,t)=>{let i=t*8,r=i/s;return i/(r+e)},vp=class s{constructor(e){this.subscription=new cx;this.concurrentDownloads=new Set;this.tuningConfig=e;let t=s.load(dx)||(e.useBrowserEstimation?hx():void 0)||UV,i=s.load(px)??(e.useBrowserEstimation?fx():void 0)??0;if(this.throughput$=new gp(t),this.rtt$=new gp(i),this.rttAdjustedThroughput$=new gp(mx(t,i,e.rttPenaltyRequestSize)),this.throughput=ii.getSmoothedValue(t,-1,e),this.rtt=ii.getSmoothedValue(i,1,e),e.useBrowserEstimation){let r=()=>{let n=hx();n&&this.throughput.next(n);let o=fx();Iu(o)&&this.rtt.next(o)};yn&&"onchange"in yn&&this.subscription.add(Tu(yn,"change").subscribe(r)),r()}this.subscription.add(this.throughput.smoothed$.subscribe(r=>{Sp.set(dx,r.toFixed(0))})),this.subscription.add(this.rtt.smoothed$.subscribe(r=>{Sp.set(px,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(NV(({throughput:r,rtt:a})=>mx(r,a,e.rttPenaltyRequestSize)),FV(r=>{let a=this.rttAdjustedThroughput$.getValue()||0;return Math.abs(r-a)/a>=e.changeThreshold})).subscribe(this.rttAdjustedThroughput$))}destroy(){this.concurrentDownloads.clear(),this.subscription.unsubscribe()}trackXHR(e){let t=0,i=bt(),r=new cx;switch(this.subscription.add(r),this.concurrentDownloads.add(e),e.readyState){case 4:break;case 3:case 2:r.add(Tu(e,"progress").pipe(OV()).subscribe(a=>{t=a.loaded,i=bt()}));break;case 1:case 0:r.add(Tu(e,"loadstart").subscribe(()=>{t=0,i=bt()}));break}r.add(Tu(e,"loadend").subscribe(a=>{if(e.status===200){let n=a.loaded,o=bt(),u=n-t,l=o-i;this.addRawSpeed(u,l,1)}this.concurrentDownloads.delete(e),r.unsubscribe()}))}trackStream(e,t=!1){let i=e.getReader();if(!i){e.cancel("Could not get reader");return}let r=0,a=bt(),n=0,o=bt(),u=p=>{this.concurrentDownloads.delete(e),i.releaseLock(),e.cancel(`Throughput Estimator error: ${p}`).catch(()=>{})},l=async({done:p,value:c})=>{if(p)!t&&this.addRawSpeed(r,bt()-a,1),this.concurrentDownloads.delete(e);else if(c){if(t){let d=bt();if(d-o>this.tuningConfig.lowLatency.continuesByteSequenceInterval||d-a>this.tuningConfig.lowLatency.maxLastEvaluationTimeout){let f=o-a;f&&this.addRawSpeed(n,f,1,t),n=c.byteLength,a=bt()}else n+=c.byteLength;o=bt()}else r+=c.byteLength,n+=c.byteLength,n>=this.tuningConfig.streamMinSampleSize&&bt()-o>=this.tuningConfig.streamMinSampleTime&&(this.addRawSpeed(n,bt()-o,this.concurrentDownloads.size),n=0,o=bt());await i?.read().then(l,u)}};this.concurrentDownloads.add(e),i?.read().then(l,u)}addRawSpeed(e,t,i=1,r=!1){if(s.sanityCheck(e,t,r)){let a=e*8/t;this.throughput.next(a*i)}}addRawThroughput(e){this.throughput.next(e)}addRawRtt(e){this.rtt.next(e)}static sanityCheck(e,t,i=!1){let r=e*8/t;return!(!r||!isFinite(r)||r>1e6||r<30||i&&e<1e4||!i&&e<10*1024||!i&&t<=20)}static load(e){let t=Sp.get(e);if(Iu(t))return parseInt(t,10)??void 0}},bx=vp;import{fillWithDefault as qV,VideoQuality as xu}from"@vkontakte/videoplayer-shared";var gx={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:xu.Q_4320P,activeVideoAreaThreshold:.1,highQualityLimit:xu.Q_720P,trafficSavingLimit:xu.Q_480P},droppedFramesChecker:{enabled:!1,percentLimit:.1,checkTime:1e3,countLimit:3,tickCountAfterQualityChange:5,qualityUpWaitingTime:5e3,minQualityBanLimit:xu.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,vktvAbrThrottle:null},dashCmafLive:{maxActiveLiveOffset:1e4,normalizedTargetMinBufferSize:6e4,normalizedLiveMinBufferSize:5e3,normalizedActualBufferOffset:1e4,offsetCalculationError:3e3,maxLiveDuration:7200,lowLatency:{maxTargetOffset:3e3,maxTargetOffsetDeviation:250,playbackCatchupSpeedup:.05,isActiveOnDefault:!1,bufferEstimator:{emaAlpha:.45,changeThreshold:.05,deviationDepth:20,deviationFactor:.5,extremumInterval:5}}},live:{minBuffer:3e3,minBufferSegments:3,lowLatencyMinBuffer:1e3,lowLatencyMinBufferSegments:1,isLiveCatchUpMode:!1,lowLatencyActiveLiveDelay:3e3,activeLiveDelay:5e3,maxPausedTime:5e3},downloadBackoff:{bufferThreshold:100,start:100,factor:2,max:3*1e3,random:.1},enableWakeLock:!0,enableTelemetryAtStart:!1,forceFormat:void 0,formatsToAvoid:[],disableChromecast:!1,chromecastReceiverId:"07A4434E",useWebmBigRequest:!1,webmCodec:"vp9",androidPreferredFormat:"dash",preferCMAF:!1,preferWebRTC:!1,preferMultiStream:!1,preferHDR:!1,bigRequestMinInitSize:50*1024,bigRequestMinDataSize:1*1024*1024,stripRangeHeader:!0,flushShortLoopedBuffers:!0,insufficientBufferRuleMargin:1e4,seekNearDurationBias:1,dashSeekInSegmentDurationThreshold:3*60*1e3,dashSeekInSegmentAlwaysSeekDelta:1e4,endGapTolerance:300,stallIgnoreThreshold:33,gapWatchdogInterval:50,requestQuick:!1,useHlsJs:!1,useNativeHLSTextTracks:!1,useManagedMediaSource:!0,useNewSwitchTo:!1,useNewDashProvider:!1,useNewAutoSelectVideoTrack:!1,useSafariEndlessRequestBugfix:!0,useRefactoredSearchGap:!1,isAudioDisabled:!1,autoplayOnlyInActiveTab:!0,dynamicImportTimeout:5e3,maxPlaybackTransitionInterval:2e4,providerErrorLimit:3,manifestRetryInterval:300,manifestRetryMaxInterval:1e4,manifestRetryMaxCount:10,audioVideoSyncRate:20,webrtc:{connectionRetryMaxNumber:3},spherical:{enabled:!1,fov:{x:135,y:76},rotationSpeed:45,maxYawAngle:175,rotationSpeedCorrection:10,degreeToPixelCorrection:5,speedFadeTime:2e3,speedFadeThreshold:50},useVolumeMultiplier:!1,ignoreAudioRendererError:!1,useEnableSubtitlesParam:!1,useOldMSEDetection:!1,useHlsLiveNewTextManager:!1,exposeInternalsToGlobal:!1,hlsLiveNewTextManagerDownloadThreshold:4e3,disableYandexPiP:!1,asyncResolveClientChecker:!1,autostartOnlyIfVisible:!1},Sx=s=>({...qV(s,gx),configName:[...s.configName??[],...gx.configName]});import{assertNonNullable as Eu,combine as oi,ErrorCategory as wu,filter as U,filterChanged as Y,fromEvent as Tp,isNonNullable as Ix,isNullable as YV,Logger as KV,map as Q,mapTo as xx,merge as xi,now as Pu,once as j,Subject as J,Subscription as Ex,tap as Ip,ValueSubject as $,isHigher as XV,isInvariantQuality as wx,flattenObject as Ei,throttle as xp,getTraceSubscriptionMethod as Px,Tracer as JV,InternalsExposure as ZV}from"@vkontakte/videoplayer-shared";import{merge as HV,map as jV,filter as vx,isNonNullable as GV}from"@vkontakte/videoplayer-shared";var yp=({seekState:s,position$:e})=>HV(s.stateChangeEnded$.pipe(jV(({to:t})=>t.state==="none"?void 0:(t.position??NaN)/1e3),vx(GV)),e.pipe(vx(()=>s.getState().state==="none")));import{assertNonNullable as zV}from"@vkontakte/videoplayer-shared";var yx=s=>{let e=typeof s.container=="string"?document.getElementById(s.container):s.container;return zV(e,`Wrong container or containerId {${s.container}}`),e};import{filter as QV,once as WV}from"@vkontakte/videoplayer-shared";var Tx=(s,e,t,i)=>{s!==void 0&&e.getState()===void 0&&e.getPrevState()===void 0&&t?.getValue().length===0?t.pipe(QV(r=>r.length>0),WV()).subscribe(r=>{r.find(i)&&e.startTransitionTo(s)}):(s===void 0||t?.getValue().find(i))&&e.startTransitionTo(s)};var ku=class{constructor(e={configName:[]},t=JV.createRootTracer(!1)){this.subscription=new Ex;this.logger=new KV;this.abrLogger=this.logger.createComponentLog("ABR");this.internalsExposure=null;this.isPlaybackStarted=!1;this.hasLiveOffsetByPaused=new $(!1);this.hasLiveOffsetByPausedTimer=0;this.playerInitRequest=0;this.playerInited=new $(!1);this.wasSetStartedQuality=!1;this.desiredState={playbackState:new 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 $(void 0),position$:new $(0),duration$:new $(1/0),muted$:new $(!1),volume$:new $(1),availableVideoStreams$:new $([]),currentVideoStream$:new $(void 0),availableQualities$:new $([]),availableQualitiesFps$:new $({}),currentQuality$:new $(void 0),isAutoQualityEnabled$:new $(!0),autoQualityLimitingAvailable$:new $(!1),autoQualityLimits$:new $({}),predefinedQualityLimitType$:new $("unknown"),availableAudioStreams$:new $([]),currentAudioStream$:new $(void 0),availableAudioTracks$:new $([]),isAudioAvailable$:new $(!0),currentPlaybackRate$:new $(1),currentBuffer$:new $({start:0,end:0}),isBuffering$:new $(!0),isStalled$:new $(!1),isEnded$:new $(!1),isLooped$:new $(!1),isLive$:new $(void 0),isLiveEnded$:new $(null),canChangePlaybackSpeed$:new $(void 0),atLiveEdge$:new $(void 0),atLiveDurationEdge$:new $(void 0),liveTime$:new $(void 0),liveBufferTime$:new $(void 0),liveLatency$:new $(void 0),currentFormat$:new $(void 0),availableTextTracks$:new $([]),currentTextTrack$:new $(void 0),throughputEstimation$:new $(void 0),rttEstimation$:new $(void 0),videoBitrate$:new $(void 0),hostname$:new $(void 0),httpConnectionType$:new $(void 0),httpConnectionReused$:new $(void 0),surface$:new $("none"),chromecastState$:new $("NOT_AVAILABLE"),chromecastDeviceName$:new $(void 0),intrinsicVideoSize$:new $(void 0),availableSources$:new $(void 0),is3DVideo$:new $(!1),currentVideoSegmentLength$:new $(0),currentAudioSegmentLength$:new $(0)};this.events={inited$:new J,ready$:new J,started$:new J,playing$:new J,paused$:new J,stopped$:new J,willStart$:new J,willResume$:new J,willPause$:new J,willStop$:new J,willDestruct$:new J,watchCoverageRecord$:new J,watchCoverageLive$:new J,managedError$:new J,fatalError$:new J,fetcherRecoverableError$:new J,ended$:new J,looped$:new J,seeked$:new J,willSeek$:new J,autoplaySoundProhibited$:new J,firstBytes$:new J,loadedMetadata$:new J,firstFrame$:new J,canplay$:new J,log$:new J,fetcherError$:new J,severeStallOccured$:new J};this.experimental={element$:new $(void 0),tuningConfigName$:new $([]),enableDebugTelemetry$:new $(!1),dumpTelemetry:av,getCurrentTime$:new $(null)};if(this.initLogs(),this.tuning=Sx(e),this.tracer=t,this.experimental.tuningConfigName$.next(this.tuning.configName),this.chromecastInitializer=new An({receiverApplicationId:e.chromecastReceiverId,isDisabled:e.disableChromecast,dependencies:{logger:this.logger}}),this.throughputEstimator=new bx(this.tuning.throughputEstimator),e.exposeInternalsToGlobal&&(this.internalsExposure=new ZV("CORE"),this.internalsExposure.expose({player:this})),this.initChromecastSubscription(),this.initDesiredStateSubscriptions(),Proxy&&Reflect)return new Proxy(this,{get:(i,r,a)=>{let n=Reflect.get(i,r,a);return typeof n!="function"?n:(...o)=>{try{return n.apply(i,o)}catch(u){let l=o.map(d=>JSON.stringify(d,(h,f)=>{let b=typeof f;return(0,kx.default)(["number","string","boolean"],b)?f:f===null?null:`<${b}>`})),p=`Player.${String(r)}`,c=`Exception calling ${p} (${l.join(", ")})`;throw this.events.fatalError$.next({id:p,category:wu.WTF,message:c,thrown:u}),u}}}})}initVideo(e){this.config=e,this.internalsExposure?.expose({config:e,logger:this.logger,tuning:this.tuning});let t=()=>{let{container:a,...n}=e;this.tracer.log("initVideo",Ei(n)),this.domContainer=yx(e),this.chromecastInitializer.contentId=e.meta?.videoId,this.providerContainer=new vn({sources:e.sources,meta:e.meta??{},failoverHosts:e.failoverHosts??[],container:this.domContainer,desiredState:this.desiredState,dependencies:{throughputEstimator:this.throughputEstimator,chromecastInitializer:this.chromecastInitializer,tracer:this.tracer,logger:this.logger,abrLogger:this.abrLogger},tuning:this.tuning,volumeMultiplier:e.volumeMultiplier,panelSize:e.panelSize}),this.initProviderContainerSubscription(this.providerContainer),this.initStartingVideoTrack(this.providerContainer),this.initTracerSubscription(),this.providerContainer.init(),this.setLiveLowLatency(this.tuning.dashCmafLive.lowLatency.isActiveOnDefault),this.setMuted(this.tuning.isAudioDisabled),this.initDebugTelemetry(),this.initWakeLock(),this.playerInited.next(!0)},i=()=>{this.tuning.autostartOnlyIfVisible&&window.requestAnimationFrame?this.playerInitRequest=window.requestAnimationFrame(()=>t()):t()},r=()=>{this.tuning.asyncResolveClientChecker?N.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"),Tp(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(()=>{Eu(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",Ei(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(()=>{Eu(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",Ei(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(()=>{Tx(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(YV(e))return this.info.position$.getValue();let t=this.desiredState.seekState.getState(),i=t.state==="none"?void 0:t.position;return Ix(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(xi(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(Oc(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",Ei(n)),n.state==="requested"?this.desiredState.seekState.setState({...n,state:"applying"}):this.events.managedError$.next({id:`WillSeekIn${n.state}`,category:wu.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",Ei(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(oi({availableVideoTracks:e.providerOutput.availableVideoTracks$,currentVideoStream:e.providerOutput.currentVideoStream$}).pipe(Q(({availableVideoTracks:n,currentVideoStream:o})=>n.filter(u=>o?o.id===u.streamId:!0).map(({quality:u})=>u).sort((u,l)=>wx(u)?1:wx(l)?-1:XV(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=>Ix(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(Ip(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(oi({hasLiveOffsetByPaused:xi(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(oi({atLiveEdge:oi({isLive:e.providerOutput.isLive$,isLowLatency:e.providerOutput.isLowLatency$,position:yp({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(),Ip(n=>n&&this.setPlaybackRate(1))),hasPausedTimeoutCase:this.hasLiveOffsetByPaused}).pipe(Q(({atLiveEdge:n,hasPausedTimeoutCase:o})=>n&&!o)).subscribe(this.info.atLiveEdge$)).add(oi({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(),Ip(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(yp({seekState:this.desiredState.seekState,position$:e.providerOutput.position$}).subscribe(this.info.position$)).add(xi(e.providerOutput.endedEvent$.pipe(xx(!0)),e.providerOutput.seekedEvent$.pipe(xx(!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:wu.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 $(!1);this.subscription.add(e.providerOutput.seekedEvent$.subscribe(()=>t.next(!1))).add(e.providerOutput.willSeekEvent$.subscribe(()=>t.next(!0)));let i=new $(!0);this.subscription.add(e.current$.subscribe(()=>i.next(!0))).add(this.desiredState.playbackState.stateChangeEnded$.pipe(U(({to:n})=>n==="playing"),j()).subscribe(()=>i.next(!1)));let r=0,a=xi(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(xi(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(xi(e.providerOutput.inPiP$,e.providerOutput.inFullscreen$,e.providerOutput.element$,e.providerOutput.elementVisible$,this.chromecastInitializer.castState$).subscribe(()=>{let n=e.providerOutput.inPiP$.getValue(),o=e.providerOutput.inFullscreen$.getValue(),u=e.providerOutput.element$.getValue(),l=e.providerOutput.elementVisible$.getValue(),p=this.chromecastInitializer.castState$.getValue(),c;p==="CONNECTED"?c="second_screen":u?l?n?c="pip":o?c="fullscreen":c="inline":c="invisible":c="none",this.info.surface$.getValue()!==c&&this.info.surface$.next(c)}))}initChromecastSubscription(){this.subscription.add(this.chromecastInitializer.castState$.subscribe(this.info.chromecastState$)),this.subscription.add(this.chromecastInitializer.connection$.pipe(Q(e=>e?.castDevice.friendlyName)).subscribe(this.info.chromecastDeviceName$)),this.subscription.add(this.chromecastInitializer.errorEvent$.subscribe(this.events.managedError$))}initStartingVideoTrack(e){let t=new Ex;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(xi(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;Eu(this.providerContainer),Eu(e),sv(),this.experimental.enableDebugTelemetry$.next(this.tuning.enableTelemetryAtStart),[this.experimental.enableDebugTelemetry$.subscribe(t=>rv(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 ze("fatalError")),this.events.managedError$.subscribe(new ze("managedError")),e.position$.subscribe(new ze("position")),e.currentVideoTrack$.pipe(Q(t=>t?.quality)).subscribe(new ze("quality")),this.info.currentBuffer$.subscribe(new ze("buffer")),e.isBuffering$.subscribe(new ze("isBuffering"))].forEach(t=>this.subscription.add(t)),As("codecs",N.video.supportedCodecs)}initTracerSubscription(){let e=Px(this.tracer.log.bind(this.tracer)),t=Px(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(oi({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(oi({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(xp(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(oi({liveTime:this.info.liveTime$,liveBufferTime:this.info.liveBufferTime$,position:this.info.position$}).pipe(U(({liveTime:i,liveBufferTime:r})=>!!i&&!!r),xp(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(oi({throughputEstimation:this.info.throughputEstimation$,rtt:this.info.rttEstimation$}).pipe(U(({throughputEstimation:i,rtt:r})=>!!i&&!!r),xp(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:wu.DOM,message:String(r)})})};this.subscription.add(xi(Tp(document,"visibilitychange"),Tp(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",Ei({quality:t,availableTracks:Ei(e),track:Ei(i),isAutoQuality:!i})),i?this.desiredState.videoTrack.startTransitionTo(i):this.setAutoQuality(!0)}getActiveLiveDelay(e=!1){return e?this.tuning.live.lowLatencyActiveLiveDelay:this.tuning.live.activeLiveDelay}isNotActiveTabCase(){return document.hidden&&this.tuning.autoplayOnlyInActiveTab&&!Cs()}};import{Subscription as GZ,Observable as zZ,Subject as QZ,ValueSubject as WZ,VideoQuality as YZ}from"@vkontakte/videoplayer-shared";var KZ=`@vkontakte/videoplayer-core@${wp}`;export{Tn as ChromecastState,$u as HttpConnectionType,zZ as Observable,Ke as PlaybackState,ku as Player,In as PredefinedQualityLimits,KZ as SDK_VERSION,QZ as Subject,GZ as Subscription,Bu as Surface,wp as VERSION,WZ as ValueSubject,Kt as VideoFormat,YZ as VideoQuality,N as clientChecker,Ps as isMobile};