@vkontakte/videoplayer-core 2.0.155 → 2.0.156-dev.04ce2cd1.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 (185) hide show
  1. package/es2015.cjs +83 -136
  2. package/es2015.esm.js +77 -130
  3. package/es2018.cjs +77 -130
  4. package/es2018.esm.js +75 -128
  5. package/es2024.cjs +83 -136
  6. package/es2024.esm.js +81 -134
  7. package/esnext.cjs +83 -136
  8. package/esnext.esm.js +81 -134
  9. package/evergreen.esm.js +82 -135
  10. package/package.json +2 -2
  11. package/types/enums/AndroidPreferredFormat.d.ts +6 -6
  12. package/types/enums/IOSPreferredFormat.d.ts +2 -2
  13. package/types/enums/WebmCodecStrategy.d.ts +5 -5
  14. package/types/index.d.ts +16 -13
  15. package/types/player/Player.d.ts +219 -210
  16. package/types/player/types.d.ts +595 -591
  17. package/types/player/utils/optimisticPosition.d.ts +7 -7
  18. package/types/player/utils/selectContainer.d.ts +1 -1
  19. package/types/providers/ChromecastPresentationApiProvider/ChromecastPresentationApiConnector.d.ts +107 -106
  20. package/types/providers/ChromecastPresentationApiProvider/ChromecastPresentationApiInitializer.d.ts +23 -23
  21. package/types/providers/ChromecastPresentationApiProvider/ChromecastPresentationApiProvider.d.ts +34 -34
  22. package/types/providers/ChromecastPresentationApiProvider/ProgressTicker.d.ts +9 -9
  23. package/types/providers/ChromecastPresentationApiProvider/index.d.ts +3 -3
  24. package/types/providers/ChromecastPresentationApiProvider/types.d.ts +31 -31
  25. package/types/providers/ChromecastPresentationApiProvider/utils.d.ts +1 -1
  26. package/types/providers/ChromecastProvider/ChromecastInitializer/index.d.ts +22 -22
  27. package/types/providers/ChromecastProvider/ChromecastInitializer/types.d.ts +22 -22
  28. package/types/providers/ChromecastProvider/index.d.ts +23 -23
  29. package/types/providers/ChromecastProvider/types.d.ts +7 -7
  30. package/types/providers/ChromecastProvider/utils.d.ts +1 -1
  31. package/types/providers/DashLiveProvider/DashLiveProvider.d.ts +33 -33
  32. package/types/providers/DashLiveProvider/index.d.ts +1 -1
  33. package/types/providers/DashLiveProvider/types.d.ts +17 -17
  34. package/types/providers/DashLiveProvider/utils/FilesFetcher.d.ts +23 -23
  35. package/types/providers/DashLiveProvider/utils/LiveDashPlayer.d.ts +149 -150
  36. package/types/providers/DashLiveProvider/utils/ThroughputEstimator.d.ts +12 -30
  37. package/types/providers/DashLiveProvider/utils/liveDashPlayerUtil.d.ts +19 -22
  38. package/types/providers/DashProvider/baseDashProvider.d.ts +57 -56
  39. package/types/providers/DashProvider/dashCmafLiveProvider.d.ts +6 -6
  40. package/types/providers/DashProvider/dashProvider.d.ts +4 -4
  41. package/types/providers/DashProvider/index.d.ts +2 -2
  42. package/types/providers/DashProvider/lib/ElementSizeManager.d.ts +14 -14
  43. package/types/providers/DashProvider/lib/LiveTextManager.d.ts +21 -21
  44. package/types/providers/DashProvider/lib/buffer.d.ts +123 -122
  45. package/types/providers/DashProvider/lib/fetcher.d.ts +70 -69
  46. package/types/providers/DashProvider/lib/player.d.ts +109 -107
  47. package/types/providers/DashProvider/lib/sourceBufferTaskQueue.d.ts +17 -17
  48. package/types/providers/DashProvider/lib/types.d.ts +20 -20
  49. package/types/providers/DashProvider/lib/utils.d.ts +4 -4
  50. package/types/providers/DashProviderVirtual/baseDashProvider.d.ts +58 -57
  51. package/types/providers/DashProviderVirtual/consts.d.ts +2 -2
  52. package/types/providers/DashProviderVirtual/dashCmafLiveProvider.d.ts +8 -8
  53. package/types/providers/DashProviderVirtual/dashProvider.d.ts +6 -6
  54. package/types/providers/DashProviderVirtual/index.d.ts +2 -2
  55. package/types/providers/DashProviderVirtual/lib/ElementSizeManager.d.ts +15 -14
  56. package/types/providers/DashProviderVirtual/lib/LiveTextManager.d.ts +21 -21
  57. package/types/providers/DashProviderVirtual/lib/buffer/nativeBufferManager.d.ts +17 -17
  58. package/types/providers/DashProviderVirtual/lib/buffer/sourceBufferTaskQueue.d.ts +17 -17
  59. package/types/providers/DashProviderVirtual/lib/buffer/types.d.ts +39 -39
  60. package/types/providers/DashProviderVirtual/lib/buffer/virtualBuffer/baseVirtualBufferManager.d.ts +94 -92
  61. package/types/providers/DashProviderVirtual/lib/buffer/virtualBuffer/byteRangeVirtualBufferManager.d.ts +19 -19
  62. package/types/providers/DashProviderVirtual/lib/buffer/virtualBuffer/liveVirtualBuffer.d.ts +25 -25
  63. package/types/providers/DashProviderVirtual/lib/buffer/virtualBuffer/templateVirtualBufferManager.d.ts +19 -19
  64. package/types/providers/DashProviderVirtual/lib/buffer/virtualBuffer/virtualBufferFactory.d.ts +4 -4
  65. package/types/providers/DashProviderVirtual/lib/fetcher.d.ts +68 -67
  66. package/types/providers/DashProviderVirtual/lib/player/basePlayer.d.ts +103 -100
  67. package/types/providers/DashProviderVirtual/lib/player/livePlayer.d.ts +34 -34
  68. package/types/providers/DashProviderVirtual/lib/player/player.d.ts +9 -9
  69. package/types/providers/DashProviderVirtual/lib/player/types.d.ts +13 -13
  70. package/types/providers/DashProviderVirtual/lib/types.d.ts +20 -20
  71. package/types/providers/DashProviderVirtual/lib/utils.d.ts +4 -4
  72. package/types/providers/HlsLiveProvider/LiveTextManager.d.ts +35 -35
  73. package/types/providers/HlsLiveProvider/index.d.ts +29 -28
  74. package/types/providers/HlsLiveProvider/seekBackTimeExtractor.d.ts +1 -1
  75. package/types/providers/HlsProvider/index.d.ts +19 -19
  76. package/types/providers/HlsProvider/manifestDataExtractor.d.ts +13 -13
  77. package/types/providers/MpegProvider/index.d.ts +17 -17
  78. package/types/providers/ProviderContainer/index.d.ts +47 -45
  79. package/types/providers/ProviderContainer/types.d.ts +16 -16
  80. package/types/providers/ProviderContainer/utils/formatsSupport.d.ts +9 -9
  81. package/types/providers/ProviderContainer/utils/playbackHangup.d.ts +9 -8
  82. package/types/providers/WebRTCLiveProvider/WebRTCLiveClient.d.ts +185 -185
  83. package/types/providers/WebRTCLiveProvider/WebRTCLiveProvider.d.ts +58 -57
  84. package/types/providers/WebRTCLiveProvider/interface/WebRTCLiveClientOptions.d.ts +6 -6
  85. package/types/providers/types.d.ts +103 -102
  86. package/types/providers/utils/HTMLVideoElement/DroppedFramesManager.d.ts +40 -39
  87. package/types/providers/utils/HTMLVideoElement/TextTrackManager.d.ts +28 -28
  88. package/types/providers/utils/HTMLVideoElement/forcePlay.d.ts +5 -5
  89. package/types/providers/utils/HTMLVideoElement/observable.d.ts +25 -25
  90. package/types/providers/utils/HTMLVideoElement/pool.d.ts +5 -4
  91. package/types/providers/utils/LiveOffset/index.d.ts +12 -12
  92. package/types/providers/utils/LiveOffset/types.d.ts +8 -8
  93. package/types/providers/utils/StallsManager.d.ts +49 -49
  94. package/types/providers/utils/debug.d.ts +13 -12
  95. package/types/providers/utils/extractConnectionHeaders.d.ts +3 -3
  96. package/types/providers/utils/generateLiveUrl.d.ts +4 -4
  97. package/types/providers/utils/guessNetworkErrorCause.d.ts +1 -1
  98. package/types/providers/utils/mergeIntervals.d.ts +1 -1
  99. package/types/providers/utils/okQualityStringToVideoQuality.d.ts +1 -1
  100. package/types/providers/utils/parsers/ietf/index.d.ts +8 -8
  101. package/types/providers/utils/parsers/index.d.ts +1 -1
  102. package/types/providers/utils/parsers/mpd.d.ts +1 -1
  103. package/types/providers/utils/parsers/mpeg/BoxModel.d.ts +18 -17
  104. package/types/providers/utils/parsers/mpeg/BoxParser.d.ts +15 -15
  105. package/types/providers/utils/parsers/mpeg/BoxTypeEnum.d.ts +27 -27
  106. package/types/providers/utils/parsers/mpeg/box.d.ts +68 -68
  107. package/types/providers/utils/parsers/mpeg/boxes/avc1.d.ts +5 -5
  108. package/types/providers/utils/parsers/mpeg/boxes/equi.d.ts +18 -18
  109. package/types/providers/utils/parsers/mpeg/boxes/ftyp.d.ts +14 -14
  110. package/types/providers/utils/parsers/mpeg/boxes/index.d.ts +27 -26
  111. package/types/providers/utils/parsers/mpeg/boxes/mdat.d.ts +12 -12
  112. package/types/providers/utils/parsers/mpeg/boxes/mdia.d.ts +5 -5
  113. package/types/providers/utils/parsers/mpeg/boxes/mfhd.d.ts +8 -8
  114. package/types/providers/utils/parsers/mpeg/boxes/minf.d.ts +5 -5
  115. package/types/providers/utils/parsers/mpeg/boxes/moof.d.ts +5 -5
  116. package/types/providers/utils/parsers/mpeg/boxes/moov.d.ts +5 -5
  117. package/types/providers/utils/parsers/mpeg/boxes/mvhd.d.ts +32 -32
  118. package/types/providers/utils/parsers/mpeg/boxes/prhd.d.ts +13 -13
  119. package/types/providers/utils/parsers/mpeg/boxes/proj.d.ts +5 -5
  120. package/types/providers/utils/parsers/mpeg/boxes/sidx.d.ts +43 -43
  121. package/types/providers/utils/parsers/mpeg/boxes/st3d.d.ts +16 -16
  122. package/types/providers/utils/parsers/mpeg/boxes/stbl.d.ts +5 -5
  123. package/types/providers/utils/parsers/mpeg/boxes/stsd.d.ts +8 -8
  124. package/types/providers/utils/parsers/mpeg/boxes/sv3d.d.ts +5 -5
  125. package/types/providers/utils/parsers/mpeg/boxes/tfdt.d.ts +14 -14
  126. package/types/providers/utils/parsers/mpeg/boxes/tfhd.d.ts +19 -19
  127. package/types/providers/utils/parsers/mpeg/boxes/tkhd.d.ts +39 -39
  128. package/types/providers/utils/parsers/mpeg/boxes/traf.d.ts +5 -5
  129. package/types/providers/utils/parsers/mpeg/boxes/trak.d.ts +5 -5
  130. package/types/providers/utils/parsers/mpeg/boxes/trun.d.ts +28 -28
  131. package/types/providers/utils/parsers/mpeg/boxes/unknown.d.ts +4 -5
  132. package/types/providers/utils/parsers/mpeg/boxes/uuid.d.ts +10 -10
  133. package/types/providers/utils/parsers/mpeg/fullBox.d.ts +12 -12
  134. package/types/providers/utils/parsers/mpeg/isobmff.d.ts +7 -7
  135. package/types/providers/utils/parsers/types.d.ts +137 -139
  136. package/types/providers/utils/parsers/webm/ebml.d.ts +62 -62
  137. package/types/providers/utils/parsers/webm/webm.d.ts +1 -1
  138. package/types/providers/utils/restorePlaybackRateInSafari.d.ts +17 -17
  139. package/types/providers/utils/syncDesiredState.d.ts +10 -10
  140. package/types/providers/utils/syncPlaybackState.d.ts +2 -2
  141. package/types/providers/utils/videoStreamRepresentaionsFilter.d.ts +2 -2
  142. package/types/utils/3d/Camera3D.d.ts +11 -11
  143. package/types/utils/3d/CameraRotationManager.d.ts +59 -59
  144. package/types/utils/3d/Scene3D.d.ts +129 -129
  145. package/types/utils/3d/types.d.ts +14 -14
  146. package/types/utils/ClientChecker/ClientChecker.d.ts +19 -19
  147. package/types/utils/ClientChecker/index.d.ts +2 -2
  148. package/types/utils/ClientChecker/services/AudioChecker.d.ts +7 -7
  149. package/types/utils/ClientChecker/services/BrowserChecker.d.ts +36 -36
  150. package/types/utils/ClientChecker/services/DeviceChecker.d.ts +38 -38
  151. package/types/utils/ClientChecker/services/DisplayChecker.d.ts +20 -20
  152. package/types/utils/ClientChecker/services/VideoChecker.d.ts +35 -35
  153. package/types/utils/ClientChecker/types/checker.d.ts +1 -1
  154. package/types/utils/ClientChecker/types/currentClientBrowser.d.ts +10 -10
  155. package/types/utils/ClientChecker/types/currentClientDevice.d.ts +8 -8
  156. package/types/utils/ClientChecker/types/userAgentData.d.ts +21 -21
  157. package/types/utils/StateMachine/StateMachine.d.ts +17 -17
  158. package/types/utils/StateMachine/types.d.ts +56 -56
  159. package/types/utils/StatefulIterator/index.d.ts +13 -13
  160. package/types/utils/ThroughputEstimator.d.ts +22 -22
  161. package/types/utils/VolumeMultiplierManager/VolumeMultiplierManager.d.ts +20 -20
  162. package/types/utils/VolumeMultiplierManager/index.d.ts +1 -1
  163. package/types/utils/autoSelectTrack.d.ts +28 -27
  164. package/types/utils/buffer/createTimeRanges.d.ts +2 -1
  165. package/types/utils/buffer/getBufferedRangeForPosition.d.ts +2 -2
  166. package/types/utils/buffer/getForwardBufferDuration.d.ts +1 -1
  167. package/types/utils/buffer/getTotalBufferDuration.d.ts +1 -1
  168. package/types/utils/buffer/isPositionBuffered.d.ts +1 -1
  169. package/types/utils/buffer/isSourceBufferValid.d.ts +1 -1
  170. package/types/utils/changePlaybackRate.d.ts +1 -1
  171. package/types/utils/decodingInfoLogger.d.ts +1 -1
  172. package/types/utils/mediaSource.d.ts +1 -5
  173. package/types/utils/observeElementVisibility.d.ts +1 -1
  174. package/types/utils/playbackTelemetry.d.ts +4 -4
  175. package/types/utils/playerOptions.d.ts +3 -3
  176. package/types/utils/qualityLimits.d.ts +15 -14
  177. package/types/utils/setStateWithSubscribe.d.ts +6 -3
  178. package/types/utils/smoothedValue/baseSmoothedValue.d.ts +16 -16
  179. package/types/utils/smoothedValue/emaAndMaSmoothedValue.d.ts +5 -5
  180. package/types/utils/smoothedValue/emaTopExtremumValue.d.ts +8 -8
  181. package/types/utils/smoothedValue/smoothedValueFactory.d.ts +4 -4
  182. package/types/utils/smoothedValue/twoEmaSmoothedValue.d.ts +6 -6
  183. package/types/utils/smoothedValue/types.d.ts +16 -16
  184. package/types/utils/tuningConfig.d.ts +304 -287
  185. package/types/utils/videoFormat.d.ts +1 -1
package/es2015.esm.js CHANGED
@@ -1,184 +1,131 @@
1
1
  /**
2
- * @vkontakte/videoplayer-core v2.0.155
3
- * Wed, 11 Mar 2026 06:02:14 GMT
4
- * https://st.mycdn.me/static/vkontakte-videoplayer/2-0-155/doc/
2
+ * @vkontakte/videoplayer-core v2.0.156-dev.04ce2cd1.0
3
+ * Wed, 18 Mar 2026 16:32:46 GMT
4
+ * https://st.mycdn.me/static/vkontakte-videoplayer/2-0-156/doc/
5
5
  */
6
- var px=Object.create;var Ku=Object.defineProperty,hx=Object.defineProperties,fx=Object.getOwnPropertyDescriptor,mx=Object.getOwnPropertyDescriptors,bx=Object.getOwnPropertyNames,An=Object.getOwnPropertySymbols,Fh=Object.getPrototypeOf,Xu=Object.prototype.hasOwnProperty,Uh=Object.prototype.propertyIsEnumerable,gx=Reflect.get;var vx=(s,e)=>(e=Symbol[s])?e:Symbol.for("Symbol."+s);var gt=Math.pow,Nh=(s,e,t)=>e in s?Ku(s,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):s[e]=t,x=(s,e)=>{for(var t in e||(e={}))Xu.call(e,t)&&Nh(s,t,e[t]);if(An)for(var t of An(e))Uh.call(e,t)&&Nh(s,t,e[t]);return s},C=(s,e)=>hx(s,mx(e));var Xt=(s,e)=>{var t={};for(var i in s)Xu.call(s,i)&&e.indexOf(i)<0&&(t[i]=s[i]);if(s!=null&&An)for(var i of An(s))e.indexOf(i)<0&&Uh.call(s,i)&&(t[i]=s[i]);return t};var b=(s,e)=>()=>(e||s((e={exports:{}}).exports,e),e.exports);var Sx=(s,e,t,i)=>{if(e&&typeof e=="object"||typeof e=="function")for(let r of bx(e))!Xu.call(s,r)&&r!==t&&Ku(s,r,{get:()=>e[r],enumerable:!(i=fx(e,r))||i.enumerable});return s};var q=(s,e,t)=>(t=s!=null?px(Fh(s)):{},Sx(e||!s||!s.__esModule?Ku(t,"default",{value:s,enumerable:!0}):t,s));var mr=(s,e,t)=>gx(Fh(s),t,e);var y=(s,e,t)=>new Promise((i,r)=>{var a=u=>{try{o(t.next(u))}catch(c){r(c)}},n=u=>{try{o(t.throw(u))}catch(c){r(c)}},o=u=>u.done?i(u.value):Promise.resolve(u.value).then(a,n);o((t=t.apply(s,e)).next())}),vt=function(s,e){this[0]=s,this[1]=e},Z=(s,e,t)=>{var i=(n,o,u,c)=>{try{var d=t[n](o),l=(o=d.value)instanceof vt,p=d.done;Promise.resolve(l?o[0]:o).then(h=>l?i(n==="return"?n:"next",o[1]?{done:h.done,value:h.value}:h,u,c):u({value:h,done:p})).catch(h=>i("throw",h,u,c))}catch(h){c(h)}},r=n=>a[n]=o=>new Promise((u,c)=>i(n,o,u,c)),a={};return t=t.apply(s,e),a[vx("asyncIterator")]=()=>a,r("next"),r("throw"),r("return"),a};var le=b((tc,Hh)=>{"use strict";var fa=function(s){return s&&s.Math===Math&&s};Hh.exports=fa(typeof globalThis=="object"&&globalThis)||fa(typeof window=="object"&&window)||fa(typeof self=="object"&&self)||fa(typeof global=="object"&&global)||fa(typeof tc=="object"&&tc)||function(){return this}()||Function("return this")()});var Se=b((PN,jh)=>{"use strict";jh.exports=function(s){try{return!!s()}catch(e){return!0}}});var ma=b((kN,Wh)=>{"use strict";var yx=Se();Wh.exports=!yx(function(){var s=function(){}.bind();return typeof s!="function"||s.hasOwnProperty("prototype")})});var ic=b((AN,Yh)=>{"use strict";var Tx=ma(),Gh=Function.prototype,Qh=Gh.apply,zh=Gh.call;Yh.exports=typeof Reflect=="object"&&Reflect.apply||(Tx?zh.bind(Qh):function(){return zh.apply(Qh,arguments)})});var ye=b((RN,Jh)=>{"use strict";var Kh=ma(),Xh=Function.prototype,rc=Xh.call,Ix=Kh&&Xh.bind.bind(rc,rc);Jh.exports=Kh?Ix:function(s){return function(){return rc.apply(s,arguments)}}});var Ai=b((MN,ef)=>{"use strict";var Zh=ye(),Ex=Zh({}.toString),wx=Zh("".slice);ef.exports=function(s){return wx(Ex(s),8,-1)}});var ac=b(($N,tf)=>{"use strict";var xx=Ai(),Px=ye();tf.exports=function(s){if(xx(s)==="Function")return Px(s)}});var de=b((LN,rf)=>{"use strict";var sc=typeof document=="object"&&document.all;rf.exports=typeof sc=="undefined"&&sc!==void 0?function(s){return typeof s=="function"||s===sc}:function(s){return typeof s=="function"}});var We=b((CN,af)=>{"use strict";var kx=Se();af.exports=!kx(function(){return Object.defineProperty({},1,{get:function(){return 7}})[1]!==7})});var Qe=b((DN,sf)=>{"use strict";var Ax=ma(),Mn=Function.prototype.call;sf.exports=Ax?Mn.bind(Mn):function(){return Mn.apply(Mn,arguments)}});var nc=b(uf=>{"use strict";var nf={}.propertyIsEnumerable,of=Object.getOwnPropertyDescriptor,Rx=of&&!nf.call({1:2},1);uf.f=Rx?function(e){var t=of(this,e);return!!t&&t.enumerable}:nf});var ba=b((VN,cf)=>{"use strict";cf.exports=function(s,e){return{enumerable:!(s&1),configurable:!(s&2),writable:!(s&4),value:e}}});var df=b((_N,lf)=>{"use strict";var Mx=ye(),$x=Se(),Lx=Ai(),oc=Object,Cx=Mx("".split);lf.exports=$x(function(){return!oc("z").propertyIsEnumerable(0)})?function(s){return Lx(s)==="String"?Cx(s,""):oc(s)}:oc});var ga=b((ON,pf)=>{"use strict";pf.exports=function(s){return s==null}});var Jt=b((NN,hf)=>{"use strict";var Dx=ga(),Bx=TypeError;hf.exports=function(s){if(Dx(s))throw new Bx("Can't call method on "+s);return s}});var Ri=b((FN,ff)=>{"use strict";var Vx=df(),_x=Jt();ff.exports=function(s){return Vx(_x(s))}});var _e=b((UN,mf)=>{"use strict";var Ox=de();mf.exports=function(s){return typeof s=="object"?s!==null:Ox(s)}});var Mi=b((qN,bf)=>{"use strict";bf.exports={}});var $t=b((HN,vf)=>{"use strict";var uc=Mi(),cc=le(),Nx=de(),gf=function(s){return Nx(s)?s:void 0};vf.exports=function(s,e){return arguments.length<2?gf(uc[s])||gf(cc[s]):uc[s]&&uc[s][e]||cc[s]&&cc[s][e]}});var va=b((jN,Sf)=>{"use strict";var Fx=ye();Sf.exports=Fx({}.isPrototypeOf)});var $i=b((WN,If)=>{"use strict";var Ux=le(),yf=Ux.navigator,Tf=yf&&yf.userAgent;If.exports=Tf?String(Tf):""});var dc=b((QN,Af)=>{"use strict";var kf=le(),lc=$i(),Ef=kf.process,wf=kf.Deno,xf=Ef&&Ef.versions||wf&&wf.version,Pf=xf&&xf.v8,ot,$n;Pf&&(ot=Pf.split("."),$n=ot[0]>0&&ot[0]<4?1:+(ot[0]+ot[1]));!$n&&lc&&(ot=lc.match(/Edge\/(\d+)/),(!ot||ot[1]>=74)&&(ot=lc.match(/Chrome\/(\d+)/),ot&&($n=+ot[1])));Af.exports=$n});var pc=b((zN,Mf)=>{"use strict";var Rf=dc(),qx=Se(),Hx=le(),jx=Hx.String;Mf.exports=!!Object.getOwnPropertySymbols&&!qx(function(){var s=Symbol("symbol detection");return!jx(s)||!(Object(s)instanceof Symbol)||!Symbol.sham&&Rf&&Rf<41})});var hc=b((GN,$f)=>{"use strict";var Wx=pc();$f.exports=Wx&&!Symbol.sham&&typeof Symbol.iterator=="symbol"});var fc=b((YN,Lf)=>{"use strict";var Qx=$t(),zx=de(),Gx=va(),Yx=hc(),Kx=Object;Lf.exports=Yx?function(s){return typeof s=="symbol"}:function(s){var e=Qx("Symbol");return zx(e)&&Gx(e.prototype,Kx(s))}});var Sa=b((KN,Cf)=>{"use strict";var Xx=String;Cf.exports=function(s){try{return Xx(s)}catch(e){return"Object"}}});var St=b((XN,Df)=>{"use strict";var Jx=de(),Zx=Sa(),eP=TypeError;Df.exports=function(s){if(Jx(s))return s;throw new eP(Zx(s)+" is not a function")}});var ya=b((JN,Bf)=>{"use strict";var tP=St(),iP=ga();Bf.exports=function(s,e){var t=s[e];return iP(t)?void 0:tP(t)}});var _f=b((ZN,Vf)=>{"use strict";var mc=Qe(),bc=de(),gc=_e(),rP=TypeError;Vf.exports=function(s,e){var t,i;if(e==="string"&&bc(t=s.toString)&&!gc(i=mc(t,s))||bc(t=s.valueOf)&&!gc(i=mc(t,s))||e!=="string"&&bc(t=s.toString)&&!gc(i=mc(t,s)))return i;throw new rP("Can't convert object to primitive value")}});var ut=b((eF,Of)=>{"use strict";Of.exports=!0});var Uf=b((tF,Ff)=>{"use strict";var Nf=le(),aP=Object.defineProperty;Ff.exports=function(s,e){try{aP(Nf,s,{value:e,configurable:!0,writable:!0})}catch(t){Nf[s]=e}return e}});var Ta=b((iF,jf)=>{"use strict";var sP=ut(),nP=le(),oP=Uf(),qf="__core-js_shared__",Hf=jf.exports=nP[qf]||oP(qf,{});(Hf.versions||(Hf.versions=[])).push({version:"3.43.0",mode:sP?"pure":"global",copyright:"© 2014-2025 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.43.0/LICENSE",source:"https://github.com/zloirock/core-js"})});var vc=b((rF,Qf)=>{"use strict";var Wf=Ta();Qf.exports=function(s,e){return Wf[s]||(Wf[s]=e||{})}});var br=b((aF,zf)=>{"use strict";var uP=Jt(),cP=Object;zf.exports=function(s){return cP(uP(s))}});var ct=b((sF,Gf)=>{"use strict";var lP=ye(),dP=br(),pP=lP({}.hasOwnProperty);Gf.exports=Object.hasOwn||function(e,t){return pP(dP(e),t)}});var Sc=b((nF,Yf)=>{"use strict";var hP=ye(),fP=0,mP=Math.random(),bP=hP(1.1.toString);Yf.exports=function(s){return"Symbol("+(s===void 0?"":s)+")_"+bP(++fP+mP,36)}});var Ae=b((oF,Xf)=>{"use strict";var gP=le(),vP=vc(),Kf=ct(),SP=Sc(),yP=pc(),TP=hc(),gr=gP.Symbol,yc=vP("wks"),IP=TP?gr.for||gr:gr&&gr.withoutSetter||SP;Xf.exports=function(s){return Kf(yc,s)||(yc[s]=yP&&Kf(gr,s)?gr[s]:IP("Symbol."+s)),yc[s]}});var tm=b((uF,em)=>{"use strict";var EP=Qe(),Jf=_e(),Zf=fc(),wP=ya(),xP=_f(),PP=Ae(),kP=TypeError,AP=PP("toPrimitive");em.exports=function(s,e){if(!Jf(s)||Zf(s))return s;var t=wP(s,AP),i;if(t){if(e===void 0&&(e="default"),i=EP(t,s,e),!Jf(i)||Zf(i))return i;throw new kP("Can't convert object to primitive value")}return e===void 0&&(e="number"),xP(s,e)}});var Tc=b((cF,im)=>{"use strict";var RP=tm(),MP=fc();im.exports=function(s){var e=RP(s,"string");return MP(e)?e:e+""}});var Ln=b((lF,am)=>{"use strict";var $P=le(),rm=_e(),Ic=$P.document,LP=rm(Ic)&&rm(Ic.createElement);am.exports=function(s){return LP?Ic.createElement(s):{}}});var Ec=b((dF,sm)=>{"use strict";var CP=We(),DP=Se(),BP=Ln();sm.exports=!CP&&!DP(function(){return Object.defineProperty(BP("div"),"a",{get:function(){return 7}}).a!==7})});var um=b(om=>{"use strict";var VP=We(),_P=Qe(),OP=nc(),NP=ba(),FP=Ri(),UP=Tc(),qP=ct(),HP=Ec(),nm=Object.getOwnPropertyDescriptor;om.f=VP?nm:function(e,t){if(e=FP(e),t=UP(t),HP)try{return nm(e,t)}catch(i){}if(qP(e,t))return NP(!_P(OP.f,e,t),e[t])}});var wc=b((hF,cm)=>{"use strict";var jP=Se(),WP=de(),QP=/#|\.prototype\./,Ia=function(s,e){var t=GP[zP(s)];return t===KP?!0:t===YP?!1:WP(e)?jP(e):!!e},zP=Ia.normalize=function(s){return String(s).replace(QP,".").toLowerCase()},GP=Ia.data={},YP=Ia.NATIVE="N",KP=Ia.POLYFILL="P";cm.exports=Ia});var vr=b((fF,dm)=>{"use strict";var lm=ac(),XP=St(),JP=ma(),ZP=lm(lm.bind);dm.exports=function(s,e){return XP(s),e===void 0?s:JP?ZP(s,e):function(){return s.apply(e,arguments)}}});var xc=b((mF,pm)=>{"use strict";var ek=We(),tk=Se();pm.exports=ek&&tk(function(){return Object.defineProperty(function(){},"prototype",{value:42,writable:!1}).prototype!==42})});var yt=b((bF,hm)=>{"use strict";var ik=_e(),rk=String,ak=TypeError;hm.exports=function(s){if(ik(s))return s;throw new ak(rk(s)+" is not an object")}});var Li=b(mm=>{"use strict";var sk=We(),nk=Ec(),ok=xc(),Cn=yt(),fm=Tc(),uk=TypeError,Pc=Object.defineProperty,ck=Object.getOwnPropertyDescriptor,kc="enumerable",Ac="configurable",Rc="writable";mm.f=sk?ok?function(e,t,i){if(Cn(e),t=fm(t),Cn(i),typeof e=="function"&&t==="prototype"&&"value"in i&&Rc in i&&!i[Rc]){var r=ck(e,t);r&&r[Rc]&&(e[t]=i.value,i={configurable:Ac in i?i[Ac]:r[Ac],enumerable:kc in i?i[kc]:r[kc],writable:!1})}return Pc(e,t,i)}:Pc:function(e,t,i){if(Cn(e),t=fm(t),Cn(i),nk)try{return Pc(e,t,i)}catch(r){}if("get"in i||"set"in i)throw new uk("Accessors not supported");return"value"in i&&(e[t]=i.value),e}});var Sr=b((vF,bm)=>{"use strict";var lk=We(),dk=Li(),pk=ba();bm.exports=lk?function(s,e,t){return dk.f(s,e,pk(1,t))}:function(s,e,t){return s[e]=t,s}});var me=b((SF,vm)=>{"use strict";var Ea=le(),hk=ic(),fk=ac(),mk=de(),bk=um().f,gk=wc(),yr=Mi(),vk=vr(),Tr=Sr(),gm=ct();Ta();var Sk=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 hk(s,this,arguments)};return e.prototype=s.prototype,e};vm.exports=function(s,e){var t=s.target,i=s.global,r=s.stat,a=s.proto,n=i?Ea:r?Ea[t]:Ea[t]&&Ea[t].prototype,o=i?yr:yr[t]||Tr(yr,t,{})[t],u=o.prototype,c,d,l,p,h,f,m,g,v;for(p in e)c=gk(i?p:t+(r?".":"#")+p,s.forced),d=!c&&n&&gm(n,p),f=o[p],d&&(s.dontCallGetSet?(v=bk(n,p),m=v&&v.value):m=n[p]),h=d&&m?m:e[p],!(!c&&!a&&typeof f==typeof h)&&(s.bind&&d?g=vk(h,Ea):s.wrap&&d?g=Sk(h):a&&mk(h)?g=fk(h):g=h,(s.sham||h&&h.sham||f&&f.sham)&&Tr(g,"sham",!0),Tr(o,p,g),a&&(l=t+"Prototype",gm(yr,l)||Tr(yr,l,{}),Tr(yr[l],p,h),s.real&&u&&(c||!u[p])&&Tr(u,p,h)))}});var Dn=b((yF,ym)=>{"use strict";var yk=vc(),Tk=Sc(),Sm=yk("keys");ym.exports=function(s){return Sm[s]||(Sm[s]=Tk(s))}});var Im=b((TF,Tm)=>{"use strict";var Ik=Se();Tm.exports=!Ik(function(){function s(){}return s.prototype.constructor=null,Object.getPrototypeOf(new s)!==s.prototype})});var Bn=b((IF,wm)=>{"use strict";var Ek=ct(),wk=de(),xk=br(),Pk=Dn(),kk=Im(),Em=Pk("IE_PROTO"),Mc=Object,Ak=Mc.prototype;wm.exports=kk?Mc.getPrototypeOf:function(s){var e=xk(s);if(Ek(e,Em))return e[Em];var t=e.constructor;return wk(t)&&e instanceof t?t.prototype:e instanceof Mc?Ak:null}});var Pm=b((EF,xm)=>{"use strict";var Rk=Math.ceil,Mk=Math.floor;xm.exports=Math.trunc||function(e){var t=+e;return(t>0?Mk:Rk)(t)}});var wa=b((wF,km)=>{"use strict";var $k=Pm();km.exports=function(s){var e=+s;return e!==e||e===0?0:$k(e)}});var Rm=b((xF,Am)=>{"use strict";var Lk=wa(),Ck=Math.max,Dk=Math.min;Am.exports=function(s,e){var t=Lk(s);return t<0?Ck(t+e,0):Dk(t,e)}});var $c=b((PF,Mm)=>{"use strict";var Bk=wa(),Vk=Math.min;Mm.exports=function(s){var e=Bk(s);return e>0?Vk(e,9007199254740991):0}});var Ir=b((kF,$m)=>{"use strict";var _k=$c();$m.exports=function(s){return _k(s.length)}});var Lc=b((AF,Cm)=>{"use strict";var Ok=Ri(),Nk=Rm(),Fk=Ir(),Lm=function(s){return function(e,t,i){var r=Ok(e),a=Fk(r);if(a===0)return!s&&-1;var n=Nk(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}};Cm.exports={includes:Lm(!0),indexOf:Lm(!1)}});var Vn=b((RF,Dm)=>{"use strict";Dm.exports={}});var _m=b((MF,Vm)=>{"use strict";var Uk=ye(),Cc=ct(),qk=Ri(),Hk=Lc().indexOf,jk=Vn(),Bm=Uk([].push);Vm.exports=function(s,e){var t=qk(s),i=0,r=[],a;for(a in t)!Cc(jk,a)&&Cc(t,a)&&Bm(r,a);for(;e.length>i;)Cc(t,a=e[i++])&&(~Hk(r,a)||Bm(r,a));return r}});var Dc=b(($F,Om)=>{"use strict";Om.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]});var Bc=b((LF,Nm)=>{"use strict";var Wk=_m(),Qk=Dc();Nm.exports=Object.keys||function(e){return Wk(e,Qk)}});var Vc=b((CF,jm)=>{"use strict";var Um=We(),zk=Se(),qm=ye(),Gk=Bn(),Yk=Bc(),Kk=Ri(),Xk=nc().f,Hm=qm(Xk),Jk=qm([].push),Zk=Um&&zk(function(){var s=Object.create(null);return s[2]=2,!Hm(s,2)}),Fm=function(s){return function(e){for(var t=Kk(e),i=Yk(t),r=Zk&&Gk(t)===null,a=i.length,n=0,o=[],u;a>n;)u=i[n++],(!Um||(r?u in t:Hm(t,u)))&&Jk(o,s?[u,t[u]]:t[u]);return o}};jm.exports={entries:Fm(!0),values:Fm(!1)}});var Wm=b(()=>{"use strict";var eA=me(),tA=Vc().values;eA({target:"Object",stat:!0},{values:function(e){return tA(e)}})});var zm=b((VF,Qm)=>{"use strict";Wm();var iA=Mi();Qm.exports=iA.Object.values});var Ym=b((_F,Gm)=>{"use strict";var rA=zm();Gm.exports=rA});var Ci=b((OF,Km)=>{"use strict";var aA=Ym();Km.exports=aA});var xa=b((NF,Xm)=>{"use strict";Xm.exports=function(){}});var Jm=b(()=>{"use strict";var sA=me(),nA=Lc().includes,oA=Se(),uA=xa(),cA=oA(function(){return!Array(1).includes()});sA({target:"Array",proto:!0,forced:cA},{includes:function(e){return nA(this,e,arguments.length>1?arguments[1]:void 0)}});uA("includes")});var Zt=b((qF,Zm)=>{"use strict";var lA=$t();Zm.exports=lA});var tb=b((HF,eb)=>{"use strict";Jm();var dA=Zt();eb.exports=dA("Array","includes")});var rb=b((jF,ib)=>{"use strict";var pA=tb();ib.exports=pA});var Oe=b((WF,ab)=>{"use strict";var hA=rb();ab.exports=hA});var $b=b(()=>{"use strict";var XA=me(),JA=Vc().entries;XA({target:"Object",stat:!0},{entries:function(e){return JA(e)}})});var Cb=b((Kq,Lb)=>{"use strict";$b();var ZA=Mi();Lb.exports=ZA.Object.entries});var Bb=b((Xq,Db)=>{"use strict";var eR=Cb();Db.exports=eR});var ti=b((Jq,Vb)=>{"use strict";var tR=Bb();Vb.exports=tR});var Vi=b((Zq,_b)=>{"use strict";_b.exports={}});var Fb=b((e1,Nb)=>{"use strict";var iR=le(),rR=de(),Ob=iR.WeakMap;Nb.exports=rR(Ob)&&/native code/.test(String(Ob))});var el=b((t1,Hb)=>{"use strict";var aR=Fb(),qb=le(),sR=_e(),nR=Sr(),Xc=ct(),Jc=Ta(),oR=Dn(),uR=Vn(),Ub="Object already initialized",Zc=qb.TypeError,cR=qb.WeakMap,Gn,Ma,Yn,lR=function(s){return Yn(s)?Ma(s):Gn(s,{})},dR=function(s){return function(e){var t;if(!sR(e)||(t=Ma(e)).type!==s)throw new Zc("Incompatible receiver, "+s+" required");return t}};aR||Jc.state?(lt=Jc.state||(Jc.state=new cR),lt.get=lt.get,lt.has=lt.has,lt.set=lt.set,Gn=function(s,e){if(lt.has(s))throw new Zc(Ub);return e.facade=s,lt.set(s,e),e},Ma=function(s){return lt.get(s)||{}},Yn=function(s){return lt.has(s)}):(_i=oR("state"),uR[_i]=!0,Gn=function(s,e){if(Xc(s,_i))throw new Zc(Ub);return e.facade=s,nR(s,_i,e),e},Ma=function(s){return Xc(s,_i)?s[_i]:{}},Yn=function(s){return Xc(s,_i)});var lt,_i;Hb.exports={set:Gn,get:Ma,has:Yn,enforce:lR,getterFor:dR}});var rl=b((i1,Wb)=>{"use strict";var tl=We(),pR=ct(),jb=Function.prototype,hR=tl&&Object.getOwnPropertyDescriptor,il=pR(jb,"name"),fR=il&&function(){}.name==="something",mR=il&&(!tl||tl&&hR(jb,"name").configurable);Wb.exports={EXISTS:il,PROPER:fR,CONFIGURABLE:mR}});var zb=b(Qb=>{"use strict";var bR=We(),gR=xc(),vR=Li(),SR=yt(),yR=Ri(),TR=Bc();Qb.f=bR&&!gR?Object.defineProperties:function(e,t){SR(e);for(var i=yR(t),r=TR(t),a=r.length,n=0,o;a>n;)vR.f(e,o=r[n++],i[o]);return e}});var al=b((a1,Gb)=>{"use strict";var IR=$t();Gb.exports=IR("document","documentElement")});var ul=b((s1,tg)=>{"use strict";var ER=yt(),wR=zb(),Yb=Dc(),xR=Vn(),PR=al(),kR=Ln(),AR=Dn(),Kb=">",Xb="<",nl="prototype",ol="script",Zb=AR("IE_PROTO"),sl=function(){},eg=function(s){return Xb+ol+Kb+s+Xb+"/"+ol+Kb},Jb=function(s){s.write(eg("")),s.close();var e=s.parentWindow.Object;return s=null,e},RR=function(){var s=kR("iframe"),e="java"+ol+":",t;return s.style.display="none",PR.appendChild(s),s.src=String(e),t=s.contentWindow.document,t.open(),t.write(eg("document.F=Object")),t.close(),t.F},Kn,Xn=function(){try{Kn=new ActiveXObject("htmlfile")}catch(e){}Xn=typeof document!="undefined"?document.domain&&Kn?Jb(Kn):RR():Jb(Kn);for(var s=Yb.length;s--;)delete Xn[nl][Yb[s]];return Xn()};xR[Zb]=!0;tg.exports=Object.create||function(e,t){var i;return e!==null?(sl[nl]=ER(e),i=new sl,sl[nl]=null,i[Zb]=e):i=Xn(),t===void 0?i:wR.f(i,t)}});var Pr=b((n1,ig)=>{"use strict";var MR=Sr();ig.exports=function(s,e,t,i){return i&&i.enumerable?s[e]=t:MR(s,e,t),s}});var pl=b((o1,sg)=>{"use strict";var $R=Se(),LR=de(),CR=_e(),DR=ul(),rg=Bn(),BR=Pr(),VR=Ae(),_R=ut(),dl=VR("iterator"),ag=!1,Ct,cl,ll;[].keys&&(ll=[].keys(),"next"in ll?(cl=rg(rg(ll)),cl!==Object.prototype&&(Ct=cl)):ag=!0);var OR=!CR(Ct)||$R(function(){var s={};return Ct[dl].call(s)!==s});OR?Ct={}:_R&&(Ct=DR(Ct));LR(Ct[dl])||BR(Ct,dl,function(){return this});sg.exports={IteratorPrototype:Ct,BUGGY_SAFARI_ITERATORS:ag}});var Jn=b((u1,og)=>{"use strict";var NR=Ae(),FR=NR("toStringTag"),ng={};ng[FR]="z";og.exports=String(ng)==="[object z]"});var $a=b((c1,ug)=>{"use strict";var UR=Jn(),qR=de(),Zn=Ai(),HR=Ae(),jR=HR("toStringTag"),WR=Object,QR=Zn(function(){return arguments}())==="Arguments",zR=function(s,e){try{return s[e]}catch(t){}};ug.exports=UR?Zn:function(s){var e,t,i;return s===void 0?"Undefined":s===null?"Null":typeof(t=zR(e=WR(s),jR))=="string"?t:QR?Zn(e):(i=Zn(e))==="Object"&&qR(e.callee)?"Arguments":i}});var lg=b((l1,cg)=>{"use strict";var GR=Jn(),YR=$a();cg.exports=GR?{}.toString:function(){return"[object "+YR(this)+"]"}});var La=b((d1,pg)=>{"use strict";var KR=Jn(),XR=Li().f,JR=Sr(),ZR=ct(),eM=lg(),tM=Ae(),dg=tM("toStringTag");pg.exports=function(s,e,t,i){var r=t?s:s&&s.prototype;r&&(ZR(r,dg)||XR(r,dg,{configurable:!0,value:e}),i&&!KR&&JR(r,"toString",eM))}});var fg=b((p1,hg)=>{"use strict";var iM=pl().IteratorPrototype,rM=ul(),aM=ba(),sM=La(),nM=Vi(),oM=function(){return this};hg.exports=function(s,e,t,i){var r=e+" Iterator";return s.prototype=rM(iM,{next:aM(+!i,t)}),sM(s,r,!1,!0),nM[r]=oM,s}});var bg=b((h1,mg)=>{"use strict";var uM=ye(),cM=St();mg.exports=function(s,e,t){try{return uM(cM(Object.getOwnPropertyDescriptor(s,e)[t]))}catch(i){}}});var vg=b((f1,gg)=>{"use strict";var lM=_e();gg.exports=function(s){return lM(s)||s===null}});var yg=b((m1,Sg)=>{"use strict";var dM=vg(),pM=String,hM=TypeError;Sg.exports=function(s){if(dM(s))return s;throw new hM("Can't set "+pM(s)+" as a prototype")}});var hl=b((b1,Tg)=>{"use strict";var fM=bg(),mM=_e(),bM=Jt(),gM=yg();Tg.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var s=!1,e={},t;try{t=fM(Object.prototype,"__proto__","set"),t(e,[]),s=e instanceof Array}catch(i){}return function(r,a){return bM(r),gM(a),mM(r)&&(s?t(r,a):r.__proto__=a),r}}():void 0)});var Lg=b((g1,$g)=>{"use strict";var vM=me(),SM=Qe(),eo=ut(),Rg=rl(),yM=de(),TM=fg(),Ig=Bn(),Eg=hl(),IM=La(),EM=Sr(),fl=Pr(),wM=Ae(),wg=Vi(),Mg=pl(),xM=Rg.PROPER,PM=Rg.CONFIGURABLE,xg=Mg.IteratorPrototype,to=Mg.BUGGY_SAFARI_ITERATORS,Ca=wM("iterator"),Pg="keys",Da="values",kg="entries",Ag=function(){return this};$g.exports=function(s,e,t,i,r,a,n){TM(t,e,i);var o=function(v){if(v===r&&p)return p;if(!to&&v&&v in d)return d[v];switch(v){case Pg:return function(){return new t(this,v)};case Da:return function(){return new t(this,v)};case kg:return function(){return new t(this,v)}}return function(){return new t(this)}},u=e+" Iterator",c=!1,d=s.prototype,l=d[Ca]||d["@@iterator"]||r&&d[r],p=!to&&l||o(r),h=e==="Array"&&d.entries||l,f,m,g;if(h&&(f=Ig(h.call(new s)),f!==Object.prototype&&f.next&&(!eo&&Ig(f)!==xg&&(Eg?Eg(f,xg):yM(f[Ca])||fl(f,Ca,Ag)),IM(f,u,!0,!0),eo&&(wg[u]=Ag))),xM&&r===Da&&l&&l.name!==Da&&(!eo&&PM?EM(d,"name",Da):(c=!0,p=function(){return SM(l,this)})),r)if(m={values:o(Da),keys:a?p:o(Pg),entries:o(kg)},n)for(g in m)(to||c||!(g in d))&&fl(d,g,m[g]);else vM({target:e,proto:!0,forced:to||c},m);return(!eo||n)&&d[Ca]!==p&&fl(d,Ca,p,{name:r}),wg[e]=p,m}});var Dg=b((v1,Cg)=>{"use strict";Cg.exports=function(s,e){return{value:s,done:e}}});var bl=b((S1,Ng)=>{"use strict";var kM=Ri(),ml=xa(),Bg=Vi(),_g=el(),AM=Li().f,RM=Lg(),io=Dg(),MM=ut(),$M=We(),Og="Array Iterator",LM=_g.set,CM=_g.getterFor(Og);Ng.exports=RM(Array,"Array",function(s,e){LM(this,{type:Og,target:kM(s),index:0,kind:e})},function(){var s=CM(this),e=s.target,t=s.index++;if(!e||t>=e.length)return s.target=null,io(void 0,!0);switch(s.kind){case"keys":return io(t,!1);case"values":return io(e[t],!1)}return io([t,e[t]],!1)},"values");var Vg=Bg.Arguments=Bg.Array;ml("keys");ml("values");ml("entries");if(!MM&&$M&&Vg.name!=="values")try{AM(Vg,"name",{value:"values"})}catch(s){}});var Ug=b((y1,Fg)=>{"use strict";var DM=Ae(),BM=Vi(),VM=DM("iterator"),_M=Array.prototype;Fg.exports=function(s){return s!==void 0&&(BM.Array===s||_M[VM]===s)}});var gl=b((T1,Hg)=>{"use strict";var OM=$a(),qg=ya(),NM=ga(),FM=Vi(),UM=Ae(),qM=UM("iterator");Hg.exports=function(s){if(!NM(s))return qg(s,qM)||qg(s,"@@iterator")||FM[OM(s)]}});var Wg=b((I1,jg)=>{"use strict";var HM=Qe(),jM=St(),WM=yt(),QM=Sa(),zM=gl(),GM=TypeError;jg.exports=function(s,e){var t=arguments.length<2?zM(s):e;if(jM(t))return WM(HM(t,s));throw new GM(QM(s)+" is not iterable")}});var Gg=b((E1,zg)=>{"use strict";var YM=Qe(),Qg=yt(),KM=ya();zg.exports=function(s,e,t){var i,r;Qg(s);try{if(i=KM(s,"return"),!i){if(e==="throw")throw t;return t}i=YM(i,s)}catch(a){r=!0,i=a}if(e==="throw")throw t;if(r)throw i;return Qg(i),t}});var ao=b((w1,Jg)=>{"use strict";var XM=vr(),JM=Qe(),ZM=yt(),e$=Sa(),t$=Ug(),i$=Ir(),Yg=va(),r$=Wg(),a$=gl(),Kg=Gg(),s$=TypeError,ro=function(s,e){this.stopped=s,this.result=e},Xg=ro.prototype;Jg.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=XM(e,i),c,d,l,p,h,f,m,g=function(S){return c&&Kg(c,"normal"),new ro(!0,S)},v=function(S){return r?(ZM(S),o?u(S[0],S[1],g):u(S[0],S[1])):o?u(S,g):u(S)};if(a)c=s.iterator;else if(n)c=s;else{if(d=a$(s),!d)throw new s$(e$(s)+" is not iterable");if(t$(d)){for(l=0,p=i$(s);p>l;l++)if(h=v(s[l]),h&&Yg(Xg,h))return h;return new ro(!1)}c=r$(s,d)}for(f=a?s.next:c.next;!(m=JM(f,c)).done;){try{h=v(m.value)}catch(S){Kg(c,"throw",S)}if(typeof h=="object"&&h&&Yg(Xg,h))return h}return new ro(!1)}});var ev=b((x1,Zg)=>{"use strict";var n$=We(),o$=Li(),u$=ba();Zg.exports=function(s,e,t){n$?o$.f(s,e,u$(0,t)):s[e]=t}});var tv=b(()=>{"use strict";var c$=me(),l$=ao(),d$=ev();c$({target:"Object",stat:!0},{fromEntries:function(e){var t={};return l$(e,function(i,r){d$(t,i,r)},{AS_ENTRIES:!0}),t}})});var rv=b((A1,iv)=>{"use strict";bl();tv();var p$=Mi();iv.exports=p$.Object.fromEntries});var sv=b((R1,av)=>{"use strict";av.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 ov=b(()=>{"use strict";bl();var h$=sv(),f$=le(),m$=La(),nv=Vi();for(so in h$)m$(f$[so],so),nv[so]=nv.Array;var so});var cv=b((L1,uv)=>{"use strict";var b$=rv();ov();uv.exports=b$});var vl=b((C1,lv)=>{"use strict";var g$=cv();lv.exports=g$});var dv=b(()=>{"use strict"});var Sl=b((V1,pv)=>{"use strict";var Ba=le(),v$=$i(),S$=Ai(),no=function(s){return v$.slice(0,s.length)===s};pv.exports=function(){return no("Bun/")?"BUN":no("Cloudflare-Workers")?"CLOUDFLARE":no("Deno/")?"DENO":no("Node.js/")?"NODE":Ba.Bun&&typeof Bun.version=="string"?"BUN":Ba.Deno&&typeof Deno.version=="object"?"DENO":S$(Ba.process)==="process"?"NODE":Ba.window&&Ba.document?"BROWSER":"REST"}()});var oo=b((_1,hv)=>{"use strict";var y$=Sl();hv.exports=y$==="NODE"});var mv=b((O1,fv)=>{"use strict";var T$=Li();fv.exports=function(s,e,t){return T$.f(s,e,t)}});var vv=b((N1,gv)=>{"use strict";var I$=$t(),E$=mv(),w$=Ae(),x$=We(),bv=w$("species");gv.exports=function(s){var e=I$(s);x$&&e&&!e[bv]&&E$(e,bv,{configurable:!0,get:function(){return this}})}});var yv=b((F1,Sv)=>{"use strict";var P$=va(),k$=TypeError;Sv.exports=function(s,e){if(P$(e,s))return s;throw new k$("Incorrect invocation")}});var Tl=b((U1,Tv)=>{"use strict";var A$=ye(),R$=de(),yl=Ta(),M$=A$(Function.toString);R$(yl.inspectSource)||(yl.inspectSource=function(s){return M$(s)});Tv.exports=yl.inspectSource});var El=b((q1,Pv)=>{"use strict";var $$=ye(),L$=Se(),Iv=de(),C$=$a(),D$=$t(),B$=Tl(),Ev=function(){},wv=D$("Reflect","construct"),Il=/^\s*(?:class|function)\b/,V$=$$(Il.exec),_$=!Il.test(Ev),Va=function(e){if(!Iv(e))return!1;try{return wv(Ev,[],e),!0}catch(t){return!1}},xv=function(e){if(!Iv(e))return!1;switch(C$(e)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return _$||!!V$(Il,B$(e))}catch(t){return!0}};xv.sham=!0;Pv.exports=!wv||L$(function(){var s;return Va(Va.call)||!Va(Object)||!Va(function(){s=!0})||s})?xv:Va});var Av=b((H1,kv)=>{"use strict";var O$=El(),N$=Sa(),F$=TypeError;kv.exports=function(s){if(O$(s))return s;throw new F$(N$(s)+" is not a constructor")}});var wl=b((j1,Mv)=>{"use strict";var Rv=yt(),U$=Av(),q$=ga(),H$=Ae(),j$=H$("species");Mv.exports=function(s,e){var t=Rv(s).constructor,i;return t===void 0||q$(i=Rv(t)[j$])?e:U$(i)}});var Lv=b((W1,$v)=>{"use strict";var W$=ye();$v.exports=W$([].slice)});var Dv=b((Q1,Cv)=>{"use strict";var Q$=TypeError;Cv.exports=function(s,e){if(s<e)throw new Q$("Not enough arguments");return s}});var xl=b((z1,Bv)=>{"use strict";var z$=$i();Bv.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(z$)});var Dl=b((G1,jv)=>{"use strict";var Ge=le(),G$=ic(),Y$=vr(),Vv=de(),K$=ct(),Hv=Se(),_v=al(),X$=Lv(),Ov=Ln(),J$=Dv(),Z$=xl(),eL=oo(),$l=Ge.setImmediate,Ll=Ge.clearImmediate,tL=Ge.process,Pl=Ge.Dispatch,iL=Ge.Function,Nv=Ge.MessageChannel,rL=Ge.String,kl=0,_a={},Fv="onreadystatechange",Oa,Oi,Al,Rl;Hv(function(){Oa=Ge.location});var Cl=function(s){if(K$(_a,s)){var e=_a[s];delete _a[s],e()}},Ml=function(s){return function(){Cl(s)}},Uv=function(s){Cl(s.data)},qv=function(s){Ge.postMessage(rL(s),Oa.protocol+"//"+Oa.host)};(!$l||!Ll)&&($l=function(e){J$(arguments.length,1);var t=Vv(e)?e:iL(e),i=X$(arguments,1);return _a[++kl]=function(){G$(t,void 0,i)},Oi(kl),kl},Ll=function(e){delete _a[e]},eL?Oi=function(s){tL.nextTick(Ml(s))}:Pl&&Pl.now?Oi=function(s){Pl.now(Ml(s))}:Nv&&!Z$?(Al=new Nv,Rl=Al.port2,Al.port1.onmessage=Uv,Oi=Y$(Rl.postMessage,Rl)):Ge.addEventListener&&Vv(Ge.postMessage)&&!Ge.importScripts&&Oa&&Oa.protocol!=="file:"&&!Hv(qv)?(Oi=qv,Ge.addEventListener("message",Uv,!1)):Fv in Ov("script")?Oi=function(s){_v.appendChild(Ov("script"))[Fv]=function(){_v.removeChild(this),Cl(s)}}:Oi=function(s){setTimeout(Ml(s),0)});jv.exports={set:$l,clear:Ll}});var zv=b((Y1,Qv)=>{"use strict";var Wv=le(),aL=We(),sL=Object.getOwnPropertyDescriptor;Qv.exports=function(s){if(!aL)return Wv[s];var e=sL(Wv,s);return e&&e.value}});var Bl=b((K1,Yv)=>{"use strict";var Gv=function(){this.head=null,this.tail=null};Gv.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}}};Yv.exports=Gv});var Xv=b((X1,Kv)=>{"use strict";var nL=$i();Kv.exports=/ipad|iphone|ipod/i.test(nL)&&typeof Pebble!="undefined"});var Zv=b((J1,Jv)=>{"use strict";var oL=$i();Jv.exports=/web0s(?!.*chrome)/i.test(oL)});var nS=b((Z1,sS)=>{"use strict";var Ar=le(),uL=zv(),eS=vr(),Vl=Dl().set,cL=Bl(),lL=xl(),dL=Xv(),pL=Zv(),_l=oo(),tS=Ar.MutationObserver||Ar.WebKitMutationObserver,iS=Ar.document,rS=Ar.process,uo=Ar.Promise,Fl=uL("queueMicrotask"),kr,Ol,Nl,co,aS;Fl||(Na=new cL,Fa=function(){var s,e;for(_l&&(s=rS.domain)&&s.exit();e=Na.get();)try{e()}catch(t){throw Na.head&&kr(),t}s&&s.enter()},!lL&&!_l&&!pL&&tS&&iS?(Ol=!0,Nl=iS.createTextNode(""),new tS(Fa).observe(Nl,{characterData:!0}),kr=function(){Nl.data=Ol=!Ol}):!dL&&uo&&uo.resolve?(co=uo.resolve(void 0),co.constructor=uo,aS=eS(co.then,co),kr=function(){aS(Fa)}):_l?kr=function(){rS.nextTick(Fa)}:(Vl=eS(Vl,Ar),kr=function(){Vl(Fa)}),Fl=function(s){Na.head||kr(),Na.add(s)});var Na,Fa;sS.exports=Fl});var uS=b((eH,oS)=>{"use strict";oS.exports=function(s,e){try{arguments.length===1?console.error(s):console.error(s,e)}catch(t){}}});var lo=b((tH,cS)=>{"use strict";cS.exports=function(s){try{return{error:!1,value:s()}}catch(e){return{error:!0,value:e}}}});var Ni=b((iH,lS)=>{"use strict";var hL=le();lS.exports=hL.Promise});var Rr=b((rH,fS)=>{"use strict";var fL=le(),Ua=Ni(),mL=de(),bL=wc(),gL=Tl(),vL=Ae(),dS=Sl(),SL=ut(),Ul=dc(),pS=Ua&&Ua.prototype,yL=vL("species"),ql=!1,hS=mL(fL.PromiseRejectionEvent),TL=bL("Promise",function(){var s=gL(Ua),e=s!==String(Ua);if(!e&&Ul===66||SL&&!(pS.catch&&pS.finally))return!0;if(!Ul||Ul<51||!/native code/.test(s)){var t=new Ua(function(a){a(1)}),i=function(a){a(function(){},function(){})},r=t.constructor={};if(r[yL]=i,ql=t.then(function(){})instanceof i,!ql)return!0}return!e&&(dS==="BROWSER"||dS==="DENO")&&!hS});fS.exports={CONSTRUCTOR:TL,REJECTION_EVENT:hS,SUBCLASSING:ql}});var Mr=b((aH,bS)=>{"use strict";var mS=St(),IL=TypeError,EL=function(s){var e,t;this.promise=new s(function(i,r){if(e!==void 0||t!==void 0)throw new IL("Bad Promise constructor");e=i,t=r}),this.resolve=mS(e),this.reject=mS(t)};bS.exports.f=function(s){return new EL(s)}});var VS=b(()=>{"use strict";var wL=me(),xL=ut(),mo=oo(),ii=le(),PL=Mi(),Dr=Qe(),gS=Pr(),vS=hl(),kL=La(),AL=vv(),RL=St(),fo=de(),ML=_e(),$L=yv(),LL=wl(),ES=Dl().set,zl=nS(),CL=uS(),DL=lo(),BL=Bl(),wS=el(),bo=Ni(),Gl=Rr(),xS=Mr(),go="Promise",PS=Gl.CONSTRUCTOR,VL=Gl.REJECTION_EVENT,_L=Gl.SUBCLASSING,Hl=wS.getterFor(go),OL=wS.set,$r=bo&&bo.prototype,Fi=bo,po=$r,kS=ii.TypeError,jl=ii.document,Yl=ii.process,Wl=xS.f,NL=Wl,FL=!!(jl&&jl.createEvent&&ii.dispatchEvent),AS="unhandledrejection",UL="rejectionhandled",SS=0,RS=1,qL=2,Kl=1,MS=2,ho,yS,$S,TS,LS=function(s){var e;return ML(s)&&fo(e=s.then)?e:!1},CS=function(s,e){var t=e.value,i=e.state===RS,r=i?s.ok:s.fail,a=s.resolve,n=s.reject,o=s.domain,u,c,d;try{r?(i||(e.rejection===MS&&jL(e),e.rejection=Kl),r===!0?u=t:(o&&o.enter(),u=r(t),o&&(o.exit(),d=!0)),u===s.promise?n(new kS("Promise-chain cycle")):(c=LS(u))?Dr(c,u,a,n):a(u)):n(t)}catch(l){o&&!d&&o.exit(),n(l)}},DS=function(s,e){s.notified||(s.notified=!0,zl(function(){for(var t=s.reactions,i;i=t.get();)CS(i,s);s.notified=!1,e&&!s.rejection&&HL(s)}))},BS=function(s,e,t){var i,r;FL?(i=jl.createEvent("Event"),i.promise=e,i.reason=t,i.initEvent(s,!1,!0),ii.dispatchEvent(i)):i={promise:e,reason:t},!VL&&(r=ii["on"+s])?r(i):s===AS&&CL("Unhandled promise rejection",t)},HL=function(s){Dr(ES,ii,function(){var e=s.facade,t=s.value,i=IS(s),r;if(i&&(r=DL(function(){mo?Yl.emit("unhandledRejection",t,e):BS(AS,e,t)}),s.rejection=mo||IS(s)?MS:Kl,r.error))throw r.value})},IS=function(s){return s.rejection!==Kl&&!s.parent},jL=function(s){Dr(ES,ii,function(){var e=s.facade;mo?Yl.emit("rejectionHandled",e):BS(UL,e,s.value)})},Lr=function(s,e,t){return function(i){s(e,i,t)}},Cr=function(s,e,t){s.done||(s.done=!0,t&&(s=t),s.value=e,s.state=qL,DS(s,!0))},Ql=function(s,e,t){if(!s.done){s.done=!0,t&&(s=t);try{if(s.facade===e)throw new kS("Promise can't be resolved itself");var i=LS(e);i?zl(function(){var r={done:!1};try{Dr(i,e,Lr(Ql,r,s),Lr(Cr,r,s))}catch(a){Cr(r,a,s)}}):(s.value=e,s.state=RS,DS(s,!1))}catch(r){Cr({done:!1},r,s)}}};if(PS&&(Fi=function(e){$L(this,po),RL(e),Dr(ho,this);var t=Hl(this);try{e(Lr(Ql,t),Lr(Cr,t))}catch(i){Cr(t,i)}},po=Fi.prototype,ho=function(e){OL(this,{type:go,done:!1,notified:!1,parent:!1,reactions:new BL,rejection:!1,state:SS,value:null})},ho.prototype=gS(po,"then",function(e,t){var i=Hl(this),r=Wl(LL(this,Fi));return i.parent=!0,r.ok=fo(e)?e:!0,r.fail=fo(t)&&t,r.domain=mo?Yl.domain:void 0,i.state===SS?i.reactions.add(r):zl(function(){CS(r,i)}),r.promise}),yS=function(){var s=new ho,e=Hl(s);this.promise=s,this.resolve=Lr(Ql,e),this.reject=Lr(Cr,e)},xS.f=Wl=function(s){return s===Fi||s===$S?new yS(s):NL(s)},!xL&&fo(bo)&&$r!==Object.prototype)){TS=$r.then,_L||gS($r,"then",function(e,t){var i=this;return new Fi(function(r,a){Dr(TS,i,r,a)}).then(e,t)},{unsafe:!0});try{delete $r.constructor}catch(s){}vS&&vS($r,po)}wL({global:!0,constructor:!0,wrap:!0,forced:PS},{Promise:Fi});$S=PL.Promise;kL(Fi,go,!1,!0);AL(go)});var US=b((oH,FS)=>{"use strict";var WL=Ae(),OS=WL("iterator"),NS=!1;try{_S=0,Xl={next:function(){return{done:!!_S++}},return:function(){NS=!0}},Xl[OS]=function(){return this},Array.from(Xl,function(){throw 2})}catch(s){}var _S,Xl;FS.exports=function(s,e){try{if(!e&&!NS)return!1}catch(r){return!1}var t=!1;try{var i={};i[OS]=function(){return{next:function(){return{done:t=!0}}}},s(i)}catch(r){}return t}});var Jl=b((uH,qS)=>{"use strict";var QL=Ni(),zL=US(),GL=Rr().CONSTRUCTOR;qS.exports=GL||!zL(function(s){QL.all(s).then(void 0,function(){})})});var HS=b(()=>{"use strict";var YL=me(),KL=Qe(),XL=St(),JL=Mr(),ZL=lo(),eC=ao(),tC=Jl();YL({target:"Promise",stat:!0,forced:tC},{all:function(e){var t=this,i=JL.f(t),r=i.resolve,a=i.reject,n=ZL(function(){var o=XL(t.resolve),u=[],c=0,d=1;eC(e,function(l){var p=c++,h=!1;d++,KL(o,t,l).then(function(f){h||(h=!0,u[p]=f,--d||r(u))},a)}),--d||r(u)});return n.error&&a(n.value),i.promise}})});var WS=b(()=>{"use strict";var iC=me(),rC=ut(),aC=Rr().CONSTRUCTOR,ed=Ni(),sC=$t(),nC=de(),oC=Pr(),jS=ed&&ed.prototype;iC({target:"Promise",proto:!0,forced:aC,real:!0},{catch:function(s){return this.then(void 0,s)}});!rC&&nC(ed)&&(Zl=sC("Promise").prototype.catch,jS.catch!==Zl&&oC(jS,"catch",Zl,{unsafe:!0}));var Zl});var QS=b(()=>{"use strict";var uC=me(),cC=Qe(),lC=St(),dC=Mr(),pC=lo(),hC=ao(),fC=Jl();uC({target:"Promise",stat:!0,forced:fC},{race:function(e){var t=this,i=dC.f(t),r=i.reject,a=pC(function(){var n=lC(t.resolve);hC(e,function(o){cC(n,t,o).then(i.resolve,r)})});return a.error&&r(a.value),i.promise}})});var zS=b(()=>{"use strict";var mC=me(),bC=Mr(),gC=Rr().CONSTRUCTOR;mC({target:"Promise",stat:!0,forced:gC},{reject:function(e){var t=bC.f(this),i=t.reject;return i(e),t.promise}})});var td=b((gH,GS)=>{"use strict";var vC=yt(),SC=_e(),yC=Mr();GS.exports=function(s,e){if(vC(s),SC(e)&&e.constructor===s)return e;var t=yC.f(s),i=t.resolve;return i(e),t.promise}});var XS=b(()=>{"use strict";var TC=me(),IC=$t(),YS=ut(),EC=Ni(),KS=Rr().CONSTRUCTOR,wC=td(),xC=IC("Promise"),PC=YS&&!KS;TC({target:"Promise",stat:!0,forced:YS||KS},{resolve:function(e){return wC(PC&&this===xC?EC:this,e)}})});var JS=b(()=>{"use strict";VS();HS();WS();QS();zS();XS()});var iy=b(()=>{"use strict";var kC=me(),AC=ut(),vo=Ni(),RC=Se(),ey=$t(),ty=de(),MC=wl(),ZS=td(),$C=Pr(),rd=vo&&vo.prototype,LC=!!vo&&RC(function(){rd.finally.call({then:function(){}},function(){})});kC({target:"Promise",proto:!0,real:!0,forced:LC},{finally:function(s){var e=MC(this,ey("Promise")),t=ty(s);return this.then(t?function(i){return ZS(e,s()).then(function(){return i})}:s,t?function(i){return ZS(e,s()).then(function(){throw i})}:s)}});!AC&&ty(vo)&&(id=ey("Promise").prototype.finally,rd.finally!==id&&$C(rd,"finally",id,{unsafe:!0}));var id});var ay=b((wH,ry)=>{"use strict";dv();JS();iy();var CC=Zt();ry.exports=CC("Promise","finally")});var ny=b((xH,sy)=>{"use strict";var DC=ay();sy.exports=DC});var ad=b((PH,oy)=>{"use strict";var BC=ny();oy.exports=BC});var Py=b(()=>{"use strict";var lD=me(),dD=br(),pD=Ir(),hD=wa(),fD=xa();lD({target:"Array",proto:!0},{at:function(e){var t=dD(this),i=pD(t),r=hD(e),a=r>=0?r:i+r;return a<0||a>=i?void 0:t[a]}});fD("at")});var Ay=b((kj,ky)=>{"use strict";Py();var mD=Zt();ky.exports=mD("Array","at")});var My=b((Aj,Ry)=>{"use strict";var bD=Ay();Ry.exports=bD});var et=b((Rj,$y)=>{"use strict";var gD=My();$y.exports=gD});var _d=b((KQ,xT)=>{"use strict";var T0=Ai();xT.exports=Array.isArray||function(e){return T0(e)==="Array"}});var kT=b((XQ,PT)=>{"use strict";var I0=TypeError,E0=9007199254740991;PT.exports=function(s){if(s>E0)throw I0("Maximum allowed index exceeded");return s}});var MT=b((JQ,RT)=>{"use strict";var w0=_d(),x0=Ir(),P0=kT(),k0=vr(),AT=function(s,e,t,i,r,a,n,o){for(var u=r,c=0,d=n?k0(n,o):!1,l,p;c<i;)c in t&&(l=d?d(t[c],c,e):t[c],a>0&&w0(l)?(p=x0(l),u=AT(s,e,l,p,u,a-1)-1):(P0(u+1),s[u]=l),u++),c++;return u};RT.exports=AT});var DT=b((ZQ,CT)=>{"use strict";var $T=_d(),A0=El(),R0=_e(),M0=Ae(),$0=M0("species"),LT=Array;CT.exports=function(s){var e;return $T(s)&&(e=s.constructor,A0(e)&&(e===LT||$T(e.prototype))?e=void 0:R0(e)&&(e=e[$0],e===null&&(e=void 0))),e===void 0?LT:e}});var VT=b((ez,BT)=>{"use strict";var L0=DT();BT.exports=function(s,e){return new(L0(s))(e===0?0:e)}});var _T=b(()=>{"use strict";var C0=me(),D0=MT(),B0=St(),V0=br(),_0=Ir(),O0=VT();C0({target:"Array",proto:!0},{flatMap:function(e){var t=V0(this),i=_0(t),r;return B0(e),r=O0(t,0),r.length=D0(r,t,t,i,0,1,e,arguments.length>1?arguments[1]:void 0),r}})});var OT=b(()=>{"use strict";var N0=xa();N0("flatMap")});var FT=b((sz,NT)=>{"use strict";_T();OT();var F0=Zt();NT.exports=F0("Array","flatMap")});var qT=b((nz,UT)=>{"use strict";var U0=FT();UT.exports=U0});var as=b((oz,HT)=>{"use strict";var q0=qT();HT.exports=q0});var ns=b((wz,zT)=>{"use strict";var j0=$a(),W0=String;zT.exports=function(s){if(j0(s)==="Symbol")throw new TypeError("Cannot convert a Symbol value to a string");return W0(s)}});var Nd=b((xz,GT)=>{"use strict";GT.exports=`
7
- \v\f\r                 \u2028\u2029\uFEFF`});var XT=b((Pz,KT)=>{"use strict";var Q0=ye(),z0=Jt(),G0=ns(),Ud=Nd(),YT=Q0("".replace),Y0=RegExp("^["+Ud+"]+"),K0=RegExp("(^|[^"+Ud+"])["+Ud+"]+$"),Fd=function(s){return function(e){var t=G0(z0(e));return s&1&&(t=YT(t,Y0,"")),s&2&&(t=YT(t,K0,"$1")),t}};KT.exports={start:Fd(1),end:Fd(2),trim:Fd(3)}});var tI=b((kz,eI)=>{"use strict";var X0=rl().PROPER,J0=Se(),JT=Nd(),ZT="​…᠎";eI.exports=function(s){return J0(function(){return!!JT[s]()||ZT[s]()!==ZT||X0&&JT[s].name!==s})}});var qd=b((Az,iI)=>{"use strict";var Z0=XT().start,eB=tI();iI.exports=eB("trimStart")?function(){return Z0(this)}:"".trimStart});var aI=b(()=>{"use strict";var tB=me(),rI=qd();tB({target:"String",proto:!0,name:"trimStart",forced:"".trimLeft!==rI},{trimLeft:rI})});var nI=b(()=>{"use strict";aI();var iB=me(),sI=qd();iB({target:"String",proto:!0,name:"trimStart",forced:"".trimStart!==sI},{trimStart:sI})});var uI=b((Cz,oI)=>{"use strict";nI();var rB=Zt();oI.exports=rB("String","trimLeft")});var lI=b((Dz,cI)=>{"use strict";var aB=uI();cI.exports=aB});var pI=b((Bz,dI)=>{"use strict";var sB=lI();dI.exports=sB});var bI=b(()=>{"use strict"});var gI=b(()=>{"use strict"});var SI=b((gG,vI)=>{"use strict";var uB=_e(),cB=Ai(),lB=Ae(),dB=lB("match");vI.exports=function(s){var e;return uB(s)&&((e=s[dB])!==void 0?!!e:cB(s)==="RegExp")}});var II=b((vG,TI)=>{"use strict";var pB=le(),hB=Se(),yI=pB.RegExp,fB=!hB(function(){var s=!0;try{yI(".","d")}catch(u){s=!1}var e={},t="",i=s?"dgimsy":"gimsy",r=function(u,c){Object.defineProperty(e,u,{get:function(){return t+=c,!0}})},a={dotAll:"s",global:"g",ignoreCase:"i",multiline:"m",sticky:"y"};s&&(a.hasIndices="d");for(var n in a)r(n,a[n]);var o=Object.getOwnPropertyDescriptor(yI.prototype,"flags").get.call(e);return o!==i||t!==i});TI.exports={correct:fB}});var wI=b((SG,EI)=>{"use strict";var mB=yt();EI.exports=function(){var s=mB(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 kI=b((yG,PI)=>{"use strict";var bB=Qe(),gB=ct(),vB=va(),xI=II(),SB=wI(),yB=RegExp.prototype;PI.exports=xI.correct?function(s){return s.flags}:function(s){return!xI.correct&&vB(yB,s)&&!gB(s,"flags")?bB(SB,s):s.flags}});var RI=b((TG,AI)=>{"use strict";var Qd=ye(),TB=br(),IB=Math.floor,jd=Qd("".charAt),EB=Qd("".replace),Wd=Qd("".slice),wB=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,xB=/\$([$&'`]|\d{1,2})/g;AI.exports=function(s,e,t,i,r,a){var n=t+s.length,o=i.length,u=xB;return r!==void 0&&(r=TB(r),u=wB),EB(a,u,function(c,d){var l;switch(jd(d,0)){case"$":return"$";case"&":return s;case"`":return Wd(e,0,t);case"'":return Wd(e,n);case"<":l=r[Wd(d,1,-1)];break;default:var p=+d;if(p===0)return c;if(p>o){var h=IB(p/10);return h===0?c:h<=o?i[h-1]===void 0?jd(d,1):i[h-1]+jd(d,1):c}l=i[p-1]}return l===void 0?"":l})}});var LI=b(()=>{"use strict";var PB=me(),kB=Qe(),Gd=ye(),MI=Jt(),AB=de(),RB=_e(),MB=SI(),Qr=ns(),$B=ya(),LB=kI(),CB=RI(),DB=Ae(),BB=ut(),VB=DB("replace"),_B=TypeError,zd=Gd("".indexOf),OB=Gd("".replace),$I=Gd("".slice),NB=Math.max;PB({target:"String",proto:!0},{replaceAll:function(e,t){var i=MI(this),r,a,n,o,u,c,d,l,p,h,f=0,m="";if(RB(e)){if(r=MB(e),r&&(a=Qr(MI(LB(e))),!~zd(a,"g")))throw new _B("`.replaceAll` does not allow non-global regexes");if(n=$B(e,VB),n)return kB(n,e,i,t);if(BB&&r)return OB(Qr(i),e,t)}for(o=Qr(i),u=Qr(e),c=AB(t),c||(t=Qr(t)),d=u.length,l=NB(1,d),p=zd(o,u);p!==-1;)h=c?Qr(t(u,p,o)):CB(u,o,p,[],void 0,t),m+=$I(o,f,p)+h,f=p+d,p=p+l>o.length?-1:zd(o,u,p+l);return f<o.length&&(m+=$I(o,f)),m}})});var DI=b((wG,CI)=>{"use strict";bI();gI();LI();var FB=Zt();CI.exports=FB("String","replaceAll")});var VI=b((xG,BI)=>{"use strict";var UB=DI();BI.exports=UB});var OI=b((PG,_I)=>{"use strict";var qB=VI();_I.exports=qB});var FI=b((kG,NI)=>{"use strict";var HB=wa(),jB=ns(),WB=Jt(),QB=RangeError;NI.exports=function(e){var t=jB(WB(this)),i="",r=HB(e);if(r<0||r===1/0)throw new QB("Wrong number of repetitions");for(;r>0;(r>>>=1)&&(t+=t))r&1&&(i+=t);return i}});var WI=b((AG,jI)=>{"use strict";var HI=ye(),zB=$c(),UI=ns(),GB=FI(),YB=Jt(),KB=HI(GB),XB=HI("".slice),JB=Math.ceil,qI=function(s){return function(e,t,i){var r=UI(YB(e)),a=zB(t),n=r.length,o=i===void 0?" ":UI(i),u,c;return a<=n||o===""?r:(u=a-n,c=KB(o,JB(u/o.length)),c.length>u&&(c=XB(c,0,u)),s?r+c:c+r)}};jI.exports={start:qI(!1),end:qI(!0)}});var zI=b((RG,QI)=>{"use strict";var ZB=$i();QI.exports=/Version\/10(?:\.\d+){1,2}(?: [\w./]+)?(?: Mobile\/\w+)? Safari\//.test(ZB)});var GI=b(()=>{"use strict";var eV=me(),tV=WI().start,iV=zI();eV({target:"String",proto:!0,forced:iV},{padStart:function(e){return tV(this,e,arguments.length>1?arguments[1]:void 0)}})});var KI=b((LG,YI)=>{"use strict";GI();var rV=Zt();YI.exports=rV("String","padStart")});var JI=b((CG,XI)=>{"use strict";var aV=KI();XI.exports=aV});var eE=b((DG,ZI)=>{"use strict";var sV=JI();ZI.exports=sV});var qh="2.0.155";var $e=(r=>(r.STOPPED="stopped",r.READY="ready",r.PLAYING="playing",r.PAUSED="paused",r))($e||{}),Mt=(I=>(I.MPEG="MPEG",I.DASH="DASH",I.DASH_SEP="DASH_SEP",I.DASH_SEP_VK="DASH_SEP",I.DASH_WEBM="DASH_WEBM",I.DASH_WEBM_AV1="DASH_WEBM_AV1",I.DASH_STREAMS="DASH_STREAMS",I.DASH_WEBM_VK="DASH_WEBM",I.DASH_ONDEMAND="DASH_ONDEMAND",I.DASH_ONDEMAND_VK="DASH_ONDEMAND",I.DASH_LIVE="DASH_LIVE",I.DASH_LIVE_CMAF="DASH_LIVE_CMAF",I.DASH_LIVE_WEBM="DASH_LIVE_WEBM",I.HLS="HLS",I.HLS_ONDEMAND="HLS_ONDEMAND",I.HLS_JS="HLS",I.HLS_FMP4="HLS_FMP4",I.HLS_LIVE="HLS_LIVE",I.HLS_LIVE_CMAF="HLS_LIVE_CMAF",I.WEB_RTC_LIVE="WEB_RTC_LIVE",I))(Mt||{}),Ju=(r=>(r.AV1="av1",r.VP9="vp9",r.AVC1="avc1",r.HEV1="hev1",r))(Ju||{});var ha=(r=>(r.NOT_AVAILABLE="NOT_AVAILABLE",r.AVAILABLE="AVAILABLE",r.CONNECTING="CONNECTING",r.CONNECTED="CONNECTED",r))(ha||{}),Zu=(i=>(i.HTTP1="http1",i.HTTP2="http2",i.QUIC="quic",i))(Zu||{});var ec=(n=>(n.NONE="none",n.INLINE="inline",n.FULLSCREEN="fullscreen",n.SECOND_SCREEN="second_screen",n.PIP="pip",n.INVISIBLE="invisible",n))(ec||{}),Rn=(i=>(i.TRAFFIC_SAVING="traffic_saving",i.HIGH_QUALITY="high_quality",i.UNKNOWN="unknown",i))(Rn||{});var eh=q(Ci(),1),ax=q(Oe(),1);import{assertNever as lb,assertNonNullable as fA,isNonNullable as _n,ValueSubject as _c,Subject as mA,Subscription as bA,merge as gA,observableFrom as vA,fromEvent as nb,map as ob,tap as ub,filterChanged as SA,isNullable as Oc,ErrorCategory as cb}from"@vkontakte/videoplayer-shared/es2015";var sb=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 On=class{constructor(e){this.connection$=new _c(void 0);this.castState$=new _c("NOT_AVAILABLE");this.errorEvent$=new mA;this.realCastState$=new _c("NOT_AVAILABLE");this.subscription=new bA;this.isDestroyed=!1;var a;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=_n((a=window.chrome)==null?void 0:a.cast),r=!!window.__onGCastApiAvailable;i?this.initializeCastApi():(window.__onGCastApiAvailable=n=>{delete window.__onGCastApiAvailable,n&&!this.isDestroyed&&this.initializeCastApi()},r||sb("https://www.gstatic.com/cv/js/sender/v1/cast_sender.js?loadCastFramework=1").catch(()=>this.errorEvent$.next({id:"ChromecastLoading",category:cb.NETWORK,message:"Script loading failed!"})))}connect(){var e;(e=cast.framework.CastContext.getInstance())==null||e.requestSession()}disconnect(){var e,t;(t=(e=cast.framework.CastContext.getInstance())==null?void 0:e.getCurrentSession())==null||t.endSession(!0)}stopMedia(){return new Promise((e,t)=>{var i,r,a;(a=(r=(i=cast.framework.CastContext.getInstance())==null?void 0:i.getCurrentSession())==null?void 0:r.getMediaSession())==null||a.stop(new chrome.cast.media.StopRequest,e,t)})}toggleConnection(){_n(this.connection$.getValue())?this.disconnect():this.connect()}setVolume(e){let t=this.connection$.getValue();Oc(t)||(t.remotePlayer.volumeLevel=e,t.remotePlayerController.setVolumeLevel())}setMuted(e){let t=this.connection$.getValue();Oc(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(nb(i,cast.framework.CastContextEventType.SESSION_STATE_CHANGED).subscribe(r=>{var a,n,o;switch(r.sessionState){case cast.framework.SessionState.SESSION_STARTED:case cast.framework.SessionState.SESSION_STARTING:case cast.framework.SessionState.SESSION_RESUMED:this.contentId=(o=(n=(a=i.getCurrentSession())==null?void 0:a.getMediaSession())==null?void 0:n.media)==null?void 0:o.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 lb(r.sessionState)}})).add(gA(nb(i,cast.framework.CastContextEventType.CAST_STATE_CHANGED).pipe(ub(r=>{this.log({message:`[cast.framework.RemotePlayerEventType.CAST_STATE_CHANGED]: ${JSON.stringify(r)}`})}),ob(r=>r.castState)),vA([i.getCastState()])).pipe(SA(),ob(yA),ub(r=>{this.log({message:`realCastState$: ${r}`})})).subscribe(this.realCastState$)).add(this.realCastState$.subscribe(r=>{var o,u;let a=r==="CONNECTED",n=_n(this.connection$.getValue());if(a&&!n){let c=i.getCurrentSession();fA(c);let d=c.getCastDevice(),l=(u=(o=c.getMediaSession())==null?void 0:o.media)==null?void 0:u.contentId;(Oc(l)||l===this.contentId)&&(this.log({message:"connection created"}),this.connection$.next({remotePlayer:e,remotePlayerController:t,session:c,castDevice:d}))}else!a&&n&&(this.log({message:"connection destroyed"}),this.connection$.next(void 0));this.castState$.next(r==="CONNECTED"?_n(this.connection$.getValue())?"CONNECTED":"AVAILABLE":r)}))}initializeCastApi(){var r;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(a){return}try{e.setOptions({receiverApplicationId:(r=this.params.receiverApplicationId)!=null?r:t,autoJoinPolicy:i}),this.initListeners()}catch(a){this.errorEvent$.next({id:"ChromecastInitializer",category:cb.EXTERNAL_API,message:"[initializeCastApi] failed",thrown:a})}}},yA=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 lb(s)}};import{assertNonNullable as jc,combine as Wc,debounce as Qc,ErrorCategory as NA,filter as wr,filterChanged as xb,isNonNullable as zc,isNullable as Pb,map as FA,Subscription as UA,ValueSubject as Gc}from"@vkontakte/videoplayer-shared/es2015";import{assertNever as TA,assertNonNullable as Di,ErrorCategory as IA,getHighestQuality as EA,isNonNullable as pb}from"@vkontakte/videoplayer-shared/es2015";import{assertNever as db}from"@vkontakte/videoplayer-shared/es2015";var pe=(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:db(t)}return s},ei=(s,e)=>{var t;switch(e){case 0:return NaN;case 1:{let i=new URL(s);return Number(i.searchParams.get("playback_shift"))}case 2:{let i=new URL(s);return Number((t=i.searchParams.get("offset_p"))!=null?t:0)}default:db(e)}};var Fn=s=>{var l;let{source:e,format:t,meta:i,output:r}=s,a,n,o;switch(t){case"MPEG":{let p=e[t];Di(p);let h=EA(Object.keys(p));Di(h);let f=p[h];Di(f),a=f,n="video/mp4",o=Nn();break}case"HLS":case"HLS_FMP4":case"HLS_ONDEMAND":{let p=e[t];Di(p),a=p.url,n="application/x-mpegurl",o=Nn();break}case"DASH_SEP":case"DASH_ONDEMAND":case"DASH_WEBM":case"DASH_WEBM_AV1":case"DASH_STREAMS":{let p=e[t];Di(p),a=p.url,n="application/dash+xml",o=Nn();break}case"DASH_LIVE_CMAF":{let p=e[t];Di(p),a=p.url,n="application/dash+xml",o=hb();break}case"HLS_LIVE":case"HLS_LIVE_CMAF":{let p=e[t];Di(p),a=pe(p.url),n="application/x-mpegurl",o=hb();break}case"DASH_LIVE":case"WEB_RTC_LIVE":{let p="Unsupported format for Chromecast",h=new Error(p);throw r.error$.next({id:"ChromecastProvider.createMediaInfo()",category:IA.VIDEO_PIPELINE,message:p,thrown:h}),h}case"DASH":case"DASH_LIVE_WEBM":throw new Error(`${t} is no longer supported`);default:return TA(t)}let u=wA((l=i.videoId)!=null?l:a,n);u.contentUrl=a,u.streamType=o,u.metadata=xA();let{title:c,subtitle:d}=i;return pb(c)&&(u.metadata.title=c),pb(d)&&(u.metadata.subtitle=d),u};function Nn(){var s,e,t,i;return(i=(t=(e=(s=chrome.cast)==null?void 0:s.media)==null?void 0:e.StreamType)==null?void 0:t.BUFFERED)!=null?i:"BUFFERED"}function hb(){var s,e,t,i;return(i=(t=(e=(s=chrome.cast)==null?void 0:s.media)==null?void 0:e.StreamType)==null?void 0:t.LIVE)!=null?i:"LIVE"}function wA(s,e){var t,i;return(i=(t=chrome.cast)==null?void 0:t.media)!=null&&i.MediaInfo?new chrome.cast.media.MediaInfo(s,e):{contentId:s,contentType:e,metadata:{title:"",subtitle:""},streamType:Nn()}}function xA(){var s,e;return(e=(s=chrome.cast)==null?void 0:s.media)!=null&&e.GenericMediaMetadata?new chrome.cast.media.GenericMediaMetadata:{images:[],metadataType:0,releaseDate:"",subtitle:"",title:"",releaseYear:1970,type:0}}var A=(s,e,t=!1)=>{let i=s.getTransition();(t||!i||i.to===e)&&s.setState(e)};var Un=class{constructor(e){this.interval=0;this.params=e}start(e=0){clearInterval(this.interval),this.startVideoPosition=e,this.startTs=Date.now(),this.interval=window.setInterval(()=>{let t=(Date.now()-this.startTs)/1e3,i=this.startVideoPosition+t;this.params.output.position$.next(i)},1e3)}pause(){clearInterval(this.interval)}destroy(){clearInterval(this.interval)}};import{assertNever as wb}from"@vkontakte/videoplayer-shared/es2015";import{isBrowserWindow as VA,ValueSubject as _A}from"@vkontakte/videoplayer-shared/es2015";var fb=q(Oe(),1);import{getWindow as PA}from"@vkontakte/videoplayer-shared/es2015";var qn=class{constructor(){this._isMiuiBrowser=!1}get current(){return this._current}get isChrome(){return this.current==="Chrome"}get isChromiumBased(){return(0,fb.default)(["Chrome","Chromium","Opera","Yandex","Edge","SamsungBrowser"],this.current)}get isFirefox(){return this.current==="Firefox"}get isSafari(){return this.current==="Safari"}get isOpera(){return this.current==="Opera"}get isEdge(){return this.current==="Edge"}get isYandex(){return this.current==="Yandex"}get isSamsungBrowser(){return this.current==="SamsungBrowser"}get currentVersion(){return this._current_version}get chromeVersion(){return this._chromeVersion}get firefoxVersion(){return this._firefoxVersion}get safariVersion(){return this._safariVersion}get operaVersion(){return this._operaVersion}get edgeVersion(){return this._edgeVersion}get yandexVersion(){return this._yandexVersion}get isMiuiBrowser(){return this._isMiuiBrowser}detect(){let{userAgent:e}=navigator;try{let t=/yabrowser/i.test(e)?"Yandex":void 0,i=/samsungbrowser/i.test(e)?"SamsungBrowser":void 0,r=/chrome|crios/i.test(e)?"Chrome":void 0,a=/chromium/i.test(e)?"Chromium":void 0,n=/firefox|fxios/i.test(e)?"Firefox":void 0,o=/webkit|safari|khtml/i.test(e)?"Safari":void 0,u=/opr\//i.test(e)?"Opera":void 0,c=/edg/i.test(e)?"Edge":void 0;this._isMiuiBrowser=/(XiaoMi)|(MiuiBrowser)/i.test(e),this._current=t||i||n||u||c||r||a||o||"Rest"}catch(t){console.error(t)}this.isChrome&&this.detectChromeVersion(),this.isFirefox&&this.detectFirefoxVersion(),this.isSafari&&this.detectSafariVersion(),this.isOpera&&this.detectOperaVersion(),this.isEdge&&this.detectEdgeVersion(),this.isYandex&&this.detectYandexVersion()}detectVersion(e){try{let{userAgent:t}=PA().navigator,i=t.match(e);if(!i)return;let r=i[1],a=parseInt(r,10);if(!isNaN(a))return this._current_version=a,a}catch(t){console.error(t)}}detectChromeVersion(){this._chromeVersion=this.detectVersion(/Chrome\/(\d+\.\d+)/)}detectFirefoxVersion(){this._firefoxVersion=this.detectVersion(/Firefox\/(\d+\.\d+)/)}detectSafariVersion(){this._safariVersion=this.detectVersion(/Version\/(\d+)/)}detectOperaVersion(){this._operaVersion=this.detectVersion(/OPR\/(\d+\.\d+)/)}detectEdgeVersion(){this._edgeVersion=this.detectVersion(/Edg\/(\d+\.\d+)/)}detectYandexVersion(){this._yandexVersion=this.detectVersion(/YaBrowser\/(\d+\.\d+\.\d+)/)}};var mb=q(Oe(),1);import{getWindow as Nc,isBrowserWindow as Fc}from"@vkontakte/videoplayer-shared/es2015";var Bi=()=>{var s,e;return/Mobile|mini|Fennec|Android|iP(ad|od|hone)/.test((s=navigator.appVersion)!=null?s:navigator.userAgent)||((e=navigator==null?void 0:navigator.userAgentData)==null?void 0:e.mobile)};var Hn=class{constructor(e){this._highEntropyValues={};this._os={name:"Unknown",version:"Unknown",full:"Unknown"};this._details={vendor:"Unknown",model:"Unknown"};this._displayChecker=e}get current(){return this._current}get os(){return this._os}get details(){return this._details}get isIOS(){let e=["iPhone","iPad","iPod"];return this._highEntropyValues.platform==="iOS"||this.os.name.toLowerCase().includes("ios")||(0,mb.default)(e,this.current)}get isMac(){return this._highEntropyValues.platform==="macOS"||this.os.name.toLowerCase().includes("mac")||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.os.name.toLowerCase().includes("android")||this.current==="Android"}get isWindows(){return this.os.name.toLowerCase().includes("windows")}get isLinux(){return this.os.name.toLowerCase().includes("linux")&&!this.isAndroid}get isMobile(){return this._highEntropyValues.mobile||this._isMobile}get iOSVersion(){return this._iosVersion}detect(){let e=Nc();if(!Fc(e))return;let{userAgent:t}=e.navigator;try{this._isMobile=Bi()}catch(i){console.error("DeviceChecker: calling isMobile error - ",i)}this.detectDevice(t),this.detectOS(t),this.detectDeviceDetails(t),this.detectHighEntropyValues(),this.isIOS&&this.detectIOSVersion()}detectHighEntropyValues(){return y(this,null,function*(){let e=Nc();if(!Fc(e))return;let{userAgentData:t}=e.navigator;if(t!=null&&t.getHighEntropyValues){let i=yield t.getHighEntropyValues(["architecture","bitness","brands","mobile","platform","formFactor","model","platformVersion","wow64"]);this._highEntropyValues=i,i.platform&&(this._os.name=this.normalizeOSName(i.platform),i.platformVersion&&(this._os.version=this.normalizeOSVersion(i.platformVersion),this._os.full=`${this._os.name} ${this._os.version}`)),i.model&&(this._details.model=i.model)}})}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("DeviceChecker: device detection error - ",t)}}detectOS(e){try{let t=[[/(windows nt) (6\.[23]); arm/i,["Windows RT"]],[/(windows nt) (6\.3); arm/i,["Windows RT 8.1"]],[/(windows (?:phone|mobile|iot))(?: os)?[/ ]?([\d.]+)/i,["Windows Mobile",2]],[/(windows)[/ ](xp|vista|7|8(\.1)?|10|11|2000|me)/i,[1,1]],[/windows nt ?([\d.]+)/i,["Windows",1]],[/(windows)[/ ](95|98|me|2000|xp|vista|7|8|8\.1|10|11)/i,[1,2]],[/(iphone os|cpu iphone os) ([\d_.]+)/i,["iOS",2]],[/(ipad os|cpu os) ([\d_.]+)/i,["iPadOS",2]],[/(ipod os|cpu ipod os) ([\d_.]+)/i,["iOS",2]],[/(?:ios|os) ([\d_.]+) like mac os x/i,["iOS",1]],[/cfnetwork\/.+darwin/i,["iOS"]],[/(mac os x) ?([\d_.]+)/i,["macOS",2]],[/(macintosh|mac os)/i,["macOS"]],[/(android) ([\d.]+)/i,[1,2]],[/(harmonyos)[/ ]?([\d.]*)/i,["HarmonyOS",2]],[/\b(ubuntu|debian|fedora|centos|arch|linux)(?:[-/ ]([\w.]+))?/i,[1,2]],[/(cros)\D*([\d.]+)/i,["Chrome OS",2]],[/(freebsd|openbsd|netbsd|dragonfly)[/ ]?([\w.]*)/i,[1,2]],[/(sunos|solaris)?([\d.]*)/i,["Solaris",2]],[/(aix)?([\d.]*)/i,["AIX",2]]];for(let[i,r]of t){let a=e.match(i);if(a){let n=r.length>0,o=r.length>1,u="Unknown",c="Unknown";if(n){let d=r[0];typeof d=="number"?d<a.length&&a[d]!==void 0&&(u=a[d]):u=d}if(o){let d=r[1];typeof d=="number"?d<a.length&&a[d]!==void 0&&(c=a[d]):d!==void 0&&(c=d)}else a[2]!==void 0?c=a[2]:a[1]!==void 0&&n&&typeof r[0]=="string"&&(c=a[1]);u=this.normalizeOSName(u),c=this.normalizeOSVersion(c,u),u==="iOS"&&/ipad/i.test(e)?u="iPadOS":u==="iPadOS"&&/ip(hone|od)/i.test(e)&&(u="iOS"),this._os={name:u,version:c||"Unknown",full:c&&c!=="Unknown"?`${u} ${c}`:u};break}}}catch(t){console.error("DeviceChecker: OS detection error - ",t)}}normalizeOSName(e){if(!e)return"Unknown";let t=e.toLowerCase();return t.includes("windows")?"Windows":t.includes("mac os")||t.includes("macintosh")?"macOS":t.includes("iphone")||t.includes("ios")?"iOS":t.includes("ipados")?"iPadOS":t.includes("android")?"Android":t.includes("harmonyos")?"HarmonyOS":t.includes("linux")?"Linux":t.includes("cros")?"Chrome OS":t.includes("freebsd")?"FreeBSD":t.includes("openbsd")?"OpenBSD":t.includes("solaris")||t.includes("sunos")?"Solaris":t.includes("aix")?"AIX":e}normalizeOSVersion(e,t){if(!e)return"Unknown";if(e!=="Unknown"&&(e=e.replace(/_/g,"."),t==="Windows")){let i=parseFloat(e);if(!isNaN(i)){if(i>=11)return"11";if(i>=10)return"10";if(i===6.3)return"8.1";if(i===6.2)return"8";if(i===6.1)return"7";if(i===6)return"Vista";if(i===5.1||i===5.2)return"XP";if(i===5)return"2000";if(i===4)return"NT 4.0"}}return e}detectDeviceDetails(e){try{let t=[[/(iphone)/i,["Apple","iPhone"]],[/(ipad)/i,["Apple","iPad"]],[/(ipod)/i,["Apple","iPod"]],[/(macintosh)/i,["Apple","Macintosh"]],[/(windows[\w\-_ ]*phone)/i,["Microsoft",0]],[/(windows nt|win64|win32|wow64)/i,["Microsoft","PC"]],[/\b(sch-i[89]0\d|shw-m380s|sm-[ptxs]\w{2,4}|gt-[pn]\d{2,4}|sgh-t8[56]9|nexus 10)/i,["Samsung",1]],[/\b((?:s[cgp]h|gt|sm)-(?![lr])\w+|sc[g-]?\d+a?|galaxy nexus)/i,["Samsung",1]],[/samsung[- ]((?!sm-[lr]|browser)[-\w]+)/i,["Samsung",1]],[/sec-(sgh\w+)/i,["Samsung",1]],[/smart-tv.+(samsung)/i,["Samsung","Smart TV"]],[/(samsung).*tizen/i,["Samsung","Smart TV"]],[/(pixel (?:c|tablet|[0-9a-z ]+))/i,["Google",1]],[/(pixelbook(?: go)?)/i,["Google",1]],[/nexus [0-9]/i,["Google",0]],[/(redmi[-_ ]?(?:note|k)?[\w_ ]+)(?: bui|\))/i,["Xiaomi",1]],[/\b(mi[\w\-_ ]+)(?: bui|\))/i,["Xiaomi",1]],[/\b(poco[\w ]+)(?: bui|\))/i,["Xiaomi",1]],[/\b(hm[-_ ]?note?[\w ]*)(?: bui|\))/i,["Xiaomi",1]],[/\b(?:xiao)?mi[\w\-_ ]+pad/i,["Xiaomi",0]],[/(?:huawei|honor) ?([-\w ]+)[;)]/i,["Huawei",1]],[/\b(nexus 6p|\w{2,4}e?-[atu]?[ln][\dx][\dc][adnt]?)\b(?!.+d\/s)/i,["Huawei",1]],[/\b((?:ag[rs][2356]?k?|bah[234]?|bg[2o]|bt[kv]|cmr|cpn|db[ry]2?|jdn2|got|kob2?k?|mon|pce|scm|sht?|[tw]gr|vrd)-[ad]?[lw][0125][09]b?)/i,["Huawei",1]],[/(?:one)?(?:plus)? ?([a\d0]\d\d\d?)(?: b|\))/i,["OnePlus",1]],[/droid.+; (cph2[3-6]\d[13579]|((?:gm|hd)19|(?:ac|be|in|kb)20|(?:d[en]|eb|le|mt)21|ne22)[0-2]\d)(?: bui|\))/i,["OnePlus",1]],[/(oneplus)[-_ ]?([-\w]*)/i,["OnePlus",2]],[/\b(rmx[1-3]\d{3})(?: bui|;|\))/i,["Realme",1]],[/(realme)[-_ ]?([-\w]*)/i,["Realme",2]],[/; (\w+) bui.+ oppo/i,["OPPO",1]],[/\b(cph[12]\d{3}|p(?:af|c[al]|d\w|e[ar])[mt]\d0|x9007|a101op)\b/i,["OPPO",1]],[/\b(opd2(\d{3}a?))(?: bui|\))/i,["OPPO",1]],[/(oppo)[-_ ]?([-\w]*)/i,["OPPO",2]],[/; vivo (\w+)(?: bui|\))/i,["Vivo",1]],[/\b(v[12]\d{3}\w?[at])(?: bui|;)/i,["Vivo",1]],[/(vivo)[-_ ]?([-\w]*)/i,["Vivo",2]],[/\bmot(?:orola)?[- ]([\w\s]+)(\)| bui)/i,["Motorola",1]],[/((?:moto(?! 360)[-\w() ]+|xt\d{3,4}[cgkosw+]?[-\d]*|nexus 6)(?= bui|\)))/i,["Motorola",1]],[/\b(milestone|droid(?:[2-4x]| (?:bionic|x2|pro|razr))?:?( 4g)?)\b/i,["Motorola",0]],[/\b(mz60\d|xoom[2 ]{0,2}) build\//i,["Motorola",0]],[/droid.+; ([a-z]?\d[0-2]{2}[a-z]{2}|[c-g]\d{4}|so[-gl]\w+|xq-[a-z]{2}\d\d)(?= bui|\))/i,["Sony",1]],[/sony tablet [ps]/i,["Sony","Xperia Tablet"]],[/\b(?:sony)?sgp\w+(?: bui|\))/i,["Sony",0]],[/(sony)[-_ ]?([-\w]*)/i,["Sony",2]],[/\blg[-e;/ ]+(?!.*(?:browser|netcast|android tv|watch|webos))(\w+)/i,["LG",1]],[/\blg-?([\d\w]+) bui/i,["LG",1]],[/(lm(?:-?f100[nv]?|-[\w.]+)(?= bui|\))|nexus [45])/i,["LG",1]],[/((?=lg)?[vl]k-?\d{3}) bui/i,["LG",0]],[/(lg)[-_ ]?([-\w]*)/i,["LG",2]],[/(?:maemo|nokia).*(n900|lumia \d+|rm-\d+)/i,["Nokia",1]],[/nokia[-_ ]?(([-\w. ]*?))(?: bui|\)|;|\/)/i,["Nokia",1]],[/(nokia) (t[12][01])/i,["Nokia",2]],[/(?:\b|asus_)(transfo[prime ]{4,10} \w+|eeepc|slider \w+|nexus 7|padfone|p00[cj])/i,["ASUS",1]],[/(?:asus[-_ ])?(zenfone[\w\-_ ]*)/i,["ASUS",1]],[/(rog[\w\-_ ]*)/i,["ASUS",1]],[/(asus)[-_ ]?([-\w]*)/i,["ASUS",2]],[/lenovo[-_ ]?([-\w ]+?)(?: bui|\)|\/)/i,["Lenovo",1]],[/(ideatab[-\w ]+|602lv|d-42a|a101lv|a2109a|a3500-hv|s[56]000|pb-6505[my]|tb-?x?\d{3,4}(?:f[cu]|xu|[av])|yt\d?-[jx]?\d+[lfmx])(?: bui|;|\)|\/)/i,["Lenovo",1]],[/(thinkpad[\w\-_ ]*)/i,["Lenovo",0]],[/(kf[a-z]{2}[a-z]*)(?: bui|\))/i,["Amazon",1]],[/(alexa)webm/i,["Amazon","Echo"]],[/(fire[\w\-_ ]*)/i,["Amazon",0]],[/(amazon)[-_ ]?([-\w]*)/i,["Amazon",2]],[/(?:blackberry|\(bb10;) (\w+)/i,["BlackBerry",1]],[/\b((?:bb[a-f]|st[hv])100-\d)/i,["BlackBerry",1]],[/(playbook);[-\w),; ]+(rim)/i,["BlackBerry",1]],[/(microsoft); (lumia[\w ]+)/i,["Microsoft",2]],[/(surface duo)/i,["Microsoft","Surface Duo"]],[/(surface[\w\-_ ]*)/i,["Microsoft",0]],[/(zte)[- ]([\w ]+?)(?: bui|\/|\))/i,["ZTE",2]],[/(htc)[-;_ ]{1,2}([\w ]+(?=\)| bui)|\w+)/i,["HTC",2]],[/(alcatel|tcl)[-_ ]?([-\w]*)/i,[1,2]],[/(meizu)[-_ ]?([-\w]*)/i,["Meizu",2]],[/(tecno)[-_ ]?([-\w]*)/i,["Tecno",2]],[/(infinix)[-_ ]?([-\w]*)/i,["Infinix",2]],[/(micromax)[-_ ]?([-\w]*)/i,["Micromax",2]],[/(lava)[-_ ]?([-\w]*)/i,["Lava",2]],[/(panasonic)[-_ ]?([-\w]*)/i,["Panasonic",2]],[/(sharp)\/?([-\w]*)/i,["Sharp",2]],[/(benq)[-_ ]?([-\w]*)/i,["BenQ",2]],[/(palm)[-_ ]?([-\w]*)/i,["Palm",2]],[/(vertu)[-_ ]?([-\w]*)/i,["Vertu",2]],[/(gionee)[-_ ]?([-\w]*)/i,["Gionee",2]],[/(doogee)[-_ ]?([-\w]*)/i,["Doogee",2]],[/(ulefone)[-_ ]?([-\w]*)/i,["Ulefone",2]],[/(blackview)[-_ ]?([-\w]*)/i,["Blackview",2]],[/(cubot)[-_ ]?([-\w]*)/i,["Cubot",2]],[/(umidigi)[-_ ]?([-\w]*)/i,["UMIDIGI",2]],[/(oukitel)[-_ ]?([-\w]*)/i,["Oukitel",2]],[/(fairphone)[-_ ]?([-\w]*)/i,["Fairphone",2]],[/(cat)[-_ ]?([-\w]*)/i,["Cat",2]],[/(energy)[-_ ]?([-\w]*)/i,["Energizer",2]],[/(land rover)[-_ ]?([-\w]*)/i,["Land Rover",2]],[/(shield[\w\-_ ]*)/i,["Nvidia",0]],[/(crkey)/i,["Google","Chromecast"]],[/(roku)[\dx]*/i,["Roku",0]],[/(apple)[-_ ]?tv/i,["Apple","TV"]],[/(amazon)[-_ ]?tv/i,["Amazon","Fire TV"]],[/(google)[-_ ]?tv/i,["Google","TV"]],[/(smart[\w\-_ ]*tv)/i,[0,"Smart TV"]],[/(playstation[\w\-_ ]*)/i,["Sony",0]],[/(nintendo[\w\-_ ]*)/i,["Nintendo",0]],[/(xbox[\w\-_ ]*)/i,["Microsoft",0]],[/(googlebot)/i,["Google","Bot"]],[/(bingbot)/i,["Microsoft","Bing Bot"]],[/(yandexbot)/i,["Yandex","Bot"]],[/(slackbot)/i,["Slack","Bot"]],[/(twitterbot)/i,["Twitter","Bot"]],[/(facebookbot)/i,["Facebook","Bot"]],[/(linkedinbot)/i,["LinkedIn","Bot"]],[/(tesla)[-_ ]?([-\w]*)/i,["Tesla",2]],[/(raspberry[\w\-_ ]*)/i,["Raspberry Pi",0]]];for(let[i,r]of t){let a=e.match(i);if(a){let n=r[0],o=r[1],u=typeof n=="number"?a[n]!==void 0?this.normalizeVendorName(a[n]):"Unknown":this.normalizeVendorName(n),c="Unknown";typeof o=="number"?c=a[o]!==void 0?a[o]:"Unknown":o!==void 0?c=o:a[1]!==void 0?c=a[1]:a[0]!==void 0&&(c=a[0]),c=this.normalizeModelName(c,u),this.details.vendor=u,this.details.model=c;break}}}catch(t){console.error("DeviceChecker: device details detection error - ",t)}}normalizeVendorName(e){if(!e)return"Unknown";let t=e.toLowerCase();return{apple:"Apple",samsung:"Samsung",google:"Google",xiaomi:"Xiaomi",huawei:"Huawei",oneplus:"OnePlus",oppo:"OPPO",vivo:"Vivo",realme:"Realme",motorola:"Motorola",sony:"Sony",lg:"LG",nokia:"Nokia",asus:"ASUS",lenovo:"Lenovo",amazon:"Amazon",blackberry:"BlackBerry",microsoft:"Microsoft",zte:"ZTE",htc:"HTC",alcatel:"Alcatel",tcl:"TCL",meizu:"Meizu",tecno:"Tecno",infinix:"Infinix",micromax:"Micromax",lava:"Lava",panasonic:"Panasonic",sharp:"Sharp",benq:"BenQ",palm:"Palm",honor:"Honor",nvidia:"NVIDIA",roku:"Roku"}[t]||e.charAt(0).toUpperCase()+e.slice(1).toLowerCase()}normalizeModelName(e,t){if(!e||e==="Unknown")return e;if(e==="0")return"Unknown";let i=e.replace(/^build\//i,"").replace(/\s+bui$/i,"").replace(/\)$/,"").replace(/[;,)]/g,"").replace(/\s*\(.*?\)\s*/g,"").trim(),r=t.toLowerCase();return r.includes("samsung")?i=i.replace(/^(sm-|gt-|sgh-|sch-)/i,""):r.includes("xiaomi")?i=i.replace(/^(mi[\s\-_]*|redmi[\s\-_]*)/i,""):r.includes("oneplus")?i=i.replace(/^oneplus[\s\-_]*/i,""):r.includes("google")&&(i=i.replace(/^(pixel[\s\-_]*|nexus[\s\-_]*)/i,"")),i=i.replace(/_/g," ").replace(/-/g," ").replace(/\s+/g," ").trim(),i?(i.length>0&&/^[a-z]/.test(i)&&(i=i.charAt(0).toUpperCase()+i.slice(1)),i):"Unknown"}detectIOSVersion(){try{let e=Nc();if(!Fc(e))return;if(this._highEntropyValues.platformVersion){let i=this._highEntropyValues.platformVersion.split(".").slice(0,2).join(".");this._iosVersion=parseFloat(i);return}if(this._os.version!=="Unknown"){let i=this._os.version.split("."),r=i.length>=2?`${i[0]}.${i[1]}`:i[0];this._iosVersion=parseFloat(r);return}let t=e.navigator.userAgent.match(/OS (\d+(_\d+)?)/i);t!=null&&t[1]&&(this._iosVersion=parseFloat(t[1].replace(/_/g,".")))}catch(e){console.error("DeviceChecker: iOS version detection error - ",e)}}};import{getWindow as bb,isBrowserWindow as kA}from"@vkontakte/videoplayer-shared/es2015";var jn=class{get isTouch(){return typeof this._maxTouchPoints=="number"?this._maxTouchPoints>1:"ontouchstart"in bb()}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(){var a;let e=bb();if(!kA(e))return;let{navigator:t,screen:i}=e,{maxTouchPoints:r}=t;try{this._maxTouchPoints=r!=null?r:0,this._isHdr=!!((a=e.matchMedia("(dynamic-range: high)"))!=null&&a.matches),this._colorDepth=i.colorDepth}catch(n){console.error(n)}try{this._pixelRatio=e.devicePixelRatio||1,this._height=i.height,this._width=i.width,this._height=i.height,this._screenHeight=this._height*this._pixelRatio,this._screenWidth=this._width*this._pixelRatio}catch(n){console.error(n)}}};import{getWindow as Uc,isBrowserWindow as Sb}from"@vkontakte/videoplayer-shared/es2015";var ze=()=>window.ManagedMediaSource||window.MediaSource,Er=()=>{var s,e;return!!(window.ManagedMediaSource&&((e=(s=window.ManagedSourceBuffer)==null?void 0:s.prototype)!=null&&e.appendBuffer))},gb=()=>{var s,e;return!!(window.MediaSource&&((e=(s=window.SourceBuffer)==null?void 0:s.prototype)!=null&&e.appendBuffer))},Wn=()=>window.ManagedMediaSource?new ManagedMediaSource:new MediaSource;var vb,AA=(vb=Uc().document)==null?void 0:vb.createElement("video"),RA='video/mp4; codecs="avc1.42000a,mp4a.40.2"',MA='video/mp4; codecs="hev1.1.6.L93.B0"',yb='video/webm; codecs="vp09.00.10.08"',Tb='video/webm; codecs="av01.0.00M.08"',$A='audio/mp4; codecs="mp4a.40.2"',LA='audio/webm; codecs="opus"',Ib,CA=()=>y(null,null,function*(){let s=Uc();if(!Sb(s))return;let e={type:"media-source",video:{contentType:"video/webm",width:1280,height:720,bitrate:1e6,framerate:30}},[t,i]=yield Promise.all([s.navigator.mediaCapabilities.decodingInfo(C(x({},e),{video:C(x({},e.video),{contentType:Tb})})),s.navigator.mediaCapabilities.decodingInfo(C(x({},e),{video:C(x({},e.video),{contentType:yb})}))]);Ib={DASH_WEBM_AV1:t,DASH_WEBM:i}});CA().catch(s=>{console.log(AA),console.error(s)});var Qn=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 Ib}get supportedCodecs(){return Object.keys(this._codecs).filter(e=>this._codecs[e])}get nativeHlsSupported(){return this._nativeHlsSupported}detect(){var i,r,a,n,o,u,c,d,l,p,h,f,m,g,v,S,T,I,P,k;let e=Uc();if(!Sb(e))return;let t=e.document;this._video=t.createElement("video");try{this._protocols={mms:Er(),mse:gb(),hls:!!((r=(i=this._video).canPlayType)!=null&&r.call(i,"application/x-mpegurl")||(n=(a=this._video).canPlayType)!=null&&n.call(a,"vnd.apple.mpegURL")),webrtc:!!e.RTCPeerConnection,ws:!!e.WebSocket},this._containers={mp4:!!((u=(o=this._video).canPlayType)!=null&&u.call(o,"video/mp4")),webm:!!((d=(c=this._video).canPlayType)!=null&&d.call(c,"video/webm")),cmaf:!0};let V=!!((p=(l=ze())==null?void 0:l.isTypeSupported)!=null&&p.call(l,RA)),_=!!((f=(h=ze())==null?void 0:h.isTypeSupported)!=null&&f.call(h,MA)),L=!!((g=(m=ze())==null?void 0:m.isTypeSupported)!=null&&g.call(m,$A));this._codecs={h264:V,h265:_,vp9:!!((S=(v=ze())==null?void 0:v.isTypeSupported)!=null&&S.call(v,yb)),av1:!!((I=(T=ze())==null?void 0:T.isTypeSupported)!=null&&I.call(T,Tb)),aac:L,opus:!!((k=(P=ze())==null?void 0:P.isTypeSupported)!=null&&k.call(P,LA)),mpeg:(V||_)&&L},this._nativeHlsSupported=this._protocols.hls&&this._containers.mp4}catch(V){console.error(V)}try{this.destroyVideoElement()}catch(V){console.error("Error destroying video element:",V)}}destroyVideoElement(){var t;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);(t=this._video.parentNode)==null||t.replaceChild(e,this._video),this._video=null}};import{getWindow as DA,isBrowserWindow as BA}from"@vkontakte/videoplayer-shared/es2015";var Eb="audio/mpeg",zn=class{supportMp3(){return this._codecs.mp3&&this._containers.mpeg}detect(){var i,r,a,n;let e=DA();if(!BA(e))return;let t=e.document;this._audio=t.createElement("audio");try{this._containers={mpeg:!!((r=(i=this._audio).canPlayType)!=null&&r.call(i,Eb))},this._codecs={mp3:!!((n=(a=ze())==null?void 0:a.isTypeSupported)!=null&&n.call(a,Eb))}}catch(o){console.error(o)}try{this.destroyAudioElement()}catch(o){console.error("Error destroying audio element:",o)}}destroyAudioElement(){var t;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);(t=this._audio.parentNode)==null||t.replaceChild(e,this._audio),this._audio=null}};var qc=class{constructor(){this.isInited$=new _A(!1);this._displayChecker=new jn,this._deviceChecker=new Hn(this._displayChecker),this._browserChecker=new qn,this._videoChecker=new Qn(this._deviceChecker,this._browserChecker),this._audioChecker=new zn,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}detect(){return y(this,null,function*(){VA()&&(this._displayChecker.detect(),this._deviceChecker.detect(),this._browserChecker.detect(),this._videoChecker.detect(),this._audioChecker.detect(),this.isInited$.next(!0))})}},O=new qc;var Hc=s=>{let{containers:e,protocols:t,codecs:i,nativeHlsSupported:r}=O.video,a=(i.h264||i.h265)&&i.aac,n=t.mse||t.mms;return s.filter(o=>{switch(o){case"DASH_SEP":return n&&e.mp4&&a;case"DASH_WEBM":return n&&e.webm&&i.vp9&&i.opus;case"DASH_WEBM_AV1":return n&&e.webm&&i.av1&&i.opus;case"DASH_STREAMS":return n&&(e.mp4&&a||e.webm&&(i.vp9||i.av1)&&(i.opus||i.aac));case"DASH_LIVE":return n&&e.mp4&&a;case"DASH_LIVE_CMAF":return n&&e.mp4&&a&&e.cmaf;case"DASH_ONDEMAND":return n&&e.mp4&&a;case"HLS":case"HLS_ONDEMAND":case"HLS_FMP4":case"HLS_LIVE":case"HLS_LIVE_CMAF":return r;case"MPEG":return e.mp4;case"DASH":case"DASH_LIVE_WEBM":return!1;case"WEB_RTC_LIVE":return t.webrtc&&t.ws&&i.h264&&(e.mp4||e.webm);default:return wb(o)}})},Pa=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_FMP4":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 wb(s)}},OA=s=>{let t=Object.keys(s).filter(i=>!Pa(i));return Hc(t).length>0};var ka=class{constructor(e){this.subscription=new UA;this.sessionId$=new Gc(null);this.mediaSessionId$=new Gc(null);this.contentId$=new Gc(null);this.isMobile=Bi();this.mobileVolumeState={muted:!1,volume:0};this.media=null;this.lastRequestedVolume=null;this.syncMediaState=e=>{var a,n,o;if(Pb(e))return;this.media=e,this.mediaSessionId$.next((a=e.mediaSessionId)!=null?a:null);let t=(n=e.media)==null?void 0:n.contentId;t&&this.contentId$.next(t),this.syncPlaybackState(e);let i=(o=e.media)==null?void 0:o.duration;zc(i)&&this.params.output.duration$.next(Math.max(0,i));let r=e.currentTime;if(zc(r)){this.params.desiredState.seekState.getState().state==="applying"&&this.params.output.seekedEvent$.next(),this.params.output.position$.next(r);let c=this.params.output.isLive$.getValue();e.playerState==="PLAYING"&&!c?this.progressTicker.start(r):this.progressTicker.pause()}};this.params=e,this.progressTicker=new Un(e),this.log=this.params.dependencies.logger.createComponentLog("ChromecastPresentationApiProvider"),this.log({message:`constructor, format: ${e.format}`}),this.params.output.isLive$.next(Pa(e.format)),this.subscribe()}subscribe(){let e=r=>{var a;this.params.output.error$.next({category:NA.WTF,id:"ChromecastPresentationApiProvider",message:(a=r==null?void 0:r.message)!=null?a:"Unknown error",thrown:r})};this.subscription.add(this.params.chromecastConnector.message$.pipe(wr(r=>!!r)).subscribe(r=>{this.handleMessage(r)},e)),this.subscription.add(this.sessionId$.pipe(wr(zc),xb(),Qc(0)).subscribe(()=>{this.loadMedia()},e));let t=this.contentId$.pipe(xb(),FA(Boolean));this.subscription.add(Wc({seekState:this.params.desiredState.seekState.stateChangeEnded$,mediaLoaded:t}).pipe(wr(({mediaLoaded:r})=>r)).subscribe(()=>{let r=this.params.desiredState.seekState.getState();r.state==="requested"&&this.seek(r.position/1e3)},e));let i=Wc({playbackState:this.params.desiredState.playbackState.stateChangeStarted$,mediaLoaded:t});this.subscription.add(i.pipe(wr(({mediaLoaded:r})=>r),Qc(0)).subscribe(()=>{this.syncPlayback()},e)),this.subscription.add(i.pipe(wr(({mediaLoaded:r,playbackState:{from:a,to:n}})=>!r&&a==="stopped"&&n==="playing")).subscribe(()=>{this.loadMedia()},e)),this.subscription.add(Wc({volumeState:this.params.desiredState.volume.stateChangeStarted$.pipe(Qc(30)),mediaLoaded:t}).pipe(wr(({mediaLoaded:r})=>r)).subscribe(({volumeState:r})=>{let{muted:a,volume:n}=r.to;this.setVolume(n,a)},e))}handleMessage(e){var t,i,r,a,n,o;switch(e.type){case"new_session":case"update_session":{this.sessionId$.next(e.message.sessionId);let u=(i=(t=e.message)==null?void 0:t.media)==null?void 0:i[0];this.syncMediaState(u);let c=(r=e.message)==null?void 0:r.receiver.volume;this.syncVolumeState(c)}break;case"v2_message":{switch((a=e.message)==null?void 0:a.type){case"MEDIA_STATUS":{let u=(o=(n=e.message)==null?void 0:n.status)==null?void 0:o[0];this.syncMediaState(u);break}}break}}}loadMedia(){var o;let e=Fn(this.params),t=(o=this.media)==null?void 0:o.currentTime,i=this.params.desiredState.seekState.getState(),r=t!=null?t:i.state!=="none"?i.position/1e3:0,n=this.params.desiredState.playbackState.getState()==="playing";this.params.chromecastConnector.sendV2Message({type:"LOAD",requestId:0,media:e,autoplay:n,currentTime:r,customData:null,activeTrackIds:null}),this.params.output.willSeekEvent$.next()}stop(){this.params.chromecastConnector.stopMedia()}play(){let e=this.mediaSessionId$.getValue();jc(e,"play on null mediaSessionId"),this.params.chromecastConnector.sendV2Message({type:"PLAY",mediaSessionId:e,customData:null})}pause(){let e=this.mediaSessionId$.getValue();jc(e,"pause on null mediaSessionId"),this.params.chromecastConnector.sendV2Message({type:"PAUSE",mediaSessionId:e,customData:null})}seek(e){let t=this.mediaSessionId$.getValue();jc(t,"seek on null mediaSessionId"),this.params.chromecastConnector.sendV2Message({type:"SEEK",currentTime:e,mediaSessionId:t}),this.params.output.willSeekEvent$.next()}setVolume(e,t){let i=e,r=`[setVolume] volume: ${e}, muted: ${t}`;this.isMobile&&(i=this.mobileVolumeState.volume,r+=`, mobile next volume: ${i}`),this.log({message:r}),this.lastRequestedVolume={volume:i,muted:t},this.params.chromecastConnector.sendV2Message({type:"SET_VOLUME",requestId:0,volume:{level:t?0:i,muted:t?!0:null}})}syncPlaybackState({playerState:e,idleReason:t}){let i=this.params.output.isBuffering$.getValue(),r=e==="BUFFERING";switch(i!==r&&this.params.output.isBuffering$.next(r),e){case"PAUSED":A(this.params.desiredState.playbackState,"paused");break;case"PLAYING":A(this.params.desiredState.playbackState,"playing");break;case"IDLE":{t==="FINISHED"?(this.params.output.endedEvent$.next(),A(this.params.desiredState.playbackState,"stopped"),this.contentId$.next(null)):A(this.params.desiredState.playbackState,"ready");break}case"BUFFERING":break}}syncPlayback(){let e=this.params.desiredState.playbackState.getState();switch(this.log({message:`[syncPlayback] ${e}`}),e){case"ready":break;case"playing":this.play();break;case"paused":this.pause();break;case"stopped":this.stop();break}}syncVolumeState(e){if(Pb(e))return;let{level:t,muted:i}=e,r={muted:i!=null?i:!1,volume:t!=null?t:0};this.lastRequestedVolume&&(i&&(r.volume=this.lastRequestedVolume.volume),this.lastRequestedVolume.muted&&!t&&!i&&(r.volume=this.lastRequestedVolume.volume,r.muted=!0),this.lastRequestedVolume=null);let a=`[syncVolumeState] volume: ${r.volume}, muted: ${r.muted}`;this.isMobile&&(this.mobileVolumeState.volume=r.volume,this.mobileVolumeState.muted=r.muted,r.volume=this.params.output.volume$.getValue().volume,a+=`, volume passed to state machine: ${r.volume}`),this.log({message:a}),this.params.output.volume$.next(r)}destroy(){this.progressTicker.destroy(),this.subscription.unsubscribe()}};import{assertNonNullable as qA,ErrorCategory as Yc,filter as HA,Subject as jA,Subscription as Kc,tap as WA,ValueSubject as xr,fromEvent as Aa}from"@vkontakte/videoplayer-shared/es2015";var kb=s=>({castDevice:{friendlyName:s},remotePlayer:{},remotePlayerController:{},session:{}}),Ab=()=>String(Date.now())+String(Math.floor(Math.random()*1e5));var Ra=class{constructor(e){this.capabilities=["WEB"];this.presentationRequest$=new xr(null);this.sessionId$=new xr(null);this.broadcastChannel=new BroadcastChannel("vk_player_chromecast_events");this.subscription=new Kc;this.subscriptionEvents=new Kc;this.isDestroyed=!1;this.sequenceNumber=0;this.presentationAvailable$=new xr(!1);this.presentationConnection$=new xr(null);this.message$=new xr(null);this.friendlyName$=new xr(null);this.errorEvent$=new jA;this.clientId=this.getClientId(),this.params=e,this.log=e.logger.createComponentLog("ChromecastPresentationApiConnector"),this.log({message:"constructor"}),this.reinitPresentation(),this.subscribe()}destroy(){this.log({message:"destroy"}),this.subscription.unsubscribe(),this.subscriptionEvents.unsubscribe(),this.broadcastChannel.close(),this.isDestroyed=!0}disconnect(e=!0){this.log({message:"disconnect"}),e&&this.stopMedia(),this.presentationRequest$.next(null);let t=this.presentationConnection$.getValue();t&&t.close(),this.presentationConnection$.next(null),this.friendlyName$.next(null),this.resetSequenceNumber(),this.resetSubscriptionEvents()}stopMedia(){this.log({message:"stopMedia"}),this.sendV2Message({type:"STOP"})}reinitPresentation(e=!0){let t=this.createCastUrl(),i=new PresentationRequest(t);this.presentationRequest$.next(i),this.log({message:"PresentationRequest created"}),i.getAvailability().then(r=>{let a=()=>{this.log({message:`PresentationRequest presentation availability: ${r.value}`}),this.presentationAvailable$.next(r.value)};this.subscriptionEvents.add(Aa(r,"change").subscribe(()=>{a()})),a()}).catch(()=>{this.presentationAvailable$.next(!0)}),window.navigator.presentation.defaultRequest=i,e&&i.reconnect("auto-join").then(r=>{this.log({message:"PresentationRequest reconnect success"}),this.handleConnection(r)}).catch(()=>{this.log({message:"PresentationRequest reconnect failed"})})}connect(){return y(this,null,function*(){var e;this.log({message:"connect"});try{this.presentationRequest$.getValue()||(this.log({message:"reinitPresentation"}),this.reinitPresentation(!1));let t=this.presentationRequest$.getValue();qA(t,"connect with null presentationRequest");let i=yield t.start();this.handleConnection(i)}catch(t){switch(t==null?void 0:t.name){case"AbortError":case"NotAllowedError":break;default:this.errorEvent$.next({category:Yc.WTF,id:"ChromecastPresentationApiConnector",message:(e=t==null?void 0:t.message)!=null?e:"connect error",thrown:t});break}}})}subscribe(){this.subscription.add(Aa(this.broadcastChannel,"message").subscribe(e=>{this.log({message:`broadcast connection data: ${e.data}`}),e.data==="connection"&&this.disconnect(!1)})),this.subscription.add(this.presentationAvailable$.subscribe(e=>{this.log({message:`presentationAvailable$: ${e}`})})),this.subscription.add(this.presentationConnection$.pipe(WA(e=>{this.log({message:`presentationConnection$: ${!!e}`})}),HA(e=>!!e)).subscribe(e=>{let t=Aa(e,"message").subscribe(a=>{let n=JSON.parse(a.data);n.clientId===this.clientId&&(this.log({message:`[onmessage] ${a.data}`}),this.handleMessage(n),this.message$.next(n))}),i=Aa(e,"connect").subscribe(()=>{this.send("client_connect")}),r=Aa(e,"close").subscribe(a=>{switch(a.reason){case"error":this.errorEvent$.next({category:Yc.WTF,id:"ChromecastPresentationApiConnector",message:"Session error",thrown:a});break;case"closed":break}});this.subscriptionEvents.add(t),this.subscriptionEvents.add(i),this.subscriptionEvents.add(r)}))}send(e){switch(e){case"client_connect":{let t={type:"client_connect",message:this.clientId,sequenceNumber:-1,timeoutMillis:0,clientId:this.clientId};this.safeSend(JSON.stringify(t));break}}}sendV2Message(e){let t=this.sessionId$.getValue();if(t){let i={type:"v2_message",sequenceNumber:this.getSequenceNumber(),timeoutMillis:0,clientId:this.clientId,message:C(x({},e),{sessionId:t})};this.safeSend(JSON.stringify(i))}}safeSend(e){try{this.log({message:`[send] ${e}`});let t=this.presentationConnection$.getValue();(t==null?void 0:t.state)==="connected"&&(t==null||t.send(e))}catch(t){this.errorEvent$.next({category:Yc.WTF,id:"ChromecastPresentationApiConnector",message:"PresentationConnection send error",data:{message:e},thrown:t})}}handleMessage(e){var t;switch(e.type){case"new_session":case"update_session":{this.sessionId$.next(e.message.sessionId),this.friendlyName$.next(e.message.receiver.friendlyName||"Chromecast Device");break}case"receiver_action":((t=e.message)==null?void 0:t.action)==="stop"&&this.disconnect();break}}createCastUrl(){return`cast:${this.params.appId}?clientId=${this.clientId}&autoJoinPolicy=tab_and_origin_scoped&defaultActionPolicy=create_session&launchTimeout=60000&supportedAppTypes=${this.capabilities}&appParams=%7B%22launchCheckerParams%22%3A%7B%7D%7D`}getSequenceNumber(){let e=this.sequenceNumber;return this.sequenceNumber=(this.sequenceNumber+1)%Number.MAX_SAFE_INTEGER,e}resetSequenceNumber(){this.sequenceNumber=0}getClientId(){let e="__vk_player_chromecast_id";return window[e]=window[e]||Ab()}resetSubscriptionEvents(){this.subscriptionEvents.unsubscribe(),this.subscriptionEvents=new Kc}handleConnection(e){this.log({message:"connection available"}),this.isDestroyed?(this.log({message:"connected on already destroyed component"}),e.close()):(this.broadcastChannel.postMessage("connection"),this.presentationConnection$.next(e))}};import{ValueSubject as Rb,Subject as QA,map as zA,Subscription as GA,combine as YA,filterChanged as Mb,assertNonNullable as KA}from"@vkontakte/videoplayer-shared/es2015";var Lt=class s{constructor(e){this.subscription=new GA;this.connection$=new Rb(void 0);this.castState$=new Rb("NOT_AVAILABLE");this.errorEvent$=new QA;let t=s.isSupported();this.log=e.dependencies.logger.createComponentLog("ChromecastPresentationApiInitializer"),this.log({message:`[constructor] receiverApplicationId: ${e.receiverApplicationId}, isDisabled: ${e.isDisabled}, isSupported: ${t}`}),!(!t||e.isDisabled||!e.receiverApplicationId)&&(this.chromecastConnector=new Ra({appId:e.receiverApplicationId,logger:e.dependencies.logger}),this.subscribe())}static isSupported(){return"chrome"in window&&"presentation"in navigator&&"BroadcastChannel"in window}subscribe(){KA(this.chromecastConnector,"subscribe with null chromecastConnector"),this.subscription.add(this.chromecastConnector.errorEvent$.subscribe(this.errorEvent$));let e=YA({connection:this.chromecastConnector.presentationConnection$,available:this.chromecastConnector.presentationAvailable$,friendlyName:this.chromecastConnector.friendlyName$.pipe(Mb())});this.subscription.add(e.pipe(zA(({connection:t,friendlyName:i})=>!!(t&&i)),Mb()).subscribe(t=>{var r,a;let i=(a=(r=this.chromecastConnector)==null?void 0:r.friendlyName$.getValue())!=null?a:"";this.connection$.next(t?kb(i):void 0)})).add(e.subscribe(({available:t,connection:i})=>{t?i?this.castState$.next("CONNECTED"):this.castState$.next("AVAILABLE"):this.castState$.next("NOT_AVAILABLE")}))}connect(){var e;this.log({message:"connect"}),(e=this.chromecastConnector)==null||e.connect()}disconnect(){var e;this.log({message:"disconnect"}),(e=this.chromecastConnector)==null||e.disconnect()}stopMedia(){return y(this,null,function*(){var e;this.log({message:"stopMedia"}),(e=this.chromecastConnector)==null||e.stopMedia()})}toggleConnection(){var t;let e=!!((t=this.chromecastConnector)!=null&&t.presentationConnection$.getValue());this.log({message:`toggleConnection: isConnected - ${e}`}),e?this.disconnect():this.connect()}setVolume(e){}setMuted(e){}destroy(){var e;this.log({message:"destroy"}),(e=this.chromecastConnector)==null||e.destroy(),this.subscription.unsubscribe()}};var qp=q(Oe(),1),Hp=q(ti(),1),Ow=q(vl(),1);var hy=q(ad(),1);import{isNonNullable as VC,Subject as So,merge as uy}from"@vkontakte/videoplayer-shared/es2015";var Q=class{constructor(e){this.transitionStarted$=new So;this.transitionEnded$=new So;this.transitionUpdated$=new So;this.forceChanged$=new So;this.stateChangeStarted$=uy(this.transitionStarted$,this.transitionUpdated$);this.stateChangeEnded$=uy(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||VC(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 qa,debounce as cy,ErrorCategory as _C,fromEvent as Ui,map as ly,merge as dy,observableFrom as OC,Subject as NC,Subscription as sd,timeout as FC}from"@vkontakte/videoplayer-shared/es2015";var UC=5,qC=5,HC=500,py=7e3,Ha=class{constructor(e){this.subscription=new sd;this.loadMediaTimeoutSubscription=new sd;this.videoState=new Q("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==null?void 0: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:qa(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:qa(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:qa(e)}break}default:qa(i)}}};this.params=e,this.log=this.params.dependencies.logger.createComponentLog("ChromecastProvider"),this.log({message:`constructor, format: ${e.format}`}),this.params.output.isLive$.next(Pa(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 sd;this.subscription.add(e),this.subscription.add(dy(this.videoState.stateChangeStarted$.pipe(ly(r=>`stateChangeStarted$ ${JSON.stringify(r)}`)),this.videoState.stateChangeEnded$.pipe(ly(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 NC;e.add(r.pipe(cy(HC)).subscribe(()=>{this.params.output.seekedEvent$.next()}));let a=NaN;e.add(Ui(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)>UC)&&r.next(o),a=o})),e.add(Ui(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.DURATION_CHANGED).subscribe(n=>{this.logRemoteEvent(n),this.params.output.duration$.next(n.value)}))}t(Ui(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_MEDIA_LOADED_CHANGED),r=>{this.logRemoteEvent(r),r.value?this.handleRemoteReady():(this.handleRemoteStop(),e.unsubscribe())}),t(Ui(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_PAUSED_CHANGED),r=>{this.logRemoteEvent(r),r.value?this.handleRemotePause():this.handleRemotePlay()}),t(Ui(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<qC&&this.params.output.endedEvent$.next(),this.handleRemoteStop(),A(this.params.desiredState.playbackState,"stopped");break;case chrome.cast.media.PlayerState.PAUSED:{this.handleRemotePause();break}case chrome.cast.media.PlayerState.PLAYING:this.handleRemotePlay();break;case chrome.cast.media.PlayerState.BUFFERING:break;default:qa(n)}}),t(Ui(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.VOLUME_LEVEL_CHANGED),r=>{this.logRemoteEvent(r),this.handleRemoteVolumeChange({volume:r.value})}),t(Ui(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_MUTED_CHANGED),r=>{this.logRemoteEvent(r),this.handleRemoteVolumeChange({muted:r.value})});let i=dy(this.params.desiredState.playbackState.stateChangeStarted$,this.params.desiredState.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,OC(["init"])).pipe(cy(0));t(i,this.syncPlayback)}restoreSession(e){this.log({message:"restoreSession"});let{remotePlayer:t}=this.params.connection;if(e.playerState!==chrome.cast.media.PlayerState.IDLE){t.isPaused?(this.videoState.setState("paused"),A(this.params.desiredState.playbackState,"paused")):(this.videoState.setState("playing"),A(this.params.desiredState.playbackState,"playing"));let i=this.params.output.isLive$.getValue();this.params.output.duration$.next(i?0:t.duration),this.params.output.position$.next(i?0:t.currentTime),this.params.desiredState.seekState.setState({state:"none"})}}prepare(){let e=this.params.format;this.log({message:`[prepare] format: ${e}`});let t=Fn(this.params),i=this.createLoadRequest(t);this.loadMedia(i)}handleRemotePause(){let e=this.videoState.getState(),t=this.videoState.getTransition();((t==null?void 0:t.to)==="paused"||e==="playing")&&(this.videoState.setState("paused"),A(this.params.desiredState.playbackState,"paused"))}handleRemotePlay(){let e=this.videoState.getState(),t=this.videoState.getTransition();((t==null?void 0:t.to)==="playing"||e==="paused")&&(this.videoState.setState("playing"),A(this.params.desiredState.playbackState,"playing"))}handleRemoteReady(){var t;let e=this.videoState.getTransition();(e==null?void 0:e.to)==="ready"&&this.videoState.setState("ready"),((t=this.params.desiredState.playbackState.getTransition())==null?void 0:t.to)==="ready"&&A(this.params.desiredState.playbackState,"ready")}handleRemoteStop(){this.videoState.getState()!=="stopped"&&this.videoState.setState("stopped")}handleRemoteVolumeChange(e){var r,a;let t=this.params.output.volume$.getValue(),i={volume:(r=e.volume)!=null?r:t.volume,muted:(a=e.muted)!=null?a: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()}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(FC(py).subscribe(()=>a(`timeout(${py})`)))});(0,hy.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:_C.VIDEO_PIPELINE,message:a,thrown:r})}),()=>{this.loadMediaTimeoutSubscription.unsubscribe()})}logRemoteEvent(e){this.log({message:`[remoteEvent] ${JSON.stringify(e)}`})}};var wd=q(Oe(),1);import{clearVideoElement as my,getWindow as WC}from"@vkontakte/videoplayer-shared/es2015";import{clearVideoElement as jC}from"@vkontakte/videoplayer-shared/es2015";var fy=(s,e)=>{try{s.pause(),s.playbackRate=0,jC(s,e),s.remove()}catch(t){console.error(t)}};import{fromEvent as QC,Subscription as zC}from"@vkontakte/videoplayer-shared/es2015";var nd=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)}},yo=WC(),od=yo.WeakMap?new yo.WeakMap:new nd,ud=yo.WeakMap?new yo.WeakMap:new Map,GC=(s,e=20)=>{let t=0;return QC(s,"ratechange").subscribe(i=>{t++,t>=e&&(s.currentTime=s.currentTime,t=0)})},Ne=(s,{audioVideoSyncRate:e,disableYandexPiP:t,clearVideoElementInnerHTML:i})=>{let r=s.querySelector("video"),a=!!r;r?my(r,i):(r=document.createElement("video"),s.appendChild(r)),od.set(r,a);let n=new zC;return n.add(GC(r,e)),ud.set(r,n),r.setAttribute("crossorigin","anonymous"),r.setAttribute("playsinline","playsinline"),t&&r.setAttribute("x-yandex-pip","false"),r.controls=!1,r.setAttribute("poster","data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII="),r},Fe=(s,e=!1,t=!1)=>{let i=ud.get(s);i==null||i.unsubscribe(),ud.delete(s);let r=od.get(s);od.delete(s),r||e?my(s,t):fy(s,t)};var ld=q(Ci(),1);import{assertNonNullable as Wa,isNonNullable as Et,isNullable as XC,fromEvent as Br,merge as by,observableFrom as gy,filterChanged as vy,map as Qa,Subject as Sy,Subscription as JC,ValueSubject as ZC,ErrorCategory as eD}from"@vkontakte/videoplayer-shared/es2015";import{isNonNullable as cd,isNullable as YC,Subscription as KC}from"@vkontakte/videoplayer-shared/es2015";var To=(s,e,t,{equal:i=(n,o)=>n===o,changed$:r,onError:a}={})=>{let n=s.getState(),o=e(),u=YC(r),c=new KC;return r&&c.add(r.subscribe(d=>{let l=s.getState();i(d,l)&&s.setState(d)},a)),i(o,n)||(t(n),u&&s.setState(n)),c.add(s.stateChangeStarted$.subscribe(d=>{t(d.to),u&&s.setState(d.to)},a)),c},It=(s,e,t)=>To(e,()=>s.loop,i=>{cd(i)&&(s.loop=i)},{onError:t}),Ue=(s,e,t,i)=>To(e,()=>({muted:s.muted,volume:s.volume}),r=>{cd(r)&&(s.muted=r.muted,s.volume=r.volume)},{equal:(r,a)=>r===a||(r==null?void 0:r.muted)===(a==null?void 0:a.muted)&&(r==null?void 0:r.volume)===(a==null?void 0:a.volume),changed$:t,onError:i}),Je=(s,e,t,i)=>To(e,()=>s.playbackRate,r=>{cd(r)&&(s.playbackRate=r)},{changed$:t,onError:i}),ja=To;var tD=s=>["__",s.language,s.label].join("|"),iD=(s,e)=>{if(s.id===e)return!0;let[t,i,r]=e.split("|");return s.language===i&&s.label===r},dd=class s{constructor(e){this.available$=new Sy;this.current$=new ZC(void 0);this.error$=new Sy;this.subscription=new JC;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:eD.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(ja(t.internalTextTracks,()=>(0,ld.default)(this.internalTracks),a=>{Et(a)&&this.setInternal(a)},{equal:(a,n)=>Et(a)&&Et(n)&&a.length===n.length&&a.every(({id:o},u)=>o===n[u].id),changed$:this.available$.pipe(Qa(a=>a.filter(({type:n})=>n==="internal"))),onError:r})),this.subscription.add(ja(t.externalTextTracks,()=>(0,ld.default)(this.externalTracks),a=>{Et(a)&&this.setExternal(a)},{equal:(a,n)=>Et(a)&&Et(n)&&a.length===n.length&&a.every(({id:o},u)=>o===n[u].id),changed$:this.available$.pipe(Qa(a=>a.filter(({type:n})=>n==="external"))),onError:r})),this.subscription.add(ja(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(ja(t.textTrackCuesSettings,()=>({}),()=>{if(this.video)for(let a of this.htmlTextTracksAsArray())this.applyCueSettings(a.cues),this.applyCueSettings(a.activeCues)}))}subscribe(){Wa(this.video);let{textTracks:e}=this.video;this.subscription.add(Br(e,"addtrack").subscribe(()=>{let i=this.current$.getValue();i&&this.select(i)})),this.subscription.add(by(Br(e,"addtrack"),Br(e,"removetrack"),gy(["init"])).pipe(Qa(()=>this.htmlTextTracksAsArray().map(i=>this.htmlTextTrackToITextTrack(i))),vy((i,r)=>i.length===r.length&&i.every(({id:a},n)=>a===r[n].id))).subscribe(this.available$)),this.subscription.add(by(Br(e,"change"),gy(["init"])).pipe(Qa(()=>this.htmlTextTracksAsArray().find(({mode:i})=>i==="showing")),Qa(i=>i&&this.htmlTextTrackToITextTrack(i).id),vy()).subscribe(this.current$));let t=i=>{var r,a;return this.applyCueSettings((a=(r=i.target)==null?void 0:r.activeCues)!=null?a:null)};this.subscription.add(Br(e,"addtrack").subscribe(i=>{var a,n;(a=i.track)==null||a.addEventListener("cuechange",t);let r=o=>{var c,d,l,p,h;let u=(d=(c=o.target)==null?void 0:c.cues)!=null?d:null;u&&u.length&&(this.applyCueSettings((p=(l=o.target)==null?void 0:l.cues)!=null?p:null),(h=o.target)==null||h.removeEventListener("cuechange",r))};(n=i.track)==null||n.addEventListener("cuechange",r)})),this.subscription.add(Br(e,"removetrack").subscribe(i=>{var r;(r=i.track)==null||r.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;Et(t.align)&&(r.align=t.align),Et(t.position)&&(r.position=t.position),Et(t.size)&&(r.size=t.size),Et(t.line)&&(r.line=t.line)}}htmlTextTracksAsArray(e=!1){Wa(this.video);let t=[...this.video.textTracks];return e?t:t.filter(s.isHealthyTrack)}htmlTextTrackToITextTrack(e){var o,u,c,d,l;let{language:t,label:i}=e,r=e.id?e.id:tD(e),a=this.externalTracks.has(r),n=(c=a?(o=this.externalTracks.get(r))==null?void 0:o.isAuto:(u=this.internalTracks.get(r))==null?void 0:u.isAuto)!=null?c:r.includes("auto");return a?{id:r,type:"external",isAuto:n,language:t,label:i,url:(d=this.externalTracks.get(r))==null?void 0:d.url}:{id:r,type:"internal",isAuto:n,language:t,label:i,url:(l=this.internalTracks.get(r))==null?void 0:l.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){Wa(this.video);for(let t of this.htmlTextTracksAsArray(!0))t.mode="showing";for(let t of this.htmlTextTracksAsArray(!0))(XC(e)||!iD(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){Wa(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){Wa(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)}},Ze=dd;var qi=class{constructor(){this.pausedTime=0;this.streamOffset=0;this.pauseTimestamp=0}getTotalPausedTime(){return this.pausedTime+this.getCurrentPausedTime()}getCurrentPausedTime(){return this.pauseTimestamp>0?Date.now()-this.pauseTimestamp:0}getStreamOffset(){return this.streamOffset}getTotalOffset(){return this.getTotalPausedTime()+this.streamOffset}pause(){this.pauseTimestamp===0&&(this.pauseTimestamp=Date.now())}resume(){this.pauseTimestamp>0&&(this.pausedTime+=this.getCurrentPausedTime(),this.pauseTimestamp=0)}resetTo(e,t=!1){this.streamOffset=e,this.pauseTimestamp=0,this.pausedTime=0,t&&this.pause()}};var yy=s=>{let e=s;for(;!(e instanceof Document)&&!(e instanceof ShadowRoot)&&e!==null;)e=e==null?void 0:e.parentNode;return e!=null?e:void 0},pd=s=>{let e=yy(s);return!!(e&&e.fullscreenElement&&e.fullscreenElement===s)},Ty=s=>{let e=yy(s);return!!(e&&e.pictureInPictureElement&&e.pictureInPictureElement===s)};import{fromEvent as Le,map as wt,merge as Io,filterChanged as Ey,isNonNullable as wy,Subject as aD,filter as hd,mapTo as fd,combine as sD,once as nD,shareReplay as Ce,throttle as oD,ErrorCategory as uD,ValueSubject as xy,Subscription as cD}from"@vkontakte/videoplayer-shared/es2015";var rD=3,Iy=(s,e,t=rD)=>{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 qe=s=>{let e=R=>Le(s,R).pipe(fd(void 0),Ce(1)),t=new cD,i=()=>t.unsubscribe(),r=Io(Le(s,"progress"),Le(s,"timeupdate")).pipe(wt(()=>Iy(s.buffered,s.currentTime)),Ce(1)),a=O.browser.isSafari?sD({play:e("play").pipe(nD()),playing:e("playing")}).pipe(fd(void 0),Ce(1)):e("playing"),n=Le(s,"volumechange").pipe(wt(()=>({muted:s.muted,volume:s.volume})),Ce(1)),o=Le(s,"ratechange").pipe(wt(()=>s.playbackRate),Ce(1)),u=Le(s,"error").pipe(hd(()=>!!(s.error||s.played.length)),wt(()=>{var F;let R=s.error;return{id:R?`MediaError#${R.code}`:"HtmlVideoError",category:uD.VIDEO_PIPELINE,message:R?R.message:"Error event from HTML video element",thrown:(F=s.error)!=null?F:void 0}}),Ce(1)),c=Le(s,"timeupdate").pipe(wt(()=>s.currentTime),Ce(1)),d=["waiting","seeking","seeked","timeupdate"],l=new aD,p=.3,h;t.add(Io(...d.map(R=>Le(s,R))).subscribe(R=>{let F=s.currentTime;s.loop&&wy(h)&&wy(F)&&h>=s.duration-p&&F<=p&&l.next(h),h=F}));let f=e("pause").pipe(hd(()=>!s.error&&h!==s.duration),Ce(1)),m=Le(s,"enterpictureinpicture").pipe(Ce(1)),g=Le(s,"leavepictureinpicture").pipe(Ce(1)),v=new xy(Ty(s));t.add(m.subscribe(()=>v.next(!0))),t.add(g.subscribe(()=>v.next(!1)));let S=new xy(pd(s)),T=Le(s,"fullscreenchange").pipe(Ce(1));t.add(T.pipe(wt(()=>pd(s))).subscribe(S));let I=.1,P=1e3,k=Le(s,"timeupdate").pipe(wt(R=>s.duration-s.currentTime<I),Ey(),Ce(1)),V=Io(k.pipe(hd(R=>!s.loop&&R)),Le(s,"ended")).pipe(oD(P),fd(void 0),Ce(1)),L=Io(...["waiting","pause","canplay","play","canplaythrough","playing","seeking","seeked","ended"].map(R=>Le(s,R)),k.pipe(wt(R=>({type:R?"ended":"unknown"})))).pipe(wt(R=>O.browser.isFirefox&&R.type==="ended"?s.readyState<2:s.readyState<3),Ey(),Ce(1));return{playing$:a,pause$:f,canplay$:e("canplay"),ended$:V,looped$:l,error$:u,seeked$:e("seeked"),seeking$:e("seeking"),progress$:e("progress"),loadStart$:e("loadstart"),loadedMetadata$:e("loadedmetadata"),loadedData$:e("loadeddata"),timeUpdate$:c,durationChange$:Le(s,"durationchange").pipe(wt(()=>s.duration),Ce(1)),isBuffering$:L,currentBuffer$:r,volumeState$:n,playbackRateState$:o,inPiP$:v,inFullscreen$:S,enterPip$:m,leavePip$:g,destroy:i}};import{VideoQuality as ri}from"@vkontakte/videoplayer-shared/es2015";var ai=s=>{switch(s){case"mobile":return ri.Q_144P;case"lowest":return ri.Q_240P;case"low":return ri.Q_360P;case"sd":case"medium":return ri.Q_480P;case"hd":case"high":return ri.Q_720P;case"fullhd":case"full":return ri.Q_1080P;case"quadhd":case"quad":return ri.Q_1440P;case"ultrahd":case"ultra":return ri.Q_2160P}};var Be=q(et(),1),bd=q(Oe(),1),ji=q(ti(),1);import{isNonNullable as te,isNullable as Po,now as qy,isHigher as ko,isHigherOrEqual as Hi,isInvariantQuality as Ao,isLowerOrEqual as _r,videoSizeToQuality as Hy,assertNotEmptyArray as Ro,assertNonNullable as jy}from"@vkontakte/videoplayer-shared/es2015";var md=!1,Dt={},Ly=s=>{md=s},Cy=()=>{Dt={}},Dy=s=>{s(Dt)},za=(s,e)=>{var t;md&&(Dt.meta=(t=Dt.meta)!=null?t:{},Dt.meta[s]=e)},De=class{constructor(e){this.name=e}next(e){var i,r;if(!md)return;Dt.series=(i=Dt.series)!=null?i:{};let t=(r=Dt.series[this.name])!=null?r:[];t.push([Date.now(),e]),Dt.series[this.name]=t}};import{isHigher as vD,isHigherOrEqual as Bj,isLower as By,isLowerOrEqual as Vj,isNonNullable as Eo,isNullable as SD,videoHeightToQuality as wo}from"@vkontakte/videoplayer-shared/es2015";function Vy(s,e,t){return!s.max&&s.min===e?"high_quality":!s.min&&s.max===t?"traffic_saving":"unknown"}function Vr(s,e,t){return SD(s)||Eo(s.min)&&Eo(s.max)&&By(s.max,s.min)||Eo(s.min)&&e&&vD(s.min,e)||Eo(s.max)&&t&&By(s.max,t)}function _y({limits:s,highestAvailableHeight:e,lowestAvailableHeight:t}){return Vr({max:s!=null&&s.max?wo(s.max):void 0,min:s!=null&&s.min?wo(s.min):void 0},e?wo(e):void 0,t?wo(t):void 0)}var Wy=new De("best_bitrate"),Mo=(s,e,t)=>(e-t)*Math.pow(2,-10*s)+t;var Or=s=>(e,t)=>s*(Number(e.bitrate)-Number(t.bitrate)),si=class{constructor(){this.history={}}recordSelection(e){this.history[e.id]=qy()}recordSwitch(e){this.last=e}clear(){this.last=void 0,this.history={}}},$o='Assertion "ABR Tracks is empty array" failed',xo=new WeakMap,Oy=new WeakMap,Ny=new WeakMap,Ga=(s,e,t,i)=>{var u;let r=[...e].sort(Or(1)),a=[...t].sort(Or(1)),n=a.filter(c=>te(c.bitrate)&&te(s.bitrate)?s.bitrate/c.bitrate>i:!0),o=(u=(0,Be.default)(a,Math.round(a.length*r.indexOf(s)/(r.length+1))))!=null?u:(0,Be.default)(a,-1);return o&&(0,bd.default)(n,o)?o:n.length?(0,Be.default)(n,-1):(0,Be.default)(a,0)},Ya=(s,e,t,i)=>{var u;let r=xo.get(e);r||(r=[...e].sort(Or(1)),xo.set(e,r));let a=xo.get(t);a||(a=[...t].sort(Or(1)),xo.set(t,a));let n=Ny.get(s);n||(n=a.filter(c=>te(c.bitrate)&&te(s.bitrate)?s.bitrate/c.bitrate>i:!0),Ny.set(s,n));let o=(u=(0,Be.default)(a,Math.round(a.length*r.indexOf(s)/(r.length+1))))!=null?u:(0,Be.default)(a,-1);return o&&(0,bd.default)(n,o)?o:n.length?(0,Be.default)(n,-1):(0,Be.default)(a,0)},Fy=s=>"quality"in s,Lo=(s,e,t,i)=>{var n;let r=te((n=i==null?void 0:i.last)==null?void 0:n.bitrate)&&te(t==null?void 0:t.bitrate)&&i.last.bitrate<t.bitrate?s.trackCooldownIncreaseQuality:s.trackCooldownDecreaseQuality,a=t&&i&&i.history[t.id]&&qy()-i.history[t.id]<=r&&(!i.last||t.id!==i.last.id);if(t!=null&&t.id&&i&&!a&&i.recordSelection(t),a&&(i!=null&&i.last)){let o=i.last;i==null||i.recordSwitch(o);let u=Fy(o)?"video":"audio",c=Fy(o)?o.quality:o.bitrate;return e({message:`
8
- [last ${u} selected] ${c}
9
- `}),o}return i==null||i.recordSwitch(t),t},yD=(s,e)=>Math.log(e)/Math.log(s),Qy=({tuning:s,container:e,limits:t,panelSize:i})=>{let r=s.containerSizeFactor;if(i)return{containerSizeLimit:i,containerSizeFactor:r};if(s.usePixelRatio&&O.display.pixelRatio){let a=O.display.pixelRatio;if(s.pixelRatioMultiplier)r*=s.pixelRatioMultiplier*(a-1)+1;else{let n=s.pixelRatioLogBase,[o=0,u=0,c=0]=s.pixelRatioLogCoefficients,d=yD(n,o*a+u)+c;Number.isFinite(d)&&(r*=d)}}return te(t==null?void 0:t.min)&&Hi(t.min,s.highQualityLimit)&&(r*=2),{containerSizeLimit:s.limitByContainer&&e&&e.width>0&&e.height>0?{width:e.width*r,height:e.height*r}:void 0,containerSizeFactor:r}},Uy=new WeakMap,xt=(s,{container:e,estimatedThroughput:t,tuning:i,limits:r,reserve:a=0,forwardBufferHealth:n,playbackRate:o,current:u,history:c,visible:d,droppedVideoMaxQualityLimit:l,stallsVideoMaxQualityLimit:p,stallsPredictedThroughput:h,abrLogger:f,panelSize:m})=>{var H,J,z,$,M;Ro(s,$o);let{containerSizeFactor:g,containerSizeLimit:v}=Qy({container:e,tuning:i,limits:r,panelSize:m}),S=i.considerPlaybackRate&&te(o)?o:1,T=Uy.get(s);T||(T=s.filter(E=>!Ao(E.quality)).sort((E,w)=>ko(E.quality,w.quality)?-1:1),Uy.set(s,T));let I=(H=(0,Be.default)(T,-1))==null?void 0:H.quality,P=(J=(0,Be.default)(T,0))==null?void 0:J.quality,k=Vr(r,P,I),V=S*Mo(n!=null?n:.5,i.bitrateFactorAtEmptyBuffer,i.bitrateFactorAtFullBuffer),_={},L=null;for(let E of T){if(E.tvDisabled){_[E.quality]="TvDisabled";continue}let w=!0;if(v)if(E.size)w=E.size.width<=v.width&&E.size.height<=v.height;else{let je=v&&Hy(v);w=je?_r(E.quality,je):!0}if(!w){_[E.quality]="FitsContainer";continue}let U=h||t,N=te(U)&&isFinite(U)&&te(E.bitrate)?U-a>=E.bitrate*V:!0,ht=(r==null?void 0:r.min)===E.quality;if(!N&&!ht){_[E.quality]="FitsThroughput";continue}if(i.lazyQualitySwitch&&te(i.minBufferToSwitchUp)&&u&&!Ao(u.quality)&&(n!=null?n:0)<i.minBufferToSwitchUp&&ko(E.quality,u.quality)){_[E.quality]="Buffer";continue}if(!!l&&Hi(E.quality,l)&&!ht){_[E.quality]="DroppedFramesLimit";continue}if(!!p&&Hi(E.quality,p)&&!ht){_[E.quality]="StallsLimit";continue}let Pe=k||(Po(r==null?void 0:r.max)||_r(E.quality,r.max))&&(Po(r==null?void 0:r.min)||Hi(E.quality,r.min)),ke=te(d)&&!d?_r(E.quality,i.backgroundVideoQualityLimit):!0;if(!Pe||!ke){_[E.quality]="FitsQualityLimits";continue}L||(L=E)}L&&L.bitrate&&Wy.next(L.bitrate);let R=(z=L!=null?L:(0,Be.default)(T,-1))!=null?z:s[0],F=c==null?void 0:c.last,B=Lo(i,f,R,c);return te(c)&&B.quality!==(F==null?void 0:F.quality)&&f({message:`
6
+ const e=[`url`],t=[`url`],n=[`downloadingItems`],r=[`container`];import i from"@oxc-project/runtime/helpers/defineProperty";import a from"@oxc-project/runtime/helpers/asyncToGenerator";import o from"@oxc-project/runtime/helpers/objectSpread2";import s from"@oxc-project/runtime/helpers/awaitAsyncGenerator";import c from"@oxc-project/runtime/helpers/wrapAsyncGenerator";import l from"@oxc-project/runtime/helpers/objectWithoutProperties";var u=Object.create,d=Object.getPrototypeOf,f=Object.defineProperty,p=Object.getOwnPropertyNames,m=Object.prototype.hasOwnProperty;function h(e){return this[e]}var g,_,v=(e,t,n)=>{var r=typeof e==`object`&&!!e;if(r){var i=t?g??=new WeakMap:_??=new WeakMap,a=i.get(e);if(a)return a}n=e==null?{}:u(d(e));let o=t||!e||!e.__esModule?f(n,`default`,{value:e,enumerable:!0}):n;for(let t of p(e))m.call(o,t)||f(o,t,{get:h.bind(e,t),enumerable:!0});return r&&i.set(e,o),o},y=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports),b=y((e,t)=>{var n=function(e){return e&&e.Math===Math&&e};t.exports=n(typeof globalThis==`object`&&globalThis)||n(typeof window==`object`&&window)||n(typeof self==`object`&&self)||n(typeof global==`object`&&global)||n(typeof e==`object`&&e)||function(){return this}()||Function(`return this`)()}),x=y((e,t)=>{t.exports=function(e){try{return!!e()}catch{return!0}}}),S=y((e,t)=>{t.exports=!x()(function(){var e=function(){}.bind();return typeof e!=`function`||e.hasOwnProperty(`prototype`)})}),C=y((e,t)=>{var n=S(),r=Function.prototype,i=r.apply,a=r.call;t.exports=typeof Reflect==`object`&&Reflect.apply||(n?a.bind(i):function(){return a.apply(i,arguments)})}),w=y((e,t)=>{var n=S(),r=Function.prototype,i=r.call,a=n&&r.bind.bind(i,i);t.exports=n?a:function(e){return function(){return i.apply(e,arguments)}}}),T=y((e,t)=>{var n=w(),r=n({}.toString),i=n(``.slice);t.exports=function(e){return i(r(e),8,-1)}}),E=y((e,t)=>{var n=T(),r=w();t.exports=function(e){if(n(e)===`Function`)return r(e)}}),D=y((e,t)=>{var n=typeof document==`object`&&document.all;t.exports=n===void 0&&n!==void 0?function(e){return typeof e==`function`||e===n}:function(e){return typeof e==`function`}}),O=y((e,t)=>{t.exports=!x()(function(){return Object.defineProperty({},1,{get:function(){return 7}})[1]!==7})}),k=y((e,t)=>{var n=S(),r=Function.prototype.call;t.exports=n?r.bind(r):function(){return r.apply(r,arguments)}}),A=y(e=>{var t={}.propertyIsEnumerable,n=Object.getOwnPropertyDescriptor;e.f=n&&!t.call({1:2},1)?function(e){var t=n(this,e);return!!t&&t.enumerable}:t}),ee=y((e,t)=>{t.exports=function(e,t){return{enumerable:!(e&1),configurable:!(e&2),writable:!(e&4),value:t}}}),te=y((e,t)=>{var n=w(),r=x(),i=T(),a=Object,o=n(``.split);t.exports=r(function(){return!a(`z`).propertyIsEnumerable(0)})?function(e){return i(e)===`String`?o(e,``):a(e)}:a}),ne=y((e,t)=>{t.exports=function(e){return e==null}}),j=y((e,t)=>{var n=ne(),r=TypeError;t.exports=function(e){if(n(e))throw new r(`Can't call method on `+e);return e}}),re=y((e,t)=>{var n=te(),r=j();t.exports=function(e){return n(r(e))}}),ie=y((e,t)=>{var n=D();t.exports=function(e){return typeof e==`object`?e!==null:n(e)}}),ae=y((e,t)=>{t.exports={}}),oe=y((e,t)=>{var n=ae(),r=b(),i=D(),a=function(e){return i(e)?e:void 0};t.exports=function(e,t){return arguments.length<2?a(n[e])||a(r[e]):n[e]&&n[e][t]||r[e]&&r[e][t]}}),se=y((e,t)=>{t.exports=w()({}.isPrototypeOf)}),ce=y((e,t)=>{var n=b().navigator,r=n&&n.userAgent;t.exports=r?String(r):``}),le=y((e,t)=>{var n=b(),r=ce(),i=n.process,a=n.Deno,o=i&&i.versions||a&&a.version,s=o&&o.v8,c,l;s&&(c=s.split(`.`),l=c[0]>0&&c[0]<4?1:+(c[0]+c[1])),!l&&r&&(c=r.match(/Edge\/(\d+)/),(!c||c[1]>=74)&&(c=r.match(/Chrome\/(\d+)/),c&&(l=+c[1]))),t.exports=l}),ue=y((e,t)=>{var n=le(),r=x(),i=b().String;t.exports=!!Object.getOwnPropertySymbols&&!r(function(){var e=Symbol(`symbol detection`);return!i(e)||!(Object(e)instanceof Symbol)||!Symbol.sham&&n&&n<41})}),de=y((e,t)=>{t.exports=ue()&&!Symbol.sham&&typeof Symbol.iterator==`symbol`}),fe=y((e,t)=>{var n=oe(),r=D(),i=se(),a=de(),o=Object;t.exports=a?function(e){return typeof e==`symbol`}:function(e){var t=n(`Symbol`);return r(t)&&i(t.prototype,o(e))}}),pe=y((e,t)=>{var n=String;t.exports=function(e){try{return n(e)}catch{return`Object`}}}),me=y((e,t)=>{var n=D(),r=pe(),i=TypeError;t.exports=function(e){if(n(e))return e;throw new i(r(e)+` is not a function`)}}),he=y((e,t)=>{var n=me(),r=ne();t.exports=function(e,t){var i=e[t];return r(i)?void 0:n(i)}}),ge=y((e,t)=>{var n=k(),r=D(),i=ie(),a=TypeError;t.exports=function(e,t){var o,s;if(t===`string`&&r(o=e.toString)&&!i(s=n(o,e))||r(o=e.valueOf)&&!i(s=n(o,e))||t!==`string`&&r(o=e.toString)&&!i(s=n(o,e)))return s;throw new a(`Can't convert object to primitive value`)}}),_e=y((e,t)=>{t.exports=!0}),ve=y((e,t)=>{var n=b(),r=Object.defineProperty;t.exports=function(e,t){try{r(n,e,{value:t,configurable:!0,writable:!0})}catch{n[e]=t}return t}}),ye=y((e,t)=>{var n=_e(),r=b(),i=ve(),a=`__core-js_shared__`,o=t.exports=r[a]||i(a,{});(o.versions||=[]).push({version:`3.43.0`,mode:n?`pure`:`global`,copyright:`© 2014-2025 Denis Pushkarev (zloirock.ru)`,license:`https://github.com/zloirock/core-js/blob/v3.43.0/LICENSE`,source:`https://github.com/zloirock/core-js`})}),be=y((e,t)=>{var n=ye();t.exports=function(e,t){return n[e]||(n[e]=t||{})}}),xe=y((e,t)=>{var n=j(),r=Object;t.exports=function(e){return r(n(e))}}),Se=y((e,t)=>{var n=w(),r=xe(),i=n({}.hasOwnProperty);t.exports=Object.hasOwn||function(e,t){return i(r(e),t)}}),Ce=y((e,t)=>{var n=w(),r=0,i=Math.random(),a=n(1.1.toString);t.exports=function(e){return`Symbol(`+(e===void 0?``:e)+`)_`+a(++r+i,36)}}),M=y((e,t)=>{var n=b(),r=be(),i=Se(),a=Ce(),o=ue(),s=de(),c=n.Symbol,l=r(`wks`),u=s?c.for||c:c&&c.withoutSetter||a;t.exports=function(e){return i(l,e)||(l[e]=o&&i(c,e)?c[e]:u(`Symbol.`+e)),l[e]}}),we=y((e,t)=>{var n=k(),r=ie(),i=fe(),a=he(),o=ge(),s=M(),c=TypeError,l=s(`toPrimitive`);t.exports=function(e,t){if(!r(e)||i(e))return e;var s=a(e,l),u;if(s){if(t===void 0&&(t=`default`),u=n(s,e,t),!r(u)||i(u))return u;throw new c(`Can't convert object to primitive value`)}return t===void 0&&(t=`number`),o(e,t)}}),Te=y((e,t)=>{var n=we(),r=fe();t.exports=function(e){var t=n(e,`string`);return r(t)?t:t+``}}),Ee=y((e,t)=>{var n=b(),r=ie(),i=n.document,a=r(i)&&r(i.createElement);t.exports=function(e){return a?i.createElement(e):{}}}),De=y((e,t)=>{var n=O(),r=x(),i=Ee();t.exports=!n&&!r(function(){return Object.defineProperty(i(`div`),`a`,{get:function(){return 7}}).a!==7})}),Oe=y(e=>{var t=O(),n=k(),r=A(),i=ee(),a=re(),o=Te(),s=Se(),c=De(),l=Object.getOwnPropertyDescriptor;e.f=t?l:function(e,t){if(e=a(e),t=o(t),c)try{return l(e,t)}catch{}if(s(e,t))return i(!n(r.f,e,t),e[t])}}),ke=y((e,t)=>{var n=x(),r=D(),i=/#|\.prototype\./,a=function(e,t){var i=s[o(e)];return i===l?!0:i===c?!1:r(t)?n(t):!!t},o=a.normalize=function(e){return String(e).replace(i,`.`).toLowerCase()},s=a.data={},c=a.NATIVE=`N`,l=a.POLYFILL=`P`;t.exports=a}),Ae=y((e,t)=>{var n=E(),r=me(),i=S(),a=n(n.bind);t.exports=function(e,t){return r(e),t===void 0?e:i?a(e,t):function(){return e.apply(t,arguments)}}}),je=y((e,t)=>{var n=O(),r=x();t.exports=n&&r(function(){return Object.defineProperty(function(){},`prototype`,{value:42,writable:!1}).prototype!==42})}),Me=y((e,t)=>{var n=ie(),r=String,i=TypeError;t.exports=function(e){if(n(e))return e;throw new i(r(e)+` is not an object`)}}),Ne=y(e=>{var t=O(),n=De(),r=je(),i=Me(),a=Te(),o=TypeError,s=Object.defineProperty,c=Object.getOwnPropertyDescriptor,l=`enumerable`,u=`configurable`,d=`writable`;e.f=t?r?function(e,t,n){if(i(e),t=a(t),i(n),typeof e==`function`&&t===`prototype`&&`value`in n&&d in n&&!n[d]){var r=c(e,t);r&&r[d]&&(e[t]=n.value,n={configurable:u in n?n[u]:r[u],enumerable:l in n?n[l]:r[l],writable:!1})}return s(e,t,n)}:s:function(e,t,r){if(i(e),t=a(t),i(r),n)try{return s(e,t,r)}catch{}if(`get`in r||`set`in r)throw new o(`Accessors not supported`);return`value`in r&&(e[t]=r.value),e}}),Pe=y((e,t)=>{var n=O(),r=Ne(),i=ee();t.exports=n?function(e,t,n){return r.f(e,t,i(1,n))}:function(e,t,n){return e[t]=n,e}}),N=y((e,t)=>{var n=b(),r=C(),i=E(),a=D(),o=Oe().f,s=ke(),c=ae(),l=Ae(),u=Pe(),d=Se();ye();var f=function(e){var t=function(n,i,a){if(this instanceof t){switch(arguments.length){case 0:return new e;case 1:return new e(n);case 2:return new e(n,i)}return new e(n,i,a)}return r(e,this,arguments)};return t.prototype=e.prototype,t};t.exports=function(e,t){var r=e.target,p=e.global,m=e.stat,h=e.proto,g=p?n:m?n[r]:n[r]&&n[r].prototype,_=p?c:c[r]||u(c,r,{})[r],v=_.prototype,y,b,x,S,C,w,T,E,D;for(S in t)y=s(p?S:r+(m?`.`:`#`)+S,e.forced),b=!y&&g&&d(g,S),w=_[S],b&&(e.dontCallGetSet?(D=o(g,S),T=D&&D.value):T=g[S]),C=b&&T?T:t[S],!(!y&&!h&&typeof w==typeof C)&&(E=e.bind&&b?l(C,n):e.wrap&&b?f(C):h&&a(C)?i(C):C,(e.sham||C&&C.sham||w&&w.sham)&&u(E,`sham`,!0),u(_,S,E),h&&(x=r+`Prototype`,d(c,x)||u(c,x,{}),u(c[x],S,C),e.real&&v&&(y||!v[S])&&u(v,S,C)))}}),Fe=y((e,t)=>{var n=be(),r=Ce(),i=n(`keys`);t.exports=function(e){return i[e]||(i[e]=r(e))}}),Ie=y((e,t)=>{t.exports=!x()(function(){function e(){}return e.prototype.constructor=null,Object.getPrototypeOf(new e)!==e.prototype})}),Le=y((e,t)=>{var n=Se(),r=D(),i=xe(),a=Fe(),o=Ie(),s=a(`IE_PROTO`),c=Object,l=c.prototype;t.exports=o?c.getPrototypeOf:function(e){var t=i(e);if(n(t,s))return t[s];var a=t.constructor;return r(a)&&t instanceof a?a.prototype:t instanceof c?l:null}}),Re=y((e,t)=>{var n=Math.ceil,r=Math.floor;t.exports=Math.trunc||function(e){var t=+e;return(t>0?r:n)(t)}}),ze=y((e,t)=>{var n=Re();t.exports=function(e){var t=+e;return t!==t||t===0?0:n(t)}}),Be=y((e,t)=>{var n=ze(),r=Math.max,i=Math.min;t.exports=function(e,t){var a=n(e);return a<0?r(a+t,0):i(a,t)}}),Ve=y((e,t)=>{var n=ze(),r=Math.min;t.exports=function(e){var t=n(e);return t>0?r(t,9007199254740991):0}}),He=y((e,t)=>{var n=Ve();t.exports=function(e){return n(e.length)}}),Ue=y((e,t)=>{var n=re(),r=Be(),i=He(),a=function(e){return function(t,a,o){var s=n(t),c=i(s);if(c===0)return!e&&-1;var l=r(o,c),u;if(e&&a!==a){for(;c>l;)if(u=s[l++],u!==u)return!0}else for(;c>l;l++)if((e||l in s)&&s[l]===a)return e||l||0;return!e&&-1}};t.exports={includes:a(!0),indexOf:a(!1)}}),We=y((e,t)=>{t.exports={}}),Ge=y((e,t)=>{var n=w(),r=Se(),i=re(),a=Ue().indexOf,o=We(),s=n([].push);t.exports=function(e,t){var n=i(e),c=0,l=[],u;for(u in n)!r(o,u)&&r(n,u)&&s(l,u);for(;t.length>c;)r(n,u=t[c++])&&(~a(l,u)||s(l,u));return l}}),Ke=y((e,t)=>{t.exports=[`constructor`,`hasOwnProperty`,`isPrototypeOf`,`propertyIsEnumerable`,`toLocaleString`,`toString`,`valueOf`]}),qe=y((e,t)=>{var n=Ge(),r=Ke();t.exports=Object.keys||function(e){return n(e,r)}}),Je=y((e,t)=>{var n=O(),r=x(),i=w(),a=Le(),o=qe(),s=re(),c=A().f,l=i(c),u=i([].push),d=n&&r(function(){var e=Object.create(null);return e[2]=2,!l(e,2)}),f=function(e){return function(t){for(var r=s(t),i=o(r),c=d&&a(r)===null,f=i.length,p=0,m=[],h;f>p;)h=i[p++],(!n||(c?h in r:l(r,h)))&&u(m,e?[h,r[h]]:r[h]);return m}};t.exports={entries:f(!0),values:f(!1)}}),Ye=y(()=>{var e=N(),t=Je().values;e({target:`Object`,stat:!0},{values:function(e){return t(e)}})}),Xe=y((e,t)=>{Ye(),t.exports=ae().Object.values}),Ze=y((e,t)=>{t.exports=Xe()}),Qe=y((e,t)=>{t.exports=Ze()}),$e=y((e,t)=>{t.exports=function(){}}),et=y(()=>{var e=N(),t=Ue().includes,n=x(),r=$e();e({target:`Array`,proto:!0,forced:n(function(){return![,].includes()})},{includes:function(e){return t(this,e,arguments.length>1?arguments[1]:void 0)}}),r(`includes`)}),tt=y((e,t)=>{t.exports=oe()}),nt=y((e,t)=>{et(),t.exports=tt()(`Array`,`includes`)}),rt=y((e,t)=>{t.exports=nt()}),it=y((e,t)=>{t.exports=rt()}),at=y(()=>{var e=N(),t=Je().entries;e({target:`Object`,stat:!0},{entries:function(e){return t(e)}})}),ot=y((e,t)=>{at(),t.exports=ae().Object.entries}),st=y((e,t)=>{t.exports=ot()}),ct=y((e,t)=>{t.exports=st()}),lt=y((e,t)=>{t.exports={}}),ut=y((e,t)=>{var n=b(),r=D(),i=n.WeakMap;t.exports=r(i)&&/native code/.test(String(i))}),dt=y((e,t)=>{var n=ut(),r=b(),i=ie(),a=Pe(),o=Se(),s=ye(),c=Fe(),l=We(),u=`Object already initialized`,d=r.TypeError,f=r.WeakMap,p,m,h,g=function(e){return h(e)?m(e):p(e,{})},_=function(e){return function(t){var n;if(!i(t)||(n=m(t)).type!==e)throw new d(`Incompatible receiver, `+e+` required`);return n}};n||s.state?(v=s.state||=new f,v.get=v.get,v.has=v.has,v.set=v.set,p=function(e,t){if(v.has(e))throw new d(u);return t.facade=e,v.set(e,t),t},m=function(e){return v.get(e)||{}},h=function(e){return v.has(e)}):(y=c(`state`),l[y]=!0,p=function(e,t){if(o(e,y))throw new d(u);return t.facade=e,a(e,y,t),t},m=function(e){return o(e,y)?e[y]:{}},h=function(e){return o(e,y)});var v,y;t.exports={set:p,get:m,has:h,enforce:g,getterFor:_}}),ft=y((e,t)=>{var n=O(),r=Se(),i=Function.prototype,a=n&&Object.getOwnPropertyDescriptor,o=r(i,`name`);t.exports={EXISTS:o,PROPER:o&&function(){}.name===`something`,CONFIGURABLE:o&&(!n||n&&a(i,`name`).configurable)}}),pt=y(e=>{var t=O(),n=je(),r=Ne(),i=Me(),a=re(),o=qe();e.f=t&&!n?Object.defineProperties:function(e,t){i(e);for(var n=a(t),s=o(t),c=s.length,l=0,u;c>l;)r.f(e,u=s[l++],n[u]);return e}}),mt=y((e,t)=>{t.exports=oe()(`document`,`documentElement`)}),ht=y((e,t)=>{var n=Me(),r=pt(),i=Ke(),a=We(),o=mt(),s=Ee(),c=Fe(),l=`>`,u=`<`,d=`prototype`,f=`script`,p=c(`IE_PROTO`),m=function(){},h=function(e){return u+f+l+e+u+`/`+f+l},g=function(e){e.write(h(``)),e.close();var t=e.parentWindow.Object;return e=null,t},_=function(){var e=s(`iframe`),t=`java`+f+`:`,n;return e.style.display=`none`,o.appendChild(e),e.src=String(t),n=e.contentWindow.document,n.open(),n.write(h(`document.F=Object`)),n.close(),n.F},v,y=function(){try{v=new ActiveXObject(`htmlfile`)}catch{}y=typeof document<`u`?document.domain&&v?g(v):_():g(v);for(var e=i.length;e--;)delete y[d][i[e]];return y()};a[p]=!0,t.exports=Object.create||function(e,t){var i;return e===null?i=y():(m[d]=n(e),i=new m,m[d]=null,i[p]=e),t===void 0?i:r.f(i,t)}}),gt=y((e,t)=>{var n=Pe();t.exports=function(e,t,r,i){return i&&i.enumerable?e[t]=r:n(e,t,r),e}}),_t=y((e,t)=>{var n=x(),r=D(),i=ie(),a=ht(),o=Le(),s=gt(),c=M(),l=_e(),u=c(`iterator`),d=!1,f,p,m;[].keys&&(m=[].keys(),`next`in m?(p=o(o(m)),p!==Object.prototype&&(f=p)):d=!0),!i(f)||n(function(){var e={};return f[u].call(e)!==e})?f={}:l&&(f=a(f)),r(f[u])||s(f,u,function(){return this}),t.exports={IteratorPrototype:f,BUGGY_SAFARI_ITERATORS:d}}),vt=y((e,t)=>{var n=M()(`toStringTag`),r={};r[n]=`z`,t.exports=String(r)===`[object z]`}),yt=y((e,t)=>{var n=vt(),r=D(),i=T(),a=M()(`toStringTag`),o=Object,s=i(function(){return arguments}())===`Arguments`,c=function(e,t){try{return e[t]}catch{}};t.exports=n?i:function(e){var t,n,l;return e===void 0?`Undefined`:e===null?`Null`:typeof(n=c(t=o(e),a))==`string`?n:s?i(t):(l=i(t))===`Object`&&r(t.callee)?`Arguments`:l}}),bt=y((e,t)=>{var n=vt(),r=yt();t.exports=n?{}.toString:function(){return`[object `+r(this)+`]`}}),xt=y((e,t)=>{var n=vt(),r=Ne().f,i=Pe(),a=Se(),o=bt(),s=M()(`toStringTag`);t.exports=function(e,t,c,l){var u=c?e:e&&e.prototype;u&&(a(u,s)||r(u,s,{configurable:!0,value:t}),l&&!n&&i(u,`toString`,o))}}),St=y((e,t)=>{var n=_t().IteratorPrototype,r=ht(),i=ee(),a=xt(),o=lt(),s=function(){return this};t.exports=function(e,t,c,l){var u=t+` Iterator`;return e.prototype=r(n,{next:i(+!l,c)}),a(e,u,!1,!0),o[u]=s,e}}),Ct=y((e,t)=>{var n=w(),r=me();t.exports=function(e,t,i){try{return n(r(Object.getOwnPropertyDescriptor(e,t)[i]))}catch{}}}),wt=y((e,t)=>{var n=ie();t.exports=function(e){return n(e)||e===null}}),Tt=y((e,t)=>{var n=wt(),r=String,i=TypeError;t.exports=function(e){if(n(e))return e;throw new i(`Can't set `+r(e)+` as a prototype`)}}),Et=y((e,t)=>{var n=Ct(),r=ie(),i=j(),a=Tt();t.exports=Object.setPrototypeOf||(`__proto__`in{}?function(){var e=!1,t={},o;try{o=n(Object.prototype,`__proto__`,`set`),o(t,[]),e=t instanceof Array}catch{}return function(t,n){return i(t),a(n),r(t)&&(e?o(t,n):t.__proto__=n),t}}():void 0)}),Dt=y((e,t)=>{var n=N(),r=k(),i=_e(),a=ft(),o=D(),s=St(),c=Le(),l=Et(),u=xt(),d=Pe(),f=gt(),p=M(),m=lt(),h=_t(),g=a.PROPER,_=a.CONFIGURABLE,v=h.IteratorPrototype,y=h.BUGGY_SAFARI_ITERATORS,b=p(`iterator`),x=`keys`,S=`values`,C=`entries`,w=function(){return this};t.exports=function(e,t,a,p,h,T,E){s(a,t,p);var D=function(e){if(e===h&&te)return te;if(!y&&e&&e in A)return A[e];switch(e){case x:return function(){return new a(this,e)};case S:return function(){return new a(this,e)};case C:return function(){return new a(this,e)}}return function(){return new a(this)}},O=t+` Iterator`,k=!1,A=e.prototype,ee=A[b]||A[`@@iterator`]||h&&A[h],te=!y&&ee||D(h),ne=t===`Array`&&A.entries||ee,j,re,ie;if(ne&&(j=c(ne.call(new e)),j!==Object.prototype&&j.next&&(!i&&c(j)!==v&&(l?l(j,v):o(j[b])||f(j,b,w)),u(j,O,!0,!0),i&&(m[O]=w))),g&&h===S&&ee&&ee.name!==S&&(!i&&_?d(A,`name`,S):(k=!0,te=function(){return r(ee,this)})),h)if(re={values:D(S),keys:T?te:D(x),entries:D(C)},E)for(ie in re)(y||k||!(ie in A))&&f(A,ie,re[ie]);else n({target:t,proto:!0,forced:y||k},re);return(!i||E)&&A[b]!==te&&f(A,b,te,{name:h}),m[t]=te,re}}),Ot=y((e,t)=>{t.exports=function(e,t){return{value:e,done:t}}}),kt=y((e,t)=>{var n=re(),r=$e(),i=lt(),a=dt(),o=Ne().f,s=Dt(),c=Ot(),l=_e(),u=O(),d=`Array Iterator`,f=a.set,p=a.getterFor(d);t.exports=s(Array,`Array`,function(e,t){f(this,{type:d,target:n(e),index:0,kind:t})},function(){var e=p(this),t=e.target,n=e.index++;if(!t||n>=t.length)return e.target=null,c(void 0,!0);switch(e.kind){case`keys`:return c(n,!1);case`values`:return c(t[n],!1)}return c([n,t[n]],!1)},`values`);var m=i.Arguments=i.Array;if(r(`keys`),r(`values`),r(`entries`),!l&&u&&m.name!==`values`)try{o(m,`name`,{value:`values`})}catch{}}),At=y((e,t)=>{var n=M(),r=lt(),i=n(`iterator`),a=Array.prototype;t.exports=function(e){return e!==void 0&&(r.Array===e||a[i]===e)}}),jt=y((e,t)=>{var n=yt(),r=he(),i=ne(),a=lt(),o=M()(`iterator`);t.exports=function(e){if(!i(e))return r(e,o)||r(e,`@@iterator`)||a[n(e)]}}),Mt=y((e,t)=>{var n=k(),r=me(),i=Me(),a=pe(),o=jt(),s=TypeError;t.exports=function(e,t){var c=arguments.length<2?o(e):t;if(r(c))return i(n(c,e));throw new s(a(e)+` is not iterable`)}}),Nt=y((e,t)=>{var n=k(),r=Me(),i=he();t.exports=function(e,t,a){var o,s;r(e);try{if(o=i(e,`return`),!o){if(t===`throw`)throw a;return a}o=n(o,e)}catch(e){s=!0,o=e}if(t===`throw`)throw a;if(s)throw o;return r(o),a}}),Pt=y((e,t)=>{var n=Ae(),r=k(),i=Me(),a=pe(),o=At(),s=He(),c=se(),l=Mt(),u=jt(),d=Nt(),f=TypeError,p=function(e,t){this.stopped=e,this.result=t},m=p.prototype;t.exports=function(e,t,h){var g=h&&h.that,_=!!(h&&h.AS_ENTRIES),v=!!(h&&h.IS_RECORD),y=!!(h&&h.IS_ITERATOR),b=!!(h&&h.INTERRUPTED),x=n(t,g),S,C,w,T,E,D,O,k=function(e){return S&&d(S,`normal`),new p(!0,e)},A=function(e){return _?(i(e),b?x(e[0],e[1],k):x(e[0],e[1])):b?x(e,k):x(e)};if(v)S=e.iterator;else if(y)S=e;else{if(C=u(e),!C)throw new f(a(e)+` is not iterable`);if(o(C)){for(w=0,T=s(e);T>w;w++)if(E=A(e[w]),E&&c(m,E))return E;return new p(!1)}S=l(e,C)}for(D=v?e.next:S.next;!(O=r(D,S)).done;){try{E=A(O.value)}catch(e){d(S,`throw`,e)}if(typeof E==`object`&&E&&c(m,E))return E}return new p(!1)}}),Ft=y((e,t)=>{var n=O(),r=Ne(),i=ee();t.exports=function(e,t,a){n?r.f(e,t,i(0,a)):e[t]=a}}),It=y(()=>{var e=N(),t=Pt(),n=Ft();e({target:`Object`,stat:!0},{fromEntries:function(e){var r={};return t(e,function(e,t){n(r,e,t)},{AS_ENTRIES:!0}),r}})}),Lt=y((e,t)=>{kt(),It(),t.exports=ae().Object.fromEntries}),Rt=y((e,t)=>{t.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}}),zt=y(()=>{kt();var e=Rt(),t=b(),n=xt(),r=lt();for(i in e)n(t[i],i),r[i]=r.Array;var i}),Bt=y((e,t)=>{var n=Lt();zt(),t.exports=n}),Vt=y((e,t)=>{t.exports=Bt()}),Ht=y((e,t)=>{var n=b(),r=ce(),i=T(),a=function(e){return r.slice(0,e.length)===e};t.exports=function(){return a(`Bun/`)?`BUN`:a(`Cloudflare-Workers`)?`CLOUDFLARE`:a(`Deno/`)?`DENO`:a(`Node.js/`)?`NODE`:n.Bun&&typeof Bun.version==`string`?`BUN`:n.Deno&&typeof Deno.version==`object`?`DENO`:i(n.process)===`process`?`NODE`:n.window&&n.document?`BROWSER`:`REST`}()}),Ut=y((e,t)=>{t.exports=Ht()===`NODE`}),Wt=y((e,t)=>{var n=Ne();t.exports=function(e,t,r){return n.f(e,t,r)}}),Gt=y((e,t)=>{var n=oe(),r=Wt(),i=M(),a=O(),o=i(`species`);t.exports=function(e){var t=n(e);a&&t&&!t[o]&&r(t,o,{configurable:!0,get:function(){return this}})}}),Kt=y((e,t)=>{var n=se(),r=TypeError;t.exports=function(e,t){if(n(t,e))return e;throw new r(`Incorrect invocation`)}}),qt=y((e,t)=>{var n=w(),r=D(),i=ye(),a=n(Function.toString);r(i.inspectSource)||(i.inspectSource=function(e){return a(e)}),t.exports=i.inspectSource}),Jt=y((e,t)=>{var n=w(),r=x(),i=D(),a=yt(),o=oe(),s=qt(),c=function(){},l=o(`Reflect`,`construct`),u=/^\s*(?:class|function)\b/,d=n(u.exec),f=!u.test(c),p=function(e){if(!i(e))return!1;try{return l(c,[],e),!0}catch{return!1}},m=function(e){if(!i(e))return!1;switch(a(e)){case`AsyncFunction`:case`GeneratorFunction`:case`AsyncGeneratorFunction`:return!1}try{return f||!!d(u,s(e))}catch{return!0}};m.sham=!0,t.exports=!l||r(function(){var e;return p(p.call)||!p(Object)||!p(function(){e=!0})||e})?m:p}),Yt=y((e,t)=>{var n=Jt(),r=pe(),i=TypeError;t.exports=function(e){if(n(e))return e;throw new i(r(e)+` is not a constructor`)}}),Xt=y((e,t)=>{var n=Me(),r=Yt(),i=ne(),a=M()(`species`);t.exports=function(e,t){var o=n(e).constructor,s;return o===void 0||i(s=n(o)[a])?t:r(s)}}),Zt=y((e,t)=>{t.exports=w()([].slice)}),Qt=y((e,t)=>{var n=TypeError;t.exports=function(e,t){if(e<t)throw new n(`Not enough arguments`);return e}}),$t=y((e,t)=>{var n=ce();t.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(n)}),en=y((e,t)=>{var n=b(),r=C(),i=Ae(),a=D(),o=Se(),s=x(),c=mt(),l=Zt(),u=Ee(),d=Qt(),f=$t(),p=Ut(),m=n.setImmediate,h=n.clearImmediate,g=n.process,_=n.Dispatch,v=n.Function,y=n.MessageChannel,S=n.String,w=0,T={},E=`onreadystatechange`,O,k,A,ee;s(function(){O=n.location});var te=function(e){if(o(T,e)){var t=T[e];delete T[e],t()}},ne=function(e){return function(){te(e)}},j=function(e){te(e.data)},re=function(e){n.postMessage(S(e),O.protocol+`//`+O.host)};(!m||!h)&&(m=function(e){d(arguments.length,1);var t=a(e)?e:v(e),n=l(arguments,1);return T[++w]=function(){r(t,void 0,n)},k(w),w},h=function(e){delete T[e]},p?k=function(e){g.nextTick(ne(e))}:_&&_.now?k=function(e){_.now(ne(e))}:y&&!f?(A=new y,ee=A.port2,A.port1.onmessage=j,k=i(ee.postMessage,ee)):n.addEventListener&&a(n.postMessage)&&!n.importScripts&&O&&O.protocol!==`file:`&&!s(re)?(k=re,n.addEventListener(`message`,j,!1)):k=E in u(`script`)?function(e){c.appendChild(u(`script`))[E]=function(){c.removeChild(this),te(e)}}:function(e){setTimeout(ne(e),0)}),t.exports={set:m,clear:h}}),tn=y((e,t)=>{var n=b(),r=O(),i=Object.getOwnPropertyDescriptor;t.exports=function(e){if(!r)return n[e];var t=i(n,e);return t&&t.value}}),nn=y((e,t)=>{var n=function(){this.head=null,this.tail=null};n.prototype={add:function(e){var t={item:e,next:null},n=this.tail;n?n.next=t:this.head=t,this.tail=t},get:function(){var e=this.head;if(e)return(this.head=e.next)===null&&(this.tail=null),e.item}},t.exports=n}),rn=y((e,t)=>{var n=ce();t.exports=/ipad|iphone|ipod/i.test(n)&&typeof Pebble<`u`}),an=y((e,t)=>{var n=ce();t.exports=/web0s(?!.*chrome)/i.test(n)}),on=y((e,t)=>{var n=b(),r=tn(),i=Ae(),a=en().set,o=nn(),s=$t(),c=rn(),l=an(),u=Ut(),d=n.MutationObserver||n.WebKitMutationObserver,f=n.document,p=n.process,m=n.Promise,h=r(`queueMicrotask`),g,_,v,y,x;h||=(S=new o,C=function(){var e,t;for(u&&(e=p.domain)&&e.exit();t=S.get();)try{t()}catch(e){throw S.head&&g(),e}e&&e.enter()},!s&&!u&&!l&&d&&f?(_=!0,v=f.createTextNode(``),new d(C).observe(v,{characterData:!0}),g=function(){v.data=_=!_}):!c&&m&&m.resolve?(y=m.resolve(void 0),y.constructor=m,x=i(y.then,y),g=function(){x(C)}):u?g=function(){p.nextTick(C)}:(a=i(a,n),g=function(){a(C)}),function(e){S.head||g(),S.add(e)});var S,C;t.exports=h}),sn=y((e,t)=>{t.exports=function(e,t){try{arguments.length===1?console.error(e):console.error(e,t)}catch{}}}),cn=y((e,t)=>{t.exports=function(e){try{return{error:!1,value:e()}}catch(e){return{error:!0,value:e}}}}),ln=y((e,t)=>{t.exports=b().Promise}),un=y((e,t)=>{var n=b(),r=ln(),i=D(),a=ke(),o=qt(),s=M(),c=Ht(),l=_e(),u=le(),d=r&&r.prototype,f=s(`species`),p=!1,m=i(n.PromiseRejectionEvent);t.exports={CONSTRUCTOR:a(`Promise`,function(){var e=o(r),t=e!==String(r);if(!t&&u===66||l&&!(d.catch&&d.finally))return!0;if(!u||u<51||!/native code/.test(e)){var n=new r(function(e){e(1)}),i=function(e){e(function(){},function(){})},a=n.constructor={};if(a[f]=i,p=n.then(function(){})instanceof i,!p)return!0}return!t&&(c===`BROWSER`||c===`DENO`)&&!m}),REJECTION_EVENT:m,SUBCLASSING:p}}),dn=y((e,t)=>{var n=me(),r=TypeError,i=function(e){var t,i;this.promise=new e(function(e,n){if(t!==void 0||i!==void 0)throw new r(`Bad Promise constructor`);t=e,i=n}),this.resolve=n(t),this.reject=n(i)};e.f=function(e){return new i(e)}}),fn=y(()=>{var e=N(),t=_e(),n=Ut(),r=b(),i=ae(),a=k(),o=gt(),s=Et(),c=xt(),l=Gt(),u=me(),d=D(),f=ie(),p=Kt(),m=Xt(),h=en().set,g=on(),_=sn(),v=cn(),y=nn(),x=dt(),S=ln(),C=un(),w=dn(),T=`Promise`,E=C.CONSTRUCTOR,O=C.REJECTION_EVENT,A=C.SUBCLASSING,ee=x.getterFor(T),te=x.set,ne=S&&S.prototype,j=S,re=ne,oe=r.TypeError,se=r.document,ce=r.process,le=w.f,ue=le,de=!!(se&&se.createEvent&&r.dispatchEvent),fe=`unhandledrejection`,pe=`rejectionhandled`,he=0,ge=1,ve=2,ye=1,be=2,xe,Se,Ce,M,we=function(e){var t;return f(e)&&d(t=e.then)?t:!1},Te=function(e,t){var n=t.value,r=t.state===ge,i=r?e.ok:e.fail,o=e.resolve,s=e.reject,c=e.domain,l,u,d;try{i?(r||(t.rejection===be&&Ae(t),t.rejection=ye),i===!0?l=n:(c&&c.enter(),l=i(n),c&&(c.exit(),d=!0)),l===e.promise?s(new oe(`Promise-chain cycle`)):(u=we(l))?a(u,l,o,s):o(l)):s(n)}catch(e){c&&!d&&c.exit(),s(e)}},Ee=function(e,t){e.notified||(e.notified=!0,g(function(){for(var n=e.reactions,r;r=n.get();)Te(r,e);e.notified=!1,t&&!e.rejection&&Oe(e)}))},De=function(e,t,n){var i,a;de?(i=se.createEvent(`Event`),i.promise=t,i.reason=n,i.initEvent(e,!1,!0),r.dispatchEvent(i)):i={promise:t,reason:n},!O&&(a=r[`on`+e])?a(i):e===fe&&_(`Unhandled promise rejection`,n)},Oe=function(e){a(h,r,function(){var t=e.facade,r=e.value,i=ke(e),a;if(i&&(a=v(function(){n?ce.emit(`unhandledRejection`,r,t):De(fe,t,r)}),e.rejection=n||ke(e)?be:ye,a.error))throw a.value})},ke=function(e){return e.rejection!==ye&&!e.parent},Ae=function(e){a(h,r,function(){var t=e.facade;n?ce.emit(`rejectionHandled`,t):De(pe,t,e.value)})},je=function(e,t,n){return function(r){e(t,r,n)}},Me=function(e,t,n){e.done||(e.done=!0,n&&(e=n),e.value=t,e.state=ve,Ee(e,!0))},Ne=function(e,t,n){if(!e.done){e.done=!0,n&&(e=n);try{if(e.facade===t)throw new oe(`Promise can't be resolved itself`);var r=we(t);r?g(function(){var n={done:!1};try{a(r,t,je(Ne,n,e),je(Me,n,e))}catch(t){Me(n,t,e)}}):(e.value=t,e.state=ge,Ee(e,!1))}catch(t){Me({done:!1},t,e)}}};if(E&&(j=function(e){p(this,re),u(e),a(xe,this);var t=ee(this);try{e(je(Ne,t),je(Me,t))}catch(e){Me(t,e)}},re=j.prototype,xe=function(e){te(this,{type:T,done:!1,notified:!1,parent:!1,reactions:new y,rejection:!1,state:he,value:null})},xe.prototype=o(re,`then`,function(e,t){var r=ee(this),i=le(m(this,j));return r.parent=!0,i.ok=d(e)?e:!0,i.fail=d(t)&&t,i.domain=n?ce.domain:void 0,r.state===he?r.reactions.add(i):g(function(){Te(i,r)}),i.promise}),Se=function(){var e=new xe,t=ee(e);this.promise=e,this.resolve=je(Ne,t),this.reject=je(Me,t)},w.f=le=function(e){return e===j||e===Ce?new Se(e):ue(e)},!t&&d(S)&&ne!==Object.prototype)){M=ne.then,A||o(ne,`then`,function(e,t){var n=this;return new j(function(e,t){a(M,n,e,t)}).then(e,t)},{unsafe:!0});try{delete ne.constructor}catch{}s&&s(ne,re)}e({global:!0,constructor:!0,wrap:!0,forced:E},{Promise:j}),Ce=i.Promise,c(j,T,!1,!0),l(T)}),pn=y((e,t)=>{var n=M()(`iterator`),r=!1;try{i=0,a={next:function(){return{done:!!i++}},return:function(){r=!0}},a[n]=function(){return this},Array.from(a,function(){throw 2})}catch{}var i,a;t.exports=function(e,t){try{if(!t&&!r)return!1}catch{return!1}var i=!1;try{var a={};a[n]=function(){return{next:function(){return{done:i=!0}}}},e(a)}catch{}return i}}),mn=y((e,t)=>{var n=ln(),r=pn();t.exports=un().CONSTRUCTOR||!r(function(e){n.all(e).then(void 0,function(){})})}),hn=y(()=>{var e=N(),t=k(),n=me(),r=dn(),i=cn(),a=Pt();e({target:`Promise`,stat:!0,forced:mn()},{all:function(e){var o=this,s=r.f(o),c=s.resolve,l=s.reject,u=i(function(){var r=n(o.resolve),i=[],s=0,u=1;a(e,function(e){var n=s++,a=!1;u++,t(r,o,e).then(function(e){a||(a=!0,i[n]=e,--u||c(i))},l)}),--u||c(i)});return u.error&&l(u.value),s.promise}})}),gn=y(()=>{var e=N(),t=_e(),n=un().CONSTRUCTOR,r=ln(),i=oe(),a=D(),o=gt(),s=r&&r.prototype;e({target:`Promise`,proto:!0,forced:n,real:!0},{catch:function(e){return this.then(void 0,e)}}),!t&&a(r)&&(c=i(`Promise`).prototype.catch,s.catch!==c&&o(s,`catch`,c,{unsafe:!0}));var c}),_n=y(()=>{var e=N(),t=k(),n=me(),r=dn(),i=cn(),a=Pt();e({target:`Promise`,stat:!0,forced:mn()},{race:function(e){var o=this,s=r.f(o),c=s.reject,l=i(function(){var r=n(o.resolve);a(e,function(e){t(r,o,e).then(s.resolve,c)})});return l.error&&c(l.value),s.promise}})}),vn=y(()=>{var e=N(),t=dn(),n=un().CONSTRUCTOR;e({target:`Promise`,stat:!0,forced:n},{reject:function(e){var n=t.f(this),r=n.reject;return r(e),n.promise}})}),yn=y((e,t)=>{var n=Me(),r=ie(),i=dn();t.exports=function(e,t){if(n(e),r(t)&&t.constructor===e)return t;var a=i.f(e),o=a.resolve;return o(t),a.promise}}),bn=y(()=>{var e=N(),t=oe(),n=_e(),r=ln(),i=un().CONSTRUCTOR,a=yn(),o=t(`Promise`),s=n&&!i;e({target:`Promise`,stat:!0,forced:n||i},{resolve:function(e){return a(s&&this===o?r:this,e)}})}),xn=y(()=>{fn(),hn(),gn(),_n(),vn(),bn()}),Sn=y(()=>{var e=N(),t=_e(),n=ln(),r=x(),i=oe(),a=D(),o=Xt(),s=yn(),c=gt(),l=n&&n.prototype;e({target:`Promise`,proto:!0,real:!0,forced:!!n&&r(function(){l.finally.call({then:function(){}},function(){})})},{finally:function(e){var t=o(this,i(`Promise`)),n=a(e);return this.then(n?function(n){return s(t,e()).then(function(){return n})}:e,n?function(n){return s(t,e()).then(function(){throw n})}:e)}}),!t&&a(n)&&(u=i(`Promise`).prototype.finally,l.finally!==u&&c(l,`finally`,u,{unsafe:!0}));var u}),Cn=y((e,t)=>{xn(),Sn(),t.exports=tt()(`Promise`,`finally`)}),wn=y((e,t)=>{t.exports=Cn()}),Tn=y((e,t)=>{t.exports=wn()}),En=y(()=>{var e=N(),t=xe(),n=He(),r=ze(),i=$e();e({target:`Array`,proto:!0},{at:function(e){var i=t(this),a=n(i),o=r(e),s=o>=0?o:a+o;return s<0||s>=a?void 0:i[s]}}),i(`at`)}),Dn=y((e,t)=>{En(),t.exports=tt()(`Array`,`at`)}),On=y((e,t)=>{t.exports=Dn()}),kn=y((e,t)=>{t.exports=On()}),An=y((e,t)=>{var n=yt(),r=String;t.exports=function(e){if(n(e)===`Symbol`)throw TypeError(`Cannot convert a Symbol value to a string`);return r(e)}}),jn=y(()=>{var e=N(),t=w(),n=j(),r=ze(),i=An(),a=x(),o=t(``.charAt);e({target:`String`,proto:!0,forced:a(function(){return`𠮷`.at(-2)!==`\ud842`})},{at:function(e){var t=i(n(this)),a=t.length,s=r(e),c=s>=0?s:a+s;return c<0||c>=a?void 0:o(t,c)}})}),Mn=y((e,t)=>{jn(),t.exports=tt()(`String`,`at`)}),Nn=y((e,t)=>{t.exports=Mn()}),Pn=y((e,t)=>{t.exports=Nn()}),Fn=y((e,t)=>{var n=T();t.exports=Array.isArray||function(e){return n(e)===`Array`}}),In=y((e,t)=>{var n=TypeError,r=9007199254740991;t.exports=function(e){if(e>r)throw n(`Maximum allowed index exceeded`);return e}}),Ln=y((e,t)=>{var n=Fn(),r=He(),i=In(),a=Ae(),o=function(e,t,s,c,l,u,d,f){for(var p=l,m=0,h=d?a(d,f):!1,g,_;m<c;)m in s&&(g=h?h(s[m],m,t):s[m],u>0&&n(g)?(_=r(g),p=o(e,t,g,_,p,u-1)-1):(i(p+1),e[p]=g),p++),m++;return p};t.exports=o}),Rn=y((e,t)=>{var n=Fn(),r=Jt(),i=ie(),a=M()(`species`),o=Array;t.exports=function(e){var t;return n(e)&&(t=e.constructor,r(t)&&(t===o||n(t.prototype))?t=void 0:i(t)&&(t=t[a],t===null&&(t=void 0))),t===void 0?o:t}}),zn=y((e,t)=>{var n=Rn();t.exports=function(e,t){return new(n(e))(t===0?0:t)}}),Bn=y(()=>{var e=N(),t=Ln(),n=me(),r=xe(),i=He(),a=zn();e({target:`Array`,proto:!0},{flatMap:function(e){var o=r(this),s=i(o),c;return n(e),c=a(o,0),c.length=t(c,o,o,s,0,1,e,arguments.length>1?arguments[1]:void 0),c}})}),Vn=y(()=>{$e()(`flatMap`)}),Hn=y((e,t)=>{Bn(),Vn(),t.exports=tt()(`Array`,`flatMap`)}),Un=y((e,t)=>{t.exports=Hn()}),Wn=y((e,t)=>{t.exports=Un()}),Gn=y((e,t)=>{t.exports=`
7
+ \v\f\r \xA0               \u2028\u2029`}),Kn=y((e,t)=>{var n=w(),r=j(),i=An(),a=Gn(),o=n(``.replace),s=RegExp(`^[`+a+`]+`),c=RegExp(`(^|[^`+a+`])[`+a+`]+$`),l=function(e){return function(t){var n=i(r(t));return e&1&&(n=o(n,s,``)),e&2&&(n=o(n,c,`$1`)),n}};t.exports={start:l(1),end:l(2),trim:l(3)}}),qn=y((e,t)=>{var n=ft().PROPER,r=x(),i=Gn(),a=`​…᠎`;t.exports=function(e){return r(function(){return!!i[e]()||a[e]()!==a||n&&i[e].name!==e})}}),Jn=y((e,t)=>{var n=Kn().start;t.exports=qn()(`trimStart`)?function(){return n(this)}:``.trimStart}),Yn=y(()=>{var e=N(),t=Jn();e({target:`String`,proto:!0,name:`trimStart`,forced:``.trimLeft!==t},{trimLeft:t})}),Xn=y(()=>{Yn();var e=N(),t=Jn();e({target:`String`,proto:!0,name:`trimStart`,forced:``.trimStart!==t},{trimStart:t})}),Zn=y((e,t)=>{Xn(),t.exports=tt()(`String`,`trimLeft`)}),Qn=y((e,t)=>{t.exports=Zn()}),$n=y((e,t)=>{t.exports=Qn()}),er=y((e,t)=>{var n=ie(),r=T(),i=M()(`match`);t.exports=function(e){var t;return n(e)&&((t=e[i])===void 0?r(e)===`RegExp`:!!t)}}),tr=y((e,t)=>{var n=b(),r=x(),i=n.RegExp;t.exports={correct:!r(function(){var e=!0;try{i(`.`,`d`)}catch{e=!1}var t={},n=``,r=e?`dgimsy`:`gimsy`,a=function(e,r){Object.defineProperty(t,e,{get:function(){return n+=r,!0}})},o={dotAll:`s`,global:`g`,ignoreCase:`i`,multiline:`m`,sticky:`y`};for(var s in e&&(o.hasIndices=`d`),o)a(s,o[s]);return Object.getOwnPropertyDescriptor(i.prototype,`flags`).get.call(t)!==r||n!==r})}}),nr=y((e,t)=>{var n=Me();t.exports=function(){var e=n(this),t=``;return e.hasIndices&&(t+=`d`),e.global&&(t+=`g`),e.ignoreCase&&(t+=`i`),e.multiline&&(t+=`m`),e.dotAll&&(t+=`s`),e.unicode&&(t+=`u`),e.unicodeSets&&(t+=`v`),e.sticky&&(t+=`y`),t}}),rr=y((e,t)=>{var n=k(),r=Se(),i=se(),a=tr(),o=nr(),s=RegExp.prototype;t.exports=a.correct?function(e){return e.flags}:function(e){return!a.correct&&i(s,e)&&!r(e,`flags`)?n(o,e):e.flags}}),ir=y((e,t)=>{var n=w(),r=xe(),i=Math.floor,a=n(``.charAt),o=n(``.replace),s=n(``.slice),c=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,l=/\$([$&'`]|\d{1,2})/g;t.exports=function(e,t,n,u,d,f){var p=n+e.length,m=u.length,h=l;return d!==void 0&&(d=r(d),h=c),o(f,h,function(r,o){var c;switch(a(o,0)){case`$`:return`$`;case`&`:return e;case"`":return s(t,0,n);case`'`:return s(t,p);case`<`:c=d[s(o,1,-1)];break;default:var l=+o;if(l===0)return r;if(l>m){var f=i(l/10);return f===0?r:f<=m?u[f-1]===void 0?a(o,1):u[f-1]+a(o,1):r}c=u[l-1]}return c===void 0?``:c})}}),ar=y(()=>{var e=N(),t=k(),n=w(),r=j(),i=D(),a=ie(),o=er(),s=An(),c=he(),l=rr(),u=ir(),d=M(),f=_e(),p=d(`replace`),m=TypeError,h=n(``.indexOf),g=n(``.replace),_=n(``.slice),v=Math.max;e({target:`String`,proto:!0},{replaceAll:function(e,n){var d=r(this),y,b,x,S,C,w,T,E,D,O,k=0,A=``;if(a(e)){if(y=o(e),y&&(b=s(r(l(e))),!~h(b,`g`)))throw new m("`.replaceAll` does not allow non-global regexes");if(x=c(e,p),x)return t(x,e,d,n);if(f&&y)return g(s(d),e,n)}for(S=s(d),C=s(e),w=i(n),w||(n=s(n)),T=C.length,E=v(1,T),D=h(S,C);D!==-1;)O=w?s(n(C,D,S)):u(C,S,D,[],void 0,n),A+=_(S,k,D)+O,k=D+T,D=D+E>S.length?-1:h(S,C,D+E);return k<S.length&&(A+=_(S,k)),A}})}),or=y((e,t)=>{ar(),t.exports=tt()(`String`,`replaceAll`)}),sr=y((e,t)=>{t.exports=or()}),cr=y((e,t)=>{t.exports=sr()}),lr=y((e,t)=>{var n=ze(),r=An(),i=j(),a=RangeError;t.exports=function(e){var t=r(i(this)),o=``,s=n(e);if(s<0||s===1/0)throw new a(`Wrong number of repetitions`);for(;s>0;(s>>>=1)&&(t+=t))s&1&&(o+=t);return o}}),ur=y((e,t)=>{var n=w(),r=Ve(),i=An(),a=lr(),o=j(),s=n(a),c=n(``.slice),l=Math.ceil,u=function(e){return function(t,n,a){var u=i(o(t)),d=r(n),f=u.length,p=a===void 0?` `:i(a),m,h;return d<=f||p===``?u:(m=d-f,h=s(p,l(m/p.length)),h.length>m&&(h=c(h,0,m)),e?u+h:h+u)}};t.exports={start:u(!1),end:u(!0)}}),dr=y((e,t)=>{var n=ce();t.exports=/Version\/10(?:\.\d+){1,2}(?: [\w./]+)?(?: Mobile\/\w+)? Safari\//.test(n)}),fr=y(()=>{var e=N(),t=ur().start;e({target:`String`,proto:!0,forced:dr()},{padStart:function(e){return t(this,e,arguments.length>1?arguments[1]:void 0)}})}),pr=y((e,t)=>{fr(),t.exports=tt()(`String`,`padStart`)}),mr=y((e,t)=>{t.exports=pr()}),hr=y((e,t)=>{t.exports=mr()}),gr=`2.0.156-dev.04ce2cd1.0`,_r;(e=>{e.STOPPED=`stopped`,e.READY=`ready`,e.PLAYING=`playing`,e.PAUSED=`paused`})(_r||={});var vr;(e=>{e.MPEG=`MPEG`,e.DASH=`DASH`,e.DASH_SEP=`DASH_SEP`,e.DASH_SEP_VK=`DASH_SEP`,e.DASH_WEBM=`DASH_WEBM`,e.DASH_WEBM_AV1=`DASH_WEBM_AV1`,e.DASH_STREAMS=`DASH_STREAMS`,e.DASH_WEBM_VK=`DASH_WEBM`,e.DASH_ONDEMAND=`DASH_ONDEMAND`,e.DASH_ONDEMAND_VK=`DASH_ONDEMAND`,e.DASH_LIVE=`DASH_LIVE`,e.DASH_LIVE_CMAF=`DASH_LIVE_CMAF`,e.DASH_LIVE_WEBM=`DASH_LIVE_WEBM`,e.HLS=`HLS`,e.HLS_ONDEMAND=`HLS_ONDEMAND`,e.HLS_JS=`HLS`,e.HLS_FMP4=`HLS_FMP4`,e.HLS_LIVE=`HLS_LIVE`,e.HLS_LIVE_CMAF=`HLS_LIVE_CMAF`,e.WEB_RTC_LIVE=`WEB_RTC_LIVE`})(vr||={});var yr;(e=>{e.AV1=`av1`,e.VP9=`vp9`,e.AVC1=`avc1`,e.HEV1=`hev1`})(yr||={});var br;(e=>{e.NOT_AVAILABLE=`NOT_AVAILABLE`,e.AVAILABLE=`AVAILABLE`,e.CONNECTING=`CONNECTING`,e.CONNECTED=`CONNECTED`})(br||={});var xr;(e=>{e.HTTP1=`http1`,e.HTTP2=`http2`,e.QUIC=`quic`})(xr||={});var Sr;(e=>{e.NONE=`none`,e.INLINE=`inline`,e.FULLSCREEN=`fullscreen`,e.SECOND_SCREEN=`second_screen`,e.PIP=`pip`,e.INVISIBLE=`invisible`})(Sr||={});var Cr;(e=>{e.TRAFFIC_SAVING=`traffic_saving`,e.HIGH_QUALITY=`high_quality`,e.UNKNOWN=`unknown`})(Cr||={});var wr=v(Qe(),1),Tr=v(it(),1);import{assertNever as Er,assertNonNullable as Dr,isNonNullable as Or,ValueSubject as kr,Subject as Ar,Subscription as jr,merge as Mr,observableFrom as Nr,fromEvent as Pr,map as Fr,tap as Ir,filterChanged as Lr,isNullable as Rr,ErrorCategory as zr}from"@vkontakte/videoplayer-shared/es2015";var Br=e=>new Promise((t,n)=>{let r=document.createElement(`script`);r.setAttribute(`src`,e),r.onload=()=>t(),r.onerror=e=>n(e),document.body.appendChild(r)});class Vr{constructor(e){i(this,`connection$`,new kr(void 0)),i(this,`castState$`,new kr(`NOT_AVAILABLE`)),i(this,`errorEvent$`,new Ar),i(this,`contentId`,void 0),i(this,`realCastState$`,new kr(`NOT_AVAILABLE`)),i(this,`subscription`,new jr),i(this,`log`,void 0),i(this,`params`,void 0),i(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 n=Or(window.chrome?.cast),r=!!window.__onGCastApiAvailable;n?this.initializeCastApi():(window.__onGCastApiAvailable=e=>{delete window.__onGCastApiAvailable,e&&!this.isDestroyed&&this.initializeCastApi()},r||Br(`https://www.gstatic.com/cv/js/sender/v1/cast_sender.js?loadCastFramework=1`).catch(()=>this.errorEvent$.next({id:`ChromecastLoading`,category:zr.NETWORK,message:`Script loading failed!`})))}connect(){cast.framework.CastContext.getInstance()?.requestSession()}disconnect(){var e;(e=cast.framework.CastContext.getInstance())==null||(e=e.getCurrentSession())==null||e.endSession(!0)}stopMedia(){return new Promise((e,t)=>{var n;(n=cast.framework.CastContext.getInstance())==null||(n=n.getCurrentSession())==null||(n=n.getMediaSession())==null||n.stop(new chrome.cast.media.StopRequest,e,t)})}toggleConnection(){Or(this.connection$.getValue())?this.disconnect():this.connect()}setVolume(e){let t=this.connection$.getValue();Rr(t)||(t.remotePlayer.volumeLevel=e,t.remotePlayerController.setVolumeLevel())}setMuted(e){let t=this.connection$.getValue();Rr(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),n=cast.framework.CastContext.getInstance();this.subscription.add(Pr(n,cast.framework.CastContextEventType.SESSION_STATE_CHANGED).subscribe(e=>{switch(e.sessionState){case cast.framework.SessionState.SESSION_STARTED:case cast.framework.SessionState.SESSION_STARTING:case cast.framework.SessionState.SESSION_RESUMED:var t;this.contentId=(t=n.getCurrentSession())==null||(t=t.getMediaSession())==null||(t=t.media)==null?void 0:t.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 Er(e.sessionState)}})).add(Mr(Pr(n,cast.framework.CastContextEventType.CAST_STATE_CHANGED).pipe(Ir(e=>{this.log({message:`[cast.framework.RemotePlayerEventType.CAST_STATE_CHANGED]: ${JSON.stringify(e)}`})}),Fr(e=>e.castState)),Nr([n.getCastState()])).pipe(Lr(),Fr(Hr),Ir(e=>{this.log({message:`realCastState$: ${e}`})})).subscribe(this.realCastState$)).add(this.realCastState$.subscribe(r=>{let i=r===`CONNECTED`,a=Or(this.connection$.getValue());if(i&&!a){var o;let r=n.getCurrentSession();Dr(r);let i=r.getCastDevice(),a=(o=r.getMediaSession())==null||(o=o.media)==null?void 0:o.contentId;(Rr(a)||a===this.contentId)&&(this.log({message:`connection created`}),this.connection$.next({remotePlayer:e,remotePlayerController:t,session:r,castDevice:i}))}else !i&&a&&(this.log({message:`connection destroyed`}),this.connection$.next(void 0));this.castState$.next(r===`CONNECTED`?Or(this.connection$.getValue())?`CONNECTED`:`AVAILABLE`:r)}))}initializeCastApi(){let e,t,n;try{e=cast.framework.CastContext.getInstance(),t=chrome.cast.media.DEFAULT_MEDIA_RECEIVER_APP_ID,n=chrome.cast.AutoJoinPolicy.ORIGIN_SCOPED}catch{return}try{e.setOptions({receiverApplicationId:this.params.receiverApplicationId??t,autoJoinPolicy:n}),this.initListeners()}catch(e){this.errorEvent$.next({id:`ChromecastInitializer`,category:zr.EXTERNAL_API,message:`[initializeCastApi] failed`,thrown:e})}}}var Hr=e=>{switch(e){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 Er(e)}};import{assertNonNullable as Ur,combine as Wr,debounce as Gr,ErrorCategory as Kr,filter as qr,filterChanged as Jr,isNonNullable as Yr,isNullable as Xr,map as Zr,Subscription as Qr,ValueSubject as $r}from"@vkontakte/videoplayer-shared/es2015";import{assertNever as ei,assertNonNullable as ti,ErrorCategory as ni,getHighestQuality as ri,isNonNullable as ii}from"@vkontakte/videoplayer-shared/es2015";import{assertNever as ai}from"@vkontakte/videoplayer-shared/es2015";var oi=(e,t=0,n=0)=>{switch(n){case 0:return e.replace(`_offset_p`,t===0?``:`_`+t.toFixed(0));case 1:{if(t===0)return e;let n=new URL(e);return n.searchParams.append(`playback_shift`,t.toFixed(0)),n.toString()}case 2:{let n=new URL(e);return!n.searchParams.get(`offset_p`)&&t===0?e:(n.searchParams.set(`offset_p`,t.toFixed(0)),n.toString())}default:ai(n)}return e},si=(e,t)=>{switch(t){case 0:return NaN;case 1:{let t=new URL(e);return Number(t.searchParams.get(`playback_shift`))}case 2:{let t=new URL(e);return Number(t.searchParams.get(`offset_p`)??0)}default:ai(t)}},ci=e=>{let{source:t,format:n,meta:r,output:i}=e,a,o,s;switch(n){case`MPEG`:{let e=t[n];ti(e);let r=ri(Object.keys(e));ti(r);let i=e[r];ti(i),a=i,o=`video/mp4`,s=li();break}case`HLS`:case`HLS_FMP4`:case`HLS_ONDEMAND`:{let e=t[n];ti(e),a=e.url,o=`application/x-mpegurl`,s=li();break}case`DASH_SEP`:case`DASH_ONDEMAND`:case`DASH_WEBM`:case`DASH_WEBM_AV1`:case`DASH_STREAMS`:{let e=t[n];ti(e),a=e.url,o=`application/dash+xml`,s=li();break}case`DASH_LIVE_CMAF`:{let e=t[n];ti(e),a=e.url,o=`application/dash+xml`,s=ui();break}case`HLS_LIVE`:case`HLS_LIVE_CMAF`:{let e=t[n];ti(e),a=oi(e.url),o=`application/x-mpegurl`,s=ui();break}case`DASH_LIVE`:case`WEB_RTC_LIVE`:{let e=`Unsupported format for Chromecast`,t=Error(e);throw i.error$.next({id:`ChromecastProvider.createMediaInfo()`,category:ni.VIDEO_PIPELINE,message:e,thrown:t}),t}case`DASH`:case`DASH_LIVE_WEBM`:throw Error(`${n} is no longer supported`);default:return ei(n)}let c=di(r.videoId??a,o);c.contentUrl=a,c.streamType=s,c.metadata=fi();let{title:l,subtitle:u}=r;return ii(l)&&(c.metadata.title=l),ii(u)&&(c.metadata.subtitle=u),c};function li(){var e;return((e=chrome.cast)==null||(e=e.media)==null||(e=e.StreamType)==null?void 0:e.BUFFERED)??`BUFFERED`}function ui(){var e;return((e=chrome.cast)==null||(e=e.media)==null||(e=e.StreamType)==null?void 0:e.LIVE)??`LIVE`}function di(e,t){var n;return!((n=chrome.cast)==null||(n=n.media)==null)&&n.MediaInfo?new chrome.cast.media.MediaInfo(e,t):{contentId:e,contentType:t,metadata:{title:``,subtitle:``},streamType:li()}}function fi(){var e;return!((e=chrome.cast)==null||(e=e.media)==null)&&e.GenericMediaMetadata?new chrome.cast.media.GenericMediaMetadata:{images:[],metadataType:0,releaseDate:``,subtitle:``,title:``,releaseYear:1970,type:0}}var P=(e,t,n=!1)=>{let r=e.getTransition();(n||!r||r.to===t)&&e.setState(t)};class pi{constructor(e){i(this,`params`,void 0),i(this,`interval`,0),i(this,`startVideoPosition`,void 0),i(this,`startTs`,void 0),this.params=e}start(e=0){clearInterval(this.interval),this.startVideoPosition=e,this.startTs=Date.now(),this.interval=window.setInterval(()=>{let e=(Date.now()-this.startTs)/1e3,t=this.startVideoPosition+e;this.params.output.position$.next(t)},1e3)}pause(){clearInterval(this.interval)}destroy(){clearInterval(this.interval)}}import{assertNever as mi}from"@vkontakte/videoplayer-shared/es2015";import{isBrowserWindow as hi,ValueSubject as gi}from"@vkontakte/videoplayer-shared/es2015";var _i=v(it(),1);import{getWindow as vi}from"@vkontakte/videoplayer-shared/es2015";class yi{constructor(){i(this,`_current`,void 0),i(this,`_current_version`,void 0),i(this,`_chromeVersion`,void 0),i(this,`_firefoxVersion`,void 0),i(this,`_safariVersion`,void 0),i(this,`_operaVersion`,void 0),i(this,`_edgeVersion`,void 0),i(this,`_yandexVersion`,void 0),i(this,`_isMiuiBrowser`,!1)}get current(){return this._current}get isChrome(){return this.current===`Chrome`}get isChromiumBased(){return _i.default([`Chrome`,`Chromium`,`Opera`,`Yandex`,`Edge`,`SamsungBrowser`],this.current)}get isFirefox(){return this.current===`Firefox`}get isSafari(){return this.current===`Safari`}get isOpera(){return this.current===`Opera`}get isEdge(){return this.current===`Edge`}get isYandex(){return this.current===`Yandex`}get isSamsungBrowser(){return this.current===`SamsungBrowser`}get currentVersion(){return this._current_version}get chromeVersion(){return this._chromeVersion}get firefoxVersion(){return this._firefoxVersion}get safariVersion(){return this._safariVersion}get operaVersion(){return this._operaVersion}get edgeVersion(){return this._edgeVersion}get yandexVersion(){return this._yandexVersion}get isMiuiBrowser(){return this._isMiuiBrowser}detect(){let{userAgent:e}=navigator;try{let t=/yabrowser/i.test(e)?`Yandex`:void 0,n=/samsungbrowser/i.test(e)?`SamsungBrowser`:void 0,r=/chrome|crios/i.test(e)?`Chrome`:void 0,i=/chromium/i.test(e)?`Chromium`:void 0,a=/firefox|fxios/i.test(e)?`Firefox`:void 0,o=/webkit|safari|khtml/i.test(e)?`Safari`:void 0,s=/opr\//i.test(e)?`Opera`:void 0,c=/edg/i.test(e)?`Edge`:void 0;this._isMiuiBrowser=/(XiaoMi)|(MiuiBrowser)/i.test(e),this._current=t||n||a||s||c||r||i||o||`Rest`}catch(e){console.error(e)}this.isChrome&&this.detectChromeVersion(),this.isFirefox&&this.detectFirefoxVersion(),this.isSafari&&this.detectSafariVersion(),this.isOpera&&this.detectOperaVersion(),this.isEdge&&this.detectEdgeVersion(),this.isYandex&&this.detectYandexVersion()}detectVersion(e){try{let{userAgent:t}=vi().navigator,n=t.match(e);if(!n)return;let r=n[1],i=parseInt(r,10);if(!isNaN(i))return this._current_version=i,i}catch(e){console.error(e)}}detectChromeVersion(){this._chromeVersion=this.detectVersion(/Chrome\/(\d+\.\d+)/)}detectFirefoxVersion(){this._firefoxVersion=this.detectVersion(/Firefox\/(\d+\.\d+)/)}detectSafariVersion(){this._safariVersion=this.detectVersion(/Version\/(\d+)/)}detectOperaVersion(){this._operaVersion=this.detectVersion(/OPR\/(\d+\.\d+)/)}detectEdgeVersion(){this._edgeVersion=this.detectVersion(/Edg\/(\d+\.\d+)/)}detectYandexVersion(){this._yandexVersion=this.detectVersion(/YaBrowser\/(\d+\.\d+\.\d+)/)}}var bi=v(it(),1);import{getWindow as xi,isBrowserWindow as Si}from"@vkontakte/videoplayer-shared/es2015";var Ci=()=>{var e;return/Mobile|mini|Fennec|Android|iP(ad|od|hone)/.test(navigator.appVersion??navigator.userAgent)||((e=navigator)==null||(e=e.userAgentData)==null?void 0:e.mobile)};class wi{constructor(e){i(this,`_displayChecker`,void 0),i(this,`_isMobile`,void 0),i(this,`_current`,void 0),i(this,`_iosVersion`,void 0),i(this,`_highEntropyValues`,{}),i(this,`_os`,{name:`Unknown`,version:`Unknown`,full:`Unknown`}),i(this,`_details`,{vendor:`Unknown`,model:`Unknown`}),this._displayChecker=e}get current(){return this._current}get os(){return this._os}get details(){return this._details}get isIOS(){return this._highEntropyValues.platform===`iOS`||this.os.name.toLowerCase().includes(`ios`)||bi.default([`iPhone`,`iPad`,`iPod`],this.current)}get isMac(){return this._highEntropyValues.platform===`macOS`||this.os.name.toLowerCase().includes(`mac`)||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.os.name.toLowerCase().includes(`android`)||this.current===`Android`}get isWindows(){return this.os.name.toLowerCase().includes(`windows`)}get isLinux(){return this.os.name.toLowerCase().includes(`linux`)&&!this.isAndroid}get isMobile(){return this._highEntropyValues.mobile||this._isMobile}get iOSVersion(){return this._iosVersion}detect(){let e=xi();if(!Si(e))return;let{userAgent:t}=e.navigator;try{this._isMobile=Ci()}catch(e){console.error(`DeviceChecker: calling isMobile error - `,e)}this.detectDevice(t),this.detectOS(t),this.detectDeviceDetails(t),this.detectHighEntropyValues(),this.isIOS&&this.detectIOSVersion()}detectHighEntropyValues(){var e=this;return a(function*(){let t=xi();if(!Si(t))return;let{userAgentData:n}=t.navigator;if(n?.getHighEntropyValues){let t=yield n.getHighEntropyValues([`architecture`,`bitness`,`brands`,`mobile`,`platform`,`formFactor`,`model`,`platformVersion`,`wow64`]);e._highEntropyValues=t,t.platform&&(e._os.name=e.normalizeOSName(t.platform),t.platformVersion&&(e._os.version=e.normalizeOSVersion(t.platformVersion),e._os.full=`${e._os.name} ${e._os.version}`)),t.model&&(e._details.model=t.model)}})()}detectDevice(e){try{let t=/android/i.test(e)?`Android`:void 0,n=/iphone/i.test(e)?`iPhone`:void 0,r=/ipad/i.test(e)?`iPad`:void 0,i=/ipod/i.test(e)?`iPod`:void 0,a=/mac/i.test(e)?`Mac`:void 0,o=/webOS|BlackBerry|IEMobile|Opera Mini/i.test(e)?`RestMobile`:void 0;this._current=t||n||r||i||o||a||`Desktop`}catch(e){console.error(`DeviceChecker: device detection error - `,e)}}detectOS(e){try{for(let[t,n]of[[/(windows nt) (6\.[23]); arm/i,[`Windows RT`]],[/(windows nt) (6\.3); arm/i,[`Windows RT 8.1`]],[/(windows (?:phone|mobile|iot))(?: os)?[/ ]?([\d.]+)/i,[`Windows Mobile`,2]],[/(windows)[/ ](xp|vista|7|8(\.1)?|10|11|2000|me)/i,[1,1]],[/windows nt ?([\d.]+)/i,[`Windows`,1]],[/(windows)[/ ](95|98|me|2000|xp|vista|7|8|8\.1|10|11)/i,[1,2]],[/(iphone os|cpu iphone os) ([\d_.]+)/i,[`iOS`,2]],[/(ipad os|cpu os) ([\d_.]+)/i,[`iPadOS`,2]],[/(ipod os|cpu ipod os) ([\d_.]+)/i,[`iOS`,2]],[/(?:ios|os) ([\d_.]+) like mac os x/i,[`iOS`,1]],[/cfnetwork\/.+darwin/i,[`iOS`]],[/(mac os x) ?([\d_.]+)/i,[`macOS`,2]],[/(macintosh|mac os)/i,[`macOS`]],[/(android) ([\d.]+)/i,[1,2]],[/(harmonyos)[/ ]?([\d.]*)/i,[`HarmonyOS`,2]],[/\b(ubuntu|debian|fedora|centos|arch|linux)(?:[-/ ]([\w.]+))?/i,[1,2]],[/(cros)\D*([\d.]+)/i,[`Chrome OS`,2]],[/(freebsd|openbsd|netbsd|dragonfly)[/ ]?([\w.]*)/i,[1,2]],[/(sunos|solaris)?([\d.]*)/i,[`Solaris`,2]],[/(aix)?([\d.]*)/i,[`AIX`,2]]]){let r=e.match(t);if(r){let t=n.length>0,i=n.length>1,a=`Unknown`,o=`Unknown`;if(t){let e=n[0];typeof e==`number`?e<r.length&&r[e]!==void 0&&(a=r[e]):a=e}if(i){let e=n[1];typeof e==`number`?e<r.length&&r[e]!==void 0&&(o=r[e]):e!==void 0&&(o=e)}else r[2]===void 0?r[1]!==void 0&&t&&typeof n[0]==`string`&&(o=r[1]):o=r[2];a=this.normalizeOSName(a),o=this.normalizeOSVersion(o,a),a===`iOS`&&/ipad/i.test(e)?a=`iPadOS`:a===`iPadOS`&&/ip(hone|od)/i.test(e)&&(a=`iOS`),this._os={name:a,version:o||`Unknown`,full:o&&o!==`Unknown`?`${a} ${o}`:a};break}}}catch(e){console.error(`DeviceChecker: OS detection error - `,e)}}normalizeOSName(e){if(!e)return`Unknown`;let t=e.toLowerCase();return t.includes(`windows`)?`Windows`:t.includes(`mac os`)||t.includes(`macintosh`)?`macOS`:t.includes(`iphone`)||t.includes(`ios`)?`iOS`:t.includes(`ipados`)?`iPadOS`:t.includes(`android`)?`Android`:t.includes(`harmonyos`)?`HarmonyOS`:t.includes(`linux`)?`Linux`:t.includes(`cros`)?`Chrome OS`:t.includes(`freebsd`)?`FreeBSD`:t.includes(`openbsd`)?`OpenBSD`:t.includes(`solaris`)||t.includes(`sunos`)?`Solaris`:t.includes(`aix`)?`AIX`:e}normalizeOSVersion(e,t){if(!e)return`Unknown`;if(e!==`Unknown`&&(e=e.replace(/_/g,`.`),t===`Windows`)){let t=parseFloat(e);if(!isNaN(t)){if(t>=11)return`11`;if(t>=10)return`10`;if(t===6.3)return`8.1`;if(t===6.2)return`8`;if(t===6.1)return`7`;if(t===6)return`Vista`;if(t===5.1||t===5.2)return`XP`;if(t===5)return`2000`;if(t===4)return`NT 4.0`}}return e}detectDeviceDetails(e){try{for(let[t,n]of[[/(iphone)/i,[`Apple`,`iPhone`]],[/(ipad)/i,[`Apple`,`iPad`]],[/(ipod)/i,[`Apple`,`iPod`]],[/(macintosh)/i,[`Apple`,`Macintosh`]],[/(windows[\w\-_ ]*phone)/i,[`Microsoft`,0]],[/(windows nt|win64|win32|wow64)/i,[`Microsoft`,`PC`]],[/\b(sch-i[89]0\d|shw-m380s|sm-[ptxs]\w{2,4}|gt-[pn]\d{2,4}|sgh-t8[56]9|nexus 10)/i,[`Samsung`,1]],[/\b((?:s[cgp]h|gt|sm)-(?![lr])\w+|sc[g-]?\d+a?|galaxy nexus)/i,[`Samsung`,1]],[/samsung[- ]((?!sm-[lr]|browser)[-\w]+)/i,[`Samsung`,1]],[/sec-(sgh\w+)/i,[`Samsung`,1]],[/smart-tv.+(samsung)/i,[`Samsung`,`Smart TV`]],[/(samsung).*tizen/i,[`Samsung`,`Smart TV`]],[/(pixel (?:c|tablet|[0-9a-z ]+))/i,[`Google`,1]],[/(pixelbook(?: go)?)/i,[`Google`,1]],[/nexus [0-9]/i,[`Google`,0]],[/(redmi[-_ ]?(?:note|k)?[\w_ ]+)(?: bui|\))/i,[`Xiaomi`,1]],[/\b(mi[\w\-_ ]+)(?: bui|\))/i,[`Xiaomi`,1]],[/\b(poco[\w ]+)(?: bui|\))/i,[`Xiaomi`,1]],[/\b(hm[-_ ]?note?[\w ]*)(?: bui|\))/i,[`Xiaomi`,1]],[/\b(?:xiao)?mi[\w\-_ ]+pad/i,[`Xiaomi`,0]],[/(?:huawei|honor) ?([-\w ]+)[;)]/i,[`Huawei`,1]],[/\b(nexus 6p|\w{2,4}e?-[atu]?[ln][\dx][\dc][adnt]?)\b(?!.+d\/s)/i,[`Huawei`,1]],[/\b((?:ag[rs][2356]?k?|bah[234]?|bg[2o]|bt[kv]|cmr|cpn|db[ry]2?|jdn2|got|kob2?k?|mon|pce|scm|sht?|[tw]gr|vrd)-[ad]?[lw][0125][09]b?)/i,[`Huawei`,1]],[/(?:one)?(?:plus)? ?([a\d0]\d\d\d?)(?: b|\))/i,[`OnePlus`,1]],[/droid.+; (cph2[3-6]\d[13579]|((?:gm|hd)19|(?:ac|be|in|kb)20|(?:d[en]|eb|le|mt)21|ne22)[0-2]\d)(?: bui|\))/i,[`OnePlus`,1]],[/(oneplus)[-_ ]?([-\w]*)/i,[`OnePlus`,2]],[/\b(rmx[1-3]\d{3})(?: bui|;|\))/i,[`Realme`,1]],[/(realme)[-_ ]?([-\w]*)/i,[`Realme`,2]],[/; (\w+) bui.+ oppo/i,[`OPPO`,1]],[/\b(cph[12]\d{3}|p(?:af|c[al]|d\w|e[ar])[mt]\d0|x9007|a101op)\b/i,[`OPPO`,1]],[/\b(opd2(\d{3}a?))(?: bui|\))/i,[`OPPO`,1]],[/(oppo)[-_ ]?([-\w]*)/i,[`OPPO`,2]],[/; vivo (\w+)(?: bui|\))/i,[`Vivo`,1]],[/\b(v[12]\d{3}\w?[at])(?: bui|;)/i,[`Vivo`,1]],[/(vivo)[-_ ]?([-\w]*)/i,[`Vivo`,2]],[/\bmot(?:orola)?[- ]([\w\s]+)(\)| bui)/i,[`Motorola`,1]],[/((?:moto(?! 360)[-\w() ]+|xt\d{3,4}[cgkosw+]?[-\d]*|nexus 6)(?= bui|\)))/i,[`Motorola`,1]],[/\b(milestone|droid(?:[2-4x]| (?:bionic|x2|pro|razr))?:?( 4g)?)\b/i,[`Motorola`,0]],[/\b(mz60\d|xoom[2 ]{0,2}) build\//i,[`Motorola`,0]],[/droid.+; ([a-z]?\d[0-2]{2}[a-z]{2}|[c-g]\d{4}|so[-gl]\w+|xq-[a-z]{2}\d\d)(?= bui|\))/i,[`Sony`,1]],[/sony tablet [ps]/i,[`Sony`,`Xperia Tablet`]],[/\b(?:sony)?sgp\w+(?: bui|\))/i,[`Sony`,0]],[/(sony)[-_ ]?([-\w]*)/i,[`Sony`,2]],[/\blg[-e;/ ]+(?!.*(?:browser|netcast|android tv|watch|webos))(\w+)/i,[`LG`,1]],[/\blg-?([\d\w]+) bui/i,[`LG`,1]],[/(lm(?:-?f100[nv]?|-[\w.]+)(?= bui|\))|nexus [45])/i,[`LG`,1]],[/((?=lg)?[vl]k-?\d{3}) bui/i,[`LG`,0]],[/(lg)[-_ ]?([-\w]*)/i,[`LG`,2]],[/(?:maemo|nokia).*(n900|lumia \d+|rm-\d+)/i,[`Nokia`,1]],[/nokia[-_ ]?(([-\w. ]*?))(?: bui|\)|;|\/)/i,[`Nokia`,1]],[/(nokia) (t[12][01])/i,[`Nokia`,2]],[/(?:\b|asus_)(transfo[prime ]{4,10} \w+|eeepc|slider \w+|nexus 7|padfone|p00[cj])/i,[`ASUS`,1]],[/(?:asus[-_ ])?(zenfone[\w\-_ ]*)/i,[`ASUS`,1]],[/(rog[\w\-_ ]*)/i,[`ASUS`,1]],[/(asus)[-_ ]?([-\w]*)/i,[`ASUS`,2]],[/lenovo[-_ ]?([-\w ]+?)(?: bui|\)|\/)/i,[`Lenovo`,1]],[/(ideatab[-\w ]+|602lv|d-42a|a101lv|a2109a|a3500-hv|s[56]000|pb-6505[my]|tb-?x?\d{3,4}(?:f[cu]|xu|[av])|yt\d?-[jx]?\d+[lfmx])(?: bui|;|\)|\/)/i,[`Lenovo`,1]],[/(thinkpad[\w\-_ ]*)/i,[`Lenovo`,0]],[/(kf[a-z]{2}[a-z]*)(?: bui|\))/i,[`Amazon`,1]],[/(alexa)webm/i,[`Amazon`,`Echo`]],[/(fire[\w\-_ ]*)/i,[`Amazon`,0]],[/(amazon)[-_ ]?([-\w]*)/i,[`Amazon`,2]],[/(?:blackberry|\(bb10;) (\w+)/i,[`BlackBerry`,1]],[/\b((?:bb[a-f]|st[hv])100-\d)/i,[`BlackBerry`,1]],[/(playbook);[-\w),; ]+(rim)/i,[`BlackBerry`,1]],[/(microsoft); (lumia[\w ]+)/i,[`Microsoft`,2]],[/(surface duo)/i,[`Microsoft`,`Surface Duo`]],[/(surface[\w\-_ ]*)/i,[`Microsoft`,0]],[/(zte)[- ]([\w ]+?)(?: bui|\/|\))/i,[`ZTE`,2]],[/(htc)[-;_ ]{1,2}([\w ]+(?=\)| bui)|\w+)/i,[`HTC`,2]],[/(alcatel|tcl)[-_ ]?([-\w]*)/i,[1,2]],[/(meizu)[-_ ]?([-\w]*)/i,[`Meizu`,2]],[/(tecno)[-_ ]?([-\w]*)/i,[`Tecno`,2]],[/(infinix)[-_ ]?([-\w]*)/i,[`Infinix`,2]],[/(micromax)[-_ ]?([-\w]*)/i,[`Micromax`,2]],[/(lava)[-_ ]?([-\w]*)/i,[`Lava`,2]],[/(panasonic)[-_ ]?([-\w]*)/i,[`Panasonic`,2]],[/(sharp)\/?([-\w]*)/i,[`Sharp`,2]],[/(benq)[-_ ]?([-\w]*)/i,[`BenQ`,2]],[/(palm)[-_ ]?([-\w]*)/i,[`Palm`,2]],[/(vertu)[-_ ]?([-\w]*)/i,[`Vertu`,2]],[/(gionee)[-_ ]?([-\w]*)/i,[`Gionee`,2]],[/(doogee)[-_ ]?([-\w]*)/i,[`Doogee`,2]],[/(ulefone)[-_ ]?([-\w]*)/i,[`Ulefone`,2]],[/(blackview)[-_ ]?([-\w]*)/i,[`Blackview`,2]],[/(cubot)[-_ ]?([-\w]*)/i,[`Cubot`,2]],[/(umidigi)[-_ ]?([-\w]*)/i,[`UMIDIGI`,2]],[/(oukitel)[-_ ]?([-\w]*)/i,[`Oukitel`,2]],[/(fairphone)[-_ ]?([-\w]*)/i,[`Fairphone`,2]],[/(cat)[-_ ]?([-\w]*)/i,[`Cat`,2]],[/(energy)[-_ ]?([-\w]*)/i,[`Energizer`,2]],[/(land rover)[-_ ]?([-\w]*)/i,[`Land Rover`,2]],[/(shield[\w\-_ ]*)/i,[`Nvidia`,0]],[/(crkey)/i,[`Google`,`Chromecast`]],[/(roku)[\dx]*/i,[`Roku`,0]],[/(apple)[-_ ]?tv/i,[`Apple`,`TV`]],[/(amazon)[-_ ]?tv/i,[`Amazon`,`Fire TV`]],[/(google)[-_ ]?tv/i,[`Google`,`TV`]],[/(smart[\w\-_ ]*tv)/i,[0,`Smart TV`]],[/(playstation[\w\-_ ]*)/i,[`Sony`,0]],[/(nintendo[\w\-_ ]*)/i,[`Nintendo`,0]],[/(xbox[\w\-_ ]*)/i,[`Microsoft`,0]],[/(googlebot)/i,[`Google`,`Bot`]],[/(bingbot)/i,[`Microsoft`,`Bing Bot`]],[/(yandexbot)/i,[`Yandex`,`Bot`]],[/(slackbot)/i,[`Slack`,`Bot`]],[/(twitterbot)/i,[`Twitter`,`Bot`]],[/(facebookbot)/i,[`Facebook`,`Bot`]],[/(linkedinbot)/i,[`LinkedIn`,`Bot`]],[/(tesla)[-_ ]?([-\w]*)/i,[`Tesla`,2]],[/(raspberry[\w\-_ ]*)/i,[`Raspberry Pi`,0]]]){let r=e.match(t);if(r){let e=n[0],t=n[1],i=typeof e==`number`?r[e]===void 0?`Unknown`:this.normalizeVendorName(r[e]):this.normalizeVendorName(e),a=`Unknown`;typeof t==`number`?a=r[t]===void 0?`Unknown`:r[t]:t===void 0?r[1]===void 0?r[0]!==void 0&&(a=r[0]):a=r[1]:a=t,a=this.normalizeModelName(a,i),this.details.vendor=i,this.details.model=a;break}}}catch(e){console.error(`DeviceChecker: device details detection error - `,e)}}normalizeVendorName(e){return e?{apple:`Apple`,samsung:`Samsung`,google:`Google`,xiaomi:`Xiaomi`,huawei:`Huawei`,oneplus:`OnePlus`,oppo:`OPPO`,vivo:`Vivo`,realme:`Realme`,motorola:`Motorola`,sony:`Sony`,lg:`LG`,nokia:`Nokia`,asus:`ASUS`,lenovo:`Lenovo`,amazon:`Amazon`,blackberry:`BlackBerry`,microsoft:`Microsoft`,zte:`ZTE`,htc:`HTC`,alcatel:`Alcatel`,tcl:`TCL`,meizu:`Meizu`,tecno:`Tecno`,infinix:`Infinix`,micromax:`Micromax`,lava:`Lava`,panasonic:`Panasonic`,sharp:`Sharp`,benq:`BenQ`,palm:`Palm`,honor:`Honor`,nvidia:`NVIDIA`,roku:`Roku`}[e.toLowerCase()]||e.charAt(0).toUpperCase()+e.slice(1).toLowerCase():`Unknown`}normalizeModelName(e,t){if(!e||e===`Unknown`)return e;if(e===`0`)return`Unknown`;let n=e.replace(/^build\//i,``).replace(/\s+bui$/i,``).replace(/\)$/,``).replace(/[;,)]/g,``).replace(/\s*\(.*?\)\s*/g,``).trim(),r=t.toLowerCase();return r.includes(`samsung`)?n=n.replace(/^(sm-|gt-|sgh-|sch-)/i,``):r.includes(`xiaomi`)?n=n.replace(/^(mi[\s\-_]*|redmi[\s\-_]*)/i,``):r.includes(`oneplus`)?n=n.replace(/^oneplus[\s\-_]*/i,``):r.includes(`google`)&&(n=n.replace(/^(pixel[\s\-_]*|nexus[\s\-_]*)/i,``)),n=n.replace(/_/g,` `).replace(/-/g,` `).replace(/\s+/g,` `).trim(),n?(n.length>0&&/^[a-z]/.test(n)&&(n=n.charAt(0).toUpperCase()+n.slice(1)),n):`Unknown`}detectIOSVersion(){try{let e=xi();if(!Si(e))return;if(this._highEntropyValues.platformVersion){let e=this._highEntropyValues.platformVersion.split(`.`).slice(0,2).join(`.`);this._iosVersion=parseFloat(e);return}if(this._os.version!==`Unknown`){let e=this._os.version.split(`.`),t=e.length>=2?`${e[0]}.${e[1]}`:e[0];this._iosVersion=parseFloat(t);return}let t=e.navigator.userAgent.match(/OS (\d+(_\d+)?)/i);t?.[1]&&(this._iosVersion=parseFloat(t[1].replace(/_/g,`.`)))}catch(e){console.error(`DeviceChecker: iOS version detection error - `,e)}}}import{getWindow as Ti,isBrowserWindow as Ei}from"@vkontakte/videoplayer-shared/es2015";class Di{constructor(){i(this,`_maxTouchPoints`,void 0),i(this,`_height`,void 0),i(this,`_width`,void 0),i(this,`_isHdr`,void 0),i(this,`_pixelRatio`,void 0),i(this,`_screenHeight`,void 0),i(this,`_screenWidth`,void 0),i(this,`_colorDepth`,void 0)}get isTouch(){return typeof this._maxTouchPoints==`number`?this._maxTouchPoints>1:`ontouchstart`in Ti()}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 e=Ti();if(!Ei(e))return;let{navigator:t,screen:n}=e,{maxTouchPoints:r}=t;try{this._maxTouchPoints=r??0,this._isHdr=!!e.matchMedia(`(dynamic-range: high)`)?.matches,this._colorDepth=n.colorDepth}catch(e){console.error(e)}try{this._pixelRatio=e.devicePixelRatio||1,this._height=n.height,this._width=n.width,this._height=n.height,this._screenHeight=this._height*this._pixelRatio,this._screenWidth=this._width*this._pixelRatio}catch(e){console.error(e)}}}import{getWindow as Oi,isBrowserWindow as ki}from"@vkontakte/videoplayer-shared/es2015";var Ai=()=>window.ManagedMediaSource||window.MediaSource,ji=()=>{var e;return!!(window.ManagedMediaSource&&!((e=window.ManagedSourceBuffer)==null||(e=e.prototype)==null)&&e.appendBuffer)},Mi=()=>{var e;return!!(window.MediaSource&&!((e=window.SourceBuffer)==null||(e=e.prototype)==null)&&e.appendBuffer)},Ni=()=>window.ManagedMediaSource?new ManagedMediaSource:new MediaSource,Pi=Oi().document?.createElement(`video`),Fi=`video/mp4; codecs="avc1.42000a,mp4a.40.2"`,Ii=`video/mp4; codecs="hev1.1.6.L93.B0"`,Li=`video/webm; codecs="vp09.00.10.08"`,Ri=`video/webm; codecs="av01.0.00M.08"`,zi=`audio/mp4; codecs="mp4a.40.2"`,Bi=`audio/webm; codecs="opus"`,Vi;(function(){var e=a(function*(){let e=Oi();if(!ki(e)||!(`mediaCapabilities`in e.navigator))return;let t={type:`media-source`,video:{contentType:`video/webm`,width:1280,height:720,bitrate:1e6,framerate:30}},[n,r]=yield Promise.all([e.navigator.mediaCapabilities.decodingInfo(o(o({},t),{},{video:o(o({},t.video),{},{contentType:Ri})})),e.navigator.mediaCapabilities.decodingInfo(o(o({},t),{},{video:o(o({},t.video),{},{contentType:Li})}))]);Vi={DASH_WEBM_AV1:n,DASH_WEBM:r}});return function(){return e.apply(this,arguments)}})()().catch(e=>{console.log(Pi),console.error(e)});class Hi{constructor(e,t){i(this,`_video`,void 0),i(this,`_deviceChecker`,void 0),i(this,`_browserChecker`,void 0),i(this,`_protocols`,void 0),i(this,`_containers`,void 0),i(this,`_codecs`,void 0),i(this,`_nativeHlsSupported`,void 0),this._deviceChecker=e,this._browserChecker=t}get protocols(){return this._protocols}get containers(){return this._containers}get codecs(){return this._codecs}get webmDecodingInfo(){return Vi}get supportedCodecs(){return Object.keys(this._codecs).filter(e=>this._codecs[e])}get nativeHlsSupported(){return this._nativeHlsSupported}detect(){let e=Oi();if(ki(e)){this._video=e.document.createElement(`video`);try{var t,n,r,i,a,o,s,c,l,u,d,f,p,m,h,g;this._protocols={mms:ji(),mse:Mi(),hls:!!((t=this._video).canPlayType?.call(t,`application/x-mpegurl`)||(n=this._video).canPlayType?.call(n,`vnd.apple.mpegURL`)),webrtc:!!e.RTCPeerConnection,ws:!!e.WebSocket},this._containers={mp4:!!(r=this._video).canPlayType?.call(r,`video/mp4`),webm:!!(i=this._video).canPlayType?.call(i,`video/webm`),cmaf:!0};let _=!!(!((a=Ai())==null||(o=a.isTypeSupported)==null)&&o.call(a,Fi)),v=!!(!((s=Ai())==null||(c=s.isTypeSupported)==null)&&c.call(s,Ii)),y=!!(!((l=Ai())==null||(u=l.isTypeSupported)==null)&&u.call(l,zi));this._codecs={h264:_,h265:v,vp9:!!(!((d=Ai())==null||(f=d.isTypeSupported)==null)&&f.call(d,Li)),av1:!!(!((p=Ai())==null||(m=p.isTypeSupported)==null)&&m.call(p,Ri)),aac:y,opus:!!(!((h=Ai())==null||(g=h.isTypeSupported)==null)&&g.call(h,Bi)),mpeg:(_||v)&&y},this._nativeHlsSupported=this._protocols.hls&&this._containers.mp4}catch(e){console.error(e)}try{this.destroyVideoElement()}catch(e){console.error(`Error destroying video element:`,e)}}}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}}import{getWindow as Ui,isBrowserWindow as Wi}from"@vkontakte/videoplayer-shared/es2015";var Gi=`audio/mpeg`;class Ki{constructor(){i(this,`_audio`,void 0),i(this,`_containers`,void 0),i(this,`_codecs`,void 0)}supportMp3(){return this._codecs.mp3&&this._containers.mpeg}detect(){let e=Ui();if(Wi(e)){this._audio=e.document.createElement(`audio`);try{var t,n,r;this._containers={mpeg:!!(t=this._audio).canPlayType?.call(t,Gi)},this._codecs={mp3:!!(!((n=Ai())==null||(r=n.isTypeSupported)==null)&&r.call(n,Gi))}}catch(e){console.error(e)}try{this.destroyAudioElement()}catch(e){console.error(`Error destroying audio element:`,e)}}}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}}class qi{constructor(){i(this,`isInited$`,new gi(!1)),i(this,`_displayChecker`,void 0),i(this,`_deviceChecker`,void 0),i(this,`_browserChecker`,void 0),i(this,`_videoChecker`,void 0),i(this,`_audioChecker`,void 0),this._displayChecker=new Di,this._deviceChecker=new wi(this._displayChecker),this._browserChecker=new yi,this._videoChecker=new Hi(this._deviceChecker,this._browserChecker),this._audioChecker=new Ki,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}detect(){var e=this;return a(function*(){hi()&&(e._displayChecker.detect(),e._deviceChecker.detect(),e._browserChecker.detect(),e._videoChecker.detect(),e._audioChecker.detect(),e.isInited$.next(!0))})()}}var F=new qi,Ji=e=>{let{containers:t,protocols:n,codecs:r,nativeHlsSupported:i}=F.video,a=(r.h264||r.h265)&&r.aac,o=n.mse||n.mms;return e.filter(e=>{switch(e){case`DASH_SEP`:return o&&t.mp4&&a;case`DASH_WEBM`:return o&&t.webm&&r.vp9&&r.opus;case`DASH_WEBM_AV1`:return o&&t.webm&&r.av1&&r.opus;case`DASH_STREAMS`:return o&&(t.mp4&&a||t.webm&&(r.vp9||r.av1)&&(r.opus||r.aac));case`DASH_LIVE`:return o&&t.mp4&&a;case`DASH_LIVE_CMAF`:return o&&t.mp4&&a&&t.cmaf;case`DASH_ONDEMAND`:return o&&t.mp4&&a;case`HLS`:case`HLS_ONDEMAND`:case`HLS_FMP4`:case`HLS_LIVE`:case`HLS_LIVE_CMAF`:return i;case`MPEG`:return t.mp4;case`DASH`:case`DASH_LIVE_WEBM`:return!1;case`WEB_RTC_LIVE`:return n.webrtc&&n.ws&&r.h264&&(t.mp4||t.webm);default:return mi(e)}})},Yi=e=>{switch(e){case`MPEG`:case`DASH`:case`DASH_SEP`:case`DASH_ONDEMAND`:case`DASH_WEBM`:case`DASH_WEBM_AV1`:case`DASH_STREAMS`:case`HLS`:case`HLS_FMP4`: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 mi(e)}},Xi=e=>Ji(Object.keys(e).filter(e=>!Yi(e))).length>0;class Zi{constructor(e){i(this,`subscription`,new Qr),i(this,`log`,void 0),i(this,`params`,void 0),i(this,`sessionId$`,new $r(null)),i(this,`mediaSessionId$`,new $r(null)),i(this,`contentId$`,new $r(null)),i(this,`progressTicker`,void 0),i(this,`isMobile`,Ci()),i(this,`mobileVolumeState`,{muted:!1,volume:0}),i(this,`media`,null),i(this,`lastRequestedVolume`,null),i(this,`syncMediaState`,e=>{if(Xr(e))return;this.media=e,this.mediaSessionId$.next(e.mediaSessionId??null);let t=e.media?.contentId;t&&this.contentId$.next(t),this.syncPlaybackState(e);let n=e.media?.duration;Yr(n)&&this.params.output.duration$.next(Math.max(0,n));let r=e.currentTime;if(Yr(r)){this.params.desiredState.seekState.getState().state===`applying`&&this.params.output.seekedEvent$.next(),this.params.output.position$.next(r);let t=this.params.output.isLive$.getValue();e.playerState===`PLAYING`&&!t?this.progressTicker.start(r):this.progressTicker.pause()}}),this.params=e,this.progressTicker=new pi(e),this.log=this.params.dependencies.logger.createComponentLog(`ChromecastPresentationApiProvider`),this.log({message:`constructor, format: ${e.format}`}),this.params.output.isLive$.next(Yi(e.format)),this.subscribe()}subscribe(){let e=e=>{this.params.output.error$.next({category:Kr.WTF,id:`ChromecastPresentationApiProvider`,message:e?.message??`Unknown error`,thrown:e})};this.subscription.add(this.params.chromecastConnector.message$.pipe(qr(e=>!!e)).subscribe(e=>{this.handleMessage(e)},e)),this.subscription.add(this.sessionId$.pipe(qr(Yr),Jr(),Gr(0)).subscribe(()=>{this.loadMedia()},e));let t=this.contentId$.pipe(Jr(),Zr(Boolean));this.subscription.add(Wr({seekState:this.params.desiredState.seekState.stateChangeEnded$,mediaLoaded:t}).pipe(qr(({mediaLoaded:e})=>e)).subscribe(()=>{let e=this.params.desiredState.seekState.getState();e.state===`requested`&&this.seek(e.position/1e3)},e));let n=Wr({playbackState:this.params.desiredState.playbackState.stateChangeStarted$,mediaLoaded:t});this.subscription.add(n.pipe(qr(({mediaLoaded:e})=>e),Gr(0)).subscribe(()=>{this.syncPlayback()},e)),this.subscription.add(n.pipe(qr(({mediaLoaded:e,playbackState:{from:t,to:n}})=>!e&&t===`stopped`&&n===`playing`)).subscribe(()=>{this.loadMedia()},e)),this.subscription.add(Wr({volumeState:this.params.desiredState.volume.stateChangeStarted$.pipe(Gr(30)),mediaLoaded:t}).pipe(qr(({mediaLoaded:e})=>e)).subscribe(({volumeState:e})=>{let{muted:t,volume:n}=e.to;this.setVolume(n,t)},e))}handleMessage(e){switch(e.type){case`new_session`:case`update_session`:{var t;this.sessionId$.next(e.message.sessionId);let n=(t=e.message)==null||(t=t.media)==null?void 0:t[0];this.syncMediaState(n);let r=e.message?.receiver.volume;this.syncVolumeState(r)}break;case`v2_message`:switch(e.message?.type){case`MEDIA_STATUS`:{var n;let t=(n=e.message)==null||(n=n.status)==null?void 0:n[0];this.syncMediaState(t);break}}break}}loadMedia(){let e=ci(this.params),t=this.media?.currentTime,n=this.params.desiredState.seekState.getState(),r=t??(n.state===`none`?0:n.position/1e3),i=this.params.desiredState.playbackState.getState()===`playing`;this.params.chromecastConnector.sendV2Message({type:`LOAD`,requestId:0,media:e,autoplay:i,currentTime:r,customData:null,activeTrackIds:null}),this.params.output.willSeekEvent$.next()}stop(){this.params.chromecastConnector.stopMedia()}play(){let e=this.mediaSessionId$.getValue();Ur(e,`play on null mediaSessionId`),this.params.chromecastConnector.sendV2Message({type:`PLAY`,mediaSessionId:e,customData:null})}pause(){let e=this.mediaSessionId$.getValue();Ur(e,`pause on null mediaSessionId`),this.params.chromecastConnector.sendV2Message({type:`PAUSE`,mediaSessionId:e,customData:null})}seek(e){let t=this.mediaSessionId$.getValue();Ur(t,`seek on null mediaSessionId`),this.params.chromecastConnector.sendV2Message({type:`SEEK`,currentTime:e,mediaSessionId:t}),this.params.output.willSeekEvent$.next()}setVolume(e,t){let n=e,r=`[setVolume] volume: ${e}, muted: ${t}`;this.isMobile&&(n=this.mobileVolumeState.volume,r+=`, mobile next volume: ${n}`),this.log({message:r}),this.lastRequestedVolume={volume:n,muted:t},this.params.chromecastConnector.sendV2Message({type:`SET_VOLUME`,requestId:0,volume:{level:t?0:n,muted:t?!0:null}})}syncPlaybackState({playerState:e,idleReason:t}){let n=this.params.output.isBuffering$.getValue(),r=e===`BUFFERING`;switch(n!==r&&this.params.output.isBuffering$.next(r),e){case`PAUSED`:P(this.params.desiredState.playbackState,`paused`);break;case`PLAYING`:P(this.params.desiredState.playbackState,`playing`);break;case`IDLE`:t===`FINISHED`?(this.params.output.endedEvent$.next(),P(this.params.desiredState.playbackState,`stopped`),this.contentId$.next(null)):P(this.params.desiredState.playbackState,`ready`);break;case`BUFFERING`:break}}syncPlayback(){let e=this.params.desiredState.playbackState.getState();switch(this.log({message:`[syncPlayback] ${e}`}),e){case`ready`:break;case`playing`:this.play();break;case`paused`:this.pause();break;case`stopped`:this.stop();break}}syncVolumeState(e){if(Xr(e))return;let{level:t,muted:n}=e,r={muted:n??!1,volume:t??0};this.lastRequestedVolume&&=(n&&(r.volume=this.lastRequestedVolume.volume),this.lastRequestedVolume.muted&&!t&&!n&&(r.volume=this.lastRequestedVolume.volume,r.muted=!0),null);let i=`[syncVolumeState] volume: ${r.volume}, muted: ${r.muted}`;this.isMobile&&(this.mobileVolumeState.volume=r.volume,this.mobileVolumeState.muted=r.muted,r.volume=this.params.output.volume$.getValue().volume,i+=`, volume passed to state machine: ${r.volume}`),this.log({message:i}),this.params.output.volume$.next(r)}destroy(){this.progressTicker.destroy(),this.subscription.unsubscribe()}}import{assertNonNullable as Qi,ErrorCategory as $i,filter as ea,Subject as ta,Subscription as na,tap as ra,ValueSubject as ia,fromEvent as aa,getWindow as oa}from"@vkontakte/videoplayer-shared/es2015";var sa=e=>({castDevice:{friendlyName:e},remotePlayer:{},remotePlayerController:{},session:{}}),ca=()=>String(Date.now())+String(Math.floor(Math.random()*1e5));class la{constructor(e){i(this,`params`,void 0),i(this,`clientId`,void 0),i(this,`capabilities`,[`WEB`]),i(this,`presentationRequest$`,new ia(null)),i(this,`log`,void 0),i(this,`sessionId$`,new ia(null)),i(this,`broadcastChannel`,new BroadcastChannel(`vk_player_chromecast_events`)),i(this,`subscription`,new na),i(this,`subscriptionEvents`,new na),i(this,`isDestroyed`,!1),i(this,`sequenceNumber`,0),i(this,`presentationAvailable$`,new ia(!1)),i(this,`presentationConnection$`,new ia(null)),i(this,`message$`,new ia(null)),i(this,`friendlyName$`,new ia(null)),i(this,`errorEvent$`,new ta),this.clientId=this.getClientId(),this.params=e,this.log=e.logger.createComponentLog(`ChromecastPresentationApiConnector`),this.log({message:`constructor`}),this.safeReinitPresentation(),this.subscribe()}destroy(){this.log({message:`destroy`}),this.subscription.unsubscribe(),this.subscriptionEvents.unsubscribe(),this.broadcastChannel.close(),this.isDestroyed=!0}disconnect(e=!0){this.log({message:`disconnect`}),e&&this.stopMedia(),this.presentationRequest$.next(null);let t=this.presentationConnection$.getValue();t&&t.close(),this.presentationConnection$.next(null),this.friendlyName$.next(null),this.resetSequenceNumber(),this.resetSubscriptionEvents()}stopMedia(){this.log({message:`stopMedia`}),this.sendV2Message({type:`STOP`})}reinitPresentation(e=!0){let t=this.createCastUrl(),n=new PresentationRequest(t);this.presentationRequest$.next(n),this.log({message:`PresentationRequest created`}),n.getAvailability().then(e=>{let t=()=>{this.log({message:`PresentationRequest presentation availability: ${e.value}`}),this.presentationAvailable$.next(e.value)};this.subscriptionEvents.add(aa(e,`change`).subscribe(()=>{t()})),t()}).catch(()=>{this.presentationAvailable$.next(!0)}),oa().navigator.presentation.defaultRequest=n,e&&n.reconnect(`auto-join`).then(e=>{this.log({message:`PresentationRequest reconnect success`}),this.handleConnection(e)}).catch(()=>{this.log({message:`PresentationRequest reconnect failed`})})}safeReinitPresentation(e){try{this.reinitPresentation(e)}catch(e){this.errorEvent$.next({category:$i.WTF,id:`ChromecastPresentationApiConnector`,message:e?.message??`reinitPresentation error`,thrown:e})}}connect(){var e=this;return a(function*(){e.log({message:`connect`});try{e.presentationRequest$.getValue()||(e.log({message:`reinitPresentation`}),e.reinitPresentation(!1));let t=e.presentationRequest$.getValue();Qi(t,`connect with null presentationRequest`);let n=yield t.start();e.handleConnection(n)}catch(t){switch(t?.name){case`AbortError`:case`NotAllowedError`:break;default:e.errorEvent$.next({category:$i.WTF,id:`ChromecastPresentationApiConnector`,message:t?.message??`connect error`,thrown:t});break}}})()}subscribe(){this.subscription.add(aa(this.broadcastChannel,`message`).subscribe(e=>{this.log({message:`broadcast connection data: ${e.data}`}),e.data===`connection`&&this.disconnect(!1)})),this.subscription.add(this.presentationAvailable$.subscribe(e=>{this.log({message:`presentationAvailable$: ${e}`})})),this.subscription.add(this.presentationConnection$.pipe(ra(e=>{this.log({message:`presentationConnection$: ${!!e}`})}),ea(e=>!!e)).subscribe(e=>{let t=aa(e,`message`).subscribe(e=>{let t=JSON.parse(e.data);t.clientId===this.clientId&&(this.log({message:`[onmessage] ${e.data}`}),this.handleMessage(t),this.message$.next(t))}),n=aa(e,`connect`).subscribe(()=>{this.send(`client_connect`)}),r=aa(e,`close`).subscribe(e=>{switch(e.reason){case`error`:this.errorEvent$.next({category:$i.WTF,id:`ChromecastPresentationApiConnector`,message:`Session error`,thrown:e});break;case`closed`:break}});this.subscriptionEvents.add(t),this.subscriptionEvents.add(n),this.subscriptionEvents.add(r)}))}send(e){switch(e){case`client_connect`:{let e={type:`client_connect`,message:this.clientId,sequenceNumber:-1,timeoutMillis:0,clientId:this.clientId};this.safeSend(JSON.stringify(e));break}}}sendV2Message(e){let t=this.sessionId$.getValue();if(t){let n={type:`v2_message`,sequenceNumber:this.getSequenceNumber(),timeoutMillis:0,clientId:this.clientId,message:o(o({},e),{},{sessionId:t})};this.safeSend(JSON.stringify(n))}}safeSend(e){try{this.log({message:`[send] ${e}`});let t=this.presentationConnection$.getValue();t?.state===`connected`&&t?.send(e)}catch(t){this.errorEvent$.next({category:$i.WTF,id:`ChromecastPresentationApiConnector`,message:`PresentationConnection send error`,data:{message:e},thrown:t})}}handleMessage(e){switch(e.type){case`new_session`:case`update_session`:this.sessionId$.next(e.message.sessionId),this.friendlyName$.next(e.message.receiver.friendlyName||`Chromecast Device`);break;case`receiver_action`:e.message?.action===`stop`&&this.disconnect();break}}createCastUrl(){return`cast:${this.params.appId}?clientId=${this.clientId}&autoJoinPolicy=tab_and_origin_scoped&defaultActionPolicy=create_session&launchTimeout=60000&supportedAppTypes=${this.capabilities}&appParams=%7B%22launchCheckerParams%22%3A%7B%7D%7D`}getSequenceNumber(){let e=this.sequenceNumber;return this.sequenceNumber=(this.sequenceNumber+1)%(2**53-1),e}resetSequenceNumber(){this.sequenceNumber=0}getClientId(){let e=`__vk_player_chromecast_id`;return oa()[e]=oa()[e]||ca()}resetSubscriptionEvents(){this.subscriptionEvents.unsubscribe(),this.subscriptionEvents=new na}handleConnection(e){this.log({message:`connection available`}),this.isDestroyed?(this.log({message:`connected on already destroyed component`}),e.close()):(this.broadcastChannel.postMessage(`connection`),this.presentationConnection$.next(e))}}import{ValueSubject as ua,Subject as da,map as fa,Subscription as pa,combine as ma,filterChanged as ha,assertNonNullable as ga}from"@vkontakte/videoplayer-shared/es2015";class _a{static isSupported(){return`chrome`in window&&`presentation`in navigator&&`BroadcastChannel`in window}constructor(e){i(this,`subscription`,new pa),i(this,`log`,void 0),i(this,`contentId`,void 0),i(this,`connection$`,new ua(void 0)),i(this,`castState$`,new ua(`NOT_AVAILABLE`)),i(this,`errorEvent$`,new da),i(this,`chromecastConnector`,void 0);let t=_a.isSupported();this.log=e.dependencies.logger.createComponentLog(`ChromecastPresentationApiInitializer`),this.log({message:`[constructor] receiverApplicationId: ${e.receiverApplicationId}, isDisabled: ${e.isDisabled}, isSupported: ${t}`}),!(!t||e.isDisabled||!e.receiverApplicationId)&&(this.chromecastConnector=new la({appId:e.receiverApplicationId,logger:e.dependencies.logger}),this.subscribe())}subscribe(){ga(this.chromecastConnector,`subscribe with null chromecastConnector`),this.subscription.add(this.chromecastConnector.errorEvent$.subscribe(this.errorEvent$));let e=ma({connection:this.chromecastConnector.presentationConnection$,available:this.chromecastConnector.presentationAvailable$,friendlyName:this.chromecastConnector.friendlyName$.pipe(ha())});this.subscription.add(e.pipe(fa(({connection:e,friendlyName:t})=>!!(e&&t)),ha()).subscribe(e=>{let t=this.chromecastConnector?.friendlyName$.getValue()??``;this.connection$.next(e?sa(t):void 0)})).add(e.subscribe(({available:e,connection:t})=>{e?t?this.castState$.next(`CONNECTED`):this.castState$.next(`AVAILABLE`):this.castState$.next(`NOT_AVAILABLE`)}))}connect(){this.log({message:`connect`}),this.chromecastConnector?.connect()}disconnect(){this.log({message:`disconnect`}),this.chromecastConnector?.disconnect()}stopMedia(){var e=this;return a(function*(){e.log({message:`stopMedia`}),e.chromecastConnector?.stopMedia()})()}toggleConnection(){let e=!!this.chromecastConnector?.presentationConnection$.getValue();this.log({message:`toggleConnection: isConnected - ${e}`}),e?this.disconnect():this.connect()}setVolume(e){}setMuted(e){}destroy(){this.log({message:`destroy`}),this.chromecastConnector?.destroy(),this.subscription.unsubscribe()}}var va=v(it(),1),ya=(e,...t)=>typeof e==`string`?e.includes(...t):va.default(e,...t),ba=v(ct(),1),xa=v(Vt(),1),Sa=v(Tn(),1);import{isNonNullable as Ca,Subject as wa,merge as Ta}from"@vkontakte/videoplayer-shared/es2015";class I{constructor(e){i(this,`state`,void 0),i(this,`prevState`,void 0),i(this,`transition`,void 0),i(this,`transitionStarted$`,new wa),i(this,`transitionEnded$`,new wa),i(this,`transitionUpdated$`,new wa),i(this,`forceChanged$`,new wa),i(this,`stateChangeStarted$`,Ta(this.transitionStarted$,this.transitionUpdated$)),i(this,`stateChangeEnded$`,Ta(this.transitionEnded$,this.forceChanged$)),this.state=e,this.prevState=void 0}setState(e){let t=this.transition,n=this.state;this.transition=void 0,this.prevState=n,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:n,to:e,canceledTransition:t})}startTransitionTo(e){let t=this.transition,n=this.state;n===e||Ca(t)&&t.to===e||(this.prevState=n,this.state=e,t?(this.transition={from:t.from,to:e,canceledTransition:t},this.transitionUpdated$.next(this.transition)):(this.transition={from:n,to:e},this.transitionStarted$.next(this.transition)))}getTransition(){return this.transition}getState(){return this.state}getPrevState(){return this.prevState}}import{assertNever as Ea,debounce as Da,ErrorCategory as Oa,fromEvent as ka,map as Aa,merge as ja,observableFrom as Ma,Subject as Na,Subscription as Pa,timeout as Fa}from"@vkontakte/videoplayer-shared/es2015";var Ia=5,La=5,Ra=500,za=7e3;class Ba{constructor(e){i(this,`subscription`,new Pa),i(this,`loadMediaTimeoutSubscription`,new Pa),i(this,`videoState`,new I(`stopped`)),i(this,`params`,void 0),i(this,`log`,void 0),i(this,`syncPlayback`,()=>{let e=this.videoState.getState(),t=this.videoState.getTransition(),n=this.params.desiredState.playbackState.getState(),r=this.params.desiredState.playbackState.getTransition(),i=this.params.desiredState.seekState.getState();if(this.log({message:`[syncPlayback] videoState: ${e}; videoTransition: ${JSON.stringify(t)}; desiredPlaybackState: ${n}; desiredPlaybackStateTransition: ${this.params.desiredState.playbackState.getTransition()}; seekState: ${JSON.stringify(i)};`}),n===`stopped`){e!==`stopped`&&(this.videoState.startTransitionTo(`stopped`),this.stop());return}if(!t){if(r?.to!==`paused`&&i.state===`requested`&&e!==`stopped`){this.seek(i.position/1e3);return}switch(n){case`ready`:switch(e){case`playing`:case`paused`:case`ready`:break;case`stopped`:this.videoState.startTransitionTo(`ready`),this.prepare();break;default:Ea(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:Ea(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:Ea(e)}break;default:Ea(n)}}}),this.params=e,this.log=this.params.dependencies.logger.createComponentLog(`ChromecastProvider`),this.log({message:`constructor, format: ${e.format}`}),this.params.output.isLive$.next(Yi(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 Pa;this.subscription.add(e),this.subscription.add(ja(this.videoState.stateChangeStarted$.pipe(Aa(e=>`stateChangeStarted$ ${JSON.stringify(e)}`)),this.videoState.stateChangeEnded$.pipe(Aa(e=>`stateChangeEnded$ ${JSON.stringify(e)}`))).subscribe(e=>this.log({message:`[videoState] ${e}`})));let t=(e,t)=>this.subscription.add(e.subscribe(t));if(this.params.output.isLive$.getValue())this.params.output.position$.next(0),this.params.output.duration$.next(0);else{let t=new Na;e.add(t.pipe(Da(Ra)).subscribe(()=>{this.params.output.seekedEvent$.next()}));let n=NaN;e.add(ka(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.CURRENT_TIME_CHANGED).subscribe(e=>{this.logRemoteEvent(e);let r=e.value;this.params.output.position$.next(r),(this.params.desiredState.seekState.getState().state===`applying`||Math.abs(r-n)>Ia)&&t.next(r),n=r})),e.add(ka(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.DURATION_CHANGED).subscribe(e=>{this.logRemoteEvent(e),this.params.output.duration$.next(e.value)}))}t(ka(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_MEDIA_LOADED_CHANGED),t=>{this.logRemoteEvent(t),t.value?this.handleRemoteReady():(this.handleRemoteStop(),e.unsubscribe())}),t(ka(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_PAUSED_CHANGED),e=>{this.logRemoteEvent(e),e.value?this.handleRemotePause():this.handleRemotePlay()}),t(ka(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.PLAYER_STATE_CHANGED),e=>{this.logRemoteEvent(e);let{remotePlayer:t}=this.params.connection,n=e.value,r=this.params.output.isBuffering$.getValue(),i=n===chrome.cast.media.PlayerState.BUFFERING;switch(r!==i&&this.params.output.isBuffering$.next(i),n){case chrome.cast.media.PlayerState.IDLE:!this.params.output.isLive$.getValue()&&t.duration-t.currentTime<La&&this.params.output.endedEvent$.next(),this.handleRemoteStop(),P(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:Ea(n)}}),t(ka(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.VOLUME_LEVEL_CHANGED),e=>{this.logRemoteEvent(e),this.handleRemoteVolumeChange({volume:e.value})}),t(ka(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_MUTED_CHANGED),e=>{this.logRemoteEvent(e),this.handleRemoteVolumeChange({muted:e.value})}),t(ja(this.params.desiredState.playbackState.stateChangeStarted$,this.params.desiredState.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,Ma([`init`])).pipe(Da(0)),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`),P(this.params.desiredState.playbackState,`paused`)):(this.videoState.setState(`playing`),P(this.params.desiredState.playbackState,`playing`));let e=this.params.output.isLive$.getValue();this.params.output.duration$.next(e?0:t.duration),this.params.output.position$.next(e?0:t.currentTime),this.params.desiredState.seekState.setState({state:`none`})}}prepare(){let e=this.params.format;this.log({message:`[prepare] format: ${e}`});let t=ci(this.params),n=this.createLoadRequest(t);this.loadMedia(n)}handleRemotePause(){let e=this.videoState.getState();(this.videoState.getTransition()?.to===`paused`||e===`playing`)&&(this.videoState.setState(`paused`),P(this.params.desiredState.playbackState,`paused`))}handleRemotePlay(){let e=this.videoState.getState();(this.videoState.getTransition()?.to===`playing`||e===`paused`)&&(this.videoState.setState(`playing`),P(this.params.desiredState.playbackState,`playing`))}handleRemoteReady(){this.videoState.getTransition()?.to===`ready`&&this.videoState.setState(`ready`),this.params.desiredState.playbackState.getTransition()?.to===`ready`&&P(this.params.desiredState.playbackState,`ready`)}handleRemoteStop(){this.videoState.getState()!==`stopped`&&this.videoState.setState(`stopped`)}handleRemoteVolumeChange(e){let t=this.params.output.volume$.getValue(),n={volume:e.volume??t.volume,muted:e.muted??t.muted};(n.volume!==t.volume||n.muted!==n.muted)&&this.params.output.volume$.next(n)}seek(e){this.params.output.willSeekEvent$.next();let{remotePlayer:t,remotePlayerController:n}=this.params.connection;t.currentTime=e,n.seek()}stop(){let{remotePlayerController:e}=this.params.connection;e.stop()}createLoadRequest(e){let t=new chrome.cast.media.LoadRequest(e);t.autoplay=!1;let n=this.params.desiredState.seekState.getState();return n.state===`applying`||n.state===`requested`?t.currentTime=this.params.output.isLive$.getValue()?0:n.position/1e3:t.currentTime=0,t}loadMedia(e){let t=this.params.connection.session.loadMedia(e),n=new Promise((e,t)=>{this.loadMediaTimeoutSubscription.add(Fa(za).subscribe(()=>t(`timeout(${za})`)))});Sa.default(Promise.race([t,n]).then(()=>{this.log({message:`[loadMedia] completed, format: ${this.params.format}`}),this.params.desiredState.seekState.getState().state===`applying`&&this.params.output.seekedEvent$.next(),this.handleRemoteReady()},e=>{let t=`[prepare] loadMedia failed, format: ${this.params.format}, reason: ${e}`;this.log({message:t}),this.params.output.error$.next({id:`ChromecastProvider.loadMedia`,category:Oa.VIDEO_PIPELINE,message:t,thrown:e})}),()=>{this.loadMediaTimeoutSubscription.unsubscribe()})}logRemoteEvent(e){this.log({message:`[remoteEvent] ${JSON.stringify(e)}`})}}var Va=v(it(),1);import{clearVideoElement as Ha,getWindow as Ua}from"@vkontakte/videoplayer-shared/es2015";import{clearVideoElement as Wa}from"@vkontakte/videoplayer-shared/es2015";var Ga=(e,t)=>{try{e.pause(),e.playbackRate=0,Wa(e,t),e.remove()}catch(e){console.error(e)}};import{fromEvent as Ka,Subscription as qa}from"@vkontakte/videoplayer-shared/es2015";var Ja=`__spvc`;class Ya{constructor(){i(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)}}var Xa=Ua(),Za=Xa.WeakMap?new Xa.WeakMap:new Ya,Qa=Xa.WeakMap?new Xa.WeakMap:new Map,$a=(e,t=20)=>{let n=0;return Ka(e,`ratechange`).subscribe(r=>{n++,n>=t&&(e.currentTime=e.currentTime,n=0)})};function eo(e){e.style.position=`fixed`,e.style.left=`100%`,e.setAttribute(`data-role`,`screen`),Ua().document.body.appendChild(e)}function to(e,t){e.style.position=``,e.style.left=``,t.appendChild(e)}var no=(e,{audioVideoSyncRate:t,disableYandexPiP:n,clearVideoElementInnerHTML:r,reuseOwnVideoElement:i})=>{let a,o=e.querySelector(`video`),s=!!o,c=Ua().document.querySelector(`body > video[data-role=screen]`)||void 0;i?Xa[Ja]=c:(c?.remove(),delete Xa[Ja]),o?(a=o,Ha(a,r)):c&&c===Xa[Ja]?(a=c,to(a,e)):(a=Ua().document.createElement(`video`),e.appendChild(a),i&&(Xa[Ja]=a)),Za.set(a,s);let l=new qa;return l.add($a(a,t)),Qa.set(a,l),a.setAttribute(`crossorigin`,`anonymous`),a.setAttribute(`playsinline`,`playsinline`),n&&a.setAttribute(`x-yandex-pip`,`false`),a.controls=!1,a.setAttribute(`poster`,`data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=`),a},ro=(e,{keepVideoElement:t,clearVideoElementInnerHTML:n,reuseOwnVideoElement:r})=>{Qa.get(e)?.unsubscribe(),Qa.delete(e);let i=Za.get(e);Za.delete(e),i||t?Ha(e,n):r?(Ha(e,n),eo(e)):Ga(e,n)},io=v(Qe(),1);import{assertNonNullable as ao,isNonNullable as oo,isNullable as so,fromEvent as co,merge as lo,observableFrom as uo,filterChanged as fo,map as po,Subject as mo,Subscription as ho,ValueSubject as go,ErrorCategory as _o}from"@vkontakte/videoplayer-shared/es2015";import{isNonNullable as vo,isNullable as yo,Subscription as bo}from"@vkontakte/videoplayer-shared/es2015";var xo=(e,t,n,{equal:r=(e,t)=>e===t,changed$:i,onError:a}={})=>{let o=e.getState(),s=t(),c=yo(i),l=new bo;return i&&l.add(i.subscribe(t=>{r(t,e.getState())&&e.setState(t)},a)),r(s,o)||(n(o),c&&e.setState(o)),l.add(e.stateChangeStarted$.subscribe(t=>{n(t.to),c&&e.setState(t.to)},a)),l},So=(e,t,n)=>xo(t,()=>e.loop,t=>{vo(t)&&(e.loop=t)},{onError:n}),Co=(e,t,n,r,i)=>xo(t,()=>({muted:e.muted,volume:e.volume}),t=>{i?.skipVideoElVolumeSync$.getValue()||vo(t)&&(e.muted=t.muted,e.volume=t.volume)},{equal:(e,t)=>e===t||e?.muted===t?.muted&&e?.volume===t?.volume,changed$:n,onError:r}),wo=(e,t,n,r)=>xo(t,()=>e.playbackRate,t=>{vo(t)&&(e.playbackRate=t)},{changed$:n,onError:r}),To=xo,Eo=e=>[`__`,e.language,e.label].join(`|`),Do=(e,t)=>{if(e.id===t)return!0;let[n,r,i]=t.split(`|`);return e.language===r&&e.label===i};class Oo{constructor(e){i(this,`available$`,new mo),i(this,`current$`,new go(void 0)),i(this,`error$`,new mo),i(this,`video`,void 0),i(this,`cueSettings`,void 0),i(this,`subscription`,new ho),i(this,`externalTracks`,new Map),i(this,`internalTracks`,new Map),i(this,`baseURL`,void 0),this.baseURL=e}connect(e,t,n){this.video=e,this.cueSettings=t.textTrackCuesSettings,this.subscribe();let r=e=>{this.error$.next({id:`TextTracksManager`,category:_o.WTF,message:`Generic HtmlVideoTextTrackManager error`,thrown:e})};this.subscription.add(this.available$.subscribe(n.availableTextTracks$)),this.subscription.add(this.current$.subscribe(n.currentTextTrack$)),this.subscription.add(this.error$.subscribe(n.error$)),this.subscription.add(To(t.internalTextTracks,()=>io.default(this.internalTracks),e=>{oo(e)&&this.setInternal(e)},{equal:(e,t)=>oo(e)&&oo(t)&&e.length===t.length&&e.every(({id:e},n)=>e===t[n].id),changed$:this.available$.pipe(po(e=>e.filter(({type:e})=>e===`internal`))),onError:r})),this.subscription.add(To(t.externalTextTracks,()=>io.default(this.externalTracks),e=>{oo(e)&&this.setExternal(e)},{equal:(e,t)=>oo(e)&&oo(t)&&e.length===t.length&&e.every(({id:e},n)=>e===t[n].id),changed$:this.available$.pipe(po(e=>e.filter(({type:e})=>e===`external`))),onError:r})),this.subscription.add(To(t.currentTextTrack,()=>{if(this.video)return;let e=this.htmlTextTracksAsArray().find(({mode:e})=>e===`showing`);return e&&this.htmlTextTrackToITextTrack(e).id},e=>this.select(e),{changed$:this.current$,onError:r})),this.subscription.add(To(t.textTrackCuesSettings,()=>({}),()=>{if(this.video)for(let e of this.htmlTextTracksAsArray())this.applyCueSettings(e.cues),this.applyCueSettings(e.activeCues)}))}subscribe(){ao(this.video);let{textTracks:e}=this.video;this.subscription.add(co(e,`addtrack`).subscribe(()=>{let e=this.current$.getValue();e&&this.select(e)})),this.subscription.add(lo(co(e,`addtrack`),co(e,`removetrack`),uo([`init`])).pipe(po(()=>this.htmlTextTracksAsArray().map(e=>this.htmlTextTrackToITextTrack(e))),fo((e,t)=>e.length===t.length&&e.every(({id:e},n)=>e===t[n].id))).subscribe(this.available$)),this.subscription.add(lo(co(e,`change`),uo([`init`])).pipe(po(()=>this.htmlTextTracksAsArray().find(({mode:e})=>e===`showing`)),po(e=>e&&this.htmlTextTrackToITextTrack(e).id),fo()).subscribe(this.current$));let t=e=>this.applyCueSettings(e.target?.activeCues??null);this.subscription.add(co(e,`addtrack`).subscribe(e=>{e.track?.addEventListener(`cuechange`,t);let n=e=>{let t=e.target?.cues??null;t&&t.length&&(this.applyCueSettings(e.target?.cues??null),e.target?.removeEventListener(`cuechange`,n))};e.track?.addEventListener(`cuechange`,n)})),this.subscription.add(co(e,`removetrack`).subscribe(e=>{e.track?.removeEventListener(`cuechange`,t)}))}applyCueSettings(e){if(!e||!e.length)return;let t=this.cueSettings.getState();for(let n of Array.from(e)){let e=n;oo(t.align)&&(e.align=t.align),oo(t.position)&&(e.position=t.position),oo(t.size)&&(e.size=t.size),oo(t.line)&&(e.line=t.line)}}htmlTextTracksAsArray(e=!1){ao(this.video);let t=[...this.video.textTracks];return e?t:t.filter(Oo.isHealthyTrack)}htmlTextTrackToITextTrack(e){let{language:t,label:n}=e,r=e.id?e.id:Eo(e),i=this.externalTracks.has(r),a=(i?this.externalTracks.get(r)?.isAuto:this.internalTracks.get(r)?.isAuto)??r.includes(`auto`);return i?{id:r,type:`external`,isAuto:a,language:t,label:n,url:this.externalTracks.get(r)?.url}:{id:r,type:`internal`,isAuto:a,language:t,label:n,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(([,e])=>this.detach(e)),e.filter(({id:e})=>!this.externalTracks.has(e)).forEach(e=>this.attach(e)),Array.from(this.externalTracks).filter(([t])=>!e.find(e=>e.id===t)).forEach(([,e])=>this.detach(e))}setInternal(e){let t=[...this.externalTracks];e.filter(({id:e,language:n,isAuto:r})=>!this.internalTracks.has(e)&&!t.some(([,e])=>e.language===n&&e.isAuto===r)).forEach(e=>this.attach(e)),Array.from(this.internalTracks).filter(([t])=>!e.find(e=>e.id===t)).forEach(([,e])=>this.detach(e))}select(e){ao(this.video);for(let e of this.htmlTextTracksAsArray(!0))e.mode=`showing`;for(let t of this.htmlTextTracksAsArray(!0))(so(e)||!Do(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){ao(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){ao(this.video);let t=Array.prototype.find.call(this.video.getElementsByTagName(`track`),t=>t.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)}}var ko=Oo;class Ao{constructor(){i(this,`pausedTime`,0),i(this,`streamOffset`,0),i(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 jo=e=>{let t=e;for(;!(t instanceof Document)&&!(t instanceof ShadowRoot)&&t!==null;)t=t?.parentNode;return t??void 0},Mo=e=>{let t=jo(e);return!!(t&&t.fullscreenElement&&t.fullscreenElement===e)},No=e=>{let t=jo(e);return!!(t&&t.pictureInPictureElement&&t.pictureInPictureElement===e)};import{fromEvent as Po,map as Fo,merge as Io,filterChanged as Lo,isNonNullable as Ro,Subject as zo,filter as Bo,mapTo as Vo,combine as Ho,once as Uo,shareReplay as Wo,throttle as Go,ErrorCategory as Ko,ValueSubject as qo,Subscription as Jo}from"@vkontakte/videoplayer-shared/es2015";var Yo=3,Xo=(e,t,n=Yo)=>{let r=0,i=0;for(let a=0;a<e.length;a++){let o=e.start(a),s=e.end(a);if(o<=t&&t<=s){if(r=o,i=s,!n)return{from:r,to:i};for(let t=a-1;t>=0;t--)e.end(t)+n>=r&&(r=e.start(t));for(let t=a+1;t<e.length;t++)e.start(t)-n<=i&&(i=e.end(t))}}return{from:r,to:i}},Zo=e=>{let t=t=>Po(e,t).pipe(Vo(void 0),Wo(1)),n=new Jo,r=()=>n.unsubscribe(),i=Io(Po(e,`progress`),Po(e,`timeupdate`)).pipe(Fo(()=>Xo(e.buffered,e.currentTime)),Wo(1)),a=F.browser.isSafari?Ho({play:t(`play`).pipe(Uo()),playing:t(`playing`)}).pipe(Vo(void 0),Wo(1)):t(`playing`),o=Po(e,`volumechange`).pipe(Fo(()=>({muted:e.muted,volume:e.volume})),Wo(1)),s=Po(e,`ratechange`).pipe(Fo(()=>e.playbackRate),Wo(1)),c=Po(e,`error`).pipe(Bo(()=>!!(e.error||e.played.length)),Fo(()=>{let t=e.error;return{id:t?`MediaError#${t.code}`:`HtmlVideoError`,category:Ko.VIDEO_PIPELINE,message:t?t.message:`Error event from HTML video element`,thrown:e.error??void 0}}),Wo(1)),l=Po(e,`timeupdate`).pipe(Fo(()=>e.currentTime),Wo(1)),u=[`waiting`,`seeking`,`seeked`,`timeupdate`],d=new zo,f=.3,p;n.add(Io(...u.map(t=>Po(e,t))).subscribe(t=>{let n=e.currentTime;e.loop&&Ro(p)&&Ro(n)&&p>=e.duration-f&&n<=f&&d.next(p),p=n}));let m=t(`pause`).pipe(Bo(()=>!e.error&&p!==e.duration),Wo(1)),h=Po(e,`enterpictureinpicture`).pipe(Wo(1)),g=Po(e,`leavepictureinpicture`).pipe(Wo(1)),_=new qo(No(e));n.add(h.subscribe(()=>_.next(!0))),n.add(g.subscribe(()=>_.next(!1)));let v=new qo(Mo(e)),y=Po(e,`fullscreenchange`).pipe(Wo(1));n.add(y.pipe(Fo(()=>Mo(e))).subscribe(v));let b=Po(e,`timeupdate`).pipe(Fo(t=>e.duration-e.currentTime<.1),Lo(),Wo(1)),x=Io(b.pipe(Bo(t=>!e.loop&&t)),Po(e,`ended`)).pipe(Go(1e3),Vo(void 0),Wo(1)),S=Io(...[`waiting`,`pause`,`canplay`,`play`,`canplaythrough`,`playing`,`seeking`,`seeked`,`ended`].map(t=>Po(e,t)),b.pipe(Fo(e=>({type:e?`ended`:`unknown`})))).pipe(Fo(t=>F.browser.isFirefox&&t.type===`ended`?e.readyState<2:e.readyState<3),Lo(),Wo(1));return{playing$:a,pause$:m,canplay$:t(`canplay`),ended$:x,looped$:d,error$:c,seeked$:t(`seeked`),seeking$:t(`seeking`),progress$:t(`progress`),loadStart$:t(`loadstart`),loadedMetadata$:t(`loadedmetadata`),loadedData$:t(`loadeddata`),timeUpdate$:l,durationChange$:Po(e,`durationchange`).pipe(Fo(()=>e.duration),Wo(1)),isBuffering$:S,currentBuffer$:i,volumeState$:o,playbackRateState$:s,inPiP$:_,inFullscreen$:v,enterPip$:h,leavePip$:g,destroy:r}};import{VideoQuality as Qo}from"@vkontakte/videoplayer-shared/es2015";var $o=e=>{switch(e){case`mobile`:return Qo.Q_144P;case`lowest`:return Qo.Q_240P;case`low`:return Qo.Q_360P;case`sd`:case`medium`:return Qo.Q_480P;case`hd`:case`high`:return Qo.Q_720P;case`fullhd`:case`full`:return Qo.Q_1080P;case`quadhd`:case`quad`:return Qo.Q_1440P;case`ultrahd`:case`ultra`:return Qo.Q_2160P}},es=v(kn(),1),ts=v(it(),1),ns=v(ct(),1);import{isNonNullable as L,isNullable as rs,now as is,isHigher as as,isHigherOrEqual as os,isInvariantQuality as ss,isLowerOrEqual as cs,videoSizeToQuality as ls,assertNotEmptyArray as us,assertNonNullable as ds}from"@vkontakte/videoplayer-shared/es2015";var fs=!1,ps={},ms=e=>{fs=e},hs=()=>{ps={}},gs=e=>{e(ps)},_s=(e,t)=>{fs&&(ps.meta=ps.meta??{},ps.meta[e]=t)};class vs{constructor(e){i(this,`name`,void 0),this.name=e}next(e){if(!fs)return;ps.series=ps.series??{};let t=ps.series[this.name]??[];t.push([Date.now(),e]),ps.series[this.name]=t}}import{isHigher as ys,isLower as bs,isNonNullable as xs,isNullable as Ss,videoHeightToQuality as Cs}from"@vkontakte/videoplayer-shared/es2015";function ws(e,t,n){return!e.max&&e.min===t?`high_quality`:!e.min&&e.max===n?`traffic_saving`:`unknown`}function Ts(e,t,n){return Ss(e)||xs(e.min)&&xs(e.max)&&bs(e.max,e.min)||xs(e.min)&&xs(t)&&ys(e.min,t)||xs(e.max)&&xs(n)&&bs(e.max,n)}function Es({limits:e,highestAvailableHeight:t,lowestAvailableHeight:n}){return Ts({max:e?.max?Cs(e.max):void 0,min:e?.min?Cs(e.min):void 0},t?Cs(t):void 0,n?Cs(n):void 0)}var Ds=new vs(`best_bitrate`),Os=(e,t,n)=>(t-n)*2**(-10*e)+n,ks=e=>(t,n)=>e*(Number(t.bitrate)-Number(n.bitrate));class As{constructor(){i(this,`last`,void 0),i(this,`history`,{})}recordSelection(e){this.history[e.id]=is()}recordSwitch(e){this.last=e}clear(){this.last=void 0,this.history={}}}var js=`Assertion "ABR Tracks is empty array" failed`,Ms=new WeakMap,Ns=new WeakMap,Ps=new WeakMap,Fs=(e,t,n,r)=>{let i=[...t].sort(ks(1)),a=[...n].sort(ks(1)),o=a.filter(t=>L(t.bitrate)&&L(e.bitrate)?e.bitrate/t.bitrate>r:!0),s=es.default(a,Math.round(a.length*i.indexOf(e)/(i.length+1)))??es.default(a,-1);return s&&ts.default(o,s)?s:o.length?es.default(o,-1):es.default(a,0)},Is=(e,t,n,r)=>{let i=Ms.get(t);i||(i=[...t].sort(ks(1)),Ms.set(t,i));let a=Ms.get(n);a||(a=[...n].sort(ks(1)),Ms.set(n,a));let o=Ps.get(e);o||(o=a.filter(t=>L(t.bitrate)&&L(e.bitrate)?e.bitrate/t.bitrate>r:!0),Ps.set(e,o));let s=es.default(a,Math.round(a.length*i.indexOf(e)/(i.length+1)))??es.default(a,-1);return s&&ts.default(o,s)?s:o.length?es.default(o,-1):es.default(a,0)},Ls=e=>`quality`in e,Rs=(e,t,n,r)=>{var i;let a=L(r==null||(i=r.last)==null?void 0:i.bitrate)&&L(n?.bitrate)&&r.last.bitrate<n.bitrate?e.trackCooldownIncreaseQuality:e.trackCooldownDecreaseQuality,o=n&&r&&r.history[n.id]&&is()-r.history[n.id]<=a&&(!r.last||n.id!==r.last.id);if(n?.id&&r&&!o&&r.recordSelection(n),o&&r?.last){let e=r.last;return r?.recordSwitch(e),t({message:`
8
+ [last ${Ls(e)?`video`:`audio`} selected] ${Ls(e)?e.quality:e.bitrate}
9
+ `}),e}return r?.recordSwitch(n),n},zs=(e,t)=>Math.log(t)/Math.log(e),Bs=({tuning:e,container:t,limits:n,panelSize:r})=>{let i=e.containerSizeFactor;if(r)return{containerSizeLimit:r,containerSizeFactor:i};if(e.usePixelRatio&&F.display.pixelRatio){let t=F.display.pixelRatio;if(e.pixelRatioMultiplier)i*=e.pixelRatioMultiplier*(t-1)+1;else{let n=e.pixelRatioLogBase,[r=0,a=0,o=0]=e.pixelRatioLogCoefficients,s=zs(n,r*t+a)+o;Number.isFinite(s)&&(i*=s)}}return L(n?.min)&&os(n.min,e.highQualityLimit)&&(i*=2),{containerSizeLimit:e.limitByContainer&&t&&t.width>0&&t.height>0?{width:t.width*i,height:t.height*i}:void 0,containerSizeFactor:i}},Vs=new WeakMap,Hs=(e,{container:t,estimatedThroughput:n,tuning:r,limits:i,reserve:a=0,forwardBufferHealth:o,playbackRate:s,current:c,history:l,visible:u,droppedVideoMaxQualityLimit:d,stallsVideoMaxQualityLimit:f,stallsPredictedThroughput:p,abrLogger:m,panelSize:h})=>{us(e,js);let{containerSizeFactor:g,containerSizeLimit:_}=Bs({container:t,tuning:r,limits:i,panelSize:h}),v=r.considerPlaybackRate&&L(s)?s:1,y=Vs.get(e);y||(y=e.filter(e=>!ss(e.quality)).sort((e,t)=>as(e.quality,t.quality)?-1:1),Vs.set(e,y));let b=es.default(y,-1)?.quality,x=es.default(y,0)?.quality,S=Ts(i,x,b),C=v*Os(o??.5,r.bitrateFactorAtEmptyBuffer,r.bitrateFactorAtFullBuffer),w={},T=null;for(let e of y){if(e.tvDisabled){w[e.quality]=`TvDisabled`;continue}let t=!0;if(_)if(e.size)t=e.size.width<=_.width&&e.size.height<=_.height;else{let n=_&&ls(_);t=n?cs(e.quality,n):!0}if(!t){w[e.quality]=`FitsContainer`;continue}let s=p||n,l=L(s)&&isFinite(s)&&L(e.bitrate)?s-a>=e.bitrate*C:!0,m=i?.min===e.quality;if(!l&&!m){w[e.quality]=`FitsThroughput`;continue}if(r.lazyQualitySwitch&&L(r.minBufferToSwitchUp)&&c&&!ss(c.quality)&&(o??0)<r.minBufferToSwitchUp&&as(e.quality,c.quality)){w[e.quality]=`Buffer`;continue}if(d&&os(e.quality,d)&&!m){w[e.quality]=`DroppedFramesLimit`;continue}if(f&&os(e.quality,f)&&!m){w[e.quality]=`StallsLimit`;continue}let h=S||(rs(i?.max)||cs(e.quality,i.max))&&(rs(i?.min)||os(e.quality,i.min)),g=L(u)&&!u?cs(e.quality,r.backgroundVideoQualityLimit):!0;if(!h||!g){w[e.quality]=`FitsQualityLimits`;continue}T||=e}T&&T.bitrate&&Ds.next(T.bitrate);let E=T??es.default(y,-1)??e[0],D=l?.last,O=Rs(r,m,E,l);return L(l)&&O.quality!==D?.quality&&m({message:`
10
10
  [VIDEO TRACKS ABR]
11
11
  [available video tracks]
12
- ${s.map(E=>{var w,U;return`{ id: ${E.id}, quality: ${E.quality}, bitrate: ${E.bitrate}, size: ${(w=E.size)==null?void 0:w.width}:${(U=E.size)==null?void 0:U.height} }`}).join(`
12
+ ${e.map(e=>`{ id: ${e.id}, quality: ${e.quality}, bitrate: ${e.bitrate}, size: ${e.size?.width}:${e.size?.height} }`).join(`
13
13
  `)}
14
14
 
15
15
  [tuning]
16
- ${(0,ji.default)(i!=null?i:{}).map(([E,w])=>`${E}: ${w}`).join(`
16
+ ${ns.default(r??{}).map(([e,t])=>`${e}: ${t}`).join(`
17
17
  `)}
18
18
 
19
19
  [limit params]
20
20
  containerSizeFactor: ${g},
21
- containerSizeLimit: ${($=v==null?void 0:v.width)!=null?$:0} x ${(M=v==null?void 0:v.height)!=null?M:0},
22
- estimatedThroughput: ${t},
23
- stallsPredictedThroughput: ${h},
21
+ containerSizeLimit: ${_?.width??0} x ${_?.height??0},
22
+ estimatedThroughput: ${n},
23
+ stallsPredictedThroughput: ${p},
24
24
  reserve: ${a},
25
- playbackRate: ${o},
26
- playbackRateFactor: ${S},
27
- forwardBufferHealth: ${n},
28
- bitrateFactor: ${V},
29
- minBufferToSwitchUp: ${i.minBufferToSwitchUp},
30
- droppedVideoMaxQualityLimit: ${l},
31
- stallsVideoMaxQualityLimit: ${p},
32
- limitsAreInvalid: ${k},
33
- maxQualityLimit: ${r==null?void 0:r.max},
34
- minQualityLimit: ${r==null?void 0:r.min},
25
+ playbackRate: ${s},
26
+ playbackRateFactor: ${v},
27
+ forwardBufferHealth: ${o},
28
+ bitrateFactor: ${C},
29
+ minBufferToSwitchUp: ${r.minBufferToSwitchUp},
30
+ droppedVideoMaxQualityLimit: ${d},
31
+ stallsVideoMaxQualityLimit: ${f},
32
+ limitsAreInvalid: ${S},
33
+ maxQualityLimit: ${i?.max},
34
+ minQualityLimit: ${i?.min},
35
35
 
36
36
  [limited video tracks]
37
- ${(0,ji.default)(_).map(([E,w])=>`${E}: ${w}`).join(`
38
- `)||"All tracks are available"}
37
+ ${ns.default(w).map(([e,t])=>`${e}: ${t}`).join(`
38
+ `)||`All tracks are available`}
39
39
 
40
- [best video track] ${L==null?void 0:L.quality}
41
- [selected video track] ${B==null?void 0:B.quality}
42
- `}),B},Co=(s,{container:e,estimatedThroughput:t,tuning:i,limits:r,reserve:a=0,forwardBufferHealth:n,playbackRate:o,current:u,history:c,visible:d,droppedVideoMaxQualityLimit:l,stallsVideoMaxQualityLimit:p,stallsPredictedThroughput:h,abrLogger:f,panelSize:m})=>{var J,z,$,M,E;Ro(s,$o);let{containerSizeFactor:g,containerSizeLimit:v}=Qy({container:e,tuning:i,limits:r,panelSize:m}),S=i.considerPlaybackRate&&te(o)?o:1,T=s.filter(w=>!Ao(w.quality)).sort((w,U)=>ko(w.quality,U.quality)?-1:1),I=(J=(0,Be.default)(T,-1))==null?void 0:J.quality,P=(z=(0,Be.default)(T,0))==null?void 0:z.quality,k=Vr(r,P,I),V=S*Mo(n!=null?n:.5,i.bitrateFactorAtEmptyBuffer,i.bitrateFactorAtFullBuffer),_={},R=T.filter(w=>{let U=!0;if(v)if(w.size)U=w.size.width<=v.width&&w.size.height<=v.height;else{let kt=v&&Hy(v);U=kt?_r(w.quality,kt):!0}if(!U)return _[w.quality]="FitsContainer",!1;let N=h||t,ht=te(N)&&isFinite(N)&&te(w.bitrate)?N-a>=w.bitrate*V:!0,ft=(r==null?void 0:r.min)===w.quality;if(!ht&&!ft)return _[w.quality]="FitsThroughput",!1;if(i.lazyQualitySwitch&&te(i.minBufferToSwitchUp)&&u&&!Ao(u.quality)&&(n!=null?n:0)<i.minBufferToSwitchUp&&ko(w.quality,u.quality))return _[w.quality]="Buffer",!1;if(!!l&&Hi(w.quality,l)&&!ft)return _[w.quality]="DroppedFramesLimit",!1;if(!!p&&Hi(w.quality,p)&&!ft)return _[w.quality]="StallsLimit",!1;let ke=k||(Po(r==null?void 0:r.max)||_r(w.quality,r.max))&&(Po(r==null?void 0:r.min)||Hi(w.quality,r.min)),je=te(d)&&!d?_r(w.quality,i.backgroundVideoQualityLimit):!0;return!ke||!je?(_[w.quality]="FitsQualityLimits",!1):!0})[0];R&&R.bitrate&&Wy.next(R.bitrate);let F=($=R!=null?R:(0,Be.default)(T,-1))!=null?$:s[0],B=c==null?void 0:c.last,H=Lo(i,f,F,c);return te(c)&&H.quality!==(B==null?void 0:B.quality)&&f({message:`
40
+ [best video track] ${T?.quality}
41
+ [selected video track] ${O?.quality}
42
+ `}),O},Us=(e,{container:t,estimatedThroughput:n,tuning:r,limits:i,reserve:a=0,forwardBufferHealth:o,playbackRate:s,current:c,history:l,visible:u,droppedVideoMaxQualityLimit:d,stallsVideoMaxQualityLimit:f,stallsPredictedThroughput:p,abrLogger:m,panelSize:h})=>{us(e,js);let{containerSizeFactor:g,containerSizeLimit:_}=Bs({container:t,tuning:r,limits:i,panelSize:h}),v=r.considerPlaybackRate&&L(s)?s:1,y=e.filter(e=>!ss(e.quality)).sort((e,t)=>as(e.quality,t.quality)?-1:1),b=es.default(y,-1)?.quality,x=es.default(y,0)?.quality,S=Ts(i,x,b),C=v*Os(o??.5,r.bitrateFactorAtEmptyBuffer,r.bitrateFactorAtFullBuffer),w={},T=y.filter(e=>{let t=!0;if(_)if(e.size)t=e.size.width<=_.width&&e.size.height<=_.height;else{let n=_&&ls(_);t=n?cs(e.quality,n):!0}if(!t)return w[e.quality]=`FitsContainer`,!1;let s=p||n,l=L(s)&&isFinite(s)&&L(e.bitrate)?s-a>=e.bitrate*C:!0,m=i?.min===e.quality;if(!l&&!m)return w[e.quality]=`FitsThroughput`,!1;if(r.lazyQualitySwitch&&L(r.minBufferToSwitchUp)&&c&&!ss(c.quality)&&(o??0)<r.minBufferToSwitchUp&&as(e.quality,c.quality))return w[e.quality]=`Buffer`,!1;if(d&&os(e.quality,d)&&!m)return w[e.quality]=`DroppedFramesLimit`,!1;if(f&&os(e.quality,f)&&!m)return w[e.quality]=`StallsLimit`,!1;let h=S||(rs(i?.max)||cs(e.quality,i.max))&&(rs(i?.min)||os(e.quality,i.min)),g=L(u)&&!u?cs(e.quality,r.backgroundVideoQualityLimit):!0;return!h||!g?(w[e.quality]=`FitsQualityLimits`,!1):!0})[0];T&&T.bitrate&&Ds.next(T.bitrate);let E=T??es.default(y,-1)??e[0],D=l?.last,O=Rs(r,m,E,l);return L(l)&&O.quality!==D?.quality&&m({message:`
43
43
  [VIDEO TRACKS ABR]
44
44
  [available video tracks]
45
- ${s.map(w=>{var U,N;return`{ id: ${w.id}, quality: ${w.quality}, bitrate: ${w.bitrate}, size: ${(U=w.size)==null?void 0:U.width}:${(N=w.size)==null?void 0:N.height} }`}).join(`
45
+ ${e.map(e=>`{ id: ${e.id}, quality: ${e.quality}, bitrate: ${e.bitrate}, size: ${e.size?.width}:${e.size?.height} }`).join(`
46
46
  `)}
47
47
 
48
48
  [tuning]
49
- ${(0,ji.default)(i!=null?i:{}).map(([w,U])=>`${w}: ${U}`).join(`
49
+ ${ns.default(r??{}).map(([e,t])=>`${e}: ${t}`).join(`
50
50
  `)}
51
51
 
52
52
  [limit params]
53
53
  containerSizeFactor: ${g},
54
- containerSizeLimit: ${(M=v==null?void 0:v.width)!=null?M:0} x ${(E=v==null?void 0:v.height)!=null?E:0},
55
- estimatedThroughput: ${t},
56
- stallsPredictedThroughput: ${h},
54
+ containerSizeLimit: ${_?.width??0} x ${_?.height??0},
55
+ estimatedThroughput: ${n},
56
+ stallsPredictedThroughput: ${p},
57
57
  reserve: ${a},
58
- playbackRate: ${o},
59
- playbackRateFactor: ${S},
60
- forwardBufferHealth: ${n},
61
- bitrateFactor: ${V},
62
- minBufferToSwitchUp: ${i.minBufferToSwitchUp},
63
- droppedVideoMaxQualityLimit: ${l},
64
- stallsVideoMaxQualityLimit: ${p},
65
- limitsAreInvalid: ${k},
66
- maxQualityLimit: ${r==null?void 0:r.max},
67
- minQualityLimit: ${r==null?void 0:r.min},
58
+ playbackRate: ${s},
59
+ playbackRateFactor: ${v},
60
+ forwardBufferHealth: ${o},
61
+ bitrateFactor: ${C},
62
+ minBufferToSwitchUp: ${r.minBufferToSwitchUp},
63
+ droppedVideoMaxQualityLimit: ${d},
64
+ stallsVideoMaxQualityLimit: ${f},
65
+ limitsAreInvalid: ${S},
66
+ maxQualityLimit: ${i?.max},
67
+ minQualityLimit: ${i?.min},
68
68
 
69
69
  [limited video tracks]
70
- ${(0,ji.default)(_).map(([w,U])=>`${w}: ${U}`).join(`
71
- `)||"All tracks are available"}
70
+ ${ns.default(w).map(([e,t])=>`${e}: ${t}`).join(`
71
+ `)||`All tracks are available`}
72
72
 
73
- [best video track] ${R==null?void 0:R.quality}
74
- [selected video track] ${H==null?void 0:H.quality}
75
- `}),H},Do=(s,e,t,{estimatedThroughput:i,tuning:r,playbackRate:a,forwardBufferHealth:n,history:o,abrLogger:u,stallsPredictedThroughput:c})=>{Ro(t,$o);let d=r.considerPlaybackRate&&te(a)?a:1,l=[...t].sort(Or(-1)),p=s.bitrate;jy(p);let h=d*Mo(n!=null?n:.5,r.bitrateAudioFactorAtEmptyBuffer,r.bitrateAudioFactorAtFullBuffer),f,m=Ga(s,e,t,r.minVideoAudioRatio),g=c||i;te(g)&&isFinite(g)&&(f=l.find(T=>te(T.bitrate)&&te(m==null?void 0:m.bitrate)?g-p>=T.bitrate*h&&T.bitrate>=m.bitrate:!1)),f||(f=m);let v=o==null?void 0:o.last,S=f&&Lo(r,u,f,o);return te(o)&&(S==null?void 0:S.bitrate)!==(v==null?void 0:v.bitrate)&&u({message:`
73
+ [best video track] ${T?.quality}
74
+ [selected video track] ${O?.quality}
75
+ `}),O},Ws=(e,t,n,{estimatedThroughput:r,tuning:i,playbackRate:a,forwardBufferHealth:o,history:s,abrLogger:c,stallsPredictedThroughput:l})=>{us(n,js);let u=i.considerPlaybackRate&&L(a)?a:1,d=[...n].sort(ks(-1)),f=e.bitrate;ds(f);let p=u*Os(o??.5,i.bitrateAudioFactorAtEmptyBuffer,i.bitrateAudioFactorAtFullBuffer),m,h=Fs(e,t,n,i.minVideoAudioRatio),g=l||r;L(g)&&isFinite(g)&&(m=d.find(e=>L(e.bitrate)&&L(h?.bitrate)?g-f>=e.bitrate*p&&e.bitrate>=h.bitrate:!1)),m||=h;let _=s?.last,v=m&&Rs(i,c,m,s);return L(s)&&v?.bitrate!==_?.bitrate&&c({message:`
76
76
  [AUDIO TRACKS ABR]
77
77
  [available audio tracks]
78
- ${t.map(T=>`{ id: ${T.id}, bitrate: ${T.bitrate} }`).join(`
78
+ ${n.map(e=>`{ id: ${e.id}, bitrate: ${e.bitrate} }`).join(`
79
79
  `)}
80
80
 
81
81
  [tuning]
82
- ${(0,ji.default)(r!=null?r:{}).map(([T,I])=>`${T}: ${I}`).join(`
82
+ ${ns.default(i??{}).map(([e,t])=>`${e}: ${t}`).join(`
83
83
  `)}
84
84
 
85
85
  [limit params]
86
- estimatedThroughput: ${i},
87
- stallsPredictedThroughput: ${c},
88
- reserve: ${p},
86
+ estimatedThroughput: ${r},
87
+ stallsPredictedThroughput: ${l},
88
+ reserve: ${f},
89
89
  playbackRate: ${a},
90
- playbackRateFactor: ${d},
91
- forwardBufferHealth: ${n},
92
- bitrateFactor: ${h},
93
- minBufferToSwitchUp: ${r.minBufferToSwitchUp},
90
+ playbackRateFactor: ${u},
91
+ forwardBufferHealth: ${o},
92
+ bitrateFactor: ${p},
93
+ minBufferToSwitchUp: ${i.minBufferToSwitchUp},
94
94
 
95
- [selected audio track] ${S==null?void 0:S.id}
96
- `}),S},Bo=(s,e,t,{estimatedThroughput:i,tuning:r,playbackRate:a,forwardBufferHealth:n,history:o,abrLogger:u,stallsPredictedThroughput:c})=>{Ro(t,$o);let d=r.considerPlaybackRate&&te(a)?a:1,l=Oy.get(t);l||(l=[...t].sort(Or(-1)),Oy.set(t,l));let p=s.bitrate;jy(p);let h=d*Mo(n!=null?n:.5,r.bitrateAudioFactorAtEmptyBuffer,r.bitrateAudioFactorAtFullBuffer),f,m=Ya(s,e,t,r.minVideoAudioRatio),g=c||i;te(g)&&isFinite(g)&&(f=l.find(T=>te(T.bitrate)&&te(m==null?void 0:m.bitrate)?g-p>=T.bitrate*h&&T.bitrate>=m.bitrate:!1)),f||(f=m);let v=o==null?void 0:o.last,S=f&&Lo(r,u,f,o);return te(o)&&(S==null?void 0:S.bitrate)!==(v==null?void 0:v.bitrate)&&u({message:`
95
+ [selected audio track] ${v?.id}
96
+ `}),v},Gs=(e,t,n,{estimatedThroughput:r,tuning:i,playbackRate:a,forwardBufferHealth:o,history:s,abrLogger:c,stallsPredictedThroughput:l})=>{us(n,js);let u=i.considerPlaybackRate&&L(a)?a:1,d=Ns.get(n);d||(d=[...n].sort(ks(-1)),Ns.set(n,d));let f=e.bitrate;ds(f);let p=u*Os(o??.5,i.bitrateAudioFactorAtEmptyBuffer,i.bitrateAudioFactorAtFullBuffer),m,h=Is(e,t,n,i.minVideoAudioRatio),g=l||r;L(g)&&isFinite(g)&&(m=d.find(e=>L(e.bitrate)&&L(h?.bitrate)?g-f>=e.bitrate*p&&e.bitrate>=h.bitrate:!1)),m||=h;let _=s?.last,v=m&&Rs(i,c,m,s);return L(s)&&v?.bitrate!==_?.bitrate&&c({message:`
97
97
  [AUDIO TRACKS ABR]
98
98
  [available audio tracks]
99
- ${t.map(T=>`{ id: ${T.id}, bitrate: ${T.bitrate} }`).join(`
99
+ ${n.map(e=>`{ id: ${e.id}, bitrate: ${e.bitrate} }`).join(`
100
100
  `)}
101
101
 
102
102
  [tuning]
103
- ${(0,ji.default)(r!=null?r:{}).map(([T,I])=>`${T}: ${I}`).join(`
103
+ ${ns.default(i??{}).map(([e,t])=>`${e}: ${t}`).join(`
104
104
  `)}
105
105
 
106
106
  [limit params]
107
- estimatedThroughput: ${i},
108
- stallsPredictedThroughput: ${c},
109
- reserve: ${p},
107
+ estimatedThroughput: ${r},
108
+ stallsPredictedThroughput: ${l},
109
+ reserve: ${f},
110
110
  playbackRate: ${a},
111
- playbackRateFactor: ${d},
112
- forwardBufferHealth: ${n},
113
- bitrateFactor: ${h},
114
- minBufferToSwitchUp: ${r.minBufferToSwitchUp},
115
-
116
- [selected audio track] ${S==null?void 0:S.id}
117
- `}),S};var Re=s=>new URL(s).hostname;import{assertNever as sT,assertNonNullable as nT,combine as jD,debounce as WD,ErrorCategory as oT,filter as uT,filterChanged as QD,isNonNullable as Id,map as No,merge as cT,observableFrom as zD,once as GD,Subscription as YD,ValueSubject as Ed,videoQualityToHeight as lT,videoSizeToQuality as KD}from"@vkontakte/videoplayer-shared/es2015";var tT=q(et(),1);var Gy=q(Oe(),1);var zy=s=>{if(s instanceof DOMException&&(0,Gy.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"))},He=(s,e)=>y(null,null,function*(){let t=s.muted;try{yield s.play()}catch(i){if(!zy(i))return!1;if(e&&e(),t)return console.warn(i),!1;s.muted=!0;try{yield s.play()}catch(r){return zy(r)&&(s.muted=!1,console.warn(r)),!1}}return!0});import{isNonNullable as _o,isNullable as PD,assertNonNullable as Ja}from"@vkontakte/videoplayer-shared/es2015";var Ky=q(Ci(),1);import{isNonNullable as Yy,assertNonNullable as Vo,now as TD}from"@vkontakte/videoplayer-shared/es2015";function Te(){return TD()}function gd(s){return Te()-s}function vd(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 c=n.indexOf("?")>-1?"&":"?";return u&&(n+=c+"lowLat=1",c="&"),o&&(n+=c+"_rnd="+Math.floor(999999999*Math.random())),n}}}function Xy(s,e,t){let i=(...r)=>{t.apply(null,r),s.removeEventListener(e,i)};s.addEventListener(e,i)}function Nr(s,e,t,i){let r=window.XMLHttpRequest,a,n,o,u=!1,c=0,d,l,p=!1,h="arraybuffer",f=7e3,m=2e3,g=()=>{if(u)return;Vo(d);let B=gd(d),H;if(B<m){H=m-B,setTimeout(g,H);return}m*=2,m>f&&(m=f),n&&n.abort(),n=new r,k()},v=B=>(a=B,F),S=B=>(l=B,F),T=()=>(h="json",F),I=()=>{if(!u){if(--c>=0){g(),i&&i();return}u=!0,l&&l(),t&&t()}},P=B=>(p=B,F),k=()=>{d=Te(),n=new r,n.open("get",s);let B=0,H,J=0,z=()=>(Vo(d),Math.max(d,Math.max(H||0,J||0)));if(a&&n.addEventListener("progress",$=>{let M=Te();a.updateChunk&&$.loaded>B&&(a.updateChunk(z(),$.loaded-B),B=$.loaded,H=M)}),o&&(n.timeout=o,n.addEventListener("timeout",()=>I())),n.addEventListener("load",()=>{if(u)return;Vo(n);let $=n.status;if($>=200&&$<300){let{response:M,responseType:E}=n,w=M==null?void 0:M.byteLength;if(typeof w=="number"&&a){let U=w-B;U&&a.updateChunk&&a.updateChunk(z(),U)}E==="json"&&(!M||!(0,Ky.default)(M).length)?I():(l&&l(),e(M))}else I()}),n.addEventListener("error",()=>{I()}),p){let $=()=>{Vo(n),n.readyState===XMLHttpRequest.HEADERS_RECEIVED&&(J=Te(),n.removeEventListener("readystatechange",$))};n.addEventListener("readystatechange",$)}return n.responseType=h,n.send(),F},F={withBitrateReporting:v,withParallel:P,withJSONResponse:T,withRetryCount:B=>(c=B,F),withRetryInterval:(B,H)=>(Yy(B)&&(m=B),Yy(H)&&(f=H),F),withTimeout:B=>(o=B,F),withFinally:S,send:k,abort:()=>{n&&(n.abort(),n=void 0),u=!0,l&&l()}};return F}var Ka=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 Jy=q(Ci(),1);var Xa=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=Te(),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=Te()-i,delete this.activeRequests[t],this._sendPending(),e._cb?e._cb(u,e._downloadTime):(this.limitCompleteCount(),this.completeRequests[t]=e)},n=()=>{e._finallyCB&&e._finallyCB()},o=()=>{e._retry=1,e._retryCB&&e._retryCB()};e._request=Nr(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=Te()}_getParallelRequestCount(){return Math.min(this.MAX_PARALLEL_REQUESTS,this.averageSegmentDuration<3e3?3:2)}_getPrefetchDelay(){return Math.max(100,Math.min(5e3,this.averageSegmentDuration/3))}_canSendPending(){let e=this._getParallelRequestCount(),t=Te();if(Object.keys(this.activeRequests).length>=e)return!1;let i=this._getPrefetchDelay()-(t-this.lastPrefetchStart);return this.throttleTimeout&&clearTimeout(this.throttleTimeout),i>0?(this.throttleTimeout=window.setTimeout(()=>this._sendPending(),i),!1):!0}_sendPending(){for(;this._canSendPending();){let e=this.pendingQueue.pop();if(e){if(this.activeRequests[e]||this.completeRequests[e])continue;this.logger(`Submitting pending request url=${e}`),this._sendRequest({},e)}else return}}_removeFromActive(e){delete this.completeRequests[e],delete this.activeRequests[e]}abortAll(){(0,Jy.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 kD}from"@vkontakte/videoplayer-shared/es2015";import{isNonNullable as Zy}from"@vkontakte/videoplayer-shared/es2015";var se=(s,e)=>Zy(s)&&Zy(e)&&s.readyState==="open"&&ID(s,e);function ID(s,e){for(let t=0;t<s.activeSourceBuffers.length;++t)if(s.activeSourceBuffers[t]===e)return!0;return!1}var eT=q(ti(),1);import{getWindow as ED}from"@vkontakte/videoplayer-shared/es2015";var Sd=class{constructor(e,t,i,r){this.tag=e;this.time=t;this.data=i;this.stack=r}toString(){return`${this.tag}: ${this.time}: ${JSON.stringify(this.data)}${this.stack?`, stack: ${this.stack}`:""}`}toDevNullEntry(){var t;let e=(0,eT.default)(this.data).map(([i,r])=>`${i}:${r}`).join(",");return{key:this.tag,strings:[e,(t=this.stack)!=null?t:""],numbers:[this.time]}}},wD=(s,e="warn")=>{let t=ED(),i=[];function r(a,n=!1){var c,d,l;let o=(l=(d=(c=t.performance)==null?void 0:c.timing)==null?void 0:d.navigationStart)!=null?l:0,u=new Sd(s,Math.round((Date.now()-o)/1e3),a,n?new Error().stack:void 0);i.push(u),e&&t.console[e](u.toString())}return r.reset=()=>{i=[]},r.drain=()=>{let a=i;return i=[],a},r},j=wD("vp_dash_live_debug",!1);var Oo=1e4,yd=3;var AD=6e4,RD=10,MD=1,$D=500,Za=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 kD,this.chunkRateEstimator=new Ka(this.params.logger),this._initVideo()}attachSource(e){this.manifestUrl=e,this.urlResolver=vd(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(){if(this.rep&&(j({m:"ldp.catchUp.1"}),this.rep.stop()),this.currentManifestEntry){let e=this.params.playbackState.getState();this.paused=e==="paused",j({m:"ldp.catchUp.2"}),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()?(j({m:"ldp.play.1"}),this._playVideoElement()):(j({m:"ldp.play.2"}),this._notifyBuffering(!0))):(j({m:"ldp.play.3"}),this.catchUp())}startPlay(e,t){this.autoQuality=t,j({m:"startPlay",url:e.jidxUrl}),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=vd(e),j({m:"ldp.reinit",url: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;j({m:"iv"}),e.addEventListener("error",()=>{var r,a,n,o;!!e.error&&!this.destroyed&&(j({m:"iv.err",e:((r=e.error)==null?void 0:r.code)+":"+((a=e.error)==null?void 0:a.message)}),t(`Video element error: ${(n=e.error)==null?void 0:n.code}, details: ${(o=e.error)==null?void 0:o.message}`),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"),j({m:"ldp.fs",t:r}),t.currentTime=r))}_selectQuality(e){let{videoElement:t}=this.params,i,r,a,n=t&&1.62*(O.display.pixelRatio||1)*t.offsetHeight||520;for(let o=0;o<this.manifest.length;++o){a=this.manifest[o];let{max:u,min:c}=this.autoQualityLimits||{};!_y({limits:this.autoQualityLimits,highestAvailableHeight:this.manifest[0].video.height,lowestAvailableHeight:(0,tT.default)(this.manifest,-1).video.height})&&(u&&a.video.height>u||c&&a.video.height<c)||(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||_o(this.downloadRate)&&(this.downloadRate>1.5&&t>2||this.downloadRate>2&&t>1)}_setVideoSrc(e,t){var o;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",()=>{var u,c;if(((u=this.mediaSource)==null?void 0:u.readyState)!=="open"){j({m:"sourceopen",err:`not open: ${(c=this.mediaSource)==null?void 0:c.readyState}`});return}j({m:"sourceopen",c:e.codecs}),this.sourceBuffer=this.mediaSource.addSourceBuffer(e.codecs),this.bufferStates=[],t()}),(o=this.mediaSource)==null||o.addEventListener("sourceclose",u=>{j({m:"sourceclose"})}),this.videoPlayStarted=!1,r.addEventListener("canplay",()=>{j({m:"canplay"}),this.shouldPlay()&&(this.videoPlayStarted=!0,this._playVideoElement())});let n=()=>{Xy(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 Xa(yd,Oo,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,c=null,d=!1,l=()=>{let I=a&&(!d||d===this.rep);return I||t("Not running!"),I},p=(I,P,k)=>{u&&u.abort(),u=Nr(this.urlResolver.resolve(I,!1),P,k,()=>this._retryCallback()).withTimeout(Oo).withBitrateReporting(this.bitrateSwitcher).withRetryCount(yd).withFinally(()=>{u=null}).send()},h=(I,P,k)=>{Ja(this.filesFetcher),o==null||o.abort(),o=this.filesFetcher.requestData(this.urlResolver.resolve(I,!1),P,k,()=>this._retryCallback()).withFinally(()=>{o=null}).send()},f=I=>{let P=i.playbackRate;i.playbackRate!==I&&(t(`Playback rate switch: ${P}=>${I}`),i.playbackRate=I)},m=I=>{this.lowLatency=I,t(`lowLatency changed to ${I}`),g()},g=()=>{if(!this.lowLatency&&!this.params.config.isLiveCatchUpMode)f(1);else{let I=this._getBufferSizeSec();if(this.bufferStates.length<5){f(1);return}let k=Te()-1e4,V=0;for(let L=0;L<this.bufferStates.length;L++){let R=this.bufferStates[L];I=Math.min(I,R.buf),R.ts<k&&V++}this.bufferStates.splice(0,V),t(`update playback rate; minBuffer=${I} drop=${V} jitter=${this.sourceJitter}`);let _=I-MD;this.sourceJitter>=0?_-=this.sourceJitter/2:this.sourceJitter-=1,_>3?f(1.15):_>1?f(1.1):_>.3?f(1.05):f(1)}},v=I=>{let P,k=()=>P&&P.start?P.start.length:0,V=$=>P.start[$]/1e3,_=$=>P.dur[$]/1e3,L=$=>P.fragIndex+$,R=($,M)=>({chunkIdx:L($),startTS:V($),dur:_($),discontinuity:M}),F=()=>{let $=0;if(P&&P.dur){let M=this.lowLatency?this.params.config.lowLatencyMinBuffer:this.params.config.minBuffer,E=this.lowLatency?this.params.config.lowLatencyMinBufferSegments:this.params.config.minBufferSegments,w=M;this.sourceJitter>1&&(w+=this.sourceJitter-1);let U=P.dur.length-1;for(;U>=0&&(w-=P.dur[U],!(w<=0));--U);$=Math.min(U,P.dur.length-1-E),$=Math.max($,0)}return R($,!0)},B=$=>{let M=k();if(!(M<=0)){if(_o($)){for(let E=0;E<M;E++)if(V(E)>$)return R(E)}return F()}},H=$=>{let M=k(),E=$?$.chunkIdx+1:0,w=E-P.fragIndex;if(!(M<=0)){if(!$||w<0||w-M>RD)return t(`Resync: offset=${w} bChunks=${M} chunk=`+JSON.stringify($)),F();if(!(w>=M))return R(E-P.fragIndex,!1)}},J=($,M,E)=>{c&&c.abort(),c=Nr(this.urlResolver.resolve($,!0,this.lowLatency),M,E,()=>this._retryCallback()).withTimeout(Oo).withRetryCount(yd).withFinally(()=>{c=null}).withJSONResponse().send()};return{seek:($,M)=>{J(I,E=>{if(!l())return;P=E;let w=!!P.lowLatency;w!==this.lowLatency&&m(w);let U=0;for(let N=0;N<P.dur.length;++N)U+=P.dur[N];U>0&&(Ja(this.filesFetcher),this.filesFetcher.optimizeForSegDuration(U/P.dur.length)),r({name:"index",zeroTime:P.zeroTime,shiftDuration:P.shiftDuration}),this.sourceJitter=P.hasOwnProperty("jitter")?Math.min(10,Math.max(.01,P.jitter/1e3)):1,$(B(M))},()=>this._handleNetworkError())},nextChunk:H}},S=()=>{a=!1,o&&o.abort(),u&&u.abort(),c&&c.abort(),Ja(this.filesFetcher),this.filesFetcher.abortAll()};return d={start:I=>{let{videoElement:P,logger:k}=this.params,V=v(e.jidxUrl),_,L,R,F,B=0,H,J,z,$=()=>{H&&(clearTimeout(H),H=void 0);let ee=Math.max($D,1e3*(this._getBufferSizeSec()-this.sourceJitter-5)),xe=B+ee,Pe=Te(),ke=Math.min(1e4,xe-Pe);B=Pe;let je=()=>{c||l()&&V.seek(()=>{l()&&(B=Te(),M(),$())})};ke>0?H=window.setTimeout(()=>{this.paused?$():je()},ke):je()},M=()=>{let ee;for(;ee=V.nextChunk(F);)F=ee,ht(ee);let xe=V.nextChunk(R);if(xe){if(R&&xe.discontinuity){k("Detected discontinuity; restarting playback"),this.paused?$():(S(),j({m:"ldp.fetchChunkIdx.0"}),this._initPlayerWith(e));return}N(xe)}else $()},E=(ee,xe)=>{if(!l()||!this.sourceBuffer){j({m:"ab.0",c:[!l(),!this.sourceBuffer]});return}let Pe,ke,je,kt=At=>{j({m:"ldp.postpone",t:At}),window.setTimeout(()=>{l()&&E(ee,xe)},At)};if(this.sourceBuffer.updating)k("Source buffer is updating; delaying appendBuffer"),j({m:"ldp.ab.1"}),kt(100);else{let At=Te(),yi=P.currentTime;!this.paused&&P.buffered.length>1&&J===yi&&At-z>500&&(k("Stall suspected; trying to fix"),this._fixupStall()),J!==yi&&(J=yi,z=At);let ur=this._getBufferSizeSec();if(ur>30)j({m:"ldp.ab.3"}),k(`Buffered ${ur} seconds; delaying appendBuffer`),kt(2e3);else try{if(this.params.config.useInvalidBufferFix&&se(this.mediaSource,this.sourceBuffer))return;this.sourceBuffer.appendBuffer(ee),this.videoPlayStarted?(j({m:"ldp.ab.5"}),this.bufferStates.push({ts:At,buf:ur}),g(),this.bufferStates.length>200&&this.bufferStates.shift()):this.shouldPlay()&&(j({m:"ldp.ab.4"}),this.videoPlayStarted=!0,this._playVideoElement()),xe&&xe()}catch(Ti){j({m:"ldp.ab.err",e:Ti.name}),Ti.name==="QuotaExceededError"?(k("QuotaExceededError; delaying appendBuffer"),je=this.sourceBuffer.buffered.length,je!==0&&(Pe=this.sourceBuffer.buffered.start(0),ke=yi,ke-Pe>4&&this.sourceBuffer.remove(Pe,ke-3)),kt(1e3)):(k(Ti.name),r({name:"error",type:"buffer",message:`appendBuffer failed due to ${Ti.name}`}))}}},w=()=>{L&&_&&(k([`Appending chunk, sz=${L.byteLength}:`,JSON.stringify(R)]),E(L,function(){L=null,M()}))},U=ee=>e.fragUrlTemplate.replace("%%id%%",ee.chunkIdx),N=ee=>{l()&&h(U(ee),(xe,Pe)=>{if(l()){if(Pe/=1e3,L=xe,R=ee,n=ee.startTS,Pe){let ke=Math.min(10,ee.dur/Pe);this.downloadRate=this.downloadRate?(1-.3)*this.downloadRate+.3*ke:ke}w()}},()=>this._handleNetworkError())},ht=ee=>{l()&&(Ja(this.filesFetcher),this.filesFetcher.prefetch(this.urlResolver.resolve(U(ee),!1)))},ft=ee=>{l()&&(e.cachedHeader=ee,E(ee,()=>{_=!0,w()}))};a=!0,V.seek(ee=>{if(l()){if(B=Te(),!ee){$();return}F=ee,!PD(I)||ee.startTS>I?N(ee):(R=ee,M())}},I),e.cachedHeader?ft(e.cachedHeader):p(e.headerUrl,ft,()=>this._handleNetworkError())},stop:S,getTimestampSec:()=>n},d}_switchToQuality(e){let{logger:t,playerCallback:i}=this.params,r;e.bitrate!==this.bitrate&&(this.rep&&(r=this.rep.getTimestampSec(),_o(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,Ja(this.bitrateSwitcher),this.bitrateSwitcher.notifySwitch(this.bitrate),this.rep.start(r),i({name:"qualitySwitch",quality:e}))}_qualityAvailable(e){return _o(this.manifest.find(t=>t.name===e))}_initBitrateSwitcher(){let{logger:e,playerCallback:t}=this.params,i=l=>{if(!this.autoQuality)return;let p,h,f;if(this.currentManifestEntry&&this._qualityAvailable(this.currentManifestEntry.name)&&l<this.bitrate&&(h=this._getBufferSizeSec(),f=l/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(l)}`);return}p=this._selectQuality(l),p?this._switchToQuality(p):e(`Could not find quality by bitrate ${l}`)},a={updateChunk:(p,h)=>{let f=Te();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,c=()=>{let l=a.get();if(l&&o&&this.autoQuality){if(u&&l>o&&gd(n)<3e4)return;i(l)}u=this.autoQuality};return{updateChunk:(l,p)=>{let h=a.updateChunk(l,p);return h&&c(),h},notifySwitch:l=>{let p=Te();l<o&&(n=p),o=l}}}_fetchManifest(e,t,i){this.manifestRequest=Nr(this.urlResolver.resolve(e,!0),t,i,()=>this._retryCallback()).withJSONResponse().withTimeout(Oo).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;He(e,()=>{this.soundProhibitedEvent$.next()}).then(t=>{j({m:"ldp.pve.1"}),t||(j({m:"ldp.pve.2"}),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!=null&&n.length?(n.forEach((u,c)=>{var d,l;u.video&&r.canPlayType(u.codecs).replace(/no/,"")&&((l=(d=window.MediaSource)==null?void 0:d.isTypeSupported)!=null&&l.call(d,u.codecs))&&(u.index=c,o.push(u))}),o.sort(function(u,c){return u.video&&c.video?c.video.height-u.video.height:c.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))},AD))}_initManifest(){this._fetchManifest(this.manifestUrl,e=>{this.destroyed||(this._handleManifestUpdate(e),this._refetchManifest(this.manifestUrl))},()=>this._handleNetworkError())}};var aT=q(ti(),1);import{debounce as LD,filter as iT,fromEvent as CD,interval as DD,isHigher as BD,isInvariantQuality as VD,isLower as _D,merge as OD,Subject as rT,Subscription as ND}from"@vkontakte/videoplayer-shared/es2015";var Td=class{constructor(){this.onDroopedVideoFramesLimit$=new rT;this.subscription=new ND;this.playing=!1;this.tracks=[];this.forceChecker$=new rT;this.isForceCheckCounter=0;this.prevTotalVideoFrames=0;this.prevDroppedVideoFrames=0;this.limitCounts={};this.handleChangeVideoQuality=()=>{let e=this.tracks.find(({size:t})=>(t==null?void 0:t.height)===this.video.videoHeight&&(t==null?void 0:t.width)===this.video.videoWidth);e&&!VD(e.quality)&&this.onChangeQuality(e.quality)};this.checkDroppedFrames=()=>{var n;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&&BD(this.currentQuality,this.droppedFramesChecker.minQualityBanLimit)&&(this.limitCounts[this.currentQuality]=((n=this.limitCounts[this.currentQuality])!=null?n: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(CD(this.video,"resize").subscribe(this.handleChangeVideoQuality));let e=DD(this.droppedFramesChecker.checkTime).pipe(iT(()=>this.playing),iT(()=>{let r=!!this.isForceCheckCounter;return r&&(this.isForceCheckCounter-=1),!r})),t=this.forceChecker$.pipe(LD(this.droppedFramesChecker.checkTime)),i=OD(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){var i,r;let t=(r=(i=(0,aT.default)(this.limitCounts).filter(([,a])=>a>=this.droppedFramesChecker.countLimit).sort(([a],[n])=>_D(a,n)?-1:1))==null?void 0:i[0])==null?void 0:r[0];return e!=null?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}},Fr=Td;import{map as FD,Observable as UD}from"@vkontakte/videoplayer-shared/es2015";import{fromEvent as qD}from"@vkontakte/videoplayer-shared/es2015";var es=()=>{var s;return!!((s=window.documentPictureInPicture)!=null&&s.window)||!!document.pictureInPictureElement};var HD=(s,e)=>new UD(t=>{if(!window.IntersectionObserver)return;let i={root:null},r=new IntersectionObserver((n,o)=>{n.forEach(u=>t.next(u.isIntersecting||es()))},x(x({},i),e));r.observe(s);let a=qD(document,"visibilitychange").pipe(FD(n=>!document.hidden||es())).subscribe(n=>t.next(n));return()=>{r.unobserve(s),a.unsubscribe()}}),tt=HD;var XD=["paused","playing","ready"],JD=["paused","playing","ready"],ts=class{constructor(e){this.subscription=new YD;this.videoState=new Q("stopped");this.representations$=new Ed([]);this.droppedFramesManager=new Fr;this.maxSeekBackTime$=new Ed(1/0);this.zeroTime$=new Ed(void 0);this.liveOffset=new qi;this._dashCb=e=>{var t,i,r,a;switch(e.name){case"buffering":{let n=e.isBuffering;this.params.output.isBuffering$.next(n);break}case"error":{this.params.output.error$.next({id:`DashLiveProviderInternal:${e.type}`,category:oT.WTF,message:`LiveDashPlayer reported error${e.message?`: ${e.message}`:""}`});break}case"manifest":{let n=e.manifest,o=[];for(let u of n){let c=(t=u.name)!=null?t:u.index.toString(10),d=(i=ai(u.name))!=null?i:KD(u.video),l=u.bitrate/1e3,p=x({},u.video);if(!d)continue;let h={id:c,quality:d,bitrate:l,size:p};o.push({track:h,representation:u})}this.representations$.next(o),this.params.output.availableVideoTracks$.next(o.map(({track:u})=>u)),((r=this.videoState.getTransition())==null?void 0:r.to)==="manifest_ready"&&this.videoState.setState("manifest_ready");break}case"qualitySwitch":{let n=e.quality,o=(a=this.representations$.getValue().find(({representation:u})=>u===n))==null?void 0:a.track;this.params.output.hostname$.next(new URL(n.headerUrl,this.params.source.url).hostname),Id(o)&&this.params.output.currentVideoTrack$.next(o);break}case"bandwidth":{let{size:n,duration:o}=e;this.params.dependencies.throughputEstimator.addRawSpeed(n,o);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,wd.default)(JD,e)&&(n||o)){this.prepare();return}if((r==null?void 0:r.to)!=="paused"&&a.state==="requested"&&(0,wd.default)(XD,e)){this.seek(a.position-this.liveOffset.getTotalPausedTime());return}switch(e){case"stopped":this.videoState.startTransitionTo("manifest_ready"),this.dash.attachSource(pe(this.params.source.url));return;case"manifest_ready":this.videoState.startTransitionTo("ready"),this.prepare();break;case"ready":if(i==="paused")this.videoState.setState("paused");else if(i==="playing"){j({m:"dlp.sync.1"}),this.videoState.startTransitionTo("playing");let u=r==null?void 0:r.from;u&&u==="ready"&&(j({m:"dlp.sync.2"}),this.dash.catchUp()),j({m:"dlp.sync.3"}),this.dash.play()}return;case"playing":i==="paused"&&(this.videoState.startTransitionTo("paused"),this.liveOffset.pause(),this.dash.pause());return;case"paused":if(i==="playing")if(this.videoState.startTransitionTo("playing"),this.liveOffset.getTotalPausedTime()<this.params.config.maxPausedTime&&this.liveOffset.getTotalOffset()<this.maxSeekBackTime$.getValue())this.liveOffset.resume(),this.dash.play(),this.params.output.position$.next(-this.liveOffset.getTotalOffset()/1e3);else{let u=this.liveOffset.getTotalOffset();u>=this.maxSeekBackTime$.getValue()&&(u=0,this.liveOffset.resetTo(u)),this.liveOffset.resume(),this.params.output.position$.next(-u/1e3),this.dash.reinit(pe(this.params.source.url,u))}return;default:return sT(e)}};this.textTracksManager=new Ze(e.source.url),this.params=e,this.log=this.params.dependencies.logger.createComponentLog("DashLiveProvider");let t=r=>{e.output.error$.next({id:"DashLiveProvider",category:oT.WTF,message:"DashLiveProvider internal logic error",thrown:r})};this.subscription.add(cT(this.videoState.stateChangeStarted$.pipe(No(r=>({transition:r,type:"start"}))),this.videoState.stateChangeEnded$.pipe(No(r=>({transition:r,type:"end"})))).subscribe(({transition:r,type:a})=>{j({m:"dlp.s.1",t:a+`:${r.from}-${r.to}`}),this.log({message:`[videoState change] ${a}: ${JSON.stringify(r)}`})})),this.video=Ne(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(Re(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=qe(this.video);this.subscription.add(()=>i.destroy()),this.subscription.add(this.representations$.pipe(No(r=>r.map(({track:a})=>a)),uT(r=>!!r.length),GD()).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(()=>{var r;((r=this.videoState.getTransition())==null?void 0:r.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(QD(),No(r=>-r/1e3)).subscribe(this.params.output.duration$)).add(jD({zeroTime:this.zeroTime$.pipe(uT(Id)),position:i.timeUpdate$}).subscribe(({zeroTime:r,position:a})=>{a===0&&this.videoState.getTransition()||this.params.output.liveTime$.next(r+a*1e3)},t)).add(It(this.video,this.params.desiredState.isLooped,t)).add(Ue(this.video,this.params.desiredState.volume,i.volumeState$,t)).add(i.volumeState$.subscribe(this.params.output.volume$,t)).add(Je(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(tt(this.video).subscribe(this.params.output.elementVisible$)).add(this.params.desiredState.autoVideoTrackLimits.stateChangeStarted$.subscribe(({to:{max:r,min:a}})=>{this.dash.setAutoQualityLimits({max:r&&lT(r),min:a&&lT(a)}),this.params.output.autoVideoTrackLimits$.next({max:r,min:a})})).add(this.videoState.stateChangeEnded$.subscribe(r=>{var a;switch(r.to){case"stopped":this.params.output.position$.next(0),this.params.output.duration$.next(1/0),j({m:"dlp.vse.s"}),this.params.desiredState.playbackState.setState("stopped");break;case"manifest_ready":case"ready":((a=this.params.desiredState.playbackState.getTransition())==null?void 0:a.to)==="ready"&&(j({m:"dlp.vse.r"}),this.params.desiredState.playbackState.setState("ready"));break;case"paused":j({m:"dlp.vse.pa"}),this.params.desiredState.playbackState.setState("paused");break;case"playing":j({m:"dlp.vse.pl"}),this.params.desiredState.playbackState.setState("playing");break;default:return sT(r.to)}},t)).add(cT(e.desiredState.playbackState.stateChangeStarted$,e.desiredState.seekState.stateChangeEnded$,e.desiredState.videoTrack.stateChangeStarted$,e.desiredState.autoVideoTrackSwitching.stateChangeStarted$,this.videoState.stateChangeEnded$,this.droppedFramesManager.onDroopedVideoFramesLimit$,zD(["init"])).pipe(WD(0)).subscribe(this.syncPlayback,t))}destroy(){j({m:"dlp.destroy"}),this.subscription.unsubscribe(),this.textTracksManager.destroy(),this.droppedFramesManager.destroy(),this.dash.destroy(),this.params.output.element$.next(void 0),Fe(this.video,this.params.tuning.keepVideoElement,this.params.tuning.clearVideoElementInnerHTML)}createLiveDashPlayer(){let e=new Za({videoElement:this.video,videoState:this.videoState,playbackState:this.params.desiredState.playbackState,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,useInvalidBufferFix:this.params.tuning.useInvalidBufferFix||!1},playerCallback:this._dashCb,logger:t=>{this.params.dependencies.logger.log({message:String(t),component:"LiveDashPlayer"})}});return e.pause(),e}prepare(){var c,d,l,p,h,f;let e=this.representations$.getValue(),t=(d=(c=this.params.desiredState.videoTrack.getTransition())==null?void 0:c.to)!=null?d:this.params.desiredState.videoTrack.getState(),i=(p=(l=this.params.desiredState.autoVideoTrackSwitching.getTransition())==null?void 0:l.to)!=null?p:this.params.desiredState.autoVideoTrackSwitching.getState(),r=!i&&Id(t)?t:xt(e.map(({track:m})=>m),{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==null?void 0:r.id,n=this.params.desiredState.videoTrack.getTransition(),o=(h=this.params.desiredState.videoTrack.getState())==null?void 0:h.id,u=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(r&&(n||a!==o)&&this.setVideoTrack(r),u&&this.setAutoQuality(i),n||u||a!==o){let m=(f=e.find(({track:g})=>g.id===a))==null?void 0:f.representation;nT(m,"Representations missing"),this.dash.startPlay(m,i)}}setVideoTrack(e){var i;let t=(i=this.representations$.getValue().find(({track:r})=>r.id===e.id))==null?void 0:i.representation;nT(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),j({m:"dlp.seek",p:e,no:n,url:this.params.source.url}),this.dash.reinit(pe(this.params.source.url,n)),r&&this.dash.pause(),this.liveOffset.resetTo(n,r)}};var dT=ts;import{filter as l_,filterChanged as d_,isNonNullable as p_}from"@vkontakte/videoplayer-shared/es2015";import{assertNever as f0,assertNonNullable as m0,debounce as b0,ErrorCategory as IT,filter as Dd,filterChanged as Wo,fromEvent as g0,isNonNullable as ET,isNullable as v0,map as Bd,merge as Qo,observableFrom as Vd,once as wT,Subscription as S0,throttle as y0}from"@vkontakte/videoplayer-shared/es2015";var xd=q(et(),1);import{videoSizeToQuality as ZD}from"@vkontakte/videoplayer-shared/es2015";var pT=({id:s,width:e,height:t,bitrate:i,fps:r,quality:a,streamId:n})=>{var u;let o=(u=a?ai(a):void 0)!=null?u:ZD({width:e,height:t});return o&&{id:s,quality:o,bitrate:i,size:{width:e,height:t},fps:r,streamId:n}},hT=({id:s,bitrate:e})=>({id:s,bitrate:e}),fT=({language:s,label:e},{id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:s,label:e}),mT=({language:s,label:e,id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:s,label:e}),Pd=({id:s,language:e,label:t,codecs:i,isDefault:r})=>({id:s,language:e,label:t,codec:(0,xd.default)(i.split("."),0),isDefault:r}),kd=({id:s,language:e,label:t,hdr:i,codecs:r})=>({id:s,language:e,hdr:i,label:t,codec:(0,xd.default)(r.split("."),0)});var Ie=s=>s.type==="template";var Fo=class{constructor(e,t){this.fov=e,this.orientation=t}};var Uo=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/gt(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!=null?e:this.rotationSpeed.x,this.rotationSpeed.y=t!=null?t:this.rotationSpeed.y,this.rotationSpeed.z=i!=null?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=x({},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*gt(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 bT=`attribute vec2 a_vertex;
118
- attribute vec2 a_texel;
119
-
120
- varying vec2 v_texel;
121
-
122
- void main(void) {
123
- // direct vertex drawing
124
- gl_Position = vec4(a_vertex, 0.0, 1.0);
125
- // save texel vector to pass to fragment shader
126
- v_texel = a_texel;
127
- }
128
- `;var gT=`#ifdef GL_ES
129
- precision highp float;
130
- precision highp int;
131
- #else
132
- precision highp float;
133
- #endif
134
-
135
- #define PI 3.14159265358979323846264
136
-
137
- varying vec2 v_texel; // [0..1, 0..1]
138
-
139
- uniform sampler2D u_texture;
140
- uniform vec2 u_focus; // current central point [-180..180, -90..90] (degrees)
141
-
142
- void main(void) {
143
- // center point of output projection
144
- float lambda0 = u_focus.x / 360.0;
145
- float phi0 = u_focus.y / 180.0;
146
-
147
- float lambda = PI * 2.0 * (v_texel.x - 0.5 - lambda0); // [-pi..+pi] (rad)
148
- float phi = PI * (v_texel.y - 0.5 - phi0); // [-pi/2..+pi/2] (rad)
149
-
150
- float p = sqrt(lambda * lambda + phi * phi); // rou
151
- float c = atan(p);
152
- float cos_c = cos(c);
153
- float sin_c = sin(c);
154
-
155
- // geo coordinates of projection
156
- float x = lambda0 + atan(
157
- lambda * sin_c,
158
- p * cos(phi0) * cos_c - phi * sin(phi0) * sin_c
159
- );
160
- float y = asin(cos_c * sin(phi0) + (phi * sin_c * cos(phi0)) / p);
161
-
162
- // reprojected texture coordinates
163
- vec2 tc = vec2(
164
- mod(x / (PI * 2.0) - 0.5, 1.0), // [0..1]
165
- mod(y / PI - 0.5, 1.0) // [0..1]
166
- );
111
+ playbackRateFactor: ${u},
112
+ forwardBufferHealth: ${o},
113
+ bitrateFactor: ${p},
114
+ minBufferToSwitchUp: ${i.minBufferToSwitchUp},
167
115
 
168
- // sample using new coordinates
169
- gl_FragColor = texture2D(u_texture, tc);
170
- }
171
- `;var Ur=class{constructor(e,t,i){this.videoInitialized=!1;this.active=!1;this.container=e,this.sourceVideoElement=t,this.params=i,this.canvas=this.createCanvas();let r=this.canvas.getContext("webgl");if(!r)throw new Error("Could not initialize WebGL context");this.gl=r,this.container.appendChild(this.canvas),this.camera=new Fo(this.params.fov,this.params.orientation),this.cameraRotationManager=new Uo(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(bT,this.gl.VERTEX_SHADER),i=this.createShader(gT,this.gl.FRAGMENT_SHADER);if(this.gl.attachShader(e,t),this.gl.attachShader(e,i),this.gl.linkProgram(e),!this.gl.getProgramParameter(e,this.gl.LINK_STATUS))throw this.destroy(),new Error("Could not link shader program.");return e}createTexture(){let e=this.gl.createTexture();if(!e)throw this.destroy(),new Error("Could not create texture");return this.gl.bindTexture(this.gl.TEXTURE_2D,e),this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_MAG_FILTER,this.gl.LINEAR),this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_MIN_FILTER,this.gl.LINEAR),this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_WRAP_S,this.gl.CLAMP_TO_EDGE),this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_WRAP_T,this.gl.CLAMP_TO_EDGE),this.gl.bindTexture(this.gl.TEXTURE_2D,null),e}updateTexture(){this.gl.bindTexture(this.gl.TEXTURE_2D,this.videoTexture),this.gl.pixelStorei(this.gl.UNPACK_FLIP_Y_WEBGL,!0),this.gl.texImage2D(this.gl.TEXTURE_2D,0,this.gl.RGBA,this.gl.RGBA,this.gl.UNSIGNED_BYTE,this.sourceVideoElement),this.gl.bindTexture(this.gl.TEXTURE_2D,null)}createVertexBuffer(){let e=this.gl.createBuffer();if(!e)throw this.destroy(),new Error("Could not create vertex buffer");let t=1,i=1,r=this.frameHeight/(this.frameWidth/this.viewportWidth);return r>this.viewportHeight?t=this.viewportHeight/r:i=r/this.viewportHeight,this.gl.bindBuffer(this.gl.ARRAY_BUFFER,e),this.gl.bufferData(this.gl.ARRAY_BUFFER,new Float32Array([-t,-i,t,-i,t,i,-t,i]),this.gl.STATIC_DRAW),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,null),e}createTextureMappingBuffer(){let e=this.gl.createBuffer();if(!e)throw this.destroy(),new Error("Could not create texture mapping buffer");return e}calculateTexturePosition(){let e=.5-this.camera.orientation.x/360,t=.5-this.camera.orientation.y/180,i=this.camera.fov.x/360/2,r=this.camera.fov.y/180/2,a=e-i,n=t-r,o=e+i,u=t-r,c=e+i,d=t+r,l=e-i,p=t+r;return[a,n,o,u,c,d,l,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 i0,now as rs,once as r0,Subscription as a0,ValueSubject as Rd,isNonNullable as s0,safeStorage as Md,filterChanged as n0}from"@vkontakte/videoplayer-shared/es2015";var Bt=(s,e,t)=>t*e+(1-t)*s,Ad=(s,e)=>s.reduce((t,i)=>t+i,0)/e,vT=(s,e,t,i)=>{let r=0,a=t,n=Ad(s,e),o=e<i?e:i;for(let u=0;u<o;u++)s[a]>n?r++:r--,a=(s.length+a-1)%s.length;return Math.abs(r)===o};var qo="stalls_manager_metrics",$d="stalls_manager_abr_params",ST="stalls_manager_default_tuning_abr_params",Ld=class{constructor(){this.isSeeked$=new Rd(!1);this.isBuffering$=new Rd(!1);this.maxQualityLimit=void 0;this.currentStallsCount=0;this.sumStallsDuration=0;this.lastStallDuration=0;this.providerStartWatchingTimestamp=0;this.lastUniqueVideoTrackSelectedTimestamp=0;this.predictedThroughputWithoutData=0;this.subscription=new a0;this.severeStallOccurred$=new Rd(!1)}init(e){this.currentStallDuration$=e.currentStallDuration$,this.videoLastDataObtainedTimestamp$=e.videoLastDataObtainedTimestamp$,this.throughput$=e.throughput$,this.rtt$=e.rtt$,this.tuning=e.tuning,this.abrParams=e.abrParams,this.duration=e.duration,this.resetStoredAbrParamsIfNeeded(),this.subscribe(e)}get videoMaxQualityLimit(){return this.maxQualityLimit}get predictedThroughput(){return this.predictedThroughputWithoutData}get abrTuningParams(){let t=(this.tuning.ignoreDynamicAbrForShortVideo?this.tuning.enabled&&this.duration>this.tuning.minTvtToBeCounted:this.tuning.enabled)?this.getStoredData($d):{};return x(x({},this.abrParams),t)}set lastVideoTrackSelected(e){var t;((t=this.lastUniqueVideoTrackSelected)==null?void 0:t.id)!==e.id&&(this.lastUniqueVideoTrackSelected=e,this.lastUniqueVideoTrackSelectedTimestamp=rs(),this.currentStallsCount=0)}destroy(){window.clearTimeout(this.qualityRestrictionTimer),this.subscription.unsubscribe(),this.currentStallDuration$.getValue()!==0&&this.updateStallData();let e=(rs()-this.providerStartWatchingTimestamp-this.sumStallsDuration)/1e3,t=this.sumStallsDuration;this.addStallInfoToHistory(e,t),this.updateStoredAbrParams()}resetStoredAbrParamsIfNeeded(){let{bitrateFactorAtEmptyBuffer:e,bitrateFactorAtFullBuffer:t,containerSizeFactor:i}=x({},this.getStoredData(ST)),{bitrateFactorAtEmptyBuffer:r,bitrateFactorAtFullBuffer:a,containerSizeFactor:n}=x({},this.abrParams);this.tuning.enabled&&e===r&&t===a&&i===n||(this.removeStoredData($d),this.setStoredData(ST,{bitrateFactorAtEmptyBuffer:r,bitrateFactorAtFullBuffer:a,containerSizeFactor:n}))}updateStoredAbrParams(){let e=[],t=this.getStoredData(qo,"[]");if(!this.tuning.enabled||t.length<this.tuning.stallsMetricsHistoryLength)return;let i=t.reduce((a,n)=>a+n.tvt,0);if(this.tuning.useTotalStallsDurationPerTvt){let n=t.reduce((o,u)=>o+u.stallsDuration,0)/i;e.push(this.calculateOptimalAbrParams(n,i))}if(this.tuning.useAverageStallsDurationPerTvt){let a=t.reduce((n,o)=>n+o.stallsDurationPerTvt,0)/t.length;e.push(this.calculateOptimalAbrParams(a,i))}this.tuning.useEmaStallsDurationPerTvt&&e.push(this.calculateOptimalAbrParams(t[t.length-1].stallsDurationPerTvtSmoothed,i));let r={bitrateFactorAtEmptyBuffer:Math.max(...e.map(a=>a.bitrateFactorAtEmptyBuffer)),bitrateFactorAtFullBuffer:Math.max(...e.map(a=>a.bitrateFactorAtFullBuffer)),containerSizeFactor:Math.min(...e.map(a=>a.containerSizeFactor))};this.setStoredData(qo,[]),this.setStoredData($d,r)}calculateOptimalAbrParams(e,t){let{targetStallsDurationPerTvt:i,deviationStallsDurationPerTvt:r,criticalStallsDurationPerTvt:a,abrAdjustingSpeed:n,significantTvt:o}=this.tuning,u=n*Math.min(t/o,1),c=this.abrTuningParams;return e<i-r?c={bitrateFactorAtEmptyBuffer:Math.max(c.bitrateFactorAtEmptyBuffer-u,this.abrParams.minBitrateFactorAtEmptyBuffer),bitrateFactorAtFullBuffer:Math.max(c.bitrateFactorAtFullBuffer-u,this.abrParams.minBitrateFactorAtFullBuffer),containerSizeFactor:Math.min(c.containerSizeFactor+u,this.abrParams.maxContainerSizeFactor)}:e>i+r&&(c={bitrateFactorAtEmptyBuffer:Math.min(c.bitrateFactorAtEmptyBuffer+u,this.abrParams.maxBitrateFactorAtEmptyBuffer),bitrateFactorAtFullBuffer:Math.min(c.bitrateFactorAtFullBuffer+u,this.abrParams.maxBitrateFactorAtFullBuffer),containerSizeFactor:Math.max(c.containerSizeFactor-u,this.abrParams.minContainerSizeFactor)}),e>a&&(c={bitrateFactorAtEmptyBuffer:Math.max(c.bitrateFactorAtEmptyBuffer,this.abrParams.bitrateFactorAtEmptyBuffer),bitrateFactorAtFullBuffer:Math.max(c.bitrateFactorAtFullBuffer,this.abrParams.bitrateFactorAtFullBuffer),containerSizeFactor:Math.min(c.containerSizeFactor,this.abrParams.containerSizeFactor)}),c}getStoredData(e,t="{}"){var i;return JSON.parse((i=Md.get(e))!=null?i:t)}setStoredData(e,t){Md.set(e,JSON.stringify(t))}removeStoredData(e){Md.remove(e)}addStallInfoToHistory(e,t){if(e<this.tuning.minTvtToBeCounted||e>this.tuning.maxTvtToBeCounted||e*1e3<t)return;let i=this.getStoredData(qo,"[]"),r=t/e,a=i.length?Bt(i[i.length-1].stallsDurationPerTvtSmoothed,t/e,this.tuning.emaAlpha):r,n={tvt:e,stallsDuration:t,stallsDurationPerTvt:r,stallsDurationPerTvtSmoothed:a};i.push(n),i.length>this.tuning.stallsMetricsHistoryLength&&i.shift(),this.setStoredData(qo,i)}updateStallData(){this.providerStartWatchingTimestamp&&!this.isSeeked$.getValue()&&(this.sumStallsDuration+=Math.min(this.lastStallDuration,this.tuning.maxPossibleStallDuration),this.currentStallsCount++)}subscribe(e){this.subscription.add(e.isSeeked$.subscribe(this.isSeeked$)),this.subscription.add(e.isBuffering$.subscribe(this.isBuffering$)),this.subscription.add(e.looped$.subscribe(t=>this.currentStallsCount=0)),this.subscription.add(e.playing$.pipe(r0()).subscribe(t=>this.providerStartWatchingTimestamp=rs())),this.subscription.add(this.currentStallDuration$.pipe(n0()).subscribe(t=>{let{stallDurationNoDataBeforeQualityDecrease:i,stallCountBeforeQualityDecrease:r,resetQualityRestrictionTimeout:a,ignoreStallsOnSeek:n}=this.tuning;if(i0(this.lastUniqueVideoTrackSelected)||n&&this.isSeeked$.getValue())return;let o=this.rtt$.getValue(),u=this.throughput$.getValue(),c=this.videoLastDataObtainedTimestamp$.getValue(),d=rs(),l=r&&this.currentStallsCount>=r,p=i&&d-this.lastUniqueVideoTrackSelectedTimestamp>=i+o&&d-c>=i+o&&t>=i;(l||p)&&(this.severeStallOccurred$.next(!0),window.clearTimeout(this.qualityRestrictionTimer),this.maxQualityLimit=this.lastUniqueVideoTrackSelected.quality,s0(this.lastUniqueVideoTrackSelected.bitrate)&&u>this.lastUniqueVideoTrackSelected.bitrate&&(this.predictedThroughputWithoutData=this.lastUniqueVideoTrackSelected.bitrate)),!t&&rs()-this.providerStartWatchingTimestamp>this.lastStallDuration&&(this.updateStallData(),this.severeStallOccurred$.next(!1),window.clearTimeout(this.qualityRestrictionTimer),this.qualityRestrictionTimer=window.setTimeout(()=>{this.maxQualityLimit=void 0,this.predictedThroughputWithoutData=0},a)),this.lastStallDuration=t}))}},Ho=Ld;import{combine as o0,map as u0,observeElementSize as c0,Subscription as l0,ValueSubject as Cd,noop as d0}from"@vkontakte/videoplayer-shared/es2015";var jo=class{constructor(){this.subscription=new l0;this.pipSize$=new Cd(void 0);this.videoSize$=new Cd(void 0);this.elementSize$=new Cd(void 0);this.pictureInPictureWindowRemoveEventListener=d0}connect({observableVideo:e,video:t}){let i=r=>{let a=r.target;this.pipSize$.next({width:a.width,height:a.height})};this.subscription.add(c0(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(o0({videoSize:this.videoSize$,pipSize:this.pipSize$,inPip:e.inPiP$}).pipe(u0(({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()}};import{filter as yT,map as p0,once as TT}from"@vkontakte/videoplayer-shared/es2015";var ni=({subscription:s,desiredState:e,videoElement$:t,observableVideo:i})=>{if(!O.browser.isSafari)return;let r=0,a=!1;s.add(e.volume.stateChangeStarted$.pipe(p0(()=>{let n=e.volume.getTransition(),o=t.getValue();return!o||!n?!1:!n.to.muted&&o.muted}),yT(n=>!!n),TT()).subscribe(()=>{r=performance.now(),a=!0})),s.add(i.playbackRateState$.pipe(yT(()=>a),TT()).subscribe(()=>{let n=t.getValue(),o=e.playbackRate.getState();n&&o!==n.playbackRate&&performance.now()-r<1e3&&(n.playbackRate=o)}))};var Wi=class{constructor(e){this.subscription=new S0;this.videoState=new Q("stopped");this.observableVideo=null;this.droppedFramesManager=new Fr;this.stallsManager=new Ho;this.elementSizeManager=new jo;this.videoTracksMap=new Map;this.audioTracksMap=new Map;this.textTracksMap=new Map;this.videoStreamsMap=new Map;this.audioStreamsMap=new Map;this.videoTrackSwitchHistory=new si;this.audioTrackSwitchHistory=new si;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==null?void 0: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.currentNativeBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),A(this.params.desiredState.playbackState,"stopped",!0));return}switch(e){case"stopped":this.videoState.startTransitionTo("ready"),this.prepare();return;case"ready":t==="paused"?(this.videoState.setState("paused"),A(this.params.desiredState.playbackState,"paused")):t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="ready"&&A(this.params.desiredState.playbackState,"ready");return;case"playing":t==="paused"?(this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()):t==="playing"&&this.video.paused?this.playIfAllowed():(i==null?void 0:i.to)==="playing"&&A(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="paused"&&A(this.params.desiredState.playbackState,"paused");return;default:return f0(e)}}};this.init3DScene=e=>{var i,r,a;if(this.scene3D)return;this.scene3D=new Ur(this.params.container,this.video,{fov:this.params.tuning.spherical.fov,orientation:this.params.tuning.spherical.orientation||{x:((i=e.projectionData)==null?void 0:i.pose.yaw)||0,y:((r=e.projectionData)==null?void 0:r.pose.pitch)||0,z:((a=e.projectionData)==null?void 0:a.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 Ze(e.source.url),this.params=e,this.video=Ne(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(Re(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=this.getPlayer(),this.subscribe()}getProviderSubscriptionInfo(){let{output:e,desiredState:t}=this.params;v0(this.observableVideo)&&(this.observableVideo=qe(this.video),this.subscription.add(()=>{var n;return(n=this.observableVideo)==null?void 0:n.destroy()}));let i=this.constructor.name,r=n=>{e.error$.next({id:i,category:IT.WTF,message:`${i} internal logic error`,thrown:n})},a=(n,o)=>this.subscription.add(n.subscribe(o,r));return{output:e,desiredState:t,observableVideo:this.observableVideo,genericErrorListener:r,connect:a}}subscribe(){let{output:e,desiredState:t,observableVideo:i,genericErrorListener:r,connect:a}=this.getProviderSubscriptionInfo();this.subscription.add(this.params.output.availableVideoTracks$.pipe(Dd(l=>!!l.length),wT()).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(Bd(l=>l.to.state!=="none"),Wo());this.stallsManager.init({isSeeked$:n,currentStallDuration$:this.player.currentStallDuration$,videoLastDataObtainedTimestamp$:this.player.videoLastDataObtainedTimestamp$,throughput$:this.params.dependencies.throughputEstimator.throughput$,rtt$:this.params.dependencies.throughputEstimator.rtt$,tuning:this.params.tuning.stallsManager,abrParams:this.params.tuning.autoTrackSelection,isBuffering$:i.isBuffering$,looped$:i.looped$,playing$:i.playing$,duration:this.video.duration}),a(i.ended$,e.endedEvent$),a(i.looped$,e.loopedEvent$),a(i.error$,e.error$),a(i.isBuffering$,e.isBuffering$),a(i.currentBuffer$,e.currentNativeBuffer$),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.lastConnectionMetrics$,e.httpConnectionMetrics$),a(this.player.lastDownloadMetrics$,e.httpDownloadMetrics$),a(this.player.isLive$,e.isLive$),a(this.player.currentBuffer$,e.currentBuffer$),a(this.player.lastRequestFirstBytes$.pipe(Dd(ET),wT()),e.firstBytesEvent$),a(this.stallsManager.severeStallOccurred$,e.severeStallOccurred$),a(this.videoState.stateChangeEnded$.pipe(Bd(l=>l.to)),this.params.output.playbackState$),this.subscription.add(i.looped$.subscribe(()=>this.player.warmUpMediaSourceIfNeeded(),r)),this.subscription.add(i.seeked$.subscribe(e.seekedEvent$,r)),this.subscription.add(It(this.video,t.isLooped,r)),this.subscription.add(i.volumeState$.subscribe(this.params.output.volume$,r)),ni({subscription:this.subscription,desiredState:t,videoElement$:this.params.output.element$,observableVideo:i}),this.subscription.add(Ue(this.video,t.volume,i.volumeState$,r)),this.subscription.add(Je(this.video,t.playbackRate,i.playbackRateState$,r)),this.elementSizeManager.connect({video:this.video,observableVideo:i}),a(tt(this.video,{threshold:this.params.tuning.autoTrackSelection.activeVideoAreaThreshold}),e.elementVisible$),this.subscription.add(i.playing$.subscribe(()=>{this.videoState.setState("playing"),A(t.playbackState,"playing"),this.scene3D&&this.scene3D.play()},r)).add(i.pause$.subscribe(()=>{this.videoState.setState("paused"),A(t.playbackState,"paused")},r)).add(i.canplay$.subscribe(()=>{this.videoState.getState()==="playing"&&this.playIfAllowed()},r)),this.params.tuning.changePlaybackStateToPausedWhenEnded&&this.subscription.add(i.ended$.subscribe(()=>{this.videoState.setState("paused"),A(t.playbackState,"paused")})),this.subscription.add(this.player.manifestRequested.subscribe(this.params.output.manifestRequested$)).add(this.player.manifestReceived.subscribe(this.params.output.manifestReceived$)).add(this.player.firstBytesRequested.subscribe(this.params.output.firstBytesRequested$)).add(this.player.firstBytesReceived.subscribe(this.params.output.firstBytesReceived$)),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(),h=this.player.getCodecs();if(m0(p,"Manifest not loaded or empty"),!this.params.tuning.isAudioDisabled){let m=[];for(let g of p.audio){m.push(Pd(g));let v=[];for(let S of g.representations){let T=hT(S);v.push(T),this.audioTracksMap.set(T,{stream:g,representation:S})}this.audioStreamsMap.set(g,v)}this.params.output.availableAudioStreams$.next(m)}let f=[];for(let m of p.video){f.push(kd(m));let g=[];for(let v of m.representations){let S=pT(C(x({},v),{streamId:m.id}));S&&(g.push(S),this.videoTracksMap.set(S,{stream:m,representation:v}))}this.videoStreamsMap.set(m,g)}this.params.output.availableVideoStreams$.next(f);for(let m of p.text)for(let g of m.representations){let v=fT(m,g);this.textTracksMap.set(v,{stream:m,representation:g})}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),h!=null&&h.video&&this.params.output.availableVideoCodecs$.next(h.video),h!=null&&h.audio&&this.params.output.availableAudioCodecs$.next(h.audio),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));let o=Qo(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$,g0(this.video,"progress")).pipe(Dd(()=>this.videoTracksMap.size>0)),{abrThrottle:u}=this.params.tuning.dash;u&&(o=o.pipe(y0(u))),this.subscription.add(o.subscribe(()=>y(this,null,function*(){let l=this.player.state$.getState(),p=this.player.state$.getTransition(),h=t.autoVideoTrackSwitching.getState();if(l!=="manifest_ready"&&l!=="running"||p)return;t.autoVideoTrackSwitching.getTransition()&&t.autoVideoTrackSwitching.setState(t.autoVideoTrackSwitching.getState());let f=this.selectVideoAudioRepresentations();if(!f)return;let[m,g]=f,v=[...this.videoTracksMap.keys()].find(T=>{var I;return((I=this.videoTracksMap.get(T))==null?void 0:I.representation.id)===m.id});ET(v)&&(this.stallsManager.lastVideoTrackSelected=v);let S=this.params.desiredState.autoVideoTrackLimits.getTransition();S&&this.params.output.autoVideoTrackLimits$.next(S.to),l==="manifest_ready"?yield this.player.initRepresentations(m.id,g==null?void 0:g.id,this.params.sourceHls):(yield this.player.switchRepresentation("video",m.id,h),g&&(yield this.player.switchRepresentation("audio",g.id,h)))}),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(Wo()).subscribe(l=>{let p=[...this.videoTracksMap.entries()].find(([,{representation:g}])=>g.id===l);if(!p){e.currentVideoTrack$.next(void 0),e.currentVideoStream$.next(void 0);return}let[h,{stream:f}]=p,m=this.params.desiredState.videoStream.getTransition();m&&m.to&&m.to.id===f.id&&this.params.desiredState.videoStream.setState(m.to),e.currentVideoTrack$.next(h),e.currentVideoStream$.next(kd(f))},r)),this.subscription.add(this.player.currentAudioRepresentation$.pipe(Wo()).subscribe(l=>{let p=[...this.audioTracksMap.entries()].find(([,{representation:g}])=>g.id===l);if(!p){e.currentAudioStream$.next(void 0);return}let[h,{stream:f}]=p,m=this.params.desiredState.audioStream.getTransition();m&&m.to&&m.to.id===f.id&&this.params.desiredState.audioStream.setState(m.to),e.currentAudioStream$.next(Pd(f))},r)),this.subscription.add(this.player.currentVideoRepresentationInit$.subscribe(l=>{var p,h;if(l!=null&&l.is3dVideo&&((p=this.params.tuning.spherical)!=null&&p.enabled))try{this.init3DScene(l),e.is3DVideo$.next(!0)}catch(f){e.warning$.next({id:"DashProvider",message:`DashProvider could not initialize 3D-scene: ${f}`})}else this.destroy3DScene(),(h=this.params.tuning.spherical)!=null&&h.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 c=t.playbackState.stateChangeStarted$.pipe(Bd(({to:l})=>l==="ready"),Wo());this.subscription.add(Qo(c,t.autoVideoTrackSwitching.stateChangeStarted$,this.player.state$.stateChangeEnded$,Vd(["init"])).subscribe(()=>{let l=t.autoVideoTrackSwitching.getState(),h=t.playbackState.getState()==="ready"?this.params.tuning.dash.forwardBufferTargetPreload:l?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;this.player.setBufferTarget(h)})),this.subscription.add(Qo(c,this.player.state$.stateChangeEnded$,Vd(["init"])).subscribe(()=>this.player.setPreloadOnly(t.playbackState.getState()==="ready")));let d=Qo(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,Vd(["init"])).pipe(b0(0));this.subscription.add(d.subscribe(this.syncPlayback,r))}selectVideoAudioRepresentations(){var _,L,R,F,B,H,J,z,$,M,E,w,U;if(this.player.isStreamEnded)return;let e=this.params.tuning.useNewAutoSelectVideoTrack?Ya:Ga,t=this.params.tuning.useNewAutoSelectVideoTrack?Bo:Do,i=this.params.tuning.useNewAutoSelectVideoTrack?xt:Co,{desiredState:r,output:a}=this.params,n=r.autoVideoTrackSwitching.getState(),o=(_=r.videoTrack.getState())==null?void 0:_.id,u=[...this.videoTracksMap.keys()].find(({id:N})=>N===o),c=a.currentVideoTrack$.getValue(),d=((F=(R=r.videoStream.getState())!=null?R:u&&((L=this.videoTracksMap.get(u))==null?void 0:L.stream))!=null?F:this.videoStreamsMap.size===1)?this.videoStreamsMap.keys().next().value:void 0;if(!d)return;let l=[...this.videoStreamsMap.keys()].find(({id:N})=>N===d.id),p=l&&this.videoStreamsMap.get(l);if(!p)return;let h=this.player.bufferLength$.getValue(),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 m=(this.video.duration*1e3||1/0)-this.video.currentTime*1e3,g=Math.min(h/Math.min(f,m||1/0),1),v=(B=r.audioStream.getState())!=null?B:this.audioStreamsMap.size===1?this.audioStreamsMap.keys().next().value:void 0,S=(H=[...this.audioStreamsMap.keys()].find(({id:N})=>N===(v==null?void 0:v.id)))!=null?H:this.audioStreamsMap.keys().next().value,T=0;if(S){if(u&&!n){let N=e(u,p,(J=this.audioStreamsMap.get(S))!=null?J:[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);T=Math.max(T,(z=N==null?void 0:N.bitrate)!=null?z:-1/0)}if(c){let N=e(c,p,($=this.audioStreamsMap.get(S))!=null?$:[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);T=Math.max(T,(M=N==null?void 0:N.bitrate)!=null?M:-1/0)}}let I=u;(n||!I)&&(I=i(p,{container:this.elementSizeManager.getValue(),panelSize:this.params.panelSize,estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),tuning:this.stallsManager.abrTuningParams,limits:this.params.desiredState.autoVideoTrackLimits.getState(),reserve:T,forwardBufferHealth:g,current:c,visible:this.params.output.elementVisible$.getValue(),history:this.videoTrackSwitchHistory,playbackRate:this.video.playbackRate,droppedVideoMaxQualityLimit:this.droppedFramesManager.droppedVideoMaxQualityLimit,stallsVideoMaxQualityLimit:this.stallsManager.videoMaxQualityLimit,stallsPredictedThroughput:this.stallsManager.predictedThroughput,abrLogger:this.params.dependencies.abrLogger}));let P=S&&t(I,p,(E=this.audioStreamsMap.get(S))!=null?E:[],{estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),stallsPredictedThroughput:this.stallsManager.predictedThroughput,tuning:this.stallsManager.abrTuningParams,forwardBufferHealth:g,history:this.audioTrackSwitchHistory,playbackRate:this.video.playbackRate,abrLogger:this.params.dependencies.abrLogger}),k=(w=this.videoTracksMap.get(I))==null?void 0:w.representation,V=P&&((U=this.audioTracksMap.get(P))==null?void 0:U.representation);if(k&&V)return[k,V];if(k&&!V&&this.audioTracksMap.size===0)return[k,void 0]}prepare(e=0){this.player.initManifest(this.video,this.params.source.url,e)}playIfAllowed(){He(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),A(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:IT.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),Fe(this.video,this.params.tuning.keepVideoElement,this.params.tuning.clearVideoElementInnerHTML),this.tracer.end()}};var hp=q(as(),1);var{NativeAbortSignal:uz,NativeAbortController:cz}=function(s){return{NativeAbortSignal:s.AbortSignal,NativeAbortController:s.AbortController}}(typeof self!="undefined"?self:global);function jT(s){let e;try{e=new Event("abort")}catch(t){typeof document!="undefined"?document.createEvent?(e=document.createEvent("Event"),e.initEvent("abort",!1,!1)):(e=document.createEventObject(),e.type="abort"):e={type:"abort",bubbles:!1,cancelable:!1}}return e.reason=s,e}function WT(s){if(s===void 0)if(typeof document=="undefined")s=new Error("This operation was aborted"),s.name="AbortError";else try{s=new DOMException("signal is aborted without reason"),Object.defineProperty(s,"name",{value:"AbortError"})}catch(e){s=new Error("This operation was aborted"),s.name="AbortError"}return s}var zo=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}},qr=class extends zo{constructor(){super(),this.listeners||zo.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)}throwIfAborted(){let{aborted:e,reason:t="Aborted"}=this;if(e)throw t}static timeout(e){let t=new zi;return setTimeout(()=>t.abort(new DOMException(`This signal is timeout in ${e}ms`,"TimeoutError")),e),t.signal}static any(e){let t=new zi;function i(){t.abort(this.reason),r()}function r(){for(let a of e)a.removeEventListener("abort",i)}for(let a of e)if(a.aborted){t.abort(a.reason);break}else a.addEventListener("abort",i);return t.signal}},zi=class{constructor(){Object.defineProperty(this,"signal",{value:new qr,writable:!0,configurable:!0})}abort(e){let t=WT(e),i=jT(t);this.signal.reason=t,this.signal.dispatchEvent(i)}toString(){return"[object AbortController]"}};typeof Symbol!="undefined"&&Symbol.toStringTag&&(zi.prototype[Symbol.toStringTag]="AbortController",qr.prototype[Symbol.toStringTag]="AbortSignal");function Go(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 Od(s){typeof s=="function"&&(s={fetch:s});let{fetch:e,Request:t=e.Request,AbortController:i,__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL:r=!1}=s;if(!Go({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(c,d){let l;d&&d.signal&&(l=d.signal,delete d.signal);let p=new t(c,d);return l&&Object.defineProperty(p,"signal",{writable:!1,enumerable:!1,configurable:!0,value:l}),p},a.prototype=t.prototype);let n=e;return{fetch:(u,c)=>{let d=a&&a.prototype.isPrototypeOf(u)?u.signal:c?c.signal:void 0;if(d){let l;try{l=new DOMException("Aborted","AbortError")}catch(h){l=new Error("Aborted"),l.name="AbortError"}if(d.aborted)return Promise.reject(l);let p=new Promise((h,f)=>{d.addEventListener("abort",()=>f(l),{once:!0})});return c&&c.signal&&delete c.signal,Promise.race([p,n(u,c)])}return n(u,c)},Request:a}}var be=typeof globalThis=="object"&&globalThis||typeof window=="object"&&window;var H0=()=>"fetch"in be,ss=H0()&&Go({fetch:be.fetch,Request:be.Request,AbortController:be.AbortController}),QT=ss?Od({fetch:be.fetch,Request:be.Request,AbortController:be.AbortController}):void 0,it=ss?QT.fetch:be.fetch,Tz=ss?QT.Request:be.Request,ne=ss?zi:be.AbortController,Iz=ss?qr:be.AbortSignal;var NE=q(Oe(),1);var hI=q(pI(),1);import{ErrorCategory as os}from"@vkontakte/videoplayer-shared/es2015";var Yo=s=>{if(!s)return{id:"EmptyResponse",category:os.PARSER,message:"Empty response"};if(s.length<=2&&s.match(/^\d+$/))return{id:`UVError#${s}`,category:os.NETWORK,message:`UV Error ${s}`};let e=(0,hI.default)(s).substring(0,100).toLowerCase();if(e.startsWith("<!doctype")||e.startsWith("<html>")||e.startsWith("<body>")||e.startsWith("<head>"))return{id:"UnexpectedHTML",category:os.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:os.PARSER,message:"XML parsing error"}:{id:"XMLParserLogicError",category:os.PARSER,message:"Response is valid XML, but parser failed"}};import{abortable as BE,assertNonNullable as Ot,ErrorCategory as er,filter as cp,filterChanged as e_,flattenObject as fu,fromEvent as tr,getTraceSubscriptionMethod as t_,getWindow as Fs,interval as VE,isNonNullable as pi,isNullable as Us,map as lp,merge as qs,now as i_,Subject as hi,Subscription as _E,SubscriptionRemovable as r_,ValueSubject as re}from"@vkontakte/videoplayer-shared/es2015";var oi=s=>{let e=new URL(s);return e.searchParams.set("quic","1"),e.toString()};var Ko=s=>{var a;let e=s.get("X-Delivery-Type"),t=s.get("X-Reused"),i=e===null?"http1":e!=null?e:void 0,r=t===null?void 0:(a={1:!0,0:!1}[t])!=null?a:void 0;return{type:i,reused:r}};import{abortable as us,assertNever as fI,ErrorCategory as Hr,flattenObject as jr,fromEvent as mI,getWindow as cs,merge as nB,now as Gi,Subject as Wr,Subscription as oB,suppressAbort as Jo,ValueSubject as ls}from"@vkontakte/videoplayer-shared/es2015";var Xo=s=>{let e=new URL(s);return e.searchParams.set("enable-subtitles","yes"),e.toString()};var Zo=class{constructor({throughputEstimator:e,requestQuic:t,tracer:i,compatibilityMode:r=!1,useEnableSubtitlesParam:a=!1}){this.manifestRequested=new Wr;this.manifestReceived=new Wr;this.firstBytesRequested=new Wr;this.firstBytesReceived=new Wr;this.lastConnectionType$=new ls(void 0);this.lastConnectionReused$=new ls(void 0);this.lastRequestFirstBytes$=new ls(void 0);this.lastConnectionMetrics$=new ls(void 0);this.lastDownloadMetrics$=new ls(void 0);this.recoverableError$=new Wr;this.error$=new Wr;this.abortAllController=new ne;this.subscription=new oB;this.performanceObserver=null;this.pendingConnectionMetrics=new Map;this.fetchManifest=us(this.abortAllController.signal,function(e){return Z(this,null,function*(){let t=this.tracer.createComponentTracer("FetchManifest"),i=e;this.requestQuic&&(i=oi(i)),!this.compatibilityMode&&this.useEnableSubtitlesParam&&(i=Xo(i)),this.trackRequestStart(i,performance.now());let r=Gi();this.manifestRequested.next();let a=yield this.doFetch(i,{signal:this.abortAllController.signal}).catch(Jo);if(a){let n=Gi();t.log("success",jr({url:i,message:"Request successfully executed"})),t.end(),this.manifestReceived.next(),this.onHeadersReceived(a.headers);let o=a.headers.get("content-length"),u=0;o&&(u=parseInt(o,10));let c=yield new vt(a.text());if((!o||isNaN(u)||u<=0)&&(u=new TextEncoder().encode(c).length),u>0){let d=n-r,p=u/(d/1e3)*8/1024,h={bytes:u,speed:p,url:e};this.lastDownloadMetrics$.next(h)}return c}else return t.error("error",jr({url:i,message:"No data in request manifest"})),t.end(),null})}.bind(this));this.fetch=us(this.abortAllController.signal,function(d){return Z(this,arguments,function*(e,{rangeMethod:t=this.compatibilityMode?0:1,range:i,onProgress:r,priority:a="auto",signal:n,measureThroughput:o=!0,isLowLatency:u=!1,bufferOptimisation:c=!1}={}){var J,z,$;let l=e,p=new Headers,h=this.tracer.createComponentTracer("Fetch");if(i)switch(t){case 0:{p.append("Range",`bytes=${i.from}-${i.to}`);break}case 1:{let M=new URL(l,cs().location.href);M.searchParams.append("bytes",`${i.from}-${i.to}`),l=M.toString();break}default:fI(t)}this.requestQuic&&(l=oi(l));let f=this.abortAllController.signal,m;if(n){let M=new ne;if(m=nB(mI(this.abortAllController.signal,"abort"),mI(n,"abort")).subscribe(()=>{try{M.abort()}catch(E){Jo(E)}}),this.subscription.add(m),this.abortAllController.signal.aborted||n.aborted)try{M.abort()}catch(E){Jo(E)}f=M.signal}let g=0,v=Gi();h.log("startRequest",jr({url:l,priority:a,rangeMethod:t,range:i,isLowLatency:u,requestStartedAt:v})),this.trackRequestStart(l,performance.now()),this.firstBytesRequested.next();let S=yield this.doFetch(l,{priority:a,headers:p,signal:f}),T=Gi();if(!S)return h.error("error",{message:"No response in request"}),h.end(),m==null||m.unsubscribe(),null;if((J=this.throughputEstimator)==null||J.addRawRtt(T-v),!S.ok||!S.body){m==null||m.unsubscribe();let M=`Fetch error ${S.status}: ${S.statusText}`;return h.error("error",{message:M}),h.end(),Promise.reject(new Error(`Fetch error ${S.status}: ${S.statusText}`))}if(this.onHeadersReceived(S.headers),!r&&!o){m==null||m.unsubscribe();let M=Gi(),E={requestStartedAt:v,requestEndedAt:M,duration:M-v};return h.log("endRequest",jr(E)),h.end(),S.arrayBuffer()}let I=S.body;if(o){let M;[I,M]=S.body.tee(),(z=this.throughputEstimator)==null||z.trackStream(M,u)}let P=I.getReader(),k,V=parseInt(($=S.headers.get("content-length"))!=null?$:"",10);Number.isFinite(V)&&(k=V),!k&&i&&(k=i.to-i.from+1);let _=k?new Uint8Array(k):new Uint8Array(0),L=!1,R=M=>{m==null||m.unsubscribe(),L=!0,Jo(M)},F=us(f,function(w){return Z(this,arguments,function*({done:M,value:E}){if(g===0&&(this.lastRequestFirstBytes$.next(Gi()-v),this.firstBytesReceived.next()),f.aborted){m==null||m.unsubscribe();return}if(!M&&E){if(c&&k)_.set(E,g),g+=E.byteLength;else{let U=new Uint8Array(_.length+E.length);U.set(_),U.set(E,_.length),_=U,g+=E.byteLength}r==null||r(new DataView(_.buffer),g),yield P==null?void 0:P.read().then(F,R)}})}.bind(this));yield P==null?void 0:P.read().then(F,R),m==null||m.unsubscribe();let B=Gi(),H={failed:L,requestStartedAt:v,requestEndedAt:B,duration:B-v};if(L)return h.error("endRequest",jr(H)),h.end(),null;if(g>0){let M=B-v,w=g/(M/1e3)*8/1024,U={bytes:g,speed:w,url:e};this.lastDownloadMetrics$.next(U)}return h.log("endRequest",jr(H)),h.end(),_.buffer})}.bind(this));this.fetchByteRangeRepresentation=us(this.abortAllController.signal,function(e,t,i){return Z(this,null,function*(){var v;if(e.type!=="byteRange")return null;let{from:r,to:a}=e.initRange,n=r,o=a,u=!1,c,d;e.indexRange&&(c=e.indexRange.from,d=e.indexRange.to,u=a+1===c,u&&(n=Math.min(c,r),o=Math.max(d,a))),n=Math.min(n,0);let l=yield this.fetch(e.url,{range:{from:n,to:o},priority:i,measureThroughput:!1});if(!l)return null;let p=new DataView(l,r-n,a-n+1);if(!t.validateData(p))throw new Error("Invalid media file");let h=t.parseInit(p),f=(v=e.indexRange)!=null?v:t.getIndexRange(h);if(!f)throw new ReferenceError("No way to load representation index");let m;if(u)m=new DataView(l,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;m=new DataView(S)}let g=t.parseSegments(m,h,f).map(S=>({networkStatus:"none",bufferStatus:"none",status:"none",time:S.time,byte:S.byte}));return{initMetadata:h,initDataView:new DataView(l),segments:g}})}.bind(this));this.fetchTemplateRepresentation=us(this.abortAllController.signal,function(e,t){return Z(this,null,function*(){if(e.type!=="template")return null;let i=new URL(e.initUrl,e.baseUrl).toString(),r=yield this.fetch(i,{priority:t,measureThroughput:!1});if(!r)return null;let a=e.segments.map(n=>C(x({},n),{networkStatus:"none",bufferStatus:"none",status:"none",size:void 0}));return{initMetadata:null,initDataView:new DataView(r),segments:a}})}.bind(this));this.throughputEstimator=e,this.requestQuic=t,this.compatibilityMode=r,this.tracer=i.createComponentTracer("Fetcher"),this.useEnableSubtitlesParam=a,cs().PerformanceObserver&&this.setupPerformanceObserver()}onHeadersReceived(e){let{type:t,reused:i}=Ko(e);this.lastConnectionType$.next(t),this.lastConnectionReused$.next(i)}setupPerformanceObserver(){this.performanceObserver=new(cs()).PerformanceObserver(e=>{e.getEntriesByType("resource").forEach(t=>{this.processResourceTiming(t)})}),this.performanceObserver.observe({entryTypes:["resource"]})}processResourceTiming(e){let t=this.findMatchingRequest(e);if(!t||!this.pendingConnectionMetrics.get(t))return;this.pendingConnectionMetrics.delete(t);let r=this.extractConnectionMetrics(e);r&&this.lastConnectionMetrics$.next(r)}estimateNetworkType(){if(!("connection"in cs().navigator))return"unknown";let e=cs().navigator.connection;return e.effectiveType?{"slow-2g":"2g","2g":"2g","3g":"3g","4g":"lte"}[e.effectiveType]||e.effectiveType:e.downlink?e.downlink<1?"2g":e.downlink<5?"3g":e.downlink<50?"lte":"wifi":e.rtt?e.rtt>500?"2g":e.rtt>250?"3g":e.rtt>50?"lte":"wifi":"unknown"}extractConnectionMetrics(e){let t=0,i=0,r=0,a=0;return e.domainLookupStart>0&&e.domainLookupEnd>0&&(t=e.domainLookupEnd-e.domainLookupStart),e.connectStart>0&&e.connectEnd>0&&(a=e.connectEnd-e.connectStart,e.secureConnectionStart>0?(r=e.connectEnd-e.secureConnectionStart,i=e.secureConnectionStart-e.connectStart):i=a),{dnsResolveTime:Math.max(0,t),tcpHandshakeTime:Math.max(0,i),tlsHandshakeTime:Math.max(0,r),totalConnectTime:Math.max(0,a),networkType:this.estimateNetworkType(),url:e.name}}findMatchingRequest(e){try{for(let[t,i]of this.pendingConnectionMetrics.entries()){let r=new URL(e.name),a=r.origin+r.pathname,n=new URL(i.url),o=n.origin+n.pathname;if(a===o&&e.startTime>=i.startTime-10&&e.startTime<=i.startTime+1e3)return t}}catch(t){this.recoverableError$.next({id:"VideoDataFetchError",message:"Video data fetch error with getting download metrics",category:Hr.WTF})}return null}trackRequestStart(e,t){let i=`${e}_${t}_${Math.random().toString(36).substr(2,9)}`;this.pendingConnectionMetrics.set(i,{url:e,startTime:t})}fetchRepresentation(e,t,i="auto"){return y(this,null,function*(){var a,n;let{type:r}=e;switch(r){case"byteRange":return(a=this.fetchByteRangeRepresentation(e,t,i))!=null?a:null;case"template":return(n=this.fetchTemplateRepresentation(e,i))!=null?n:null;default:fI(r)}})}destroy(){this.abortAllController.abort(),this.subscription.unsubscribe(),this.performanceObserver&&(this.performanceObserver.disconnect(),this.performanceObserver=null),this.pendingConnectionMetrics.clear(),this.tracer.end()}doFetch(e,t){return y(this,null,function*(){let i=yield it(e,t);if(i.ok)return i;let r=yield i.text(),a=parseInt(r);if(!isNaN(a))switch(a){case 1:this.recoverableError$.next({id:"VideoDataLinkExpiredError",message:"Video data links have expired",category:Hr.FATAL,httpCode:i.status,UVBackendErrorCode:r});break;case 8:this.recoverableError$.next({id:"VideoDataLinkBlockedForFloodError",message:"Url blocked for flood",category:Hr.FATAL,httpCode:i.status,UVBackendErrorCode:r});break;case 18:this.recoverableError$.next({id:"VideoDataLinkIllegalIpChangeError",message:"Client IP has changed",category:Hr.FATAL,httpCode:i.status,UVBackendErrorCode:r});break;case 21:this.recoverableError$.next({id:"VideoDataLinkIllegalHostChangeError",message:"Request HOST has changed",category:Hr.FATAL,httpCode:i.status,UVBackendErrorCode:r});break;default:this.error$.next({id:"GeneralVideoDataFetchError",message:`Generic video data fetch error (${a})`,category:Hr.FATAL,httpCode:i.status,UVBackendErrorCode:r})}})}};var Kd=q(OI(),1),nE=q(ti(),1),oE=q(eE(),1),uE=q(et(),1),Xd=q(Ci(),1);var tE=q(Oe(),1),Yd=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,tE.default)(["6E","7A","F4"],o)}}return!1};import{isNonNullable as oV,isNullable as aE}from"@vkontakte/videoplayer-shared/es2015";var iE=s=>{if(s.includes("/")){let e=s.split("/");return parseInt(e[0])/parseInt(e[1])}else return parseFloat(s)};var rE=s=>{var e;try{let t=nV(),i=s.match(t),{groups:r}=i!=null?i:{};if(r){let a={};if(r.extensions){let u=r.extensions.toLowerCase().match(/(?:[0-9a-wy-z](?:-[a-z0-9]{2,8})+)/g);Array.from(u||[]).forEach(c=>{a[c[0]]=c.slice(2)})}let n=(e=r.variants)==null?void 0:e.split(/-/).filter(u=>u!==""),o={extlang:r.extlang,langtag:r.langtag,language:r.language,privateuse:r.privateuse||r.privateuse2,region:r.region,script:r.script,extensions:a,variants:n};return Object.keys(o).forEach(u=>{let c=o[u];(typeof c=="undefined"||c==="")&&delete o[u]}),o}return null}catch(t){return null}};function nV(){let s="(?<extlang>(?:[a-z]{3}(?:-[a-z]{3}){0,2}))",e="x(?:-[a-z0-9]{1,8})+",d=`^(?:(?<langtag>${`
172
- (?<language>${`(?:[a-z]{2,3}(?:-${s})?|[a-z]{4}|[a-z]{5,8})`})
116
+ [selected audio track] ${v?.id}
117
+ `}),v},Ks=e=>new URL(e).hostname;import{assertNever as qs,assertNonNullable as Js,combine as Ys,debounce as Xs,ErrorCategory as Zs,filter as Qs,filterChanged as $s,isNonNullable as ec,map as tc,merge as nc,observableFrom as rc,once as ic,Subscription as ac,ValueSubject as oc,videoQualityToHeight as sc,videoSizeToQuality as cc}from"@vkontakte/videoplayer-shared/es2015";var lc=v(kn(),1),uc=v(Pn(),1),dc=(e,t)=>typeof e==`string`?uc.default(e,t):lc.default(e,t),fc=v(it(),1),pc=e=>{if(e instanceof DOMException&&fc.default([`Failed to load because no supported source was found.`,`The element has no supported sources.`],e.message))throw e;return!(e instanceof DOMException&&(e.code===20||e.name===`AbortError`))},mc=function(){var e=a(function*(e,t){let n=e.muted;try{yield e.play()}catch(r){if(!pc(r))return!1;if(t&&t(),n)return console.warn(r),!1;e.muted=!0;try{yield e.play()}catch(t){return pc(t)?(e.muted=!1,console.warn(t),!1):!1}}return!0});return function(t,n){return e.apply(this,arguments)}}();import{isNonNullable as hc,isNullable as gc,assertNonNullable as _c}from"@vkontakte/videoplayer-shared/es2015";var vc=v(Qe(),1);import{isNonNullable as yc,assertNonNullable as bc,now as xc}from"@vkontakte/videoplayer-shared/es2015";function Sc(){return xc()}function Cc(e){return Sc()-e}function wc(e){let t=e.split(`/`),n=t.slice(0,t.length-1).join(`/`),r=/^([a-z]+:)?\/\//i,i=e=>r.test(e);return{resolve:(e,t,r=!1)=>{i(e)||(e.startsWith(`/`)||(e=`/`+e),e=n+e);let a=e.indexOf(`?`)>-1?`&`:`?`;return r&&(e+=a+`lowLat=1`,a=`&`),t&&(e+=a+`_rnd=`+Math.floor(999999999*Math.random())),e}}}function Tc(e,t,n){let r=(...i)=>{n.apply(null,i),e.removeEventListener(t,r)};e.addEventListener(t,r)}function Ec(e,t,n,r){let i=window.XMLHttpRequest,a,o,s,c=!1,l=0,u,d,f=!1,p=`arraybuffer`,m=7e3,h=2e3,g=()=>{if(c)return;bc(u);let e=Cc(u),t;if(e<h){t=h-e,setTimeout(g,t);return}h*=2,h>m&&(h=m),o&&o.abort(),o=new i,S()},_=e=>(a=e,C),v=e=>(d=e,C),y=()=>(p=`json`,C),b=()=>{if(!c){if(--l>=0){g(),r&&r();return}c=!0,d&&d(),n&&n()}},x=e=>(f=e,C),S=()=>{u=Sc(),o=new i,o.open(`get`,e);let n=0,r,l=0,m=()=>(bc(u),Math.max(u,Math.max(r||0,l||0)));if(a&&o.addEventListener(`progress`,e=>{let t=Sc();a.updateChunk&&e.loaded>n&&(a.updateChunk(m(),e.loaded-n),n=e.loaded,r=t)}),s&&(o.timeout=s,o.addEventListener(`timeout`,()=>b())),o.addEventListener(`load`,()=>{if(c)return;bc(o);let e=o.status;if(e>=200&&e<300){let{response:e,responseType:r}=o,i=e?.byteLength;if(typeof i==`number`&&a){let e=i-n;e&&a.updateChunk&&a.updateChunk(m(),e)}r===`json`&&(!e||!vc.default(e).length)?b():(d&&d(),t(e))}else b()}),o.addEventListener(`error`,()=>{b()}),f){let e=()=>{bc(o),o.readyState===XMLHttpRequest.HEADERS_RECEIVED&&(l=Sc(),o.removeEventListener(`readystatechange`,e))};o.addEventListener(`readystatechange`,e)}return o.responseType=p,o.send(),C},C={withBitrateReporting:_,withParallel:x,withJSONResponse:y,withRetryCount:e=>(l=e,C),withRetryInterval:(e,t)=>(yc(e)&&(h=e),yc(t)&&(m=t),C),withTimeout:e=>(s=e,C),withFinally:v,send:S,abort:()=>{o&&=(o.abort(),void 0),c=!0,d&&d()}};return C}var Dc=100,Oc=2e3,kc=500;class Ac{constructor(e){i(this,`intervals`,[]),i(this,`currentRate`,0),i(this,`logger`,void 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,n){return{start:e,end:t,bytes:n}}_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-kc;if(t-e>Oc){let n=0,r=0;for(;this.intervals.length>0;){let e=this.intervals[0];if(e.end<=t)n+=e.end-e.start,r+=e.bytes,this.intervals.splice(0,1);else if(e.start>=t)break;else{let i=t-e.start,a=e.end-e.start;n+=i;let o=e.bytes*i/a;r+=o,e.start=t,e.bytes-=o}}if(r>0&&n>0){let i=r*8/(n/1e3);return this._updateRate(i),this.logger(`rate updated, new=${Math.round(i/1024)}K; average=${Math.round(this.currentRate/1024)}K bytes/ms=${Math.round(r)}/${Math.round(n)} 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,n){return this.intervals.push(this._createInterval(e,t,n)),this._joinIntervals(),this.intervals.length>Dc&&(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 jc=v(Qe(),1);class Mc{constructor(e,t,n,r,a){i(this,`pendingQueue`,[]),i(this,`activeRequests`,{}),i(this,`completeRequests`,{}),i(this,`averageSegmentDuration`,2e3),i(this,`lastPrefetchStart`,0),i(this,`throttleTimeout`,null),i(this,`RETRY_COUNT`,void 0),i(this,`TIMEOUT`,void 0),i(this,`BITRATE_ESTIMATOR`,void 0),i(this,`MAX_PARALLEL_REQUESTS`,void 0),i(this,`logger`,void 0),this.RETRY_COUNT=e,this.TIMEOUT=t,this.BITRATE_ESTIMATOR=n,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 n=Sc(),r=n=>{delete this.activeRequests[t],this.limitCompleteCount(),this.completeRequests[t]=e,this._sendPending(),e._error=1,e._errorMsg=n,e._errorCB?e._errorCB(n):(this.limitCompleteCount(),this.completeRequests[t]=e)};e._request=Ec(t,r=>{e._complete=1,e._responseData=r,e._downloadTime=Sc()-n,delete this.activeRequests[t],this._sendPending(),e._cb?e._cb(r,e._downloadTime):(this.limitCompleteCount(),this.completeRequests[t]=e)},()=>r(`error`),()=>{e._retry=1,e._retryCB&&e._retryCB()}),e._request.withRetryCount(this.RETRY_COUNT).withTimeout(this.TIMEOUT).withBitrateReporting(this.BITRATE_ESTIMATOR).withParallel(this._getParallelRequestCount()>1).withFinally(()=>{e._finallyCB&&e._finallyCB()}),this.activeRequests[t]=e,e._request.send(),this.lastPrefetchStart=Sc()}_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=Sc();if(Object.keys(this.activeRequests).length>=e)return!1;let n=this._getPrefetchDelay()-(t-this.lastPrefetchStart);return this.throttleTimeout&&clearTimeout(this.throttleTimeout),n>0?(this.throttleTimeout=window.setTimeout(()=>this._sendPending(),n),!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(){jc.default(this.activeRequests).forEach(e=>{e&&e._request&&e._request.abort()}),this.activeRequests={},this.pendingQueue=[],this.completeRequests={}}requestData(e,t,n,r){let i={};return i.send=()=>{let a=this.activeRequests[e]||this.completeRequests[e];if(a)a._cb=t,a._errorCB=n,a._retryCB=r,a._finallyCB=i._finallyCB,a._error||a._complete?(this._removeFromActive(e),setTimeout(()=>{a._complete?(this.logger(`Requested url already prefetched, url=${e}`),t(a._responseData,a._downloadTime)):(this.logger(`Requested url already prefetched with error, url=${e}`),n(a._errorMsg)),i._finallyCB&&i._finallyCB()},0)):this.logger(`Attached to active request, url=${e}`);else{let t=this.pendingQueue.indexOf(e);t!==-1&&this.pendingQueue.splice(t,1),this.logger(`Request not prefetched, starting new request, url=${e}${t===-1?``:`; removed pending`}`),this._sendRequest(i,e)}},i._cb=t,i._errorCB=n,i._retryCB=r,i.abort=function(){i.request&&i.request.abort()},i.withFinally=e=>(i._finallyCB=e,i),i}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 Nc}from"@vkontakte/videoplayer-shared/es2015";import{isNonNullable as Pc}from"@vkontakte/videoplayer-shared/es2015";var R=(e,t)=>Pc(e)&&Pc(t)&&e.readyState===`open`&&Fc(e,t);function Fc(e,t){for(let n=0;n<e.activeSourceBuffers.length;++n)if(e.activeSourceBuffers[n]===t)return!0;return!1}var Ic=v(ct(),1);import{getWindow as Lc}from"@vkontakte/videoplayer-shared/es2015";class Rc{constructor(e,t,n,r){i(this,`tag`,void 0),i(this,`time`,void 0),i(this,`data`,void 0),i(this,`stack`,void 0),this.tag=e,this.time=t,this.data=n,this.stack=r}toString(){return`${this.tag}: ${this.time}: ${JSON.stringify(this.data)}${this.stack?`, stack: ${this.stack}`:``}`}toDevNullEntry(){let e=Ic.default(this.data).map(([e,t])=>`${e}:${t}`).join(`,`);return{key:this.tag,strings:[e,this.stack??``],numbers:[this.time]}}}var z=((e,t=`warn`)=>{let n=Lc(),r=[];function i(i,a=!1){var o;let s=((o=n.performance)==null||(o=o.timing)==null?void 0:o.navigationStart)??0,c=new Rc(e,Math.round((Date.now()-s)/1e3),i,a?Error().stack:void 0);r.push(c),t&&n.console[t](c.toString())}return i.reset=()=>{r=[]},i.drain=()=>{let e=r;return r=[],e},i})(`vp_dash_live_debug`,!1),zc=1e4,Bc=3,Vc=6e4,Hc=10,Uc=1,Wc=500;class Gc{constructor(e){i(this,`paused`,!1),i(this,`autoQuality`,!0),i(this,`autoQualityLimits`,void 0),i(this,`buffering`,!0),i(this,`destroyed`,!1),i(this,`videoPlayStarted`,!1),i(this,`lowLatency`,!1),i(this,`rep`,void 0),i(this,`bitrate`,0),i(this,`manifest`,[]),i(this,`bitrateSwitcher`,void 0),i(this,`filesFetcher`,void 0),i(this,`sourceBuffer`,0),i(this,`mediaSource`,void 0),i(this,`currentManifestEntry`,void 0),i(this,`manifestRequest`,void 0),i(this,`manifestRefetchTimer`,void 0),i(this,`bufferStates`,[]),i(this,`downloadRate`,void 0),i(this,`sourceJitter`,-1),i(this,`chunkRateEstimator`,void 0),i(this,`manifestUrl`,void 0),i(this,`urlResolver`,void 0),i(this,`waitingForFirstBufferAfterSrcChange`,!1),i(this,`params`,void 0),i(this,`soundProhibitedEvent$`,void 0),this.params=e,this.soundProhibitedEvent$=new Nc,this.chunkRateEstimator=new Ac(this.params.logger),this._initVideo()}attachSource(e){this.manifestUrl=e,this.urlResolver=wc(e),this.bitrateSwitcher=this._initBitrateSwitcher(),this._initManifest()}setAutoQualityEnabled(e){this.autoQuality=e}setAutoQualityLimits(e){this.autoQualityLimits=e}switchByName(e){let t;for(let n=0;n<this.manifest.length;++n)if(t=this.manifest[n],t.name===e){this._switchToQuality(t);return}}catchUp(){this.rep&&(z({m:`ldp.catchUp.1`}),this.rep.stop()),this.currentManifestEntry&&(this.paused=this.params.playbackState.getState()===`paused`,z({m:`ldp.catchUp.2`}),this._initPlayerWith(this.currentManifestEntry),this._notifyBuffering(!0))}stop(){this.params.videoElement.pause(),this.rep&&=(this.rep.stop(),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()?(z({m:`ldp.play.1`}),this._playVideoElement()):(z({m:`ldp.play.2`}),this._notifyBuffering(!0))):(z({m:`ldp.play.3`}),this.catchUp())}startPlay(e,t){this.autoQuality=t,z({m:`startPlay`,url:e.jidxUrl}),this._initPlayerWith(e)}destroy(){this.destroyed=!0,this.rep&&=(this.rep.stop(),null),this.manifestRequest&&this.manifestRequest.abort(),this.manifestRefetchTimer&&=(clearTimeout(this.manifestRefetchTimer),void 0)}reinit(e){this.manifestUrl=e,this.urlResolver=wc(e),z({m:`ldp.reinit`,url: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,n=e.buffered.length;return n!==0&&(t=e.buffered.end(n-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;z({m:`iv`}),e.addEventListener(`error`,()=>{e.error&&!this.destroyed&&(z({m:`iv.err`,e:e.error?.code+`:`+e.error?.message}),t(`Video element error: ${e.error?.code}, details: ${e.error?.message}`),this.params.playerCallback({name:`error`,type:`media`}))}),e.addEventListener(`timeupdate`,()=>{let e=this._getBufferSizeSec();!this.paused&&e<.3?this.buffering||(this.buffering=!0,window.setTimeout(()=>{!this.paused&&this.buffering&&this._notifyBuffering(!0)},(e+.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,n=t.buffered.length,r;n!==0&&!this.waitingForFirstBufferAfterSrcChange&&(r=t.buffered.start(n-1),t.currentTime<r&&(e(`Fixup stall`),z({m:`ldp.fs`,t:r}),t.currentTime=r))}_selectQuality(e){let{videoElement:t}=this.params,n,r,i,a=t&&1.62*(F.display.pixelRatio||1)*t.offsetHeight||520;for(let t=0;t<this.manifest.length;++t){i=this.manifest[t];let{max:o,min:s}=this.autoQualityLimits||{};!Es({limits:this.autoQualityLimits,highestAvailableHeight:this.manifest[0].video.height,lowestAvailableHeight:dc(this.manifest,-1).video.height})&&(o&&i.video.height>o||s&&i.video.height<s)||(i.bitrate<e&&a>Math.min(i.video.height,i.video.width)?(!r||i.bitrate>r.bitrate)&&(r=i):(!n||n.bitrate>i.bitrate)&&(n=i))}return r||n}shouldPlay(){if(this.paused)return!1;let e=this._getBufferSizeSec()-Math.max(1,this.sourceJitter);return e>3||hc(this.downloadRate)&&(this.downloadRate>1.5&&e>2||this.downloadRate>2&&e>1)}_setVideoSrc(e,t){let{logger:n,videoElement:r,playerCallback:i}=this.params;this.mediaSource=new window.MediaSource,n(`setting video src`),r.src=URL.createObjectURL(this.mediaSource),this.mediaSource.addEventListener(`sourceopen`,()=>{if(this.mediaSource?.readyState!==`open`){z({m:`sourceopen`,err:`not open: ${this.mediaSource?.readyState}`});return}z({m:`sourceopen`,c:e.codecs}),this.sourceBuffer=this.mediaSource.addSourceBuffer(e.codecs),this.bufferStates=[],t()}),this.mediaSource?.addEventListener(`sourceclose`,e=>{z({m:`sourceclose`})}),this.videoPlayStarted=!1,r.addEventListener(`canplay`,()=>{z({m:`canplay`}),this.shouldPlay()&&(this.videoPlayStarted=!0,this._playVideoElement())});let a=()=>{Tc(r,`progress`,()=>{r.buffered.length?(r.currentTime=r.buffered.start(0),this.waitingForFirstBufferAfterSrcChange=!1,i({name:`playing`})):a()})};this.waitingForFirstBufferAfterSrcChange=!0,a()}_initPlayerWith(e){this.bitrate=0,this.rep=0,this.sourceBuffer=0,this.bufferStates=[],this.filesFetcher&&this.filesFetcher.abortAll(),this.filesFetcher=new Mc(Bc,zc,this.bitrateSwitcher,this.params.config.maxParallelRequests,this.params.logger),this._setVideoSrc(e,()=>this._switchToQuality(e))}_representation(e){let{logger:t,videoElement:n,playerCallback:r}=this.params,i=!1,a=null,o=null,s=null,c=null,l=!1,u=()=>{let e=i&&(!l||l===this.rep);return e||t(`Not running!`),e},d=(e,t,n)=>{s&&s.abort(),s=Ec(this.urlResolver.resolve(e,!1),t,n,()=>this._retryCallback()).withTimeout(zc).withBitrateReporting(this.bitrateSwitcher).withRetryCount(Bc).withFinally(()=>{s=null}).send()},f=(e,t,n)=>{_c(this.filesFetcher),o?.abort(),o=this.filesFetcher.requestData(this.urlResolver.resolve(e,!1),t,n,()=>this._retryCallback()).withFinally(()=>{o=null}).send()},p=e=>{let r=n.playbackRate;n.playbackRate!==e&&(t(`Playback rate switch: ${r}=>${e}`),n.playbackRate=e)},m=e=>{this.lowLatency=e,t(`lowLatency changed to ${e}`),h()},h=()=>{if(!this.lowLatency&&!this.params.config.isLiveCatchUpMode)p(1);else{let e=this._getBufferSizeSec();if(this.bufferStates.length<5){p(1);return}let n=Sc()-1e4,r=0;for(let t=0;t<this.bufferStates.length;t++){let i=this.bufferStates[t];e=Math.min(e,i.buf),i.ts<n&&r++}this.bufferStates.splice(0,r),t(`update playback rate; minBuffer=${e} drop=${r} jitter=${this.sourceJitter}`);let i=e-Uc;this.sourceJitter>=0?i-=this.sourceJitter/2:--this.sourceJitter,p(i>3?1.15:i>1?1.1:i>.3?1.05:1)}},g=e=>{let n,i=()=>n&&n.start?n.start.length:0,a=e=>n.start[e]/1e3,o=e=>n.dur[e]/1e3,s=e=>n.fragIndex+e,l=(e,t)=>({chunkIdx:s(e),startTS:a(e),dur:o(e),discontinuity:t}),d=()=>{let e=0;if(n&&n.dur){let t=this.lowLatency?this.params.config.lowLatencyMinBuffer:this.params.config.minBuffer,r=this.lowLatency?this.params.config.lowLatencyMinBufferSegments:this.params.config.minBufferSegments,i=t;this.sourceJitter>1&&(i+=this.sourceJitter-1);let a=n.dur.length-1;for(;a>=0&&(i-=n.dur[a],!(i<=0));--a);e=Math.min(a,n.dur.length-1-r),e=Math.max(e,0)}return l(e,!0)},f=e=>{let t=i();if(!(t<=0)){if(hc(e)){for(let n=0;n<t;n++)if(a(n)>e)return l(n)}return d()}},p=e=>{let r=i(),a=e?e.chunkIdx+1:0,o=a-n.fragIndex;if(!(r<=0)){if(!e||o<0||o-r>Hc)return t(`Resync: offset=${o} bChunks=${r} chunk=`+JSON.stringify(e)),d();if(!(o>=r))return l(a-n.fragIndex,!1)}},h=(e,t,n)=>{c&&c.abort(),c=Ec(this.urlResolver.resolve(e,!0,this.lowLatency),t,n,()=>this._retryCallback()).withTimeout(zc).withRetryCount(Bc).withFinally(()=>{c=null}).withJSONResponse().send()};return{seek:(t,i)=>{h(e,e=>{if(!u())return;n=e;let a=!!n.lowLatency;a!==this.lowLatency&&m(a);let o=0;for(let e=0;e<n.dur.length;++e)o+=n.dur[e];o>0&&(_c(this.filesFetcher),this.filesFetcher.optimizeForSegDuration(o/n.dur.length)),r({name:`index`,zeroTime:n.zeroTime,shiftDuration:n.shiftDuration}),this.sourceJitter=n.hasOwnProperty(`jitter`)?Math.min(10,Math.max(.01,n.jitter/1e3)):1,t(f(i))},()=>this._handleNetworkError())},nextChunk:p}},_=()=>{i=!1,o&&o.abort(),s&&s.abort(),c&&c.abort(),_c(this.filesFetcher),this.filesFetcher.abortAll()};return l={start:t=>{let{videoElement:n,logger:o}=this.params,s=g(e.jidxUrl),l,p,m,v,y=0,b,x,S,C=()=>{b&&=(clearTimeout(b),void 0);let e=Math.max(Wc,1e3*(this._getBufferSizeSec()-this.sourceJitter-5)),t=y+e,n=Sc(),r=Math.min(1e4,t-n);y=n;let i=()=>{c||u()&&s.seek(()=>{u()&&(y=Sc(),w(),C())})};r>0?b=window.setTimeout(()=>{this.paused?C():i()},r):i()},w=()=>{let t;for(;t=s.nextChunk(v);)v=t,k(t);let n=s.nextChunk(m);if(n){if(m&&n.discontinuity){o(`Detected discontinuity; restarting playback`),this.paused?C():(_(),z({m:`ldp.fetchChunkIdx.0`}),this._initPlayerWith(e));return}O(n)}else C()},T=(e,t)=>{if(!u()||!this.sourceBuffer){z({m:`ab.0`,c:[!u(),!this.sourceBuffer]});return}let i,a,s,c=n=>{z({m:`ldp.postpone`,t:n}),window.setTimeout(()=>{u()&&T(e,t)},n)};if(this.sourceBuffer.updating)o(`Source buffer is updating; delaying appendBuffer`),z({m:`ldp.ab.1`}),c(100);else{let l=Sc(),u=n.currentTime;!this.paused&&n.buffered.length>1&&x===u&&l-S>500&&(o(`Stall suspected; trying to fix`),this._fixupStall()),x!==u&&(x=u,S=l);let d=this._getBufferSizeSec();if(d>30)z({m:`ldp.ab.3`}),o(`Buffered ${d} seconds; delaying appendBuffer`),c(2e3);else try{if(this.params.config.useInvalidBufferFix&&R(this.mediaSource,this.sourceBuffer))return;this.sourceBuffer.appendBuffer(e),this.videoPlayStarted?(z({m:`ldp.ab.5`}),this.bufferStates.push({ts:l,buf:d}),h(),this.bufferStates.length>200&&this.bufferStates.shift()):this.shouldPlay()&&(z({m:`ldp.ab.4`}),this.videoPlayStarted=!0,this._playVideoElement()),t&&t()}catch(e){z({m:`ldp.ab.err`,e:e.name}),e.name===`QuotaExceededError`?(o(`QuotaExceededError; delaying appendBuffer`),s=this.sourceBuffer.buffered.length,s!==0&&(i=this.sourceBuffer.buffered.start(0),a=u,a-i>4&&this.sourceBuffer.remove(i,a-3)),c(1e3)):(o(e.name),r({name:`error`,type:`buffer`,message:`appendBuffer failed due to ${e.name}`}))}}},E=()=>{p&&l&&(o([`Appending chunk, sz=${p.byteLength}:`,JSON.stringify(m)]),T(p,function(){p=null,w()}))},D=t=>e.fragUrlTemplate.replace(`%%id%%`,t.chunkIdx),O=e=>{u()&&f(D(e),(t,n)=>{if(u()){if(n/=1e3,p=t,m=e,a=e.startTS,n){let t=Math.min(10,e.dur/n);this.downloadRate=this.downloadRate?.7*this.downloadRate+.3*t:t}E()}},()=>this._handleNetworkError())},k=e=>{u()&&(_c(this.filesFetcher),this.filesFetcher.prefetch(this.urlResolver.resolve(D(e),!1)))},A=t=>{u()&&(e.cachedHeader=t,T(t,()=>{l=!0,E()}))};i=!0,s.seek(e=>{if(u()){if(y=Sc(),!e){C();return}v=e,!gc(t)||e.startTS>t?O(e):(m=e,w())}},t),e.cachedHeader?A(e.cachedHeader):d(e.headerUrl,A,()=>this._handleNetworkError())},stop:_,getTimestampSec:()=>a},l}_switchToQuality(e){let{logger:t,playerCallback:n}=this.params,r;e.bitrate!==this.bitrate&&(this.rep&&(r=this.rep.getTimestampSec(),hc(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,_c(this.bitrateSwitcher),this.bitrateSwitcher.notifySwitch(this.bitrate),this.rep.start(r),n({name:`qualitySwitch`,quality:e}))}_qualityAvailable(e){return hc(this.manifest.find(t=>t.name===e))}_initBitrateSwitcher(){let{logger:e,playerCallback:t}=this.params,n=t=>{if(!this.autoQuality)return;let n,r,i;if(this.currentManifestEntry&&this._qualityAvailable(this.currentManifestEntry.name)&&t<this.bitrate&&(r=this._getBufferSizeSec(),i=t/this.bitrate,r>10&&i>.8||r>15&&i>.5||r>20&&i>.3)){e(`Not switching: buffer=${Math.floor(r)}; bitrate=${this.bitrate}; newRate=${Math.floor(t)}`);return}n=this._selectQuality(t),n?this._switchToQuality(n):e(`Could not find quality by bitrate ${t}`)},r={updateChunk:(e,n)=>{let r=Sc();if(this.chunkRateEstimator.addInterval(e,r,n)){let i=this.chunkRateEstimator.getBitRate();return t({name:`bandwidth`,size:n,duration:r-e,speed:i}),!0}},get:()=>{let e=this.chunkRateEstimator.getBitRate();return e?e*.85:0}},i=-1/0,a,o=!0,s=()=>{let e=r.get();if(e&&a&&this.autoQuality){if(o&&e>a&&Cc(i)<3e4)return;n(e)}o=this.autoQuality};return{updateChunk:(e,t)=>{let n=r.updateChunk(e,t);return n&&s(),n},notifySwitch:e=>{let t=Sc();e<a&&(i=t),a=e}}}_fetchManifest(e,t,n){this.manifestRequest=Ec(this.urlResolver.resolve(e,!0),t,n,()=>this._retryCallback()).withJSONResponse().withTimeout(zc).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;mc(e,()=>{this.soundProhibitedEvent$.next()}).then(e=>{z({m:`ldp.pve.1`}),e||(z({m:`ldp.pve.2`}),this.params.liveOffset.pause(),this.params.videoState.setState(`paused`))})}_handleManifestUpdate(e){let{logger:t,playerCallback:n,videoElement:r}=this.params;this.manifest=(e=>{let t=[];return e?.length?(e.forEach((e,n)=>{var i,a;e.video&&r.canPlayType(e.codecs).replace(/no/,``)&&!((i=window.MediaSource)==null||(a=i.isTypeSupported)==null)&&a.call(i,e.codecs)&&(e.index=n,t.push(e))}),t.sort(function(e,t){return e.video&&t.video?t.video.height-e.video.height:t.bitrate-e.bitrate}),t):(n({name:`error`,type:`empty_manifest`}),[])})(e),t(`Valid manifest entries: ${this.manifest.length}/${e.length}`),n({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))},Vc))}_initManifest(){this._fetchManifest(this.manifestUrl,e=>{this.destroyed||(this._handleManifestUpdate(e),this._refetchManifest(this.manifestUrl))},()=>this._handleNetworkError())}}var Kc=v(ct(),1);import{debounce as qc,filter as Jc,fromEvent as Yc,interval as Xc,isHigher as Zc,isInvariantQuality as Qc,isLower as $c,merge as el,Subject as tl,Subscription as nl}from"@vkontakte/videoplayer-shared/es2015";class rl{constructor(){i(this,`onDroopedVideoFramesLimit$`,new tl),i(this,`subscription`,new nl),i(this,`log`,void 0),i(this,`video`,void 0),i(this,`droppedFramesChecker`,void 0),i(this,`isAuto`,void 0),i(this,`playing`,!1),i(this,`tracks`,[]),i(this,`forceChecker$`,new tl),i(this,`isForceCheckCounter`,0),i(this,`prevTotalVideoFrames`,0),i(this,`prevDroppedVideoFrames`,0),i(this,`currentTimer`,void 0),i(this,`limitCounts`,{}),i(this,`currentQuality`,void 0),i(this,`maxQualityLimit`,void 0),i(this,`handleChangeVideoQuality`,()=>{let e=this.tracks.find(({size:e})=>e?.height===this.video.videoHeight&&e?.width===this.video.videoWidth);e&&!Qc(e.quality)&&this.onChangeQuality(e.quality)}),i(this,`checkDroppedFrames`,()=>{let{totalVideoFrames:e,droppedVideoFrames:t}=this.video.getVideoPlaybackQuality(),n=e-this.prevTotalVideoFrames,r=1-(n-(t-this.prevDroppedVideoFrames))/n;!isNaN(r)&&r>0&&this.log({message:`[dropped]. current dropped percent: ${r}, limit: ${this.droppedFramesChecker.percentLimit}`}),!isNaN(r)&&r>=this.droppedFramesChecker.percentLimit&&Zc(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(Yc(this.video,`resize`).subscribe(this.handleChangeVideoQuality));let e=el(Xc(this.droppedFramesChecker.checkTime).pipe(Jc(()=>this.playing),Jc(()=>{let e=!!this.isForceCheckCounter;return e&&--this.isForceCheckCounter,!e})),this.forceChecker$.pipe(qc(this.droppedFramesChecker.checkTime)));this.subscription.add(e.subscribe(this.checkDroppedFrames))}onChangeQuality(e){this.currentQuality=e;let{totalVideoFrames:t,droppedVideoFrames:n}=this.video.getVideoPlaybackQuality();this.savePrevFrameCounts(t,n),this.isForceCheckCounter=this.droppedFramesChecker.tickCountAfterQualityChange,this.forceChecker$.next()}onDroopedVideoFramesLimitTrigger(){this.isAuto.getState()&&(this.log({message:`[onDroopedVideoFramesLimit]. maxQualityLimit: ${this.maxQualityLimit}`}),this.onDroopedVideoFramesLimit$.next())}getMaxQualityLimit(e){var t;let n=(t=Kc.default(this.limitCounts).filter(([,e])=>e>=this.droppedFramesChecker.countLimit).sort(([e],[t])=>$c(e,t)?-1:1))==null||(t=t[0])==null?void 0:t[0];return e??n}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}}var il=rl;import{map as al,Observable as ol}from"@vkontakte/videoplayer-shared/es2015";import{fromEvent as sl}from"@vkontakte/videoplayer-shared/es2015";var cl=()=>!!window.documentPictureInPicture?.window||!!document.pictureInPictureElement,ll=(e,t)=>new ol(n=>{if(!window.IntersectionObserver)return;let r=new IntersectionObserver((e,t)=>{e.forEach(e=>n.next(e.isIntersecting||cl()))},o(o({},{root:null}),t));r.observe(e);let i=sl(document,`visibilitychange`).pipe(al(e=>!document.hidden||cl())).subscribe(e=>n.next(e));return()=>{r.unobserve(e),i.unsubscribe()}}),ul=[`paused`,`playing`,`ready`],dl=[`paused`,`playing`,`ready`];class fl{constructor(e){i(this,`subscription`,new ac),i(this,`volumeSubscription`,new ac),i(this,`video`,void 0),i(this,`videoState`,new I(`stopped`)),i(this,`dash`,void 0),i(this,`representations$`,new oc([])),i(this,`textTracksManager`,void 0),i(this,`droppedFramesManager`,new il),i(this,`maxSeekBackTime$`,new oc(1/0)),i(this,`zeroTime$`,new oc(void 0)),i(this,`liveOffset`,new Ao),i(this,`log`,void 0),i(this,`params`,void 0),i(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:Zs.WTF,message:`LiveDashPlayer reported error${e.message?`: ${e.message}`:``}`});break;case`manifest`:{let t=e.manifest,n=[];for(let e of t){let t=e.name??e.index.toString(10),r=$o(e.name)??cc(e.video),i=e.bitrate/1e3,a=o({},e.video);if(!r)continue;let s={id:t,quality:r,bitrate:i,size:a};n.push({track:s,representation:e})}this.representations$.next(n),this.params.output.availableVideoTracks$.next(n.map(({track:e})=>e)),this.videoState.getTransition()?.to===`manifest_ready`&&this.videoState.setState(`manifest_ready`);break}case`qualitySwitch`:{let t=e.quality,n=this.representations$.getValue().find(({representation:e})=>e===t)?.track;this.params.output.hostname$.next(new URL(t.headerUrl,this.params.source.url).hostname),ec(n)&&this.params.output.currentVideoTrack$.next(n);break}case`bandwidth`:{let{size:t,duration:n}=e;this.params.dependencies.throughputEstimator.addRawSpeed(t,n);break}case`index`:this.maxSeekBackTime$.next(e.shiftDuration||0),this.zeroTime$.next(e.zeroTime);break}}),i(this,`syncPlayback`,()=>{let e=this.videoState.getState(),t=this.videoState.getTransition(),n=this.params.desiredState.playbackState.getState(),r=this.params.desiredState.playbackState.getTransition(),i=this.params.desiredState.seekState.getState();if(this.log({message:`[syncPlayback] videoState: ${e}; videoTransition: ${JSON.stringify(t)}; desiredPlaybackState: ${n}; seekState: ${JSON.stringify(i)};`}),n===`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 a=this.params.desiredState.videoTrack.getTransition(),o=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(Va.default(dl,e)&&(a||o)){this.prepare();return}if(r?.to!==`paused`&&i.state===`requested`&&Va.default(ul,e)){this.seek(i.position-this.liveOffset.getTotalPausedTime());return}switch(e){case`stopped`:this.videoState.startTransitionTo(`manifest_ready`),this.dash.attachSource(oi(this.params.source.url));return;case`manifest_ready`:this.videoState.startTransitionTo(`ready`),this.prepare();break;case`ready`:if(n===`paused`)this.videoState.setState(`paused`);else if(n===`playing`){z({m:`dlp.sync.1`}),this.videoState.startTransitionTo(`playing`);let e=r?.from;e&&e===`ready`&&(z({m:`dlp.sync.2`}),this.dash.catchUp()),z({m:`dlp.sync.3`}),this.dash.play()}return;case`playing`:n===`paused`&&(this.videoState.startTransitionTo(`paused`),this.liveOffset.pause(),this.dash.pause());return;case`paused`:if(n===`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 e=this.liveOffset.getTotalOffset();e>=this.maxSeekBackTime$.getValue()&&(e=0,this.liveOffset.resetTo(e)),this.liveOffset.resume(),this.params.output.position$.next(-e/1e3),this.dash.reinit(oi(this.params.source.url,e))}return;default:return qs(e)}}),this.textTracksManager=new ko(e.source.url),this.params=e,this.log=this.params.dependencies.logger.createComponentLog(`DashLiveProvider`);let t=t=>{e.output.error$.next({id:`DashLiveProvider`,category:Zs.WTF,message:`DashLiveProvider internal logic error`,thrown:t})};this.subscription.add(nc(this.videoState.stateChangeStarted$.pipe(tc(e=>({transition:e,type:`start`}))),this.videoState.stateChangeEnded$.pipe(tc(e=>({transition:e,type:`end`})))).subscribe(({transition:e,type:t})=>{z({m:`dlp.s.1`,t:t+`:${e.from}-${e.to}`}),this.log({message:`[videoState change] ${t}: ${JSON.stringify(e)}`})})),this.video=no(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(Ks(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 n=Zo(this.video);this.subscription.add(()=>n.destroy()),this.subscription.add(this.representations$.pipe(tc(e=>e.map(({track:e})=>e)),Qs(e=>!!e.length),ic()).subscribe(e=>this.droppedFramesManager.connect({logger:this.params.dependencies.logger,video:this.video,droppedFramesChecker:this.params.tuning.droppedFramesChecker,isAuto:this.params.desiredState.autoVideoTrackSwitching,playing$:n.playing$,pause$:n.pause$,tracks:e}))),this.subscription.add(n.canplay$.subscribe(()=>{this.videoState.getTransition()?.to===`ready`&&this.videoState.setState(`ready`)},t)).add(n.pause$.subscribe(()=>{this.videoState.setState(`paused`)},t)).add(n.playing$.subscribe(()=>{this.params.desiredState.seekState.getState().state===`applying`&&this.params.output.seekedEvent$.next(),this.videoState.setState(`playing`)},t)).add(n.error$.subscribe(this.params.output.error$)).add(this.maxSeekBackTime$.pipe($s(),tc(e=>-e/1e3)).subscribe(this.params.output.duration$)).add(Ys({zeroTime:this.zeroTime$.pipe(Qs(ec)),position:n.timeUpdate$}).subscribe(({zeroTime:e,position:t})=>{t===0&&this.videoState.getTransition()||this.params.output.liveTime$.next(e+t*1e3)},t)).add(So(this.video,this.params.desiredState.isLooped,t)).add(Co(this.video,this.params.desiredState.volume,n.volumeState$,t,{skipVideoElVolumeSync$:this.params.skipVideoElVolumeSync$})),this.subscription.add(this.params.skipVideoElVolumeSync$.subscribe(e=>{this.volumeSubscription.unsubscribe(),e?this.volumeSubscription.add(this.params.desiredState.volume.stateChangeStarted$.subscribe(({to:e})=>this.params.output.volume$.next(e),t)):this.volumeSubscription.add(n.volumeState$.subscribe(this.params.output.volume$,t))})),this.subscription.add(wo(this.video,this.params.desiredState.playbackRate,n.playbackRateState$,t)).add(n.loadStart$.subscribe(this.params.output.firstBytesEvent$)).add(n.loadedMetadata$.subscribe(this.params.output.loadedMetadataEvent$)).add(n.playing$.subscribe(this.params.output.firstFrameEvent$)).add(n.canplay$.subscribe(this.params.output.canplay$)).add(n.inPiP$.subscribe(this.params.output.inPiP$)).add(n.inFullscreen$.subscribe(this.params.output.inFullscreen$)).add(ll(this.video).subscribe(this.params.output.elementVisible$)).add(this.params.desiredState.autoVideoTrackLimits.stateChangeStarted$.subscribe(({to:{max:e,min:t}})=>{this.dash.setAutoQualityLimits({max:e&&sc(e),min:t&&sc(t)}),this.params.output.autoVideoTrackLimits$.next({max:e,min:t})})).add(this.videoState.stateChangeEnded$.subscribe(e=>{switch(e.to){case`stopped`:this.params.output.position$.next(0),this.params.output.duration$.next(1/0),z({m:`dlp.vse.s`}),this.params.desiredState.playbackState.setState(`stopped`);break;case`manifest_ready`:case`ready`:this.params.desiredState.playbackState.getTransition()?.to===`ready`&&(z({m:`dlp.vse.r`}),this.params.desiredState.playbackState.setState(`ready`));break;case`paused`:z({m:`dlp.vse.pa`}),this.params.desiredState.playbackState.setState(`paused`);break;case`playing`:z({m:`dlp.vse.pl`}),this.params.desiredState.playbackState.setState(`playing`);break;default:return qs(e.to)}},t)).add(nc(e.desiredState.playbackState.stateChangeStarted$,e.desiredState.seekState.stateChangeEnded$,e.desiredState.videoTrack.stateChangeStarted$,e.desiredState.autoVideoTrackSwitching.stateChangeStarted$,this.videoState.stateChangeEnded$,this.droppedFramesManager.onDroopedVideoFramesLimit$,rc([`init`])).pipe(Xs(0)).subscribe(this.syncPlayback,t));let r=!1,{output:a}=this.params;this.params.tuning.live.catchupLiveForMutedInactiveTab&&this.subscription.add(a.elementVisible$.pipe($s()).subscribe(e=>{let t=a.position$.getValue(),n=a.volume$.getValue(),i=!n.volume||n.muted;!e&&!t&&i?r=!0:e&&r&&(this.seek(0),r=!1)}))}destroy(){z({m:`dlp.destroy`}),this.subscription.unsubscribe(),this.volumeSubscription.unsubscribe(),this.textTracksManager.destroy(),this.droppedFramesManager.destroy(),this.dash.destroy(),this.params.output.element$.next(void 0),ro(this.video,this.params.tuning)}createLiveDashPlayer(){let e=new Gc({videoElement:this.video,videoState:this.videoState,playbackState:this.params.desiredState.playbackState,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,useInvalidBufferFix:this.params.tuning.useInvalidBufferFix||!1},playerCallback:this._dashCb,logger:e=>{this.params.dependencies.logger.log({message:String(e),component:`LiveDashPlayer`})}});return e.pause(),e}prepare(){let e=this.representations$.getValue(),t=this.params.desiredState.videoTrack.getTransition()?.to??this.params.desiredState.videoTrack.getState(),n=this.params.desiredState.autoVideoTrackSwitching.getTransition()?.to??this.params.desiredState.autoVideoTrackSwitching.getState(),r=!n&&ec(t)?t:Hs(e.map(({track:e})=>e),{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}),i=r?.id,a=this.params.desiredState.videoTrack.getTransition(),o=this.params.desiredState.videoTrack.getState()?.id,s=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(r&&(a||i!==o)&&this.setVideoTrack(r),s&&this.setAutoQuality(n),a||s||i!==o){let t=e.find(({track:e})=>e.id===i)?.representation;Js(t,`Representations missing`),this.dash.startPlay(t,n)}}setVideoTrack(e){let t=this.representations$.getValue().find(({track:t})=>t.id===e.id)?.representation;Js(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(),n=this.videoState.getState(),r=t===`paused`&&n===`paused`,i=-e,a=i<=this.maxSeekBackTime$.getValue()?i:0;this.params.output.position$.next(e/1e3),z({m:`dlp.seek`,p:e,no:a,url:this.params.source.url}),this.dash.reinit(oi(this.params.source.url,a)),r&&this.dash.pause(),this.liveOffset.resetTo(a,r)}}var pl=fl;import{filter as ml,filterChanged as hl,isNonNullable as gl}from"@vkontakte/videoplayer-shared/es2015";import{assertNever as _l,assertNonNullable as vl,debounce as yl,ErrorCategory as bl,filter as xl,filterChanged as Sl,fromEvent as Cl,isNonNullable as wl,isNullable as Tl,map as El,merge as Dl,observableFrom as Ol,once as kl,Subscription as Al,throttle as jl}from"@vkontakte/videoplayer-shared/es2015";var Ml=v(Pn(),1);import{videoSizeToQuality as Nl}from"@vkontakte/videoplayer-shared/es2015";var Pl=({id:e,width:t,height:n,bitrate:r,fps:i,quality:a,streamId:o})=>{let s=(a?$o(a):void 0)??Nl({width:t,height:n});return s&&{id:e,quality:s,bitrate:r,size:{width:t,height:n},fps:i,streamId:o}},Fl=({id:e,bitrate:t})=>({id:e,bitrate:t}),Il=({language:e,label:t},{id:n,url:r,isAuto:i})=>({id:n,url:r,isAuto:i,type:`internal`,language:e,label:t}),Ll=({language:e,label:t,id:n,url:r,isAuto:i})=>({id:n,url:r,isAuto:i,type:`internal`,language:e,label:t}),Rl=({id:e,language:t,label:n,codecs:r,isDefault:i})=>({id:e,language:t,label:n,codec:Ml.default(r.split(`.`),0),isDefault:i}),zl=({id:e,language:t,label:n,hdr:r,codecs:i})=>({id:e,language:t,hdr:r,label:n,codec:Ml.default(i.split(`.`),0)}),Bl=e=>e.type===`template`;class Vl{constructor(e,t){i(this,`fov`,void 0),i(this,`orientation`,void 0),this.fov=e,this.orientation=t}}class Hl{constructor(e,t){i(this,`options`,void 0),i(this,`camera`,void 0),i(this,`rotating`,!1),i(this,`fading`,!1),i(this,`lastTickTS`,0),i(this,`lastCameraTurn`,void 0),i(this,`lastCameraTurnTS`,0),i(this,`fadeStartSpeed`,null),i(this,`fadeCorrection`,void 0),i(this,`fadeTime`,0),i(this,`rotationSpeed`,void 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,n=0){this.pointCameraTo(this.camera.orientation.x+e,this.camera.orientation.y+t,this.camera.orientation.z+n)}pointCameraTo(e=0,t=0,n=0){t=this.limitCameraRotationY(t);let r=e-this.camera.orientation.x,i=t-this.camera.orientation.y,a=n-this.camera.orientation.z;this.camera.orientation.x=e,this.camera.orientation.y=t,this.camera.orientation.z=n,this.lastCameraTurn={x:r,y:i,z:a},this.lastCameraTurnTS=Date.now()}setRotationSpeed(e,t,n){this.rotationSpeed.x=e??this.rotationSpeed.x,this.rotationSpeed.y=t??this.rotationSpeed.y,this.rotationSpeed.z=n??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,n){this.setRotationSpeed(e,t,n),this.fadeStartSpeed=o({},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,n=t/1e3;if(this.rotating)this.turnCamera(this.rotationSpeed.x*this.options.rotationSpeedCorrection*n,this.rotationSpeed.y*this.options.rotationSpeedCorrection*n,this.rotationSpeed.z*this.options.rotationSpeedCorrection*n);else if(this.fading&&this.fadeStartSpeed){let e=-this.fadeCorrection*(this.fadeTime/1e3)**2+1;this.setRotationSpeed(this.fadeStartSpeed.x*e,this.fadeStartSpeed.y*e,this.fadeStartSpeed.z*e),e>0?this.turnCamera(this.rotationSpeed.x*this.options.rotationSpeedCorrection*n,this.rotationSpeed.y*this.options.rotationSpeedCorrection*n,this.rotationSpeed.z*this.options.rotationSpeedCorrection*n):(this.stopRotation(!0),this.stopFading()),this.fadeTime=Math.min(this.fadeTime+t,this.options.speedFadeTime)}this.lastTickTS=e}}var Ul=`./vertex_shader-xzkp5kyx.glsl`,Wl=`./fragment_shader-66qz233h.glsl`;class Gl{constructor(e,t,n){i(this,`container`,void 0),i(this,`sourceVideoElement`,void 0),i(this,`canvas`,void 0),i(this,`gl`,void 0),i(this,`params`,void 0),i(this,`frameWidth`,void 0),i(this,`frameHeight`,void 0),i(this,`viewportWidth`,void 0),i(this,`viewportHeight`,void 0),i(this,`videoInitialized`,!1),i(this,`program`,void 0),i(this,`videoTexture`,void 0),i(this,`vertexBuffer`,void 0),i(this,`textureMappingBuffer`,void 0),i(this,`camera`,void 0),i(this,`cameraRotationManager`,void 0),i(this,`videoElementDataLoadedFn`,void 0),i(this,`renderFn`,void 0),i(this,`active`,!1),this.container=e,this.sourceVideoElement=t,this.params=n,this.canvas=this.createCanvas();let r=this.canvas.getContext(`webgl`);if(!r)throw Error(`Could not initialize WebGL context`);this.gl=r,this.container.appendChild(this.canvas),this.camera=new Vl(this.params.fov,this.params.orientation),this.cameraRotationManager=new Hl(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`),n=this.gl.getAttribLocation(this.program,`a_texel`),r=this.gl.getUniformLocation(this.program,`u_texture`),i=this.gl.getUniformLocation(this.program,`u_focus`);this.gl.enableVertexAttribArray(t),this.gl.enableVertexAttribArray(n),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(n,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(i,-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(n),this.active&&requestAnimationFrame(this.renderFn)}createShader(e,t){let n=this.gl.createShader(t);if(!n)throw this.destroy(),Error(`Could not create shader (${t})`);if(this.gl.shaderSource(n,e),this.gl.compileShader(n),!this.gl.getShaderParameter(n,this.gl.COMPILE_STATUS))throw this.destroy(),Error(`An error occurred while compiling the shader: `+this.gl.getShaderInfoLog(n));return n}createProgram(){let e=this.gl.createProgram();if(!e)throw this.destroy(),Error(`Could not create shader program`);let t=this.createShader(Ul,this.gl.VERTEX_SHADER),n=this.createShader(Wl,this.gl.FRAGMENT_SHADER);if(this.gl.attachShader(e,t),this.gl.attachShader(e,n),this.gl.linkProgram(e),!this.gl.getProgramParameter(e,this.gl.LINK_STATUS))throw this.destroy(),Error(`Could not link shader program.`);return e}createTexture(){let e=this.gl.createTexture();if(!e)throw this.destroy(),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(),Error(`Could not create vertex buffer`);let t=1,n=1,r=this.frameHeight/(this.frameWidth/this.viewportWidth);return r>this.viewportHeight?t=this.viewportHeight/r:n=r/this.viewportHeight,this.gl.bindBuffer(this.gl.ARRAY_BUFFER,e),this.gl.bufferData(this.gl.ARRAY_BUFFER,new Float32Array([-t,-n,t,-n,t,n,-t,n]),this.gl.STATIC_DRAW),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,null),e}createTextureMappingBuffer(){let e=this.gl.createBuffer();if(!e)throw this.destroy(),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,n=this.camera.fov.x/360/2,r=this.camera.fov.y/180/2;return[e-n,t-r,e+n,t-r,e+n,t+r,e-n,t+r]}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 Kl,now as ql,once as Jl,Subscription as Yl,ValueSubject as Xl,isNonNullable as Zl,safeStorage as Ql,filterChanged as $l}from"@vkontakte/videoplayer-shared/es2015";var eu=(e,t,n)=>n*t+(1-n)*e,tu=(e,t)=>e.reduce((e,t)=>e+t,0)/t,nu=(e,t,n,r)=>{let i=0,a=n,o=tu(e,t),s=t<r?t:r;for(let t=0;t<s;t++)e[a]>o?i++:i--,a=(e.length+a-1)%e.length;return Math.abs(i)===s},ru=`stalls_manager_metrics`,iu=`stalls_manager_abr_params`,au=`stalls_manager_default_tuning_abr_params`;class ou{constructor(){i(this,`currentStallDuration$`,void 0),i(this,`videoLastDataObtainedTimestamp$`,void 0),i(this,`throughput$`,void 0),i(this,`rtt$`,void 0),i(this,`tuning`,void 0),i(this,`abrParams`,void 0),i(this,`duration`,void 0),i(this,`isSeeked$`,new Xl(!1)),i(this,`isBuffering$`,new Xl(!1)),i(this,`maxQualityLimit`,void 0),i(this,`lastUniqueVideoTrackSelected`,void 0),i(this,`currentStallsCount`,0),i(this,`sumStallsDuration`,0),i(this,`lastStallDuration`,0),i(this,`providerStartWatchingTimestamp`,0),i(this,`lastUniqueVideoTrackSelectedTimestamp`,0),i(this,`predictedThroughputWithoutData`,0),i(this,`qualityRestrictionTimer`,void 0),i(this,`subscription`,new Yl),i(this,`severeStallOccurred$`,new Xl(!1))}init(e){this.currentStallDuration$=e.currentStallDuration$,this.videoLastDataObtainedTimestamp$=e.videoLastDataObtainedTimestamp$,this.throughput$=e.throughput$,this.rtt$=e.rtt$,this.tuning=e.tuning,this.abrParams=e.abrParams,this.duration=e.duration,this.resetStoredAbrParamsIfNeeded(),this.subscribe(e)}get videoMaxQualityLimit(){return this.maxQualityLimit}get predictedThroughput(){return this.predictedThroughputWithoutData}get abrTuningParams(){let e=(this.tuning.ignoreDynamicAbrForShortVideo?this.tuning.enabled&&this.duration>this.tuning.minTvtToBeCounted:this.tuning.enabled)?this.getStoredData(iu):{};return o(o({},this.abrParams),e)}set lastVideoTrackSelected(e){this.lastUniqueVideoTrackSelected?.id!==e.id&&(this.lastUniqueVideoTrackSelected=e,this.lastUniqueVideoTrackSelectedTimestamp=ql(),this.currentStallsCount=0)}destroy(){window.clearTimeout(this.qualityRestrictionTimer),this.subscription.unsubscribe(),this.currentStallDuration$.getValue()!==0&&this.updateStallData();let e=(ql()-this.providerStartWatchingTimestamp-this.sumStallsDuration)/1e3,t=this.sumStallsDuration;this.addStallInfoToHistory(e,t),this.updateStoredAbrParams()}resetStoredAbrParamsIfNeeded(){let{bitrateFactorAtEmptyBuffer:e,bitrateFactorAtFullBuffer:t,containerSizeFactor:n}=o({},this.getStoredData(au)),{bitrateFactorAtEmptyBuffer:r,bitrateFactorAtFullBuffer:i,containerSizeFactor:a}=o({},this.abrParams);this.tuning.enabled&&e===r&&t===i&&n===a||(this.removeStoredData(iu),this.setStoredData(au,{bitrateFactorAtEmptyBuffer:r,bitrateFactorAtFullBuffer:i,containerSizeFactor:a}))}updateStoredAbrParams(){let e=[],t=this.getStoredData(ru,`[]`);if(!this.tuning.enabled||t.length<this.tuning.stallsMetricsHistoryLength)return;let n=t.reduce((e,t)=>e+t.tvt,0);if(this.tuning.useTotalStallsDurationPerTvt){let r=t.reduce((e,t)=>e+t.stallsDuration,0)/n;e.push(this.calculateOptimalAbrParams(r,n))}if(this.tuning.useAverageStallsDurationPerTvt){let r=t.reduce((e,t)=>e+t.stallsDurationPerTvt,0)/t.length;e.push(this.calculateOptimalAbrParams(r,n))}this.tuning.useEmaStallsDurationPerTvt&&e.push(this.calculateOptimalAbrParams(t[t.length-1].stallsDurationPerTvtSmoothed,n));let r={bitrateFactorAtEmptyBuffer:Math.max(...e.map(e=>e.bitrateFactorAtEmptyBuffer)),bitrateFactorAtFullBuffer:Math.max(...e.map(e=>e.bitrateFactorAtFullBuffer)),containerSizeFactor:Math.min(...e.map(e=>e.containerSizeFactor))};this.setStoredData(ru,[]),this.setStoredData(iu,r)}calculateOptimalAbrParams(e,t){let{targetStallsDurationPerTvt:n,deviationStallsDurationPerTvt:r,criticalStallsDurationPerTvt:i,abrAdjustingSpeed:a,significantTvt:o}=this.tuning,s=a*Math.min(t/o,1),c=this.abrTuningParams;return e<n-r?c={bitrateFactorAtEmptyBuffer:Math.max(c.bitrateFactorAtEmptyBuffer-s,this.abrParams.minBitrateFactorAtEmptyBuffer),bitrateFactorAtFullBuffer:Math.max(c.bitrateFactorAtFullBuffer-s,this.abrParams.minBitrateFactorAtFullBuffer),containerSizeFactor:Math.min(c.containerSizeFactor+s,this.abrParams.maxContainerSizeFactor)}:e>n+r&&(c={bitrateFactorAtEmptyBuffer:Math.min(c.bitrateFactorAtEmptyBuffer+s,this.abrParams.maxBitrateFactorAtEmptyBuffer),bitrateFactorAtFullBuffer:Math.min(c.bitrateFactorAtFullBuffer+s,this.abrParams.maxBitrateFactorAtFullBuffer),containerSizeFactor:Math.max(c.containerSizeFactor-s,this.abrParams.minContainerSizeFactor)}),e>i&&(c={bitrateFactorAtEmptyBuffer:Math.max(c.bitrateFactorAtEmptyBuffer,this.abrParams.bitrateFactorAtEmptyBuffer),bitrateFactorAtFullBuffer:Math.max(c.bitrateFactorAtFullBuffer,this.abrParams.bitrateFactorAtFullBuffer),containerSizeFactor:Math.min(c.containerSizeFactor,this.abrParams.containerSizeFactor)}),c}getStoredData(e,t=`{}`){return JSON.parse(Ql.get(e)??t)}setStoredData(e,t){Ql.set(e,JSON.stringify(t))}removeStoredData(e){Ql.remove(e)}addStallInfoToHistory(e,t){if(e<this.tuning.minTvtToBeCounted||e>this.tuning.maxTvtToBeCounted||e*1e3<t)return;let n=this.getStoredData(ru,`[]`),r=t/e,i={tvt:e,stallsDuration:t,stallsDurationPerTvt:r,stallsDurationPerTvtSmoothed:n.length?eu(n[n.length-1].stallsDurationPerTvtSmoothed,t/e,this.tuning.emaAlpha):r};n.push(i),n.length>this.tuning.stallsMetricsHistoryLength&&n.shift(),this.setStoredData(ru,n)}updateStallData(){this.providerStartWatchingTimestamp&&!this.isSeeked$.getValue()&&(this.sumStallsDuration+=Math.min(this.lastStallDuration,this.tuning.maxPossibleStallDuration),this.currentStallsCount++)}subscribe(e){this.subscription.add(e.isSeeked$.subscribe(this.isSeeked$)),this.subscription.add(e.isBuffering$.subscribe(this.isBuffering$)),this.subscription.add(e.looped$.subscribe(e=>this.currentStallsCount=0)),this.subscription.add(e.playing$.pipe(Jl()).subscribe(e=>this.providerStartWatchingTimestamp=ql())),this.subscription.add(this.currentStallDuration$.pipe($l()).subscribe(e=>{let{stallDurationNoDataBeforeQualityDecrease:t,stallCountBeforeQualityDecrease:n,resetQualityRestrictionTimeout:r,ignoreStallsOnSeek:i}=this.tuning;if(Kl(this.lastUniqueVideoTrackSelected)||i&&this.isSeeked$.getValue())return;let a=this.rtt$.getValue(),o=this.throughput$.getValue(),s=this.videoLastDataObtainedTimestamp$.getValue(),c=ql(),l=n&&this.currentStallsCount>=n,u=t&&c-this.lastUniqueVideoTrackSelectedTimestamp>=t+a&&c-s>=t+a&&e>=t;(l||u)&&(this.severeStallOccurred$.next(!0),window.clearTimeout(this.qualityRestrictionTimer),this.maxQualityLimit=this.lastUniqueVideoTrackSelected.quality,Zl(this.lastUniqueVideoTrackSelected.bitrate)&&o>this.lastUniqueVideoTrackSelected.bitrate&&(this.predictedThroughputWithoutData=this.lastUniqueVideoTrackSelected.bitrate)),!e&&ql()-this.providerStartWatchingTimestamp>this.lastStallDuration&&(this.updateStallData(),this.severeStallOccurred$.next(!1),window.clearTimeout(this.qualityRestrictionTimer),this.qualityRestrictionTimer=window.setTimeout(()=>{this.maxQualityLimit=void 0,this.predictedThroughputWithoutData=0},r)),this.lastStallDuration=e}))}}var su=ou;import{combine as cu,map as lu,observeElementSize as uu,Subscription as du,ValueSubject as fu,noop as pu}from"@vkontakte/videoplayer-shared/es2015";class mu{constructor(){i(this,`subscription`,new du),i(this,`pipSize$`,new fu(void 0)),i(this,`videoSize$`,new fu(void 0)),i(this,`elementSize$`,new fu(void 0)),i(this,`pictureInPictureWindowRemoveEventListener`,pu)}connect({observableVideo:e,video:t}){let n=e=>{let t=e.target;this.pipSize$.next({width:t.width,height:t.height})};this.subscription.add(uu(t).subscribe(this.videoSize$)).add(e.enterPip$.subscribe(({pictureInPictureWindow:e})=>{this.pipSize$.next({width:e.width,height:e.height}),e.addEventListener(`resize`,n),this.pictureInPictureWindowRemoveEventListener=()=>{e.removeEventListener(`resize`,n)}})).add(e.leavePip$.subscribe(()=>{this.pictureInPictureWindowRemoveEventListener()})).add(cu({videoSize:this.videoSize$,pipSize:this.pipSize$,inPip:e.inPiP$}).pipe(lu(({videoSize:e,inPip:t,pipSize:n})=>t?n:e)).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()}}import{filter as hu,map as gu,once as _u}from"@vkontakte/videoplayer-shared/es2015";var vu=({subscription:e,desiredState:t,videoElement$:n,observableVideo:r})=>{if(!F.browser.isSafari)return;let i=0,a=!1;e.add(t.volume.stateChangeStarted$.pipe(gu(()=>{let e=t.volume.getTransition(),r=n.getValue();return!r||!e?!1:!e.to.muted&&r.muted}),hu(e=>!!e),_u()).subscribe(()=>{i=performance.now(),a=!0})),e.add(r.playbackRateState$.pipe(hu(()=>a),_u()).subscribe(()=>{let e=n.getValue(),r=t.playbackRate.getState();e&&r!==e.playbackRate&&performance.now()-i<1e3&&(e.playbackRate=r)}))};class yu{constructor(e){i(this,`scene3D`,void 0),i(this,`subscription`,new Al),i(this,`volumeSubscription`,new Al),i(this,`videoState`,new I(`stopped`)),i(this,`video`,void 0),i(this,`observableVideo`,null),i(this,`player`,void 0),i(this,`params`,void 0),i(this,`tracer`,void 0),i(this,`textTracksManager`,void 0),i(this,`droppedFramesManager`,new il),i(this,`stallsManager`,new su),i(this,`elementSizeManager`,new mu),i(this,`videoTracksMap`,new Map),i(this,`audioTracksMap`,new Map),i(this,`textTracksMap`,new Map),i(this,`videoStreamsMap`,new Map),i(this,`audioStreamsMap`,new Map),i(this,`videoTrackSwitchHistory`,new As),i(this,`audioTrackSwitchHistory`,new As),i(this,`syncPlayback`,()=>{let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),n=this.params.desiredState.playbackState.getTransition(),r=this.params.desiredState.seekState.getState();if(!this.videoState.getTransition()){if(r.state===`requested`&&n?.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.currentNativeBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState(`stopped`),P(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`),P(this.params.desiredState.playbackState,`paused`)):t===`playing`?(this.videoState.startTransitionTo(`playing`),this.playIfAllowed()):n?.to===`ready`&&P(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():n?.to===`playing`&&P(this.params.desiredState.playbackState,`playing`);return;case`paused`:t===`playing`?(this.videoState.startTransitionTo(`playing`),this.playIfAllowed()):n?.to===`paused`&&P(this.params.desiredState.playbackState,`paused`);return;default:return _l(e)}}}),i(this,`init3DScene`,e=>{if(this.scene3D)return;this.scene3D=new Gl(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)}),i(this,`destroy3DScene`,()=>{this.scene3D&&=(this.scene3D.destroy(),void 0)}),this.textTracksManager=new ko(e.source.url),this.params=e,this.video=no(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(Ks(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=this.getPlayer(),this.subscribe()}getProviderSubscriptionInfo(){let{output:e,desiredState:t}=this.params;Tl(this.observableVideo)&&(this.observableVideo=Zo(this.video),this.subscription.add(()=>this.observableVideo?.destroy()));let n=this.constructor.name,r=t=>{e.error$.next({id:n,category:bl.WTF,message:`${n} internal logic error`,thrown:t})};return{output:e,desiredState:t,observableVideo:this.observableVideo,genericErrorListener:r,connect:(e,t)=>this.subscription.add(e.subscribe(t,r))}}subscribe(){var e=this;let{output:t,desiredState:n,observableVideo:r,genericErrorListener:i,connect:s}=this.getProviderSubscriptionInfo();this.subscription.add(this.params.output.availableVideoTracks$.pipe(xl(e=>!!e.length),kl()).subscribe(e=>{this.droppedFramesManager.connect({logger:this.params.dependencies.logger,video:this.video,droppedFramesChecker:this.params.tuning.droppedFramesChecker,isAuto:this.params.desiredState.autoVideoTrackSwitching,playing$:r.playing$,pause$:r.pause$,tracks:e})}));let c=this.params.desiredState.seekState.stateChangeEnded$.pipe(El(e=>e.to.state!==`none`),Sl());this.stallsManager.init({isSeeked$:c,currentStallDuration$:this.player.currentStallDuration$,videoLastDataObtainedTimestamp$:this.player.videoLastDataObtainedTimestamp$,throughput$:this.params.dependencies.throughputEstimator.throughput$,rtt$:this.params.dependencies.throughputEstimator.rtt$,tuning:this.params.tuning.stallsManager,abrParams:this.params.tuning.autoTrackSelection,isBuffering$:r.isBuffering$,looped$:r.looped$,playing$:r.playing$,duration:this.video.duration}),s(r.ended$,t.endedEvent$),s(r.looped$,t.loopedEvent$),s(r.error$,t.error$),s(r.isBuffering$,t.isBuffering$),s(r.currentBuffer$,t.currentNativeBuffer$),s(r.playing$,t.firstFrameEvent$),s(r.canplay$,t.canplay$),s(r.inPiP$,t.inPiP$),s(r.inFullscreen$,t.inFullscreen$),s(r.loadedMetadata$,t.loadedMetadataEvent$),s(this.player.error$,t.error$),s(this.player.fetcherRecoverableError$,t.fetcherRecoverableError$),s(this.player.fetcherError$,t.fetcherError$),s(this.player.lastConnectionType$,t.httpConnectionType$),s(this.player.lastConnectionReused$,t.httpConnectionReused$),s(this.player.lastConnectionMetrics$,t.httpConnectionMetrics$),s(this.player.lastDownloadMetrics$,t.httpDownloadMetrics$),s(this.player.isLive$,t.isLive$),s(this.player.currentBuffer$,t.currentBuffer$),s(this.player.lastRequestFirstBytes$.pipe(xl(wl),kl()),t.firstBytesEvent$),s(this.stallsManager.severeStallOccurred$,t.severeStallOccurred$),s(this.videoState.stateChangeEnded$.pipe(El(e=>e.to)),this.params.output.playbackState$),this.subscription.add(r.looped$.subscribe(()=>this.player.warmUpMediaSourceIfNeeded(),i)),this.subscription.add(r.seeked$.subscribe(t.seekedEvent$,i)),this.subscription.add(So(this.video,n.isLooped,i)),this.subscription.add(this.params.skipVideoElVolumeSync$.subscribe(e=>{this.volumeSubscription.unsubscribe(),e?this.volumeSubscription.add(n.volume.stateChangeStarted$.subscribe(({to:e})=>this.params.output.volume$.next(e),i)):this.volumeSubscription.add(r.volumeState$.subscribe(this.params.output.volume$,i))})),vu({subscription:this.subscription,desiredState:n,videoElement$:this.params.output.element$,observableVideo:r}),this.subscription.add(Co(this.video,n.volume,r.volumeState$,i,{skipVideoElVolumeSync$:this.params.skipVideoElVolumeSync$})),this.subscription.add(wo(this.video,n.playbackRate,r.playbackRateState$,i)),this.elementSizeManager.connect({video:this.video,observableVideo:r}),s(ll(this.video,{threshold:this.params.tuning.autoTrackSelection.activeVideoAreaThreshold}),t.elementVisible$),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState(`playing`),P(n.playbackState,`playing`),this.scene3D&&this.scene3D.play()},i)).add(r.pause$.subscribe(()=>{this.videoState.setState(`paused`),P(n.playbackState,`paused`)},i)).add(r.canplay$.subscribe(()=>{this.videoState.getState()===`playing`&&this.playIfAllowed()},i)),this.params.tuning.changePlaybackStateToPausedWhenEnded&&this.subscription.add(r.ended$.subscribe(()=>{this.videoState.setState(`paused`),P(n.playbackState,`paused`)})),this.subscription.add(this.player.manifestRequested.subscribe(this.params.output.manifestRequested$)).add(this.player.manifestReceived.subscribe(this.params.output.manifestReceived$)).add(this.player.firstBytesRequested.subscribe(this.params.output.firstBytesRequested$)).add(this.player.firstBytesReceived.subscribe(this.params.output.firstBytesReceived$)),this.subscription.add(this.player.state$.stateChangeEnded$.subscribe(({to:e})=>{if(e===`manifest_ready`){this.videoTracksMap=new Map,this.audioTracksMap=new Map,this.textTracksMap=new Map;let e=this.player.getStreams(),t=this.player.getCodecs();if(vl(e,`Manifest not loaded or empty`),!this.params.tuning.isAudioDisabled){let t=[];for(let n of e.audio){t.push(Rl(n));let e=[];for(let t of n.representations){let r=Fl(t);e.push(r),this.audioTracksMap.set(r,{stream:n,representation:t})}this.audioStreamsMap.set(n,e)}this.params.output.availableAudioStreams$.next(t)}let n=[];for(let t of e.video){n.push(zl(t));let e=[];for(let n of t.representations){let r=Pl(o(o({},n),{},{streamId:t.id}));r&&(e.push(r),this.videoTracksMap.set(r,{stream:t,representation:n}))}this.videoStreamsMap.set(t,e)}this.params.output.availableVideoStreams$.next(n);for(let t of e.text)for(let e of t.representations){let n=Il(t,e);this.textTracksMap.set(n,{stream:t,representation:e})}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),t?.video&&this.params.output.availableVideoCodecs$.next(t.video),t?.audio&&this.params.output.availableAudioCodecs$.next(t.audio),this.audioTracksMap.size&&this.textTracksMap.size&&this.params.desiredState.internalTextTracks.startTransitionTo(Array.from(this.textTracksMap.keys()))}else e===`representations_ready`&&(this.videoState.setState(`ready`),this.player.initBuffer())},i));let l=Dl(this.player.currentStallDuration$,this.player.state$.stateChangeEnded$,n.videoTrack.stateChangeStarted$,n.autoVideoTrackSwitching.transitionStarted$,this.params.dependencies.throughputEstimator.rttAdjustedThroughput$,n.autoVideoTrackLimits.stateChangeStarted$,this.elementSizeManager.getObservable(),this.params.output.elementVisible$,this.droppedFramesManager.onDroopedVideoFramesLimit$,Cl(this.video,`progress`)).pipe(xl(()=>this.videoTracksMap.size>0)),{abrThrottle:u}=this.params.tuning.dash;u&&(l=l.pipe(jl(u))),this.subscription.add(l.subscribe(a(function*(){let t=e.player.state$.getState(),r=e.player.state$.getTransition(),i=n.autoVideoTrackSwitching.getState();if(t!==`manifest_ready`&&t!==`running`||r)return;n.autoVideoTrackSwitching.getTransition()&&n.autoVideoTrackSwitching.setState(n.autoVideoTrackSwitching.getState());let a=e.selectVideoAudioRepresentations();if(!a)return;let[o,s]=a,c=[...e.videoTracksMap.keys()].find(t=>e.videoTracksMap.get(t)?.representation.id===o.id);wl(c)&&(e.stallsManager.lastVideoTrackSelected=c);let l=e.params.desiredState.autoVideoTrackLimits.getTransition();l&&e.params.output.autoVideoTrackLimits$.next(l.to),t===`manifest_ready`?yield e.player.initRepresentations(o.id,s?.id,e.params.sourceHls):(yield e.player.switchRepresentation(`video`,o.id,i),s&&(yield e.player.switchRepresentation(`audio`,s.id,i)))}),i)),this.subscription.add(n.cameraOrientation.stateChangeEnded$.subscribe(({to:e})=>{this.scene3D&&e&&this.scene3D.pointCameraTo(e.x,e.y)})),this.subscription.add(this.elementSizeManager.subscribe(e=>{this.scene3D&&e&&this.scene3D.setViewportSize(e.width,e.height)})),this.subscription.add(this.player.currentVideoRepresentation$.pipe(Sl()).subscribe(e=>{let n=[...this.videoTracksMap.entries()].find(([,{representation:t}])=>t.id===e);if(!n){t.currentVideoTrack$.next(void 0),t.currentVideoStream$.next(void 0);return}let[r,{stream:i}]=n,a=this.params.desiredState.videoStream.getTransition();a&&a.to&&a.to.id===i.id&&this.params.desiredState.videoStream.setState(a.to),t.currentVideoTrack$.next(r),t.currentVideoStream$.next(zl(i))},i)),this.subscription.add(this.player.currentAudioRepresentation$.pipe(Sl()).subscribe(e=>{let n=[...this.audioTracksMap.entries()].find(([,{representation:t}])=>t.id===e);if(!n){t.currentAudioStream$.next(void 0);return}let[r,{stream:i}]=n,a=this.params.desiredState.audioStream.getTransition();a&&a.to&&a.to.id===i.id&&this.params.desiredState.audioStream.setState(a.to),t.currentAudioStream$.next(Rl(i))},i)),this.subscription.add(this.player.currentVideoRepresentationInit$.subscribe(e=>{if(e?.is3dVideo&&this.params.tuning.spherical?.enabled)try{this.init3DScene(e),t.is3DVideo$.next(!0)}catch(e){t.warning$.next({id:`DashProvider`,message:`DashProvider could not initialize 3D-scene: ${e}`})}else this.destroy3DScene(),this.params.tuning.spherical?.enabled&&t.is3DVideo$.next(!1)},i)),this.subscription.add(this.player.currentVideoSegmentLength$.subscribe(t.currentVideoSegmentLength$,i)),this.subscription.add(this.player.currentAudioSegmentLength$.subscribe(t.currentAudioSegmentLength$,i)),this.textTracksManager.connect(this.video,n,t);let d=n.playbackState.stateChangeStarted$.pipe(El(({to:e})=>e===`ready`),Sl());this.subscription.add(Dl(d,n.autoVideoTrackSwitching.stateChangeStarted$,this.player.state$.stateChangeEnded$,Ol([`init`])).subscribe(()=>{let e=n.autoVideoTrackSwitching.getState(),t=n.playbackState.getState()===`ready`?this.params.tuning.dash.forwardBufferTargetPreload:e?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;this.player.setBufferTarget(t)})),this.subscription.add(Dl(d,this.player.state$.stateChangeEnded$,Ol([`init`])).subscribe(()=>this.player.setPreloadOnly(n.playbackState.getState()===`ready`)));let f=Dl(n.playbackState.stateChangeStarted$,n.videoTrack.stateChangeStarted$,n.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,Ol([`init`])).pipe(yl(0));this.subscription.add(f.subscribe(this.syncPlayback,i))}selectVideoAudioRepresentations(){if(this.player.isStreamEnded)return;let e=this.params.tuning.useNewAutoSelectVideoTrack?Is:Fs,t=this.params.tuning.useNewAutoSelectVideoTrack?Gs:Ws,n=this.params.tuning.useNewAutoSelectVideoTrack?Hs:Us,{desiredState:r,output:i}=this.params,a=r.autoVideoTrackSwitching.getState(),o=r.videoTrack.getState()?.id,s=[...this.videoTracksMap.keys()].find(({id:e})=>e===o),c=i.currentVideoTrack$.getValue(),l=r.videoStream.getState()??(s&&this.videoTracksMap.get(s)?.stream)??this.videoStreamsMap.size===1?this.videoStreamsMap.keys().next().value:void 0;if(!l)return;let u=[...this.videoStreamsMap.keys()].find(({id:e})=>e===l.id),d=u&&this.videoStreamsMap.get(u);if(!d)return;let f=this.player.bufferLength$.getValue(),p;p=this.player.isActiveLive$.getValue()?this.player.isLowLatency$.getValue()?this.params.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.params.tuning.dashCmafLive.normalizedLiveMinBufferSize:this.player.isLive$.getValue()?this.params.tuning.dashCmafLive.normalizedTargetMinBufferSize:a?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;let m=(this.video.duration*1e3||1/0)-this.video.currentTime*1e3,h=Math.min(f/Math.min(p,m||1/0),1),g=r.audioStream.getState()??(this.audioStreamsMap.size===1?this.audioStreamsMap.keys().next().value:void 0),_=[...this.audioStreamsMap.keys()].find(({id:e})=>e===g?.id)??this.audioStreamsMap.keys().next().value,v=0;if(_){if(s&&!a){let t=e(s,d,this.audioStreamsMap.get(_)??[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);v=Math.max(v,t?.bitrate??-1/0)}if(c){let t=e(c,d,this.audioStreamsMap.get(_)??[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);v=Math.max(v,t?.bitrate??-1/0)}}let y=s;(a||!y)&&(y=n(d,{container:this.elementSizeManager.getValue(),panelSize:this.params.panelSize,estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),tuning:this.stallsManager.abrTuningParams,limits:this.params.desiredState.autoVideoTrackLimits.getState(),reserve:v,forwardBufferHealth:h,current:c,visible:this.params.output.elementVisible$.getValue(),history:this.videoTrackSwitchHistory,playbackRate:this.video.playbackRate,droppedVideoMaxQualityLimit:this.droppedFramesManager.droppedVideoMaxQualityLimit,stallsVideoMaxQualityLimit:this.stallsManager.videoMaxQualityLimit,stallsPredictedThroughput:this.stallsManager.predictedThroughput,abrLogger:this.params.dependencies.abrLogger}));let b=_&&t(y,d,this.audioStreamsMap.get(_)??[],{estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),stallsPredictedThroughput:this.stallsManager.predictedThroughput,tuning:this.stallsManager.abrTuningParams,forwardBufferHealth:h,history:this.audioTrackSwitchHistory,playbackRate:this.video.playbackRate,abrLogger:this.params.dependencies.abrLogger}),x=this.videoTracksMap.get(y)?.representation,S=b&&this.audioTracksMap.get(b)?.representation;if(x&&S)return[x,S];if(x&&!S&&this.audioTracksMap.size===0)return[x,void 0]}prepare(e=0){this.player.initManifest(this.video,this.params.source.url,e)}playIfAllowed(){mc(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState(`paused`),P(this.params.desiredState.playbackState,`paused`,!0))},e=>this.params.output.error$.next({id:`ForcePlay`,message:`play() failed even with workarounds`,category:bl.DOM,thrown:e}))}destroy(){this.subscription.unsubscribe(),this.volumeSubscription.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),ro(this.video,this.params.tuning),this.tracer.end()}}var bu=v(Wn(),1),{NativeAbortSignal:xu,NativeAbortController:Su}=function(e){return{NativeAbortSignal:e.AbortSignal,NativeAbortController:e.AbortController}}(typeof self<`u`?self:global);function Cu(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}}return t.reason=e,t}function wu(e){if(e===void 0)if(typeof document>`u`)e=Error(`This operation was aborted`),e.name=`AbortError`;else try{e=new DOMException(`signal is aborted without reason`),Object.defineProperty(e,`name`,{value:`AbortError`})}catch{e=Error(`This operation was aborted`),e.name=`AbortError`}return e}class Tu{constructor(){Object.defineProperty(this,`listeners`,{value:{},writable:!0,configurable:!0})}addEventListener(e,t,n){e in this.listeners||(this.listeners[e]=[]),this.listeners[e].push({callback:t,options:n})}removeEventListener(e,t){if(!(e in this.listeners))return;let n=this.listeners[e];for(let e=0,r=n.length;e<r;e++)if(n[e].callback===t){n.splice(e,1);return}}dispatchEvent(e){if(!(e.type in this.listeners))return;let t=this.listeners[e.type].slice();for(let n=0,r=t.length;n<r;n++){let r=t[n];try{r.callback.call(this,e)}catch(e){Promise.resolve().then(()=>{throw e})}r.options&&r.options.once&&this.removeEventListener(e.type,r.callback)}return!e.defaultPrevented}}class Eu extends Tu{constructor(){super(),this.listeners||Tu.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)}throwIfAborted(){let{aborted:e,reason:t=`Aborted`}=this;if(e)throw t}static timeout(e){let t=new Du;return setTimeout(()=>t.abort(new DOMException(`This signal is timeout in ${e}ms`,`TimeoutError`)),e),t.signal}static any(e){let t=new Du;function n(){t.abort(this.reason),r()}function r(){for(let t of e)t.removeEventListener(`abort`,n)}for(let r of e)if(r.aborted){t.abort(r.reason);break}else r.addEventListener(`abort`,n);return t.signal}}class Du{constructor(){Object.defineProperty(this,`signal`,{value:new Eu,writable:!0,configurable:!0})}abort(e){let t=wu(e),n=Cu(t);this.signal.reason=t,this.signal.dispatchEvent(n)}toString(){return`[object AbortController]`}}typeof Symbol<`u`&&Symbol.toStringTag&&(Du.prototype[Symbol.toStringTag]=`AbortController`,Eu.prototype[Symbol.toStringTag]=`AbortSignal`);function Ou(e){return e.__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL?(console.log(`__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL=true is set, will force install polyfill`),!0):typeof e.Request==`function`&&!e.Request.prototype.hasOwnProperty(`signal`)||!e.AbortController}function ku(e){typeof e==`function`&&(e={fetch:e});let{fetch:t,Request:n=t.Request,AbortController:r,__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL:i=!1}=e;if(!Ou({fetch:t,Request:n,AbortController:r,__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL:i}))return{fetch:t,Request:a};let a=n;(a&&!a.prototype.hasOwnProperty(`signal`)||i)&&(a=function(e,t){let r;t&&t.signal&&(r=t.signal,delete t.signal);let i=new n(e,t);return r&&Object.defineProperty(i,`signal`,{writable:!1,enumerable:!1,configurable:!0,value:r}),i},a.prototype=n.prototype);let o=t;return{fetch:(e,t)=>{let n=a&&a.prototype.isPrototypeOf(e)?e.signal:t?t.signal:void 0;if(n){let r;try{r=new DOMException(`Aborted`,`AbortError`)}catch{r=Error(`Aborted`),r.name=`AbortError`}if(n.aborted)return Promise.reject(r);let i=new Promise((e,t)=>{n.addEventListener(`abort`,()=>t(r),{once:!0})});return t&&t.signal&&delete t.signal,Promise.race([i,o(e,t)])}return o(e,t)},Request:a}}var B=typeof globalThis==`object`&&globalThis||typeof window==`object`&&window,Au=`fetch`in B&&Ou({fetch:B.fetch,Request:B.Request,AbortController:B.AbortController}),ju=Au?ku({fetch:B.fetch,Request:B.Request,AbortController:B.AbortController}):void 0,Mu=Au?ju.fetch:B.fetch;Au?ju.Request:B.Request;var V=Au?Du:B.AbortController;Au||B.AbortSignal;var Nu=v($n(),1);import{ErrorCategory as Pu}from"@vkontakte/videoplayer-shared/es2015";var Fu=e=>{if(!e)return{id:`EmptyResponse`,category:Pu.PARSER,message:`Empty response`};if(e.length<=2&&e.match(/^\d+$/))return{id:`UVError#${e}`,category:Pu.NETWORK,message:`UV Error ${e}`};let t=Nu.default(e).substring(0,100).toLowerCase();if(t.startsWith(`<!doctype`)||t.startsWith(`<html>`)||t.startsWith(`<body>`)||t.startsWith(`<head>`))return{id:`UnexpectedHTML`,category:Pu.NETWORK,message:`Received unexpected HTML, possibly a ISP block`};if(t.startsWith(`<?xml`))return new DOMParser().parseFromString(e,`text/xml`).querySelector(`parsererror`)?{id:`InvalidXML`,category:Pu.PARSER,message:`XML parsing error`}:{id:`XMLParserLogicError`,category:Pu.PARSER,message:`Response is valid XML, but parser failed`}};import{abortable as Iu,assertNonNullable as Lu,ErrorCategory as Ru,filter as zu,filterChanged as Bu,flattenObject as Vu,fromEvent as Hu,getTraceSubscriptionMethod as Uu,getWindow as Wu,interval as Gu,isNonNullable as Ku,isNullable as qu,map as Ju,merge as Yu,now as Xu,Subject as Zu,Subscription as Qu,SubscriptionRemovable as $u,ValueSubject as H}from"@vkontakte/videoplayer-shared/es2015";var ed=e=>{let t=new URL(e);return t.searchParams.set(`quic`,`1`),t.toString()},td=e=>{let t=e.get(`X-Delivery-Type`),n=e.get(`X-Reused`);return{type:t===null?`http1`:t??void 0,reused:n===null?void 0:{1:!0,0:!1}[n]??void 0}};import{abortable as nd,assertNever as rd,ErrorCategory as id,flattenObject as ad,fromEvent as od,getWindow as sd,merge as cd,now as ld,Subject as ud,Subscription as dd,suppressAbort as fd,ValueSubject as pd}from"@vkontakte/videoplayer-shared/es2015";var md=e=>{let t=new URL(e);return t.searchParams.set(`enable-subtitles`,`yes`),t.toString()};class hd{constructor({throughputEstimator:e,requestQuic:t,tracer:n,compatibilityMode:r=!1,useEnableSubtitlesParam:a=!1}){i(this,`throughputEstimator`,void 0),i(this,`requestQuic`,void 0),i(this,`tracer`,void 0),i(this,`manifestRequested`,new ud),i(this,`manifestReceived`,new ud),i(this,`firstBytesRequested`,new ud),i(this,`firstBytesReceived`,new ud),i(this,`lastConnectionType$`,new pd(void 0)),i(this,`lastConnectionReused$`,new pd(void 0)),i(this,`lastRequestFirstBytes$`,new pd(void 0)),i(this,`lastConnectionMetrics$`,new pd(void 0)),i(this,`lastDownloadMetrics$`,new pd(void 0)),i(this,`recoverableError$`,new ud),i(this,`error$`,new ud),i(this,`abortAllController`,new V),i(this,`subscription`,new dd),i(this,`compatibilityMode`,void 0),i(this,`useEnableSubtitlesParam`,void 0),i(this,`performanceObserver`,null),i(this,`pendingConnectionMetrics`,new Map),i(this,`fetchManifest`,nd(this.abortAllController.signal,function(){var e=c(function*(e){let t=this.tracer.createComponentTracer(`FetchManifest`),n=e;this.requestQuic&&(n=ed(n)),!this.compatibilityMode&&this.useEnableSubtitlesParam&&(n=md(n)),this.trackRequestStart(n,performance.now());let r=ld();this.manifestRequested.next();let i=yield this.doFetch(n,{signal:this.abortAllController.signal}).catch(fd);if(i){let a=ld();t.log(`success`,ad({url:n,message:`Request successfully executed`})),t.end(),this.manifestReceived.next(),this.onHeadersReceived(i.headers);let o=i.headers.get(`content-length`),c=0;o&&(c=parseInt(o,10));let l=yield s(i.text());if((!o||isNaN(c)||c<=0)&&(c=new TextEncoder().encode(l).length),c>0){let t=a-r,n=c/(t/1e3)*8/1024,i={bytes:c,speed:n,url:e};this.lastDownloadMetrics$.next(i)}return l}else return t.error(`error`,ad({url:n,message:`No data in request manifest`})),t.end(),null});return function(t){return e.apply(this,arguments)}}().bind(this))),i(this,`fetch`,nd(this.abortAllController.signal,function(){var e=c(function*(e,{rangeMethod:t=this.compatibilityMode?0:1,range:n,onProgress:r,priority:i=`auto`,signal:a,measureThroughput:o=!0,isLowLatency:s=!1,bufferOptimisation:l=!1}={}){let u=e,d=new Headers,f=this.tracer.createComponentTracer(`Fetch`);if(n)switch(t){case 0:d.append(`Range`,`bytes=${n.from}-${n.to}`);break;case 1:{let e=new URL(u,sd().location.href);e.searchParams.append(`bytes`,`${n.from}-${n.to}`),u=e.toString();break}default:rd(t)}this.requestQuic&&(u=ed(u));let p=this.abortAllController.signal,m;if(a){let e=new V;if(m=cd(od(this.abortAllController.signal,`abort`),od(a,`abort`)).subscribe(()=>{try{e.abort()}catch(e){fd(e)}}),this.subscription.add(m),this.abortAllController.signal.aborted||a.aborted)try{e.abort()}catch(e){fd(e)}p=e.signal}let h=0,g=ld();f.log(`startRequest`,ad({url:u,priority:i,rangeMethod:t,range:n,isLowLatency:s,requestStartedAt:g})),this.trackRequestStart(u,performance.now()),this.firstBytesRequested.next();let _=yield this.doFetch(u,{priority:i,headers:d,signal:p}),v=ld();if(!_)return f.error(`error`,{message:`No response in request`}),f.end(),m?.unsubscribe(),null;if(this.throughputEstimator?.addRawRtt(v-g),!_.ok||!_.body){m?.unsubscribe();let e=`Fetch error ${_.status}: ${_.statusText}`;return f.error(`error`,{message:e}),f.end(),Promise.reject(Error(`Fetch error ${_.status}: ${_.statusText}`))}if(this.onHeadersReceived(_.headers),!r&&!o){m?.unsubscribe();let e=ld(),t={requestStartedAt:g,requestEndedAt:e,duration:e-g};return f.log(`endRequest`,ad(t)),f.end(),_.arrayBuffer()}let y=_.body;if(o){let e;[y,e]=_.body.tee(),this.throughputEstimator?.trackStream(e,s)}let b=y.getReader(),x,S=parseInt(_.headers.get(`content-length`)??``,10);Number.isFinite(S)&&(x=S),!x&&n&&(x=n.to-n.from+1);let C=x?new Uint8Array(x):new Uint8Array,w=!1,T=e=>{m?.unsubscribe(),w=!0,fd(e)},E=nd(p,function(){var e=c(function*({done:e,value:t}){if(h===0&&(this.lastRequestFirstBytes$.next(ld()-g),this.firstBytesReceived.next()),p.aborted){m?.unsubscribe();return}if(!e&&t){if(l&&x)C.set(t,h),h+=t.byteLength;else{let e=new Uint8Array(C.length+t.length);e.set(C),e.set(t,C.length),C=e,h+=t.byteLength}r?.(new DataView(C.buffer),h),yield b?.read().then(E,T)}});return function(t){return e.apply(this,arguments)}}().bind(this));yield b?.read().then(E,T),m?.unsubscribe();let D=ld(),O={failed:w,requestStartedAt:g,requestEndedAt:D,duration:D-g};if(w)return f.error(`endRequest`,ad(O)),f.end(),null;if(h>0){let t=D-g,n=h/(t/1e3)*8/1024,r={bytes:h,speed:n,url:e};this.lastDownloadMetrics$.next(r)}return f.log(`endRequest`,ad(O)),f.end(),C.buffer});return function(t){return e.apply(this,arguments)}}().bind(this))),i(this,`fetchByteRangeRepresentation`,nd(this.abortAllController.signal,function(){var e=c(function*(e,t,n){if(e.type!==`byteRange`)return null;let{from:r,to:i}=e.initRange,a=r,o=i,s=!1,c,l;e.indexRange&&(c=e.indexRange.from,l=e.indexRange.to,s=i+1===c,s&&(a=Math.min(c,r),o=Math.max(l,i))),a=Math.min(a,0);let u=yield this.fetch(e.url,{range:{from:a,to:o},priority:n,measureThroughput:!1});if(!u)return null;let d=new DataView(u,r-a,i-a+1);if(!t.validateData(d))throw Error(`Invalid media file`);let f=t.parseInit(d),p=e.indexRange??t.getIndexRange(f);if(!p)throw ReferenceError(`No way to load representation index`);let m;if(s)m=new DataView(u,p.from-a,p.to-p.from+1);else{let t=yield this.fetch(e.url,{range:p,priority:n,measureThroughput:!1});if(!t)return null;m=new DataView(t)}let h=t.parseSegments(m,f,p).map(e=>({networkStatus:`none`,bufferStatus:`none`,status:`none`,time:e.time,byte:e.byte}));return{initMetadata:f,initDataView:new DataView(u),segments:h}});return function(t,n,r){return e.apply(this,arguments)}}().bind(this))),i(this,`fetchTemplateRepresentation`,nd(this.abortAllController.signal,function(){var e=c(function*(e,t){if(e.type!==`template`)return null;let n=new URL(e.initUrl,e.baseUrl).toString(),r=yield this.fetch(n,{priority:t,measureThroughput:!1});if(!r)return null;let i=e.segments.map(e=>o(o({},e),{},{networkStatus:`none`,bufferStatus:`none`,status:`none`,size:void 0}));return{initMetadata:null,initDataView:new DataView(r),segments:i}});return function(t,n){return e.apply(this,arguments)}}().bind(this))),this.throughputEstimator=e,this.requestQuic=t,this.compatibilityMode=r,this.tracer=n.createComponentTracer(`Fetcher`),this.useEnableSubtitlesParam=a,sd().PerformanceObserver&&this.setupPerformanceObserver()}onHeadersReceived(e){let{type:t,reused:n}=td(e);this.lastConnectionType$.next(t),this.lastConnectionReused$.next(n)}setupPerformanceObserver(){this.performanceObserver=new(sd()).PerformanceObserver(e=>{e.getEntriesByType(`resource`).forEach(e=>{this.processResourceTiming(e)})}),this.performanceObserver.observe({entryTypes:[`resource`]})}processResourceTiming(e){let t=this.findMatchingRequest(e);if(!t||!this.pendingConnectionMetrics.get(t))return;this.pendingConnectionMetrics.delete(t);let n=this.extractConnectionMetrics(e);n&&this.lastConnectionMetrics$.next(n)}estimateNetworkType(){if(!(`connection`in sd().navigator))return`unknown`;let e=sd().navigator.connection;return e.effectiveType?{"slow-2g":`2g`,"2g":`2g`,"3g":`3g`,"4g":`lte`}[e.effectiveType]||e.effectiveType:e.downlink?e.downlink<1?`2g`:e.downlink<5?`3g`:e.downlink<50?`lte`:`wifi`:e.rtt?e.rtt>500?`2g`:e.rtt>250?`3g`:e.rtt>50?`lte`:`wifi`:`unknown`}extractConnectionMetrics(e){let t=0,n=0,r=0,i=0;return e.domainLookupStart>0&&e.domainLookupEnd>0&&(t=e.domainLookupEnd-e.domainLookupStart),e.connectStart>0&&e.connectEnd>0&&(i=e.connectEnd-e.connectStart,e.secureConnectionStart>0?(r=e.connectEnd-e.secureConnectionStart,n=e.secureConnectionStart-e.connectStart):n=i),{dnsResolveTime:Math.max(0,t),tcpHandshakeTime:Math.max(0,n),tlsHandshakeTime:Math.max(0,r),totalConnectTime:Math.max(0,i),networkType:this.estimateNetworkType(),url:e.name}}findMatchingRequest(e){try{for(let[t,n]of this.pendingConnectionMetrics.entries()){let r=new URL(e.name),i=r.origin+r.pathname,a=new URL(n.url);if(i===a.origin+a.pathname&&e.startTime>=n.startTime-10&&e.startTime<=n.startTime+1e3)return t}}catch{this.recoverableError$.next({id:`VideoDataFetchError`,message:`Video data fetch error with getting download metrics`,category:id.WTF})}return null}trackRequestStart(e,t){let n=`${e}_${t}_${Math.random().toString(36).substr(2,9)}`;this.pendingConnectionMetrics.set(n,{url:e,startTime:t})}fetchRepresentation(e,t,n=`auto`){var r=this;return a(function*(){let{type:i}=e;switch(i){case`byteRange`:return r.fetchByteRangeRepresentation(e,t,n)??null;case`template`:return r.fetchTemplateRepresentation(e,n)??null;default:rd(i)}})()}destroy(){this.abortAllController.abort(),this.subscription.unsubscribe(),this.performanceObserver&&=(this.performanceObserver.disconnect(),null),this.pendingConnectionMetrics.clear(),this.tracer.end()}doFetch(e,t){var n=this;return a(function*(){let r=yield Mu(e,t);if(r.ok)return r;let i=yield r.text(),a=parseInt(i);if(!isNaN(a))switch(a){case 1:n.recoverableError$.next({id:`VideoDataLinkExpiredError`,message:`Video data links have expired`,category:id.FATAL,httpCode:r.status,UVBackendErrorCode:i});break;case 8:n.recoverableError$.next({id:`VideoDataLinkBlockedForFloodError`,message:`Url blocked for flood`,category:id.FATAL,httpCode:r.status,UVBackendErrorCode:i});break;case 18:n.recoverableError$.next({id:`VideoDataLinkIllegalIpChangeError`,message:`Client IP has changed`,category:id.FATAL,httpCode:r.status,UVBackendErrorCode:i});break;case 21:n.recoverableError$.next({id:`VideoDataLinkIllegalHostChangeError`,message:`Request HOST has changed`,category:id.FATAL,httpCode:r.status,UVBackendErrorCode:i});break;default:n.error$.next({id:`GeneralVideoDataFetchError`,message:`Generic video data fetch error (${a})`,category:id.FATAL,httpCode:r.status,UVBackendErrorCode:i})}})()}}var gd=v(cr(),1),_d=v(ct(),1),vd=v(hr(),1),yd=v(kn(),1),bd=v(Qe(),1),xd=v(it(),1),Sd=e=>{let[t,...n]=e.split(`.`);if(!t)return!1;switch(t){case`av01`:{let[e,t,r]=n;return!!(r&&parseInt(r,10)>8)}case`vp09`:{let[e,t,r]=n;return!!(e&&parseInt(e,10)>=2&&r&&parseInt(r,10)>8)}case`avc1`:{let e=n[0];if(!e||e.length!==6)return!1;let[t,r]=e.toUpperCase(),i=t+r;return xd.default([`6E`,`7A`,`F4`],i)}}return!1};import{isNonNullable as Cd,isNullable as wd}from"@vkontakte/videoplayer-shared/es2015";var Td=e=>{if(e.includes(`/`)){let t=e.split(`/`);return parseInt(t[0])/parseInt(t[1])}else return parseFloat(e)},Ed=e=>{try{let t=Dd(),{groups:n}=e.match(t)??{};if(n){let e={};if(n.extensions){let t=n.extensions.toLowerCase().match(/(?:[0-9a-wy-z](?:-[a-z0-9]{2,8})+)/g);Array.from(t||[]).forEach(t=>{e[t[0]]=t.slice(2)})}let t=n.variants?.split(/-/).filter(e=>e!==``),r={extlang:n.extlang,langtag:n.langtag,language:n.language,privateuse:n.privateuse||n.privateuse2,region:n.region,script:n.script,extensions:e,variants:t};return Object.keys(r).forEach(e=>{let t=r[e];(t===void 0||t===``)&&delete r[e]}),r}return null}catch{return null}};function Dd(){let e=`x(?:-[a-z0-9]{1,8})+`,t=`^(?:(?<langtag>${`
118
+ (?<language>(?:[a-z]{2,3}(?:-(?<extlang>(?:[a-z]{3}(?:-[a-z]{3}){0,2})))?|[a-z]{4}|[a-z]{5,8}))
173
119
  (-(?<script>[a-z]{4}))?
174
120
  (-(?<region>(?:[a-z]{2}|[0-9]{3})))?
175
121
  (?<variants>(?:-(?:[a-z0-9]{5,8}|[0-9][a-z0-9]{3}))*)
176
122
  (?<extensions>(?:-[0-9a-wy-z](?:-[a-z0-9]{2,8})+)*)
177
123
  (?:-(?<privateuse>(?:${e})))?
178
- `})|(?<privateuse2>${e}))$`.replace(/[\s\t\n]/g,"");return new RegExp(d,"i")}var sE=s=>{if(!(s!=null&&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==null?void 0:i[1])==="-"?-1:1,a={days:e(i==null?void 0:i[5],r),hours:e(i==null?void 0:i[6],r),minutes:e(i==null?void 0:i[7],r),seconds:e(i==null?void 0:i[8],r)};return a.days*24*60*60*1e3+a.hours*60*60*1e3+a.minutes*60*1e3+a.seconds*1e3},dt=(s,e)=>{let t=s;t=(0,Kd.default)(t,"$$","$");let i={RepresentationID:e.representationId,Number:e.segmentNumber,Bandwidth:e.bandwidth,Time:e.segmentTime};for(let[r,a]of(0,nE.default)(i)){let n=new RegExp(`\\$${r}(?:%0(\\d+)d)?\\$`,"g");t=(0,Kd.default)(t,n,(o,u)=>aE(a)?o:aE(u)?a:(0,oE.default)(a,parseInt(u,10),"0"))}return t},iu=(s,e)=>{var L,R,F,B,H,J,z,$,M,E,w,U,N,ht,ft,ee,xe,Pe,ke,je,kt,At,yi,ur,Ti,th,ih,rh,ah,sh,nh,oh,uh,ch,lh,dh,ph,hh,fh,mh,bh,gh,vh,Sh,yh,Th,Ih,Eh,wh,xh,Ph,kh,Ah,Rh,Mh,$h,Lh,Ch,Dh,Bh,Vh;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(at=>{var ae,Ii;return(Ii=(ae=at.textContent)==null?void 0:ae.trim())!=null?Ii:""}),o=(L=(0,uE.default)(n,0))!=null?L:"",u=a.getAttribute("type")==="dynamic",c=a.getAttribute("availabilityStartTime"),d=a.getAttribute("publishTime"),l=a.getElementsByTagName("vk:Attrs")[0],p=l==null?void 0:l.getElementsByTagName("vk:XLatestSegmentPublishTime")[0].textContent,h=l==null?void 0:l.getElementsByTagName("vk:XStreamIsLive")[0].textContent,f=l==null?void 0:l.getElementsByTagName("vk:XStreamIsUnpublished")[0].textContent,m=l==null?void 0:l.getElementsByTagName("vk:XPlaybackDuration")[0].textContent,g;u&&(g={availabilityStartTime:c?new Date(c).getTime():0,publishTime:d?new Date(d).getTime():0,latestSegmentPublishTime:p?new Date(p).getTime():0,streamIsAlive:h==="yes",streamIsUnpublished:f==="yes"});let v,S=a.getAttribute("mediaPresentationDuration"),T=[...a.getElementsByTagName("Period")],I=T.reduce((at,ae)=>C(x({},at),{[ae.id]:ae.children}),{}),P=T.reduce((at,ae)=>C(x({},at),{[ae.id]:ae.getAttribute("duration")}),{});S?v=sE(S):(0,Xd.default)(P).filter(at=>at).length&&!u?v=(0,Xd.default)(P).reduce((at,ae)=>{var Ii;return at+((Ii=sE(ae))!=null?Ii:0)},0):m&&(v=parseInt(m,10));let k=0,V=(F=(R=a.getAttribute("profiles"))==null?void 0:R.split(","))!=null?F:[];for(let at of T.map(ae=>ae.id))for(let ae of I[at]){let Ii=(B=ae.getAttribute("id"))!=null?B:"id"+(k++).toString(10),ua=(H=ae.getAttribute("mimeType"))!=null?H:"",Wu=(J=ae.getAttribute("codecs"))!=null?J:"",Qu=(z=ae.getAttribute("contentType"))!=null?z:ua==null?void 0:ua.split("/")[0],sx=(M=($=ae.getAttribute("profiles"))==null?void 0:$.split(","))!=null?M:[],_h=(w=rE((E=ae.getAttribute("lang"))!=null?E:""))!=null?w:{},fn=(ht=(N=(U=ae.querySelector("Label"))==null?void 0:U.textContent)==null?void 0:N.trim())!=null?ht:void 0,nx=ae.querySelectorAll("Representation"),ox=ae.querySelector("SegmentTemplate"),ux=(ee=(ft=ae.querySelector("Role"))==null?void 0:ft.getAttribute("value"))!=null?ee:void 0,cr=Qu,he={id:Ii,language:_h.language,isDefault:ux==="main",label:fn,codecs:Wu,hdr:cr==="video"&&Yd(Wu),mime:ua,representations:[]};for(let ie of nx){let Wt=(xe=ie.getAttribute("lang"))!=null?xe:void 0,mn=(ke=(Pe=fn!=null?fn:ae.getAttribute("label"))!=null?Pe:ie.getAttribute("label"))!=null?ke:void 0,bn=(At=(kt=(je=ie.querySelector("BaseURL"))==null?void 0:je.textContent)==null?void 0:kt.trim())!=null?At:"",Ei=new URL(bn||o,e).toString(),Qt=(yi=ie.getAttribute("mimeType"))!=null?yi:ua,gn=(Ti=(ur=ie.getAttribute("codecs"))!=null?ur:Wu)!=null?Ti:"",vn;if(Qu==="text"){let zt=ie.getAttribute("id")||"",Sn=((th=_h.privateuse)==null?void 0:th.includes("x-auto"))||zt.includes("_auto"),wi=ie.querySelector("SegmentTemplate");if(wi){let ca={representationId:(ih=ie.getAttribute("id"))!=null?ih:void 0,bandwidth:(rh=ie.getAttribute("bandwidth"))!=null?rh:void 0},yn=parseInt((ah=ie.getAttribute("bandwidth"))!=null?ah:"",10)/1e3,Tn=(nh=parseInt((sh=wi.getAttribute("startNumber"))!=null?sh:"",10))!=null?nh:1,lr=parseInt((oh=wi.getAttribute("timescale"))!=null?oh:"",10),zu=(uh=wi.querySelectorAll("SegmentTimeline S"))!=null?uh:[],dr=wi.getAttribute("media");if(!dr)continue;let In=[],En=0,wn="",pr=0,la=Tn,Me=0;for(let st of zu){let xi=parseInt((ch=st.getAttribute("d"))!=null?ch:"",10),Xe=parseInt((lh=st.getAttribute("r"))!=null?lh:"",10)||0,Gt=parseInt((dh=st.getAttribute("t"))!=null?dh:"",10);Me=Number.isFinite(Gt)?Gt:Me;let Pi=xi/lr*1e3,Yt=Me/lr*1e3;for(let mt=0;mt<Xe+1;mt++){let Kt=dt(dr,C(x({},ca),{segmentNumber:la.toString(10),segmentTime:(Me+mt*xi).toString(10)})),hr=(Yt!=null?Yt:0)+mt*Pi,pa=hr+Pi;la++,In.push({time:{from:hr,to:pa},url:Kt})}Me+=(Xe+1)*xi,En+=(Xe+1)*Pi}pr=Me/lr*1e3,wn=dt(dr,C(x({},ca),{segmentNumber:la.toString(10),segmentTime:Me.toString(10)}));let da={time:{from:pr,to:1/0},url:wn},Rt={type:"template",baseUrl:Ei,segmentTemplateUrl:dr,initUrl:"",totalSegmentsDurationMs:En,segments:In,nextSegmentBeyondManifest:da,timescale:lr};vn={id:zt,kind:"text",segmentReference:Rt,profiles:[],duration:v,bitrate:yn,mime:"",codecs:"",width:0,height:0,isAuto:Sn}}else vn={id:zt,isAuto:Sn,kind:"text",url:Ei}}else{let zt=(hh=(ph=ie.getAttribute("contentType"))!=null?ph:Qt==null?void 0:Qt.split("/")[0])!=null?hh:Qu,Sn=(mh=(fh=ae.getAttribute("profiles"))==null?void 0:fh.split(","))!=null?mh:[],wi=parseInt((bh=ie.getAttribute("width"))!=null?bh:"",10),ca=parseInt((gh=ie.getAttribute("height"))!=null?gh:"",10),yn=parseInt((vh=ie.getAttribute("bandwidth"))!=null?vh:"",10)/1e3,Tn=(Sh=ie.getAttribute("frameRate"))!=null?Sh:"",lr=(yh=ie.getAttribute("quality"))!=null?yh:void 0,zu=Tn?iE(Tn):void 0,dr=(Th=ie.getAttribute("id"))!=null?Th:"id"+(k++).toString(10),In=zt==="video"?`${ca}p`:zt==="audio"?`${yn}Kbps`:gn,En=`${dr}@${In}`,wn=[...V,...sx,...Sn],pr,la=ie.querySelector("SegmentBase"),Me=(Ih=ie.querySelector("SegmentTemplate"))!=null?Ih:ox;if(la){let Rt=(wh=(Eh=ie.querySelector("SegmentBase Initialization"))==null?void 0:Eh.getAttribute("range"))!=null?wh:"",[st,xi]=Rt.split("-").map(Kt=>parseInt(Kt,10)),Xe={from:st,to:xi},Gt=(xh=ie.querySelector("SegmentBase"))==null?void 0:xh.getAttribute("indexRange"),[Pi,Yt]=Gt?Gt.split("-").map(Kt=>parseInt(Kt,10)):[],mt=Gt?{from:Pi,to:Yt}:void 0;pr={type:"byteRange",url:Ei,initRange:Xe,indexRange:mt}}else if(Me){let Rt={representationId:(Ph=ie.getAttribute("id"))!=null?Ph:void 0,bandwidth:(kh=ie.getAttribute("bandwidth"))!=null?kh:void 0},st=parseInt((Ah=Me.getAttribute("timescale"))!=null?Ah:"",10),xi=(Rh=Me.getAttribute("initialization"))!=null?Rh:"",Xe=Me.getAttribute("media"),Gt=($h=parseInt((Mh=Me.getAttribute("startNumber"))!=null?Mh:"",10))!=null?$h:1,Pi=dt(xi,Rt);if(!Xe)throw new ReferenceError("No media attribute in SegmentTemplate");let Yt=(Lh=Me.querySelectorAll("SegmentTimeline S"))!=null?Lh:[],mt=[],Kt=0,hr="",pa=0;if(Yt.length){let xn=Gt,nt=0;for(let fr of Yt){let bt=parseInt((Ch=fr.getAttribute("d"))!=null?Ch:"",10),ki=parseInt((Dh=fr.getAttribute("r"))!=null?Dh:"",10)||0,Pn=parseInt((Bh=fr.getAttribute("t"))!=null?Bh:"",10);nt=Number.isFinite(Pn)?Pn:nt;let Gu=bt/st*1e3,Yu=nt/st*1e3;for(let kn=0;kn<ki+1;kn++){let lx=dt(Xe,C(x({},Rt),{segmentNumber:xn.toString(10),segmentTime:(nt+kn*bt).toString(10)})),Oh=(Yu!=null?Yu:0)+kn*Gu,dx=Oh+Gu;xn++,mt.push({time:{from:Oh,to:dx},url:lx})}nt+=(ki+1)*bt,Kt+=(ki+1)*Gu}pa=nt/st*1e3,hr=dt(Xe,C(x({},Rt),{segmentNumber:xn.toString(10),segmentTime:nt.toString(10)}))}else if(oV(v)){let nt=parseInt((Vh=Me.getAttribute("duration"))!=null?Vh:"",10)/st*1e3,fr=Math.ceil(v/nt),bt=0;for(let ki=1;ki<fr;ki++){let Pn=dt(Xe,C(x({},Rt),{segmentNumber:ki.toString(10),segmentTime:bt.toString(10)}));mt.push({time:{from:bt,to:bt+nt},url:Pn}),bt+=nt}pa=bt,hr=dt(Xe,C(x({},Rt),{segmentNumber:fr.toString(10),segmentTime:bt.toString(10)}))}let cx={time:{from:pa,to:1/0},url:hr};pr={type:"template",baseUrl:Ei,segmentTemplateUrl:Xe,initUrl:Pi,totalSegmentsDurationMs:Kt,segments:mt,nextSegmentBeyondManifest:cx,timescale:st}}else throw new ReferenceError("Unknown MPD segment referencing type");if(!zt||!Qt)continue;let da={video:"video",audio:"audio",text:"text"}[zt];if(!da)continue;cr||(cr=da),vn={id:En,kind:da,segmentReference:pr,profiles:wn,duration:v,bitrate:yn,mime:Qt,codecs:gn,width:wi,height:ca,fps:zu,quality:lr}}he.language||(he.language=Wt),he.label||(he.label=mn),he.mime||(he.mime=Qt),he.codecs||(he.codecs=gn),he.hdr||(he.hdr=cr==="video"&&Yd(gn)),he.representations.push(vn)}if(cr){let ie=r[cr].find(Wt=>Wt.id===he.id);if(ie&&he.representations.every(Wt=>Wt.segmentReference.type==="template"))for(let Wt of ie.representations){let mn=he.representations.find(Qt=>Qt.id===Wt.id);if(!mn)continue;let bn=mn.segmentReference,Ei=Wt.segmentReference;Ei.segments.push(...bn.segments),Ei.nextSegmentBeyondManifest=bn.nextSegmentBeyondManifest}else r[cr].push(he)}}return{duration:v,streams:r,baseUrls:n,live:g}};var su=q(et(),1),Jd=q(Oe(),1);import{assertNever as nu}from"@vkontakte/videoplayer-shared/es2015";var ru=(a=>(a.VP9="vp9",a.AV1="av1",a.NONE="none",a.SMOOTH="smooth",a.POWER_EFFICIENT="power_efficient",a))(ru||{});var au=s=>{let{webmDecodingInfo:e}=O.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:nu(s)}},cE=({webmCodec:s,androidPreferredFormat:e,iosPreferredFormat:t,preferMultiStream:i})=>{let r=[...i?["DASH_STREAMS"]:[],...au(s),"DASH_SEP","DASH_ONDEMAND",...i?[]:["DASH_STREAMS"]],a=[...i?["DASH_STREAMS"]:[],"DASH_SEP","DASH_ONDEMAND",...i?[]:["DASH_STREAMS"]];if(O.device.isAndroid)switch(e){case"mpeg":return["MPEG",...r,"HLS","HLS_ONDEMAND"];case"hls":return["HLS","HLS_ONDEMAND",...r,"MPEG"];case"dash":return[...r,"HLS","HLS_ONDEMAND","MPEG"];case"dash_any_mpeg":return[...a,"MPEG",...au(s),"HLS","HLS_ONDEMAND"];case"dash_any_webm":return[...au(s),"MPEG",...a,"HLS","HLS_ONDEMAND"];case"dash_sep":return["DASH_SEP","MPEG",...au(s),...a,"HLS","HLS_ONDEMAND"];default:nu(e)}if(O.video.nativeHlsSupported)switch(t){case"hls":return[...r,"HLS","HLS_FMP4","HLS_ONDEMAND","MPEG"];case"hls_fmp4":return[...r,"HLS_FMP4","HLS","HLS_ONDEMAND","MPEG"];default:nu(t)}return[...r,"HLS","HLS_ONDEMAND","MPEG"]},lE=({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=O.device.isMac&&O.browser.isSafari;if(O.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:nu(s)}else O.video.nativeHlsSupported&&!u&&!O.browser.isChromiumBased?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"]},Zd=s=>s?["HLS_LIVE","HLS_LIVE_CMAF","DASH_LIVE_CMAF"]:["DASH_WEBM","DASH_WEBM_AV1","DASH_SEP","DASH_ONDEMAND","HLS","HLS_ONDEMAND","MPEG"],ou=s=>{if(s.size===0)return;if(s.size===1){let t=s.values().next();return(0,su.default)(t.value.split("."),0)}for(let t of s){let i=(0,su.default)(t.split("."),0);if(i==="opus"||i==="vp09"||i==="av01")return i}let e=s.values().next();return(0,su.default)(e.value.split("."),0)},uu=s=>{let e=s.map(i=>ui(i)),{codecs:t}=O.video;return lV().filter(i=>{if((0,Jd.default)(e,i))switch(i){case"av1":return t.av1;case"vp9":return t.vp9;case"avc1":return t.h264;case"hev1":return t.h265;default:return!1}else return!1})},cu=s=>{let e=s.map(i=>ui(i)),{codecs:t}=O.video;return dV().filter(i=>{if((0,Jd.default)(e,i))switch(i){case"opus":return t.opus;case"mp4a":return t.aac;default:return!1}else return!1})},ui=s=>s.split(".")[0].replace("0",""),lV=()=>["av1","vp9","hev1","avc1"],dV=()=>["opus","mp4a"];var wE=q(et(),1);var pV=(s,e={})=>{let i=e.timeout||1,r=performance.now();return be.setTimeout(()=>{s({get didTimeout(){return e.timeout?!1:performance.now()-r-1>i},timeRemaining(){return Math.max(0,1+(performance.now()-r))}})},1)},hV=s=>be.clearTimeout(s),dE=s=>typeof s=="function"&&(s==null?void 0:s.toString().endsWith("{ [native code] }")),pE=!dE(be.requestIdleCallback)||!dE(be.cancelIdleCallback),Yi=pE?pV:be.requestIdleCallback,Ki=pE?hV:be.cancelIdleCallback;import{abortable as sp,assertNonNullable as Pt,ErrorCategory as DV,fromEvent as BV,getExponentialDelay as VV,getWindow as EE,isHigher as _V,isNonNullable as fe,isNullable as Ee,once as OV,Subject as NV,Subscription as FV,ValueSubject as _s}from"@vkontakte/videoplayer-shared/es2015";var hE=q(et(),1);var lu=s=>s.valid,Y=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===1&&(this.cursor+=8);let r=e.byteOffset+this.cursor,a;i===0?(this.size=void 0,this.valid=!1,a=void 0):i===1?(this.size=void 0,this.valid=!1,a=void 0):i>e.byteLength?(this.size=i,this.valid=!1,a=Math.min(i-this.cursor,e.byteLength-this.cursor)):(this.size=i,this.valid=!0,a=i-this.cursor),this.content=new DataView(e.buffer,r,a)}get id(){return this.type}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 zr=class extends Y{};import{assertNever as fV}from"@vkontakte/videoplayer-shared/es2015";var ds=class extends Y{constructor(e,t){if(super(e,t),!this.valid)return;let i=this.readString(16),r=new DataView(this.content.buffer,this.content.byteOffset+16,this.content.byteLength-16);this.userData=this.parseData(i,r)}parseData(e,t){switch(e){case"ondemandlivejson":{let i=new TextDecoder("ascii").decode(t),r=JSON.parse(i);return{received:r["t-in"],prepared:r["t-out"]}}default:fV(e)}}};var ps=class extends Y{constructor(e,t){if(super(e,t),!this.valid)return;this.compatibleBrands=[],this.majorBrand=this.readString(4),this.minorVersion=this.readUint32();let i=new DataView(this.content.buffer,this.content.byteOffset+8,this.content.byteLength-8);for(let r=0;r<i.byteLength;r+=4){let a=this.readString(4);this.compatibleBrands.push(a)}}};var hs=class extends Y{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var oe=class extends Y{constructor(e,t){if(super(e,t),!this.valid)return;let i=this.readUint32();this.version=i>>>24,this.flags=i&16777215,this.content=new DataView(this.content.buffer,this.content.byteOffset+4,this.content.byteLength-4)}};var fs=class extends oe{constructor(e,t){super(e,t),this.valid&&(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 ms=class extends Y{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var bs=class extends Y{constructor(e,t){super(e,t),this.data=this.content}};var Xi=class extends oe{get earliestPresentationTime(){return this.earliestPresentationTime32}get firstOffset(){return this.firstOffset32}constructor(e,t){if(super(e,t),!!this.valid){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,c=r<<3>>>3;this.segments.push({referenceType:a,referencedSize:n,subsegmentDuration:o,SAPType:u,SAPDeltaTime:c})}}}};var gs=class extends Y{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var vs=class extends Y{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Ss=class extends oe{constructor(e,t){if(super(e,t),!this.valid)return;switch(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 ys=class extends oe{constructor(e,t){super(e,t),this.valid&&(this.poseYawDegrees=this.readUint32(),this.posePitchDegrees=this.readUint32(),this.poseRollDegrees=this.readUint32())}};var Ts=class extends oe{constructor(e,t){super(e,t),this.valid&&(this.projectionBoundsTop=this.readUint32(),this.projectionBoundsBottom=this.readUint32(),this.projectionBoundsLeft=this.readUint32(),this.projectionBoundsRight=this.readUint32())}};var Is=class extends Y{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Es=class extends oe{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 ws=class extends Y{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var xs=class extends Y{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Ps=class extends oe{constructor(e,t){super(e,t),this.valid&&(this.sequenceNumber=this.readUint32())}};var ks=class extends Y{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var As=class extends oe{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 Rs=class extends oe{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 Ms=class extends oe{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 $s=class extends Y{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Ls=class extends oe{constructor(e,t){super(e,t),this.valid&&(this.entryCount=this.readUint32(),this.children=this.scanForBoxes(new DataView(this.content.buffer,this.content.byteOffset+4,this.content.byteLength-4)))}};var Cs=class extends Y{constructor(e,t){super(e,t),this.valid&&(this.children=this.scanForBoxes(new DataView(this.content.buffer,this.content.byteOffset+78,this.content.byteLength-78)))}};var bV={ftyp:ps,moov:hs,mvhd:fs,moof:ms,mdat:bs,sidx:Xi,trak:gs,mdia:Is,mfhd:Ps,tkhd:Es,traf:ks,tfhd:As,tfdt:Rs,trun:Ms,minf:ws,sv3d:vs,st3d:Ss,prhd:ys,proj:xs,equi:Ts,uuid:ds,stbl:$s,stsd:Ls,avc1:Cs,unknown:zr},Vt=class s{constructor(e={}){this.options=x({offset:0},e)}parse(e){let t=[],i=this.options.offset;for(;i<e.byteLength;){let a=new TextDecoder("ascii").decode(new DataView(e.buffer,e.byteOffset+i+4,4)),n;try{n=this.createBox(a,new DataView(e.buffer,e.byteOffset+i,e.byteLength-i))}catch(o){if(!(o instanceof RangeError))throw o}if(!n||!lu(n))break;t.push(n),i+=n.size}return t}createBox(e,t){let i=bV[e];return i?new i(t,new s):new zr(t,new s)}};var ci=class{constructor(e){this.index={},this.indexBoxLevel(e)}indexBoxLevel(e){e.forEach(t=>{var i,r,a;lu(t)&&((a=(i=this.index)[r=t.type])!=null||(i[r]=[]),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 vV=new TextDecoder("ascii"),SV=s=>vV.decode(new DataView(s.buffer,s.byteOffset+4,4))==="ftyp",yV=s=>{let e=new Xi(s,new Vt),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})},TV=(s,e)=>{let i=new Vt().parse(s),r=new ci(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],c=o.source.byteOffset,l=u.source.byteOffset-o.source.byteOffset+u.size;return new DataView(s.buffer,c,l)},IV=s=>{let t=new Vt().parse(s),i=new ci(t),r={},a=i.findAll("uuid"),n=(0,hE.default)(a,-1);return n?{serverDataReceivedTimestamp:n.userData.received,serverDataPreparedTime:n.userData.received}:r},EV=s=>{var r;let t=new Vt().parse(s);return(r=new ci(t).find("sidx"))==null?void 0:r.timescale},wV=(s,e)=>{let i=new Vt().parse(s),a=new ci(i).findAll("traf"),n=a[a.length-1].children.find(l=>l.type==="tfhd"),o=a[a.length-1].children.find(l=>l.type==="tfdt"),u=a[a.length-1].children.find(l=>l.type==="trun"),c=0;return u.sampleDuration.length?c=u.sampleDuration.reduce((l,p)=>l+p,0):c=n.defaultSampleDuration*u.sampleCount,(Number(o.baseMediaDecodeTime)+c)/e*1e3},xV=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 Vt().parse(s),r=new ci(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},fE={validateData:SV,parseInit:xV,getIndexRange:()=>{},parseSegments:yV,parseFeedableSegmentChunk:TV,getChunkEndTime:wV,getServerLatencyTimestamps:IV,getTimescaleFromIndex:EV};var Bs=q(Oe(),1);import{assertNonNullable as ep,isNonNullable as vE,isNullable as kV}from"@vkontakte/videoplayer-shared/es2015";import{assertNever as PV}from"@vkontakte/videoplayer-shared/es2015";var mE={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"}},bE=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=Ds(s,t),r=i in mE,a=r?mE[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),c=n&255>>o,d=Ds(u),l=c*gt(2,(o-1)*8)+d,p=t+o,h;return p+l>s.byteLength?h=new DataView(s.buffer,s.byteOffset+p):h=new DataView(s.buffer,s.byteOffset+p,l),{tag:r?i:"0x"+i.toString(16).toUpperCase(),type:a,tagHeaderSize:p,tagSize:p+l,value:h,valueSize:l}},Ds=(s,e=s.byteLength)=>{switch(e){case 1:return s.getUint8(0);case 2:return s.getUint16(0);case 3:return s.getUint8(0)*gt(2,16)+s.getUint16(1);case 4:return s.getUint32(0);case 5:return s.getUint8(0)*gt(2,32)+s.getUint32(1);case 6:return s.getUint16(0)*gt(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},pt=(s,e)=>{switch(e){case"int":return s.getInt8(0);case"uint":return Ds(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:PV(e)}},Ji=(s,e)=>{let t=0;for(;t<s.byteLength;){let i=new DataView(s.buffer,s.byteOffset+t),r=bE(i);if(!e(r))return;r.type==="master"&&Ji(r.value,e),t=r.value.byteOffset-s.byteOffset+r.valueSize}},gE=s=>{if(s.getUint32(0)!==440786851)return!1;let e,t,i,r=bE(s);return Ji(r.value,({tag:a,type:n,value:o})=>(a===17143?e=pt(o,n):a===17026?t=pt(o,n):a===17029&&(i=pt(o,n)),!0)),(e===void 0||e<=1)&&t!==void 0&&t==="webm"&&(i===void 0||i<=2)};var SE=[357149030,290298740,374648427,174,224,30320,30321,30322,272869232,524531317,475249515,423732329,307544935],AV=[231,22612,22743,167,171,163,160,175],RV=s=>{let e,t,i,r,a=!1,n=!1,o=!1,u,c,d=!1,l=0;return Ji(s,({tag:p,type:h,value:f,valueSize:m})=>{if(p===21419){let g=pt(f,h);c=Ds(g)}else p!==21420&&(c=void 0);return p===408125543?(e=f.byteOffset,t=f.byteOffset+m):p===357149030?a=!0:p===290298740?n=!0:p===2807729?i=pt(f,h):p===17545?r=pt(f,h):p===21420&&c===475249515?u=pt(f,h):p===374648427?Ji(f,({tag:g,type:v,value:S})=>g===30321?(d=pt(S,v)===1,!1):!0):a&&n&&(0,Bs.default)(SE,p)&&(o=!0),!o}),ep(e,"Failed to parse webm Segment start"),ep(t,"Failed to parse webm Segment end"),ep(r,"Failed to parse webm Segment duration"),i=i!=null?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:d,stereoMode:l,projectionType:1,projectionData:{pose:{yaw:0,pitch:0,roll:0},bounds:{top:0,bottom:0,left:0,right:0}}}},MV=s=>{if(kV(s.cuesSeekPosition))return;let e=s.segmentStart+s.cuesSeekPosition,t=1024*1024;return{from:e,to:e+t}},$V=(s,e)=>{let t=!1,i=!1,r=o=>vE(o.time)&&vE(o.position),a=[],n;return Ji(s,({tag:o,type:u,value:c})=>{switch(o){case 475249515:t=!0;break;case 187:n&&r(n)&&a.push(n),n={};break;case 179:n&&(n.time=pt(c,u));break;case 183:break;case 241:n&&(n.position=pt(c,u));break;default:t&&(0,Bs.default)(SE,o)&&(i=!0)}return!(t&&i)}),n&&r(n)&&a.push(n),a.map((o,u)=>{let{time:c,position:d}=o,l=a[u+1];return{status:"none",time:{from:c,to:l?l.time:e.segmentDuration},byte:{from:e.segmentStart+d,to:l?e.segmentStart+l.position-1:e.segmentEnd-1}}})},LV=s=>{let e=0,t=!1;try{Ji(s,i=>i.tag===524531317?i.tagSize<=s.byteLength?(e=i.tagSize,!1):(e+=i.tagHeaderSize,!0):(0,Bs.default)(AV,i.tag)?(e+i.tagSize<=s.byteLength&&(e+=i.tagSize,t||(t=(0,Bs.default)([163,160,175],i.tag))),!0):!1)}catch(i){}return e>0&&e<=s.byteLength&&t?new DataView(s.buffer,s.byteOffset,e):null},yE={validateData:gE,parseInit:RV,getIndexRange:MV,parseSegments:$V,parseFeedableSegmentChunk:LV};var Zi=s=>{let e=/^(.+)\/([^;]+)(?:;.*)?$/.exec(s);if(e){let[,t,i]=e;if(t==="audio"||t==="video")switch(i){case"webm":return yE;case"mp4":return fE}}throw new ReferenceError(`Unsupported mime type ${s}`)};var tp=q(et(),1);import{videoSizeToQuality as CV}from"@vkontakte/videoplayer-shared/es2015";var li=({id:s,width:e,height:t,bitrate:i,fps:r,quality:a,streamId:n,tvDisabled:o})=>{var c;let u=(c=a?ai(a):void 0)!=null?c:CV({width:e,height:t});return u&&{id:s,quality:u,bitrate:i,size:{width:e,height:t},fps:r,streamId:n,tvDisabled:o}},Vs=({id:s,bitrate:e})=>({id:s,bitrate:e}),TE=({language:s,label:e},{id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:s,label:e}),IE=({language:s,label:e,id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:s,label:e}),ip=({id:s,language:e,label:t,codecs:i,isDefault:r})=>({id:s,language:e,label:t,codec:(0,tp.default)(i.split("."),0),isDefault:r}),rp=({id:s,language:e,label:t,hdr:i,codecs:r})=>({id:s,language:e,hdr:i,label:t,codec:(0,tp.default)(r.split("."),0)}),ap=s=>"url"in s,Ye=s=>s.type==="template";var Gr=class{constructor(e,t,i,{fetcher:r,tuning:a,getCurrentPosition:n,getCurrentStallDuration:o,manifest:u}){this.error$=new NV;this.playingRepresentation$=new _s(void 0);this.playingRepresentationInit$=new _s(void 0);this.currentSegmentLength$=new _s(0);this.onLastSegment$=new _s(!1);this.fullyBuffered$=new _s(!1);this.initData=new Map;this.initDataPromises=new Map;this.idleCallbacks=new Map;this.parsedInitData=new Map;this.segments=new Map;this.bufferPlaybackQueue=[];this.downloadingBufferItems=[];this.preloadOnly=!1;this.failedDownloads=0;this.lastDataObtainedTimestampMs=0;this.loadByteRangeSegmentsTimeoutId=0;this.currentVirtualBufferSize=0;this.baseUrls=[];this.baseUrlsIndex=0;this.maintainPlaybackBufferMutex=!1;this.maintainNativeBufferMutex=!1;this.bufferClearingMutex=!1;this.abortNativeBufferMutex=!1;this.switchMutex=!1;this.destroyAbortController=new ne;this.downloadAbortController=new ne;this.subscription=new FV;this.startWith=sp(this.destroyAbortController.signal,function(e){return Z(this,null,function*(){let t=this.representations.get(e);Pt(t,`Cannot find representation ${e}`),this.playingRepresentationId=e,this.downloadingRepresentationId=e,this.containerParser=Zi(t.mime),this.nativeBufferManager.init(t.mime,t.codecs,this.tuning.dash.useAbortMSEFix),yield this.loadInits(t);let i=this.initData.get(t.id),r=this.segments.get(t.id),a=this.parsedInitData.get(t.id);Pt(i,"No init buffer for starting representation"),Pt(r,"No segments for starting representation"),yield new vt(this.nativeBufferManager.addInitSegment(i)),this.playingRepresentation$.next(this.playingRepresentationId),this.playingRepresentationInit$.next(a)})}.bind(this));this.switchTo=sp(this.destroyAbortController.signal,function(e,t=!0){return Z(this,null,function*(){var l;if(Ee(this.downloadingRepresentationId)||e===this.downloadingRepresentationId||e===this.switchingRepresentationId)return;this.switchMutex=!0,this.switchingRepresentationId=e;let i=this.representations.get(this.downloadingRepresentationId),r=this.representations.get(e);Pt(r,`No such representation ${e}`),Pt(i,`No such representation ${this.downloadingRepresentationId}`),yield this.loadInitIfNeeded(r,"high");let a=this.initData.get(r.id),n=this.segments.get(r.id);Pt(a,"No init buffer for switching representation"),Pt(n,"No segments for switching representation");let o=(l=this.getCurrentPosition())!=null?l:0,u=p=>p.segment.bufferStatus!=="fed",c=p=>{let h=this.representations.get(p.representationId);return Pt(h,"No itemRepresentation for previous track before switch"),p.segment.networkStatus!=="downloaded"||this.forceSwitchCondition(h,r)},d=p=>t?u(p)&&c(p):u(p);this.bufferPlaybackQueue.filter(d).forEach(p=>p.segment.bufferStatus="none"),this.bufferPlaybackQueue=this.bufferPlaybackQueue.filter(p=>!d(p)),this.downloadingRepresentationId=e,this.switchingRepresentationId=null,this.bufferPlaybackQueue.length?(this.abortDownload(),yield this.maintain()):yield this.seek(o),this.switchMutex=!1})}.bind(this));this.waitExponentialDownloadDelay=sp(this.downloadAbortController.signal,function(){return Z(this,null,function*(){let e=VV(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(t=>{let i=EE();this.loadByteRangeSegmentsTimeoutId=i.setTimeout(t,e),this.subscription.add(BV(i,"online").pipe(OV()).subscribe(()=>{t(),i.clearTimeout(this.loadByteRangeSegmentsTimeoutId)}))})})}.bind(this));var c;this.kind=e,this.nativeBufferManager=t,this.fetcher=r,this.tuning=a,this.getCurrentPosition=n,this.getCurrentStallDuration=o,this.forwardBufferTarget=a.dash.forwardBufferTargetAuto,this.baseUrls=(c=u==null?void 0:u.baseUrls)!=null?c:[],this.representations=new Map(i.map(d=>[d.id,d]))}seek(e){return y(this,null,function*(){yield this.abort(),yield this.clearBuffer(),yield this.maintain(e)})}maintain(){return y(this,arguments,function*(e=this.getCurrentPosition()){Ee(e)||(yield this.maintainPlaybackBuffer(e),yield this.maintainNativeBuffer(),this.actualizeLastSegmentInfo(e))})}getForwardPlaybackBufferDuration(e=this.getCurrentPosition()){let t=this.bufferPlaybackQueue.filter(a=>a.segment.networkStatus==="downloaded"),i=t[t.length-1],r=fe(e)&&fe(i)?i.segment.time.to-e:0;return Math.max(r,0)}getPlaybackBufferState(){if(!this.bufferPlaybackQueue.length)return null;let t=this.bufferPlaybackQueue[0].segment.time.from,i=this.bufferPlaybackQueue[this.bufferPlaybackQueue.length-1].segment.time.to;return{from:t,to:i}}abort(){return y(this,null,function*(){this.abortDownload(),yield this.abortNativeBuffer()})}findSegmentStartTime(e){var a,n;let t=(n=(a=this.downloadingRepresentationId)!=null?a:this.playingRepresentationId)!=null?n:"",i=this.segments.get(t),r=i==null?void 0:i.find(o=>o.time.from<=e&&o.time.to>=e);return r==null?void 0:r.time.from}getRepresentationInitialTime(){var t;if(Ee(this.playingRepresentationId))return 0;let e=this.segments.get(this.playingRepresentationId);return((t=e==null?void 0:e[0].time.from)!=null?t:0)/1e3}calculateDurationFromSegments(e){var i;let t=this.segments.get(e);return(t?(i=(0,wE.default)(t,-1))==null?void 0:i.time.to:0)||0}get lastDataObtainedTimestamp(){return this.lastDataObtainedTimestampMs}setTarget(e){this.forwardBufferTarget=e}setPreloadOnly(e){this.preloadOnly=e}destroy(){let e=EE();if(this.initData.clear(),this.initDataPromises.clear(),this.segments.clear(),this.parsedInitData.clear(),this.representations.clear(),this.downloadAbortController.abort(),this.destroyAbortController.abort(),this.subscription.unsubscribe(),e.__polyfill_cancelIdleCallback_e6f3enkn2id4)for(let t of this.idleCallbacks.values())e.__polyfill_cancelIdleCallback_e6f3enkn2id4(t);this.idleCallbacks.clear(),e.clearTimeout(this.loadByteRangeSegmentsTimeoutId)}forceSwitchCondition(e,t){let i=!0;if(this.kind==="video"){let r=li(e),a=li(t);i=fe(r)&&fe(a)&&_V(a.quality,r.quality)}else if(this.kind==="audio"){let r=Vs(e),a=Vs(t);i=fe(r==null?void 0:r.bitrate)&&fe(a==null?void 0:a.bitrate)&&a.bitrate>r.bitrate}return i}clearBuffer(){return y(this,null,function*(){this.bufferClearingMutex=!0,yield this.nativeBufferManager.clear(this.destroyAbortController.signal),this.bufferPlaybackQueue.forEach(e=>e.segment.bufferStatus="none"),this.bufferPlaybackQueue=[],this.bufferClearingMutex=!1})}abortDownload(){this.downloadAbortController.abort(),this.downloadAbortController=new ne,this.abortDownloadingItems(),this.maintainPlaybackBufferMutex=!1}abortDownloadingItems(){for(let e of this.downloadingBufferItems)e.segment.networkStatus==="downloading"&&(e.segment.networkStatus="none",e.segment.size=0,e.segment.loadedBytes=0,e.segment.feedingBytes=0,e.segment.fedBytes=0,e.segment.data=null);this.downloadingBufferItems=[]}abortNativeBuffer(){return y(this,null,function*(){this.abortNativeBufferMutex=!0;let e=this.playingRepresentationId&&this.initData.get(this.playingRepresentationId),t=e instanceof ArrayBuffer?e:void 0,i=yield this.nativeBufferManager.abortBuffer(t);return this.abortNativeBufferMutex=!1,this.maintainNativeBufferMutex=!1,i})}loadInits(e){return y(this,null,function*(){yield this.loadInit(e,"high",!0);for(let[t,i]of this.representations)this.idleCallbacks.set(i.id,Yi(r=>y(this,null,function*(){return yield this.loadInitIfNeeded(i,"low",!1)})))})}loadInitIfNeeded(e,t="auto",i=!1){return y(this,null,function*(){let r=this.initDataPromises.get(e.id),a;this.initData.has(e.id)&&this.segments.has(e.id)?a=Promise.resolve():fe(r)?a=r:a=this.loadInit(e,t,i),yield a})}loadInit(e,t="auto",i=!1){return y(this,null,function*(){var r;try{let a=this.tuning.dash.useFetchPriorityHints?t:"auto",n=this.fetcher.fetchRepresentation(e.segmentReference,this.containerParser,a);this.initDataPromises.set(e.id,n);let{initMetadata:o,initDataView:u,segments:c}=(r=yield n)!=null?r:{};if(this.initDataPromises.delete(e.id),Ee(u)||Ee(c))return;o&&this.parsedInitData.set(e.id,o);let d=u.buffer.slice(u.byteOffset,u.byteOffset+u.byteLength);this.initData.set(e.id,d),this.segments.set(e.id,c),this.failedDownloads=0}catch(a){i&&this.error$.next({id:"LoadInits",category:DV.WTF,message:"loadInit threw",thrown:a})}})}maintainNativeBuffer(){return y(this,null,function*(){var h,f,m;let e=this.getCurrentPosition(),t=this.segments.get((h=this.downloadingRepresentationId)!=null?h:""),i=t==null?void 0:t[(t==null?void 0:t.length)-1];if(Ee(e)||Ee(i)||this.maintainNativeBufferMutex||this.abortNativeBufferMutex||this.bufferClearingMutex||this.switchMutex||this.preloadOnly)return;this.maintainNativeBufferMutex=!0;let r=this.bufferPlaybackQueue.find(g=>this.withinInterval(e,g.segment.time)),a=this.bufferPlaybackQueue.find(g=>g.segment.bufferStatus!=="fed"),n=this.initData.get((f=a==null?void 0:a.representationId)!=null?f:""),o=this.bufferPlaybackQueue[0],u=this.downloadAbortController.signal,d=((m=this.getCurrentStallDuration())!=null?m:0)>0;this.tuning.dash.useBufferHoldingOnlyOnStall&&d&&(d=e>0);let l=Math.min(this.tuning.dash.minSafeBufferToPlay,i.time.to-e),p=d?this.getForwardPlaybackBufferDuration()>=l:!0;fe(n)&&fe(a)&&fe(r)&&this.playingRepresentationId!==a.representationId&&this.withinAppendInterval(e,a.segment.time)&&(a===r||r.segment.bufferStatus==="fed")&&(yield this.abortNativeBuffer(),yield this.nativeBufferManager.addInitSegment(n,this.downloadAbortController.signal),this.playingRepresentationId=a.representationId,this.playingRepresentation$.next(this.playingRepresentationId)),fe(a)&&this.withinAppendInterval(e,a.segment.time)&&p&&(a.segment.loadedBytes===a.segment.size&&a.segment.bufferStatus==="none"?yield this.appendSegmentFully(a,u):yield this.appendSegmentPartially(a,u)),fe(o)&&this.withinRemoveInterval(e,o.segment.time)&&(yield this.removeSegment(o,u)),this.pruneVirtualBuffer(e),this.maintainNativeBufferMutex=!1})}maintainPlaybackBuffer(e){return y(this,null,function*(){Pt(this.downloadingRepresentationId);let t=this.segments.get(this.downloadingRepresentationId),i=this.representations.get(this.downloadingRepresentationId);if(Ee(t)||Ee(i)||this.maintainPlaybackBufferMutex||this.abortNativeBufferMutex||this.bufferClearingMutex||this.switchMutex)return;this.maintainPlaybackBufferMutex=!0;let r=t.find(n=>e>=n.time.from&&e<n.time.to);fe(r)&&isFinite(r.time.from)&&isFinite(r.time.to)&&this.currentSegmentLength$.next((r==null?void 0:r.time.to)-r.time.from),this.downloadingBufferItems.length||(this.downloadingBufferItems=this.selectDownloadingItems(e,t)),yield this.processCachedItems();let a=this.selectItemsToLoad();yield this.loadItems(a,i),this.maintainPlaybackBufferMutex=!1})}actualizeLastSegmentInfo(e){var r;let t=this.segments.get((r=this.downloadingRepresentationId)!=null?r:"");if(Ee(t)||t.length===0)return;let i=t[(t==null?void 0:t.length)-1];Ee(i)||(this.fullyBuffered$.next(i.time.to-e-this.getForwardPlaybackBufferDuration(e)<this.tuning.dash.bufferTolerance),this.onLastSegment$.next(e-i.time.from>0))}selectDownloadingItems(e,t){Pt(this.downloadingRepresentationId);let i=this.getPlaybackBufferState(),r,a;fe(i)&&this.withinInterval(e,i)?(a=this.forwardBufferTarget-this.getForwardPlaybackBufferDuration(e),r=this.bufferPlaybackQueue[this.bufferPlaybackQueue.length-1].segmentIndex+1):(a=this.forwardBufferTarget,r=t.findIndex(o=>this.withinInterval(e,o.time))),r=r===-1?0:r;let n=[];for(;r<t.length&&a>0;){n.push({representationId:this.downloadingRepresentationId,segmentIndex:r,segment:t[r]});let{from:o,to:u}=t[r].time;a-=u-o,r++}return n}processCachedItems(){return y(this,null,function*(){let e=[...this.downloadingBufferItems];for(;e.length&&e[0].segment.networkStatus==="downloaded";)yield this.onDownloadItem(e[0]),e.shift()})}withinInterval(e,{from:t,to:i},r=this.tuning.dash.bufferTolerance){return fe(e)?e+r>=t&&e<i:!1}withinAppendInterval(e,{from:t,to:i}){let{actionTimeShiftFromSegment:r}=this.tuning.dash;return fe(e)?e+r>=t&&e+r<i||this.withinInterval(e,{from:t,to:i}):!1}withinRemoveInterval(e,{to:t}){let{actionTimeShiftFromSegment:i}=this.tuning.dash;return fe(e)?e-i>t:!1}appendSegmentFully(e,t){return y(this,null,function*(){if(Ee(e.segment.data))return;e.segment.feedingBytes=e.segment.size,(yield this.nativeBufferManager.append(e.segment.data,t))&&(e.segment.fedBytes=e.segment.size,this.onItemFullyAppended(e))})}appendSegmentPartially(e,t){return y(this,null,function*(){if(Ee(e.segment.data)||Ee(e.segment.loadedBytes)||Ee(e.segment.feedingBytes)||Ee(e.segment.fedBytes)||Ee(e.segment.size))return;let i=e.segment.data,r=new DataView(i.buffer,i.byteOffset+e.segment.feedingBytes,i.byteLength-e.segment.feedingBytes),a=e.segment.loadedBytes!==e.segment.size?this.parseFeedableSegmentChunk(r):r;a!=null&&a.byteLength&&(e.segment.bufferStatus="partially_fed",e.segment.feedingBytes+=a.byteLength,(yield this.nativeBufferManager.append(a,t))&&(e.segment.fedBytes+=a.byteLength,e.segment.fedBytes===e.segment.size&&this.onItemFullyAppended(e)))})}parseFeedableSegmentChunk(e){return this.containerParser.parseFeedableSegmentChunk(e,!1)}onItemFullyDownloaded(e){e.segment.networkStatus="downloaded"}onItemFullyAppended(e){e.segment.bufferStatus="fed"}removeSegment(e,t){return y(this,null,function*(){let{from:i,to:r}=e.segment.time,a=(r-i)/4;(yield this.nativeBufferManager.remove(0,r-a,t))&&(e.segment.fedBytes=0,e.segment.feedingBytes=0,e.segment.bufferStatus="none",this.bufferPlaybackQueue.shift())})}onDownloadItem(e){return y(this,null,function*(){if(!this.downloadingBufferItems.find(i=>i===e))return;let t=this.getCurrentPosition();return this.downloadingBufferItems=this.downloadingBufferItems.filter(i=>i!==e||i.segment.networkStatus!=="downloaded"),(this.preloadOnly||fe(t)&&!this.withinRemoveInterval(t,e.segment.time))&&!this.bufferPlaybackQueue.find(i=>i===e)&&this.bufferPlaybackQueue.push(e),this.maintainNativeBuffer()})}pruneVirtualBuffer(e){let{maxVirtualBufferSize:t,virtualBufferPruneSize:i,bufferPruningSafeZone:r}=this.tuning.dash;if(this.currentVirtualBufferSize<t)return;let a=this.currentVirtualBufferSize-t+i;for(let n of this.segments.values())for(let o of n)fe(o.size)&&a>0&&o.time.to<=e-r&&o.bufferStatus==="none"&&o.networkStatus==="downloaded"&&(o.data=null,o.networkStatus="none",this.currentVirtualBufferSize-=o.size,a-=o.size);for(let n of this.segments.values())for(let o of[...n].reverse())fe(o.size)&&a>0&&o.time.from>=e+r&&o.bufferStatus==="none"&&o.networkStatus==="downloaded"&&!this.bufferPlaybackQueue.find(u=>u.segment===o)&&!this.downloadingBufferItems.find(u=>u.segment===o)&&(o.data=null,o.networkStatus="none",this.currentVirtualBufferSize-=o.size,a-=o.size)}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())this.updateRepresentationBaseUrl(t,e)}};import{ErrorCategory as UV,isNonNullable as qV,isNullable as xE,now as PE,isAbortError as HV}from"@vkontakte/videoplayer-shared/es2015";var du=class extends Gr{constructor(e,t,i,r){super(e,t,i,r)}loadItems(e,t,i="auto"){return y(this,null,function*(){let{signal:r}=this.downloadAbortController;if(r.aborted||!e.length)return;let o=this.prepareFetchParams(e,t),{url:a}=o,n=Xt(o,["url"]);if(this.failedDownloads&&(yield this.waitExponentialDownloadDelay()),!r.aborted)try{yield this.fetcher.fetch(a,C(x({},n),{priority:i})),this.lastDataObtainedTimestampMs=PE(),this.failedDownloads=0}catch(u){this.abortDownloadingItems(),HV(u)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}})}selectItemsToLoad(){let e=0,t=0,i=[],r=this.preloadOnly?0:this.tuning.dash.segmentRequestSize,a=this.preloadOnly?this.forwardBufferTarget:0,n=0;for(;n<this.downloadingBufferItems.length&&this.downloadingBufferItems[n].segment.networkStatus==="none"&&(e<=r||t<=a);){let o=this.downloadingBufferItems[n].segment;o.networkStatus="downloading",o.size=1/0,o.loadedBytes=0,o.feedingBytes=0,o.fedBytes=0,i.push(this.downloadingBufferItems[n]),e+=o.byte.to+1-o.byte.from,t+=o.time.to+1-o.time.from,n++}return i}prepareFetchParams(e,t){if(Ie(t.segmentReference))throw new Error("Representation is not byte range type");let{signal:i}=this.downloadAbortController,r=t.segmentReference.url,a={from:e[0].segment.byte.from,to:e[e.length-1].segment.byte.to};return{url:r,range:a,onProgress:(o,u)=>y(this,null,function*(){if(!i.aborted)try{this.lastDataObtainedTimestampMs=PE(),yield this.onSomeDataLoaded({downloadingItems:e,dataView:o,loaded:u,signal:i,globalFrom:a?a.from:0,representationId:t.id})}catch(c){this.error$.next({id:"SegmentFeeding",category:UV.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:c})}}),signal:i,bufferOptimisation:this.tuning.dash.fetcherBufferOptimisation}}onSomeDataLoaded(o){return y(this,arguments,function*({downloadingItems:e,dataView:t,representationId:i,globalFrom:r,loaded:a,signal:n}){let u=this.representations.get(i);if(!(!this.downloadingBufferItems.length||xE(u)||xE(r)||n.aborted))for(let c of e){let{segment:d}=c,l=d.byte.from-r,p=d.byte.to-r,h=p-l+1,f=l<a,m=p<=a;d.size=h,f&&(d.networkStatus==="downloading"&&d.bufferStatus==="none"&&m?(d.data=new DataView(t.buffer,t.byteOffset+l,h),this.currentVirtualBufferSize+=d.size,this.onItemFullyDownloaded(c),d.loadedBytes=Math.min(h,a-l),yield this.onDownloadItem(c)):qV(d.feedingBytes)&&this.tuning.dash.enableSubSegmentBufferFeeding&&d.networkStatus==="downloading"&&(d.loadedBytes=Math.min(h,a-l),m&&(this.currentVirtualBufferSize+=d.size,this.onItemFullyDownloaded(c)),d.loadedBytes>d.feedingBytes&&(d.data=new DataView(t.buffer,t.byteOffset+l,d.loadedBytes),yield this.onDownloadItem(c))))}})}updateRepresentationBaseUrl(e,t){if(Ie(e.segmentReference))throw new Error("Representation is not byte range type");e.segmentReference.url=t}};import{ErrorCategory as jV,isAbortError as WV,isNullable as np,now as kE}from"@vkontakte/videoplayer-shared/es2015";var Yr=class extends Gr{constructor(e,t,i,r){super(e,t,i,r)}loadItems(e,t,i="auto"){return y(this,null,function*(){let{signal:r}=this.downloadAbortController;if(r.aborted||!e.length)return;let o=this.prepareFetchParams(e,t),{url:a}=o,n=Xt(o,["url"]);if(this.failedDownloads&&(yield this.waitExponentialDownloadDelay()),!r.aborted)try{let u=yield this.fetcher.fetch(a,C(x({},n),{priority:i}));if(this.lastDataObtainedTimestampMs=kE(),np(u))return;let c=e[0],d=new DataView(u);c.segment.size=d.byteLength,c.segment.loadedBytes=d.byteLength,c.segment.data=d,this.onItemFullyDownloaded(c),yield this.onDownloadItem(c),this.failedDownloads=0}catch(u){this.abortDownloadingItems(),WV(u)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}})}selectItemsToLoad(){let e=[];for(let t of this.downloadingBufferItems){let i=t.segment;i.networkStatus="downloading",i.size=1/0,i.loadedBytes=0,i.feedingBytes=0,i.fedBytes=0,e.push(t)}return e}prepareFetchParams(e,t){let i=this.getFetchUrl(e,t).toString(),{signal:r}=this.downloadAbortController;return{url:i,onProgress:(n,o)=>y(this,null,function*(){if(!r.aborted)try{this.lastDataObtainedTimestampMs=kE(),yield this.onSomeDataLoaded({downloadingItems:e,dataView:n,loaded:o,signal:r,representationId:t.id})}catch(u){this.error$.next({id:"SegmentFeeding",category:jV.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:u})}}),signal:r,bufferOptimisation:this.tuning.dash.fetcherBufferOptimisation}}getFetchUrl(e,t){if(!Ie(t.segmentReference))throw new Error("Representation is not template type");return new URL(e[0].segment.url,t.segmentReference.baseUrl)}onSomeDataLoaded(n){return y(this,arguments,function*({downloadingItems:e,dataView:t,representationId:i,loaded:r,signal:a}){let o=e[0],{segment:u}=o,c=this.representations.get(i);!this.downloadingBufferItems.length||np(c)||np(u.feedingBytes)||u.networkStatus!=="downloading"||a.aborted||(u.loadedBytes=r,u.loadedBytes>u.feedingBytes&&this.tuning.dash.enableSubSegmentBufferFeeding&&(u.data=new DataView(t.buffer,t.byteOffset,u.loadedBytes),yield this.onDownloadItem(o)))})}updateRepresentationBaseUrl(e,t){if(!Ie(e.segmentReference))throw new Error("Representation is not template type");e.segmentReference.baseUrl=t}};var op=q(as(),1),RE=q(et(),1);import{assertNonNullable as QV,ErrorCategory as zV,isNullable as _t,ValueSubject as AE}from"@vkontakte/videoplayer-shared/es2015";var pu=class s extends Yr{constructor(t,i,r,a){super(t,i,r,a);this.currentLiveSegmentServerLatency$=new AE(0);this.currentLowLatencySegmentLength$=new AE(0);this.liveInitialAdditionalOffset=0;this.isSeekingLive=!1;this.isActiveLowLatency=a.isActiveLowLatency}updateManifest(t){var r,a,n;if(!t||[...this.segments.values()].every(o=>!o.length))return;let i=(0,op.default)(t.streams[this.kind],o=>o.representations);for(let o of i){if(_t(o)||!Ie(o.segmentReference))return;let u=o.segmentReference.segments.map(h=>C(x({},h),{networkStatus:"none",bufferStatus:"none",size:void 0})),c=100,d=(r=this.segments.get(o.id))!=null?r:[],l=(n=(a=(0,RE.default)(d,-1))==null?void 0:a.time.to)!=null?n:0,p=u==null?void 0:u.findIndex(h=>l>=h.time.from+c&&l<=h.time.to+c);if(p===-1){let h=this.getActualLiveStartingSegments(o.segmentReference);this.segments.set(o.id,h)}else{let h=u.slice(p+1);this.segments.set(o.id,[...d,...h])}this.representations.set(o.id,o)}}proceedLowLatencyLive(){let t=this.downloadingRepresentationId;QV(t);let i=this.segments.get(t);if(i!=null&&i.length){let r={representationId:t,segmentIndex:i.length-1,segment:i[i.length-1]};this.updateLowLatencyLive(r)}}getLiveSegmentsToLoadState(t){let i=t==null?void 0:t.streams[this.kind],r=(0,op.default)(i,n=>n.representations).find(n=>n.id===this.downloadingRepresentationId);if(_t(r))return;let a=this.segments.get(r.id);if(a!=null&&a.length)return{from:a[0].time.from,to:a[a.length-1].time.to}}getRepresentationInitialTime(){var r;if(_t(this.playingRepresentationId))return 0;let t=(r=this.representations.get(this.playingRepresentationId))==null?void 0:r.segmentReference;return _t(t)||!Ie(t)?0:this.getActualLiveStartingSegments(t)[0].time.from+this.tuning.dash.bufferTolerance}prepareFetchParams(t,i){return C(x({},super.prepareFetchParams(t,i)),{isLowLatency:this.isActiveLowLatency()})}onSomeDataLoaded(r){return y(this,null,function*(){var a=r,{downloadingItems:t}=a,i=Xt(a,["downloadingItems"]);yield mr(s.prototype,this,"onSomeDataLoaded").call(this,x({downloadingItems:t},i)),this.isActiveLowLatency()&&this.updateLowLatencyItemTime(t[0])})}onItemFullyDownloaded(t){if(super.onItemFullyDownloaded(t),_t(t.segment.data)||!this.isActiveLowLatency())return;let i=t.segment.data,r=this.containerParser,{serverDataReceivedTimestamp:a,serverDataPreparedTime:n}=r.getServerLatencyTimestamps(i);a&&n&&this.currentLiveSegmentServerLatency$.next(n-a),this.updateLowLatencyItemTime(t),this.updateLowLatencyLive(t)}updateLowLatencyItemTime(t){var n;let i=t.segment.data,r=(n=this.representations.get(t.representationId))==null?void 0:n.segmentReference;if(_t(t.segment.data)||_t(r)||!Ie(r))return;let a=this.containerParser;if(t.segment.isCurrentLowLatency){let{timescale:o}=r;t.segment.time.to=a.getChunkEndTime(i,o)}}updateLowLatencyLive(t){var r;let i=0;for(let a of this.representations.values()){let n=a.segmentReference;if(!Ie(n))return;let o=(r=this.segments.get(a.id))!=null?r:[],u=o.find(d=>Math.floor(d.time.from)===Math.floor(t.segment.time.from));if(u!=null&&u.isCurrentLowLatency&&(u.time.to=t.segment.time.to,i=u.time.to-u.time.from,u.isCurrentLowLatency=!1),!!!o.find(d=>Math.floor(d.time.from)===Math.floor(t.segment.time.to))&&this.isActiveLowLatency()){let d=Math.round(t.segment.time.to*n.timescale/1e3).toString(10),l=dt(n.segmentTemplateUrl,{segmentTime:d});o.push({networkStatus:"none",bufferStatus:"none",time:{from:t.segment.time.to,to:t.segment.time.to+this.tuning.dash.bufferTolerance},url:l,isCurrentLowLatency:!0})}}this.currentLowLatencySegmentLength$.next(i)}parseFeedableSegmentChunk(t){return this.containerParser.parseFeedableSegmentChunk(t,!0)}getFetchUrl(t,i){let r=super.getFetchUrl(t,i);return this.isActiveLowLatency()&&r.searchParams.set("low-latency","yes"),r}loadInit(t,i="auto",r=!1){return y(this,null,function*(){var a;try{let n=this.tuning.dash.useFetchPriorityHints?i:"auto",o=this.fetcher.fetchRepresentation(t.segmentReference,this.containerParser,n);this.initDataPromises.set(t.id,o);let{initMetadata:u,initDataView:c,segments:d}=(a=yield o)!=null?a:{};if(this.initDataPromises.delete(t.id),_t(c)||_t(d))return;u&&this.parsedInitData.set(t.id,u);let l=this.getActualLiveStartingSegments(t.segmentReference);this.segments.has(t.id)||this.segments.set(t.id,l);let p=c.buffer.slice(c.byteOffset,c.byteOffset+c.byteLength);this.initData.set(t.id,p),this.failedDownloads=0}catch(n){r&&this.error$.next({id:"LoadInits",category:zV.WTF,message:"loadInit threw",thrown:n})}})}getActualLiveStartingSegments(t){let i=t.segments,r=this.isActiveLowLatency()?this.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.tuning.dashCmafLive.maxActiveLiveOffset,a=[],n=0,o=i.length-1;do a.unshift(i[o]),n+=i[o].time.to-i[o].time.from,o--;while(n<r&&o>=0);return this.liveInitialAdditionalOffset=n-r,this.isActiveLowLatency()?[a[0]]:a}};var Os=class{static getBufferManager(e,t,i,r){var a;return(a=r.manifest)!=null&&a.live?new pu(e,t,i,r):Ie(i[0].segmentReference)?new Yr(e,t,i,r):new du(e,t,i,r)}};import{ErrorCategory as KV,fromEvent as XV,isNullable as Kr,Subject as JV,Subscription as ZV}from"@vkontakte/videoplayer-shared/es2015";import{assertNever as GV,ErrorCategory as ME,Subject as $E}from"@vkontakte/videoplayer-shared/es2015";var YV=18,LE=!1;try{LE=O.browser.isSafari&&!!O.browser.safariVersion&&O.browser.safariVersion<=YV}catch(s){console.error(s)}var up=class{constructor(e,t=!1){this.bufferFull$=new $E;this.error$=new $E;this.queue=[];this.currentTask=null;this.destroyed=!1;this.abortRequested=!1;this.isAbortFixEnabled=!1;this.completeTask=()=>{var e;try{if(this.currentTask){let t=(e=this.currentTask.signal)==null?void 0:e.aborted;this.currentTask.callback(!t),this.currentTask=null,this.isAbortFixEnabled&&this.queue.shift()}this.queue.length&&this.pull()}catch(t){this.error$.next({id:"BufferTaskQueueUnknown",category:ME.VIDEO_PIPELINE,message:"Buffer appending or removal failed",thrown:t})}};this.buffer=e,this.isAbortFixEnabled=t,this.buffer.addEventListener("updateend",this.completeTask)}append(e,t){return y(this,null,function*(){return t&&t.aborted?!1:new Promise(i=>{let r={operation:"append",data:e,signal:t,callback:i};this.queue.push(r),this.pull()})})}remove(e,t,i){return y(this,null,function*(){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()})})}abort(e){return y(this,null,function*(){return new Promise(t=>{let i,r=a=>{this.abortRequested=!1,t(a)};LE&&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(){var r;if((this.buffer.updating||this.currentTask||this.destroyed)&&!this.abortRequested)return;let e=this.isAbortFixEnabled?this.queue[0]:this.queue.shift();if(!e)return;if((r=e.signal)!=null&&r.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:ME.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:GV(t)}}},CE=up;var di=(s,e)=>{let t=0;for(let i=0;i<s.length;i++){let r=s.start(i)*1e3,a=s.end(i)*1e3;r<=e&&e<=a&&(t=a)}return Math.max(t-e,0)};var Ns=class{constructor(e){this.error$=new JV;this.subscription=new ZV;this.mediaSource=e}init(e,t,i=!1){this.sourceBuffer=this.mediaSource.addSourceBuffer(`${e}; codecs="${t}"`),this.sourceBufferTaskQueue=new CE(this.sourceBuffer,i),this.subscription.add(this.sourceBufferTaskQueue.error$.subscribe(r=>this.error$.next(r))),this.subscription.add(XV(this.sourceBuffer,"error").subscribe(()=>this.error$.next({id:"SourceBuffer",category:KV.VIDEO_PIPELINE,message:"SourceBuffer Error event fired"})))}addInitSegment(e,t){return this.sourceBufferTaskQueue.append(e,t)}append(e,t){return this.sourceBufferTaskQueue.append(e,t)}remove(e,t,i){return this.sourceBufferTaskQueue.remove(e,t,i)}clear(e){return y(this,null,function*(){let t=this.getBufferState();if(Kr(t))return Promise.resolve(!1);let i=!0;yield this.sourceBufferTaskQueue.abort();for(let r of t)i&&(i=yield this.sourceBufferTaskQueue.remove(r.from,r.to,e));return i})}warmUpMediaSource(){!Kr(this.sourceBuffer)&&!this.sourceBuffer.updating&&(this.sourceBuffer.mode="segments")}getBufferState(){if(Kr(this.sourceBuffer)||!se(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length)return null;let e=[];for(let t=0;t<this.sourceBuffer.buffered.length;t++)e.push({from:this.sourceBuffer.buffered.start(t)*1e3,to:this.sourceBuffer.buffered.end(t)*1e3});return e}getForwardBufferDuration(e){return Kr(this.sourceBuffer)||!se(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length||Kr(e)?0:di(this.sourceBuffer.buffered,e)}abortBuffer(e){return y(this,null,function*(){return Kr(this.sourceBuffer)?!1:this.sourceBufferTaskQueue.abort(e)})}destroy(){var e;if(this.subscription.unsubscribe(),(e=this.sourceBufferTaskQueue)==null||e.destroy(),this.sourceBuffer)try{this.mediaSource.removeSourceBuffer(this.sourceBuffer)}catch(t){if(!(t instanceof DOMException&&t.name==="NotFoundError"))throw t}this.sourceBuffer=null}};var hu=(s,e)=>{s.video.forEach(t=>{t.representations.forEach(i=>{var c;let{height:r,codecs:a,fps:n}=i,o=(c=e.find(([d,l,p])=>d===`${r}p`&&ui(a)===p))==null?void 0:c[1],u=DE(o)&&DE(n)&&n>o;i.tvDisabled=u})})};function DE(s){return typeof s=="number"&&Number.isInteger(s)}var a_=["timeupdate","progress","play","seeked","stalled","waiting"],OE=["timeupdate","progress","loadeddata","playing","seeked"],Xr=class{constructor(e){this.element=null;this.manifestUrlString="";this.source=null;this.manifest=null;this.bufferManagers=[];this.nativeBufferManagers=[];this.subscription=new _E;this.subscriptionRemovable=new r_;this.representationSubscription=new _E;this.forceEnded$=new hi;this.destroyController=new ne;this.state$=new Q("none");this.currentVideoRepresentation$=new re(void 0);this.currentVideoRepresentationInit$=new re(void 0);this.currentAudioRepresentation$=new re(void 0);this.currentVideoSegmentLength$=new re(0);this.currentAudioSegmentLength$=new re(0);this.error$=new hi;this.manifestRequested=new hi;this.manifestReceived=new hi;this.firstBytesRequested=new hi;this.firstBytesReceived=new hi;this.lastConnectionType$=new re(void 0);this.lastConnectionReused$=new re(void 0);this.lastRequestFirstBytes$=new re(void 0);this.lastConnectionMetrics$=new re(void 0);this.lastDownloadMetrics$=new re(void 0);this.currentLiveTextRepresentation$=new re(null);this.isLive$=new re(!1);this.isActiveLive$=new re(!1);this.isLowLatency$=new re(!1);this.liveDuration$=new re(0);this.liveSeekableDuration$=new re(0);this.liveAvailabilityStartTime$=new re(0);this.liveStreamStatus$=new re(void 0);this.currentBuffer$=new re({from:0,to:0});this.bufferLength$=new re(0);this.nativeBufferLength$=new re(0);this.liveLatency$=new re(void 0);this.liveLoadBufferLength$=new re(0);this.livePositionFromPlayer$=new re(0);this.currentStallDuration$=new re(0);this.videoLastDataObtainedTimestamp$=new re(0);this.fetcherRecoverableError$=new hi;this.fetcherError$=new hi;this.initRepresentations=BE(this.destroyController.signal,function(e,t,i){return Z(this,null,function*(){var a;this.tracer.log("initRepresentationsStart",fu({initialVideo:e,initialAudio:t,sourceHls:i})),this.representationSubscription.unsubscribe(),this.state$.startTransitionTo("representations_ready");let r={fetcher:this.fetcher,tuning:this.tuning,getCurrentPosition:()=>this.element?this.element.currentTime*1e3:void 0,getCurrentStallDuration:()=>this.currentStallDuration$.getValue(),isActiveLowLatency:()=>this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),manifest:this.manifest};this.createBuffers(r,e,t,i),this.initRepresentationSubscriptions(),yield this.waitStreamToOpen(),this.setSourceDuration(),Ot(this.videoBufferManager),yield Promise.all([this.videoBufferManager.startWith(e),t?(a=this.audioBufferManager)==null?void 0:a.startWith(t):Promise.resolve()]),this.state$.setState("representations_ready"),this.tracer.log("initRepresentationsEnd")})}.bind(this));this.fetchManifest=BE(this.destroyController.signal,function(){return Z(this,null,function*(){try{return yield this.fetcher.fetchManifest(this.manifestUrlString)}catch(e){Us(this.manifest)&&!this.bufferLength$.getValue()&&this.error$.next({id:"LoadManifest",category:er.NETWORK,message:"Failed to load manifest",thrown:e})}})}.bind(this));this.throughputEstimator=e.throughputEstimator,this.tuning=e.tuning,this.tracer=e.tracer.createComponentTracer(this.constructor.name),this.forceVideoCodec=e.forceVideoCodec,this.fetcher=new Zo({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.initTracerSubscription()}initManifest(e,t,i){return y(this,null,function*(){var r;this.tracer.log("initManifest"),this.state$.startTransitionTo("manifest_ready"),this.element=e,this.manifestUrlString=this.prepareManifestUrlString(t,i),this.manifest=yield this.updateManifest(),(r=this.manifest)!=null&&r.streams.video.length?this.state$.setState("manifest_ready"):this.error$.next({id:"NoRepresentations",category:er.PARSER,message:"No playable video representations"})})}initBuffer(){var t,i;Ot(this.element),this.state$.setState("running"),this.subscription.add(qs(...a_.map(r=>tr(this.element,r)),tr(Fs(),"online"),VE(this.tuning.dash.tickMaintainInterval)).subscribe(()=>this.tick(),r=>this.error$.next({id:"DashVKPlayer",category:er.WTF,message:"Internal logic error",thrown:r})));let e=[...(i=(t=this.source)==null?void 0:t.activeSourceBuffers)!=null?i:[]];this.subscription.add(qs(...e.map(r=>tr(r,"updateend"))).subscribe(r=>this.reinitDecoderIfNeeded())),this.subscription.add(tr(this.element,"waiting").subscribe(r=>{this.stallWatchdogSubscription&&(this.stallWatchdogSubscription.unsubscribe(),this.subscriptionRemovable.remove(this.stallWatchdogSubscription)),this.stallWatchdogSubscription=VE(this.tuning.dash.stallWatchdogInterval).subscribe(()=>this.stallWatchdogIntervalCallback(),a=>this.error$.next({id:"StallWatchdogCallback",category:er.NETWORK,message:"Can't restore DASH after stall.",thrown:a})),this.subscriptionRemovable.add(this.stallWatchdogSubscription)}))}switchRepresentation(e,t,i=!1){return y(this,null,function*(){let r={video:this.videoBufferManager,audio:this.audioBufferManager,text:null}[e];return r==null?void 0:r.switchTo(t,i)})}seek(e,t=!1){return y(this,null,function*(){var r,a,n,o,u;Ot(this.element),Ot(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((r=this.videoBufferManager.findSegmentStartTime(e))!=null?r:e,(n=(a=this.audioBufferManager)==null?void 0:a.findSegmentStartTime(e))!=null?n:e),this.warmUpMediaSourceIfNeeded(i),this.element.currentTime=i/1e3,O.browser.isSafari?(yield(o=this.audioBufferManager)==null?void 0:o.seek(i),yield this.videoBufferManager.seek(i)):(yield this.videoBufferManager.seek(i),yield(u=this.audioBufferManager)==null?void 0:u.seek(i)),this.tracer.log("seek",fu({requestedPosition:e,forcePrecise:t,position:i}))})}warmUpMediaSourceIfNeeded(e=(t=>(t=this.element)==null?void 0:t.currentTime)()){pi(this.element)&&pi(this.source)&&pi(e)&&this.isStreamEnded&&this.element.duration*1e3-e>this.tuning.dash.seekBiasInTheEnd&&this.nativeBufferManagers.forEach(i=>i.warmUpMediaSource())}calculateDurationFromSegments(e){var t,i;return Math.max(((t=this.videoBufferManager)==null?void 0:t.calculateDurationFromSegments(e))||0,((i=this.audioBufferManager)==null?void 0:i.calculateDurationFromSegments(e))||0)}get isStreamEnded(){var e;return((e=this.source)==null?void 0:e.readyState)==="ended"}getStreams(){var e;return(e=this.manifest)==null?void 0:e.streams}getCodecs(){var e;return(e=this.manifest)==null?void 0:e.codecs}setBufferTarget(e){this.bufferManagers.forEach(t=>t.setTarget(e))}setPreloadOnly(e){this.bufferManagers.forEach(t=>t.setPreloadOnly(e))}stop(){var e,t,i;this.tracer.log("stop"),(e=this.element)==null||e.querySelectorAll("source").forEach(r=>{URL.revokeObjectURL(r.src),r.remove()}),this.element=null,this.source=null,this.manifest=null,this.currentVideoRepresentation$.next(void 0),this.nativeBufferManagers.forEach(r=>r.destroy()),(t=this.videoBufferManager)==null||t.destroy(),this.videoBufferManager=null,(i=this.audioBufferManager)==null||i.destroy(),this.audioBufferManager=null,this.bufferManagers=[],this.state$.setState("none")}destroy(){this.subscription.unsubscribe(),this.subscriptionRemovable.unsubscribe(),this.representationSubscription.unsubscribe(),this.timeoutSourceOpenId&&Fs().clearTimeout(this.timeoutSourceOpenId),this.destroyController.abort(),this.fetcher.destroy(),this.stop(),pi(this.source)&&this.isStreamNotOpen&&Array.from(this.source.sourceBuffers).every(e=>!e.updating)&&this.source.endOfStream(),this.source=null,this.tracer.end()}get isStreamNotOpen(){var e;return((e=this.source)==null?void 0:e.readyState)!=="open"}reinitDecoderIfNeeded(e=!1){return y(this,null,function*(){var r,a;let t=(a=(r=this.videoNativeBufferManager)==null?void 0:r.getBufferState())!=null?a:[];if(Us(this.element)||!t.length)return;let i=this.element.currentTime*1e3;this.element.readyState<3&&t.some(n=>i>=n.from&&i<=n.to)&&(e?yield this.seek(i):this.element.currentTime=this.element.currentTime)})}stallWatchdogIntervalCallback(){return y(this,null,function*(){Ot(this.element),Ot(this.source);let{stallWatchdogInterval:e}=this.tuning.dash;if(this.isStreamNotOpen)return;let t=this.currentStallDuration$.getValue()+e;this.currentStallDuration$.next(t);let i={timeInWaiting:t};if(yield this.reinitDecoderIfNeeded(t%1e3===0),this.isStallExceeded(t)){if(this.tuning.dash.useNewStallExitPolicy)return this.seek(this.element.currentTime*1e3);throw new Error(`Stall timeout exceeded: ${t} ms`)}yield this.restoreAfterDeepStall(i),this.tracer.log("stallIntervalCallback",fu(i))})}isStallExceeded(e){var p,h,f,m,g,v,S,T;let{crashOnStallTimeout:t,crashOnStallTWithoutDataTimeout:i}=this.tuning.dash,r=i_(),a=100,n=(h=(p=this.videoBufferManager)==null?void 0:p.lastDataObtainedTimestamp)!=null?h:0;this.videoLastDataObtainedTimestamp$.next(n);let o=(m=(f=this.audioBufferManager)==null?void 0:f.lastDataObtainedTimestamp)!=null?m:0,u=(v=(g=this.videoBufferManager)==null?void 0:g.getForwardPlaybackBufferDuration())!=null?v:0,c=(T=(S=this.audioBufferManager)==null?void 0:S.getForwardPlaybackBufferDuration())!=null?T:0,d=pi(this.videoBufferManager)&&u<a&&r-n>i,l=pi(this.audioBufferManager)&&c<a&&r-o>i;return(d||l)&&e>i||e>=t}updateManifest(){return y(this,null,function*(){this.tracer.log("updateManifestStart",{manifestUrl:this.manifestUrlString});let e=yield this.fetchManifest();if(Us(e))return null;let t=this.parseManifest(e);if(!t)return null;let i=this.getResultManifest(t);return this.tracer.log("updateManifestEnd",fu(i)),i})}parseManifest(e){var t;try{return iu(e!=null?e:"",this.manifestUrlString)}catch(i){let r=(t=Yo(e))!=null?t:{id:"ManifestParsing",category:er.PARSER,message:"Failed to parse MPD manifest",thrown:i};this.error$.next(r)}}getResultManifest(e){let t={text:e.streams.text,video:[],audio:[]},i=(o,u,c)=>{var d,l,p,h;return!!((l=(d=this.element)==null?void 0:d.canPlayType)!=null&&l.call(d,u)&&((h=(p=ze())==null?void 0:p.isTypeSupported)!=null&&h.call(p,`${u}; codecs="${c}"`))||o==="text")},r,a;for(let o of["video","audio"]){let c=e.streams[o].filter(({mime:l,codecs:p})=>i(o,l,p));t[o]=c;let d;if(this.tuning.dash.codecsPrioritizeEnabled){let l=c.map(({codecs:p})=>p);o==="audio"&&(a=cu(l),d=a[0]),o==="video"&&(r=uu(l),this.forceVideoCodec&&(0,NE.default)(r,this.forceVideoCodec)?d=this.forceVideoCodec:d=r[0]),d&&(t[o]=c.filter(({codecs:p})=>ui(p)===d))}else{let l=new Set(c.map(({codecs:p})=>p));d=ou(l),d&&(t[o]=c.filter(({codecs:p})=>p.startsWith(d)))}if(o==="video"){let l=this.tuning.preferHDR,p=t.video.some(m=>m.hdr),h=t.video.some(m=>!m.hdr);O.display.isHDR&&l&&p?t.video=t.video.filter(m=>m.hdr):h&&(t.video=t.video.filter(m=>!m.hdr));let{videoStreamRepresentaionsFilter:f}=this.tuning.dash;f.length&&hu(t,f)}}let n=C(x({},e),{streams:t});return this.tuning.dash.codecsPrioritizeEnabled&&(n.codecs={video:r,audio:a}),n}stopStallWatchdogSubscription(){var e;(e=this.stallWatchdogSubscription)==null||e.unsubscribe(),this.currentStallDuration$.next(0)}createBuffers(e,t,i,r){Ot(this.manifest),Ot(this.element);let a=c=>{this.representationSubscription.add(tr(c,"error").pipe(cp(d=>{var l;return!!((l=this.element)!=null&&l.played.length)})).subscribe(d=>{this.error$.next({id:"VideoSource",category:er.VIDEO_PIPELINE,message:"Unexpected video source error",thrown:d})}))};this.source=Wn();let n=Fs().document,o=n.createElement("source");if(a(o),o.src=URL.createObjectURL(this.source),this.element.appendChild(o),Er())if(r){let c=n.createElement("source");a(c),c.type="application/x-mpegurl",c.src=r.url,this.element.appendChild(c)}else this.element.disableRemotePlayback=!0;let u=this.manifest.streams.video.reduce((c,d)=>[...c,...d.representations],[]);if(this.videoNativeBufferManager=new Ns(this.source),this.videoBufferManager=Os.getBufferManager("video",this.videoNativeBufferManager,u,e),this.bufferManagers=[this.videoBufferManager],this.nativeBufferManagers=[this.videoNativeBufferManager],pi(i)){this.audioNativeBufferManager=new Ns(this.source);let c=this.manifest.streams.audio.reduce((d,l)=>[...d,...l.representations],[]);this.audioBufferManager=Os.getBufferManager("audio",this.audioNativeBufferManager,c,e),this.bufferManagers.push(this.audioBufferManager),this.nativeBufferManagers.push(this.audioNativeBufferManager)}}waitStreamToOpen(){return y(this,null,function*(){if(this.isStreamNotOpen){let e=this.tuning.dash.sourceOpenTimeout>=0;yield new Promise(t=>{var i;e&&(this.timeoutSourceOpenId=Fs().setTimeout(()=>{if(this.isStreamNotOpen){t();return}this.error$.next({id:"OpenOfStream",category:er.VIDEO_PIPELINE,message:"Failed to open MediaSource",thrown:new Error("Timeout reject when wait sourceopen event"),traceAsLog:!0})},this.tuning.dash.sourceOpenTimeout)),(i=this.source)==null||i.addEventListener("sourceopen",()=>{this.timeoutSourceOpenId&&Fs().clearTimeout(this.timeoutSourceOpenId),t()},{once:!0})})}})}initRepresentationSubscriptions(){this.representationSubscription.add(this.fetcher.manifestRequested.subscribe(this.manifestRequested)),this.representationSubscription.add(this.fetcher.manifestReceived.subscribe(this.manifestReceived)),this.representationSubscription.add(this.fetcher.firstBytesRequested.subscribe(this.firstBytesRequested)),this.representationSubscription.add(this.fetcher.firstBytesReceived.subscribe(this.firstBytesReceived)),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$)),this.representationSubscription.add(this.fetcher.lastConnectionMetrics$.subscribe(this.lastConnectionMetrics$)),this.representationSubscription.add(this.fetcher.lastDownloadMetrics$.subscribe(this.lastDownloadMetrics$)),this.representationSubscription.add(qs(...this.bufferManagers.map(e=>e.error$)).subscribe(this.error$)),Ot(this.videoBufferManager),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.initBufferLengthSubscription()}initBufferLengthSubscription(){this.representationSubscription.add(qs(...OE.map(e=>tr(this.element,e))).pipe(lp(e=>{var t;return(t=this.videoBufferManager)==null?void 0:t.getPlaybackBufferState()}),cp(pi),lp(({from:e,to:t})=>({from:e/1e3,to:t/1e3}))).subscribe(this.currentBuffer$)),this.representationSubscription.add(qs(...OE.map(e=>tr(this.element,e))).pipe(lp(e=>{var t,i,r,a,n,o;return Math.min((i=(t=this.videoBufferManager)==null?void 0:t.getForwardPlaybackBufferDuration())!=null?i:0,(a=(r=this.audioBufferManager)==null?void 0:r.getForwardPlaybackBufferDuration())!=null?a:0,(o=(n=this.audioBufferManager)==null?void 0:n.getForwardPlaybackBufferDuration())!=null?o:0)}),e_()).subscribe(this.bufferLength$)),this.representationSubscription.add(this.nativeBufferLength$.pipe(cp(e=>e>this.tuning.dash.bufferEmptinessTolerance)).subscribe(e=>this.stopStallWatchdogSubscription()))}initTracerSubscription(){let e=t_(this.tracer.error.bind(this.tracer));this.subscription.add(this.error$.subscribe(e("error")))}tick(){return y(this,null,function*(){var r,a,n;if(Us(this.element)||Us(this.videoBufferManager)||this.isStreamNotOpen)return;let e=this.element.currentTime*1e3,i=((a=(r=this.videoNativeBufferManager)==null?void 0:r.getBufferState())!=null?a:[]).find(o=>e>=o.from&&e<=o.to);this.nativeBufferLength$.next(i?i.to-e:0),yield this.videoBufferManager.maintain(e),yield(n=this.audioBufferManager)==null?void 0:n.maintain(e)})}};import{assertNonNullable as mu,combine as s_,ErrorCategory as n_,filter as dp,filterChanged as o_,fromEvent as u_,isNonNullable as c_,map as pp,merge as Hs}from"@vkontakte/videoplayer-shared/es2015";var bu=class extends Xr{constructor(e){super(e)}prepareManifestUrlString(e,t){return e}initRepresentationSubscriptions(){super.initRepresentationSubscriptions(),this.initDisableStallWatchdogSubscription(),this.initEndOfVideoSubscription()}setSourceDuration(){var t;mu(this.manifest),mu(this.source);let e=[(t=this.manifest.duration)!=null?t:0,...(0,hp.default)((0,hp.default)([...this.manifest.streams.audio,...this.manifest.streams.video],i=>i.representations),i=>{let r=[];return i.duration&&r.push(i.duration),Ie(i.segmentReference)&&i.segmentReference.totalSegmentsDurationMs&&r.push(i.segmentReference.totalSegmentsDurationMs),r})];this.source.duration=Math.max(...e)/1e3}restoreAfterDeepStall(e){return y(this,null,function*(){var i,r;mu(this.element);let t=this.element.currentTime*1e3;yield Promise.all([(i=this.videoBufferManager)==null?void 0:i.maintain(t),(r=this.audioBufferManager)==null?void 0:r.maintain(t)]),e.position=t})}initDisableStallWatchdogSubscription(){mu(this.element);let e=Hs(u_(this.element,"ended"),this.forceEnded$),t=this.nativeBufferLength$.pipe(dp(i=>i>this.tuning.dash.bufferEmptinessTolerance));this.representationSubscription.add(Hs(e,t).subscribe(i=>this.stopStallWatchdogSubscription()))}initEndOfVideoSubscription(){let e=Hs(...this.bufferManagers.map(a=>a.fullyBuffered$)).pipe(pp(()=>this.bufferManagers.every(a=>a.fullyBuffered$.getValue()))),t=Hs(...this.bufferManagers.map(a=>a.onLastSegment$)).pipe(pp(()=>this.bufferManagers.some(a=>a.onLastSegment$.getValue()))),i=s_({allBuffersFull:e,someBufferEnded:t}).pipe(o_(),pp(({allBuffersFull:a,someBufferEnded:n})=>a&&n),dp(a=>a)),r=()=>{var a;try{(a=this.source)==null||a.endOfStream()}catch(n){this.error$.next({id:"EndOfStream",category:n_.VIDEO_PIPELINE,message:"Failed to end MediaSource stream",thrown:n})}};this.representationSubscription.add(Hs(this.forceEnded$,i).pipe(dp(a=>c_(this.source)&&this.source.readyState==="open"&&Array.from(this.source.sourceBuffers).every(n=>!n.updating))).subscribe(r))}};var js=class extends Wi{subscribe(){super.subscribe();let{output:e,observableVideo:t,connect:i,genericErrorListener:r}=this.getProviderSubscriptionInfo();i(t.timeUpdate$,e.position$),i(t.durationChange$,e.duration$),this.subscription.add(this.player.currentVideoRepresentation$.pipe(d_(),l_(a=>p_(a))).subscribe(a=>{let n=this.player.calculateDurationFromSegments(a);n&&this.params.output.duration$.next(n/1e3)},r))}getPlayer(){return new bu({throughputEstimator:this.params.dependencies.throughputEstimator,tuning:this.params.tuning,compatibilityMode:this.params.source.compatibilityMode,tracer:this.tracer,forceVideoCodec:this.params.forceVideoCodec})}seek(e,t){this.params.output.willSeekEvent$.next(),this.player.seek(e,t)}};import{combine as bp,merge as WE,filter as QE,filterChanged as zE,isNullable as gp,map as GE,ValueSubject as vp,isNonNullable as y_}from"@vkontakte/videoplayer-shared/es2015";import{isNullable as h_,ValueSubject as FE}from"@vkontakte/videoplayer-shared/es2015";var fi=class{constructor(e){this.prevReported=void 0;this.pastMeasures=[];this.takenMeasures=0;this.measuresCursor=0;var i;this.params=e,this.pastMeasures=Array(e.deviationDepth),this.smoothed=this.prevReported=e.initial,this.smoothed$=new FE(e.initial),this.debounced$=new FE(e.initial);let t=(i=e.label)!=null?i:"value"+Math.random().toString(16).substring(2,6);this.rawSeries$=new De(`raw_${t}`),this.smoothedSeries$=new De(`smoothed_${t}`),this.reportedSeries$=new De(`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+=gt(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)&&(h_(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 gu=class extends fi{constructor(e){super(e),this.slow=this.fast=e.initial}updateSmoothedValue(e){this.slow=Bt(this.slow,e,this.params.emaAlphaSlow),this.fast=Bt(this.fast,e,this.params.emaAlphaFast);let t=this.params.fastDirection>0?Math.max:Math.min;this.smoothed=t(this.slow,this.fast)}};var vu=class extends fi{constructor(e){super(e),this.emaSmoothed=e.initial}updateSmoothedValue(e){let t=Ad(this.pastMeasures,this.takenMeasures);this.emaSmoothed=Bt(this.emaSmoothed,e,this.params.emaAlpha);let i=vT(this.pastMeasures,this.takenMeasures,this.measuresCursor-1,this.params.basisTrendChangeCount);this.smoothed=i?this.emaSmoothed:t}};var Su=class extends fi{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?Bt(this.smoothed,t,this.params.emaAlpha):t}};var Nt=class{static getSmoothedValue(e,t,i){return i.type==="TwoEma"?new gu({initial:e,emaAlphaSlow:i.emaAlphaSlow,emaAlphaFast:i.emaAlphaFast,changeThreshold:i.changeThreshold,fastDirection:t,deviationDepth:i.deviationDepth,deviationFactor:i.deviationFactor,label:"throughput"}):new vu({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 Su(x({initial:e,label:"liveEdgeDelay"},t))}};import{assertNonNullable as ir,combine as Qs,ErrorCategory as yu,filter as Tu,filterChanged as fp,fromEvent as UE,interval as g_,isNonNullable as v_,isNullable as qE,map as mp,now as HE,throttle as S_}from"@vkontakte/videoplayer-shared/es2015";var Jr=(s,e)=>{s&&s.playbackRate!==e&&(s.playbackRate=e)};import{isNullable as f_,ValueSubject as m_}from"@vkontakte/videoplayer-shared/es2015";var Ws=class s{constructor(e,t){this.currentRepresentation$=new m_(null);this.maxRepresentations=4;this.representationsCursor=0;this.representations=[];this.currentSegment=null;this.getCurrentPosition=t.getCurrentPosition,this.processStreams(e)}updateLive(e){this.processStreams(e==null?void 0:e.streams.text)}seekLive(e){this.processStreams(e)}maintain(e=this.getCurrentPosition()){var t;if(!f_(e))for(let i of this.representations)for(let r of i){let a=r.segmentReference,n=a.segments.length,o=a.segments[0].time.from,u=a.segments[n-1].time.to;if(e<o||e>u)continue;let c=a.segments.find(d=>d.time.from<=e&&d.time.to>=e);!c||((t=this.currentSegment)==null?void 0:t.time.from)===c.time.from&&this.currentSegment.time.to===c.time.to||(this.currentSegment=c,this.currentRepresentation$.next(C(x({},r),{label:"Live Text",language:"ru",isAuto:!0,url:new URL(c.url,a.baseUrl).toString()})))}}destroy(){this.currentRepresentation$.next(null),this.currentSegment=null,this.representations=[]}processStreams(e){for(let t of e!=null?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!=null&&e.some(t=>s.filterRepresentations(t.representations)))}static filterRepresentations(e){return e==null?void 0:e.filter(t=>t.kind==="text"&&"segmentReference"in t&&Ie(t.segmentReference))}};var Iu=class s extends Xr{constructor(t){super(t);this.liveStreamEndTimestamp=0;this.liveWasInterrupted=!1;this.liveBuffer=Nt.getLiveBufferSmoothedValue(this.tuning.dashCmafLive.lowLatency.maxTargetOffset,x({},t.tuning.dashCmafLive.lowLatency.bufferEstimator))}seek(t){return y(this,null,function*(){ir(this.element),this.updateManifestUrlWithTimeOffset(t),this.manifest=yield this.updateManifest(),yield this.forcePositionToRepresentationInitialTime()})}initBuffer(){super.initBuffer(),this.forcePositionToRepresentationInitialTime()}forcePositionToRepresentationInitialTime(){return y(this,null,function*(){var r;let t=this.videoBufferManager,i=(r=t==null?void 0:t.getRepresentationInitialTime())!=null?r:0;yield mr(s.prototype,this,"seek").call(this,i,!1)})}tick(){return y(this,null,function*(){var i,r,a;yield mr(s.prototype,this,"tick").call(this);let t=((r=(i=this.element)==null?void 0:i.currentTime)!=null?r:0)*1e3;(a=this.liveTextManager)==null||a.maintain(t)})}setSourceDuration(){ir(this.source),this.source.duration=Number.MAX_SAFE_INTEGER}isStallExceeded(t){let{keepSilentStallWatchdogWhenNotActive:i}=this.tuning.dashCmafLive,a=this.liveStreamStatus$.getValue()==="active";return(!i||a)&&super.isStallExceeded(t)}restoreAfterDeepStall(t){return y(this,null,function*(){let{liveStallReinitInterval:i}=this.tuning.dash,{keepSilentStallWatchdogWhenNotActive:r}=this.tuning.dashCmafLive,a=this.currentStallDuration$.getValue(),o=this.liveStreamStatus$.getValue()==="active";if(a%i===0){let u=this.normalizeLiveOffset(-1*this.livePositionFromPlayer$.getValue()*1e3);t.liveLastOffset=u,!o&&r?(this.liveWasInterrupted=!0,this.updateManifestUrlWithTimeOffset(u),this.manifest=yield this.updateManifest(),yield this.forcePositionToRepresentationInitialTime()):this.seek(u).catch(c=>{this.error$.next({id:"stallIntervalCallback",category:yu.VIDEO_PIPELINE,message:"stallIntervalCallback failed",thrown:c})})}})}updateManifest(){return y(this,null,function*(){var d,l;let t=yield mr(s.prototype,this,"updateManifest").call(this);if(qE(t))return null;if(qE(t.live))return this.error$.next({id:"ManifestParsing",category:yu.PARSER,message:"MPD doesnt contain live section for live stream"}),null;this.isLive$.next(!0);let{availabilityStartTime:i,latestSegmentPublishTime:r,streamIsUnpublished:a,streamIsAlive:n}=t.live,o=((d=t.duration)!=null?d:0)/1e3;this.liveSeekableDuration$.next(-1*o),this.liveDuration$.next((r-i)/1e3),this.liveAvailabilityStartTime$.next(t.live.availabilityStartTime);let u="active";if(n||(u=a?"unpublished":"unexpectedly_down"),this.liveStreamStatus$.next(u),this.bufferManagers.forEach(p=>p.updateManifest(t)),(l=this.liveTextManager)==null||l.updateLive(t),n&&this.liveWasInterrupted){this.liveWasInterrupted=!1,this.stopStallWatchdogSubscription();let p=this.normalizeLiveOffset(-1*this.livePositionFromPlayer$.getValue()*1e3);this.seek(p).catch(h=>{this.error$.next({id:"updateManifest",category:yu.VIDEO_PIPELINE,message:"seekLive after stream restore failed",thrown:h})})}return t})}prepareManifestUrlString(t,i){return pe(t,i,2)}updateManifestUrlWithTimeOffset(t){let i=this.liveStreamStatus$.getValue()!=="active"?HE()-this.liveStreamEndTimestamp:0,r=this.normalizeLiveOffset(t+i);this.isActiveLive$.next(r===0),this.manifestUrlString=pe(this.manifestUrlString,r,2)}createBuffers(t,i,r,a){ir(this.manifest),super.createBuffers(t,i,r,a),Ws.isSupported(this.manifest.streams.text)&&!this.isLowLatency$.getValue()&&(this.liveTextManager=new Ws(this.manifest.streams.text,t))}initRepresentationSubscriptions(){ir(this.element),ir(this.videoBufferManager),this.isActiveLive$.next(this.isLive$.getValue()),super.initRepresentationSubscriptions();let t=this.videoBufferManager,i=this.bufferManagers;this.initStreamDurationOnPauseSubscription(),this.initLiveChangePlaybackRateSubscriptions(),this.initLiveDurationSubscriptions(t),this.initLiveBufferInfoSubscriptions(t,i),this.initLiveMaintainSubscription(i),v_(this.liveTextManager)&&this.representationSubscription.add(this.liveTextManager.currentRepresentation$.subscribe(this.currentLiveTextRepresentation$))}initStreamDurationOnPauseSubscription(){ir(this.element);let{liveUpdateInterval:t}=this.tuning.dash,i=()=>g_(t).subscribe(r=>y(this,null,function*(){let a=ei(this.manifestUrlString,2);this.manifestUrlString=pe(this.manifestUrlString,a+t,2),this.liveStreamStatus$.getValue()==="active"&&(this.manifest=yield this.updateManifest())}));this.representationSubscription.add(UE(this.element,"pause").subscribe(r=>{this.livePauseWatchdogSubscription=i(),this.representationSubscription.add(this.livePauseWatchdogSubscription)})),this.representationSubscription.add(UE(this.element,"play").subscribe(r=>{var a;return(a=this.livePauseWatchdogSubscription)==null?void 0:a.unsubscribe()}))}initLiveDurationSubscriptions(t){this.representationSubscription.add(this.liveDuration$.pipe(fp()).subscribe(i=>this.liveStreamEndTimestamp=HE())),this.representationSubscription.add(t.currentLowLatencySegmentLength$.subscribe(i=>{if(!this.isActiveLive$.getValue()&&!this.isLowLatency$.getValue()&&!i)return;let r=this.liveSeekableDuration$.getValue()-i/1e3;this.liveSeekableDuration$.next(Math.max(r,-1*this.tuning.dashCmafLive.maxLiveDuration)),this.liveDuration$.next(this.liveDuration$.getValue()+i/1e3)}))}initLiveChangePlaybackRateSubscriptions(){this.representationSubscription.add(Qs({isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe(mp(({isActiveLive:t,isLowLatency:i})=>t&&i),fp(),Tu(t=>!this.isManualDecreasePlaybackInLive())).subscribe(t=>Jr(this.element,1))),this.representationSubscription.add(Qs({liveBuffer:this.liveBuffer.smoothed$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe(Tu(t=>!this.isManualDecreasePlaybackInLive())).subscribe(({liveBuffer:t,isActiveLive:i,isLowLatency:r})=>{if(!r||!i)return;let a=this.tuning.dashCmafLive.lowLatency.maxTargetOffset,n=this.tuning.dashCmafLive.lowLatency.maxTargetOffsetDeviation,o=this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup,u=t-a,c=1;Math.abs(u)>n&&(c=1+Math.sign(u)*o),Jr(this.element,c)}))}initLiveBufferInfoSubscriptions(t,i){this.representationSubscription.add(Qs({bufferLength:this.bufferLength$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe(Tu(({bufferLength:r,isActiveLive:a,isLowLatency:n})=>a&&n&&!!r),mp(({bufferLength:r})=>r)).subscribe(this.liveBuffer)),this.representationSubscription.add(this.bufferLength$.subscribe(r=>{var n,o;let a=0;if(r){let u=((o=(n=this.element)==null?void 0:n.currentTime)!=null?o:0)*1e3;a=Math.min(...i.map(d=>{var l,p;return(p=(l=d.getLiveSegmentsToLoadState(this.manifest))==null?void 0:l.to)!=null?p:u}))-u}this.liveLoadBufferLength$.getValue()!==a&&this.liveLoadBufferLength$.next(a)})),this.representationSubscription.add(Qs({isLive:this.isLive$,rtt:this.throughputEstimator.rtt$,bufferLength:this.bufferLength$,segmentServerLatency:t.currentLiveSegmentServerLatency$}).pipe(Tu(({isLive:r})=>r),fp((r,a)=>a.bufferLength<r.bufferLength),mp(({rtt:r,bufferLength:a,segmentServerLatency:n})=>{let o=ei(this.manifestUrlString,2);return(r/2+a+n+o)/1e3})).subscribe(this.liveLatency$))}initLiveMaintainSubscription(t){let i=0;this.representationSubscription.add(Qs({liveLoadBufferLength:this.liveLoadBufferLength$,bufferLength:this.bufferLength$}).pipe(S_(this.tuning.dash.liveUpdateInterval)).subscribe(n=>y(this,[n],function*({liveLoadBufferLength:r,bufferLength:a}){ir(this.element);let o=this.element.playbackRate,u=ei(this.manifestUrlString,2),c=Math.abs(this.livePositionFromPlayer$.getValue())*1e3,d=Math.min(c,this.tuning.dashCmafLive.normalizedTargetMinBufferSize*o),l=this.tuning.dashCmafLive.normalizedActualBufferOffset*o,p=this.tuning.dashCmafLive.normalizedLiveMinBufferSize*o,h=isFinite(r)?r:a,f=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),m=c<=this.tuning.live.activeLiveDelay;this.isActiveLive$.next(m);let g="none";if(f?g="active_low_latency":this.isLowLatency$.getValue()&&m?(t.forEach(v=>v.proceedLowLatencyLive()),g="active_low_latency"):u!==0&&h<d?g="live_forward_buffering":h<d+p&&(g="live_with_target_offset"),isFinite(r)&&(i=r>i?r:i),g==="live_forward_buffering"||g==="live_with_target_offset"){let v=i-(d+l),S=this.normalizeLiveOffset(Math.trunc(u+v/o)),T=Math.abs(S-u),I=0;!r||T<=this.tuning.dashCmafLive.offsetCalculationError?I=u:S>0&&T>this.tuning.dashCmafLive.offsetCalculationError&&(I=S),this.manifestUrlString=pe(this.manifestUrlString,I,2)}(g==="live_with_target_offset"||g==="live_forward_buffering")&&(i=0,this.manifest=yield this.updateManifest())}),r=>{this.error$.next({id:"updateLive",category:yu.VIDEO_PIPELINE,thrown:r,message:"Failed to update live with subscription"})}))}isManualDecreasePlaybackInLive(){if(!this.element||!this.isLive$.getValue())return!1;let t=1-this.element.playbackRate;return Number(t.toFixed(2))>Number(this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup.toFixed(2))}normalizeLiveOffset(t){return Math.trunc(t/1e3)*1e3}};var Zr=class extends Wi{constructor(e){super(e),this.textTracksManager.destroy()}getPlayer(){return new Iu({throughputEstimator:this.params.dependencies.throughputEstimator,tuning:this.params.tuning,compatibilityMode:this.params.source.compatibilityMode,tracer:this.tracer,forceVideoCodec:this.params.forceVideoCodec})}subscribe(){super.subscribe();let e=!1,t=-1,{output:i,observableVideo:r,desiredState:a,connect:n}=this.getProviderSubscriptionInfo();this.params.output.position$.next(0),this.params.output.isLive$.next(!0),this.params.output.canPlayLiveTailBuffer$.next(!0);let o=new vp(1);n(r.playbackRateState$,o),n(r.timeUpdate$,i.liveBufferTime$),n(this.player.liveSeekableDuration$,i.duration$),n(this.player.liveLatency$,i.liveLatency$),this.params.tuning.dashCmafLive.catchupLiveForMutedInactiveTab&&this.subscription.add(i.elementVisible$.pipe(zE()).subscribe(u=>{let c=i.position$.getValue(),d=i.volume$.getValue(),l=!d.volume||d.muted;!u&&!c&&l?e=!0:u&&e&&(this.seek(0),e=!1)})),this.subscription.add(this.params.output.position$.subscribe(this.player.livePositionFromPlayer$)).add(a.isLowLatency.stateChangeEnded$.pipe(GE(u=>u.to)).subscribe(this.player.isLowLatency$)).add(bp({liveBufferTime:i.liveBufferTime$,liveAvailabilityStartTime:this.player.liveAvailabilityStartTime$}).pipe(GE(({liveBufferTime:u,liveAvailabilityStartTime:c})=>u&&c?u+c:void 0)).subscribe(i.liveTime$)).add(bp({liveDuration:this.player.liveDuration$,liveStreamStatus:this.player.liveStreamStatus$,playbackRate:WE(r.playbackRateState$,new vp(1))}).pipe(QE(({liveStreamStatus:u,liveDuration:c})=>u==="active"&&!!c)).subscribe(({liveDuration:u,playbackRate:c})=>{let d=i.liveBufferTime$.getValue(),l=i.position$.getValue(),{playbackCatchupSpeedup:p}=this.params.tuning.dashCmafLive.lowLatency;l||c<1-p||this.video.paused||gp(d)||(t=u-d)})).add(bp({time:i.liveBufferTime$,liveDuration:this.player.liveDuration$,playbackRate:WE(r.playbackRateState$,new vp(1))}).pipe(zE((u,c)=>this.player.liveStreamStatus$.getValue()==="active"?u.liveDuration===c.liveDuration:u.time===c.time)).subscribe(({time:u,liveDuration:c,playbackRate:d})=>{let l=i.position$.getValue(),{playbackCatchupSpeedup:p}=this.params.tuning.dashCmafLive.lowLatency;if(!l&&!this.video.paused&&d>=1-p||gp(u)||gp(c))return;let h=-1*(c-u-t);i.position$.next(Math.min(h,0))})).add(this.player.currentLiveTextRepresentation$.subscribe(u=>{if(u){let c=mT(u);this.params.output.availableTextTracks$.next([c])}})),this.params.tuning.dashCmafLive.externalStopControl||this.subscription.add(this.player.liveStreamStatus$.pipe(QE(u=>y_(u))).subscribe(u=>i.isLiveEnded$.next(u==="unpublished"&&i.position$.getValue()===0)))}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.seek(i).then(()=>{this.params.output.position$.next(e/1e3)})}};import{assertNever as j_,assertNonNullable as W_,combine as Q_,debounce as z_,ErrorCategory as nw,filter as Ap,filterChanged as tn,fromEvent as G_,isNonNullable as ow,isNullable as Y_,map as rn,merge as an,observableFrom as $u,once as uw,Subscription as K_,throttle as X_}from"@vkontakte/videoplayer-shared/es2015";var sw=q(Oe(),1),Pp=q(as(),1);var mi=(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 Ep,assertNonNullable as ra,combine as aa,ErrorCategory as rt,filter as Au,filterChanged as Js,flattenObject as Zs,fromEvent as Ut,getTraceSubscriptionMethod as L_,interval as wp,isNonNullable as en,isNullable as rw,map as sa,merge as nr,now as xp,Subject as qt,Subscription as aw,SubscriptionRemovable as C_,tap as D_,throttle as B_,ValueSubject as ue}from"@vkontakte/videoplayer-shared/es2015";var wu=q(Oe(),1),ar=q(et(),1),xu=q(as(),1);var ew=q(ad(),1);import{assertNever as T_,ErrorCategory as YE,Subject as KE}from"@vkontakte/videoplayer-shared/es2015";var I_=18,XE=!1;try{XE=O.browser.isSafari&&!!O.browser.safariVersion&&O.browser.safariVersion<=I_}catch(s){console.error(s)}var Sp=class{constructor(e,t=!1){this.bufferFull$=new KE;this.error$=new KE;this.queue=[];this.currentTask=null;this.destroyed=!1;this.abortRequested=!1;this.isAbortFixEnabled=!1;this.completeTask=()=>{var e;try{if(this.currentTask){let t=(e=this.currentTask.signal)==null?void 0:e.aborted;this.currentTask.callback(!t),this.currentTask=null,this.isAbortFixEnabled&&this.queue.shift()}this.queue.length&&this.pull()}catch(t){this.error$.next({id:"BufferTaskQueueUnknown",category:YE.VIDEO_PIPELINE,message:"Buffer appending or removal failed",thrown:t})}};this.buffer=e,this.isAbortFixEnabled=t,this.buffer.addEventListener("updateend",this.completeTask)}append(e,t){return y(this,null,function*(){return t&&t.aborted?!1:new Promise(i=>{let r={operation:"append",data:e,signal:t,callback:i};this.queue.push(r),this.pull()})})}remove(e,t,i){return y(this,null,function*(){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()})})}abort(e){return y(this,null,function*(){return new Promise(t=>{let i,r=a=>{this.abortRequested=!1,t(a)};XE&&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(){var r;if((this.buffer.updating||this.currentTask||this.destroyed)&&!this.abortRequested)return;let e=this.isAbortFixEnabled?this.queue[0]:this.queue.shift();if(!e)return;if((r=e.signal)!=null&&r.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:YE.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:T_(t)}}},JE=Sp;var yp=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 bi,assertNonNullable as Ve,ErrorCategory as Ft,fromEvent as Tp,getExponentialDelay as Ip,isHigher as E_,isNonNullable as gi,isNullable as ge,now as Eu,once as w_,Subject as x_,Subscription as P_,ValueSubject as rr,isAbortError as ZE}from"@vkontakte/videoplayer-shared/es2015";var zs=class{constructor(e,t,i,{fetcher:r,tuning:a,getCurrentPosition:n,isActiveLowLatency:o,compatibilityMode:u=!1,manifest:c}){this.currentLiveSegmentServerLatency$=new rr(0);this.currentLowLatencySegmentLength$=new rr(0);this.currentSegmentLength$=new rr(0);this.onLastSegment$=new rr(!1);this.fullyBuffered$=new rr(!1);this.playingRepresentation$=new rr(void 0);this.playingRepresentationInit$=new rr(void 0);this.error$=new x_;this.gaps=[];this.subscription=new P_;this.allInitsLoaded=!1;this.activeSegments=new Set;this.downloadAbortController=new ne;this.switchAbortController=new ne;this.destroyAbortController=new ne;this.useSmartRepresentationSwitch=!1;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=bi(this.destroyAbortController.signal,function(e){return Z(this,null,function*(){let t=this.representations.get(e);Ve(t,`Cannot find representation ${e}`),this.playingRepresentationId=e,this.downloadingRepresentationId=e,this.sourceBuffer=this.mediaSource.addSourceBuffer(`${t.mime}; codecs="${t.codecs}"`),this.sourceBufferTaskQueue=new JE(this.sourceBuffer,this.tuning.dash.useAbortMSEFix),this.subscription.add(Tp(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!=null||(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(Tp(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||!se(this.mediaSource,this.sourceBuffer))return;let u=Math.min(this.bufferLimit,yp(this.sourceBuffer.buffered)*.8);this.bufferLimit=u;let c=this.getForwardBufferDuration(o),d=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(o,n*2,c<d).catch(l=>{this.handleAsyncError(l,"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);Ve(i,"No init buffer for starting representation"),Ve(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=bi(this.destroyAbortController.signal,function(e,t=!1){return Z(this,null,function*(){if(!se(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);Ve(i,`No such representation ${e}`);let r=this.segments.get(e),a=this.initData.get(e);if(ge(a)||ge(r)?yield this.loadInit(i,"high",!1):a instanceof Promise&&(yield a),r=this.segments.get(e),Ve(r,"No segments for starting representation"),a=this.initData.get(e),!(!a||!(a instanceof ArrayBuffer)||!this.sourceBuffer||!se(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();gi(n)&&!this.isLive&&(this.bufferLimit=1/0,yield new vt(this.pruneBuffer(n,1/0,!0))),this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e}this.maintain()}})}.bind(this));this.switchToOld=bi(this.destroyAbortController.signal,function(e,t=!1){return Z(this,null,function*(){if(!se(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);Ve(i,`No such representation ${e}`);let r=this.segments.get(e),a=this.initData.get(e);if(ge(a)||ge(r)?yield this.loadInit(i,"high",!1):a instanceof Promise&&(yield a),r=this.segments.get(e),Ve(r,"No segments for starting representation"),a=this.initData.get(e),!(!a||!(a instanceof ArrayBuffer)||!this.sourceBuffer||!se(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();gi(n)&&(this.isLive||(this.bufferLimit=1/0,yield new vt(this.pruneBuffer(n,1/0,!0))),this.maintain(n)),this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e}})}.bind(this));this.seekLive=bi(this.destroyAbortController.signal,function(e){return Z(this,null,function*(){var u;let t=(0,xu.default)(e,c=>c.representations);if(!this.downloadingRepresentationId||!t.length)return;this.isSeekingLive=!0;for(let c of this.representations.keys()){let d=t.find(h=>h.id===c);d&&this.representations.set(c,d);let l=this.representations.get(c);if(!l||!Ye(l.segmentReference)){this.isSeekingLive=!1;return}let p=this.getActualLiveStartingSegments(l.segmentReference);this.segments.set(l.id,p)}let i=(u=this.switchingToRepresentationId)!=null?u:this.downloadingRepresentationId,r=this.representations.get(i);Ve(r,`Representation not found by id ${i}`);let a=this.segments.get(i);Ve(a,"No segments for starting representation");let n=this.initData.get(i);if(Ve(n,"No init buffer for starting representation"),!(n instanceof ArrayBuffer)){this.isSeekingLive=!1;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));var d;this.fetcher=r,this.tuning=a,this.compatibilityMode=u,this.forwardBufferTarget=a.dash.forwardBufferTargetAuto,this.getCurrentPosition=n,this.isActiveLowLatency=o,this.isLive=!!(c!=null&&c.live),this.baseUrls=(d=c==null?void 0:c.baseUrls)!=null?d:[],this.initData=new Map(i.map(l=>[l.id,null])),this.segments=new Map,this.parsedInitData=new Map,this.representations=new Map(i.map(l=>[l.id,l])),this.kind=e,this.mediaSource=t,this.sourceBuffer=null}switchToWithPreviousAbort(e,t=!1){!se(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId||(this.switchAbortController.abort(),this.switchAbortController=new ne,bi(this.switchAbortController.signal,function(i,r=!1){return Z(this,null,function*(){this.switchingToRepresentationId=i;let a=this.representations.get(i);Ve(a,`No such representation ${i}`);let n=this.segments.get(i),o=this.initData.get(i);if(ge(o)||ge(n)?yield this.loadInit(a,"high",!1):o instanceof Promise&&(yield o),n=this.segments.get(i),Ve(n,"No segments for starting representation"),o=this.initData.get(i),!(!(o instanceof ArrayBuffer)||!this.sourceBuffer||!se(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();gi(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(){!ge(this.sourceBuffer)&&!this.sourceBuffer.updating&&(this.sourceBuffer.mode="segments")}abort(){return y(this,null,function*(){for(let e of this.activeSegments)this.abortSegment(e.segment);return this.activeSegments.clear(),this.downloadAbortController.abort(),this.downloadAbortController=new ne,this.abortBuffer()})}maintain(e=this.getCurrentPosition()){var p;if(ge(e)||ge(this.downloadingRepresentationId)||ge(this.playingRepresentationId)||ge(this.sourceBuffer)||!se(this.mediaSource,this.sourceBuffer)||gi(this.switchingToRepresentationId)||this.isSeekingLive)return;let t=this.representations.get(this.downloadingRepresentationId),i=this.representations.get(this.playingRepresentationId),r=this.segments.get(this.downloadingRepresentationId),a=this.segments.get(this.playingRepresentationId);if(Ve(t,`No such representation ${this.downloadingRepresentationId}`),Ve(i,`No such representation ${this.playingRepresentationId}`),ge(r)||ge(a))return;let n=r.find(h=>e>=h.time.from&&e<h.time.to);gi(n)&&isFinite(n.time.from)&&isFinite(n.time.to)&&this.currentSegmentLength$.next((n==null?void 0:n.time.to)-n.time.from);let o=e,u=100;if(this.playingRepresentationId!==this.downloadingRepresentationId){let h=this.getForwardBufferDuration(e),f=li(i),m=li(t),g=this.useSmartRepresentationSwitch&&this.tuning.dash.useNewRepresentationSwitch&&this.tuning.dash.useSmartRepresentationSwitch&&gi(f)&&gi(m)&&E_(f.quality,m.quality),v=this.useSmartRepresentationSwitch&&this.tuning.dash.useNewRepresentationSwitch&&this.tuning.dash.useDelayedRepresentationSwitch;if(g||v?o+=Math.min(h,this.tuning.dash.representationSwitchForwardBufferGap):n&&n.time.to-e<this.tuning.dash.maxSegmentDurationLeftToSelectNextSegment&&h>=n.time.to-e+u&&(o=n?n.time.to+u:-1/0),this.tuning.dash.useNewRepresentationSwitch){let T=(p=[...this.segments.entries()].map(([I,P])=>{let k=P.find(V=>e>=V.time.from&&e<V.time.to);return{representationId:I,status:k==null?void 0:k.status}}).find(I=>I.status==="fed"))==null?void 0:p.representationId;T&&(this.playingRepresentationId=T,this.playingRepresentation$.next(this.playingRepresentationId),this.playingRepresentationInit$.next(this.parsedInitData.get(this.playingRepresentationId)))}}if(isFinite(this.bufferLimit)&&yp(this.sourceBuffer.buffered)>=this.bufferLimit){let h=this.getForwardBufferDuration(e),f=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(e,1/0,h<f).catch(m=>{this.handleAsyncError(m,"pruneBuffer")});return}let d=[];if(!this.activeSegments.size&&(d=this.selectForwardBufferSegments(r,t.segmentReference.type,o),d.length)){let h="auto";if(this.tuning.dash.useFetchPriorityHints&&n)if((0,wu.default)(d,n))h="high";else{let f=(0,ar.default)(d,0);f&&f.time.from-n.time.to>=this.forwardBufferTarget/2&&(h="low")}this.loadSegments(d,t,h).catch(f=>{this.handleAsyncError(f,"loadSegments")})}(!this.preloadOnly&&!this.allInitsLoaded&&n&&n.status==="fed"&&!d.length&&this.getForwardBufferDuration(e)>3e3||this.isActiveLowLatency())&&this.loadNextInit();let l=(0,ar.default)(r,-1);!this.isLive&&l&&(this.fullyBuffered$.next(l.time.to-e-this.getForwardBufferDuration(e)<u),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;gi(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=e==null?void 0:e.streams[this.kind];if(!t)return;let i=(0,xu.default)(t,a=>a.representations).find(a=>a.id===this.downloadingRepresentationId);if(!i)return;let r=this.segments.get(i.id);if(r!=null&&r.length)return{from:r[0].time.from,to:r[r.length-1].time.to}}updateLive(e){var i,r,a;if(!e||[...this.segments.values()].every(n=>!n.length))return;let t=(0,xu.default)(e.streams[this.kind],n=>n.representations);for(let n of t){if(!n||!Ye(n.segmentReference))return;let o=n.segmentReference.segments.map(p=>C(x({},p),{status:"none",size:void 0})),u=100,c=(i=this.segments.get(n.id))!=null?i:[],d=(a=(r=(0,ar.default)(c,-1))==null?void 0:r.time.to)!=null?a:0,l=o==null?void 0:o.findIndex(p=>d>=p.time.from+u&&d<=p.time.to+u);if(l===-1){this.liveUpdateSegmentIndex=0;let p=this.getActualLiveStartingSegments(n.segmentReference);this.segments.set(n.id,p)}else{let p=o.slice(l+1);this.segments.set(n.id,[...c,...p])}}}proceedLowLatencyLive(){let e=this.downloadingRepresentationId;Ve(e);let t=this.segments.get(e);if(t!=null&&t.length){let i=t[t.length-1];this.updateLowLatencyLiveIfNeeded(i)}}calculateDurationFromSegments(){var t;if(!this.playingRepresentationId)return 0;let e=this.segments.get(this.playingRepresentationId);return(e?(t=(0,ar.default)(e,-1))==null?void 0:t.time.to:0)||0}setSmartRepresentationSwitch(e){this.useSmartRepresentationSwitch=e}updateLowLatencyLiveIfNeeded(e){var i;let t=0;for(let r of this.representations.values()){let a=r.segmentReference;if(!Ye(a))return;let n=(i=this.segments.get(r.id))!=null?i:[],o=n.find(c=>Math.floor(c.time.from)===Math.floor(e.time.from));if(o&&!isFinite(o.time.to)&&(o.time.to=e.time.to,t=o.time.to-o.time.from),!!!n.find(c=>Math.floor(c.time.from)===Math.floor(e.time.to))&&this.isActiveLowLatency()){let c=Math.round(e.time.to*a.timescale/1e3).toString(10),d=dt(a.segmentTemplateUrl,{segmentTime:c});n.push({status:"none",time:{from:e.time.to,to:1/0},url:d})}}this.currentLowLatencySegmentLength$.next(t)}findSegmentStartTime(e){var a,n,o;let t=(n=(a=this.switchingToRepresentationId)!=null?a:this.downloadingRepresentationId)!=null?n:this.playingRepresentationId;if(!t)return;let i=this.segments.get(t);if(!i)return;let r=i.find(u=>u.time.from<=e&&u.time.to>=e);return(o=r==null?void 0:r.time.from)!=null?o:void 0}setTarget(e){this.forwardBufferTarget=e}setPreloadOnly(e){this.preloadOnly=e}destroy(){var e;if(this.initData.clear(),this.segments.clear(),this.parsedInitData.clear(),this.representations.clear(),(e=this.sourceBufferTaskQueue)==null||e.destroy(),this.gapDetectionIdleCallback&&Ki&&Ki(this.gapDetectionIdleCallback),this.initLoadIdleCallback&&Ki&&Ki(this.initLoadIdleCallback),this.subscription.unsubscribe(),this.sourceBuffer)try{this.mediaSource.removeSourceBuffer(this.sourceBuffer)}catch(t){if(!(t instanceof DOMException&&t.name==="NotFoundError"))throw t}this.sourceBuffer=null,this.downloadAbortController.abort(),this.switchAbortController.abort(),this.destroyAbortController.abort(),window.clearTimeout(this.loadByteRangeSegmentsTimeoutId)}selectForwardBufferSegments(e,t,i){return this.isLive?this.selectForwardBufferSegmentsLive(e,i):this.selectForwardBufferSegmentsRecord(e,t,i)}selectForwardBufferSegmentsLive(e,t){let i=e.findIndex(r=>t>=r.time.from&&t<r.time.to);return this.playingRepresentationId!==this.downloadingRepresentationId&&(this.liveUpdateSegmentIndex=i),this.liveUpdateSegmentIndex<e.length?e.slice(this.liveUpdateSegmentIndex++):[]}selectForwardBufferSegmentsRecord(e,t,i){let r=this.getForwardBufferDuration(i),a=e.findIndex(({status:p,time:{from:h,to:f}},m)=>{let g=h<=i&&f>=i,v=h>i||g||m===0&&i===0,S=Math.min(this.forwardBufferTarget,this.bufferLimit),T=this.preloadOnly&&h<=i+S||r<S&&f-h>=S||f<=i+S;return(p==="none"||p==="partially_ejected"&&v&&T&&this.sourceBuffer&&se(this.mediaSource,this.sourceBuffer)&&!(mi(this.sourceBuffer.buffered,h)&&mi(this.sourceBuffer.buffered,f)))&&v&&T});if(a===-1)return[];if(t!=="byteRange")return e.slice(a,a+1);let n=e,o=0,u=0,c=[],d=this.preloadOnly?0:this.tuning.dash.segmentRequestSize,l=this.preloadOnly?this.forwardBufferTarget:0;for(let p=a;p<n.length&&(o<=d||u<=l);p++){let h=n[p];if(o+=h.byte.to+1-h.byte.from,u+=h.time.to+1-h.time.from,h.status==="none"||h.status==="partially_ejected")c.push(h);else break}return c}loadSegments(e,t,i="auto"){return y(this,null,function*(){Ye(t.segmentReference)?yield this.loadTemplateSegment(e[0],t,i):yield this.loadByteRangeSegments(e,t,i)})}loadTemplateSegment(e,t,i="auto"){return y(this,null,function*(){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:c}=this.prepareTemplateFetchSegmentParams(e,t);this.failedDownloads&&o&&(yield bi(o,function(){return Z(this,null,function*(){let d=Ip(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(l=>setTimeout(l,d))})}.bind(this))(),o.aborted&&this.abortActiveSegments([e]));try{let d=yield this.fetcher.fetch(n,{range:a,signal:o,onProgress:u,priority:i,isLowLatency:this.isActiveLowLatency(),bufferOptimisation:this.tuning.dash.fetcherBufferOptimisation});if(this.lastDataObtainedTimestampMs=Eu(),!d)return;let l=new DataView(d),p=Zi(t.mime);if(!isFinite(r.segment.time.to)){let m=t.segmentReference.timescale;r.segment.time.to=p.getChunkEndTime(l,m)}u&&r.feedingBytes&&c?yield Promise.all(c):yield this.sourceBufferTaskQueue.append(l,o);let{serverDataReceivedTimestamp:h,serverDataPreparedTime:f}=p.getServerLatencyTimestamps(l);h&&f&&this.currentLiveSegmentServerLatency$.next(f-h),r.segment.status="downloaded",this.onSegmentFullyAppended(r,t.id),this.failedDownloads=0}catch(d){this.abortActiveSegments([e]),ZE(d)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}})}updateRepresentationsBaseUrlIfNeeded(){if(!this.tuning.dash.enableBaseUrlSupport||!this.baseUrls.length||this.failedDownloads<=this.tuning.dash.maxSegmentRetryCount)return;this.baseUrlsIndex=(this.baseUrlsIndex+1)%this.baseUrls.length;let e=this.baseUrls[this.baseUrlsIndex];for(let t of this.representations.values())Ye(t.segmentReference)?t.segmentReference.baseUrl=e:t.segmentReference.url=e}loadByteRangeSegments(e,t,i="auto"){return y(this,null,function*(){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&&(yield bi(n,function(){return Z(this,null,function*(){let u=Ip(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(c=>{this.loadByteRangeSegmentsTimeoutId=window.setTimeout(c,u),Tp(window,"online").pipe(w_()).subscribe(()=>{c(),window.clearTimeout(this.loadByteRangeSegmentsTimeoutId)})})})}.bind(this))(),n.aborted&&this.abortActiveSegments(e));try{yield this.fetcher.fetch(a,{range:r,onProgress:o,signal:n,priority:i,bufferOptimisation:this.tuning.dash.fetcherBufferOptimisation}),this.lastDataObtainedTimestampMs=Eu(),this.failedDownloads=0}catch(u){this.abortActiveSegments(e),ZE(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,ar.default)(e,0).byte.from,to:(0,ar.default)(e,-1).byte.to},{signal:a}=this.downloadAbortController;return{url:i,range:r,signal:a,onProgress:(o,u)=>y(this,null,function*(){if(!a.aborted)try{this.lastDataObtainedTimestampMs=Eu(),yield this.onSomeByteRangesDataLoaded({dataView:o,loaded:u,signal:a,onSegmentAppendFailed:()=>this.abort(),globalFrom:r?r.from:0,representationId:t.id})}catch(c){this.error$.next({id:"SegmentFeeding",category:Ft.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:c})}})}}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?(c,d)=>{if(!a.aborted)try{this.lastDataObtainedTimestampMs=Eu();let l=this.onSomeTemplateDataLoaded({dataView:c,loaded:d,signal:a,onSegmentAppendFailed:()=>this.abort(),representationId:t.id});n.push(l)}catch(l){this.error$.next({id:"SegmentFeeding",category:Ft.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:l})}}:void 0;return{url:r,signal:a,onProgress:u,onProgressTasks:n}}abortActiveSegments(e){for(let t of this.activeSegments)(0,wu.default)(e,t.segment)&&this.abortSegment(t.segment)}onSomeTemplateDataLoaded(n){return y(this,arguments,function*({dataView:e,representationId:t,loaded:i,onSegmentAppendFailed:r,signal:a}){if(!this.activeSegments.size||!se(this.mediaSource,this.sourceBuffer))return;let o=this.representations.get(t);if(o)for(let u of this.activeSegments){let{segment:c}=u;if(u.representationId===t){if(a.aborted){r();continue}if(u.loadedBytes=i,u.loadedBytes>u.feedingBytes){let d=new DataView(e.buffer,e.byteOffset+u.feedingBytes,u.loadedBytes-u.feedingBytes),l=Zi(o.mime).parseFeedableSegmentChunk(d,this.isLive);l!=null&&l.byteLength&&(c.status="partially_fed",u.feedingBytes+=l.byteLength,yield this.sourceBufferTaskQueue.append(l),u.fedBytes+=l.byteLength)}}}})}onSomeByteRangesDataLoaded(o){return y(this,arguments,function*({dataView:e,representationId:t,globalFrom:i,loaded:r,signal:a,onSegmentAppendFailed:n}){if(!this.activeSegments.size||!se(this.mediaSource,this.sourceBuffer))return;let u=this.representations.get(t);if(u)for(let c of this.activeSegments){let{segment:d}=c;if(c.representationId!==t)continue;if(a.aborted){yield n();continue}let l=d.byte.from-i,p=d.byte.to-i,h=p-l+1,f=l<r,m=p<=r;if(!f)continue;let g=Zi(u.mime);if(d.status==="downloading"&&m){d.status="downloaded";let v=new DataView(e.buffer,e.byteOffset+l,h);(yield this.sourceBufferTaskQueue.append(v,a))&&!a.aborted?this.onSegmentFullyAppended(c,t):yield n()}else if(this.tuning.dash.enableSubSegmentBufferFeeding&&(d.status==="downloading"||d.status==="partially_fed")&&(c.loadedBytes=Math.min(h,r-l),c.loadedBytes>c.feedingBytes)){let v=new DataView(e.buffer,e.byteOffset+l+c.feedingBytes,c.loadedBytes-c.feedingBytes),S=c.loadedBytes===h?v:g.parseFeedableSegmentChunk(v);S!=null&&S.byteLength&&(d.status="partially_fed",c.feedingBytes+=S.byteLength,(yield this.sourceBufferTaskQueue.append(S,a))&&!a.aborted?(c.fedBytes+=S.byteLength,c.fedBytes===h&&this.onSegmentFullyAppended(c,t)):yield n())}}})}onSegmentFullyAppended(e,t){var i;if(!(ge(this.sourceBuffer)||!se(this.mediaSource,this.sourceBuffer))){!this.isLive&&O.browser.isSafari&&this.tuning.useSafariEndlessRequestBugfix&&(mi(this.sourceBuffer.buffered,e.segment.time.from,100)&&mi(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.tuning.dash.useNewRepresentationSwitch||(this.playingRepresentationId=t,this.playingRepresentation$.next(this.playingRepresentationId),this.playingRepresentationInit$.next(this.parsedInitData.get(this.playingRepresentationId))),e.segment.status="fed",ap(e.segment)&&(e.segment.size=e.fedBytes);for(let r of this.representations.values())if(r.id!==t)for(let a of(i=this.segments.get(r.id))!=null?i:[])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[r,a]of this.initData.entries()){let n=a instanceof Promise;t||(t=n),a===null&&(e=r)}if(!e){this.allInitsLoaded=!0;return}if(t)return;let i=this.representations.get(e);i&&(this.initLoadIdleCallback=Yi(()=>(0,ew.default)(this.loadInit(i,"low",!1),()=>this.initLoadIdleCallback=null)))}loadInit(e,t="auto",i=!1){return y(this,null,function*(){let r=this.tuning.dash.useFetchPriorityHints?t:"auto",a=!i&&this.tuning.dash.ignoreNetworkErrorsOnLoadInit,o=(!i&&this.failedDownloads>0?bi(this.destroyAbortController.signal,function(){return Z(this,null,function*(){let u=Ip(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(c=>setTimeout(c,u))})}.bind(this))():Promise.resolve()).then(()=>this.fetcher.fetchRepresentation(e.segmentReference,Zi(e.mime),{priority:r,ignoreNetworkErrors:a})).then(u=>y(this,null,function*(){if(!u)return;let{init:c,dataView:d,segments:l}=u,p=d.buffer.slice(d.byteOffset,d.byteOffset+d.byteLength);this.initData.set(e.id,p);let h=l;this.isLive&&Ye(e.segmentReference)&&(h=this.getActualLiveStartingSegments(e.segmentReference)),(!this.isLive||!this.segments.has(e.id))&&this.segments.set(e.id,h),c&&this.parsedInitData.set(e.id,c)})).then(()=>this.failedDownloads=0,u=>{a||this.initData.set(e.id,null),i&&this.error$.next({id:"LoadInits",category:Ft.WTF,message:"loadInit threw",thrown:u})});return this.initData.set(e.id,o),o})}dropBuffer(){return y(this,null,function*(){for(let e of this.segments.values())for(let t of e)t.status="none";yield this.pruneBuffer(0,1/0,!0)})}pruneBuffer(e,t,i=!1){return y(this,null,function*(){if(!this.sourceBuffer||!se(this.mediaSource,this.sourceBuffer)||!this.playingRepresentationId||ge(e))return!1;let r=[],a=0,n=u=>{u.sort((d,l)=>d.from-l.from);let c=[u[0]];for(let d=1;d<u.length;d++){let{from:l,to:p}=u[d],h=c[c.length-1];h.to>=l?h.to=Math.max(h.to,p):c.push(u[d])}return c},o=u=>{var d;if(a>=t)return r;r.push(x({},u.time)),r=n(r);let c=ap(u)?(d=u.size)!=null?d:0:u.byte.to-u.byte.from;a+=c};for(let u of this.segments.values())for(let c of u){let d=c.time.to<=e-this.tuning.dash.bufferPruningSafeZone,l=c.time.from>=e+Math.min(this.forwardBufferTarget,this.bufferLimit);(d||l)&&c.status==="fed"&&o(c)}for(let u=0;u<this.sourceBuffer.buffered.length;u++){let c=this.sourceBuffer.buffered.start(u)*1e3,d=this.sourceBuffer.buffered.end(u)*1e3,l=0;for(let p of this.segments.values())for(let h of p)(0,wu.default)(["none","partially_ejected"],h.status)&&Math.round(h.time.from)<=Math.round(c)&&Math.round(h.time.to)>=Math.round(d)&&l++;if(l===this.segments.size){let p={time:{from:c,to:d},url:"",status:"none"};o(p)}}if(r.length&&i){let u=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;for(let c of this.segments.values())for(let d of c)d.time.from>=e+u&&d.status==="fed"&&o(d)}return r.length?(yield Promise.all(r.map(c=>this.sourceBufferTaskQueue.remove(c.from,c.to)))).reduce((c,d)=>c||d,!1):!1})}abortBuffer(){return y(this,null,function*(){if(!this.sourceBuffer||!se(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||!se(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||!se(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length||ge(e)?0:di(this.sourceBuffer.buffered,e)}detectGaps(e,t){if(!(!this.sourceBuffer||!se(this.mediaSource,this.sourceBuffer)))for(let i of t){let r={representation:e,from:i.time.from,to:i.time.to,persistent:!1},{buffered:a}=this.sourceBuffer;for(let n=0;n<a.length;n++){let o=a.start(n)*1e3,u=a.end(n)*1e3;if(!(u<=i.time.from||o>=i.time.to)){if(o<=i.time.from&&u>=i.time.to){r=void 0;break}u>i.time.from&&u<i.time.to&&(r.from=u),o<i.time.to&&o>i.time.from&&(r.to=o)}}r&&r.to-r.from>1&&!this.gaps.some(n=>r&&n.from===r.from&&n.to===r.to)&&this.gaps.push(r)}}detectGapsWhenIdle(e,t){if(this.gapDetectionIdleCallback||!this.sourceBuffer||!se(this.mediaSource,this.sourceBuffer))return;let{buffered:i}=this.sourceBuffer,{usePersistentGaps:r}=this.tuning.dash;this.gaps=this.gaps.filter(a=>{if(r&&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}),this.gapDetectionIdleCallback=Yi(()=>{try{this.detectGaps(e,t)}catch(a){this.error$.next({id:"GapDetection",category:Ft.WTF,message:"detectGaps threw",thrown:a})}finally{this.gapDetectionIdleCallback=null}})}checkEjectedSegments(){if(ge(this.sourceBuffer)||!se(this.mediaSource,this.sourceBuffer)||ge(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(d=>d.from-t<=n&&d.to+t>=o),c=e.filter(d=>n>=d.from&&n<d.to-t||o>d.from+t&&o<=d.to);u||(c.length===1?r.status="partially_ejected":this.gaps.some(d=>d.from===r.time.from||d.to===r.time.to)?r.status="partially_ejected":r.status="none")}}handleAsyncError(e,t){this.error$.next({id:t,category:Ft.VIDEO_PIPELINE,thrown:e,message:"Something went wrong"})}};import{abortable as Gs,assertNever as tw,fromEvent as iw,merge as k_,now as sr,Subject as ea,ValueSubject as Ys,flattenObject as ta,ErrorCategory as ia,SubscriptionRemovable as A_,getWindow as Ks,suppressAbort as Pu}from"@vkontakte/videoplayer-shared/es2015";var ku=class{constructor({throughputEstimator:e,requestQuic:t,tracer:i,compatibilityMode:r=!1,useEnableSubtitlesParam:a=!1}){this.manifestRequested$=new ea;this.firstBytesManifest$=new ea;this.firstBytesRequested$=new ea;this.firstBytesReceived$=new ea;this.lastConnectionType$=new Ys(void 0);this.lastConnectionReused$=new Ys(void 0);this.lastRequestFirstBytes$=new Ys(void 0);this.lastConnectionMetrics$=new Ys(void 0);this.lastDownloadMetrics$=new Ys(void 0);this.recoverableError$=new ea;this.error$=new ea;this.abortAllController=new ne;this.subscription=new A_;this.performanceObserver=null;this.pendingConnectionMetrics=new Map;this.fetchManifest=Gs(this.abortAllController.signal,function(e){return Z(this,null,function*(){let t=this.tracer.createComponentTracer("FetchManifest"),i=e;this.requestQuic&&(i=oi(i)),!this.compatibilityMode&&this.useEnableSubtitlesParam&&(i=Xo(i)),this.trackRequestStart(i,performance.now());let r=sr();this.manifestRequested$.next();let a=yield this.doFetch(i,{signal:this.abortAllController.signal}).catch(Pu);if(a){let n=sr();t.log("success",ta({url:i,message:"Request successfully executed"})),t.end(),this.onHeadersReceived(a.headers),this.firstBytesManifest$.next();let o=a.headers.get("content-length"),u=0;o&&(u=parseInt(o,10));let c=yield new vt(a.text());if((!o||isNaN(u)||u<=0)&&(u=new TextEncoder().encode(c).length),u>0){let d=n-r,p=u/(d/1e3)*8/1024,h={bytes:u,speed:p,url:e};this.lastDownloadMetrics$.next(h)}return c}else return t.error("error",ta({url:i,message:"No data in request manifest"})),t.end(),null})}.bind(this));this.fetch=Gs(this.abortAllController.signal,function(l){return Z(this,arguments,function*(e,{rangeMethod:t=this.compatibilityMode?0:1,range:i,onProgress:r,priority:a="auto",signal:n,measureThroughput:o=!0,isLowLatency:u=!1,bufferOptimisation:c=!1,ignoreNetworkErrors:d=!1}={}){var z,$,M;let p=e,h=new Headers,f=this.tracer.createComponentTracer("Fetch");if(i)switch(t){case 0:{h.append("Range",`bytes=${i.from}-${i.to}`);break}case 1:{let E=new URL(p,Ks().location.href);E.searchParams.append("bytes",`${i.from}-${i.to}`),p=E.toString();break}default:tw(t)}this.requestQuic&&(p=oi(p));let m=this.abortAllController.signal,g;if(n){let E=new ne;if(g=k_(iw(this.abortAllController.signal,"abort"),iw(n,"abort")).subscribe(()=>{try{E.abort()}catch(w){Pu(w)}}),this.subscription.add(g),this.abortAllController.signal.aborted||n.aborted)try{E.abort()}catch(w){Pu(w)}m=E.signal}let v=0,S=sr();f.log("startRequest",ta({url:p,priority:a,rangeMethod:t,range:i,isLowLatency:u,requestStartedAt:S})),this.trackRequestStart(p,performance.now()),this.firstBytesRequested$.next();let T=yield this.doFetch(p,{priority:a,headers:h,signal:m},{ignoreNetworkErrors:d}),I=sr();if(!T)return f.error("error",{message:"No response in request"}),f.end(),this.unsubscribeAbortSubscription(g),null;if((z=this.throughputEstimator)==null||z.addRawRtt(I-S),!T.ok||!T.body){this.unsubscribeAbortSubscription(g);let E=`Fetch error ${T.status}: ${T.statusText}`;return f.error("error",{message:E}),f.end(),Promise.reject(new Error(`Fetch error ${T.status}: ${T.statusText}`))}if(this.onHeadersReceived(T.headers),!r&&!o){this.unsubscribeAbortSubscription(g);let E=sr(),w={requestStartedAt:S,requestEndedAt:E,duration:E-S};return f.log("endRequest",ta(w)),f.end(),T.arrayBuffer()}let P=T.body;if(o){let E;[P,E]=T.body.tee(),($=this.throughputEstimator)==null||$.trackStream(E,u)}let k=P.getReader(),V,_=parseInt((M=T.headers.get("content-length"))!=null?M:"",10);Number.isFinite(_)&&(V=_),!V&&i&&(V=i.to-i.from+1);let L=V?new Uint8Array(V):new Uint8Array(0),R=!1,F=E=>{this.unsubscribeAbortSubscription(g),R=!0,Pu(E)},B=Gs(m,function(U){return Z(this,arguments,function*({done:E,value:w}){if(v===0&&(this.lastRequestFirstBytes$.next(sr()-S),this.firstBytesReceived$.next()),m.aborted){this.unsubscribeAbortSubscription(g);return}if(!E&&w){if(c&&V)L.set(w,v),v+=w.byteLength;else{let N=new Uint8Array(L.length+w.length);N.set(L),N.set(w,L.length),L=N,v+=w.byteLength}r==null||r(new DataView(L.buffer),v),yield k==null?void 0:k.read().then(B,F)}})}.bind(this));yield k==null?void 0:k.read().then(B,F),this.unsubscribeAbortSubscription(g);let H=sr(),J={failed:R,requestStartedAt:S,requestEndedAt:H,duration:H-S};if(R)return f.error("endRequest",ta(J)),f.end(),null;if(v>0){let E=H-S,U=v/(E/1e3)*8/1024,N={bytes:v,speed:U,url:e};this.lastDownloadMetrics$.next(N)}return f.log("endRequest",ta(J)),f.end(),L.buffer})}.bind(this));this.fetchByteRangeRepresentation=Gs(this.abortAllController.signal,function(e,t,i){return Z(this,null,function*(){var v;if(e.type!=="byteRange")return null;let{from:r,to:a}=e.initRange,n=r,o=a,u=!1,c,d;e.indexRange&&(c=e.indexRange.from,d=e.indexRange.to,u=a+1===c,u&&(n=Math.min(c,r),o=Math.max(d,a))),n=Math.min(n,0);let l=yield this.fetch(e.url,x({range:{from:n,to:o},measureThroughput:!1},i));if(!l)return null;let p=new DataView(l,r-n,a-n+1);if(!t.validateData(p))throw new Error("Invalid media file");let h=t.parseInit(p),f=(v=e.indexRange)!=null?v:t.getIndexRange(h);if(!f)throw new ReferenceError("No way to load representation index");let m;if(u)m=new DataView(l,f.from-n,f.to-f.from+1);else{let S=yield this.fetch(e.url,{range:f,measureThroughput:!1});if(!S)return null;m=new DataView(S)}let g=t.parseSegments(m,h,f);return{init:h,dataView:new DataView(l),segments:g}})}.bind(this));this.fetchTemplateRepresentation=Gs(this.abortAllController.signal,function(e,t){return Z(this,null,function*(){if(e.type!=="template")return null;let i=new URL(e.initUrl,e.baseUrl).toString(),r=yield this.fetch(i,x({measureThroughput:!1},t));return r?{init:null,segments:e.segments.map(n=>C(x({},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,Ks().PerformanceObserver&&this.setupPerformanceObserver()}onHeadersReceived(e){let{type:t,reused:i}=Ko(e);this.lastConnectionType$.next(t),this.lastConnectionReused$.next(i)}setupPerformanceObserver(){this.performanceObserver=new(Ks()).PerformanceObserver(e=>{e.getEntriesByType("resource").forEach(t=>{this.processPerformanceResourceTiming(t)})}),this.performanceObserver.observe({entryTypes:["resource"]})}processPerformanceResourceTiming(e){let t=this.findMatchingRequest(e);if(!t||!this.pendingConnectionMetrics.get(t))return;this.pendingConnectionMetrics.delete(t);let r=this.extractConnectionMetrics(e);r&&this.lastConnectionMetrics$.next(r)}estimateNetworkType(){if(!("connection"in Ks().navigator))return"unknown";let e=Ks().navigator.connection;return e.effectiveType?{"slow-2g":"2g","2g":"2g","3g":"3g","4g":"lte"}[e.effectiveType]||e.effectiveType:e.downlink?e.downlink<1?"2g":e.downlink<5?"3g":e.downlink<50?"lte":"wifi":e.rtt?e.rtt>500?"2g":e.rtt>250?"3g":e.rtt>50?"lte":"wifi":"unknown"}extractConnectionMetrics(e){let t=0,i=0,r=0,a=0;return e.domainLookupStart>0&&e.domainLookupEnd>0&&(t=e.domainLookupEnd-e.domainLookupStart),e.connectStart>0&&e.connectEnd>0&&(a=e.connectEnd-e.connectStart,e.secureConnectionStart>0?(r=e.connectEnd-e.secureConnectionStart,i=e.secureConnectionStart-e.connectStart):i=a),{dnsResolveTime:Math.max(0,t),tcpHandshakeTime:Math.max(0,i),tlsHandshakeTime:Math.max(0,r),totalConnectTime:Math.max(0,a),networkType:this.estimateNetworkType(),url:e.name}}findMatchingRequest(e){try{for(let[t,i]of this.pendingConnectionMetrics.entries()){let r=new URL(e.name),a=r.origin+r.pathname,n=new URL(i.url),o=n.origin+n.pathname;if(a===o&&e.startTime>=i.startTime-10&&e.startTime<=i.startTime+1e3)return t}}catch(t){this.recoverableError$.next({id:"VideoDataFetchError",message:"Video data fetch error with getting download metrics",category:ia.WTF})}return null}trackRequestStart(e,t){let i=`${e}_${t}_${Math.random().toString(36).substr(2,9)}`;this.pendingConnectionMetrics.set(i,{url:e,startTime:t})}fetchRepresentation(e,t,i){return y(this,null,function*(){var a,n;let{type:r}=e;switch(r){case"byteRange":return(a=yield this.fetchByteRangeRepresentation(e,t,i))!=null?a:null;case"template":return(n=yield this.fetchTemplateRepresentation(e,i))!=null?n:null;default:tw(r)}})}destroy(){this.abortAllController.abort(),this.subscription.unsubscribe(),this.performanceObserver&&(this.performanceObserver.disconnect(),this.performanceObserver=null),this.pendingConnectionMetrics.clear(),this.tracer.end()}doFetch(e,t,i){return y(this,null,function*(){let r=yield it(e,t);if(r.ok)return r;if(i!=null&&i.ignoreNetworkErrors)return;let a=yield r.text(),n=parseInt(a);if(!isNaN(n))switch(n){case 1:this.recoverableError$.next({id:"VideoDataLinkExpiredError",message:"Video data links have expired",category:ia.FATAL,httpCode:r.status,UVBackendErrorCode:a});break;case 8:this.recoverableError$.next({id:"VideoDataLinkBlockedForFloodError",message:"Url blocked for flood",category:ia.FATAL,httpCode:r.status,UVBackendErrorCode:a});break;case 18:this.recoverableError$.next({id:"VideoDataLinkIllegalIpChangeError",message:"Client IP has changed",category:ia.FATAL,httpCode:r.status,UVBackendErrorCode:a});break;case 21:this.recoverableError$.next({id:"VideoDataLinkIllegalHostChangeError",message:"Request HOST has changed",category:ia.FATAL,httpCode:r.status,UVBackendErrorCode:a});break;default:this.error$.next({id:"GeneralVideoDataFetchError",message:`Generic video data fetch error (${n})`,category:ia.FATAL,httpCode:r.status,UVBackendErrorCode:a})}})}unsubscribeAbortSubscription(e){e&&(e.unsubscribe(),this.subscription.remove(e))}};import{isNullable as R_,ValueSubject as M_}from"@vkontakte/videoplayer-shared/es2015";var Xs=class s{constructor(e,t){this.currentRepresentation$=new M_(null);this.maxRepresentations=4;this.representationsCursor=0;this.representations=[];this.currentSegment=null;this.getCurrentPosition=t.getCurrentPosition,this.processStreams(e)}updateLive(e){this.processStreams(e==null?void 0:e.streams.text)}seekLive(e){this.processStreams(e)}maintain(e=this.getCurrentPosition()){var t;if(!R_(e))for(let i of this.representations)for(let r of i){let a=r.segmentReference,n=a.segments.length,o=a.segments[0].time.from,u=a.segments[n-1].time.to;if(e<o||e>u)continue;let c=a.segments.find(d=>d.time.from<=e&&d.time.to>=e);!c||((t=this.currentSegment)==null?void 0:t.time.from)===c.time.from&&this.currentSegment.time.to===c.time.to||(this.currentSegment=c,this.currentRepresentation$.next(C(x({},r),{label:"Live Text",language:"ru",isAuto:!0,url:new URL(c.url,a.baseUrl).toString()})))}}destroy(){this.currentRepresentation$.next(null),this.currentSegment=null,this.representations=[]}processStreams(e){for(let t of e!=null?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!=null&&e.some(t=>s.filterRepresentations(t.representations)))}static filterRepresentations(e){return e==null?void 0:e.filter(t=>t.kind==="text"&&"segmentReference"in t&&Ye(t.segmentReference))}};var V_=["timeupdate","progress","play","seeked","stalled","waiting"],__=["timeupdate","progress","loadeddata","playing","seeked"];var Ru=class{constructor(e){this.element=null;this.manifestUrlString="";this.source=null;this.manifest=null;this.bufferManagers=[];this.subscription=new aw;this.subscriptionRemovable=new C_;this.representationSubscription=new aw;this.state$=new Q("none");this.currentVideoRepresentation$=new ue(void 0);this.currentVideoRepresentationInit$=new ue(void 0);this.currentAudioRepresentation$=new ue(void 0);this.currentVideoSegmentLength$=new ue(0);this.currentAudioSegmentLength$=new ue(0);this.error$=new qt;this.manifestRequested$=new qt;this.firstBytesManifest$=new qt;this.manifestReceived$=new qt;this.firstBytesRequested$=new qt;this.firstBytesReceived$=new qt;this.lastConnectionType$=new ue(void 0);this.lastConnectionReused$=new ue(void 0);this.lastRequestFirstBytes$=new ue(void 0);this.lastConnectionMetrics$=new ue(void 0);this.lastDownloadMetrics$=new ue(void 0);this.currentLiveTextRepresentation$=new ue(null);this.isLive$=new ue(!1);this.isActiveLive$=new ue(!1);this.isLowLatency$=new ue(!1);this.liveDuration$=new ue(0);this.liveSeekableDuration$=new ue(0);this.liveAvailabilityStartTime$=new ue(0);this.liveStreamStatus$=new ue(void 0);this.bufferLength$=new ue(0);this.liveLatency$=new ue(void 0);this.liveLoadBufferLength$=new ue(0);this.livePositionFromPlayer$=new ue(0);this.currentStallDuration$=new ue(0);this.videoLastDataObtainedTimestamp$=new ue(0);this.fetcherRecoverableError$=new qt;this.fetcherError$=new qt;this.liveStreamEndTimestamp=0;this.isUpdatingLive=!1;this.isJumpGapAfterSeekLive=!1;this.forceEnded$=new qt;this.gapWatchdogActive=!1;this.liveWasInterrupted=!1;this.destroyController=new ne;this.initManifest=Ep(this.destroyController.signal,function(e,t,i){return Z(this,null,function*(){var r;this.tracer.log("initManifest"),this.element=e,this.manifestUrlString=pe(t,i,2),this.state$.startTransitionTo("manifest_ready"),this.manifest=yield this.updateManifest(),(r=this.manifest)!=null&&r.streams.video.length?this.state$.setState("manifest_ready"):this.error$.next({id:"NoRepresentations",category:rt.PARSER,message:"No playable video representations"})})}.bind(this));this.updateManifest=Ep(this.destroyController.signal,function(){return Z(this,null,function*(){var u,c;this.tracer.log("updateManifestStart",{manifestUrl:this.manifestUrlString});let e=yield this.fetcher.fetchManifest(this.manifestUrlString).catch(d=>{!this.manifest&&!this.bufferLength$.getValue()&&this.error$.next({id:"LoadManifest",category:rt.NETWORK,message:"Failed to load manifest",thrown:d})});if(!e)return null;let t=null;try{t=iu(e!=null?e:"",this.manifestUrlString),this.manifestReceived$.next()}catch(d){let l=(u=Yo(e))!=null?u:{id:"ManifestParsing",category:rt.PARSER,message:"Failed to parse MPD manifest",thrown:d};this.error$.next(l)}if(!t)return null;let i=(d,l,p)=>{var h,f,m,g;return!!((f=(h=this.element)==null?void 0:h.canPlayType)!=null&&f.call(h,l)&&((g=(m=ze())==null?void 0:m.isTypeSupported)!=null&&g.call(m,`${l}; codecs="${p}"`))||d==="text")};if(t.live){this.isLive$.next(!0);let{availabilityStartTime:d,latestSegmentPublishTime:l,streamIsUnpublished:p,streamIsAlive:h}=t.live,f=((c=t.duration)!=null?c:0)/1e3;this.liveSeekableDuration$.next(-1*f),this.liveDuration$.next((l-d)/1e3),this.liveAvailabilityStartTime$.next(t.live.availabilityStartTime);let m="active";if(h||(m=p?"unpublished":"unexpectedly_down"),this.liveStreamStatus$.next(m),h&&this.liveWasInterrupted){this.liveWasInterrupted=!1,this.stopStallWatchdogSubscription();let g=this.normalizeLiveOffset(-1*this.livePositionFromPlayer$.getValue()*1e3);this.seekLive(g).catch(v=>{this.error$.next({id:"updateManifest",category:rt.VIDEO_PIPELINE,message:"seekLive after stream restore failed",thrown:v})})}}let r={text:t.streams.text,video:[],audio:[]},a,n;for(let d of["video","audio"]){let p=t.streams[d].filter(({mime:f,codecs:m})=>i(d,f,m));r[d]=p;let h;if(this.tuning.dash.codecsPrioritizeEnabled){let f=p.map(({codecs:m})=>m);d==="audio"&&(n=cu(f),h=n[0]),d==="video"&&(a=uu(f),this.forceVideoCodec&&(0,sw.default)(a,this.forceVideoCodec)?h=this.forceVideoCodec:h=a[0]),h&&(r[d]=p.filter(({codecs:m})=>ui(m)===h))}else{let f=new Set(p.map(({codecs:m})=>m));h=ou(f),h&&(r[d]=p.filter(({codecs:m})=>m.startsWith(h)))}if(d==="video"){let f=this.tuning.preferHDR,m=r.video.some(S=>S.hdr),g=r.video.some(S=>!S.hdr);O.display.isHDR&&f&&m?r.video=r.video.filter(S=>S.hdr):g&&(r.video=r.video.filter(S=>!S.hdr));let{videoStreamRepresentaionsFilter:v}=this.tuning.dash;v.length&&hu(r,v)}}let o=C(x({},t),{streams:r});return this.tuning.dash.codecsPrioritizeEnabled&&(o.codecs={video:a,audio:n}),this.tracer.log("updateManifestEnd",Zs(o)),o})}.bind(this));this.initRepresentations=Ep(this.destroyController.signal,function(e,t,i){return Z(this,null,function*(){var l;this.tracer.log("initRepresentationsStart",Zs({initialVideo:e,initialAudio:t,sourceHls:i})),ra(this.manifest),ra(this.element),this.representationSubscription.unsubscribe(),this.state$.startTransitionTo("representations_ready");let r=p=>{this.representationSubscription.add(Ut(p,"error").pipe(Au(h=>{var f;return!!((f=this.element)!=null&&f.played.length)})).subscribe(h=>{this.error$.next({id:"VideoSource",category:rt.VIDEO_PIPELINE,message:"Unexpected video source error",thrown:h})}))};this.source=Wn();let a=document.createElement("source");if(r(a),a.src=URL.createObjectURL(this.source),this.element.appendChild(a),Er())if(i){let p=document.createElement("source");r(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 zs("video",this.source,o,n),this.bufferManagers=[this.videoBufferManager],en(t)){let p=this.manifest.streams.audio.reduce((h,f)=>[...h,...f.representations],[]);this.audioBufferManager=new zs("audio",this.source,p,n),this.bufferManagers.push(this.audioBufferManager)}if(Xs.isSupported(this.manifest.streams.text)&&!this.isLowLatency$.getValue()&&(this.liveTextManager=new Xs(this.manifest.streams.text,n)),this.representationSubscription.add(this.fetcher.lastRequestFirstBytes$.subscribe(this.lastRequestFirstBytes$)),this.representationSubscription.add(nr(...__.map(p=>Ut(this.element,p))).pipe(sa(p=>this.element?di(this.element.buffered,this.element.currentTime*1e3):0),Js(),D_(p=>{p>this.tuning.dash.bufferEmptinessTolerance&&this.stopStallWatchdogSubscription()})).subscribe(this.bufferLength$)),this.representationSubscription.add(nr(Ut(this.element,"ended"),this.forceEnded$).subscribe(()=>{this.stopStallWatchdogSubscription()})),this.isLive$.getValue()){this.subscription.add(this.liveDuration$.pipe(Js()).subscribe(h=>this.liveStreamEndTimestamp=xp())),this.subscription.add(Ut(this.element,"pause").subscribe(()=>{let{liveUpdateInterval:h}=this.tuning.dash;this.livePauseWatchdogSubscription=wp(h).subscribe(f=>{let m=ei(this.manifestUrlString,2);this.manifestUrlString=pe(this.manifestUrlString,m+h,2),this.liveStreamStatus$.getValue()==="active"&&this.updateManifest()}),this.subscription.add(this.livePauseWatchdogSubscription)})).add(Ut(this.element,"play").subscribe(h=>{var f;return(f=this.livePauseWatchdogSubscription)==null?void 0:f.unsubscribe()})),this.representationSubscription.add(aa({isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe(sa(({isActiveLive:h,isLowLatency:f})=>h&&f),Js()).subscribe(h=>{this.isManualDecreasePlaybackInLive()||Jr(this.element,1)})),this.representationSubscription.add(aa({bufferLength:this.bufferLength$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe(Au(({bufferLength:h,isActiveLive:f,isLowLatency:m})=>f&&m&&!!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(aa({isLive:this.isLive$,rtt:this.throughputEstimator.rtt$,bufferLength:this.bufferLength$,segmentServerLatency:this.videoBufferManager.currentLiveSegmentServerLatency$}).pipe(Au(({isLive:h})=>h),Js((h,f)=>f.bufferLength<h.bufferLength),sa(({rtt:h,bufferLength:f,segmentServerLatency:m})=>{let g=ei(this.manifestUrlString,2);return(h/2+f+m+g)/1e3})).subscribe(this.liveLatency$)),this.representationSubscription.add(aa({liveBuffer:this.liveBuffer.smoothed$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).subscribe(({liveBuffer:h,isActiveLive:f,isLowLatency:m})=>{if(!m||!f)return;let g=this.tuning.dashCmafLive.lowLatency.maxTargetOffset,v=this.tuning.dashCmafLive.lowLatency.maxTargetOffsetDeviation,S=this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup,T=h-g;if(this.isManualDecreasePlaybackInLive())return;let I=1;Math.abs(T)>v&&(I=1+Math.sign(T)*S),Jr(this.element,I)})),this.representationSubscription.add(this.bufferLength$.subscribe(h=>{var m,g;let f=0;if(h){let v=((g=(m=this.element)==null?void 0:m.currentTime)!=null?g:0)*1e3;f=Math.min(...this.bufferManagers.map(T=>{var I,P;return(P=(I=T.getLiveSegmentsToLoadState(this.manifest))==null?void 0:I.to)!=null?P:v}))-v}this.liveLoadBufferLength$.getValue()!==f&&this.liveLoadBufferLength$.next(f)}));let p=0;this.representationSubscription.add(aa({liveLoadBufferLength:this.liveLoadBufferLength$,bufferLength:this.bufferLength$}).pipe(B_(this.tuning.dash.liveUpdateInterval)).subscribe(m=>y(this,[m],function*({liveLoadBufferLength:h,bufferLength:f}){if(!this.element||this.isUpdatingLive)return;let g=this.element.playbackRate,v=ei(this.manifestUrlString,2),S=Math.abs(this.livePositionFromPlayer$.getValue())*1e3,T=Math.min(S,this.tuning.dashCmafLive.normalizedTargetMinBufferSize*g),I=this.tuning.dashCmafLive.normalizedActualBufferOffset*g,P=this.tuning.dashCmafLive.normalizedLiveMinBufferSize*g,k=isFinite(h)?h:f,V=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),_=S<=this.tuning.live.activeLiveDelay;this.isActiveLive$.next(_);let L="none";if(V?L="active_low_latency":this.isLowLatency$.getValue()&&_?(this.bufferManagers.forEach(R=>R.proceedLowLatencyLive()),L="active_low_latency"):v!==0&&k<T?L="live_forward_buffering":k<T+P&&(L="live_with_target_offset"),isFinite(h)&&(p=h>p?h:p),L==="live_forward_buffering"||L==="live_with_target_offset"){let R=p-(T+I),F=this.normalizeLiveOffset(Math.trunc(v+R/g)),B=Math.abs(F-v),H=0;!h||B<=this.tuning.dashCmafLive.offsetCalculationError?H=v:F>0&&B>this.tuning.dashCmafLive.offsetCalculationError&&(H=F),this.manifestUrlString=pe(this.manifestUrlString,H,2)}(L==="live_with_target_offset"||L==="live_forward_buffering")&&(p=0,yield this.updateLive())}),h=>{this.error$.next({id:"updateLive",category:rt.VIDEO_PIPELINE,thrown:h,message:"Failed to update live with subscription"})}))}let u=nr(...this.bufferManagers.map(p=>p.fullyBuffered$)).pipe(sa(()=>this.bufferManagers.every(p=>p.fullyBuffered$.getValue()))),c=nr(...this.bufferManagers.map(p=>p.onLastSegment$)).pipe(sa(()=>this.bufferManagers.some(p=>p.onLastSegment$.getValue()))),d=aa({allBuffersFull:u,someBufferEnded:c}).pipe(Js(),sa(({allBuffersFull:p,someBufferEnded:h})=>p&&h),Au(p=>p));if(this.representationSubscription.add(nr(this.forceEnded$,d).subscribe(()=>{var p;if(this.source&&this.source.readyState==="open"&&Array.from(this.source.sourceBuffers).every(h=>!h.updating))try{(p=this.source)==null||p.endOfStream()}catch(h){this.error$.next({id:"EndOfStream",category:rt.VIDEO_PIPELINE,message:"Failed to end MediaSource stream",thrown:h})}})),this.representationSubscription.add(nr(...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=>{var f;p&&(this.timeoutSourceOpenId=setTimeout(()=>{var m;if(((m=this.source)==null?void 0:m.readyState)==="open"){h();return}this.error$.next({id:"OpenOfStream",category:rt.VIDEO_PIPELINE,message:"Failed to open MediaSource",thrown:new Error("Timeout reject when wait sourceopen event"),traceAsLog:!0})},this.tuning.dash.sourceOpenTimeout)),(f=this.source)==null||f.addEventListener("sourceopen",()=>{this.timeoutSourceOpenId&&clearTimeout(this.timeoutSourceOpenId),h()},{once:!0})})}if(!this.isLive$.getValue()){let p=[(l=this.manifest.duration)!=null?l:0,...(0,Pp.default)((0,Pp.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(...p)/1e3}this.audioBufferManager&&en(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=()=>{var t,i,r,a;if(!this.element||!this.videoBufferManager||((t=this.source)==null?void 0:t.readyState)!=="open")return;let e=this.element.currentTime*1e3;this.videoBufferManager.maintain(e),(i=this.audioBufferManager)==null||i.maintain(e),(r=this.liveTextManager)==null||r.maintain(e),(this.videoBufferManager.gaps.length||(a=this.audioBufferManager)!=null&&a.gaps.length)&&!this.gapWatchdogActive&&(this.gapWatchdogActive=!0,this.gapWatchdogSubscription=wp(this.tuning.gapWatchdogInterval).subscribe(()=>this.jumpGap(),n=>{this.error$.next({id:"GapWatchdog",category:rt.WTF,message:"Error handling gaps",thrown:n})}),this.subscription.add(this.gapWatchdogSubscription))};this.throughputEstimator=e.throughputEstimator,this.tuning=e.tuning,this.tracer=e.tracer.createComponentTracer(this.constructor.name),this.forceVideoCodec=e.forceVideoCodec,this.fetcher=new ku({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.subscription.add(this.fetcher.manifestRequested$.subscribe(this.manifestRequested$)),this.subscription.add(this.fetcher.firstBytesManifest$.subscribe(this.firstBytesManifest$)),this.subscription.add(this.fetcher.firstBytesRequested$.subscribe(this.firstBytesRequested$)),this.subscription.add(this.fetcher.firstBytesReceived$.subscribe(this.firstBytesReceived$)),this.subscription.add(this.fetcher.lastConnectionType$.subscribe(this.lastConnectionType$)),this.subscription.add(this.fetcher.lastConnectionReused$.subscribe(this.lastConnectionReused$)),this.subscription.add(this.fetcher.lastConnectionMetrics$.subscribe(this.lastConnectionMetrics$)),this.subscription.add(this.fetcher.lastDownloadMetrics$.subscribe(this.lastDownloadMetrics$)),this.liveBuffer=Nt.getLiveBufferSmoothedValue(this.tuning.dashCmafLive.lowLatency.maxTargetOffset,x({},e.tuning.dashCmafLive.lowLatency.bufferEstimator)),this.initTracerSubscription()}setSmartRepresentationSwitch(e){this.bufferManagers.forEach(t=>t.setSmartRepresentationSwitch(e))}seekLive(e){return y(this,null,function*(){ra(this.element),this.updateManifestUrlWithTimeOffset(e),this.manifest=yield this.updateManifest(),this.manifest&&(this.isJumpGapAfterSeekLive=!0,yield this.updateLiveBuffersFromManifest(this.manifest))})}updateManifestUrlWithTimeOffset(e){let t=this.liveStreamStatus$.getValue()!=="active"?xp()-this.liveStreamEndTimestamp:0,i=this.normalizeLiveOffset(e+t);this.isActiveLive$.next(i===0),this.manifestUrlString=pe(this.manifestUrlString,i,2)}updateLiveBuffersFromManifest(e){return y(this,null,function*(){var t,i,r;yield(t=this.videoBufferManager)==null?void 0:t.seekLive(e.streams.video),yield(i=this.audioBufferManager)==null?void 0:i.seekLive(e.streams.audio),(r=this.liveTextManager)==null||r.seekLive(e.streams.text)})}stopStallWatchdogSubscription(){var e;(e=this.stallWatchdogSubscription)==null||e.unsubscribe(),this.currentStallDuration$.next(0)}initBuffer(){ra(this.element),this.state$.setState("running"),this.subscription.add(nr(...V_.map(e=>Ut(this.element,e)),Ut(window,"online")).subscribe(()=>this.tick(),e=>{this.error$.next({id:"DashVKPlayer",category:rt.WTF,message:"Internal logic error",thrown:e})})),this.subscription.add(Ut(this.element,"progress").subscribe(()=>{this.element&&this.element.readyState===2&&!this.element.seeking&&(this.element.currentTime=this.element.currentTime)})),this.subscription.add(Ut(this.element,"waiting").subscribe(()=>{this.tuning.dash.useVideoElementWaitingCurrentTimeReassign&&this.element&&this.element.readyState===2&&!this.element.seeking&&mi(this.element.buffered,this.element.currentTime*1e3)&&(this.element.currentTime=this.element.currentTime);let e=()=>{var I,P,k,V,_,L,R,F,B,H,J;let{keepSilentStallWatchdogWhenNotActive:t}=this.tuning.dashCmafLive,{crashOnStallTimeout:i,crashOnStallTWithoutDataTimeout:r,liveStallReinitInterval:a,stallWatchdogInterval:n}=this.tuning.dash,o=this.isLive$.getValue(),c=this.liveStreamStatus$.getValue()==="active";if(!this.element||((I=this.source)==null?void 0:I.readyState)!=="open")return;let d=this.currentStallDuration$.getValue();d+=n,this.currentStallDuration$.next(d);let l={timeInWaiting:d},p=xp(),h=100,f=(k=(P=this.videoBufferManager)==null?void 0:P.lastDataObtainedTimestamp)!=null?k:0;this.videoLastDataObtainedTimestamp$.next(f);let m=(_=(V=this.audioBufferManager)==null?void 0:V.lastDataObtainedTimestamp)!=null?_:0,g=(R=(L=this.videoBufferManager)==null?void 0:L.getForwardBufferDuration())!=null?R:0,v=(B=(F=this.audioBufferManager)==null?void 0:F.getForwardBufferDuration())!=null?B:0,S=g<h&&p-f>r,T=this.audioBufferManager&&v<h&&p-m>r;if((!t||c)&&((S||T)&&d>r||d>=i))throw new Error(`Stall timeout exceeded: ${d} ms`);if(o&&d%a===0){let z=this.normalizeLiveOffset(-1*this.livePositionFromPlayer$.getValue()*1e3);!c&&t?(this.liveWasInterrupted=!0,this.updateManifestUrlWithTimeOffset(z),this.updateManifest()):this.seekLive(z).catch($=>{this.error$.next({id:"stallIntervalCallback",category:rt.VIDEO_PIPELINE,message:"stallIntervalCallback failed",thrown:$})}),l.liveLastOffset=z}else{let z=this.element.currentTime*1e3;(H=this.videoBufferManager)==null||H.maintain(z),(J=this.audioBufferManager)==null||J.maintain(z),l.position=z}this.tracer.log("stallIntervalCallback",Zs(l))};this.stallWatchdogSubscription&&(this.stallWatchdogSubscription.unsubscribe(),this.subscriptionRemovable.remove(this.stallWatchdogSubscription)),this.stallWatchdogSubscription=wp(this.tuning.dash.stallWatchdogInterval).subscribe(e,t=>{this.error$.next({id:"StallWatchdogCallback",category:rt.NETWORK,message:"Can't restore DASH after stall.",thrown:t})}),this.subscriptionRemovable.add(this.stallWatchdogSubscription)})),this.tick()}switchRepresentation(e,t,i=!1){return y(this,null,function*(){let r={video:this.videoBufferManager,audio:this.audioBufferManager,text:null}[e];return this.tuning.useNewSwitchTo?this.currentStallDuration$.getValue()>0?r==null?void 0:r.switchToWithPreviousAbort(t,i):r==null?void 0:r.switchTo(t,i):r==null?void 0:r.switchToOld(t,i)})}seek(e,t){return y(this,null,function*(){var r,a,n,o,u;ra(this.element),ra(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((r=this.videoBufferManager.findSegmentStartTime(e))!=null?r:e,(n=(a=this.audioBufferManager)==null?void 0:a.findSegmentStartTime(e))!=null?n:e),this.warmUpMediaSourceIfNeeded(i),mi(this.element.buffered,i)||(yield Promise.all([this.videoBufferManager.abort(),(o=this.audioBufferManager)==null?void 0:o.abort()])),!(rw(this.element)||rw(this.videoBufferManager))&&(this.videoBufferManager.maintain(i),(u=this.audioBufferManager)==null||u.maintain(i),this.element.currentTime=i/1e3,this.tracer.log("seek",Zs({requestedPosition:e,forcePrecise:t,position:i})))})}warmUpMediaSourceIfNeeded(e=(t=>(t=this.element)==null?void 0:t.currentTime)()){var i;en(this.element)&&en(this.source)&&en(e)&&((i=this.source)==null?void 0:i.readyState)==="ended"&&this.element.duration*1e3-e>this.tuning.dash.seekBiasInTheEnd&&this.bufferManagers.forEach(r=>r.warmUpMediaSource())}get isStreamEnded(){var e;return((e=this.source)==null?void 0:e.readyState)==="ended"}stop(){var e,t,i;this.tracer.log("stop"),(e=this.element)==null||e.querySelectorAll("source").forEach(r=>{URL.revokeObjectURL(r.src),r.remove()}),this.element=null,this.source=null,this.manifest=null,this.currentVideoRepresentation$.next(void 0),(t=this.videoBufferManager)==null||t.destroy(),this.videoBufferManager=null,(i=this.audioBufferManager)==null||i.destroy(),this.audioBufferManager=null,this.bufferManagers=[],this.state$.setState("none")}setBufferTarget(e){for(let t of this.bufferManagers)t.setTarget(e)}getStreams(){var e;return(e=this.manifest)==null?void 0:e.streams}getCodecs(){var e;return(e=this.manifest)==null?void 0:e.codecs}setPreloadOnly(e){for(let t of this.bufferManagers)t.setPreloadOnly(e)}destroy(){var e;this.subscription.unsubscribe(),this.subscriptionRemovable.unsubscribe(),this.representationSubscription.unsubscribe(),this.timeoutSourceOpenId&&clearTimeout(this.timeoutSourceOpenId),this.destroyController.abort(),this.fetcher.destroy(),this.stop(),((e=this.source)==null?void 0:e.readyState)==="open"&&Array.from(this.source.sourceBuffers).every(t=>!t.updating)&&this.source.endOfStream(),this.source=null,this.tracer.end()}initTracerSubscription(){let e=L_(this.tracer.error.bind(this.tracer));this.subscription.add(this.error$.subscribe(e("error")))}isManualDecreasePlaybackInLive(){if(!this.element||!this.isLive$.getValue())return!1;let e=1-this.element.playbackRate;return Number(e.toFixed(2))>Number(this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup.toFixed(2))}normalizeLiveOffset(e){return Math.trunc(e/1e3)*1e3}updateLive(){return y(this,null,function*(){var e;this.isUpdatingLive=!0,this.manifest=yield this.updateManifest(),this.manifest&&(this.bufferManagers.forEach(t=>t.updateLive(this.manifest)),(e=this.liveTextManager)==null||e.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},{usePersistentGaps:r}=this.tuning.dash;this.isJumpGapAfterSeekLive&&!t&&this.element.currentTime>e.to&&(this.isJumpGapAfterSeekLive=!1,this.element.currentTime=0);let a=this.element.currentTime*1e3,n=[],o=this.element.readyState===1?this.tuning.endGapTolerance:0;for(let u of this.bufferManagers)for(let c of u.gaps)(r&&c.persistent||u.playingRepresentation$.getValue()===c.representation)&&c.from-o<=a&&c.to+o>a&&(this.element.duration*1e3-c.to<this.tuning.endGapTolerance?n.push(1/0):n.push(c.to));if(n.length){let u=Math.max(...n)+10;this.gapWatchdogSubscription.unsubscribe(),this.gapWatchdogActive=!1,u===1/0?this.forceEnded$.next():(this.element.currentTime=u/1e3,i=C(x({},i),{gapEnds:n,jumpTo:u,resultCurrentTime:this.element.currentTime}),this.tracer.log("jumpGap",Zs(i)))}}calculateDurationFromSegments(){var e,t;return Math.max(((e=this.videoBufferManager)==null?void 0:e.calculateDurationFromSegments())||0,((t=this.audioBufferManager)==null?void 0:t.calculateDurationFromSegments())||0)}};import{combine as O_,map as N_,observeElementSize as F_,Subscription as U_,ValueSubject as kp,noop as q_}from"@vkontakte/videoplayer-shared/es2015";var Mu=class{constructor(){this.subscription=new U_;this.pipSize$=new kp(void 0);this.videoSize$=new kp(void 0);this.elementSize$=new kp(void 0);this.pictureInPictureWindowRemoveEventListener=q_}connect({observableVideo:e,video:t}){let i=r=>{let a=r.target;this.pipSize$.next({width:a.width,height:a.height})};this.subscription.add(F_(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(O_({videoSize:this.videoSize$,pipSize:this.pipSize$,inPip:e.inPiP$}).pipe(N_(({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 or=class{constructor(e){this.subscription=new K_;this.videoState=new Q("stopped");this.observableVideo=null;this.droppedFramesManager=new Fr;this.stallsManager=new Ho;this.elementSizeManager=new Mu;this.videoTracksMap=new Map;this.audioTracksMap=new Map;this.textTracksMap=new Map;this.videoStreamsMap=new Map;this.audioStreamsMap=new Map;this.videoTrackSwitchHistory=new si;this.audioTrackSwitchHistory=new si;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==null?void 0: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.currentNativeBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),A(this.params.desiredState.playbackState,"stopped",!0));return}switch(e){case"stopped":this.videoState.startTransitionTo("ready"),this.prepare();return;case"ready":t==="paused"?(this.videoState.setState("paused"),A(this.params.desiredState.playbackState,"paused")):t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="ready"&&A(this.params.desiredState.playbackState,"ready");return;case"playing":t==="paused"?(this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()):t==="playing"&&this.video.paused?this.playIfAllowed():(i==null?void 0:i.to)==="playing"&&A(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="paused"&&A(this.params.desiredState.playbackState,"paused");return;default:return j_(e)}}};this.init3DScene=e=>{var i,r,a;if(this.scene3D)return;this.scene3D=new Ur(this.params.container,this.video,{fov:this.params.tuning.spherical.fov,orientation:this.params.tuning.spherical.orientation||{x:((i=e.projectionData)==null?void 0:i.pose.yaw)||0,y:((r=e.projectionData)==null?void 0:r.pose.pitch)||0,z:((a=e.projectionData)==null?void 0:a.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 Ze(e.source.url),this.params=e,this.video=Ne(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(Re(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 Ru({throughputEstimator:this.params.dependencies.throughputEstimator,tuning:this.params.tuning,compatibilityMode:this.params.source.compatibilityMode,tracer:this.tracer,forceVideoCodec:this.params.forceVideoCodec}),this.subscribe()}getProviderSubscriptionInfo(){let{output:e,desiredState:t}=this.params;Y_(this.observableVideo)&&(this.observableVideo=qe(this.video),this.subscription.add(()=>{var n;return(n=this.observableVideo)==null?void 0:n.destroy()}));let i=this.constructor.name,r=n=>{e.error$.next({id:i,category:nw.WTF,message:`${i} internal logic error`,thrown:n})},a=(n,o)=>this.subscription.add(n.subscribe(o,r));return{output:e,desiredState:t,observableVideo:this.observableVideo,genericErrorListener:r,connect:a}}subscribe(){let{output:e,desiredState:t,observableVideo:i,genericErrorListener:r,connect:a}=this.getProviderSubscriptionInfo();this.subscription.add(this.params.output.availableVideoTracks$.pipe(Ap(l=>!!l.length),uw()).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(rn(l=>l.to.state!=="none"),tn());this.stallsManager.init({isSeeked$:n,currentStallDuration$:this.player.currentStallDuration$,videoLastDataObtainedTimestamp$:this.player.videoLastDataObtainedTimestamp$,throughput$:this.params.dependencies.throughputEstimator.throughput$,rtt$:this.params.dependencies.throughputEstimator.rtt$,tuning:this.params.tuning.stallsManager,abrParams:this.params.tuning.autoTrackSelection,isBuffering$:i.isBuffering$,looped$:i.looped$,playing$:i.playing$,duration:this.video.duration}),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.currentBuffer$,e.currentNativeBuffer$),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.manifestRequested$,e.manifestRequested$),a(this.player.firstBytesManifest$,e.firstBytesManifest$),a(this.player.manifestReceived$,e.manifestReceived$),a(this.player.firstBytesRequested$,e.firstBytesRequested$),a(this.player.firstBytesReceived$,e.firstBytesReceived$),a(this.player.lastConnectionType$,e.httpConnectionType$),a(this.player.lastConnectionReused$,e.httpConnectionReused$),a(this.player.lastConnectionMetrics$,e.httpConnectionMetrics$),a(this.player.lastDownloadMetrics$,e.httpDownloadMetrics$),a(this.player.isLive$,e.isLive$),a(this.player.lastRequestFirstBytes$.pipe(Ap(ow),uw()),e.firstBytesEvent$),a(this.stallsManager.severeStallOccurred$,e.severeStallOccurred$),a(this.videoState.stateChangeEnded$.pipe(rn(l=>l.to)),this.params.output.playbackState$),this.subscription.add(i.looped$.subscribe(()=>this.player.warmUpMediaSourceIfNeeded(),r)),this.subscription.add(i.seeked$.subscribe(e.seekedEvent$,r)),this.subscription.add(It(this.video,t.isLooped,r)),this.subscription.add(i.volumeState$.subscribe(this.params.output.volume$,r)),ni({subscription:this.subscription,desiredState:t,videoElement$:this.params.output.element$,observableVideo:i}),this.subscription.add(Ue(this.video,t.volume,i.volumeState$,r)),this.subscription.add(Je(this.video,t.playbackRate,i.playbackRateState$,r)),this.elementSizeManager.connect({video:this.video,observableVideo:i}),a(tt(this.video,{threshold:this.params.tuning.autoTrackSelection.activeVideoAreaThreshold}),e.elementVisible$),this.subscription.add(i.playing$.subscribe(()=>{this.videoState.setState("playing"),A(t.playbackState,"playing"),this.scene3D&&this.scene3D.play()},r)).add(i.pause$.subscribe(()=>{this.videoState.setState("paused"),A(t.playbackState,"paused")},r)).add(i.canplay$.subscribe(()=>{this.videoState.getState()==="playing"&&!this.video.ended&&this.playIfAllowed()},r)),this.params.tuning.changePlaybackStateToPausedWhenEnded&&this.subscription.add(i.ended$.subscribe(()=>{this.videoState.setState("paused"),A(t.playbackState,"paused")})),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(),h=this.player.getCodecs();if(W_(p,"Manifest not loaded or empty"),!this.params.tuning.isAudioDisabled){let m=[];for(let g of p.audio){m.push(ip(g));let v=[];for(let S of g.representations){let T=Vs(S);v.push(T),this.audioTracksMap.set(T,{stream:g,representation:S})}this.audioStreamsMap.set(g,v)}this.params.output.availableAudioStreams$.next(m)}let f=[];for(let m of p.video){f.push(rp(m));let g=[];for(let v of m.representations){let S=li(C(x({},v),{streamId:m.id}));S&&(g.push(S),this.videoTracksMap.set(S,{stream:m,representation:v}))}this.videoStreamsMap.set(m,g)}this.params.output.availableVideoStreams$.next(f);for(let m of p.text)for(let g of m.representations){let v=TE(m,g);this.textTracksMap.set(v,{stream:m,representation:g})}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),h!=null&&h.video&&this.params.output.availableVideoCodecs$.next(h.video),h!=null&&h.audio&&this.params.output.availableAudioCodecs$.next(h.audio),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));let o=an(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$,G_(this.video,"progress")).pipe(Ap(()=>this.videoTracksMap.size>0)),{abrThrottle:u}=this.params.tuning.dash;u&&(o=o.pipe(X_(u))),this.subscription.add(o.subscribe(()=>y(this,null,function*(){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());let h=this.selectVideoAudioRepresentations();if(!h)return;let[f,m]=h,g=[...this.videoTracksMap.keys()].find(S=>{var T;return((T=this.videoTracksMap.get(S))==null?void 0:T.representation.id)===f.id});ow(g)&&(this.stallsManager.lastVideoTrackSelected=g);let v=this.params.desiredState.autoVideoTrackLimits.getTransition();if(v&&this.params.output.autoVideoTrackLimits$.next(v.to),l==="manifest_ready")yield this.player.initRepresentations(f.id,m==null?void 0:m.id,this.params.sourceHls);else if(yield this.player.switchRepresentation("video",f.id),m){let S=!!t.audioStream.getTransition();yield this.player.switchRepresentation("audio",m.id,S)}}),r)),this.subscription.add(Q_({videoState:this.videoState.stateChangeEnded$,autoVideoTrackState:an($u([t.autoVideoTrackSwitching.getState()]),t.autoVideoTrackSwitching.stateChangeEnded$.pipe(rn(l=>l.to)))}).pipe(rn(({videoState:l,autoVideoTrackState:p})=>l.to!=="stopped"&&p),tn()).subscribe(l=>this.player.setSmartRepresentationSwitch(l))),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(tn()).subscribe(l=>{let p=[...this.videoTracksMap.entries()].find(([,{representation:v}])=>v.id===l);if(!p){e.currentVideoTrack$.next(void 0),e.currentVideoStream$.next(void 0);return}let[h,{stream:f}]=p,m=this.params.desiredState.videoStream.getTransition();m&&m.to&&m.to.id===f.id&&this.params.desiredState.videoStream.setState(m.to),e.currentVideoTrack$.next(h),e.currentVideoStream$.next(rp(f));let g=this.player.calculateDurationFromSegments();g&&this.params.output.duration$.next(g/1e3)},r)),this.subscription.add(this.player.currentAudioRepresentation$.pipe(tn()).subscribe(l=>{let p=[...this.audioTracksMap.entries()].find(([,{representation:g}])=>g.id===l);if(!p){e.currentAudioStream$.next(void 0);return}let[h,{stream:f}]=p,m=this.params.desiredState.audioStream.getTransition();m&&m.to&&m.to.id===f.id&&this.params.desiredState.audioStream.setState(m.to),e.currentAudioStream$.next(ip(f))},r)),this.subscription.add(this.player.currentVideoRepresentationInit$.subscribe(l=>{var p,h;if(l!=null&&l.is3dVideo&&((p=this.params.tuning.spherical)!=null&&p.enabled))try{this.init3DScene(l),e.is3DVideo$.next(!0)}catch(f){e.warning$.next({id:"DashProvider",message:`DashProvider could not initialize 3D-scene: ${f}`})}else this.destroy3DScene(),(h=this.params.tuning.spherical)!=null&&h.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 c=t.playbackState.stateChangeStarted$.pipe(rn(({to:l})=>l==="ready"),tn());this.subscription.add(an(c,t.autoVideoTrackSwitching.stateChangeStarted$,this.player.state$.stateChangeEnded$,$u(["init"])).subscribe(()=>{let l=t.autoVideoTrackSwitching.getState(),h=t.playbackState.getState()==="ready"?this.params.tuning.dash.forwardBufferTargetPreload:l?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;this.player.setBufferTarget(h)})),this.subscription.add(an(c,this.player.state$.stateChangeEnded$,$u(["init"])).subscribe(()=>this.player.setPreloadOnly(t.playbackState.getState()==="ready")));let d=an(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,$u(["init"])).pipe(z_(0));this.subscription.add(d.subscribe(this.syncPlayback,r))}selectVideoAudioRepresentations(){var _,L,R,F,B,H,J,z,$,M,E,w,U;if(this.player.isStreamEnded)return;let e=this.params.tuning.useNewAutoSelectVideoTrack?Ya:Ga,t=this.params.tuning.useNewAutoSelectVideoTrack?Bo:Do,i=this.params.tuning.useNewAutoSelectVideoTrack?xt:Co,{desiredState:r,output:a}=this.params,n=r.autoVideoTrackSwitching.getState(),o=(_=r.videoTrack.getState())==null?void 0:_.id,u=[...this.videoTracksMap.keys()].find(({id:N})=>N===o),c=a.currentVideoTrack$.getValue(),d=((F=(R=r.videoStream.getState())!=null?R:u&&((L=this.videoTracksMap.get(u))==null?void 0:L.stream))!=null?F:this.videoStreamsMap.size===1)?this.videoStreamsMap.keys().next().value:void 0;if(!d)return;let l=[...this.videoStreamsMap.keys()].find(({id:N})=>N===d.id),p=l&&this.videoStreamsMap.get(l);if(!p)return;let h=di(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 m=(this.video.duration*1e3||1/0)-this.video.currentTime*1e3,g=Math.min(h/Math.min(f,m||1/0),1),v=(B=r.audioStream.getState())!=null?B:this.audioStreamsMap.size===1?this.audioStreamsMap.keys().next().value:void 0,S=(H=[...this.audioStreamsMap.keys()].find(({id:N})=>N===(v==null?void 0:v.id)))!=null?H:this.audioStreamsMap.keys().next().value,T=0;if(S){if(u&&!n){let N=e(u,p,(J=this.audioStreamsMap.get(S))!=null?J:[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);T=Math.max(T,(z=N==null?void 0:N.bitrate)!=null?z:-1/0)}if(c){let N=e(c,p,($=this.audioStreamsMap.get(S))!=null?$:[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);T=Math.max(T,(M=N==null?void 0:N.bitrate)!=null?M:-1/0)}}let I=u;(n||!I)&&(I=i(p,{container:this.elementSizeManager.getValue(),panelSize:this.params.panelSize,estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),tuning:this.stallsManager.abrTuningParams,limits:this.params.desiredState.autoVideoTrackLimits.getState(),reserve:T,forwardBufferHealth:g,current:c,visible:this.params.output.elementVisible$.getValue(),history:this.videoTrackSwitchHistory,playbackRate:this.video.playbackRate,droppedVideoMaxQualityLimit:this.droppedFramesManager.droppedVideoMaxQualityLimit,stallsVideoMaxQualityLimit:this.stallsManager.videoMaxQualityLimit,stallsPredictedThroughput:this.stallsManager.predictedThroughput,abrLogger:this.params.dependencies.abrLogger}));let P=S&&t(I,p,(E=this.audioStreamsMap.get(S))!=null?E:[],{estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),stallsPredictedThroughput:this.stallsManager.predictedThroughput,tuning:this.stallsManager.abrTuningParams,forwardBufferHealth:g,history:this.audioTrackSwitchHistory,playbackRate:this.video.playbackRate,abrLogger:this.params.dependencies.abrLogger}),k=(w=this.videoTracksMap.get(I))==null?void 0:w.representation,V=P&&((U=this.audioTracksMap.get(P))==null?void 0:U.representation);if(k&&V)return[k,V];if(k&&!V&&this.audioTracksMap.size===0)return[k,void 0]}prepare(e=0){this.player.initManifest(this.video,this.params.source.url,e)}playIfAllowed(){He(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),A(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:nw.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),Fe(this.video,this.params.tuning.keepVideoElement,this.params.tuning.clearVideoElementInnerHTML),this.tracer.end()}};var sn=class extends or{subscribe(){super.subscribe();let{output:e,observableVideo:t,connect:i}=this.getProviderSubscriptionInfo();i(t.timeUpdate$,e.position$),i(t.durationChange$,e.duration$)}seek(e,t){this.params.output.willSeekEvent$.next(),this.player.seek(e,t)}};import{combine as Rp,merge as cw,filter as lw,filterChanged as dw,isNullable as Mp,map as pw,ValueSubject as $p,isNonNullable as J_}from"@vkontakte/videoplayer-shared/es2015";var nn=class extends or{constructor(e){super(e),this.textTracksManager.destroy()}subscribe(){super.subscribe();let e=!1,t=-1,{output:i,observableVideo:r,desiredState:a,connect:n}=this.getProviderSubscriptionInfo();this.params.output.position$.next(0),this.params.output.isLive$.next(!0),this.params.output.canPlayLiveTailBuffer$.next(!0),n(r.timeUpdate$,i.liveBufferTime$),n(this.player.liveSeekableDuration$,i.duration$),n(this.player.liveLatency$,i.liveLatency$);let o=new $p(1);n(r.playbackRateState$,o),this.params.tuning.dashCmafLive.catchupLiveForMutedInactiveTab&&this.subscription.add(i.elementVisible$.pipe(dw()).subscribe(u=>{let c=i.position$.getValue(),d=i.volume$.getValue(),l=!d.volume||d.muted;!u&&!c&&l?e=!0:u&&e&&(this.seek(0),e=!1)})),this.subscription.add(this.params.output.position$.subscribe(this.player.livePositionFromPlayer$)).add(a.isLowLatency.stateChangeEnded$.pipe(pw(u=>u.to)).subscribe(this.player.isLowLatency$)).add(Rp({liveBufferTime:i.liveBufferTime$,liveAvailabilityStartTime:this.player.liveAvailabilityStartTime$}).pipe(pw(({liveBufferTime:u,liveAvailabilityStartTime:c})=>u&&c?u*1e3+c+t:void 0)).subscribe(i.liveTime$)).add(Rp({liveDuration:this.player.liveDuration$,liveStreamStatus:this.player.liveStreamStatus$,playbackRate:cw(r.playbackRateState$,new $p(1))}).pipe(lw(({liveStreamStatus:u,liveDuration:c})=>u==="active"&&!!c)).subscribe(({liveDuration:u,playbackRate:c})=>{let d=i.liveBufferTime$.getValue(),l=i.position$.getValue(),{playbackCatchupSpeedup:p}=this.params.tuning.dashCmafLive.lowLatency;l||c<1-p||this.video.paused||Mp(d)||(t=u-d)})).add(Rp({time:i.liveBufferTime$,liveDuration:this.player.liveDuration$,playbackRate:cw(r.playbackRateState$,new $p(1))}).pipe(dw((u,c)=>this.player.liveStreamStatus$.getValue()==="active"?u.liveDuration===c.liveDuration:u.time===c.time)).subscribe(({time:u,liveDuration:c,playbackRate:d})=>{let l=i.position$.getValue(),{playbackCatchupSpeedup:p}=this.params.tuning.dashCmafLive.lowLatency;if(!l&&!this.video.paused&&d>=1-p||Mp(u)||Mp(c))return;let h=-1*(c-u-t);i.position$.next(Math.min(h,0))})).add(this.player.currentLiveTextRepresentation$.subscribe(u=>{if(u){let c=IE(u);this.params.output.availableTextTracks$.next([c])}})),this.params.tuning.dashCmafLive.externalStopControl||this.subscription.add(this.player.liveStreamStatus$.pipe(lw(u=>J_(u))).subscribe(u=>i.isLiveEnded$.next(u==="unpublished"&&i.position$.getValue()===0)))}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 hw="X-Playback-Duration",Lp=s=>y(null,null,function*(){var r;let e=yield it(s),t=yield e.text(),i=(r=/#EXT-X-VK-PLAYBACK-DURATION:(\d+)/m.exec(t))==null?void 0:r[1];return i?parseInt(i,10):e.headers.has(hw)?parseInt(e.headers.get(hw),10):void 0});import{assertNever as cO,combine as lO,debounce as dO,ErrorCategory as Du,filter as pO,filterChanged as hO,isNonNullable as bw,isNullable as Bu,map as gw,merge as fO,observableFrom as mO,Subscription as bO,ValueSubject as Bp,VideoQuality as gO}from"@vkontakte/videoplayer-shared/es2015";var Dp=q(vl(),1);import{videoSizeToQuality as Z_,getExponentialDelay as eO}from"@vkontakte/videoplayer-shared/es2015";var tO=s=>{let e=null;if(s.QUALITY&&(e=ai(s.QUALITY)),!e&&s.RESOLUTION){let[t,i]=s.RESOLUTION.split("x").map(r=>parseInt(r,10));e=Z_({width:t,height:i})}return e!=null?e:null},iO=(s,e)=>{var a,n;let t=s.split(`
179
- `),i=[],r=[];for(let o=0;o<t.length;o++){let u=t[o],c=u.match(/^#EXT-X-STREAM-INF:(.+)/),d=u.match(/^#EXT-X-MEDIA:TYPE=SUBTITLES,(.+)/);if(!(!c&&!d)){if(c){let l=(0,Dp.default)(c[1].split(",").map(S=>S.split("="))),p=(a=l.QUALITY)!=null?a:`stream-${l.BANDWIDTH}`,h=tO(l),f;l.BANDWIDTH&&(f=parseInt(l.BANDWIDTH,10)/1e3||void 0),!f&&l["AVERAGE-BANDWIDTH"]&&(f=parseInt(l["AVERAGE-BANDWIDTH"],10)/1e3||void 0);let m=l["FRAME-RATE"]?parseFloat(l["FRAME-RATE"]):void 0,g;if(l.RESOLUTION){let[S,T]=l.RESOLUTION.split("x").map(I=>parseInt(I,10));S&&T&&(g={width:S,height:T})}let v=new URL(t[++o],e).toString();h&&i.push({id:p,quality:h,url:v,bandwidth:f,size:g,fps:m})}if(d){let l=(0,Dp.default)(d[1].split(",").map(m=>{let g=m.indexOf("=");return[m.substring(0,g),m.substring(g+1)]}).map(([m,g])=>[m,g.replace(/^"|"$/g,"")])),p=(n=l.URI)==null?void 0:n.replace(/playlist$/,"subtitles.vtt"),h=l.LANGUAGE,f=l.NAME;p&&h&&r.push({type:"internal",id:h,label:f,language:h,url:p,isAuto:!1})}}}if(!i.length)throw new Error("Empty manifest");return{qualityManifests:i,textTracks:r}},rO=s=>new Promise(e=>{setTimeout(()=>{e()},s)}),Cp=0,fw=(r,...a)=>y(null,[r,...a],function*(s,e=s,t,i){let o=yield(yield it(s,i)).text();Cp+=1;try{let{qualityManifests:u,textTracks:c}=iO(o,e);return{qualityManifests:u,textTracks:c}}catch(u){if(Cp<=t.manifestRetryMaxCount)return yield rO(eO(Cp-1,{start:t.manifestRetryInterval,max:t.manifestRetryMaxInterval})),fw(s,e,t)}return{qualityManifests:[],textTracks:[]}}),Lu=fw;import{isNonNullable as aO,Subscription as sO,throttle as nO,ValueSubject as mw,Subject as oO,ErrorCategory as uO}from"@vkontakte/videoplayer-shared/es2015";var Cu=class{constructor(e,t,i,r,a){this.subscription=new sO;this.abortControllers={destroy:new ne,nextManifest:null};this.prepareUrl=void 0;this.currentTextTrackData=null;this.availableTextTracks$=new mw(null);this.getCurrentTime$=new mw(null);this.error$=new oO;this.params={fetchManifestData:i,sourceUrl:r,downloadThreshold:a},this.subscription.add(e.pipe(nO(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()}prepare(e){return y(this,null,function*(){try{let t=new URL(e);t.searchParams.set("enable-subtitles","yes"),this.prepareUrl=t.toString();let{textTracks:i}=yield this.fetchManifestData();yield this.processTextTracks(i,this.params.sourceUrl)}catch(t){this.error("prepare",t)}})}processTextTracks(e,t){return y(this,null,function*(){try{let i=yield this.parseTextTracks(e,t);i&&(this.currentTextTrackData=i)}catch(i){this.error("processTextTracks",i)}})}parseTextTracks(e,t){return y(this,null,function*(){for(let i of e){let r=new URL(i.url,t).toString(),n=yield(yield it(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(`
180
- `),a=0;for(let n=0;n<r.length;++n){let o=r[n];switch(!0){case o.startsWith("#EXTINF:"):{let u=r[++n],c=new URL(u,t).toString(),d=Number(this.extractPlaylistRowValue("#EXTINF:",o))*1e3;if(i.segments.push({time:{from:a,to:a+d},url:c}),a=a+d,!i.segmentStartTime){let l=new Date(i.vkStartTime).valueOf(),p=new Date(i.programDateTime).valueOf();i.segmentStartTime=p-l}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 c=new Date(u);c.setMilliseconds(0),a=c.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(aO(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([C(x({},this.currentTextTrackData.textTrack),{url:n.url,isAuto:!0})]);break}}}fetchNextManifestData(){return y(this,null,function*(){try{if(this.abortControllers.nextManifest)return;this.abortControllers.nextManifest=new ne;let{textTracks:e}=yield this.fetchManifestData(),t=yield 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}})}fetchManifestData(){return y(this,null,function*(){var t;let e=(t=this.prepareUrl)!=null?t:this.params.sourceUrl;return yield this.params.fetchManifestData(e,{signal:this.abortControllers.destroy.signal})})}error(e,t){this.error$.next({id:"[LiveTextManager][HLS_LIVE_CMAF]",category:uO.WTF,thrown:t,message:e})}};var on=class{constructor(e){this.subscription=new bO;this.videoState=new Q("stopped");this.textTracksManager=null;this.liveTextManager=null;this.manifests$=new Bp([]);this.liveOffset=new qi;this.manifestStartTime$=new Bp(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.currentNativeBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),A(this.params.desiredState.playbackState,"stopped",!0));return}if(this.videoState.getTransition())return;let c=this.params.desiredState.seekState.getState();if(t==="stopped"){this.videoState.startTransitionTo("ready"),this.prepare();return}if(a||n||o){let d=this.videoState.getState();this.videoState.setState("changing_manifest"),this.videoState.startTransitionTo(d),this.prepare(),o&&this.params.output.autoVideoTrackLimits$.next(o.to),c.state==="none"&&this.params.desiredState.seekState.setState({state:"requested",position:-this.liveOffset.getTotalOffset(),forcePrecise:!0});return}if((r==null?void 0:r.to)!=="paused"&&c.state==="requested"){this.videoState.startTransitionTo("ready"),this.seek(c.position&&c.position-this.liveOffset.getTotalPausedTime()),this.prepare();return}switch(t){case"ready":i==="ready"?A(this.params.desiredState.playbackState,"ready"):i==="paused"?(this.videoState.setState("paused"),this.liveOffset.pause(),A(this.params.desiredState.playbackState,"paused")):i==="playing"&&(this.videoState.startTransitionTo("playing"),this.playIfAllowed());return;case"playing":i==="paused"?(this.videoState.startTransitionTo("paused"),this.liveOffset.pause(),this.video.paused?this.videoState.setState("paused"):this.video.pause()):(r==null?void 0:r.to)==="playing"&&A(this.params.desiredState.playbackState,"playing");return;case"paused":if(i==="playing")if(this.videoState.startTransitionTo("playing"),this.liveOffset.getTotalPausedTime()<this.params.config.maxPausedTime&&this.liveOffset.getTotalOffset()<this.maxSeekBackTime$.getValue())this.liveOffset.resume(),this.playIfAllowed(),this.params.output.position$.next(-this.liveOffset.getTotalOffset()/1e3);else{let d=this.liveOffset.getTotalOffset();d>=this.maxSeekBackTime$.getValue()&&(d=0,this.liveOffset.resetTo(d)),this.liveOffset.resume(),this.params.output.position$.next(-d/1e3),this.prepare()}else(r==null?void 0:r.to)==="paused"&&(A(this.params.desiredState.playbackState,"paused"),this.liveOffset.pause());return;case"changing_manifest":break;default:return cO(t)}};var i;this.params=e,this.video=Ne(e.container,e.tuning),this.params.output.element$.next(this.video),this.masterManifest={id:"master",quality:gO.INVARIANT,url:this.params.source.url};let t=(r,a)=>Lu(r,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 Cu(this.params.output.liveTime$,this.video,t,this.params.source.url,this.params.tuning.hlsLiveNewTextManagerDownloadThreshold):this.textTracksManager=new Ze(e.source.url),t(this.generateLiveUrl()).then(({qualityManifests:r,textTracks:a})=>{var n;r.length===0&&this.params.output.error$.next({id:"HlsLiveProviderInternal:empty_manifest",category:Du.WTF,message:"HlsLiveProvider: there are no qualities in manifest"}),(n=this.liveTextManager)==null||n.processTextTracks(a,this.params.source.url),this.manifests$.next([this.masterManifest,...r])}).catch(r=>{this.params.output.error$.next({id:"ExtractHlsQualities",category:Du.NETWORK,message:"Error fetching manifest and extracting qualities",thrown:r})}),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(Re(this.params.source.url)),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.maxSeekBackTime$=new Bp((i=e.source.maxSeekBackTime)!=null?i:1/0),this.subscribe()}selectManifest(){var u,c,d,l;let{autoVideoTrackSwitching:e,videoTrack:t}=this.params.desiredState,i=e.getState(),r=t.getTransition(),a=(l=(d=(u=r==null?void 0:r.to)==null?void 0:u.id)!=null?d:(c=t.getState())==null?void 0:c.id)!=null?l:"master",n=this.manifests$.getValue();if(!n.length)return;let o=i?"master":a;return i&&!r&&t.startTransitionTo(this.masterManifest),n.find(p=>p.id===o)}subscribe(){let{output:e,desiredState:t}=this.params,i=o=>{e.error$.next({id:"HlsLiveProvider",category:Du.WTF,message:"HlsLiveProvider internal logic error",thrown:o})},r=qe(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.currentBuffer$,e.currentNativeBuffer$),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(Ue(this.video,t.volume,r.volumeState$,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(Je(this.video,t.playbackRate,r.playbackRateState$,i)),a(tt(this.video),e.elementVisible$),this.liveTextManager?(a(this.liveTextManager.getCurrentTime$,this.params.output.getCurrentTime$),a(this.liveTextManager.error$,this.params.output.error$)):this.textTracksManager&&this.textTracksManager.connect(this.video,t,e),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState("playing"),A(t.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),A(t.playbackState,"paused")},i)).add(r.canplay$.subscribe(()=>{var o;((o=this.videoState.getTransition())==null?void 0:o.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(hO(),gw(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(),c=this.params.desiredState.videoTrack.getTransition(),d=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(c&&bw(c.to)){let l=c.to.id;this.params.desiredState.videoTrack.setState(c.to);let p=this.manifests$.getValue().find(h=>h.id===l);p&&(this.params.output.currentVideoTrack$.next(p),this.params.output.hostname$.next(Re(p.url)))}d&&this.params.desiredState.autoVideoTrackSwitching.setState(d.to),u&&u.from==="changing_manifest"&&this.videoState.setState(u.to),o&&o.state==="requested"&&this.seek(o.position)},i)),this.subscription.add(r.loadedData$.subscribe(()=>{var u,c,d;let o=(d=(c=(u=this.video)==null?void 0:u.getStartDate)==null?void 0:c.call(u))==null?void 0:d.getTime();this.manifestStartTime$.next(o||void 0)},i)),this.subscription.add(lO({startTime:this.manifestStartTime$.pipe(pO(bw)),currentTime:r.timeUpdate$}).subscribe(({startTime:o,currentTime:u})=>this.params.output.liveTime$.next(o+u*1e3),i)),this.subscription.add(this.manifests$.pipe(gw(o=>o.map(({id:u,quality:c,size:d,bandwidth:l,fps:p})=>({id:u,quality:c,size:d,fps:p,bitrate:l})))).subscribe(this.params.output.availableVideoTracks$,i));let n=fO(t.playbackState.stateChangeStarted$,t.seekState.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.stateChangeStarted$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,this.manifests$,mO(["init"])).pipe(dO(0));this.subscription.add(n.subscribe(this.syncPlayback,i))}destroy(){var e,t;this.subscription.unsubscribe(),(e=this.textTracksManager)==null||e.destroy(),(t=this.liveTextManager)==null||t.destroy(),this.params.output.element$.next(void 0),Fe(this.video,this.params.tuning.keepVideoElement,this.params.tuning.clearVideoElementInnerHTML)}prepare(){var o,u,c;let e=this.selectManifest();if(Bu(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:d,min:l}=(u=(o=t==null?void 0:t.to)!=null?o:i)!=null?u:{};for(let[p,h]of[[d,"mq"],[l,"lq"]]){let f=String(parseFloat(p||""));h&&p&&r.searchParams.set(h,f)}}let a=this.params.format==="HLS_LIVE_CMAF"?2:0,n=pe(r.toString(),this.liveOffset.getTotalOffset(),a);(c=this.liveTextManager)==null||c.prepare(n),this.video.setAttribute("src",n),this.video.load(),Lp(n).then(d=>{var l;if(!Bu(d))this.maxSeekBackTime$.next(d);else{let p=(l=this.params.source.maxSeekBackTime)!=null?l:this.maxSeekBackTime$.getValue();(Bu(p)||!isFinite(p))&&it(n).then(h=>h.text()).then(h=>{var m;let f=(m=/#EXT-X-STREAM-INF[^\n]+\n(.+)/m.exec(h))==null?void 0:m[1];if(f){let g=new URL(f,n).toString();Lp(g).then(v=>{Bu(v)||this.maxSeekBackTime$.next(v)})}}).catch(()=>{})}})}playIfAllowed(){He(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),this.liveOffset.pause(),A(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:Du.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next();let t=-e,i=t<this.maxSeekBackTime$.getValue()?t:0;this.liveOffset.resetTo(i),this.params.output.position$.next(-i/1e3),this.params.output.seekedEvent$.next()}generateLiveUrl(){let e=pe(this.params.source.url);if(this.params.tuning.useHlsLiveNewTextManager){let t=new URL(e);t.searchParams.set("enable-subtitles","yes"),e=t.toString()}return e}};import{assertNever as vO,debounce as SO,ErrorCategory as Vp,fromEvent as _p,isNonNullable as yO,isNullable as TO,map as vw,merge as Sw,observableFrom as yw,Subscription as IO,ValueSubject as Tw,VideoQuality as EO}from"@vkontakte/videoplayer-shared/es2015";var un=class{constructor(e){this.subscription=new IO;this.videoState=new Q("stopped");this.manifests$=new Tw([]);this.unmuteAfterBrowserResetsHappened=new Tw(!1);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.currentNativeBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),A(this.params.desiredState.playbackState,"stopped",!0));return}if(this.videoState.getTransition())return;let c=this.params.desiredState.seekState.getState();if(t==="stopped"){this.videoState.startTransitionTo("ready"),this.prepare();return}if(a||n||o){let d=this.videoState.getState();this.videoState.setState("changing_manifest"),this.videoState.startTransitionTo(d);let{currentTime:l}=this.video;this.prepare(),o&&this.params.output.autoVideoTrackLimits$.next(o.to),c.state==="none"&&this.params.desiredState.seekState.setState({state:"requested",position:l*1e3,forcePrecise:!0});return}switch((r==null?void 0:r.to)!=="paused"&&c.state==="requested"&&this.seek(c.position),t){case"ready":i==="ready"?A(this.params.desiredState.playbackState,"ready"):i==="paused"?(this.videoState.setState("paused"),A(this.params.desiredState.playbackState,"paused")):i==="playing"&&(this.videoState.startTransitionTo("playing"),this.playIfAllowed());return;case"playing":i==="paused"?(this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()):(r==null?void 0:r.to)==="playing"&&A(this.params.desiredState.playbackState,"playing");return;case"paused":i==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(r==null?void 0:r.to)==="paused"&&A(this.params.desiredState.playbackState,"paused");return;case"changing_manifest":break;default:return vO(t)}};this.textTracksManager=new Ze(e.source.url),this.params=e,this.video=Ne(e.container,e.tuning),this.params.output.element$.next(this.video),this.masterManifest={id:"master",quality:EO.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(Re(this.params.source.url)),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),this.params.output.manifestRequested$.next(),Lu(pe(this.params.source.url),this.params.source.url,{manifestRetryInterval:this.params.tuning.manifestRetryInterval,manifestRetryMaxInterval:this.params.tuning.manifestRetryMaxInterval,manifestRetryMaxCount:this.params.tuning.manifestRetryMaxCount}).then(({qualityManifests:t,textTracks:i})=>{this.params.output.firstBytesManifest$.next(),this.manifests$.next([this.masterManifest,...t]),this.params.output.manifestReceived$.next(),this.params.tuning.useNativeHLSTextTracks||this.params.desiredState.internalTextTracks.startTransitionTo(i)},t=>this.params.output.error$.next({id:"ExtractHlsQualities",category:Vp.NETWORK,message:"Error fetching manifest and extracting qualities",thrown:t})),this.subscribe()}selectManifest(){var u,c,d,l;let{autoVideoTrackSwitching:e,videoTrack:t}=this.params.desiredState,i=e.getState(),r=t.getTransition(),a=(l=(d=(u=r==null?void 0:r.to)==null?void 0:u.id)!=null?d:(c=t.getState())==null?void 0:c.id)!=null?l:"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(p=>p.id===o)}subscribe(){let{output:e,desiredState:t}=this.params,i=o=>{e.error$.next({id:"HlsProvider",category:Vp.WTF,message:"HlsProvider internal logic error",thrown:o})},r=qe(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.currentBuffer$,e.currentNativeBuffer$),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(vw(o=>o.to)),this.params.output.playbackState$),this.subscription.add(It(this.video,t.isLooped,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(Je(this.video,t.playbackRate,r.playbackRateState$,i)),ni({subscription:this.subscription,desiredState:t,videoElement$:this.params.output.element$,observableVideo:r}),this.subscription.add(Ue(this.video,t.volume,r.volumeState$,i)),this.textTracksManager.connect(this.video,t,e),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState("playing"),A(t.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),A(t.playbackState,"paused")},i)).add(r.canplay$.subscribe(()=>{var o;((o=this.videoState.getTransition())==null?void 0:o.to)==="ready"&&this.videoState.setState("ready"),this.videoState.getState()==="playing"&&this.playIfAllowed()},i).add(r.loadedMetadata$.subscribe(()=>{var h;let o=this.params.desiredState.seekState.getState(),u=this.videoState.getTransition(),c=this.params.desiredState.videoTrack.getTransition(),d=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(c&&yO(c.to)){let f=c.to.id;this.params.desiredState.videoTrack.setState(c.to);let m=this.manifests$.getValue().find(g=>g.id===f);m&&(this.params.output.currentVideoTrack$.next(m),this.params.output.hostname$.next(Re(m.url)))}let l=this.params.desiredState.playbackRate.getState(),p=(h=this.params.output.element$.getValue())==null?void 0:h.playbackRate;if(l!==p){let f=this.params.output.element$.getValue();f&&(this.params.desiredState.playbackRate.setState(l),f.playbackRate=l)}d&&this.params.desiredState.autoVideoTrackSwitching.setState(d.to),u&&u.from==="changing_manifest"&&this.videoState.setState(u.to),o.state==="requested"&&this.seek(o.position)},i))),this.params.tuning.changePlaybackStateToPausedWhenEnded&&this.subscription.add(r.ended$.subscribe(()=>{this.videoState.setState("paused"),A(t.playbackState,"paused")})),this.subscription.add(this.manifests$.pipe(vw(o=>o.map(({id:u,quality:c,size:d,bandwidth:l,fps:p})=>({id:u,quality:c,size:d,fps:p,bitrate:l})))).subscribe(this.params.output.availableVideoTracks$,i)),!O.device.isIOS||!this.params.tuning.useNativeHLSTextTracks){let{textTracks:o}=this.video;this.subscription.add(Sw(_p(o,"addtrack"),_p(o,"removetrack"),_p(o,"change"),yw(["init"])).subscribe(()=>{for(let u=0;u<o.length;u++)o[u].mode="hidden"},i))}let n=Sw(t.playbackState.stateChangeStarted$,t.seekState.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.stateChangeStarted$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,this.manifests$,yw(["init"])).pipe(SO(0));this.subscription.add(n.subscribe(this.syncPlayback,i))}destroy(){this.subscription.unsubscribe(),this.textTracksManager.destroy(),this.params.output.element$.next(void 0),Fe(this.video,this.params.tuning.keepVideoElement,this.params.tuning.clearVideoElementInnerHTML)}prepare(){var a,n;let e=this.selectManifest();if(TO(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}=(n=(a=t==null?void 0:t.to)!=null?a:i)!=null?n:{};for(let[c,d]of[[o,"mq"],[u,"lq"]]){let l=String(parseFloat(c||""));d&&c&&r.searchParams.set(d,l)}}this.video.setAttribute("src",r.toString()),this.video.load()}playIfAllowed(){He(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),A(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:Vp.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next(),this.video.currentTime=e/1e3}};var ww=q(ti(),1),Op=q(Ci(),1),xw=q(et(),1);import{assertNever as wO,assertNonNullable as Iw,debounce as xO,ErrorCategory as Ew,isHigherOrEqual as PO,isLowerOrEqual as kO,isNonNullable as AO,merge as RO,observableFrom as MO,Subscription as $O,map as LO}from"@vkontakte/videoplayer-shared/es2015";var cn=class{constructor(e){this.subscription=new $O;this.videoState=new Q("stopped");this.trackUrls={};this.textTracksManager=new Ze;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.currentNativeBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),A(this.params.desiredState.playbackState,"stopped",!0));return}if(this.videoState.getTransition())return;let a=this.params.desiredState.autoVideoTrackLimits.getTransition(),n=this.params.desiredState.videoTrack.getTransition(),o=this.params.desiredState.seekState.getState();if(a&&e!=="ready"&&!n){this.handleQualityLimitTransition(a.to);return}if(e==="stopped"){this.videoState.startTransitionTo("ready"),this.prepare();return}if(n){let{currentTime:u}=this.video;this.prepare(),o.state==="none"&&this.params.desiredState.seekState.setState({state:"requested",position:u*1e3,forcePrecise:!0});return}switch((i==null?void 0:i.to)!=="paused"&&o.state==="requested"&&this.seek(o.position),e){case"ready":t==="ready"?A(this.params.desiredState.playbackState,"ready"):t==="paused"?(this.videoState.setState("paused"),A(this.params.desiredState.playbackState,"paused")):t==="playing"&&(this.videoState.startTransitionTo("playing"),this.playIfAllowed());return;case"playing":t==="paused"?(this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()):(i==null?void 0:i.to)==="playing"&&A(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="paused"&&A(this.params.desiredState.playbackState,"paused");return;default:return wO(e)}};this.params=e,this.video=Ne(e.container,e.tuning),this.params.output.element$.next(this.video),(0,ww.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,Op.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:Ew.WTF,message:"MpegProvider internal logic error",thrown:o})},r=qe(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.currentNativeBuffer$),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(LO(o=>o.to)),this.params.output.playbackState$),this.subscription.add(It(this.video,t.isLooped,i)),ni({subscription:this.subscription,desiredState:t,videoElement$:this.params.output.element$,observableVideo:r}),this.subscription.add(Ue(this.video,t.volume,r.volumeState$,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(Je(this.video,t.playbackRate,r.playbackRateState$,i)),a(tt(this.video),e.elementVisible$),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState("playing"),A(t.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),A(t.playbackState,"paused")},i)).add(r.canplay$.subscribe(()=>{var u,c;((u=this.videoState.getTransition())==null?void 0:u.to)==="ready"&&this.videoState.setState("ready");let o=this.params.desiredState.videoTrack.getTransition();if(o&&AO(o.to)){this.params.desiredState.videoTrack.setState(o.to),this.params.output.currentVideoTrack$.next(this.trackUrls[o.to.id].track);let d=this.params.desiredState.playbackRate.getState(),l=(c=this.params.output.element$.getValue())==null?void 0:c.playbackRate;if(d!==l){let p=this.params.output.element$.getValue();p&&(this.params.desiredState.playbackRate.setState(d),p.playbackRate=d)}}this.videoState.getState()==="playing"&&!this.video.ended&&this.playIfAllowed()},i)),this.params.tuning.changePlaybackStateToPausedWhenEnded&&this.subscription.add(r.ended$.subscribe(()=>{this.videoState.setState("paused"),A(t.playbackState,"paused")})),this.textTracksManager.connect(this.video,t,e);let n=RO(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,MO(["init"])).pipe(xO(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),Fe(this.video,this.params.tuning.keepVideoElement,this.params.tuning.clearVideoElementInnerHTML)}prepare(){var i;let e=(i=this.params.desiredState.videoTrack.getState())==null?void 0:i.id;Iw(e,"MpegProvider: track is not selected");let{url:t}=this.trackUrls[e];Iw(t,`MpegProvider: No url for ${e}`),this.params.tuning.requestQuick&&(t=oi(t)),this.video.setAttribute("src",t),this.video.load(),this.params.output.hostname$.next(Re(t))}playIfAllowed(){He(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),A(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:Ew.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next(),this.video.currentTime=e/1e3}handleQualityLimitTransition(e){var c,d;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=xt(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=(c=this.params.output.currentVideoTrack$.getValue())==null?void 0:c.quality,a=!!(e.max||e.min),n=(0,Op.default)(this.trackUrls).map(l=>l.track);if(!r||!a||Vr(e,n[0].quality,(d=(0,xw.default)(n,-1))==null?void 0:d.quality)){i();return}let o=e.max?kO(r,e.max):!0,u=e.min?PO(r,e.min):!0;o&&u||i(e)}};import{assertNever as kw,debounce as VO,merge as Aw,observableFrom as _O,Subscription as OO,map as Rw,ValueSubject as NO,ErrorCategory as Fp,VideoQuality as FO}from"@vkontakte/videoplayer-shared/es2015";import{ErrorCategory as CO}from"@vkontakte/videoplayer-shared/es2015";var Pw=["stun:videostun.mycdn.me:80"],DO=1e3,BO=3,Np=()=>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=Np;this.externalStopCallback=Np;this.externalErrorCallback=Np;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}}handleUpdateMessage(e){return y(this,null,function*(){try{let t=yield this.createOffer();this.peerConnection&&(yield this.peerConnection.setLocalDescription(t)),this.handleAnswer(e.sdp)}catch(t){this.handleRTCError(t)}})}handleLogin(){return y(this,null,function*(){try{let e={iceServers:[{urls:Pw}]};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=yield this.createOffer();yield this.peerConnection.setLocalDescription(t),this.send({type:this.signalingType,inviteType:"OFFER",streamKey:this.streamKey,sdp:t.sdp,callSupport:!1})}catch(e){this.handleRTCError(e)}})}handleAnswer(e){return y(this,null,function*(){try{this.peerConnection&&(yield this.peerConnection.setRemoteDescription(new RTCSessionDescription({type:"answer",sdp:e})))}catch(t){this.handleRTCError(t)}})}handleCandidate(e){return y(this,null,function*(){if(e)try{this.peerConnection&&(yield 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:CO.WTF,message:e.message})}onPeerConnectionStream(e){return y(this,null,function*(){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()))}}createOffer(){return y(this,null,function*(){let e={offerToReceiveAudio:!0,offerToReceiveVideo:!0,voiceActivityDetection:!1};if(!this.peerConnection)throw new Error("Can not create offer - no peer connection instance ");let t=yield 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(t){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),DO)}normalizeOptions(e={}){let t={stunServerList:Pw,maxRetryNumber:BO,errorChanel:null};return e.stunServerList&&(t.stunServerList=e.stunServerList),e.maxRetryNumber&&e.maxRetryNumber>0&&(t.maxRetryNumber=e.maxRetryNumber),t}};var ln=class{constructor(e){this.videoState=new Q("stopped");this.maxSeekBackTime$=new NO(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.currentNativeBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),A(this.params.desiredState.playbackState,"stopped",!0));return}if(this.videoState.getTransition())return;let a=this.params.desiredState.videoTrack.getTransition();if(e==="stopped"){this.videoState.startTransitionTo("ready"),this.prepare();return}if(a){this.prepare();return}switch(e){case"ready":t==="paused"?(this.videoState.setState("paused"),A(this.params.desiredState.playbackState,"paused")):t==="playing"&&(this.videoState.startTransitionTo("playing"),this.playIfAllowed());return;case"playing":t==="paused"?(this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()):(i==null?void 0:i.to)==="playing"&&A(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="paused"&&A(this.params.desiredState.playbackState,"paused");return;default:return kw(e)}};this.subscription=new OO,this.params=e,this.log=this.params.dependencies.logger.createComponentLog("WebRTCLiveProvider"),this.video=Ne(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),Fe(this.video,this.params.tuning.keepVideoElement,this.params.tuning.clearVideoElementInnerHTML)}subscribe(){let{output:e,desiredState:t}=this.params,i=n=>{e.error$.next({id:"WebRTCLiveProvider",category:Fp.WTF,message:"WebRTCLiveProvider internal logic error",thrown:n})};this.subscription.add(Aw(this.videoState.stateChangeStarted$.pipe(Rw(n=>({transition:n,type:"start"}))),this.videoState.stateChangeEnded$.pipe(Rw(n=>({transition:n,type:"end"})))).subscribe(({transition:n,type:o})=>{this.log({message:`[videoState change] ${o}: ${JSON.stringify(n)}`})}));let r=qe(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(r.currentBuffer$,e.currentNativeBuffer$),a(tt(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(()=>{var n;((n=this.videoState.getTransition())==null?void 0:n.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(Ue(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 kw(n.to)}},i)).add(Aw(t.playbackState.stateChangeStarted$,this.videoState.stateChangeEnded$,_O(["init"])).pipe(VO(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(Re(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:FO.INVARIANT}),this.video.srcObject=e,A(this.params.desiredState.playbackState,"playing")}onLiveStreamStop(){this.videoState.startTransitionTo("stopped"),this.syncPlayback(),this.params.output.position$.next(0),this.params.output.duration$.next(0),this.params.output.currentBuffer$.next(void 0),this.params.output.currentNativeBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.params.output.endedEvent$.next()}onLiveStreamError(e){this.onLiveStreamStop(),this.params.output.error$.next({id:"WebRTC stream runtime error",category:Fp.EXTERNAL_API,message:e.message,thrown:e})}playIfAllowed(){He(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),A(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:Fp.DOM,thrown:e}))}prepare(){this.liveStreamClient.connect()}};var na=class{constructor(e){this.length=e.length,this.iterator=e[Symbol.iterator](),this.next()}next(){this.current=this.iterator.next(),this.index=this.index===void 0?0:this.index+1}getValue(){if(this.current.done)throw new Error("Iterable is completed");return this.current.value}isCompleted(){return!!this.current.done}isLast(){return this.index===this.length-1}};import{assertNever as pn,assertNonNullable as Ht,ErrorCategory as _u,filter as Bw,isNonNullable as Vw,isNullable as zO,map as GO,merge as YO,once as KO,Subject as ce,Subscription as _w,ValueSubject as W,flattenObject as Up,devNull as XO,getWindow as JO}from"@vkontakte/videoplayer-shared/es2015";import{Observable as UO,map as Mw,Subscription as qO,Subject as HO}from"@vkontakte/videoplayer-shared/es2015";var $w=s=>new UO(e=>{let t=new qO,i=s.desiredPlaybackState$.stateChangeStarted$.pipe(Mw(({from:c,to:d})=>`${c}-${d}`)),r=s.desiredPlaybackState$.stateChangeEnded$,a=s.providerChanged$.pipe(Mw(({type:c})=>c!==void 0)),n=new HO,o=0,u="unknown";return t.add(i.subscribe(c=>{o&&window.clearTimeout(o),u=c,o=window.setTimeout(()=>n.next(c),s.maxTransitionInterval),j({m:"hangup.set",l:c,id:o})})),t.add(r.subscribe(()=>{j({m:"hangup.cl",id:o}),window.clearTimeout(o),u="unknown",o=0})),t.add(a.subscribe(c=>{o&&(j({m:"hangup.rs.0",id:o}),window.clearTimeout(o),o=0,c&&(o=window.setTimeout(()=>n.next(u),s.maxTransitionInterval),j({m:"hangup.rs.1",id:o})))})),t.add(n.subscribe(e)),()=>{window.clearTimeout(o),t.unsubscribe()}});import{ErrorCategory as jO,Subscription as WO,combine as QO,filter as Cw,once as Dw}from"@vkontakte/videoplayer-shared/es2015";function Lw(){return new(window.AudioContext||window.webkitAudioContext)}var dn=class dn{constructor(e,t,i,r){this.providerOutput=e;this.provider$=t;this.volumeMultiplierError$=i;this.volumeMultiplier=r;this.destroyController=new ne;this.subscriptions=new WO;this.audioContext=null;this.gainNode=null;this.mediaElementSource=null;this.subscriptions.add(this.provider$.pipe(Cw(a=>!!a.type),Dw()).subscribe(({type:a})=>this.subscribe(a)))}subscribe(e){O.browser.isSafari&&e!=="MPEG"||this.subscriptions.add(QO({video:this.providerOutput.element$,playbackState:this.providerOutput.playbackState$,volume:this.providerOutput.volume$}).pipe(Cw(({playbackState:t,video:i,volume:{muted:r,volume:a}})=>t==="playing"&&!!i&&!r&&!!a),Dw()).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}initAudioContextOnce(e){return y(this,null,function*(){let{volumeMultiplier:t}=this,i=Lw();this.audioContext=i;let r=i.createGain();if(this.gainNode=r,r.gain.value=t,r.connect(i.destination),i.state==="suspended"&&(yield 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){var t;this.volumeMultiplierError$.next({id:dn.errorId,category:jO.VIDEO_PIPELINE,message:(t=e==null?void 0:e.message)!=null?t:`${dn.errorId} exception`,thrown:e})}};dn.errorId="VolumeMultiplierManager";var oa=dn;var ZO={chunkDuration:5e3,maxParallelRequests:5},hn=class{constructor(e){this.current$=new W({type:void 0});this.providerError$=new ce;this.noAvailableProvidersError$=new ce;this.volumeMultiplierError$=new ce;this.providerOutput={position$:new W(0),duration$:new W(1/0),volume$:new W({muted:!1,volume:1}),availableVideoStreams$:new W([]),currentVideoStream$:new W(void 0),availableVideoTracks$:new W([]),currentVideoTrack$:new W(void 0),availableVideoCodecs$:new W([]),availableAudioStreams$:new W([]),currentAudioStream$:new W(void 0),availableAudioTracks$:new W([]),availableAudioCodecs$:new W([]),currentVideoSegmentLength$:new W(0),currentAudioSegmentLength$:new W(0),isAudioAvailable$:new W(!0),autoVideoTrackLimitingAvailable$:new W(!1),autoVideoTrackLimits$:new W(void 0),currentBuffer$:new W(void 0),currentNativeBuffer$:new W(void 0),isBuffering$:new W(!0),error$:new ce,fetcherError$:new ce,fetcherRecoverableError$:new ce,warning$:new ce,willSeekEvent$:new ce,soundProhibitedEvent$:new ce,seekedEvent$:new ce,loopedEvent$:new ce,endedEvent$:new ce,manifestRequested$:new ce,firstBytesManifest$:new ce,manifestReceived$:new ce,firstBytesRequested$:new ce,firstBytesReceived$:new ce,firstBytesEvent$:new ce,loadedMetadataEvent$:new ce,firstFrameEvent$:new ce,canplay$:new ce,isLive$:new W(void 0),isLiveEnded$:new W(null),canPlayLiveTailBuffer$:new W(!1),isLowLatency$:new W(!1),canChangePlaybackSpeed$:new W(!0),liveTime$:new W(void 0),liveBufferTime$:new W(void 0),liveLatency$:new W(void 0),severeStallOccurred$:new ce,availableTextTracks$:new W([]),currentTextTrack$:new W(void 0),hostname$:new W(void 0),httpConnectionType$:new W(void 0),httpConnectionReused$:new W(void 0),httpConnectionMetrics$:new W(void 0),httpDownloadMetrics$:new W(void 0),inPiP$:new W(!1),inFullscreen$:new W(!1),element$:new W(void 0),elementVisible$:new W(!0),availableSources$:new W(void 0),is3DVideo$:new W(!1),playbackState$:new W(""),getCurrentTime$:new W(null)};this.subscription=new _w;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=Hc([...lE(this.params.tuning),...cE(this.params.tuning)]).filter(c=>Vw(e.sources[c])),{forceFormat:i,formatsToAvoid:r}=this.params.tuning,a=[];i?a=[i]:r.length?a=[...t.filter(c=>!(0,qp.default)(r,c)),...t.filter(c=>(0,qp.default)(r,c))]:a=t,this.log({message:`Selected formats: ${a.join(" > ")}`}),this.tracer.log("Selected formats",Up(a)),this.screenFormatsIterator=new na(a);let n=[...Zd(!0),...Zd(!1)];this.chromecastFormatsIterator=new na(n.filter(c=>Vw(e.sources[c]))),this.providerOutput.availableSources$.next(e.sources);let{volumeMultiplier:o=1,tuning:{useVolumeMultiplier:u}}=this.params;u&&o!==1&&oa.isSupported()&&(this.volumeMultiplierManager=new oa(this.providerOutput,this.current$,this.volumeMultiplierError$,o))}init(){j.reset(),this.subscription.add(this.initProviderErrorHandling()).add(this.params.dependencies.chromecastInitializer.connection$.subscribe(()=>{this.reinitProvider()})).add(this.providerOutput.availableVideoCodecs$.subscribe(e=>{!this.videoCodecsIterator&&e.length>1&&(this.videoCodecsIterator=new na(e))}))}destroy(){var e;this.destroyProvider(),this.current$.next({type:void 0}),this.subscription.unsubscribe(),(e=this.volumeMultiplierManager)==null||e.destroy(),this.volumeMultiplierManager=null,this.tracer.end()}initProvider(){let e=this.chooseDestination(),t=this.chooseFormat(e);if(zO(t)){this.handleNoFormatsError(e);return}let i;try{i=this.createProvider(e,t)}catch(r){this.providerError$.next({id:"ProviderNotConstructed",category:_u.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()}switchToNextVideoCodec(){this.params.tuning.dash.codecsPrioritizeEnabled&&!this.videoCodecsIterator.isLast()&&(this.tracer.log("switchToNextVideoCodec"),this.destroyProvider(),this.videoCodecsIterator.next(),this.initProvider())}destroyProvider(){let e=this.current$.getValue().provider;if(!e)return;this.log({message:"destroyProvider"}),this.tracer.log("destroyProvider"),e.destroy();let t=this.providerOutput.position$.getValue()*1e3,i=this.params.desiredState.seekState.getState(),r=i.state!=="none";if(this.params.desiredState.seekState.setState({state:"requested",position:r?i.position:t,forcePrecise:r?i.forcePrecise:!1}),e.scene3D){let n=e.scene3D.getCameraRotation();this.params.desiredState.cameraOrientation.setState({x:n.x,y:n.y})}let a=this.providerOutput.isBuffering$;a.getValue()||a.next(!0)}createProvider(e,t){switch(this.log({message:`createProvider: ${e}:${t}`}),this.tracer.log("createProvider",{destination:e,format:t}),e){case"SCREEN":return this.createScreenProvider(t);case"CHROMECAST":return this.createChromecastProvider(t);default:return pn(e)}}createScreenProvider(e){var u,c;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 d=this.applyFailoverHost(t[e]),l=this.applyFailoverHost(t.HLS_ONDEMAND||t.HLS);Ht(d);let{useDashProviderVirtual:p,useDashProviderVirtualMobile:h}=this.params.tuning,{isMobile:f}=O.device;return!f&&p||f&&h?new js(C(x({},o),{source:d,sourceHls:l,forceVideoCodec:(u=this.videoCodecsIterator)==null?void 0:u.getValue()})):new sn(C(x({},o),{source:d,sourceHls:l,forceVideoCodec:(c=this.videoCodecsIterator)==null?void 0:c.getValue()}))}case"DASH_LIVE_CMAF":{let d=this.applyFailoverHost(t[e]);return Ht(d),this.params.tuning.useDashProviderVirtual&&!O.device.isMobile?new Zr(C(x({},o),{source:d})):this.params.tuning.useDashProviderVirtualMobile&&O.device.isMobile?new Zr(C(x({},o),{source:d})):new nn(C(x({},o),{source:d}))}case"HLS":case"HLS_ONDEMAND":case"HLS_FMP4":{let d=this.applyFailoverHost(t[e]);return Ht(d),new un(C(x({},o),{source:d}))}case"HLS_LIVE":case"HLS_LIVE_CMAF":{let d=this.applyFailoverHost(t[e]);return Ht(d),new on(C(x({},o),{source:d,config:{maxPausedTime:this.params.tuning.live.maxPausedTime},format:e}))}case"MPEG":{let d=this.applyFailoverHost(t[e]);return Ht(d),new cn(C(x({},o),{source:d}))}case"DASH_LIVE":{let d=this.applyFailoverHost(t[e]);return Ht(d),new dT(C(x({},o),{source:d,config:C(x({},ZO),{maxPausedTime:this.params.tuning.live.maxPausedTime})}))}case"WEB_RTC_LIVE":{let d=this.applyFailoverHost(t[e]);return Ht(d),new ln({container:i,source:d,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 pn(e)}}createChromecastProvider(e){let{sources:t,container:i,desiredState:r,meta:a}=this.params,n=this.providerOutput,o={meta:a,container:i,source:t,format:e,desiredState:r,output:n,dependencies:this.params.dependencies,tuning:this.params.tuning};if(this.params.tuning.chromecastPresentationApi&&this.params.dependencies.chromecastInitializer instanceof Lt){let{chromecastConnector:c}=this.params.dependencies.chromecastInitializer;return Ht(c),new ka(C(x({},o),{chromecastConnector:c}))}let u=this.params.dependencies.chromecastInitializer.connection$.getValue();return Ht(u),new Ha(C(x({},o),{connection:u}))}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 pn(e)}}skipFormat(e){switch(e){case"SCREEN":return this.screenFormatsIterator.next();case"CHROMECAST":return this.chromecastFormatsIterator.next();default:return pn(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 pn(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 C(x({},e),{url:i(e.url)})}return(0,Ow.default)((0,Hp.default)(e).map(([r,a])=>[r,i(a)]))}initProviderErrorHandling(){let e=new _w,t=!1,i=0;e.add(YO(this.providerOutput.error$.pipe(Bw(a=>!this.params.tuning.ignoreAudioRendererError||!a.message||!/AUDIO_RENDERER_ERROR/ig.test(a.message))),$w({desiredPlaybackState$:this.params.desiredState.playbackState,maxTransitionInterval:this.params.tuning.maxPlaybackTransitionInterval,position$:this.providerOutput.position$,providerChanged$:this.current$}).pipe(GO(a=>({id:`ProviderHangup:${a}`,category:_u.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(Bw(({to:n})=>n==="playing"),KO()).subscribe(()=>t=!0);e.add(a)}));let r=()=>{let a=j.drain(),{logDashLiveDebug:n,sendDashLiveDebug:o}=this.params.tuning;if(n&&JO().console.log(`===== DASH_LIVE DEBUG START ====
181
- `,a.map(({time:u,data:c,stack:d})=>`${u}: ${JSON.stringify(c)}${d?`
182
- `+d:""}`).join(`
124
+ `})|(?<privateuse2>${e}))$`.replace(/[\s\t\n]/g,``);return new RegExp(t,`i`)}var Od=e=>{if(!e?.startsWith(`P`))return;let t=(e,t)=>{let n=e?parseFloat(e.replace(`,`,`.`)):NaN;return(isNaN(n)?0:n)*t},n=/^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/.exec(e),r=n?.[1]===`-`?-1:1,i={days:t(n?.[5],r),hours:t(n?.[6],r),minutes:t(n?.[7],r),seconds:t(n?.[8],r)};return i.days*24*60*60*1e3+i.hours*60*60*1e3+i.minutes*60*1e3+i.seconds*1e3},kd=(e,t)=>{let n=e;n=gd.default(n,`$$`,`$`);let r={RepresentationID:t.representationId,Number:t.segmentNumber,Bandwidth:t.bandwidth,Time:t.segmentTime};for(let[e,t]of _d.default(r)){let r=RegExp(`\\$${e}(?:%0(\\d+)d)?\\$`,`g`);n=gd.default(n,r,(e,n)=>wd(t)?e:wd(n)?t:vd.default(t,parseInt(n,10),`0`))}return n},Ad=(e,t)=>{let n=new DOMParser().parseFromString(e,`application/xml`),r={video:[],audio:[],text:[]},i=n.children[0],a=Array.from(i.querySelectorAll(`MPD > BaseURL`).values()).map(e=>e.textContent?.trim()??``),s=yd.default(a,0)??``,c=i.getAttribute(`type`)===`dynamic`,l=i.getAttribute(`availabilityStartTime`),u=i.getAttribute(`publishTime`),d=i.getElementsByTagName(`vk:Attrs`)[0],f=d?.getElementsByTagName(`vk:XLatestSegmentPublishTime`)[0].textContent,p=d?.getElementsByTagName(`vk:XStreamIsLive`)[0].textContent,m=d?.getElementsByTagName(`vk:XStreamIsUnpublished`)[0].textContent,h=d?.getElementsByTagName(`vk:XPlaybackDuration`)[0].textContent,g;c&&(g={availabilityStartTime:l?new Date(l).getTime():0,publishTime:u?new Date(u).getTime():0,latestSegmentPublishTime:f?new Date(f).getTime():0,streamIsAlive:p===`yes`,streamIsUnpublished:m===`yes`});let _,v=i.getAttribute(`mediaPresentationDuration`),y=[...i.getElementsByTagName(`Period`)],b=y.reduce((e,t)=>o(o({},e),{},{[t.id]:t.children}),{}),x=y.reduce((e,t)=>o(o({},e),{},{[t.id]:t.getAttribute(`duration`)}),{});v?_=Od(v):bd.default(x).filter(e=>e).length&&!c?_=bd.default(x).reduce((e,t)=>e+(Od(t)??0),0):h&&(_=parseInt(h,10));let S=0,C=i.getAttribute(`profiles`)?.split(`,`)??[];for(let e of y.map(e=>e.id))for(let n of b[e]){var w;let e=n.getAttribute(`id`)??`id`+(S++).toString(10),i=n.getAttribute(`mimeType`)??``,a=n.getAttribute(`codecs`)??``,c=n.getAttribute(`contentType`)??i?.split(`/`)[0],l=n.getAttribute(`profiles`)?.split(`,`)??[],u=Ed(n.getAttribute(`lang`)??``)??{},d=((w=n.querySelector(`Label`))==null||(w=w.textContent)==null?void 0:w.trim())??void 0,f=n.querySelectorAll(`Representation`),p=n.querySelector(`SegmentTemplate`),m=n.querySelector(`Role`)?.getAttribute(`value`)??void 0,h=c,g={id:e,language:u.language,isDefault:m===`main`,label:d,codecs:a,hdr:h===`video`&&Sd(a),mime:i,representations:[]};for(let e of f){var T;let r=e.getAttribute(`lang`)??void 0,f=d??n.getAttribute(`label`)??e.getAttribute(`label`)??void 0,m=((T=e.querySelector(`BaseURL`))==null||(T=T.textContent)==null?void 0:T.trim())??``,v=new URL(m||s,t).toString(),y=e.getAttribute(`mimeType`)??i,b=e.getAttribute(`codecs`)??a??``,x;if(c===`text`){let t=e.getAttribute(`id`)||``,n=(u.privateuse==null?void 0:ya(u.privateuse,`x-auto`))||t.includes(`_auto`),r=e.querySelector(`SegmentTemplate`);if(r){let i={representationId:e.getAttribute(`id`)??void 0,bandwidth:e.getAttribute(`bandwidth`)??void 0},a=parseInt(e.getAttribute(`bandwidth`)??``,10)/1e3,s=parseInt(r.getAttribute(`startNumber`)??``,10)??1,c=parseInt(r.getAttribute(`timescale`)??``,10),l=r.querySelectorAll(`SegmentTimeline S`)??[],u=r.getAttribute(`media`);if(!u)continue;let d=[],f=0,p=``,m=0,h=s,g=0;for(let e of l){let t=parseInt(e.getAttribute(`d`)??``,10),n=parseInt(e.getAttribute(`r`)??``,10)||0,r=parseInt(e.getAttribute(`t`)??``,10);g=Number.isFinite(r)?r:g;let a=t/c*1e3,s=g/c*1e3;for(let e=0;e<n+1;e++){let n=kd(u,o(o({},i),{},{segmentNumber:h.toString(10),segmentTime:(g+e*t).toString(10)})),r=(s??0)+e*a,c=r+a;h++,d.push({time:{from:r,to:c},url:n})}g+=(n+1)*t,f+=(n+1)*a}m=g/c*1e3,p=kd(u,o(o({},i),{},{segmentNumber:h.toString(10),segmentTime:g.toString(10)})),x={id:t,kind:`text`,segmentReference:{type:`template`,baseUrl:v,segmentTemplateUrl:u,initUrl:``,totalSegmentsDurationMs:f,segments:d,nextSegmentBeyondManifest:{time:{from:m,to:1/0},url:p},timescale:c},profiles:[],duration:_,bitrate:a,mime:``,codecs:``,width:0,height:0,isAuto:n}}else x={id:t,isAuto:n,kind:`text`,url:v}}else{let t=e.getAttribute(`contentType`)??y?.split(`/`)[0]??c,r=n.getAttribute(`profiles`)?.split(`,`)??[],i=parseInt(e.getAttribute(`width`)??``,10),a=parseInt(e.getAttribute(`height`)??``,10),s=parseInt(e.getAttribute(`bandwidth`)??``,10)/1e3,u=e.getAttribute(`frameRate`)??``,d=e.getAttribute(`quality`)??void 0,f=u?Td(u):void 0,m=`${e.getAttribute(`id`)??`id`+(S++).toString(10)}@${t===`video`?`${a}p`:t===`audio`?`${s}Kbps`:b}`,g=[...C,...l,...r],w,T=e.querySelector(`SegmentBase`),E=e.querySelector(`SegmentTemplate`)??p;if(T){let[t,n]=(e.querySelector(`SegmentBase Initialization`)?.getAttribute(`range`)??``).split(`-`).map(e=>parseInt(e,10)),r={from:t,to:n},i=e.querySelector(`SegmentBase`)?.getAttribute(`indexRange`),[a,o]=i?i.split(`-`).map(e=>parseInt(e,10)):[];w={type:`byteRange`,url:v,initRange:r,indexRange:i?{from:a,to:o}:void 0}}else if(E){let t={representationId:e.getAttribute(`id`)??void 0,bandwidth:e.getAttribute(`bandwidth`)??void 0},n=parseInt(E.getAttribute(`timescale`)??``,10),r=E.getAttribute(`initialization`)??``,i=E.getAttribute(`media`),a=parseInt(E.getAttribute(`startNumber`)??``,10)??1,s=kd(r,t);if(!i)throw ReferenceError(`No media attribute in SegmentTemplate`);let c=E.querySelectorAll(`SegmentTimeline S`)??[],l=[],u=0,d=``,f=0;if(c.length){let e=a,r=0;for(let a of c){let s=parseInt(a.getAttribute(`d`)??``,10),c=parseInt(a.getAttribute(`r`)??``,10)||0,d=parseInt(a.getAttribute(`t`)??``,10);r=Number.isFinite(d)?d:r;let f=s/n*1e3,p=r/n*1e3;for(let n=0;n<c+1;n++){let a=kd(i,o(o({},t),{},{segmentNumber:e.toString(10),segmentTime:(r+n*s).toString(10)})),c=(p??0)+n*f,u=c+f;e++,l.push({time:{from:c,to:u},url:a})}r+=(c+1)*s,u+=(c+1)*f}f=r/n*1e3,d=kd(i,o(o({},t),{},{segmentNumber:e.toString(10),segmentTime:r.toString(10)}))}else if(Cd(_)){let e=parseInt(E.getAttribute(`duration`)??``,10)/n*1e3,r=Math.ceil(_/e),a=0;for(let n=1;n<r;n++){let r=kd(i,o(o({},t),{},{segmentNumber:n.toString(10),segmentTime:a.toString(10)}));l.push({time:{from:a,to:a+e},url:r}),a+=e}f=a,d=kd(i,o(o({},t),{},{segmentNumber:r.toString(10),segmentTime:a.toString(10)}))}w={type:`template`,baseUrl:v,segmentTemplateUrl:i,initUrl:s,totalSegmentsDurationMs:u,segments:l,nextSegmentBeyondManifest:{time:{from:f,to:1/0},url:d},timescale:n}}else throw ReferenceError(`Unknown MPD segment referencing type`);if(!t||!y)continue;let D={video:`video`,audio:`audio`,text:`text`}[t];if(!D)continue;h||=D,x={id:m,kind:D,segmentReference:w,profiles:g,duration:_,bitrate:s,mime:y,codecs:b,width:i,height:a,fps:f,quality:d}}g.language||=r,g.label||=f,g.mime||=y,g.codecs||=b,g.hdr||=h===`video`&&Sd(b),g.representations.push(x)}if(h){let e=r[h].find(e=>e.id===g.id);if(e&&g.representations.every(e=>e.segmentReference.type===`template`))for(let t of e.representations){let e=g.representations.find(e=>e.id===t.id);if(!e)continue;let n=e.segmentReference,r=t.segmentReference;r.segments.push(...n.segments),r.nextSegmentBeyondManifest=n.nextSegmentBeyondManifest}else r[h].push(g)}}return{duration:_,streams:r,baseUrls:a,live:g}},jd=v(Pn(),1),Md=v(it(),1);import{assertNever as Nd}from"@vkontakte/videoplayer-shared/es2015";var Pd;(e=>{e.VP9=`vp9`,e.AV1=`av1`,e.NONE=`none`,e.SMOOTH=`smooth`,e.POWER_EFFICIENT=`power_efficient`})(Pd||={});var Fd=e=>{let{webmDecodingInfo:t}=F.video,n=`DASH_WEBM`,r=`DASH_WEBM_AV1`;switch(e){case`vp9`:return[n,r];case`av1`:return[r,n];case`none`:return[];case`smooth`:return t?t[r].smooth?[r,n]:t[n].smooth?[n,r]:[r,n]:[n,r];case`power_efficient`:return t?t[r].powerEfficient?[r,n]:t[n].powerEfficient?[n,r]:[r,n]:[n,r];default:Nd(e)}},Id=({webmCodec:e,androidPreferredFormat:t,iosPreferredFormat:n,preferMultiStream:r})=>{let i=[...r?[`DASH_STREAMS`]:[],...Fd(e),`DASH_SEP`,`DASH_ONDEMAND`,...r?[]:[`DASH_STREAMS`]],a=[...r?[`DASH_STREAMS`]:[],`DASH_SEP`,`DASH_ONDEMAND`,...r?[]:[`DASH_STREAMS`]];if(F.device.isAndroid)switch(t){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`,...Fd(e),`HLS`,`HLS_ONDEMAND`];case`dash_any_webm`:return[...Fd(e),`MPEG`,...a,`HLS`,`HLS_ONDEMAND`];case`dash_sep`:return[`DASH_SEP`,`MPEG`,...Fd(e),...a,`HLS`,`HLS_ONDEMAND`];default:Nd(t)}if(F.video.nativeHlsSupported)switch(n){case`hls`:return[...i,`HLS`,`HLS_FMP4`,`HLS_ONDEMAND`,`MPEG`];case`hls_fmp4`:return[...i,`HLS_FMP4`,`HLS`,`HLS_ONDEMAND`,`MPEG`];default:Nd(n)}return[...i,`HLS`,`HLS_ONDEMAND`,`MPEG`]},Ld=({androidPreferredFormat:e,preferCMAF:t,preferWebRTC:n})=>{let r=t?[`DASH_LIVE_CMAF`,`DASH_LIVE`]:[`DASH_LIVE`,`DASH_LIVE_CMAF`],i=t?[`HLS_LIVE_CMAF`,`HLS_LIVE`]:[`HLS_LIVE`,`HLS_LIVE_CMAF`],a=[...r,...i],o=[...i,...r],s,c=F.device.isMac&&F.browser.isSafari;if(F.device.isAndroid)switch(e){case`dash`:case`dash_any_mpeg`:case`dash_any_webm`:case`dash_sep`:s=a;break;case`hls`:case`mpeg`:s=o;break;default:Nd(e)}else s=F.video.nativeHlsSupported&&!c&&!F.browser.isChromiumBased?o:c?t?[`DASH_LIVE_CMAF`,`HLS_LIVE_CMAF`,`HLS_LIVE`,`DASH_LIVE`]:[`HLS_LIVE`,`DASH_LIVE`,`DASH_LIVE_CMAF`,`HLS_LIVE_CMAF`]:a;return n?[`WEB_RTC_LIVE`,...s]:[...s,`WEB_RTC_LIVE`]},Rd=e=>e?[`HLS_LIVE`,`HLS_LIVE_CMAF`,`DASH_LIVE_CMAF`]:[`DASH_WEBM`,`DASH_WEBM_AV1`,`DASH_SEP`,`DASH_ONDEMAND`,`HLS`,`HLS_ONDEMAND`,`MPEG`],zd=e=>{if(e.size===0)return;if(e.size===1){let t=e.values().next();return jd.default(t.value.split(`.`),0)}for(let t of e){let e=jd.default(t.split(`.`),0);if(e===`opus`||e===`vp09`||e===`av01`)return e}let t=e.values().next();return jd.default(t.value.split(`.`),0)},Bd=e=>{let t=e.map(e=>Hd(e)),{codecs:n}=F.video;return Ud().filter(e=>{if(Md.default(t,e))switch(e){case`av1`:return n.av1;case`vp9`:return n.vp9;case`avc1`:return n.h264;case`hev1`:return n.h265;default:return!1}else return!1})},Vd=e=>{let t=e.map(e=>Hd(e)),{codecs:n}=F.video;return Wd().filter(e=>{if(Md.default(t,e))switch(e){case`opus`:return n.opus;case`mp4a`:return n.aac;default:return!1}else return!1})},Hd=e=>e.split(`.`)[0].replace(`0`,``),Ud=()=>[`av1`,`vp9`,`hev1`,`avc1`],Wd=()=>[`opus`,`mp4a`],Gd=v(kn(),1),Kd=(e,t={})=>{let n=t.timeout||1,r=performance.now();return B.setTimeout(()=>{e({get didTimeout(){return t.timeout?!1:performance.now()-r-1>n},timeRemaining(){return Math.max(0,1+(performance.now()-r))}})},1)},qd=e=>B.clearTimeout(e),Jd=e=>typeof e==`function`&&e?.toString().endsWith(`{ [native code] }`),Yd=!Jd(B.requestIdleCallback)||!Jd(B.cancelIdleCallback),Xd=Yd?Kd:B.requestIdleCallback,Zd=Yd?qd:B.cancelIdleCallback;import{abortable as Qd,assertNonNullable as $d,ErrorCategory as ef,fromEvent as tf,getExponentialDelay as nf,getWindow as rf,isHigher as af,isNonNullable as U,isNullable as of,once as sf,Subject as cf,Subscription as lf,ValueSubject as uf}from"@vkontakte/videoplayer-shared/es2015";var df=v(kn(),1),ff=e=>e.valid;class pf{get id(){return this.type}constructor(e,t){i(this,`source`,void 0),i(this,`boxParser`,void 0),i(this,`type`,void 0),i(this,`size`,void 0),i(this,`content`,void 0),i(this,`valid`,void 0),i(this,`children`,void 0),i(this,`cursor`,0),this.source=e,this.boxParser=t,this.children=[];let n=this.readUint32();this.type=this.readString(4),n===1&&(this.cursor+=8);let r=e.byteOffset+this.cursor,a;n===0||n===1?(this.size=void 0,this.valid=!1,a=void 0):n>e.byteLength?(this.size=n,this.valid=!1,a=Math.min(n-this.cursor,e.byteLength-this.cursor)):(this.size=n,this.valid=!0,a=n-this.cursor),this.content=new DataView(e.buffer,r,a)}scanForBoxes(e){return this.boxParser.parse(e)}readString(e,t=`ascii`){let n=new TextDecoder(t).decode(new DataView(this.source.buffer,this.source.byteOffset+this.cursor,e));return this.cursor+=e,n}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}}class mf extends pf{}import{assertNever as hf}from"@vkontakte/videoplayer-shared/es2015";class gf extends pf{constructor(e,t){if(super(e,t),i(this,`userData`,void 0),!this.valid)return;let n=this.readString(16),r=new DataView(this.content.buffer,this.content.byteOffset+16,this.content.byteLength-16);this.userData=this.parseData(n,r)}parseData(e,t){switch(e){case`ondemandlivejson`:{let e=new TextDecoder(`ascii`).decode(t),n=JSON.parse(e);return{received:n[`t-in`],prepared:n[`t-out`]}}default:hf(e)}}}class _f extends pf{constructor(e,t){if(super(e,t),i(this,`majorBrand`,void 0),i(this,`minorVersion`,void 0),i(this,`compatibleBrands`,void 0),!this.valid)return;this.compatibleBrands=[],this.majorBrand=this.readString(4),this.minorVersion=this.readUint32();let n=new DataView(this.content.buffer,this.content.byteOffset+8,this.content.byteLength-8);for(let e=0;e<n.byteLength;e+=4){let e=this.readString(4);this.compatibleBrands.push(e)}}}class vf extends pf{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}}class yf extends pf{constructor(e,t){if(super(e,t),i(this,`version`,void 0),i(this,`flags`,void 0),!this.valid)return;let n=this.readUint32();this.version=n>>>24,this.flags=n&16777215,this.content=new DataView(this.content.buffer,this.content.byteOffset+4,this.content.byteLength-4)}}class bf extends yf{constructor(e,t){super(e,t),i(this,`creationTime`,void 0),i(this,`modificationTime`,void 0),i(this,`timescale`,void 0),i(this,`duration`,void 0),i(this,`rate`,void 0),i(this,`volume`,void 0),this.valid&&(this.creationTime=this.readUint32(),this.modificationTime=this.readUint32(),this.timescale=this.readUint32(),this.duration=this.readUint32(),this.rate=this.readUint32(),this.volume=this.readUint16())}}class xf extends pf{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}}class Sf extends pf{constructor(e,t){super(e,t),i(this,`data`,void 0),this.data=this.content}}class Cf extends yf{get earliestPresentationTime(){return this.earliestPresentationTime32}get firstOffset(){return this.firstOffset32}constructor(e,t){if(super(e,t),i(this,`referenceId`,void 0),i(this,`timescale`,void 0),i(this,`earliestPresentationTime32`,void 0),i(this,`firstOffset32`,void 0),i(this,`earliestPresentationTime64`,void 0),i(this,`firstOffset64`,void 0),i(this,`reserved`,void 0),i(this,`referenceCount`,void 0),i(this,`segments`,void 0),this.valid){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 e=0;e<this.referenceCount;e++){let e=this.readUint32(),t=e>>>31,n=e<<1>>>1,r=this.readUint32();e=this.readUint32();let i=e>>>28,a=e<<3>>>3;this.segments.push({referenceType:t,referencedSize:n,subsegmentDuration:r,SAPType:i,SAPDeltaTime:a})}}}}class wf extends pf{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}}class Tf extends pf{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}}class Ef extends yf{constructor(e,t){if(super(e,t),i(this,`stereoMode`,void 0),this.valid){switch(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}}}class Df extends yf{constructor(e,t){super(e,t),i(this,`poseYawDegrees`,void 0),i(this,`posePitchDegrees`,void 0),i(this,`poseRollDegrees`,void 0),this.valid&&(this.poseYawDegrees=this.readUint32(),this.posePitchDegrees=this.readUint32(),this.poseRollDegrees=this.readUint32())}}class Of extends yf{constructor(e,t){super(e,t),i(this,`projectionBoundsTop`,void 0),i(this,`projectionBoundsBottom`,void 0),i(this,`projectionBoundsLeft`,void 0),i(this,`projectionBoundsRight`,void 0),this.valid&&(this.projectionBoundsTop=this.readUint32(),this.projectionBoundsBottom=this.readUint32(),this.projectionBoundsLeft=this.readUint32(),this.projectionBoundsRight=this.readUint32())}}class kf extends pf{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}}class Af extends yf{constructor(e,t){super(e,t),i(this,`creationTime`,void 0),i(this,`modificationTime`,void 0),i(this,`trackId`,void 0),i(this,`duration`,void 0),i(this,`layer`,void 0),i(this,`alternateGroup`,void 0),i(this,`volume`,void 0),i(this,`matrix`,void 0),i(this,`width`,void 0),i(this,`height`,void 0),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()}}class jf extends pf{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}}class Mf extends pf{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}}class Nf extends yf{constructor(e,t){super(e,t),i(this,`sequenceNumber`,void 0),this.valid&&(this.sequenceNumber=this.readUint32())}}class Pf extends pf{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}}class Ff extends yf{constructor(e,t){super(e,t),i(this,`trackId`,void 0),i(this,`baseDataOffset`,void 0),i(this,`sampleDescriptionIndex`,void 0),i(this,`defaultSampleDuration`,void 0),i(this,`defaultSampleSize`,void 0),i(this,`defaultSampleFlags`,void 0),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())}}class If extends yf{get baseMediaDecodeTime(){return this.version===1?this.baseMediaDecodeTime64:this.baseMediaDecodeTime32}constructor(e,t){super(e,t),i(this,`baseMediaDecodeTime32`,0),i(this,`baseMediaDecodeTime64`,BigInt(0)),this.version===1?this.baseMediaDecodeTime64=this.readUint64():this.baseMediaDecodeTime32=this.readUint32()}}class Lf extends yf{constructor(e,t){super(e,t),i(this,`sampleCount`,void 0),i(this,`dataOffset`,void 0),i(this,`firstSampleFlags`,void 0),i(this,`sampleDuration`,[]),i(this,`sampleSize`,[]),i(this,`sampleFlags`,[]),i(this,`sampleCompositionTimeOffset`,[]),i(this,`optionalFields`,0),this.sampleCount=this.readUint32(),this.flags&1&&(this.dataOffset=this.readUint32()),this.flags&4&&(this.firstSampleFlags=this.readUint32());for(let e=0;e<this.sampleCount;e++)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())}}class Rf extends pf{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}}class zf extends yf{constructor(e,t){super(e,t),i(this,`entryCount`,void 0),this.valid&&(this.entryCount=this.readUint32(),this.children=this.scanForBoxes(new DataView(this.content.buffer,this.content.byteOffset+4,this.content.byteLength-4)))}}class Bf extends pf{constructor(e,t){super(e,t),this.valid&&(this.children=this.scanForBoxes(new DataView(this.content.buffer,this.content.byteOffset+78,this.content.byteLength-78)))}}var Vf={ftyp:_f,moov:vf,mvhd:bf,moof:xf,mdat:Sf,sidx:Cf,trak:wf,mdia:kf,mfhd:Nf,tkhd:Af,traf:Pf,tfhd:Ff,tfdt:If,trun:Lf,minf:jf,sv3d:Tf,st3d:Ef,prhd:Df,proj:Mf,equi:Of,uuid:gf,stbl:Rf,stsd:zf,avc1:Bf,unknown:mf};class Hf{constructor(e={}){i(this,`options`,void 0),this.options=o({offset:0},e)}parse(e){let t=[],n=this.options.offset;for(;n<e.byteLength;){let r=new TextDecoder(`ascii`).decode(new DataView(e.buffer,e.byteOffset+n+4,4)),i;try{i=this.createBox(r,new DataView(e.buffer,e.byteOffset+n,e.byteLength-n))}catch(e){if(!(e instanceof RangeError))throw e}if(!i||!ff(i))break;t.push(i),n+=i.size}return t}createBox(e,t){let n=Vf[e];return n?new n(t,new Hf):new mf(t,new Hf)}}class Uf{constructor(e){i(this,`index`,void 0),this.index={},this.indexBoxLevel(e)}indexBoxLevel(e){e.forEach(e=>{var t,n;ff(e)&&((t=this.index)[n=e.type]??(t[n]=[]),this.index[e.type].push(e),e.children.length>0&&this.indexBoxLevel(e.children))})}find(e){return this.index[e]&&this.index[e][0]?this.index[e][0]:null}findAll(e){return this.index[e]||[]}}var Wf=new TextDecoder(`ascii`),Gf={validateData:e=>Wf.decode(new DataView(e.buffer,e.byteOffset+4,4))===`ftyp`,parseInit:e=>{let t={is3dVideo:!1,stereoMode:0,projectionType:1,projectionData:{pose:{yaw:0,pitch:0,roll:0},bounds:{top:0,bottom:0,left:0,right:0}}},n=new Uf(new Hf().parse(e));if(n.find(`sv3d`)){t.is3dVideo=!0;let e=n.find(`st3d`);e&&(t.stereoMode=e.stereoMode);let r=n.find(`prhd`);r&&(t.projectionData.pose.yaw=r.poseYawDegrees,t.projectionData.pose.pitch=r.posePitchDegrees,t.projectionData.pose.roll=r.poseRollDegrees);let i=n.find(`equi`);i&&(t.projectionData.bounds.top=i.projectionBoundsTop,t.projectionData.bounds.right=i.projectionBoundsRight,t.projectionData.bounds.bottom=i.projectionBoundsBottom,t.projectionData.bounds.left=i.projectionBoundsLeft)}return t},getIndexRange:()=>{},parseSegments:e=>{let t=new Cf(e,new Hf),n=t.earliestPresentationTime/t.timescale*1e3,r=e.byteOffset+e.byteLength+t.firstOffset;return t.segments.map(e=>{if(e.referenceType!==0)throw Error(`Unsupported multilevel sidx`);let i=e.subsegmentDuration/t.timescale*1e3,a={status:`none`,time:{from:n,to:n+i},byte:{from:r,to:r+e.referencedSize-1}};return n+=i,r+=e.referencedSize,a})},parseFeedableSegmentChunk:(e,t)=>{let n=new Uf(new Hf().parse(e)),r=n.findAll(`moof`),i=t?n.findAll(`uuid`):n.findAll(`mdat`);if(!(i.length&&r.length))return null;let a=r[0],o=i[i.length-1],s=a.source.byteOffset,c=o.source.byteOffset-a.source.byteOffset+o.size;return new DataView(e.buffer,s,c)},getChunkEndTime:(e,t)=>{let n=new Uf(new Hf().parse(e)).findAll(`traf`),r=n[n.length-1].children.find(e=>e.type===`tfhd`),i=n[n.length-1].children.find(e=>e.type===`tfdt`),a=n[n.length-1].children.find(e=>e.type===`trun`),o=0;return o=a.sampleDuration.length?a.sampleDuration.reduce((e,t)=>e+t,0):r.defaultSampleDuration*a.sampleCount,(Number(i.baseMediaDecodeTime)+o)/t*1e3},getServerLatencyTimestamps:e=>{let t=new Uf(new Hf().parse(e)),n={},r=t.findAll(`uuid`),i=df.default(r,-1);return i?{serverDataReceivedTimestamp:i.userData.received,serverDataPreparedTime:i.userData.received}:n},getTimescaleFromIndex:e=>new Uf(new Hf().parse(e)).find(`sidx`)?.timescale},Kf=v(it(),1);import{assertNonNullable as qf,isNonNullable as Jf,isNullable as Yf}from"@vkontakte/videoplayer-shared/es2015";import{assertNever as Xf}from"@vkontakte/videoplayer-shared/es2015";var Zf={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`}},Qf=e=>{let t=e.getUint8(0),n=0;t&128?n=1:t&64?n=2:t&32?n=3:t&16&&(n=4);let r=$f(e,n),i=r in Zf,a=i?Zf[r].type:`binary`,o=e.getUint8(n),s=0;o&128?s=1:o&64?s=2:o&32?s=3:o&16?s=4:o&8?s=5:o&4?s=6:o&2?s=7:o&1&&(s=8);let c=new DataView(e.buffer,e.byteOffset+n+1,s-1),l=o&255>>s,u=$f(c),d=l*2**((s-1)*8)+u,f=n+s,p;return p=f+d>e.byteLength?new DataView(e.buffer,e.byteOffset+f):new DataView(e.buffer,e.byteOffset+f,d),{tag:i?r:`0x`+r.toString(16).toUpperCase(),type:a,tagHeaderSize:f,tagSize:f+d,value:p,valueSize:d}},$f=(e,t=e.byteLength)=>{switch(t){case 1:return e.getUint8(0);case 2:return e.getUint16(0);case 3:return e.getUint8(0)*2**16+e.getUint16(1);case 4:return e.getUint32(0);case 5:return e.getUint8(0)*2**32+e.getUint32(1);case 6:return e.getUint16(0)*2**32+e.getUint32(2);case 7:{let t=e.getUint8(0)*2**48+e.getUint16(1)*2**32+e.getUint32(3);if(Number.isSafeInteger(t))return t}case 8:throw ReferenceError(`Int64 is not supported`)}return 0},ep=(e,t)=>{switch(t){case`int`:return e.getInt8(0);case`uint`:return $f(e);case`float`:return e.byteLength===4?e.getFloat32(0):e.getFloat64(0);case`string`:return new TextDecoder(`ascii`).decode(e);case`utf8`:return new TextDecoder(`utf-8`).decode(e);case`date`:return new Date(Date.UTC(2001,0)+e.getInt8(0)).getTime();case`master`:return e;case`binary`:return e;default:Xf(t)}},tp=(e,t)=>{let n=0;for(;n<e.byteLength;){let r=Qf(new DataView(e.buffer,e.byteOffset+n));if(!t(r))return;r.type===`master`&&tp(r.value,t),n=r.value.byteOffset-e.byteOffset+r.valueSize}},np=e=>{if(e.getUint32(0)!==440786851)return!1;let t,n,r;return tp(Qf(e).value,({tag:e,type:i,value:a})=>(e===17143?t=ep(a,i):e===17026?n=ep(a,i):e===17029&&(r=ep(a,i)),!0)),(t===void 0||t<=1)&&n!==void 0&&n===`webm`&&(r===void 0||r<=2)},rp=[357149030,290298740,374648427,174,224,30320,30321,30322,272869232,524531317,475249515,423732329,307544935],ip=[231,22612,22743,167,171,163,160,175],ap={validateData:np,parseInit:e=>{let t,n,r,i,a=!1,o=!1,s=!1,c,l,u=!1;return tp(e,({tag:e,type:d,value:f,valueSize:p})=>(e===21419?l=$f(ep(f,d)):e!==21420&&(l=void 0),e===408125543?(t=f.byteOffset,n=f.byteOffset+p):e===357149030?a=!0:e===290298740?o=!0:e===2807729?r=ep(f,d):e===17545?i=ep(f,d):e===21420&&l===475249515?c=ep(f,d):e===374648427?tp(f,({tag:e,type:t,value:n})=>e===30321?(u=ep(n,t)===1,!1):!0):a&&o&&ya(rp,e)&&(s=!0),!s)),qf(t,`Failed to parse webm Segment start`),qf(n,`Failed to parse webm Segment end`),qf(i,`Failed to parse webm Segment duration`),r??=1e6,{segmentStart:Math.round(t/1e9*r*1e3),segmentEnd:Math.round(n/1e9*r*1e3),timeScale:r,segmentDuration:Math.round(i/1e9*r*1e3),cuesSeekPosition:c,is3dVideo:u,stereoMode:0,projectionType:1,projectionData:{pose:{yaw:0,pitch:0,roll:0},bounds:{top:0,bottom:0,left:0,right:0}}}},getIndexRange:e=>{if(Yf(e.cuesSeekPosition))return;let t=e.segmentStart+e.cuesSeekPosition;return{from:t,to:t+1048576}},parseSegments:(e,t)=>{let n=!1,r=!1,i=e=>Jf(e.time)&&Jf(e.position),a=[],o;return tp(e,({tag:e,type:t,value:s})=>{switch(e){case 475249515:n=!0;break;case 187:o&&i(o)&&a.push(o),o={};break;case 179:o&&(o.time=ep(s,t));break;case 183:break;case 241:o&&(o.position=ep(s,t));break;default:n&&ya(rp,e)&&(r=!0)}return!(n&&r)}),o&&i(o)&&a.push(o),a.map((e,n)=>{let{time:r,position:i}=e,o=a[n+1];return{status:`none`,time:{from:r,to:o?o.time:t.segmentDuration},byte:{from:t.segmentStart+i,to:o?t.segmentStart+o.position-1:t.segmentEnd-1}}})},parseFeedableSegmentChunk:e=>{let t=0,n=!1;try{tp(e,r=>r.tag===524531317?r.tagSize<=e.byteLength?(t=r.tagSize,!1):(t+=r.tagHeaderSize,!0):ya(ip,r.tag)?(t+r.tagSize<=e.byteLength&&(t+=r.tagSize,n||=Kf.default([163,160,175],r.tag)),!0):!1)}catch{}return t>0&&t<=e.byteLength&&n?new DataView(e.buffer,e.byteOffset,t):null}},op=e=>{let t=/^(.+)\/([^;]+)(?:;.*)?$/.exec(e);if(t){let[,e,n]=t;if(e===`audio`||e===`video`)switch(n){case`webm`:return ap;case`mp4`:return Gf}}throw ReferenceError(`Unsupported mime type ${e}`)},sp=v(Pn(),1);import{videoSizeToQuality as cp}from"@vkontakte/videoplayer-shared/es2015";var lp=({id:e,width:t,height:n,bitrate:r,fps:i,quality:a,streamId:o,tvDisabled:s})=>{let c=(a?$o(a):void 0)??cp({width:t,height:n});return c&&{id:e,quality:c,bitrate:r,size:{width:t,height:n},fps:i,streamId:o,tvDisabled:s}},up=({id:e,bitrate:t})=>({id:e,bitrate:t}),dp=({language:e,label:t},{id:n,url:r,isAuto:i})=>({id:n,url:r,isAuto:i,type:`internal`,language:e,label:t}),fp=({language:e,label:t,id:n,url:r,isAuto:i})=>({id:n,url:r,isAuto:i,type:`internal`,language:e,label:t}),pp=({id:e,language:t,label:n,codecs:r,isDefault:i})=>({id:e,language:t,label:n,codec:sp.default(r.split(`.`),0),isDefault:i}),mp=({id:e,language:t,label:n,hdr:r,codecs:i})=>({id:e,language:t,hdr:r,label:n,codec:sp.default(i.split(`.`),0)}),hp=e=>`url`in e,gp=e=>e.type===`template`;class _p{constructor(e,t,n,{fetcher:r,tuning:a,getCurrentPosition:o,getCurrentStallDuration:l,manifest:u}){i(this,`error$`,new cf),i(this,`playingRepresentation$`,new uf(void 0)),i(this,`playingRepresentationInit$`,new uf(void 0)),i(this,`currentSegmentLength$`,new uf(0)),i(this,`onLastSegment$`,new uf(!1)),i(this,`fullyBuffered$`,new uf(!1)),i(this,`kind`,void 0),i(this,`nativeBufferManager`,void 0),i(this,`fetcher`,void 0),i(this,`tuning`,void 0),i(this,`representations`,void 0),i(this,`playingRepresentationId`,void 0),i(this,`downloadingRepresentationId`,void 0),i(this,`switchingRepresentationId`,void 0),i(this,`initData`,new Map),i(this,`initDataPromises`,new Map),i(this,`idleCallbacks`,new Map),i(this,`parsedInitData`,new Map),i(this,`segments`,new Map),i(this,`containerParser`,void 0),i(this,`bufferPlaybackQueue`,[]),i(this,`downloadingBufferItems`,[]),i(this,`preloadOnly`,!1),i(this,`forwardBufferTarget`,void 0),i(this,`failedDownloads`,0),i(this,`lastDataObtainedTimestampMs`,0),i(this,`loadByteRangeSegmentsTimeoutId`,0),i(this,`currentVirtualBufferSize`,0),i(this,`baseUrls`,[]),i(this,`baseUrlsIndex`,0),i(this,`maintainPlaybackBufferMutex`,!1),i(this,`maintainNativeBufferMutex`,!1),i(this,`bufferClearingMutex`,!1),i(this,`abortNativeBufferMutex`,!1),i(this,`switchMutex`,!1),i(this,`destroyAbortController`,new V),i(this,`downloadAbortController`,new V),i(this,`subscription`,new lf),i(this,`getCurrentPosition`,void 0),i(this,`getCurrentStallDuration`,void 0),i(this,`startWith`,Qd(this.destroyAbortController.signal,function(){var e=c(function*(e){let t=this.representations.get(e);$d(t,`Cannot find representation ${e}`),this.playingRepresentationId=e,this.downloadingRepresentationId=e,this.containerParser=op(t.mime),this.nativeBufferManager.init(t.mime,t.codecs,this.tuning.dash.useAbortMSEFix),yield this.loadInits(t);let n=this.initData.get(t.id),r=this.segments.get(t.id),i=this.parsedInitData.get(t.id);$d(n,`No init buffer for starting representation`),$d(r,`No segments for starting representation`),yield s(this.nativeBufferManager.addInitSegment(n)),this.playingRepresentation$.next(this.playingRepresentationId),this.playingRepresentationInit$.next(i)});return function(t){return e.apply(this,arguments)}}().bind(this))),i(this,`switchTo`,Qd(this.destroyAbortController.signal,function(){var e=c(function*(e,t=!0){if(of(this.downloadingRepresentationId)||e===this.downloadingRepresentationId||e===this.switchingRepresentationId)return;this.switchMutex=!0,this.switchingRepresentationId=e;let n=this.representations.get(this.downloadingRepresentationId),r=this.representations.get(e);$d(r,`No such representation ${e}`),$d(n,`No such representation ${this.downloadingRepresentationId}`),yield this.loadInitIfNeeded(r,`high`);let i=this.initData.get(r.id),a=this.segments.get(r.id);$d(i,`No init buffer for switching representation`),$d(a,`No segments for switching representation`);let o=this.getCurrentPosition()??0,s=e=>e.segment.bufferStatus!==`fed`,c=e=>{let t=this.representations.get(e.representationId);return $d(t,`No itemRepresentation for previous track before switch`),e.segment.networkStatus!==`downloaded`||this.forceSwitchCondition(t,r)},l=e=>t?s(e)&&c(e):s(e);this.bufferPlaybackQueue.filter(l).forEach(e=>e.segment.bufferStatus=`none`),this.bufferPlaybackQueue=this.bufferPlaybackQueue.filter(e=>!l(e)),this.downloadingRepresentationId=e,this.switchingRepresentationId=null,this.bufferPlaybackQueue.length?(this.abortDownload(),yield this.maintain()):yield this.seek(o),this.switchMutex=!1});return function(t){return e.apply(this,arguments)}}().bind(this))),i(this,`waitExponentialDownloadDelay`,Qd(this.downloadAbortController.signal,c(function*(){let e=nf(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(t=>{let n=rf();this.loadByteRangeSegmentsTimeoutId=n.setTimeout(t,e),this.subscription.add(tf(n,`online`).pipe(sf()).subscribe(()=>{t(),n.clearTimeout(this.loadByteRangeSegmentsTimeoutId)}))})}).bind(this))),this.kind=e,this.nativeBufferManager=t,this.fetcher=r,this.tuning=a,this.getCurrentPosition=o,this.getCurrentStallDuration=l,this.forwardBufferTarget=a.dash.forwardBufferTargetAuto,this.baseUrls=u?.baseUrls??[],this.representations=new Map(n.map(e=>[e.id,e]))}seek(e){var t=this;return a(function*(){yield t.abort(),yield t.clearBuffer(),yield t.maintain(e)})()}maintain(){var e=this;return a(function*(t=this.getCurrentPosition()){of(t)||(yield e.maintainPlaybackBuffer(t),yield e.maintainNativeBuffer(),e.actualizeLastSegmentInfo(t))}).apply(this,arguments)}getForwardPlaybackBufferDuration(e=this.getCurrentPosition()){let t=this.bufferPlaybackQueue.filter(e=>e.segment.networkStatus===`downloaded`),n=t[t.length-1],r=U(e)&&U(n)?n.segment.time.to-e:0;return Math.max(r,0)}getPlaybackBufferState(){return this.bufferPlaybackQueue.length?{from:this.bufferPlaybackQueue[0].segment.time.from,to:this.bufferPlaybackQueue[this.bufferPlaybackQueue.length-1].segment.time.to}:null}abort(){var e=this;return a(function*(){e.abortDownload(),yield e.abortNativeBuffer()})()}findSegmentStartTime(e){let t=this.downloadingRepresentationId??this.playingRepresentationId??``;return(this.segments.get(t)?.find(t=>t.time.from<=e&&t.time.to>=e))?.time.from}getRepresentationInitialTime(){return of(this.playingRepresentationId)?0:(this.segments.get(this.playingRepresentationId)?.[0].time.from??0)/1e3}calculateDurationFromSegments(e){let t=this.segments.get(e);return(t?Gd.default(t,-1)?.time.to:0)||0}get lastDataObtainedTimestamp(){return this.lastDataObtainedTimestampMs}setTarget(e){this.forwardBufferTarget=e}setPreloadOnly(e){this.preloadOnly=e}destroy(){let e=rf();if(this.initData.clear(),this.initDataPromises.clear(),this.segments.clear(),this.parsedInitData.clear(),this.representations.clear(),this.downloadAbortController.abort(),this.destroyAbortController.abort(),this.subscription.unsubscribe(),e.cancelIdleCallback)for(let t of this.idleCallbacks.values())e.cancelIdleCallback(t);this.idleCallbacks.clear(),e.clearTimeout(this.loadByteRangeSegmentsTimeoutId)}forceSwitchCondition(e,t){let n=!0;if(this.kind===`video`){let r=lp(e),i=lp(t);n=U(r)&&U(i)&&af(i.quality,r.quality)}else if(this.kind===`audio`){let r=up(e),i=up(t);n=U(r?.bitrate)&&U(i?.bitrate)&&i.bitrate>r.bitrate}return n}clearBuffer(){var e=this;return a(function*(){e.bufferClearingMutex=!0,yield e.nativeBufferManager.clear(e.destroyAbortController.signal),e.bufferPlaybackQueue.forEach(e=>e.segment.bufferStatus=`none`),e.bufferPlaybackQueue=[],e.bufferClearingMutex=!1})()}abortDownload(){this.downloadAbortController.abort(),this.downloadAbortController=new V,this.abortDownloadingItems(),this.maintainPlaybackBufferMutex=!1}abortDownloadingItems(){for(let e of this.downloadingBufferItems)e.segment.networkStatus===`downloading`&&(e.segment.networkStatus=`none`,e.segment.size=0,e.segment.loadedBytes=0,e.segment.feedingBytes=0,e.segment.fedBytes=0,e.segment.data=null);this.downloadingBufferItems=[]}abortNativeBuffer(){var e=this;return a(function*(){e.abortNativeBufferMutex=!0;let t=e.playingRepresentationId&&e.initData.get(e.playingRepresentationId),n=t instanceof ArrayBuffer?t:void 0,r=yield e.nativeBufferManager.abortBuffer(n);return e.abortNativeBufferMutex=!1,e.maintainNativeBufferMutex=!1,r})()}loadInits(e){var t=this;return a(function*(){yield t.loadInit(e,`high`,!0);for(let[e,n]of t.representations)t.idleCallbacks.set(n.id,Xd(function(){var e=a(function*(e){return yield t.loadInitIfNeeded(n,`low`,!1)});return function(t){return e.apply(this,arguments)}}()))})()}loadInitIfNeeded(e,t=`auto`,n=!1){var r=this;return a(function*(){let i=r.initDataPromises.get(e.id),a;a=r.initData.has(e.id)&&r.segments.has(e.id)?Promise.resolve():U(i)?i:r.loadInit(e,t,n),yield a})()}loadInit(e,t=`auto`,n=!1){var r=this;return a(function*(){try{let n=r.tuning.dash.useFetchPriorityHints?t:`auto`,i=r.fetcher.fetchRepresentation(e.segmentReference,r.containerParser,n);r.initDataPromises.set(e.id,i);let{initMetadata:a,initDataView:o,segments:s}=(yield i)??{};if(r.initDataPromises.delete(e.id),of(o)||of(s))return;a&&r.parsedInitData.set(e.id,a);let c=o.buffer.slice(o.byteOffset,o.byteOffset+o.byteLength);r.initData.set(e.id,c),r.segments.set(e.id,s),r.failedDownloads=0}catch(e){n&&r.error$.next({id:`LoadInits`,category:ef.WTF,message:`loadInit threw`,thrown:e})}})()}maintainNativeBuffer(){var e=this;return a(function*(){let t=e.getCurrentPosition(),n=e.segments.get(e.downloadingRepresentationId??``),r=n?.[n?.length-1];if(of(t)||of(r)||e.maintainNativeBufferMutex||e.abortNativeBufferMutex||e.bufferClearingMutex||e.switchMutex||e.preloadOnly)return;e.maintainNativeBufferMutex=!0;let i=e.bufferPlaybackQueue.find(n=>e.withinInterval(t,n.segment.time)),a=e.bufferPlaybackQueue.find(e=>e.segment.bufferStatus!==`fed`),o=e.initData.get(a?.representationId??``),s=e.bufferPlaybackQueue[0],c=e.downloadAbortController.signal,l=(e.getCurrentStallDuration()??0)>0;e.tuning.dash.useBufferHoldingOnlyOnStall&&(l&&=t>0);let u=Math.min(e.tuning.dash.minSafeBufferToPlay,r.time.to-t),d=l?e.getForwardPlaybackBufferDuration()>=u:!0;U(o)&&U(a)&&U(i)&&e.playingRepresentationId!==a.representationId&&e.withinAppendInterval(t,a.segment.time)&&(a===i||i.segment.bufferStatus===`fed`)&&(yield e.abortNativeBuffer(),yield e.nativeBufferManager.addInitSegment(o,e.downloadAbortController.signal),e.playingRepresentationId=a.representationId,e.playingRepresentation$.next(e.playingRepresentationId)),U(a)&&e.withinAppendInterval(t,a.segment.time)&&d&&(a.segment.loadedBytes===a.segment.size&&a.segment.bufferStatus===`none`?yield e.appendSegmentFully(a,c):yield e.appendSegmentPartially(a,c)),U(s)&&e.withinRemoveInterval(t,s.segment.time)&&(yield e.removeSegment(s,c)),e.pruneVirtualBuffer(t),e.maintainNativeBufferMutex=!1})()}maintainPlaybackBuffer(e){var t=this;return a(function*(){$d(t.downloadingRepresentationId);let n=t.segments.get(t.downloadingRepresentationId),r=t.representations.get(t.downloadingRepresentationId);if(of(n)||of(r)||t.maintainPlaybackBufferMutex||t.abortNativeBufferMutex||t.bufferClearingMutex||t.switchMutex)return;t.maintainPlaybackBufferMutex=!0;let i=n.find(t=>e>=t.time.from&&e<t.time.to);U(i)&&isFinite(i.time.from)&&isFinite(i.time.to)&&t.currentSegmentLength$.next(i?.time.to-i.time.from),t.downloadingBufferItems.length||(t.downloadingBufferItems=t.selectDownloadingItems(e,n)),yield t.processCachedItems();let a=t.selectItemsToLoad();yield t.loadItems(a,r),t.maintainPlaybackBufferMutex=!1})()}actualizeLastSegmentInfo(e){let t=this.segments.get(this.downloadingRepresentationId??``);if(of(t)||t.length===0)return;let n=t[t?.length-1];of(n)||(this.fullyBuffered$.next(n.time.to-e-this.getForwardPlaybackBufferDuration(e)<this.tuning.dash.bufferTolerance),this.onLastSegment$.next(e-n.time.from>0))}selectDownloadingItems(e,t){$d(this.downloadingRepresentationId);let n=this.getPlaybackBufferState(),r,i;U(n)&&this.withinInterval(e,n)?(i=this.forwardBufferTarget-this.getForwardPlaybackBufferDuration(e),r=this.bufferPlaybackQueue[this.bufferPlaybackQueue.length-1].segmentIndex+1):(i=this.forwardBufferTarget,r=t.findIndex(t=>this.withinInterval(e,t.time))),r=r===-1?0:r;let a=[];for(;r<t.length&&i>0;){a.push({representationId:this.downloadingRepresentationId,segmentIndex:r,segment:t[r]});let{from:e,to:n}=t[r].time;i-=n-e,r++}return a}processCachedItems(){var e=this;return a(function*(){let t=[...e.downloadingBufferItems];for(;t.length&&t[0].segment.networkStatus===`downloaded`;)yield e.onDownloadItem(t[0]),t.shift()})()}withinInterval(e,{from:t,to:n},r=this.tuning.dash.bufferTolerance){return U(e)?e+r>=t&&e<n:!1}withinAppendInterval(e,{from:t,to:n}){let{actionTimeShiftFromSegment:r}=this.tuning.dash;return U(e)?e+r>=t&&e+r<n||this.withinInterval(e,{from:t,to:n}):!1}withinRemoveInterval(e,{to:t}){let{actionTimeShiftFromSegment:n}=this.tuning.dash;return U(e)?e-n>t:!1}appendSegmentFully(e,t){var n=this;return a(function*(){of(e.segment.data)||(e.segment.feedingBytes=e.segment.size,(yield n.nativeBufferManager.append(e.segment.data,t))&&(e.segment.fedBytes=e.segment.size,n.onItemFullyAppended(e)))})()}appendSegmentPartially(e,t){var n=this;return a(function*(){if(of(e.segment.data)||of(e.segment.loadedBytes)||of(e.segment.feedingBytes)||of(e.segment.fedBytes)||of(e.segment.size))return;let r=e.segment.data,i=new DataView(r.buffer,r.byteOffset+e.segment.feedingBytes,r.byteLength-e.segment.feedingBytes),a=e.segment.loadedBytes===e.segment.size?i:n.parseFeedableSegmentChunk(i);a?.byteLength&&(e.segment.bufferStatus=`partially_fed`,e.segment.feedingBytes+=a.byteLength,(yield n.nativeBufferManager.append(a,t))&&(e.segment.fedBytes+=a.byteLength,e.segment.fedBytes===e.segment.size&&n.onItemFullyAppended(e)))})()}parseFeedableSegmentChunk(e){return this.containerParser.parseFeedableSegmentChunk(e,!1)}onItemFullyDownloaded(e){e.segment.networkStatus=`downloaded`}onItemFullyAppended(e){e.segment.bufferStatus=`fed`}removeSegment(e,t){var n=this;return a(function*(){let{from:r,to:i}=e.segment.time,a=(i-r)/4;(yield n.nativeBufferManager.remove(0,i-a,t))&&(e.segment.fedBytes=0,e.segment.feedingBytes=0,e.segment.bufferStatus=`none`,n.bufferPlaybackQueue.shift())})()}onDownloadItem(e){var t=this;return a(function*(){if(!t.downloadingBufferItems.find(t=>t===e))return;let n=t.getCurrentPosition();return t.downloadingBufferItems=t.downloadingBufferItems.filter(t=>t!==e||t.segment.networkStatus!==`downloaded`),(t.preloadOnly||U(n)&&!t.withinRemoveInterval(n,e.segment.time))&&!t.bufferPlaybackQueue.find(t=>t===e)&&t.bufferPlaybackQueue.push(e),t.maintainNativeBuffer()})()}pruneVirtualBuffer(e){let{maxVirtualBufferSize:t,virtualBufferPruneSize:n,bufferPruningSafeZone:r}=this.tuning.dash;if(this.currentVirtualBufferSize<t)return;let i=this.currentVirtualBufferSize-t+n;for(let t of this.segments.values())for(let n of t)U(n.size)&&i>0&&n.time.to<=e-r&&n.bufferStatus===`none`&&n.networkStatus===`downloaded`&&(n.data=null,n.networkStatus=`none`,this.currentVirtualBufferSize-=n.size,i-=n.size);for(let t of this.segments.values())for(let n of[...t].reverse())U(n.size)&&i>0&&n.time.from>=e+r&&n.bufferStatus===`none`&&n.networkStatus===`downloaded`&&!this.bufferPlaybackQueue.find(e=>e.segment===n)&&!this.downloadingBufferItems.find(e=>e.segment===n)&&(n.data=null,n.networkStatus=`none`,this.currentVirtualBufferSize-=n.size,i-=n.size)}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())this.updateRepresentationBaseUrl(t,e)}}import{ErrorCategory as vp,isNonNullable as yp,isNullable as bp,now as xp,isAbortError as Sp}from"@vkontakte/videoplayer-shared/es2015";class Cp extends _p{constructor(e,t,n,r){super(e,t,n,r)}loadItems(t,n,r=`auto`){var i=this;return a(function*(){let{signal:a}=i.downloadAbortController;if(a.aborted||!t.length)return;let s=i.prepareFetchParams(t,n),{url:c}=s,u=l(s,e);if(i.failedDownloads&&(yield i.waitExponentialDownloadDelay()),!a.aborted)try{yield i.fetcher.fetch(c,o(o({},u),{},{priority:r})),i.lastDataObtainedTimestampMs=xp(),i.failedDownloads=0}catch(e){i.abortDownloadingItems(),Sp(e)||(i.failedDownloads++,i.updateRepresentationsBaseUrlIfNeeded())}})()}selectItemsToLoad(){let e=0,t=0,n=[],r=this.preloadOnly?0:this.tuning.dash.segmentRequestSize,i=this.preloadOnly?this.forwardBufferTarget:0,a=0;for(;a<this.downloadingBufferItems.length&&this.downloadingBufferItems[a].segment.networkStatus===`none`&&(e<=r||t<=i);){let r=this.downloadingBufferItems[a].segment;r.networkStatus=`downloading`,r.size=1/0,r.loadedBytes=0,r.feedingBytes=0,r.fedBytes=0,n.push(this.downloadingBufferItems[a]),e+=r.byte.to+1-r.byte.from,t+=r.time.to+1-r.time.from,a++}return n}prepareFetchParams(e,t){var n=this;if(Bl(t.segmentReference))throw Error(`Representation is not byte range type`);let{signal:r}=this.downloadAbortController,i=t.segmentReference.url,o={from:e[0].segment.byte.from,to:e[e.length-1].segment.byte.to};return{url:i,range:o,onProgress:function(){var i=a(function*(i,a){if(!r.aborted)try{n.lastDataObtainedTimestampMs=xp(),yield n.onSomeDataLoaded({downloadingItems:e,dataView:i,loaded:a,signal:r,globalFrom:o?o.from:0,representationId:t.id})}catch(e){n.error$.next({id:`SegmentFeeding`,category:vp.VIDEO_PIPELINE,message:`Error when feeding segments`,thrown:e})}});return function(e,t){return i.apply(this,arguments)}}(),signal:r,bufferOptimisation:this.tuning.dash.fetcherBufferOptimisation}}onSomeDataLoaded({downloadingItems:e,dataView:t,representationId:n,globalFrom:r,loaded:i,signal:o}){var s=this;return a(function*(){let a=s.representations.get(n);if(!(!s.downloadingBufferItems.length||bp(a)||bp(r)||o.aborted))for(let n of e){let{segment:e}=n,a=e.byte.from-r,o=e.byte.to-r,c=o-a+1,l=a<i,u=o<=i;e.size=c,l&&(e.networkStatus===`downloading`&&e.bufferStatus===`none`&&u?(e.data=new DataView(t.buffer,t.byteOffset+a,c),s.currentVirtualBufferSize+=e.size,s.onItemFullyDownloaded(n),e.loadedBytes=Math.min(c,i-a),yield s.onDownloadItem(n)):yp(e.feedingBytes)&&s.tuning.dash.enableSubSegmentBufferFeeding&&e.networkStatus===`downloading`&&(e.loadedBytes=Math.min(c,i-a),u&&(s.currentVirtualBufferSize+=e.size,s.onItemFullyDownloaded(n)),e.loadedBytes>e.feedingBytes&&(e.data=new DataView(t.buffer,t.byteOffset+a,e.loadedBytes),yield s.onDownloadItem(n))))}})()}updateRepresentationBaseUrl(e,t){if(Bl(e.segmentReference))throw Error(`Representation is not byte range type`);e.segmentReference.url=t}}import{ErrorCategory as wp,isAbortError as Tp,isNullable as Ep,now as Dp}from"@vkontakte/videoplayer-shared/es2015";class Op extends _p{constructor(e,t,n,r){super(e,t,n,r)}loadItems(e,n,r=`auto`){var i=this;return a(function*(){let{signal:a}=i.downloadAbortController;if(a.aborted||!e.length)return;let s=i.prepareFetchParams(e,n),{url:c}=s,u=l(s,t);if(i.failedDownloads&&(yield i.waitExponentialDownloadDelay()),!a.aborted)try{let t=yield i.fetcher.fetch(c,o(o({},u),{},{priority:r}));if(i.lastDataObtainedTimestampMs=Dp(),Ep(t))return;let n=e[0],a=new DataView(t);n.segment.size=a.byteLength,n.segment.loadedBytes=a.byteLength,n.segment.data=a,i.onItemFullyDownloaded(n),yield i.onDownloadItem(n),i.failedDownloads=0}catch(e){i.abortDownloadingItems(),Tp(e)||(i.failedDownloads++,i.updateRepresentationsBaseUrlIfNeeded())}})()}selectItemsToLoad(){let e=[];for(let t of this.downloadingBufferItems){let n=t.segment;n.networkStatus=`downloading`,n.size=1/0,n.loadedBytes=0,n.feedingBytes=0,n.fedBytes=0,e.push(t)}return e}prepareFetchParams(e,t){var n=this;let r=this.getFetchUrl(e,t).toString(),{signal:i}=this.downloadAbortController;return{url:r,onProgress:function(){var r=a(function*(r,a){if(!i.aborted)try{n.lastDataObtainedTimestampMs=Dp(),yield n.onSomeDataLoaded({downloadingItems:e,dataView:r,loaded:a,signal:i,representationId:t.id})}catch(e){n.error$.next({id:`SegmentFeeding`,category:wp.VIDEO_PIPELINE,message:`Error when feeding segments`,thrown:e})}});return function(e,t){return r.apply(this,arguments)}}(),signal:i,bufferOptimisation:this.tuning.dash.fetcherBufferOptimisation}}getFetchUrl(e,t){if(!Bl(t.segmentReference))throw Error(`Representation is not template type`);return new URL(e[0].segment.url,t.segmentReference.baseUrl)}onSomeDataLoaded({downloadingItems:e,dataView:t,representationId:n,loaded:r,signal:i}){var o=this;return a(function*(){let a=e[0],{segment:s}=a,c=o.representations.get(n);!o.downloadingBufferItems.length||Ep(c)||Ep(s.feedingBytes)||s.networkStatus!==`downloading`||i.aborted||(s.loadedBytes=r,s.loadedBytes>s.feedingBytes&&o.tuning.dash.enableSubSegmentBufferFeeding&&(s.data=new DataView(t.buffer,t.byteOffset,s.loadedBytes),yield o.onDownloadItem(a)))})()}updateRepresentationBaseUrl(e,t){if(!Bl(e.segmentReference))throw Error(`Representation is not template type`);e.segmentReference.baseUrl=t}}var kp=v(Wn(),1);import{assertNonNullable as Ap,ErrorCategory as jp,isNullable as Mp,ValueSubject as Np}from"@vkontakte/videoplayer-shared/es2015";class Pp extends Op{constructor(e,t,n,r){super(e,t,n,r),i(this,`currentLiveSegmentServerLatency$`,new Np(0)),i(this,`currentLowLatencySegmentLength$`,new Np(0)),i(this,`liveInitialAdditionalOffset`,0),i(this,`isSeekingLive`,!1),i(this,`isActiveLowLatency`,void 0),this.isActiveLowLatency=r.isActiveLowLatency}updateManifest(e){if(!e||[...this.segments.values()].every(e=>!e.length))return;let t=kp.default(e.streams[this.kind],e=>e.representations);for(let e of t){if(Mp(e)||!Bl(e.segmentReference))return;let t=e.segmentReference.segments.map(e=>o(o({},e),{},{networkStatus:`none`,bufferStatus:`none`,size:void 0})),n=this.segments.get(e.id)??[],r=dc(n,-1)?.time.to??0,i=t?.findIndex(e=>r>=e.time.from+100&&r<=e.time.to+100);if(i===-1){let t=this.getActualLiveStartingSegments(e.segmentReference);this.segments.set(e.id,t)}else{let r=t.slice(i+1);this.segments.set(e.id,[...n,...r])}this.representations.set(e.id,e)}}proceedLowLatencyLive(){let e=this.downloadingRepresentationId;Ap(e);let t=this.segments.get(e);if(t?.length){let n={representationId:e,segmentIndex:t.length-1,segment:t[t.length-1]};this.updateLowLatencyLive(n)}}getLiveSegmentsToLoadState(e){let t=e?.streams[this.kind],n=(t==null?void 0:kp.default(t,e=>e.representations)).find(e=>e.id===this.downloadingRepresentationId);if(Mp(n))return;let r=this.segments.get(n.id);if(r?.length)return{from:r[0].time.from,to:r[r.length-1].time.to}}getRepresentationInitialTime(){if(Mp(this.playingRepresentationId))return 0;let e=this.representations.get(this.playingRepresentationId)?.segmentReference;return Mp(e)||!Bl(e)?0:this.getActualLiveStartingSegments(e)[0].time.from+this.tuning.dash.bufferTolerance}prepareFetchParams(e,t){return o(o({},super.prepareFetchParams(e,t)),{},{isLowLatency:this.isActiveLowLatency()})}onSomeDataLoaded(e){var t=()=>super.onSomeDataLoaded,r=this;return a(function*(){let{downloadingItems:i}=e,a=l(e,n);yield t().call(r,o({downloadingItems:i},a)),r.isActiveLowLatency()&&r.updateLowLatencyItemTime(i[0])})()}onItemFullyDownloaded(e){if(super.onItemFullyDownloaded(e),Mp(e.segment.data)||!this.isActiveLowLatency())return;let t=e.segment.data,{serverDataReceivedTimestamp:n,serverDataPreparedTime:r}=this.containerParser.getServerLatencyTimestamps(t);n&&r&&this.currentLiveSegmentServerLatency$.next(r-n),this.updateLowLatencyItemTime(e),this.updateLowLatencyLive(e)}updateLowLatencyItemTime(e){let t=e.segment.data,n=this.representations.get(e.representationId)?.segmentReference;if(Mp(e.segment.data)||Mp(n)||!Bl(n))return;let r=this.containerParser;if(e.segment.isCurrentLowLatency){let{timescale:i}=n;e.segment.time.to=r.getChunkEndTime(t,i)}}updateLowLatencyLive(e){let t=0;for(let n of this.representations.values()){let r=n.segmentReference;if(!Bl(r))return;let i=this.segments.get(n.id)??[],a=i.find(t=>Math.floor(t.time.from)===Math.floor(e.segment.time.from));if(a?.isCurrentLowLatency&&(a.time.to=e.segment.time.to,t=a.time.to-a.time.from,a.isCurrentLowLatency=!1),!i.find(t=>Math.floor(t.time.from)===Math.floor(e.segment.time.to))&&this.isActiveLowLatency()){let t=Math.round(e.segment.time.to*r.timescale/1e3).toString(10),n=kd(r.segmentTemplateUrl,{segmentTime:t});i.push({networkStatus:`none`,bufferStatus:`none`,time:{from:e.segment.time.to,to:e.segment.time.to+this.tuning.dash.bufferTolerance},url:n,isCurrentLowLatency:!0})}}this.currentLowLatencySegmentLength$.next(t)}parseFeedableSegmentChunk(e){return this.containerParser.parseFeedableSegmentChunk(e,!0)}getFetchUrl(e,t){let n=super.getFetchUrl(e,t);return this.isActiveLowLatency()&&n.searchParams.set(`low-latency`,`yes`),n}loadInit(e,t=`auto`,n=!1){var r=this;return a(function*(){try{let n=r.tuning.dash.useFetchPriorityHints?t:`auto`,i=r.fetcher.fetchRepresentation(e.segmentReference,r.containerParser,n);r.initDataPromises.set(e.id,i);let{initMetadata:a,initDataView:o,segments:s}=(yield i)??{};if(r.initDataPromises.delete(e.id),Mp(o)||Mp(s))return;a&&r.parsedInitData.set(e.id,a);let c=r.getActualLiveStartingSegments(e.segmentReference);r.segments.has(e.id)||r.segments.set(e.id,c);let l=o.buffer.slice(o.byteOffset,o.byteOffset+o.byteLength);r.initData.set(e.id,l),r.failedDownloads=0}catch(e){n&&r.error$.next({id:`LoadInits`,category:jp.WTF,message:`loadInit threw`,thrown:e})}})()}getActualLiveStartingSegments(e){let t=e.segments,n=this.isActiveLowLatency()?this.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.tuning.dashCmafLive.maxActiveLiveOffset,r=[],i=0,a=t.length-1;do r.unshift(t[a]),i+=t[a].time.to-t[a].time.from,a--;while(i<n&&a>=0);return this.liveInitialAdditionalOffset=i-n,this.isActiveLowLatency()?[r[0]]:r}}class Fp{static getBufferManager(e,t,n,r){return r.manifest?.live?new Pp(e,t,n,r):Bl(n[0].segmentReference)?new Op(e,t,n,r):new Cp(e,t,n,r)}}import{ErrorCategory as Ip,fromEvent as Lp,isNullable as Rp,Subject as zp,Subscription as Bp}from"@vkontakte/videoplayer-shared/es2015";import{assertNever as Vp,ErrorCategory as Hp,Subject as Up}from"@vkontakte/videoplayer-shared/es2015";var Wp=18,Gp=!1;try{Gp=F.browser.isSafari&&!!F.browser.safariVersion&&F.browser.safariVersion<=Wp}catch(e){console.error(e)}class Kp{constructor(e,t=!1){i(this,`bufferFull$`,new Up),i(this,`error$`,new Up),i(this,`buffer`,void 0),i(this,`queue`,[]),i(this,`currentTask`,null),i(this,`destroyed`,!1),i(this,`abortRequested`,!1),i(this,`isAbortFixEnabled`,!1),i(this,`completeTask`,()=>{try{if(this.currentTask){let e=this.currentTask.signal?.aborted;this.currentTask.callback(!e),this.currentTask=null,this.isAbortFixEnabled&&this.queue.shift()}this.queue.length&&this.pull()}catch(e){this.error$.next({id:`BufferTaskQueueUnknown`,category:Hp.VIDEO_PIPELINE,message:`Buffer appending or removal failed`,thrown:e})}}),this.buffer=e,this.isAbortFixEnabled=t,this.buffer.addEventListener(`updateend`,this.completeTask)}append(e,t){var n=this;return a(function*(){return t&&t.aborted?!1:new Promise(r=>{let i={operation:`append`,data:e,signal:t,callback:r};n.queue.push(i),n.pull()})})()}remove(e,t,n){var r=this;return a(function*(){return n&&n.aborted?!1:new Promise(i=>{let a={operation:`remove`,from:e,to:t,signal:n,callback:i};r.queue.unshift(a),r.pull()})})()}abort(e){var t=this;return a(function*(){return new Promise(n=>{let r,i=e=>{t.abortRequested=!1,n(e)};r=Gp&&e?{operation:`safariAbort`,init:e,callback:i}:{operation:`abort`,callback:i};for(let{callback:e}of t.queue)e(!1);t.abortRequested=!0,r&&(t.queue=[r]),t.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.isAbortFixEnabled?this.queue[0]: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(e){e instanceof DOMException&&e.name===`QuotaExceededError`&&t===`append`?this.bufferFull$.next(this.currentTask.data.byteLength):e instanceof DOMException&&e.name===`InvalidStateError`||this.error$.next({id:`BufferTaskQueue:${t}`,category:Hp.VIDEO_PIPELINE,message:`Buffer operation failed`,thrown:e}),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:Vp(t)}}}var qp=Kp,Jp=(e,t)=>{let n=0;for(let r=0;r<e.length;r++){let i=e.start(r)*1e3,a=e.end(r)*1e3;i<=t&&t<=a&&(n=a)}return Math.max(n-t,0)};class Yp{constructor(e){i(this,`error$`,new zp),i(this,`mediaSource`,void 0),i(this,`sourceBuffer`,void 0),i(this,`sourceBufferTaskQueue`,void 0),i(this,`subscription`,new Bp),this.mediaSource=e}init(e,t,n=!1){this.sourceBuffer=this.mediaSource.addSourceBuffer(`${e}; codecs="${t}"`),this.sourceBufferTaskQueue=new qp(this.sourceBuffer,n),this.subscription.add(this.sourceBufferTaskQueue.error$.subscribe(e=>this.error$.next(e))),this.subscription.add(Lp(this.sourceBuffer,`error`).subscribe(()=>this.error$.next({id:`SourceBuffer`,category:Ip.VIDEO_PIPELINE,message:`SourceBuffer Error event fired`})))}addInitSegment(e,t){return this.sourceBufferTaskQueue.append(e,t)}append(e,t){return this.sourceBufferTaskQueue.append(e,t)}remove(e,t,n){return this.sourceBufferTaskQueue.remove(e,t,n)}clear(e){var t=this;return a(function*(){let n=t.getBufferState();if(Rp(n))return Promise.resolve(!1);let r=!0;yield t.sourceBufferTaskQueue.abort();for(let i of n)r&&=yield t.sourceBufferTaskQueue.remove(i.from,i.to,e);return r})()}warmUpMediaSource(){!Rp(this.sourceBuffer)&&!this.sourceBuffer.updating&&(this.sourceBuffer.mode=`segments`)}getBufferState(){if(Rp(this.sourceBuffer)||!R(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length)return null;let e=[];for(let t=0;t<this.sourceBuffer.buffered.length;t++)e.push({from:this.sourceBuffer.buffered.start(t)*1e3,to:this.sourceBuffer.buffered.end(t)*1e3});return e}getForwardBufferDuration(e){return Rp(this.sourceBuffer)||!R(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length||Rp(e)?0:Jp(this.sourceBuffer.buffered,e)}abortBuffer(e){var t=this;return a(function*(){return Rp(t.sourceBuffer)?!1:t.sourceBufferTaskQueue.abort(e)})()}destroy(){if(this.subscription.unsubscribe(),this.sourceBufferTaskQueue?.destroy(),this.sourceBuffer)try{this.mediaSource.removeSourceBuffer(this.sourceBuffer)}catch(e){if(!(e instanceof DOMException&&e.name===`NotFoundError`))throw e}this.sourceBuffer=null}}var Xp=(e,t)=>{e.video.forEach(e=>{e.representations.forEach(e=>{let{height:n,codecs:r,fps:i}=e,a=t.find(([e,t,i])=>e===`${n}p`&&Hd(r)===i)?.[1];e.tvDisabled=Zp(a)&&Zp(i)&&i>a})})};function Zp(e){return typeof e==`number`&&Number.isInteger(e)}var Qp=[`timeupdate`,`progress`,`play`,`seeked`,`stalled`,`waiting`],$p=[`timeupdate`,`progress`,`loadeddata`,`playing`,`seeked`];class em{constructor(e){i(this,`element`,null),i(this,`manifestUrlString`,``),i(this,`source`,null),i(this,`manifest`,null),i(this,`tuning`,void 0),i(this,`tracer`,void 0),i(this,`forceVideoCodec`,void 0),i(this,`videoBufferManager`,void 0),i(this,`audioBufferManager`,void 0),i(this,`bufferManagers`,[]),i(this,`videoNativeBufferManager`,void 0),i(this,`audioNativeBufferManager`,void 0),i(this,`nativeBufferManagers`,[]),i(this,`throughputEstimator`,void 0),i(this,`subscription`,new Qu),i(this,`subscriptionRemovable`,new $u),i(this,`representationSubscription`,new Qu),i(this,`fetcher`,void 0),i(this,`forceEnded$`,new Zu),i(this,`stallWatchdogSubscription`,void 0),i(this,`destroyController`,new V),i(this,`state$`,new I(`none`)),i(this,`currentVideoRepresentation$`,new H(void 0)),i(this,`currentVideoRepresentationInit$`,new H(void 0)),i(this,`currentAudioRepresentation$`,new H(void 0)),i(this,`currentVideoSegmentLength$`,new H(0)),i(this,`currentAudioSegmentLength$`,new H(0)),i(this,`error$`,new Zu),i(this,`manifestRequested`,new Zu),i(this,`manifestReceived`,new Zu),i(this,`firstBytesRequested`,new Zu),i(this,`firstBytesReceived`,new Zu),i(this,`lastConnectionType$`,new H(void 0)),i(this,`lastConnectionReused$`,new H(void 0)),i(this,`lastRequestFirstBytes$`,new H(void 0)),i(this,`lastConnectionMetrics$`,new H(void 0)),i(this,`lastDownloadMetrics$`,new H(void 0)),i(this,`currentLiveTextRepresentation$`,new H(null)),i(this,`timeoutSourceOpenId`,void 0),i(this,`isLive$`,new H(!1)),i(this,`isActiveLive$`,new H(!1)),i(this,`isLowLatency$`,new H(!1)),i(this,`liveDuration$`,new H(0)),i(this,`liveSeekableDuration$`,new H(0)),i(this,`liveAvailabilityStartTime$`,new H(0)),i(this,`liveStreamStatus$`,new H(void 0)),i(this,`currentBuffer$`,new H({from:0,to:0})),i(this,`bufferLength$`,new H(0)),i(this,`nativeBufferLength$`,new H(0)),i(this,`liveLatency$`,new H(void 0)),i(this,`liveLoadBufferLength$`,new H(0)),i(this,`livePositionFromPlayer$`,new H(0)),i(this,`currentStallDuration$`,new H(0)),i(this,`videoLastDataObtainedTimestamp$`,new H(0)),i(this,`fetcherRecoverableError$`,new Zu),i(this,`fetcherError$`,new Zu),i(this,`initRepresentations`,Iu(this.destroyController.signal,function(){var e=c(function*(e,t,n){this.tracer.log(`initRepresentationsStart`,Vu({initialVideo:e,initialAudio:t,sourceHls:n})),this.representationSubscription.unsubscribe(),this.state$.startTransitionTo(`representations_ready`);let r={fetcher:this.fetcher,tuning:this.tuning,getCurrentPosition:()=>this.element?this.element.currentTime*1e3:void 0,getCurrentStallDuration:()=>this.currentStallDuration$.getValue(),isActiveLowLatency:()=>this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),manifest:this.manifest};this.createBuffers(r,e,t,n),this.initRepresentationSubscriptions(),yield this.waitStreamToOpen(),this.setSourceDuration(),Lu(this.videoBufferManager),yield Promise.all([this.videoBufferManager.startWith(e),t?this.audioBufferManager?.startWith(t):Promise.resolve()]),this.state$.setState(`representations_ready`),this.tracer.log(`initRepresentationsEnd`)});return function(t,n,r){return e.apply(this,arguments)}}().bind(this))),i(this,`fetchManifest`,Iu(this.destroyController.signal,c(function*(){try{return yield this.fetcher.fetchManifest(this.manifestUrlString)}catch(e){qu(this.manifest)&&!this.bufferLength$.getValue()&&this.error$.next({id:`LoadManifest`,category:Ru.NETWORK,message:`Failed to load manifest`,thrown:e})}}).bind(this))),this.throughputEstimator=e.throughputEstimator,this.tuning=e.tuning,this.tracer=e.tracer.createComponentTracer(this.constructor.name),this.forceVideoCodec=e.forceVideoCodec,this.fetcher=new hd({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.initTracerSubscription()}initManifest(e,t,n){var r=this;return a(function*(){r.tracer.log(`initManifest`),r.state$.startTransitionTo(`manifest_ready`),r.element=e,r.manifestUrlString=r.prepareManifestUrlString(t,n),r.manifest=yield r.updateManifest(),r.manifest?.streams.video.length?r.state$.setState(`manifest_ready`):r.error$.next({id:`NoRepresentations`,category:Ru.PARSER,message:`No playable video representations`})})()}initBuffer(){Lu(this.element),this.state$.setState(`running`),this.subscription.add(Yu(...Qp.map(e=>Hu(this.element,e)),Hu(Wu(),`online`),Gu(this.tuning.dash.tickMaintainInterval)).subscribe(()=>this.tick(),e=>this.error$.next({id:`DashVKPlayer`,category:Ru.WTF,message:`Internal logic error`,thrown:e})));let e=[...this.source?.activeSourceBuffers??[]];this.subscription.add(Yu(...e.map(e=>Hu(e,`updateend`))).subscribe(e=>this.reinitDecoderIfNeeded())),this.subscription.add(Hu(this.element,`waiting`).subscribe(e=>{this.stallWatchdogSubscription&&(this.stallWatchdogSubscription.unsubscribe(),this.subscriptionRemovable.remove(this.stallWatchdogSubscription)),this.stallWatchdogSubscription=Gu(this.tuning.dash.stallWatchdogInterval).subscribe(()=>this.stallWatchdogIntervalCallback(),e=>this.error$.next({id:`StallWatchdogCallback`,category:Ru.NETWORK,message:`Can't restore DASH after stall.`,thrown:e})),this.subscriptionRemovable.add(this.stallWatchdogSubscription)}))}switchRepresentation(e,t,n=!1){var r=this;return a(function*(){return{video:r.videoBufferManager,audio:r.audioBufferManager,text:null}[e]?.switchTo(t,n)})()}seek(e,t=!1){var n=this;return a(function*(){Lu(n.element),Lu(n.videoBufferManager);let r;r=t||n.element.duration*1e3<=n.tuning.dashSeekInSegmentDurationThreshold||Math.abs(n.element.currentTime*1e3-e)<=n.tuning.dashSeekInSegmentAlwaysSeekDelta?e:Math.max(n.videoBufferManager.findSegmentStartTime(e)??e,n.audioBufferManager?.findSegmentStartTime(e)??e),n.warmUpMediaSourceIfNeeded(r),n.element.currentTime=r/1e3,F.browser.isSafari?(yield n.audioBufferManager?.seek(r),yield n.videoBufferManager.seek(r)):(yield n.videoBufferManager.seek(r),yield n.audioBufferManager?.seek(r)),n.tracer.log(`seek`,Vu({requestedPosition:e,forcePrecise:t,position:r}))})()}warmUpMediaSourceIfNeeded(e=this.element?.currentTime){Ku(this.element)&&Ku(this.source)&&Ku(e)&&this.isStreamEnded&&this.element.duration*1e3-e>this.tuning.dash.seekBiasInTheEnd&&this.nativeBufferManagers.forEach(e=>e.warmUpMediaSource())}calculateDurationFromSegments(e){return Math.max(this.videoBufferManager?.calculateDurationFromSegments(e)||0,this.audioBufferManager?.calculateDurationFromSegments(e)||0)}get isStreamEnded(){return this.source?.readyState===`ended`}getStreams(){return this.manifest?.streams}getCodecs(){return this.manifest?.codecs}setBufferTarget(e){this.bufferManagers.forEach(t=>t.setTarget(e))}setPreloadOnly(e){this.bufferManagers.forEach(t=>t.setPreloadOnly(e))}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.nativeBufferManagers.forEach(e=>e.destroy()),this.videoBufferManager?.destroy(),this.videoBufferManager=null,this.audioBufferManager?.destroy(),this.audioBufferManager=null,this.bufferManagers=[],this.state$.setState(`none`)}destroy(){this.subscription.unsubscribe(),this.subscriptionRemovable.unsubscribe(),this.representationSubscription.unsubscribe(),this.timeoutSourceOpenId&&Wu().clearTimeout(this.timeoutSourceOpenId),this.destroyController.abort(),this.fetcher.destroy(),this.stop(),Ku(this.source)&&this.isStreamNotOpen&&Array.from(this.source.sourceBuffers).every(e=>!e.updating)&&this.source.endOfStream(),this.source=null,this.tracer.end()}get isStreamNotOpen(){return this.source?.readyState!==`open`}reinitDecoderIfNeeded(e=!1){var t=this;return a(function*(){let n=t.videoNativeBufferManager?.getBufferState()??[];if(qu(t.element)||!n.length)return;let r=t.element.currentTime*1e3;t.element.readyState<3&&n.some(e=>r>=e.from&&r<=e.to)&&(e?yield t.seek(r):t.element.currentTime=t.element.currentTime)})()}stallWatchdogIntervalCallback(){var e=this;return a(function*(){Lu(e.element),Lu(e.source);let{stallWatchdogInterval:t}=e.tuning.dash;if(e.isStreamNotOpen)return;let n=e.currentStallDuration$.getValue()+t;e.currentStallDuration$.next(n);let r={timeInWaiting:n};if(yield e.reinitDecoderIfNeeded(n%1e3==0),e.isStallExceeded(n)){if(e.tuning.dash.useNewStallExitPolicy)return e.seek(e.element.currentTime*1e3);throw Error(`Stall timeout exceeded: ${n} ms`)}yield e.restoreAfterDeepStall(r),e.tracer.log(`stallIntervalCallback`,Vu(r))})()}isStallExceeded(e){let{crashOnStallTimeout:t,crashOnStallTWithoutDataTimeout:n}=this.tuning.dash,r=Xu(),i=this.videoBufferManager?.lastDataObtainedTimestamp??0;this.videoLastDataObtainedTimestamp$.next(i);let a=this.audioBufferManager?.lastDataObtainedTimestamp??0,o=this.videoBufferManager?.getForwardPlaybackBufferDuration()??0,s=this.audioBufferManager?.getForwardPlaybackBufferDuration()??0,c=Ku(this.videoBufferManager)&&o<100&&r-i>n,l=Ku(this.audioBufferManager)&&s<100&&r-a>n;return(c||l)&&e>n||e>=t}updateManifest(){var e=this;return a(function*(){e.tracer.log(`updateManifestStart`,{manifestUrl:e.manifestUrlString});let t=yield e.fetchManifest();if(qu(t))return null;let n=e.parseManifest(t);if(!n)return null;let r=e.getResultManifest(n);return e.tracer.log(`updateManifestEnd`,Vu(r)),r})()}parseManifest(e){try{return Ad(e??``,this.manifestUrlString)}catch(t){let n=Fu(e)??{id:`ManifestParsing`,category:Ru.PARSER,message:`Failed to parse MPD manifest`,thrown:t};this.error$.next(n)}}getResultManifest(e){let t={text:e.streams.text,video:[],audio:[]},n=(e,t,n)=>{var r,i,a,o;return!!(!((r=this.element)==null||(i=r.canPlayType)==null)&&i.call(r,t)&&!((a=Ai())==null||(o=a.isTypeSupported)==null)&&o.call(a,`${t}; codecs="${n}"`)||e===`text`)},r,i;for(let a of[`video`,`audio`]){let o=e.streams[a].filter(({mime:e,codecs:t})=>n(a,e,t));t[a]=o;let s;if(this.tuning.dash.codecsPrioritizeEnabled){let e=o.map(({codecs:e})=>e);a===`audio`&&(i=Vd(e),s=i[0]),a===`video`&&(r=Bd(e),s=this.forceVideoCodec&&ya(r,this.forceVideoCodec)?this.forceVideoCodec:r[0]),s&&(t[a]=o.filter(({codecs:e})=>Hd(e)===s))}else s=zd(new Set(o.map(({codecs:e})=>e))),s&&(t[a]=o.filter(({codecs:e})=>e.startsWith(s)));if(a===`video`){let e=this.tuning.preferHDR,n=t.video.some(e=>e.hdr),r=t.video.some(e=>!e.hdr);F.display.isHDR&&e&&n?t.video=t.video.filter(e=>e.hdr):r&&(t.video=t.video.filter(e=>!e.hdr));let{videoStreamRepresentaionsFilter:i}=this.tuning.dash;i.length&&Xp(t,i)}}let a=o(o({},e),{},{streams:t});return this.tuning.dash.codecsPrioritizeEnabled&&(a.codecs={video:r,audio:i}),a}stopStallWatchdogSubscription(){this.stallWatchdogSubscription?.unsubscribe(),this.currentStallDuration$.next(0)}createBuffers(e,t,n,r){Lu(this.manifest),Lu(this.element);let i=e=>{this.representationSubscription.add(Hu(e,`error`).pipe(zu(e=>!!this.element?.played.length)).subscribe(e=>{this.error$.next({id:`VideoSource`,category:Ru.VIDEO_PIPELINE,message:`Unexpected video source error`,thrown:e})}))};this.source=Ni();let a=Wu().document,o=a.createElement(`source`);if(i(o),o.src=URL.createObjectURL(this.source),this.element.appendChild(o),ji())if(r){let e=a.createElement(`source`);i(e),e.type=`application/x-mpegurl`,e.src=r.url,this.element.appendChild(e)}else this.element.disableRemotePlayback=!0;let s=this.manifest.streams.video.reduce((e,t)=>[...e,...t.representations],[]);if(this.videoNativeBufferManager=new Yp(this.source),this.videoBufferManager=Fp.getBufferManager(`video`,this.videoNativeBufferManager,s,e),this.bufferManagers=[this.videoBufferManager],this.nativeBufferManagers=[this.videoNativeBufferManager],Ku(n)){this.audioNativeBufferManager=new Yp(this.source);let t=this.manifest.streams.audio.reduce((e,t)=>[...e,...t.representations],[]);this.audioBufferManager=Fp.getBufferManager(`audio`,this.audioNativeBufferManager,t,e),this.bufferManagers.push(this.audioBufferManager),this.nativeBufferManagers.push(this.audioNativeBufferManager)}}waitStreamToOpen(){var e=this;return a(function*(){if(e.isStreamNotOpen){let t=e.tuning.dash.sourceOpenTimeout>=0;yield new Promise(n=>{t&&(e.timeoutSourceOpenId=Wu().setTimeout(()=>{if(e.isStreamNotOpen){n();return}e.error$.next({id:`OpenOfStream`,category:Ru.VIDEO_PIPELINE,message:`Failed to open MediaSource`,thrown:Error(`Timeout reject when wait sourceopen event`),traceAsLog:!0})},e.tuning.dash.sourceOpenTimeout)),e.source?.addEventListener(`sourceopen`,()=>{e.timeoutSourceOpenId&&Wu().clearTimeout(e.timeoutSourceOpenId),n()},{once:!0})})}})()}initRepresentationSubscriptions(){this.representationSubscription.add(this.fetcher.manifestRequested.subscribe(this.manifestRequested)),this.representationSubscription.add(this.fetcher.manifestReceived.subscribe(this.manifestReceived)),this.representationSubscription.add(this.fetcher.firstBytesRequested.subscribe(this.firstBytesRequested)),this.representationSubscription.add(this.fetcher.firstBytesReceived.subscribe(this.firstBytesReceived)),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$)),this.representationSubscription.add(this.fetcher.lastConnectionMetrics$.subscribe(this.lastConnectionMetrics$)),this.representationSubscription.add(this.fetcher.lastDownloadMetrics$.subscribe(this.lastDownloadMetrics$)),this.representationSubscription.add(Yu(...this.bufferManagers.map(e=>e.error$)).subscribe(this.error$)),Lu(this.videoBufferManager),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.initBufferLengthSubscription()}initBufferLengthSubscription(){this.representationSubscription.add(Yu(...$p.map(e=>Hu(this.element,e))).pipe(Ju(e=>this.videoBufferManager?.getPlaybackBufferState()),zu(Ku),Ju(({from:e,to:t})=>({from:e/1e3,to:t/1e3}))).subscribe(this.currentBuffer$)),this.representationSubscription.add(Yu(...$p.map(e=>Hu(this.element,e))).pipe(Ju(e=>Math.min(this.videoBufferManager?.getForwardPlaybackBufferDuration()??0,this.audioBufferManager?.getForwardPlaybackBufferDuration()??0,this.audioBufferManager?.getForwardPlaybackBufferDuration()??0)),Bu()).subscribe(this.bufferLength$)),this.representationSubscription.add(this.nativeBufferLength$.pipe(zu(e=>e>this.tuning.dash.bufferEmptinessTolerance)).subscribe(e=>this.stopStallWatchdogSubscription()))}initTracerSubscription(){let e=Uu(this.tracer.error.bind(this.tracer));this.subscription.add(this.error$.subscribe(e(`error`)))}tick(){var e=this;return a(function*(){if(qu(e.element)||qu(e.videoBufferManager)||e.isStreamNotOpen)return;let t=e.element.currentTime*1e3,n=(e.videoNativeBufferManager?.getBufferState()??[]).find(e=>t>=e.from&&t<=e.to);e.nativeBufferLength$.next(n?n.to-t:0),yield e.videoBufferManager.maintain(t),yield e.audioBufferManager?.maintain(t)})()}}import{assertNonNullable as tm,combine as nm,ErrorCategory as rm,filter as im,filterChanged as am,fromEvent as om,isNonNullable as sm,map as cm,merge as lm}from"@vkontakte/videoplayer-shared/es2015";class um extends em{constructor(e){super(e)}prepareManifestUrlString(e,t){return e}initRepresentationSubscriptions(){super.initRepresentationSubscriptions(),this.initDisableStallWatchdogSubscription(),this.initEndOfVideoSubscription()}setSourceDuration(){tm(this.manifest),tm(this.source);let e=[this.manifest.duration??0,...bu.default(bu.default([...this.manifest.streams.audio,...this.manifest.streams.video],e=>e.representations),e=>{let t=[];return e.duration&&t.push(e.duration),Bl(e.segmentReference)&&e.segmentReference.totalSegmentsDurationMs&&t.push(e.segmentReference.totalSegmentsDurationMs),t})];this.source.duration=Math.max(...e)/1e3}restoreAfterDeepStall(e){var t=this;return a(function*(){tm(t.element);let n=t.element.currentTime*1e3;yield Promise.all([t.videoBufferManager?.maintain(n),t.audioBufferManager?.maintain(n)]),e.position=n})()}initDisableStallWatchdogSubscription(){tm(this.element);let e=lm(om(this.element,`ended`),this.forceEnded$),t=this.nativeBufferLength$.pipe(im(e=>e>this.tuning.dash.bufferEmptinessTolerance));this.representationSubscription.add(lm(e,t).subscribe(e=>this.stopStallWatchdogSubscription()))}initEndOfVideoSubscription(){let e=nm({allBuffersFull:lm(...this.bufferManagers.map(e=>e.fullyBuffered$)).pipe(cm(()=>this.bufferManagers.every(e=>e.fullyBuffered$.getValue()))),someBufferEnded:lm(...this.bufferManagers.map(e=>e.onLastSegment$)).pipe(cm(()=>this.bufferManagers.some(e=>e.onLastSegment$.getValue())))}).pipe(am(),cm(({allBuffersFull:e,someBufferEnded:t})=>e&&t),im(e=>e));this.representationSubscription.add(lm(this.forceEnded$,e).pipe(im(e=>sm(this.source)&&this.source.readyState===`open`&&Array.from(this.source.sourceBuffers).every(e=>!e.updating))).subscribe(()=>{try{this.source?.endOfStream()}catch(e){this.error$.next({id:`EndOfStream`,category:rm.VIDEO_PIPELINE,message:`Failed to end MediaSource stream`,thrown:e})}}))}}class dm extends yu{subscribe(){super.subscribe();let{output:e,observableVideo:t,connect:n,genericErrorListener:r}=this.getProviderSubscriptionInfo();n(t.timeUpdate$,e.position$),n(t.durationChange$,e.duration$),this.subscription.add(this.player.currentVideoRepresentation$.pipe(hl(),ml(e=>gl(e))).subscribe(e=>{let t=this.player.calculateDurationFromSegments(e);t&&this.params.output.duration$.next(t/1e3)},r))}getPlayer(){return new um({throughputEstimator:this.params.dependencies.throughputEstimator,tuning:this.params.tuning,compatibilityMode:this.params.source.compatibilityMode,tracer:this.tracer,forceVideoCodec:this.params.forceVideoCodec})}seek(e,t){this.params.output.willSeekEvent$.next(),this.player.seek(e,t)}}import{combine as fm,merge as pm,filter as mm,filterChanged as hm,isNullable as gm,map as _m,ValueSubject as vm,isNonNullable as ym}from"@vkontakte/videoplayer-shared/es2015";import{isNullable as bm,ValueSubject as xm}from"@vkontakte/videoplayer-shared/es2015";class Sm{constructor(e){i(this,`prevReported`,void 0),i(this,`rawSeries$`,void 0),i(this,`smoothedSeries$`,void 0),i(this,`reportedSeries$`,void 0),i(this,`smoothed`,void 0),i(this,`pastMeasures`,[]),i(this,`takenMeasures`,0),i(this,`measuresCursor`,0),i(this,`params`,void 0),i(this,`smoothed$`,void 0),i(this,`debounced$`,void 0),this.params=e,this.pastMeasures=Array(e.deviationDepth),this.smoothed=this.prevReported=e.initial,this.smoothed$=new xm(e.initial),this.debounced$=new xm(e.initial);let t=e.label??`value`+Math.random().toString(16).substring(2,6);this.rawSeries$=new vs(`raw_${t}`),this.smoothedSeries$=new vs(`smoothed_${t}`),this.reportedSeries$=new vs(`reported_${t}`),this.rawSeries$.next(e.initial),this.smoothedSeries$.next(e.initial),this.reportedSeries$.next(e.initial)}next(e){let t=0,n=0;for(let e=0;e<this.pastMeasures.length;e++)this.pastMeasures[e]!==void 0&&(t+=(this.pastMeasures[e]-this.smoothed)**2,n++);this.takenMeasures=n,t/=n;let r=Math.sqrt(t),i=this.smoothed+this.params.deviationFactor*r,a=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>i||this.smoothed<a)&&(bm(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))}}class Cm extends Sm{constructor(e){super(e),i(this,`slow`,void 0),i(this,`fast`,void 0),this.slow=this.fast=e.initial}updateSmoothedValue(e){this.slow=eu(this.slow,e,this.params.emaAlphaSlow),this.fast=eu(this.fast,e,this.params.emaAlphaFast),this.smoothed=(this.params.fastDirection>0?Math.max:Math.min)(this.slow,this.fast)}}class wm extends Sm{constructor(e){super(e),i(this,`emaSmoothed`,void 0),this.emaSmoothed=e.initial}updateSmoothedValue(e){let t=tu(this.pastMeasures,this.takenMeasures);this.emaSmoothed=eu(this.emaSmoothed,e,this.params.emaAlpha),this.smoothed=nu(this.pastMeasures,this.takenMeasures,this.measuresCursor-1,this.params.basisTrendChangeCount)?this.emaSmoothed:t}}class Tm extends Sm{constructor(e){super(e),i(this,`extremumInterval`,void 0),i(this,`furtherValues`,[]),i(this,`currentTopExtremumValue`,0),this.extremumInterval=e.extremumInterval}next(e){this.currentTopExtremumValue<=e?(this.currentTopExtremumValue=e,this.furtherValues=[]):this.furtherValues.length===this.extremumInterval?(super.next(this.currentTopExtremumValue),this.currentTopExtremumValue=e,this.furtherValues=[]):this.furtherValues.push(e)}updateSmoothedValue(e){this.smoothed=this.smoothed?eu(this.smoothed,e,this.params.emaAlpha):e}}class Em{static getSmoothedValue(e,t,n){return n.type===`TwoEma`?new Cm({initial:e,emaAlphaSlow:n.emaAlphaSlow,emaAlphaFast:n.emaAlphaFast,changeThreshold:n.changeThreshold,fastDirection:t,deviationDepth:n.deviationDepth,deviationFactor:n.deviationFactor,label:`throughput`}):new wm({initial:e,emaAlpha:n.emaAlpha,basisTrendChangeCount:n.basisTrendChangeCount,changeThreshold:n.changeThreshold,deviationDepth:n.deviationDepth,deviationFactor:n.deviationFactor,label:`throughput`})}static getLiveBufferSmoothedValue(e,t){return new Tm(o({initial:e,label:`liveEdgeDelay`},t))}}import{assertNonNullable as Dm,combine as Om,ErrorCategory as km,filter as Am,filterChanged as jm,fromEvent as Mm,interval as Nm,isNonNullable as Pm,isNullable as Fm,map as Im,now as Lm,throttle as Rm}from"@vkontakte/videoplayer-shared/es2015";var zm=(e,t)=>{e&&e.playbackRate!==t&&(e.playbackRate=t)};import{isNullable as Bm,ValueSubject as Vm}from"@vkontakte/videoplayer-shared/es2015";class Hm{constructor(e,t){i(this,`currentRepresentation$`,new Vm(null)),i(this,`maxRepresentations`,4),i(this,`representationsCursor`,0),i(this,`representations`,[]),i(this,`getCurrentPosition`,void 0),i(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(!Bm(e))for(let t of this.representations)for(let n of t){let t=n.segmentReference,r=t.segments.length,i=t.segments[0].time.from,a=t.segments[r-1].time.to;if(e<i||e>a)continue;let s=t.segments.find(t=>t.time.from<=e&&t.time.to>=e);!s||this.currentSegment?.time.from===s.time.from&&this.currentSegment.time.to===s.time.to||(this.currentSegment=s,this.currentRepresentation$.next(o(o({},n),{},{label:`Live Text`,language:`ru`,isAuto:!0,url:new URL(s.url,t.baseUrl).toString()})))}}destroy(){this.currentRepresentation$.next(null),this.currentSegment=null,this.representations=[]}processStreams(e){for(let t of e??[]){let e=Hm.filterRepresentations(t.representations);if(e){this.representations[this.representationsCursor]=e,this.representationsCursor=(this.representationsCursor+1)%this.maxRepresentations;break}}}static isSupported(e){return!!e?.some(e=>Hm.filterRepresentations(e.representations))}static filterRepresentations(e){return e?.filter(e=>e.kind===`text`&&`segmentReference`in e&&Bl(e.segmentReference))}}class Um extends em{constructor(e){super(e),i(this,`liveTextManager`,void 0),i(this,`liveStreamEndTimestamp`,0),i(this,`liveBuffer`,void 0),i(this,`livePauseWatchdogSubscription`,void 0),i(this,`liveWasInterrupted`,!1),this.liveBuffer=Em.getLiveBufferSmoothedValue(this.tuning.dashCmafLive.lowLatency.maxTargetOffset,o({},e.tuning.dashCmafLive.lowLatency.bufferEstimator))}seek(e){var t=this;return a(function*(){Dm(t.element),t.updateManifestUrlWithTimeOffset(e),t.manifest=yield t.updateManifest(),yield t.forcePositionToRepresentationInitialTime()})()}initBuffer(){super.initBuffer(),this.forcePositionToRepresentationInitialTime()}forcePositionToRepresentationInitialTime(){var e=()=>super.seek,t=this;return a(function*(){let n=t.videoBufferManager?.getRepresentationInitialTime()??0;yield e().call(t,n,!1)})()}tick(){var e=()=>super.tick,t=this;return a(function*(){yield e().call(t);let n=(t.element?.currentTime??0)*1e3;t.liveTextManager?.maintain(n)})()}setSourceDuration(){Dm(this.source),this.source.duration=2**53-1}isStallExceeded(e){let{keepSilentStallWatchdogWhenNotActive:t}=this.tuning.dashCmafLive,n=this.liveStreamStatus$.getValue()===`active`;return(!t||n)&&super.isStallExceeded(e)}restoreAfterDeepStall(e){var t=this;return a(function*(){let{liveStallReinitInterval:n}=t.tuning.dash,{keepSilentStallWatchdogWhenNotActive:r}=t.tuning.dashCmafLive,i=t.currentStallDuration$.getValue(),a=t.liveStreamStatus$.getValue()===`active`;if(i%n===0){let n=t.normalizeLiveOffset(-1*t.livePositionFromPlayer$.getValue()*1e3);e.liveLastOffset=n,!a&&r?(t.liveWasInterrupted=!0,t.updateManifestUrlWithTimeOffset(n),t.manifest=yield t.updateManifest(),yield t.forcePositionToRepresentationInitialTime()):t.seek(n).catch(e=>{t.error$.next({id:`stallIntervalCallback`,category:km.VIDEO_PIPELINE,message:`stallIntervalCallback failed`,thrown:e})})}})()}updateManifest(){var e=()=>super.updateManifest,t=this;return a(function*(){let n=yield e().call(t);if(Fm(n))return null;if(Fm(n.live))return t.error$.next({id:`ManifestParsing`,category:km.PARSER,message:`MPD doesnt contain live section for live stream`}),null;t.isLive$.next(!0);let{availabilityStartTime:r,latestSegmentPublishTime:i,streamIsUnpublished:a,streamIsAlive:o}=n.live,s=(n.duration??0)/1e3;t.liveSeekableDuration$.next(-1*s),t.liveDuration$.next((i-r)/1e3),t.liveAvailabilityStartTime$.next(n.live.availabilityStartTime);let c=`active`;if(o||(c=a?`unpublished`:`unexpectedly_down`),t.liveStreamStatus$.next(c),t.bufferManagers.forEach(e=>e.updateManifest(n)),t.liveTextManager?.updateLive(n),o&&t.liveWasInterrupted){t.liveWasInterrupted=!1,t.stopStallWatchdogSubscription();let e=t.normalizeLiveOffset(-1*t.livePositionFromPlayer$.getValue()*1e3);t.seek(e).catch(e=>{t.error$.next({id:`updateManifest`,category:km.VIDEO_PIPELINE,message:`seekLive after stream restore failed`,thrown:e})})}return n})()}prepareManifestUrlString(e,t){return oi(e,t,2)}updateManifestUrlWithTimeOffset(e){let t=this.liveStreamStatus$.getValue()===`active`?0:Lm()-this.liveStreamEndTimestamp,n=this.normalizeLiveOffset(e+t);this.isActiveLive$.next(n===0),this.manifestUrlString=oi(this.manifestUrlString,n,2)}createBuffers(e,t,n,r){Dm(this.manifest),super.createBuffers(e,t,n,r),Hm.isSupported(this.manifest.streams.text)&&!this.isLowLatency$.getValue()&&(this.liveTextManager=new Hm(this.manifest.streams.text,e))}initRepresentationSubscriptions(){Dm(this.element),Dm(this.videoBufferManager),this.isActiveLive$.next(this.isLive$.getValue()),super.initRepresentationSubscriptions();let e=this.videoBufferManager,t=this.bufferManagers;this.initStreamDurationOnPauseSubscription(),this.initLiveChangePlaybackRateSubscriptions(),this.initLiveDurationSubscriptions(e),this.initLiveBufferInfoSubscriptions(e,t),this.initLiveMaintainSubscription(t),Pm(this.liveTextManager)&&this.representationSubscription.add(this.liveTextManager.currentRepresentation$.subscribe(this.currentLiveTextRepresentation$))}initStreamDurationOnPauseSubscription(){var e=this;Dm(this.element);let{liveUpdateInterval:t}=this.tuning.dash,n=()=>Nm(t).subscribe(function(){var n=a(function*(n){let r=si(e.manifestUrlString,2);e.manifestUrlString=oi(e.manifestUrlString,r+t,2),e.liveStreamStatus$.getValue()===`active`&&(e.manifest=yield e.updateManifest())});return function(e){return n.apply(this,arguments)}}());this.representationSubscription.add(Mm(this.element,`pause`).subscribe(e=>{this.livePauseWatchdogSubscription=n(),this.representationSubscription.add(this.livePauseWatchdogSubscription)})),this.representationSubscription.add(Mm(this.element,`play`).subscribe(e=>this.livePauseWatchdogSubscription?.unsubscribe()))}initLiveDurationSubscriptions(e){this.representationSubscription.add(this.liveDuration$.pipe(jm()).subscribe(e=>this.liveStreamEndTimestamp=Lm())),this.representationSubscription.add(e.currentLowLatencySegmentLength$.subscribe(e=>{if(!this.isActiveLive$.getValue()&&!this.isLowLatency$.getValue()&&!e)return;let t=this.liveSeekableDuration$.getValue()-e/1e3;this.liveSeekableDuration$.next(Math.max(t,-1*this.tuning.dashCmafLive.maxLiveDuration)),this.liveDuration$.next(this.liveDuration$.getValue()+e/1e3)}))}initLiveChangePlaybackRateSubscriptions(){this.representationSubscription.add(Om({isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe(Im(({isActiveLive:e,isLowLatency:t})=>e&&t),jm(),Am(e=>!this.isManualDecreasePlaybackInLive())).subscribe(e=>zm(this.element,1))),this.representationSubscription.add(Om({liveBuffer:this.liveBuffer.smoothed$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe(Am(e=>!this.isManualDecreasePlaybackInLive())).subscribe(({liveBuffer:e,isActiveLive:t,isLowLatency:n})=>{if(!n||!t)return;let r=this.tuning.dashCmafLive.lowLatency.maxTargetOffset,i=this.tuning.dashCmafLive.lowLatency.maxTargetOffsetDeviation,a=this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup,o=e-r,s=1;Math.abs(o)>i&&(s=1+Math.sign(o)*a),zm(this.element,s)}))}initLiveBufferInfoSubscriptions(e,t){this.representationSubscription.add(Om({bufferLength:this.bufferLength$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe(Am(({bufferLength:e,isActiveLive:t,isLowLatency:n})=>t&&n&&!!e),Im(({bufferLength:e})=>e)).subscribe(this.liveBuffer)),this.representationSubscription.add(this.bufferLength$.subscribe(e=>{let n=0;if(e){let e=(this.element?.currentTime??0)*1e3;n=Math.min(...t.map(t=>t.getLiveSegmentsToLoadState(this.manifest)?.to??e))-e}this.liveLoadBufferLength$.getValue()!==n&&this.liveLoadBufferLength$.next(n)})),this.representationSubscription.add(Om({isLive:this.isLive$,rtt:this.throughputEstimator.rtt$,bufferLength:this.bufferLength$,segmentServerLatency:e.currentLiveSegmentServerLatency$}).pipe(Am(({isLive:e})=>e),jm((e,t)=>t.bufferLength<e.bufferLength),Im(({rtt:e,bufferLength:t,segmentServerLatency:n})=>{let r=si(this.manifestUrlString,2);return(e/2+t+n+r)/1e3})).subscribe(this.liveLatency$))}initLiveMaintainSubscription(e){var t=this;let n=0;this.representationSubscription.add(Om({liveLoadBufferLength:this.liveLoadBufferLength$,bufferLength:this.bufferLength$}).pipe(Rm(this.tuning.dash.liveUpdateInterval)).subscribe(function(){var r=a(function*({liveLoadBufferLength:r,bufferLength:i}){Dm(t.element);let a=t.element.playbackRate,o=si(t.manifestUrlString,2),s=Math.abs(t.livePositionFromPlayer$.getValue())*1e3,c=Math.min(s,t.tuning.dashCmafLive.normalizedTargetMinBufferSize*a),l=t.tuning.dashCmafLive.normalizedActualBufferOffset*a,u=t.tuning.dashCmafLive.normalizedLiveMinBufferSize*a,d=isFinite(r)?r:i,f=t.isActiveLive$.getValue()&&t.isLowLatency$.getValue(),p=s<=t.tuning.live.activeLiveDelay;t.isActiveLive$.next(p);let m=`none`;if(f?m=`active_low_latency`:t.isLowLatency$.getValue()&&p?(e.forEach(e=>e.proceedLowLatencyLive()),m=`active_low_latency`):o!==0&&d<c?m=`live_forward_buffering`:d<c+u&&(m=`live_with_target_offset`),isFinite(r)&&(n=r>n?r:n),m===`live_forward_buffering`||m===`live_with_target_offset`){let e=n-(c+l),i=t.normalizeLiveOffset(Math.trunc(o+e/a)),s=Math.abs(i-o),u=0;!r||s<=t.tuning.dashCmafLive.offsetCalculationError?u=o:i>0&&s>t.tuning.dashCmafLive.offsetCalculationError&&(u=i),t.manifestUrlString=oi(t.manifestUrlString,u,2)}(m===`live_with_target_offset`||m===`live_forward_buffering`)&&(n=0,t.manifest=yield t.updateManifest())});return function(e){return r.apply(this,arguments)}}(),e=>{this.error$.next({id:`updateLive`,category:km.VIDEO_PIPELINE,thrown:e,message:`Failed to update live with subscription`})}))}isManualDecreasePlaybackInLive(){if(!this.element||!this.isLive$.getValue())return!1;let e=1-this.element.playbackRate;return Number(e.toFixed(2))>Number(this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup.toFixed(2))}normalizeLiveOffset(e){return Math.trunc(e/1e3)*1e3}}class Wm extends yu{constructor(e){super(e),this.textTracksManager.destroy()}getPlayer(){return new Um({throughputEstimator:this.params.dependencies.throughputEstimator,tuning:this.params.tuning,compatibilityMode:this.params.source.compatibilityMode,tracer:this.tracer,forceVideoCodec:this.params.forceVideoCodec})}subscribe(){super.subscribe();let e=!1,t=-1,{output:n,observableVideo:r,desiredState:i,connect:a}=this.getProviderSubscriptionInfo();this.params.output.position$.next(0),this.params.output.isLive$.next(!0),this.params.output.canPlayLiveTailBuffer$.next(!0);let o=new vm(1);a(r.playbackRateState$,o),a(r.timeUpdate$,n.liveBufferTime$),a(this.player.liveSeekableDuration$,n.duration$),a(this.player.liveLatency$,n.liveLatency$),this.params.tuning.dashCmafLive.catchupLiveForMutedInactiveTab&&this.subscription.add(n.elementVisible$.pipe(hm()).subscribe(t=>{let r=n.position$.getValue(),i=n.volume$.getValue(),a=!i.volume||i.muted;!t&&!r&&a?e=!0:t&&e&&(this.seek(0),e=!1)})),this.subscription.add(this.params.output.position$.subscribe(this.player.livePositionFromPlayer$)).add(i.isLowLatency.stateChangeEnded$.pipe(_m(e=>e.to)).subscribe(this.player.isLowLatency$)).add(fm({liveBufferTime:n.liveBufferTime$,liveAvailabilityStartTime:this.player.liveAvailabilityStartTime$}).pipe(_m(({liveBufferTime:e,liveAvailabilityStartTime:t})=>e&&t?e+t:void 0)).subscribe(n.liveTime$)).add(fm({liveDuration:this.player.liveDuration$,liveStreamStatus:this.player.liveStreamStatus$,playbackRate:pm(r.playbackRateState$,new vm(1))}).pipe(mm(({liveStreamStatus:e,liveDuration:t})=>e===`active`&&!!t)).subscribe(({liveDuration:e,playbackRate:r})=>{let i=n.liveBufferTime$.getValue(),a=n.position$.getValue(),{playbackCatchupSpeedup:o}=this.params.tuning.dashCmafLive.lowLatency;a||r<1-o||this.video.paused||gm(i)||(t=e-i)})).add(fm({time:n.liveBufferTime$,liveDuration:this.player.liveDuration$,playbackRate:pm(r.playbackRateState$,new vm(1))}).pipe(hm((e,t)=>this.player.liveStreamStatus$.getValue()===`active`?e.liveDuration===t.liveDuration:e.time===t.time)).subscribe(({time:e,liveDuration:r,playbackRate:i})=>{let a=n.position$.getValue(),{playbackCatchupSpeedup:o}=this.params.tuning.dashCmafLive.lowLatency;if(!a&&!this.video.paused&&i>=1-o||gm(e)||gm(r))return;let s=-1*(r-e-t);n.position$.next(Math.min(s,0))})).add(this.player.currentLiveTextRepresentation$.subscribe(e=>{if(e){let t=Ll(e);this.params.output.availableTextTracks$.next([t])}})),this.params.tuning.dashCmafLive.externalStopControl||this.subscription.add(this.player.liveStreamStatus$.pipe(mm(e=>ym(e))).subscribe(e=>n.isLiveEnded$.next(e===`unpublished`&&n.position$.getValue()===0)))}seek(e){this.params.output.willSeekEvent$.next();let t=-e,n=Math.trunc(t/1e3<=Math.abs(this.params.output.duration$.getValue())?t:0);this.player.seek(n).then(()=>{this.params.output.position$.next(e/1e3)})}}import{assertNever as Gm,assertNonNullable as Km,combine as qm,debounce as Jm,ErrorCategory as Ym,filter as Xm,filterChanged as Zm,fromEvent as Qm,isNonNullable as $m,isNullable as eh,map as th,merge as nh,observableFrom as rh,once as ih,Subscription as ah,throttle as oh}from"@vkontakte/videoplayer-shared/es2015";var sh=v(Wn(),1),ch=(e,t,n=0)=>{for(let r=0;r<e.length;r++)if(e.start(r)*1e3-n<=t&&e.end(r)*1e3+n>t)return!0;return!1};import{abortable as lh,assertNonNullable as uh,combine as dh,ErrorCategory as fh,filter as ph,filterChanged as mh,flattenObject as hh,fromEvent as gh,getTraceSubscriptionMethod as _h,interval as vh,isNonNullable as yh,isNullable as bh,map as xh,merge as Sh,now as Ch,Subject as wh,Subscription as Th,SubscriptionRemovable as Eh,tap as Dh,throttle as Oh,ValueSubject as W}from"@vkontakte/videoplayer-shared/es2015";var kh=v(it(),1),Ah=v(kn(),1),jh=v(Wn(),1),Mh=v(Tn(),1);import{assertNever as Nh,ErrorCategory as Ph,Subject as Fh}from"@vkontakte/videoplayer-shared/es2015";var Ih=18,Lh=!1;try{Lh=F.browser.isSafari&&!!F.browser.safariVersion&&F.browser.safariVersion<=Ih}catch(e){console.error(e)}class Rh{constructor(e,t=!1){i(this,`bufferFull$`,new Fh),i(this,`error$`,new Fh),i(this,`buffer`,void 0),i(this,`queue`,[]),i(this,`currentTask`,null),i(this,`destroyed`,!1),i(this,`abortRequested`,!1),i(this,`isAbortFixEnabled`,!1),i(this,`completeTask`,()=>{try{if(this.currentTask){let e=this.currentTask.signal?.aborted;this.currentTask.callback(!e),this.currentTask=null,this.isAbortFixEnabled&&this.queue.shift()}this.queue.length&&this.pull()}catch(e){this.error$.next({id:`BufferTaskQueueUnknown`,category:Ph.VIDEO_PIPELINE,message:`Buffer appending or removal failed`,thrown:e})}}),this.buffer=e,this.isAbortFixEnabled=t,this.buffer.addEventListener(`updateend`,this.completeTask)}append(e,t){var n=this;return a(function*(){return t&&t.aborted?!1:new Promise(r=>{let i={operation:`append`,data:e,signal:t,callback:r};n.queue.push(i),n.pull()})})()}remove(e,t,n){var r=this;return a(function*(){return n&&n.aborted?!1:new Promise(i=>{let a={operation:`remove`,from:e,to:t,signal:n,callback:i};r.queue.unshift(a),r.pull()})})()}abort(e){var t=this;return a(function*(){return new Promise(n=>{let r,i=e=>{t.abortRequested=!1,n(e)};r=Lh&&e?{operation:`safariAbort`,init:e,callback:i}:{operation:`abort`,callback:i};for(let{callback:e}of t.queue)e(!1);t.abortRequested=!0,r&&(t.queue=[r]),t.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.isAbortFixEnabled?this.queue[0]: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(e){e instanceof DOMException&&e.name===`QuotaExceededError`&&t===`append`?this.bufferFull$.next(this.currentTask.data.byteLength):e instanceof DOMException&&e.name===`InvalidStateError`||this.error$.next({id:`BufferTaskQueue:${t}`,category:Ph.VIDEO_PIPELINE,message:`Buffer operation failed`,thrown:e}),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:Nh(t)}}}var zh=Rh,Bh=e=>{let t=0;for(let n=0;n<e.length;n++)t+=e.end(n)-e.start(n);return t*1e3};import{abortable as Vh,assertNonNullable as Hh,ErrorCategory as Uh,fromEvent as Wh,getExponentialDelay as Gh,isHigher as Kh,isNonNullable as qh,isNullable as G,now as Jh,once as Yh,Subject as Xh,Subscription as Zh,ValueSubject as Qh,isAbortError as $h}from"@vkontakte/videoplayer-shared/es2015";class eg{constructor(e,t,n,{fetcher:r,tuning:a,getCurrentPosition:o,isActiveLowLatency:l,compatibilityMode:u=!1,manifest:d}){i(this,`currentLiveSegmentServerLatency$`,new Qh(0)),i(this,`currentLowLatencySegmentLength$`,new Qh(0)),i(this,`currentSegmentLength$`,new Qh(0)),i(this,`onLastSegment$`,new Qh(!1)),i(this,`fullyBuffered$`,new Qh(!1)),i(this,`playingRepresentation$`,new Qh(void 0)),i(this,`playingRepresentationInit$`,new Qh(void 0)),i(this,`error$`,new Xh),i(this,`gaps`,[]),i(this,`subscription`,new Zh),i(this,`kind`,void 0),i(this,`initData`,void 0),i(this,`parsedInitData`,void 0),i(this,`representations`,void 0),i(this,`segments`,void 0),i(this,`allInitsLoaded`,!1),i(this,`activeSegments`,new Set),i(this,`mediaSource`,void 0),i(this,`playingRepresentationId`,void 0),i(this,`downloadingRepresentationId`,void 0),i(this,`switchingToRepresentationId`,void 0),i(this,`sourceBuffer`,void 0),i(this,`downloadAbortController`,new V),i(this,`switchAbortController`,new V),i(this,`destroyAbortController`,new V),i(this,`useSmartRepresentationSwitch`,!1),i(this,`getCurrentPosition`,void 0),i(this,`isActiveLowLatency`,void 0),i(this,`tuning`,void 0),i(this,`forwardBufferTarget`,void 0),i(this,`fetcher`,void 0),i(this,`bufferLimit`,1/0),i(this,`sourceBufferTaskQueue`,void 0),i(this,`gapDetectionIdleCallback`,void 0),i(this,`initLoadIdleCallback`,void 0),i(this,`failedDownloads`,0),i(this,`baseUrls`,[]),i(this,`baseUrlsIndex`,0),i(this,`compatibilityMode`,void 0),i(this,`preloadOnly`,void 0),i(this,`isLive`,!1),i(this,`liveUpdateSegmentIndex`,0),i(this,`liveInitialAdditionalOffset`,0),i(this,`isSeekingLive`,!1),i(this,`index`,0),i(this,`lastDataObtainedTimestampMs`,0),i(this,`loadByteRangeSegmentsTimeoutId`,0),i(this,`startWith`,Vh(this.destroyAbortController.signal,function(){var e=c(function*(e){let t=this.representations.get(e);Hh(t,`Cannot find representation ${e}`),this.playingRepresentationId=e,this.downloadingRepresentationId=e,this.sourceBuffer=this.mediaSource.addSourceBuffer(`${t.mime}; codecs="${t.codecs}"`),this.sourceBufferTaskQueue=new zh(this.sourceBuffer,this.tuning.dash.useAbortMSEFix),this.subscription.add(Wh(this.sourceBuffer,`updateend`).subscribe(()=>{this.checkEjectedSegments(),this.maintain()},e=>{let t,n=this.mediaSource.readyState;n!==`open`&&(t={id:`SegmentEjection_source_${n}`,category:Uh.VIDEO_PIPELINE,message:`Error when trying to clear segments ejected by browser`,thrown:e}),t??={id:`SegmentEjection`,category:Uh.VIDEO_PIPELINE,message:`Error when trying to clear segments ejected by browser`,thrown:e},this.error$.next(t)})),this.subscription.add(Wh(this.sourceBuffer,`error`).subscribe(()=>this.error$.next({id:`SourceBuffer`,category:Uh.VIDEO_PIPELINE,message:`SourceBuffer Error event fired`}))),this.subscription.add(this.sourceBufferTaskQueue.bufferFull$.subscribe(e=>{let t=this.getCurrentPosition();if(!this.sourceBuffer||!t||!R(this.mediaSource,this.sourceBuffer))return;this.bufferLimit=Math.min(this.bufferLimit,Bh(this.sourceBuffer.buffered)*.8);let n=this.getForwardBufferDuration(t),r=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(t,e*2,n<r).catch(e=>{this.handleAsyncError(e,`pruneBuffer`)})})),this.subscription.add(this.sourceBufferTaskQueue.error$.subscribe(e=>this.error$.next(e))),yield this.loadInit(t,`high`,!0);let n=this.initData.get(t.id),r=this.segments.get(t.id),i=this.parsedInitData.get(t.id);Hh(n,`No init buffer for starting representation`),Hh(r,`No segments for starting representation`),n instanceof ArrayBuffer&&(this.searchGaps(r,t),yield this.sourceBufferTaskQueue.append(n,this.destroyAbortController.signal),this.playingRepresentation$.next(this.playingRepresentationId),this.playingRepresentationInit$.next(i))});return function(t){return e.apply(this,arguments)}}().bind(this))),i(this,`switchTo`,Vh(this.destroyAbortController.signal,function(){var e=c(function*(e,t=!1){if(!R(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let n=this.representations.get(e);Hh(n,`No such representation ${e}`);let r=this.segments.get(e),i=this.initData.get(e);if(G(i)||G(r)?yield this.loadInit(n,`high`,!1):i instanceof Promise&&(yield i),r=this.segments.get(e),Hh(r,`No segments for starting representation`),i=this.initData.get(e),!(!i||!(i instanceof ArrayBuffer)||!this.sourceBuffer||!R(this.mediaSource,this.sourceBuffer))){if(yield this.abort(),yield this.sourceBufferTaskQueue.append(i,this.downloadAbortController.signal),t)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e,yield this.dropBuffer();else{let t=this.getCurrentPosition();qh(t)&&!this.isLive&&(this.bufferLimit=1/0,yield s(this.pruneBuffer(t,1/0,!0))),this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e}this.maintain()}});return function(t){return e.apply(this,arguments)}}().bind(this))),i(this,`switchToOld`,Vh(this.destroyAbortController.signal,function(){var e=c(function*(e,t=!1){if(!R(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let n=this.representations.get(e);Hh(n,`No such representation ${e}`);let r=this.segments.get(e),i=this.initData.get(e);if(G(i)||G(r)?yield this.loadInit(n,`high`,!1):i instanceof Promise&&(yield i),r=this.segments.get(e),Hh(r,`No segments for starting representation`),i=this.initData.get(e),!(!i||!(i instanceof ArrayBuffer)||!this.sourceBuffer||!R(this.mediaSource,this.sourceBuffer)))if(yield this.abort(),yield this.sourceBufferTaskQueue.append(i,this.downloadAbortController.signal),t)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e,yield this.dropBuffer(),this.maintain();else{let t=this.getCurrentPosition();qh(t)&&(this.isLive||(this.bufferLimit=1/0,yield s(this.pruneBuffer(t,1/0,!0))),this.maintain(t)),this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e}});return function(t){return e.apply(this,arguments)}}().bind(this))),i(this,`seekLive`,Vh(this.destroyAbortController.signal,function(){var e=c(function*(e){let t=jh.default(e,e=>e.representations);if(!this.downloadingRepresentationId||!t.length)return;this.isSeekingLive=!0;for(let e of this.representations.keys()){let n=t.find(t=>t.id===e);n&&this.representations.set(e,n);let r=this.representations.get(e);if(!r||!gp(r.segmentReference)){this.isSeekingLive=!1;return}let i=this.getActualLiveStartingSegments(r.segmentReference);this.segments.set(r.id,i)}let n=this.switchingToRepresentationId??this.downloadingRepresentationId,r=this.representations.get(n);Hh(r,`Representation not found by id ${n}`);let i=this.segments.get(n);Hh(i,`No segments for starting representation`);let a=this.initData.get(n);if(Hh(a,`No init buffer for starting representation`),!(a instanceof ArrayBuffer)){this.isSeekingLive=!1;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(i,r),yield this.sourceBufferTaskQueue.append(a,this.destroyAbortController.signal),this.isSeekingLive=!1});return function(t){return e.apply(this,arguments)}}().bind(this))),this.fetcher=r,this.tuning=a,this.compatibilityMode=u,this.forwardBufferTarget=a.dash.forwardBufferTargetAuto,this.getCurrentPosition=o,this.isActiveLowLatency=l,this.isLive=!!d?.live,this.baseUrls=d?.baseUrls??[],this.initData=new Map(n.map(e=>[e.id,null])),this.segments=new Map,this.parsedInitData=new Map,this.representations=new Map(n.map(e=>[e.id,e])),this.kind=e,this.mediaSource=t,this.sourceBuffer=null}switchToWithPreviousAbort(e,t=!1){!R(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId||(this.switchAbortController.abort(),this.switchAbortController=new V,Vh(this.switchAbortController.signal,function(){var e=c(function*(e,t=!1){this.switchingToRepresentationId=e;let n=this.representations.get(e);Hh(n,`No such representation ${e}`);let r=this.segments.get(e),i=this.initData.get(e);if(G(i)||G(r)?yield this.loadInit(n,`high`,!1):i instanceof Promise&&(yield i),r=this.segments.get(e),Hh(r,`No segments for starting representation`),i=this.initData.get(e),!(!(i instanceof ArrayBuffer)||!this.sourceBuffer||!R(this.mediaSource,this.sourceBuffer))){if(yield this.abort(),yield this.sourceBufferTaskQueue.append(i,this.downloadAbortController.signal),t)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e,yield this.dropBuffer();else{let t=this.getCurrentPosition();qh(t)&&!this.isLive&&(this.bufferLimit=this.forwardBufferTarget,yield this.pruneBuffer(t,1/0,!0)),this.downloadingRepresentationId=e,this.switchingToRepresentationId=void 0}this.maintain()}});return function(t){return e.apply(this,arguments)}}().bind(this))(e,t))}warmUpMediaSource(){!G(this.sourceBuffer)&&!this.sourceBuffer.updating&&(this.sourceBuffer.mode=`segments`)}abort(){var e=this;return a(function*(){for(let t of e.activeSegments)e.abortSegment(t.segment);return e.activeSegments.clear(),e.downloadAbortController.abort(),e.downloadAbortController=new V,e.abortBuffer()})()}maintain(e=this.getCurrentPosition()){if(G(e)||G(this.downloadingRepresentationId)||G(this.playingRepresentationId)||G(this.sourceBuffer)||!R(this.mediaSource,this.sourceBuffer)||qh(this.switchingToRepresentationId)||this.isSeekingLive)return;let t=this.representations.get(this.downloadingRepresentationId),n=this.representations.get(this.playingRepresentationId),r=this.segments.get(this.downloadingRepresentationId),i=this.segments.get(this.playingRepresentationId);if(Hh(t,`No such representation ${this.downloadingRepresentationId}`),Hh(n,`No such representation ${this.playingRepresentationId}`),G(r)||G(i))return;let a=r.find(t=>e>=t.time.from&&e<t.time.to);qh(a)&&isFinite(a.time.from)&&isFinite(a.time.to)&&this.currentSegmentLength$.next(a?.time.to-a.time.from);let o=e;if(this.playingRepresentationId!==this.downloadingRepresentationId){let r=this.getForwardBufferDuration(e),i=lp(n),s=lp(t),c=this.useSmartRepresentationSwitch&&this.tuning.dash.useNewRepresentationSwitch&&this.tuning.dash.useSmartRepresentationSwitch&&qh(i)&&qh(s)&&Kh(i.quality,s.quality),l=this.useSmartRepresentationSwitch&&this.tuning.dash.useNewRepresentationSwitch&&this.tuning.dash.useDelayedRepresentationSwitch;if(c||l?o+=Math.min(r,this.tuning.dash.representationSwitchForwardBufferGap):a&&a.time.to-e<this.tuning.dash.maxSegmentDurationLeftToSelectNextSegment&&r>=a.time.to-e+100&&(o=a?a.time.to+100:-1/0),this.tuning.dash.useNewRepresentationSwitch){let t=[...this.segments.entries()].map(([t,n])=>({representationId:t,status:n.find(t=>e>=t.time.from&&e<t.time.to)?.status})).find(e=>e.status===`fed`)?.representationId;t&&(this.playingRepresentationId=t,this.playingRepresentation$.next(this.playingRepresentationId),this.playingRepresentationInit$.next(this.parsedInitData.get(this.playingRepresentationId)))}}if(isFinite(this.bufferLimit)&&Bh(this.sourceBuffer.buffered)>=this.bufferLimit){let t=this.getForwardBufferDuration(e),n=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(e,1/0,t<n).catch(e=>{this.handleAsyncError(e,`pruneBuffer`)});return}let s=[];if(!this.activeSegments.size&&(s=this.selectForwardBufferSegments(r,t.segmentReference.type,o),s.length)){let e=`auto`;if(this.tuning.dash.useFetchPriorityHints&&a)if(kh.default(s,a))e=`high`;else{let t=Ah.default(s,0);t&&t.time.from-a.time.to>=this.forwardBufferTarget/2&&(e=`low`)}this.loadSegments(s,t,e).catch(e=>{this.handleAsyncError(e,`loadSegments`)})}(!this.preloadOnly&&!this.allInitsLoaded&&a&&a.status===`fed`&&!s.length&&this.getForwardBufferDuration(e)>3e3||this.isActiveLowLatency())&&this.loadNextInit();let c=Ah.default(r,-1);!this.isLive&&c&&(this.fullyBuffered$.next(c.time.to-e-this.getForwardBufferDuration(e)<100),this.onLastSegment$.next(e-c.time.from>0))}get lastDataObtainedTimestamp(){return this.lastDataObtainedTimestampMs}searchGaps(e,t){this.gaps=[];let n=0,r=this.isLive?this.liveInitialAdditionalOffset:0;for(let i of e)Math.trunc(i.time.from-n)>0&&this.gaps.push({representation:t.id,from:n,to:i.time.from+r,persistent:!0}),n=i.time.to;qh(t.duration)&&t.duration-n>0&&!this.isLive&&this.gaps.push({representation:t.id,from:n,to:t.duration,persistent:!0})}getActualLiveStartingSegments(e){let t=e.segments,n=this.isActiveLowLatency()?this.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.tuning.dashCmafLive.maxActiveLiveOffset,r=[],i=0,a=t.length-1;do r.unshift(t[a]),i+=t[a].time.to-t[a].time.from,a--;while(i<n&&a>=0);return this.liveInitialAdditionalOffset=i-n,this.isActiveLowLatency()?[r[0]]:r}getLiveSegmentsToLoadState(e){let t=e?.streams[this.kind];if(!t)return;let n=jh.default(t,e=>e.representations).find(e=>e.id===this.downloadingRepresentationId);if(!n)return;let r=this.segments.get(n.id);if(r?.length)return{from:r[0].time.from,to:r[r.length-1].time.to}}updateLive(e){if(!e||[...this.segments.values()].every(e=>!e.length))return;let t=jh.default(e.streams[this.kind],e=>e.representations);for(let e of t){if(!e||!gp(e.segmentReference))return;let t=e.segmentReference.segments.map(e=>o(o({},e),{},{status:`none`,size:void 0})),n=this.segments.get(e.id)??[],r=dc(n,-1)?.time.to??0,i=t?.findIndex(e=>r>=e.time.from+100&&r<=e.time.to+100);if(i===-1){this.liveUpdateSegmentIndex=0;let t=this.getActualLiveStartingSegments(e.segmentReference);this.segments.set(e.id,t)}else{let r=t.slice(i+1);this.segments.set(e.id,[...n,...r])}}}proceedLowLatencyLive(){let e=this.downloadingRepresentationId;Hh(e);let t=this.segments.get(e);if(t?.length){let e=t[t.length-1];this.updateLowLatencyLiveIfNeeded(e)}}calculateDurationFromSegments(){if(!this.playingRepresentationId)return 0;let e=this.segments.get(this.playingRepresentationId);return(e?Ah.default(e,-1)?.time.to:0)||0}setSmartRepresentationSwitch(e){this.useSmartRepresentationSwitch=e}updateLowLatencyLiveIfNeeded(e){let t=0;for(let n of this.representations.values()){let r=n.segmentReference;if(!gp(r))return;let i=this.segments.get(n.id)??[],a=i.find(t=>Math.floor(t.time.from)===Math.floor(e.time.from));if(a&&!isFinite(a.time.to)&&(a.time.to=e.time.to,t=a.time.to-a.time.from),!i.find(t=>Math.floor(t.time.from)===Math.floor(e.time.to))&&this.isActiveLowLatency()){let t=Math.round(e.time.to*r.timescale/1e3).toString(10),n=kd(r.segmentTemplateUrl,{segmentTime:t});i.push({status:`none`,time:{from:e.time.to,to:1/0},url:n})}}this.currentLowLatencySegmentLength$.next(t)}findSegmentStartTime(e){let t=this.switchingToRepresentationId??this.downloadingRepresentationId??this.playingRepresentationId;if(!t)return;let n=this.segments.get(t);return n?n.find(t=>t.time.from<=e&&t.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&&Zd&&Zd(this.gapDetectionIdleCallback),this.initLoadIdleCallback&&Zd&&Zd(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,n){return this.isLive?this.selectForwardBufferSegmentsLive(e,n):this.selectForwardBufferSegmentsRecord(e,t,n)}selectForwardBufferSegmentsLive(e,t){let n=e.findIndex(e=>t>=e.time.from&&t<e.time.to);return this.playingRepresentationId!==this.downloadingRepresentationId&&(this.liveUpdateSegmentIndex=n),this.liveUpdateSegmentIndex<e.length?e.slice(this.liveUpdateSegmentIndex++):[]}selectForwardBufferSegmentsRecord(e,t,n){let r=this.getForwardBufferDuration(n),i=e.findIndex(({status:e,time:{from:t,to:i}},a)=>{let o=t>n||t<=n&&i>=n||a===0&&n===0,s=Math.min(this.forwardBufferTarget,this.bufferLimit),c=this.preloadOnly&&t<=n+s||r<s&&i-t>=s||i<=n+s;return(e===`none`||e===`partially_ejected`&&o&&c&&this.sourceBuffer&&R(this.mediaSource,this.sourceBuffer)&&!(ch(this.sourceBuffer.buffered,t)&&ch(this.sourceBuffer.buffered,i)))&&o&&c});if(i===-1)return[];if(t!==`byteRange`)return e.slice(i,i+1);let a=e,o=0,s=0,c=[],l=this.preloadOnly?0:this.tuning.dash.segmentRequestSize,u=this.preloadOnly?this.forwardBufferTarget:0;for(let e=i;e<a.length&&(o<=l||s<=u);e++){let t=a[e];if(o+=t.byte.to+1-t.byte.from,s+=t.time.to+1-t.time.from,t.status===`none`||t.status===`partially_ejected`)c.push(t);else break}return c}loadSegments(e,t,n=`auto`){var r=this;return a(function*(){gp(t.segmentReference)?yield r.loadTemplateSegment(e[0],t,n):yield r.loadByteRangeSegments(e,t,n)})()}loadTemplateSegment(e,t,n=`auto`){var r=this;return a(function*(){e.status=`downloading`;let i={segment:e,loadedBytes:0,feedingBytes:0,fedBytes:0,representationId:t.id};r.activeSegments.add(i);let{range:a,url:o,signal:s,onProgress:l,onProgressTasks:u}=r.prepareTemplateFetchSegmentParams(e,t);r.failedDownloads&&s&&(yield Vh(s,c(function*(){let e=Gh(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(t=>setTimeout(t,e))}).bind(r))(),s.aborted&&r.abortActiveSegments([e]));try{let e=yield r.fetcher.fetch(o,{range:a,signal:s,onProgress:l,priority:n,isLowLatency:r.isActiveLowLatency(),bufferOptimisation:r.tuning.dash.fetcherBufferOptimisation});if(r.lastDataObtainedTimestampMs=Jh(),!e)return;let c=new DataView(e),d=op(t.mime);if(!isFinite(i.segment.time.to)){let e=t.segmentReference.timescale;i.segment.time.to=d.getChunkEndTime(c,e)}l&&i.feedingBytes&&u?yield Promise.all(u):yield r.sourceBufferTaskQueue.append(c,s);let{serverDataReceivedTimestamp:f,serverDataPreparedTime:p}=d.getServerLatencyTimestamps(c);f&&p&&r.currentLiveSegmentServerLatency$.next(p-f),i.segment.status=`downloaded`,r.onSegmentFullyAppended(i,t.id),r.failedDownloads=0}catch(t){r.abortActiveSegments([e]),$h(t)||(r.failedDownloads++,r.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())gp(t.segmentReference)?t.segmentReference.baseUrl=e:t.segmentReference.url=e}loadByteRangeSegments(e,t,n=`auto`){var r=this;return a(function*(){if(!e.length)return;for(let n of e)n.status=`downloading`,r.activeSegments.add({segment:n,loadedBytes:0,feedingBytes:0,fedBytes:0,representationId:t.id});let{range:i,url:a,signal:o,onProgress:s}=r.prepareByteRangeFetchSegmentParams(e,t);r.failedDownloads&&o&&(yield Vh(o,c(function*(){let e=Gh(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(t=>{this.loadByteRangeSegmentsTimeoutId=window.setTimeout(t,e),Wh(window,`online`).pipe(Yh()).subscribe(()=>{t(),window.clearTimeout(this.loadByteRangeSegmentsTimeoutId)})})}).bind(r))(),o.aborted&&r.abortActiveSegments(e));try{yield r.fetcher.fetch(a,{range:i,onProgress:s,signal:o,priority:n,bufferOptimisation:r.tuning.dash.fetcherBufferOptimisation}),r.lastDataObtainedTimestampMs=Jh(),r.failedDownloads=0}catch(t){r.abortActiveSegments(e),$h(t)||(r.failedDownloads++,r.updateRepresentationsBaseUrlIfNeeded())}})()}prepareByteRangeFetchSegmentParams(e,t){var n=this;if(gp(t.segmentReference))throw Error(`Representation is not byte range type`);let r=t.segmentReference.url,i={from:Ah.default(e,0).byte.from,to:Ah.default(e,-1).byte.to},{signal:o}=this.downloadAbortController;return{url:r,range:i,signal:o,onProgress:function(){var e=a(function*(e,r){if(!o.aborted)try{n.lastDataObtainedTimestampMs=Jh(),yield n.onSomeByteRangesDataLoaded({dataView:e,loaded:r,signal:o,onSegmentAppendFailed:()=>n.abort(),globalFrom:i?i.from:0,representationId:t.id})}catch(e){n.error$.next({id:`SegmentFeeding`,category:Uh.VIDEO_PIPELINE,message:`Error when feeding segments`,thrown:e})}});return function(t,n){return e.apply(this,arguments)}}()}}prepareTemplateFetchSegmentParams(e,t){if(!gp(t.segmentReference))throw Error(`Representation is not template type`);let n=new URL(e.url,t.segmentReference.baseUrl);this.isActiveLowLatency()&&n.searchParams.set(`low-latency`,`yes`);let r=n.toString(),{signal:i}=this.downloadAbortController,a=[];return{url:r,signal:i,onProgress:this.isActiveLowLatency()||this.tuning.dash.enableSubSegmentBufferFeeding&&this.liveUpdateSegmentIndex<3?(e,n)=>{if(!i.aborted)try{this.lastDataObtainedTimestampMs=Jh();let r=this.onSomeTemplateDataLoaded({dataView:e,loaded:n,signal:i,onSegmentAppendFailed:()=>this.abort(),representationId:t.id});a.push(r)}catch(e){this.error$.next({id:`SegmentFeeding`,category:Uh.VIDEO_PIPELINE,message:`Error when feeding segments`,thrown:e})}}:void 0,onProgressTasks:a}}abortActiveSegments(e){for(let t of this.activeSegments)kh.default(e,t.segment)&&this.abortSegment(t.segment)}onSomeTemplateDataLoaded({dataView:e,representationId:t,loaded:n,onSegmentAppendFailed:r,signal:i}){var o=this;return a(function*(){if(!o.activeSegments.size||!R(o.mediaSource,o.sourceBuffer))return;let a=o.representations.get(t);if(a)for(let s of o.activeSegments){let{segment:c}=s;if(s.representationId===t){if(i.aborted){r();continue}if(s.loadedBytes=n,s.loadedBytes>s.feedingBytes){let t=new DataView(e.buffer,e.byteOffset+s.feedingBytes,s.loadedBytes-s.feedingBytes),n=op(a.mime).parseFeedableSegmentChunk(t,o.isLive);n?.byteLength&&(c.status=`partially_fed`,s.feedingBytes+=n.byteLength,yield o.sourceBufferTaskQueue.append(n),s.fedBytes+=n.byteLength)}}}})()}onSomeByteRangesDataLoaded({dataView:e,representationId:t,globalFrom:n,loaded:r,signal:i,onSegmentAppendFailed:o}){var s=this;return a(function*(){if(!s.activeSegments.size||!R(s.mediaSource,s.sourceBuffer))return;let a=s.representations.get(t);if(a)for(let c of s.activeSegments){let{segment:l}=c;if(c.representationId!==t)continue;if(i.aborted){yield o();continue}let u=l.byte.from-n,d=l.byte.to-n,f=d-u+1,p=u<r,m=d<=r;if(!p)continue;let h=op(a.mime);if(l.status===`downloading`&&m){l.status=`downloaded`;let n=new DataView(e.buffer,e.byteOffset+u,f);(yield s.sourceBufferTaskQueue.append(n,i))&&!i.aborted?s.onSegmentFullyAppended(c,t):yield o()}else if(s.tuning.dash.enableSubSegmentBufferFeeding&&(l.status===`downloading`||l.status===`partially_fed`)&&(c.loadedBytes=Math.min(f,r-u),c.loadedBytes>c.feedingBytes)){let n=new DataView(e.buffer,e.byteOffset+u+c.feedingBytes,c.loadedBytes-c.feedingBytes),r=c.loadedBytes===f?n:h.parseFeedableSegmentChunk(n);r?.byteLength&&(l.status=`partially_fed`,c.feedingBytes+=r.byteLength,(yield s.sourceBufferTaskQueue.append(r,i))&&!i.aborted?(c.fedBytes+=r.byteLength,c.fedBytes===f&&s.onSegmentFullyAppended(c,t)):yield o())}}})()}onSegmentFullyAppended(e,t){if(!(G(this.sourceBuffer)||!R(this.mediaSource,this.sourceBuffer))){!this.isLive&&F.browser.isSafari&&this.tuning.useSafariEndlessRequestBugfix&&(ch(this.sourceBuffer.buffered,e.segment.time.from,100)&&ch(this.sourceBuffer.buffered,e.segment.time.to,100)||this.error$.next({id:`EmptyAppendBuffer`,category:Uh.VIDEO_PIPELINE,message:`Browser stuck on empty result of adding segment to source buffer`})),this.tuning.dash.useNewRepresentationSwitch||(this.playingRepresentationId=t,this.playingRepresentation$.next(this.playingRepresentationId),this.playingRepresentationInit$.next(this.parsedInitData.get(this.playingRepresentationId))),e.segment.status=`fed`,hp(e.segment)&&(e.segment.size=e.fedBytes);for(let n of this.representations.values())if(n.id!==t)for(let t of this.segments.get(n.id)??[])t.status===`fed`&&Math.round(t.time.from)===Math.round(e.segment.time.from)&&Math.round(t.time.to)===Math.round(e.segment.time.to)&&(t.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[n,r]of this.initData.entries()){let i=r instanceof Promise;t||=i,r===null&&(e=n)}if(!e){this.allInitsLoaded=!0;return}if(t)return;let n=this.representations.get(e);n&&(this.initLoadIdleCallback=Xd(()=>Mh.default(this.loadInit(n,`low`,!1),()=>this.initLoadIdleCallback=null)))}loadInit(e,t=`auto`,n=!1){var r=this;return a(function*(){let i=r.tuning.dash.useFetchPriorityHints?t:`auto`,o=!n&&r.tuning.dash.ignoreNetworkErrorsOnLoadInit,s=(!n&&r.failedDownloads>0?Vh(r.destroyAbortController.signal,c(function*(){let e=Gh(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(t=>setTimeout(t,e))}).bind(r))():Promise.resolve()).then(()=>r.fetcher.fetchRepresentation(e.segmentReference,op(e.mime),{priority:i,ignoreNetworkErrors:o})).then(function(){var t=a(function*(t){if(!t)return;let{init:n,dataView:i,segments:a}=t,o=i.buffer.slice(i.byteOffset,i.byteOffset+i.byteLength);r.initData.set(e.id,o);let s=a;r.isLive&&gp(e.segmentReference)&&(s=r.getActualLiveStartingSegments(e.segmentReference)),(!r.isLive||!r.segments.has(e.id))&&r.segments.set(e.id,s),n&&r.parsedInitData.set(e.id,n)});return function(e){return t.apply(this,arguments)}}()).then(()=>r.failedDownloads=0,t=>{o||r.initData.set(e.id,null),n&&r.error$.next({id:`LoadInits`,category:Uh.WTF,message:`loadInit threw`,thrown:t})});return r.initData.set(e.id,s),s})()}dropBuffer(){var e=this;return a(function*(){for(let t of e.segments.values())for(let e of t)e.status=`none`;yield e.pruneBuffer(0,1/0,!0)})()}pruneBuffer(e,t,n=!1){var r=this;return a(function*(){if(!r.sourceBuffer||!R(r.mediaSource,r.sourceBuffer)||!r.playingRepresentationId||G(e))return!1;let i=[],a=0,s=e=>{e.sort((e,t)=>e.from-t.from);let t=[e[0]];for(let n=1;n<e.length;n++){let{from:r,to:i}=e[n],a=t[t.length-1];a.to>=r?a.to=Math.max(a.to,i):t.push(e[n])}return t},c=e=>{if(a>=t)return i;i.push(o({},e.time)),i=s(i);let n=hp(e)?e.size??0:e.byte.to-e.byte.from;a+=n};for(let t of r.segments.values())for(let n of t){let t=n.time.to<=e-r.tuning.dash.bufferPruningSafeZone,i=n.time.from>=e+Math.min(r.forwardBufferTarget,r.bufferLimit);(t||i)&&n.status===`fed`&&c(n)}for(let e=0;e<r.sourceBuffer.buffered.length;e++){let t=r.sourceBuffer.buffered.start(e)*1e3,n=r.sourceBuffer.buffered.end(e)*1e3,i=0;for(let e of r.segments.values())for(let r of e)kh.default([`none`,`partially_ejected`],r.status)&&Math.round(r.time.from)<=Math.round(t)&&Math.round(r.time.to)>=Math.round(n)&&i++;i===r.segments.size&&c({time:{from:t,to:n},url:``,status:`none`})}if(i.length&&n){let t=Math.min(r.forwardBufferTarget,r.bufferLimit)*r.tuning.dash.minSafeBufferThreshold;for(let n of r.segments.values())for(let r of n)r.time.from>=e+t&&r.status===`fed`&&c(r)}return i.length?(yield Promise.all(i.map(e=>r.sourceBufferTaskQueue.remove(e.from,e.to)))).reduce((e,t)=>e||t,!1):!1})()}abortBuffer(){var e=this;return a(function*(){if(!e.sourceBuffer||!R(e.mediaSource,e.sourceBuffer))return!1;let t=e.playingRepresentationId&&e.initData.get(e.playingRepresentationId),n=t instanceof ArrayBuffer?t:void 0;return e.sourceBufferTaskQueue.abort(n)})()}getDebugBufferState(){if(!(!this.sourceBuffer||!R(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||!R(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length||G(e)?0:Jp(this.sourceBuffer.buffered,e)}detectGaps(e,t){if(!(!this.sourceBuffer||!R(this.mediaSource,this.sourceBuffer)))for(let n of t){let t={representation:e,from:n.time.from,to:n.time.to,persistent:!1},{buffered:r}=this.sourceBuffer;for(let e=0;e<r.length;e++){let i=r.start(e)*1e3,a=r.end(e)*1e3;if(!(a<=n.time.from||i>=n.time.to)){if(i<=n.time.from&&a>=n.time.to){t=void 0;break}a>n.time.from&&a<n.time.to&&(t.from=a),i<n.time.to&&i>n.time.from&&(t.to=i)}}t&&t.to-t.from>1&&!this.gaps.some(e=>t&&e.from===t.from&&e.to===t.to)&&this.gaps.push(t)}}detectGapsWhenIdle(e,t){if(this.gapDetectionIdleCallback||!this.sourceBuffer||!R(this.mediaSource,this.sourceBuffer))return;let{buffered:n}=this.sourceBuffer,{usePersistentGaps:r}=this.tuning.dash;this.gaps=this.gaps.filter(e=>{if(r&&e.persistent)return!0;let t=Math.round(e.from),i=Math.round(e.to);for(let e=0;e<n.length;e++)if(t>=Math.round(n.start(e)*1e3)&&i<=Math.round(n.end(e)*1e3))return!1;return!0}),this.gapDetectionIdleCallback=Xd(()=>{try{this.detectGaps(e,t)}catch(e){this.error$.next({id:`GapDetection`,category:Uh.WTF,message:`detectGaps threw`,thrown:e})}finally{this.gapDetectionIdleCallback=null}})}checkEjectedSegments(){if(G(this.sourceBuffer)||!R(this.mediaSource,this.sourceBuffer)||G(this.playingRepresentationId))return;let e=[];for(let t=0;t<this.sourceBuffer.buffered.length;t++){let n=Math.floor(this.sourceBuffer.buffered.start(t)*1e3),r=Math.ceil(this.sourceBuffer.buffered.end(t)*1e3);e.push({from:n,to:r})}for(let t of this.segments.values())for(let n of t){let{status:t}=n;if(t!==`fed`&&t!==`partially_ejected`)continue;let r=Math.floor(n.time.from),i=Math.ceil(n.time.to),a=e.some(e=>e.from-100<=r&&e.to+100>=i),o=e.filter(e=>r>=e.from&&r<e.to-100||i>e.from+100&&i<=e.to);a||(o.length===1||this.gaps.some(e=>e.from===n.time.from||e.to===n.time.to)?n.status=`partially_ejected`:n.status=`none`)}}handleAsyncError(e,t){this.error$.next({id:t,category:Uh.VIDEO_PIPELINE,thrown:e,message:`Something went wrong`})}}import{abortable as tg,assertNever as ng,fromEvent as rg,merge as ig,now as ag,Subject as og,ValueSubject as sg,flattenObject as cg,ErrorCategory as lg,SubscriptionRemovable as ug,getWindow as dg,suppressAbort as fg}from"@vkontakte/videoplayer-shared/es2015";class pg{constructor({throughputEstimator:e,requestQuic:t,tracer:n,compatibilityMode:r=!1,useEnableSubtitlesParam:a=!1}){i(this,`throughputEstimator`,void 0),i(this,`requestQuic`,void 0),i(this,`tracer`,void 0),i(this,`manifestRequested$`,new og),i(this,`firstBytesManifest$`,new og),i(this,`firstBytesRequested$`,new og),i(this,`firstBytesReceived$`,new og),i(this,`lastConnectionType$`,new sg(void 0)),i(this,`lastConnectionReused$`,new sg(void 0)),i(this,`lastRequestFirstBytes$`,new sg(void 0)),i(this,`lastConnectionMetrics$`,new sg(void 0)),i(this,`lastDownloadMetrics$`,new sg(void 0)),i(this,`recoverableError$`,new og),i(this,`error$`,new og),i(this,`abortAllController`,new V),i(this,`subscription`,new ug),i(this,`compatibilityMode`,void 0),i(this,`useEnableSubtitlesParam`,void 0),i(this,`performanceObserver`,null),i(this,`pendingConnectionMetrics`,new Map),i(this,`fetchManifest`,tg(this.abortAllController.signal,function(){var e=c(function*(e){let t=this.tracer.createComponentTracer(`FetchManifest`),n=e;this.requestQuic&&(n=ed(n)),!this.compatibilityMode&&this.useEnableSubtitlesParam&&(n=md(n)),this.trackRequestStart(n,performance.now());let r=ag();this.manifestRequested$.next();let i=yield this.doFetch(n,{signal:this.abortAllController.signal}).catch(fg);if(i){let a=ag();t.log(`success`,cg({url:n,message:`Request successfully executed`})),t.end(),this.onHeadersReceived(i.headers),this.firstBytesManifest$.next();let o=i.headers.get(`content-length`),c=0;o&&(c=parseInt(o,10));let l=yield s(i.text());if((!o||isNaN(c)||c<=0)&&(c=new TextEncoder().encode(l).length),c>0){let t=a-r,n=c/(t/1e3)*8/1024,i={bytes:c,speed:n,url:e};this.lastDownloadMetrics$.next(i)}return l}else return t.error(`error`,cg({url:n,message:`No data in request manifest`})),t.end(),null});return function(t){return e.apply(this,arguments)}}().bind(this))),i(this,`fetch`,tg(this.abortAllController.signal,function(){var e=c(function*(e,{rangeMethod:t=this.compatibilityMode?0:1,range:n,onProgress:r,priority:i=`auto`,signal:a,measureThroughput:o=!0,isLowLatency:s=!1,bufferOptimisation:l=!1,ignoreNetworkErrors:u=!1}={}){let d=e,f=new Headers,p=this.tracer.createComponentTracer(`Fetch`);if(n)switch(t){case 0:f.append(`Range`,`bytes=${n.from}-${n.to}`);break;case 1:{let e=new URL(d,dg().location.href);e.searchParams.append(`bytes`,`${n.from}-${n.to}`),d=e.toString();break}default:ng(t)}this.requestQuic&&(d=ed(d));let m=this.abortAllController.signal,h;if(a){let e=new V;if(h=ig(rg(this.abortAllController.signal,`abort`),rg(a,`abort`)).subscribe(()=>{try{e.abort()}catch(e){fg(e)}}),this.subscription.add(h),this.abortAllController.signal.aborted||a.aborted)try{e.abort()}catch(e){fg(e)}m=e.signal}let g=0,_=ag();p.log(`startRequest`,cg({url:d,priority:i,rangeMethod:t,range:n,isLowLatency:s,requestStartedAt:_})),this.trackRequestStart(d,performance.now()),this.firstBytesRequested$.next();let v=yield this.doFetch(d,{priority:i,headers:f,signal:m},{ignoreNetworkErrors:u}),y=ag();if(!v)return p.error(`error`,{message:`No response in request`}),p.end(),this.unsubscribeAbortSubscription(h),null;if(this.throughputEstimator?.addRawRtt(y-_),!v.ok||!v.body){this.unsubscribeAbortSubscription(h);let e=`Fetch error ${v.status}: ${v.statusText}`;return p.error(`error`,{message:e}),p.end(),Promise.reject(Error(`Fetch error ${v.status}: ${v.statusText}`))}if(this.onHeadersReceived(v.headers),!r&&!o){this.unsubscribeAbortSubscription(h);let e=ag(),t={requestStartedAt:_,requestEndedAt:e,duration:e-_};return p.log(`endRequest`,cg(t)),p.end(),v.arrayBuffer()}let b=v.body;if(o){let e;[b,e]=v.body.tee(),this.throughputEstimator?.trackStream(e,s)}let x=b.getReader(),S,C=parseInt(v.headers.get(`content-length`)??``,10);Number.isFinite(C)&&(S=C),!S&&n&&(S=n.to-n.from+1);let w=S?new Uint8Array(S):new Uint8Array,T=!1,E=e=>{this.unsubscribeAbortSubscription(h),T=!0,fg(e)},D=tg(m,function(){var e=c(function*({done:e,value:t}){if(g===0&&(this.lastRequestFirstBytes$.next(ag()-_),this.firstBytesReceived$.next()),m.aborted){this.unsubscribeAbortSubscription(h);return}if(!e&&t){if(l&&S)w.set(t,g),g+=t.byteLength;else{let e=new Uint8Array(w.length+t.length);e.set(w),e.set(t,w.length),w=e,g+=t.byteLength}r?.(new DataView(w.buffer),g),yield x?.read().then(D,E)}});return function(t){return e.apply(this,arguments)}}().bind(this));yield x?.read().then(D,E),this.unsubscribeAbortSubscription(h);let O=ag(),k={failed:T,requestStartedAt:_,requestEndedAt:O,duration:O-_};if(T)return p.error(`endRequest`,cg(k)),p.end(),null;if(g>0){let t=O-_,n=g/(t/1e3)*8/1024,r={bytes:g,speed:n,url:e};this.lastDownloadMetrics$.next(r)}return p.log(`endRequest`,cg(k)),p.end(),w.buffer});return function(t){return e.apply(this,arguments)}}().bind(this))),i(this,`fetchByteRangeRepresentation`,tg(this.abortAllController.signal,function(){var e=c(function*(e,t,n){if(e.type!==`byteRange`)return null;let{from:r,to:i}=e.initRange,a=r,s=i,c=!1,l,u;e.indexRange&&(l=e.indexRange.from,u=e.indexRange.to,c=i+1===l,c&&(a=Math.min(l,r),s=Math.max(u,i))),a=Math.min(a,0);let d=yield this.fetch(e.url,o({range:{from:a,to:s},measureThroughput:!1},n));if(!d)return null;let f=new DataView(d,r-a,i-a+1);if(!t.validateData(f))throw Error(`Invalid media file`);let p=t.parseInit(f),m=e.indexRange??t.getIndexRange(p);if(!m)throw ReferenceError(`No way to load representation index`);let h;if(c)h=new DataView(d,m.from-a,m.to-m.from+1);else{let t=yield this.fetch(e.url,{range:m,measureThroughput:!1});if(!t)return null;h=new DataView(t)}let g=t.parseSegments(h,p,m);return{init:p,dataView:new DataView(d),segments:g}});return function(t,n,r){return e.apply(this,arguments)}}().bind(this))),i(this,`fetchTemplateRepresentation`,tg(this.abortAllController.signal,function(){var e=c(function*(e,t){if(e.type!==`template`)return null;let n=new URL(e.initUrl,e.baseUrl).toString(),r=yield this.fetch(n,o({measureThroughput:!1},t));return r?{init:null,segments:e.segments.map(e=>o(o({},e),{},{status:`none`,size:void 0})),dataView:new DataView(r)}:null});return function(t,n){return e.apply(this,arguments)}}().bind(this))),this.throughputEstimator=e,this.requestQuic=t,this.compatibilityMode=r,this.tracer=n.createComponentTracer(`Fetcher`),this.useEnableSubtitlesParam=a,dg().PerformanceObserver&&this.setupPerformanceObserver()}onHeadersReceived(e){let{type:t,reused:n}=td(e);this.lastConnectionType$.next(t),this.lastConnectionReused$.next(n)}setupPerformanceObserver(){this.performanceObserver=new(dg()).PerformanceObserver(e=>{e.getEntriesByType(`resource`).forEach(e=>{this.processPerformanceResourceTiming(e)})}),this.performanceObserver.observe({entryTypes:[`resource`]})}processPerformanceResourceTiming(e){let t=this.findMatchingRequest(e);if(!t||!this.pendingConnectionMetrics.get(t))return;this.pendingConnectionMetrics.delete(t);let n=this.extractConnectionMetrics(e);n&&this.lastConnectionMetrics$.next(n)}estimateNetworkType(){if(!(`connection`in dg().navigator))return`unknown`;let e=dg().navigator.connection;return e.effectiveType?{"slow-2g":`2g`,"2g":`2g`,"3g":`3g`,"4g":`lte`}[e.effectiveType]||e.effectiveType:e.downlink?e.downlink<1?`2g`:e.downlink<5?`3g`:e.downlink<50?`lte`:`wifi`:e.rtt?e.rtt>500?`2g`:e.rtt>250?`3g`:e.rtt>50?`lte`:`wifi`:`unknown`}extractConnectionMetrics(e){let t=0,n=0,r=0,i=0;return e.domainLookupStart>0&&e.domainLookupEnd>0&&(t=e.domainLookupEnd-e.domainLookupStart),e.connectStart>0&&e.connectEnd>0&&(i=e.connectEnd-e.connectStart,e.secureConnectionStart>0?(r=e.connectEnd-e.secureConnectionStart,n=e.secureConnectionStart-e.connectStart):n=i),{dnsResolveTime:Math.max(0,t),tcpHandshakeTime:Math.max(0,n),tlsHandshakeTime:Math.max(0,r),totalConnectTime:Math.max(0,i),networkType:this.estimateNetworkType(),url:e.name}}findMatchingRequest(e){try{for(let[t,n]of this.pendingConnectionMetrics.entries()){let r=new URL(e.name),i=r.origin+r.pathname,a=new URL(n.url);if(i===a.origin+a.pathname&&e.startTime>=n.startTime-10&&e.startTime<=n.startTime+1e3)return t}}catch{this.recoverableError$.next({id:`VideoDataFetchError`,message:`Video data fetch error with getting download metrics`,category:lg.WTF})}return null}trackRequestStart(e,t){let n=`${e}_${t}_${Math.random().toString(36).substr(2,9)}`;this.pendingConnectionMetrics.set(n,{url:e,startTime:t})}fetchRepresentation(e,t,n){var r=this;return a(function*(){let{type:i}=e;switch(i){case`byteRange`:return(yield r.fetchByteRangeRepresentation(e,t,n))??null;case`template`:return(yield r.fetchTemplateRepresentation(e,n))??null;default:ng(i)}})()}destroy(){this.abortAllController.abort(),this.subscription.unsubscribe(),this.performanceObserver&&=(this.performanceObserver.disconnect(),null),this.pendingConnectionMetrics.clear(),this.tracer.end()}doFetch(e,t,n){var r=this;return a(function*(){let i=yield Mu(e,t);if(i.ok)return i;if(n?.ignoreNetworkErrors)return;let a=yield i.text(),o=parseInt(a);if(!isNaN(o))switch(o){case 1:r.recoverableError$.next({id:`VideoDataLinkExpiredError`,message:`Video data links have expired`,category:lg.FATAL,httpCode:i.status,UVBackendErrorCode:a});break;case 8:r.recoverableError$.next({id:`VideoDataLinkBlockedForFloodError`,message:`Url blocked for flood`,category:lg.FATAL,httpCode:i.status,UVBackendErrorCode:a});break;case 18:r.recoverableError$.next({id:`VideoDataLinkIllegalIpChangeError`,message:`Client IP has changed`,category:lg.FATAL,httpCode:i.status,UVBackendErrorCode:a});break;case 21:r.recoverableError$.next({id:`VideoDataLinkIllegalHostChangeError`,message:`Request HOST has changed`,category:lg.FATAL,httpCode:i.status,UVBackendErrorCode:a});break;default:r.error$.next({id:`GeneralVideoDataFetchError`,message:`Generic video data fetch error (${o})`,category:lg.FATAL,httpCode:i.status,UVBackendErrorCode:a})}})()}unsubscribeAbortSubscription(e){e&&(e.unsubscribe(),this.subscription.remove(e))}}import{isNullable as mg,ValueSubject as hg}from"@vkontakte/videoplayer-shared/es2015";class gg{constructor(e,t){i(this,`currentRepresentation$`,new hg(null)),i(this,`maxRepresentations`,4),i(this,`representationsCursor`,0),i(this,`representations`,[]),i(this,`getCurrentPosition`,void 0),i(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(!mg(e))for(let t of this.representations)for(let n of t){let t=n.segmentReference,r=t.segments.length,i=t.segments[0].time.from,a=t.segments[r-1].time.to;if(e<i||e>a)continue;let s=t.segments.find(t=>t.time.from<=e&&t.time.to>=e);!s||this.currentSegment?.time.from===s.time.from&&this.currentSegment.time.to===s.time.to||(this.currentSegment=s,this.currentRepresentation$.next(o(o({},n),{},{label:`Live Text`,language:`ru`,isAuto:!0,url:new URL(s.url,t.baseUrl).toString()})))}}destroy(){this.currentRepresentation$.next(null),this.currentSegment=null,this.representations=[]}processStreams(e){for(let t of e??[]){let e=gg.filterRepresentations(t.representations);if(e){this.representations[this.representationsCursor]=e,this.representationsCursor=(this.representationsCursor+1)%this.maxRepresentations;break}}}static isSupported(e){return!!e?.some(e=>gg.filterRepresentations(e.representations))}static filterRepresentations(e){return e?.filter(e=>e.kind===`text`&&`segmentReference`in e&&gp(e.segmentReference))}}var _g=[`timeupdate`,`progress`,`play`,`seeked`,`stalled`,`waiting`],vg=[`timeupdate`,`progress`,`loadeddata`,`playing`,`seeked`];class yg{constructor(e){i(this,`element`,null),i(this,`manifestUrlString`,``),i(this,`source`,null),i(this,`manifest`,null),i(this,`tuning`,void 0),i(this,`tracer`,void 0),i(this,`forceVideoCodec`,void 0),i(this,`videoBufferManager`,void 0),i(this,`audioBufferManager`,void 0),i(this,`bufferManagers`,[]),i(this,`liveTextManager`,void 0),i(this,`throughputEstimator`,void 0),i(this,`subscription`,new Th),i(this,`subscriptionRemovable`,new Eh),i(this,`representationSubscription`,new Th),i(this,`fetcher`,void 0),i(this,`state$`,new I(`none`)),i(this,`currentVideoRepresentation$`,new W(void 0)),i(this,`currentVideoRepresentationInit$`,new W(void 0)),i(this,`currentAudioRepresentation$`,new W(void 0)),i(this,`currentVideoSegmentLength$`,new W(0)),i(this,`currentAudioSegmentLength$`,new W(0)),i(this,`error$`,new wh),i(this,`manifestRequested$`,new wh),i(this,`firstBytesManifest$`,new wh),i(this,`manifestReceived$`,new wh),i(this,`firstBytesRequested$`,new wh),i(this,`firstBytesReceived$`,new wh),i(this,`lastConnectionType$`,new W(void 0)),i(this,`lastConnectionReused$`,new W(void 0)),i(this,`lastRequestFirstBytes$`,new W(void 0)),i(this,`lastConnectionMetrics$`,new W(void 0)),i(this,`lastDownloadMetrics$`,new W(void 0)),i(this,`currentLiveTextRepresentation$`,new W(null)),i(this,`timeoutSourceOpenId`,void 0),i(this,`isLive$`,new W(!1)),i(this,`isActiveLive$`,new W(!1)),i(this,`isLowLatency$`,new W(!1)),i(this,`liveDuration$`,new W(0)),i(this,`liveSeekableDuration$`,new W(0)),i(this,`liveAvailabilityStartTime$`,new W(0)),i(this,`liveStreamStatus$`,new W(void 0)),i(this,`bufferLength$`,new W(0)),i(this,`liveLatency$`,new W(void 0)),i(this,`liveLoadBufferLength$`,new W(0)),i(this,`livePositionFromPlayer$`,new W(0)),i(this,`currentStallDuration$`,new W(0)),i(this,`videoLastDataObtainedTimestamp$`,new W(0)),i(this,`fetcherRecoverableError$`,new wh),i(this,`fetcherError$`,new wh),i(this,`liveStreamEndTimestamp`,0),i(this,`liveBuffer`,void 0),i(this,`isUpdatingLive`,!1),i(this,`isJumpGapAfterSeekLive`,!1),i(this,`forceEnded$`,new wh),i(this,`gapWatchdogActive`,!1),i(this,`gapWatchdogSubscription`,void 0),i(this,`stallWatchdogSubscription`,void 0),i(this,`livePauseWatchdogSubscription`,void 0),i(this,`liveWasInterrupted`,!1),i(this,`destroyController`,new V),i(this,`initManifest`,lh(this.destroyController.signal,function(){var e=c(function*(e,t,n){this.tracer.log(`initManifest`),this.element=e,this.manifestUrlString=oi(t,n,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:fh.PARSER,message:`No playable video representations`})});return function(t,n,r){return e.apply(this,arguments)}}().bind(this))),i(this,`updateManifest`,lh(this.destroyController.signal,c(function*(){this.tracer.log(`updateManifestStart`,{manifestUrl:this.manifestUrlString});let e=yield this.fetcher.fetchManifest(this.manifestUrlString).catch(e=>{!this.manifest&&!this.bufferLength$.getValue()&&this.error$.next({id:`LoadManifest`,category:fh.NETWORK,message:`Failed to load manifest`,thrown:e})});if(!e)return null;let t=null;try{t=Ad(e??``,this.manifestUrlString),this.manifestReceived$.next()}catch(t){let n=Fu(e)??{id:`ManifestParsing`,category:fh.PARSER,message:`Failed to parse MPD manifest`,thrown:t};this.error$.next(n)}if(!t)return null;let n=(e,t,n)=>{var r,i,a,o;return!!(!((r=this.element)==null||(i=r.canPlayType)==null)&&i.call(r,t)&&!((a=Ai())==null||(o=a.isTypeSupported)==null)&&o.call(a,`${t}; codecs="${n}"`)||e===`text`)};if(t.live){this.isLive$.next(!0);let{availabilityStartTime:e,latestSegmentPublishTime:n,streamIsUnpublished:r,streamIsAlive:i}=t.live,a=(t.duration??0)/1e3;this.liveSeekableDuration$.next(-1*a),this.liveDuration$.next((n-e)/1e3),this.liveAvailabilityStartTime$.next(t.live.availabilityStartTime);let o=`active`;if(i||(o=r?`unpublished`:`unexpectedly_down`),this.liveStreamStatus$.next(o),i&&this.liveWasInterrupted){this.liveWasInterrupted=!1,this.stopStallWatchdogSubscription();let e=this.normalizeLiveOffset(-1*this.livePositionFromPlayer$.getValue()*1e3);this.seekLive(e).catch(e=>{this.error$.next({id:`updateManifest`,category:fh.VIDEO_PIPELINE,message:`seekLive after stream restore failed`,thrown:e})})}}let r={text:t.streams.text,video:[],audio:[]},i,a;for(let e of[`video`,`audio`]){let o=t.streams[e].filter(({mime:t,codecs:r})=>n(e,t,r));r[e]=o;let s;if(this.tuning.dash.codecsPrioritizeEnabled){let t=o.map(({codecs:e})=>e);e===`audio`&&(a=Vd(t),s=a[0]),e===`video`&&(i=Bd(t),s=this.forceVideoCodec&&ya(i,this.forceVideoCodec)?this.forceVideoCodec:i[0]),s&&(r[e]=o.filter(({codecs:e})=>Hd(e)===s))}else s=zd(new Set(o.map(({codecs:e})=>e))),s&&(r[e]=o.filter(({codecs:e})=>e.startsWith(s)));if(e===`video`){let e=this.tuning.preferHDR,t=r.video.some(e=>e.hdr),n=r.video.some(e=>!e.hdr);F.display.isHDR&&e&&t?r.video=r.video.filter(e=>e.hdr):n&&(r.video=r.video.filter(e=>!e.hdr));let{videoStreamRepresentaionsFilter:i}=this.tuning.dash;i.length&&Xp(r,i)}}let s=o(o({},t),{},{streams:r});return this.tuning.dash.codecsPrioritizeEnabled&&(s.codecs={video:i,audio:a}),this.tracer.log(`updateManifestEnd`,hh(s)),s}).bind(this))),i(this,`initRepresentations`,lh(this.destroyController.signal,function(){var e=c(function*(e,t,n){var r=this;this.tracer.log(`initRepresentationsStart`,hh({initialVideo:e,initialAudio:t,sourceHls:n})),uh(this.manifest),uh(this.element),this.representationSubscription.unsubscribe(),this.state$.startTransitionTo(`representations_ready`);let i=e=>{this.representationSubscription.add(gh(e,`error`).pipe(ph(e=>!!this.element?.played.length)).subscribe(e=>{this.error$.next({id:`VideoSource`,category:fh.VIDEO_PIPELINE,message:`Unexpected video source error`,thrown:e})}))};this.source=Ni();let o=document.createElement(`source`);if(i(o),o.src=URL.createObjectURL(this.source),this.element.appendChild(o),ji())if(n){let e=document.createElement(`source`);i(e),e.type=`application/x-mpegurl`,e.src=n.url,this.element.appendChild(e)}else this.element.disableRemotePlayback=!0;this.isActiveLive$.next(this.isLive$.getValue());let s={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},c=this.manifest.streams.video.reduce((e,t)=>[...e,...t.representations],[]);if(this.videoBufferManager=new eg(`video`,this.source,c,s),this.bufferManagers=[this.videoBufferManager],yh(t)){let e=this.manifest.streams.audio.reduce((e,t)=>[...e,...t.representations],[]);this.audioBufferManager=new eg(`audio`,this.source,e,s),this.bufferManagers.push(this.audioBufferManager)}if(gg.isSupported(this.manifest.streams.text)&&!this.isLowLatency$.getValue()&&(this.liveTextManager=new gg(this.manifest.streams.text,s)),this.representationSubscription.add(this.fetcher.lastRequestFirstBytes$.subscribe(this.lastRequestFirstBytes$)),this.representationSubscription.add(Sh(...vg.map(e=>gh(this.element,e))).pipe(xh(e=>this.element?Jp(this.element.buffered,this.element.currentTime*1e3):0),mh(),Dh(e=>{e>this.tuning.dash.bufferEmptinessTolerance&&this.stopStallWatchdogSubscription()})).subscribe(this.bufferLength$)),this.representationSubscription.add(Sh(gh(this.element,`ended`),this.forceEnded$).subscribe(()=>{this.stopStallWatchdogSubscription()})),this.isLive$.getValue()){this.subscription.add(this.liveDuration$.pipe(mh()).subscribe(e=>this.liveStreamEndTimestamp=Ch())),this.subscription.add(gh(this.element,`pause`).subscribe(()=>{let{liveUpdateInterval:e}=this.tuning.dash;this.livePauseWatchdogSubscription=vh(e).subscribe(t=>{let n=si(this.manifestUrlString,2);this.manifestUrlString=oi(this.manifestUrlString,n+e,2),this.liveStreamStatus$.getValue()===`active`&&this.updateManifest()}),this.subscription.add(this.livePauseWatchdogSubscription)})).add(gh(this.element,`play`).subscribe(e=>this.livePauseWatchdogSubscription?.unsubscribe())),this.representationSubscription.add(dh({isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe(xh(({isActiveLive:e,isLowLatency:t})=>e&&t),mh()).subscribe(e=>{this.isManualDecreasePlaybackInLive()||zm(this.element,1)})),this.representationSubscription.add(dh({bufferLength:this.bufferLength$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe(ph(({bufferLength:e,isActiveLive:t,isLowLatency:n})=>t&&n&&!!e)).subscribe(({bufferLength:e})=>this.liveBuffer.next(e))),this.representationSubscription.add(this.videoBufferManager.currentLowLatencySegmentLength$.subscribe(e=>{if(!this.isActiveLive$.getValue()&&!this.isLowLatency$.getValue()&&!e)return;let t=this.liveSeekableDuration$.getValue()-e/1e3;this.liveSeekableDuration$.next(Math.max(t,-1*this.tuning.dashCmafLive.maxLiveDuration)),this.liveDuration$.next(this.liveDuration$.getValue()+e/1e3)})),this.representationSubscription.add(dh({isLive:this.isLive$,rtt:this.throughputEstimator.rtt$,bufferLength:this.bufferLength$,segmentServerLatency:this.videoBufferManager.currentLiveSegmentServerLatency$}).pipe(ph(({isLive:e})=>e),mh((e,t)=>t.bufferLength<e.bufferLength),xh(({rtt:e,bufferLength:t,segmentServerLatency:n})=>{let r=si(this.manifestUrlString,2);return(e/2+t+n+r)/1e3})).subscribe(this.liveLatency$)),this.representationSubscription.add(dh({liveBuffer:this.liveBuffer.smoothed$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).subscribe(({liveBuffer:e,isActiveLive:t,isLowLatency:n})=>{if(!n||!t)return;let r=this.tuning.dashCmafLive.lowLatency.maxTargetOffset,i=this.tuning.dashCmafLive.lowLatency.maxTargetOffsetDeviation,a=this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup,o=e-r;if(this.isManualDecreasePlaybackInLive())return;let s=1;Math.abs(o)>i&&(s=1+Math.sign(o)*a),zm(this.element,s)})),this.representationSubscription.add(this.bufferLength$.subscribe(e=>{let t=0;if(e){let e=(this.element?.currentTime??0)*1e3;t=Math.min(...this.bufferManagers.map(t=>t.getLiveSegmentsToLoadState(this.manifest)?.to??e))-e}this.liveLoadBufferLength$.getValue()!==t&&this.liveLoadBufferLength$.next(t)}));let e=0;this.representationSubscription.add(dh({liveLoadBufferLength:this.liveLoadBufferLength$,bufferLength:this.bufferLength$}).pipe(Oh(this.tuning.dash.liveUpdateInterval)).subscribe(function(){var t=a(function*({liveLoadBufferLength:t,bufferLength:n}){if(!r.element||r.isUpdatingLive)return;let i=r.element.playbackRate,a=si(r.manifestUrlString,2),o=Math.abs(r.livePositionFromPlayer$.getValue())*1e3,s=Math.min(o,r.tuning.dashCmafLive.normalizedTargetMinBufferSize*i),c=r.tuning.dashCmafLive.normalizedActualBufferOffset*i,l=r.tuning.dashCmafLive.normalizedLiveMinBufferSize*i,u=isFinite(t)?t:n,d=r.isActiveLive$.getValue()&&r.isLowLatency$.getValue(),f=o<=r.tuning.live.activeLiveDelay;r.isActiveLive$.next(f);let p=`none`;if(d?p=`active_low_latency`:r.isLowLatency$.getValue()&&f?(r.bufferManagers.forEach(e=>e.proceedLowLatencyLive()),p=`active_low_latency`):a!==0&&u<s?p=`live_forward_buffering`:u<s+l&&(p=`live_with_target_offset`),isFinite(t)&&(e=t>e?t:e),p===`live_forward_buffering`||p===`live_with_target_offset`){let n=e-(s+c),o=r.normalizeLiveOffset(Math.trunc(a+n/i)),l=Math.abs(o-a),u=0;!t||l<=r.tuning.dashCmafLive.offsetCalculationError?u=a:o>0&&l>r.tuning.dashCmafLive.offsetCalculationError&&(u=o),r.manifestUrlString=oi(r.manifestUrlString,u,2)}(p===`live_with_target_offset`||p===`live_forward_buffering`)&&(e=0,yield r.updateLive())});return function(e){return t.apply(this,arguments)}}(),e=>{this.error$.next({id:`updateLive`,category:fh.VIDEO_PIPELINE,thrown:e,message:`Failed to update live with subscription`})}))}let l=dh({allBuffersFull:Sh(...this.bufferManagers.map(e=>e.fullyBuffered$)).pipe(xh(()=>this.bufferManagers.every(e=>e.fullyBuffered$.getValue()))),someBufferEnded:Sh(...this.bufferManagers.map(e=>e.onLastSegment$)).pipe(xh(()=>this.bufferManagers.some(e=>e.onLastSegment$.getValue())))}).pipe(mh(),xh(({allBuffersFull:e,someBufferEnded:t})=>e&&t),ph(e=>e));if(this.representationSubscription.add(Sh(this.forceEnded$,l).subscribe(()=>{if(this.source&&this.source.readyState===`open`&&Array.from(this.source.sourceBuffers).every(e=>!e.updating))try{this.source?.endOfStream()}catch(e){this.error$.next({id:`EndOfStream`,category:fh.VIDEO_PIPELINE,message:`Failed to end MediaSource stream`,thrown:e})}})),this.representationSubscription.add(Sh(...this.bufferManagers.map(e=>e.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 e=this.tuning.dash.sourceOpenTimeout>=0;yield new Promise(t=>{e&&(this.timeoutSourceOpenId=setTimeout(()=>{if(this.source?.readyState===`open`){t();return}this.error$.next({id:`OpenOfStream`,category:fh.VIDEO_PIPELINE,message:`Failed to open MediaSource`,thrown:Error(`Timeout reject when wait sourceopen event`),traceAsLog:!0})},this.tuning.dash.sourceOpenTimeout)),this.source?.addEventListener(`sourceopen`,()=>{this.timeoutSourceOpenId&&clearTimeout(this.timeoutSourceOpenId),t()},{once:!0})})}if(!this.isLive$.getValue()){let e=[this.manifest.duration??0,...sh.default(sh.default([...this.manifest.streams.audio,...this.manifest.streams.video],e=>e.representations),e=>{let t=[];return e.duration&&t.push(e.duration),gp(e.segmentReference)&&e.segmentReference.totalSegmentsDurationMs&&t.push(e.segmentReference.totalSegmentsDurationMs),t})];this.source.duration=Math.max(...e)/1e3}this.audioBufferManager&&yh(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`)});return function(t,n,r){return e.apply(this,arguments)}}().bind(this))),i(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=vh(this.tuning.gapWatchdogInterval).subscribe(()=>this.jumpGap(),e=>{this.error$.next({id:`GapWatchdog`,category:fh.WTF,message:`Error handling gaps`,thrown:e})}),this.subscription.add(this.gapWatchdogSubscription))}),this.throughputEstimator=e.throughputEstimator,this.tuning=e.tuning,this.tracer=e.tracer.createComponentTracer(this.constructor.name),this.forceVideoCodec=e.forceVideoCodec,this.fetcher=new pg({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.subscription.add(this.fetcher.manifestRequested$.subscribe(this.manifestRequested$)),this.subscription.add(this.fetcher.firstBytesManifest$.subscribe(this.firstBytesManifest$)),this.subscription.add(this.fetcher.firstBytesRequested$.subscribe(this.firstBytesRequested$)),this.subscription.add(this.fetcher.firstBytesReceived$.subscribe(this.firstBytesReceived$)),this.subscription.add(this.fetcher.lastConnectionType$.subscribe(this.lastConnectionType$)),this.subscription.add(this.fetcher.lastConnectionReused$.subscribe(this.lastConnectionReused$)),this.subscription.add(this.fetcher.lastConnectionMetrics$.subscribe(this.lastConnectionMetrics$)),this.subscription.add(this.fetcher.lastDownloadMetrics$.subscribe(this.lastDownloadMetrics$)),this.liveBuffer=Em.getLiveBufferSmoothedValue(this.tuning.dashCmafLive.lowLatency.maxTargetOffset,o({},e.tuning.dashCmafLive.lowLatency.bufferEstimator)),this.initTracerSubscription()}setSmartRepresentationSwitch(e){this.bufferManagers.forEach(t=>t.setSmartRepresentationSwitch(e))}seekLive(e){var t=this;return a(function*(){uh(t.element),t.updateManifestUrlWithTimeOffset(e),t.manifest=yield t.updateManifest(),t.manifest&&(t.isJumpGapAfterSeekLive=!0,yield t.updateLiveBuffersFromManifest(t.manifest))})()}updateManifestUrlWithTimeOffset(e){let t=this.liveStreamStatus$.getValue()===`active`?0:Ch()-this.liveStreamEndTimestamp,n=this.normalizeLiveOffset(e+t);this.isActiveLive$.next(n===0),this.manifestUrlString=oi(this.manifestUrlString,n,2)}updateLiveBuffersFromManifest(e){var t=this;return a(function*(){yield t.videoBufferManager?.seekLive(e.streams.video),yield t.audioBufferManager?.seekLive(e.streams.audio),t.liveTextManager?.seekLive(e.streams.text)})()}stopStallWatchdogSubscription(){this.stallWatchdogSubscription?.unsubscribe(),this.currentStallDuration$.next(0)}initBuffer(){uh(this.element),this.state$.setState(`running`),this.subscription.add(Sh(..._g.map(e=>gh(this.element,e)),gh(window,`online`)).subscribe(()=>this.tick(),e=>{this.error$.next({id:`DashVKPlayer`,category:fh.WTF,message:`Internal logic error`,thrown:e})})),this.subscription.add(gh(this.element,`progress`).subscribe(()=>{this.element&&this.element.readyState===2&&!this.element.seeking&&(this.element.currentTime=this.element.currentTime)})),this.subscription.add(gh(this.element,`waiting`).subscribe(()=>{this.tuning.dash.useVideoElementWaitingCurrentTimeReassign&&this.element&&this.element.readyState===2&&!this.element.seeking&&ch(this.element.buffered,this.element.currentTime*1e3)&&(this.element.currentTime=this.element.currentTime),this.stallWatchdogSubscription&&(this.stallWatchdogSubscription.unsubscribe(),this.subscriptionRemovable.remove(this.stallWatchdogSubscription)),this.stallWatchdogSubscription=vh(this.tuning.dash.stallWatchdogInterval).subscribe(()=>{let{keepSilentStallWatchdogWhenNotActive:e}=this.tuning.dashCmafLive,{crashOnStallTimeout:t,crashOnStallTWithoutDataTimeout:n,liveStallReinitInterval:r,stallWatchdogInterval:i}=this.tuning.dash,a=this.isLive$.getValue(),o=this.liveStreamStatus$.getValue()===`active`;if(!this.element||this.source?.readyState!==`open`)return;let s=this.currentStallDuration$.getValue();s+=i,this.currentStallDuration$.next(s);let c={timeInWaiting:s},l=Ch(),u=this.videoBufferManager?.lastDataObtainedTimestamp??0;this.videoLastDataObtainedTimestamp$.next(u);let d=this.audioBufferManager?.lastDataObtainedTimestamp??0,f=this.videoBufferManager?.getForwardBufferDuration()??0,p=this.audioBufferManager?.getForwardBufferDuration()??0,m=f<100&&l-u>n,h=this.audioBufferManager&&p<100&&l-d>n;if((!e||o)&&((m||h)&&s>n||s>=t))throw Error(`Stall timeout exceeded: ${s} ms`);if(a&&s%r===0){let t=this.normalizeLiveOffset(-1*this.livePositionFromPlayer$.getValue()*1e3);!o&&e?(this.liveWasInterrupted=!0,this.updateManifestUrlWithTimeOffset(t),this.updateManifest()):this.seekLive(t).catch(e=>{this.error$.next({id:`stallIntervalCallback`,category:fh.VIDEO_PIPELINE,message:`stallIntervalCallback failed`,thrown:e})}),c.liveLastOffset=t}else{let e=this.element.currentTime*1e3;this.videoBufferManager?.maintain(e),this.audioBufferManager?.maintain(e),c.position=e}this.tracer.log(`stallIntervalCallback`,hh(c))},e=>{this.error$.next({id:`StallWatchdogCallback`,category:fh.NETWORK,message:`Can't restore DASH after stall.`,thrown:e})}),this.subscriptionRemovable.add(this.stallWatchdogSubscription)})),this.tick()}switchRepresentation(e,t,n=!1){var r=this;return a(function*(){let i={video:r.videoBufferManager,audio:r.audioBufferManager,text:null}[e];return r.tuning.useNewSwitchTo?r.currentStallDuration$.getValue()>0?i?.switchToWithPreviousAbort(t,n):i?.switchTo(t,n):i?.switchToOld(t,n)})()}seek(e,t){var n=this;return a(function*(){uh(n.element),uh(n.videoBufferManager);let r;r=t||n.element.duration*1e3<=n.tuning.dashSeekInSegmentDurationThreshold||Math.abs(n.element.currentTime*1e3-e)<=n.tuning.dashSeekInSegmentAlwaysSeekDelta?e:Math.max(n.videoBufferManager.findSegmentStartTime(e)??e,n.audioBufferManager?.findSegmentStartTime(e)??e),n.warmUpMediaSourceIfNeeded(r),!ch(n.element.buffered,r)&&(yield Promise.all([n.videoBufferManager.abort(),n.audioBufferManager?.abort()])),bh(n.element)||bh(n.videoBufferManager)||(n.videoBufferManager.maintain(r),n.audioBufferManager?.maintain(r),n.element.currentTime=r/1e3,n.tracer.log(`seek`,hh({requestedPosition:e,forcePrecise:t,position:r})))})()}warmUpMediaSourceIfNeeded(e=this.element?.currentTime){yh(this.element)&&yh(this.source)&&yh(e)&&this.source?.readyState===`ended`&&this.element.duration*1e3-e>this.tuning.dash.seekBiasInTheEnd&&this.bufferManagers.forEach(e=>e.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}getCodecs(){return this.manifest?.codecs}setPreloadOnly(e){for(let t of this.bufferManagers)t.setPreloadOnly(e)}destroy(){this.subscription.unsubscribe(),this.subscriptionRemovable.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=_h(this.tracer.error.bind(this.tracer));this.subscription.add(this.error$.subscribe(e(`error`)))}isManualDecreasePlaybackInLive(){if(!this.element||!this.isLive$.getValue())return!1;let e=1-this.element.playbackRate;return Number(e.toFixed(2))>Number(this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup.toFixed(2))}normalizeLiveOffset(e){return Math.trunc(e/1e3)*1e3}updateLive(){var e=this;return a(function*(){e.isUpdatingLive=!0,e.manifest=yield e.updateManifest(),e.manifest&&(e.bufferManagers.forEach(t=>t.updateLive(e.manifest)),e.liveTextManager?.updateLive(e.manifest)),e.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(),n={isJumpGapAfterSeekLive:this.isJumpGapAfterSeekLive,isActiveLowLatency:t,initialCurrentTime:this.element.currentTime},{usePersistentGaps:r}=this.tuning.dash;this.isJumpGapAfterSeekLive&&!t&&this.element.currentTime>e.to&&(this.isJumpGapAfterSeekLive=!1,this.element.currentTime=0);let i=this.element.currentTime*1e3,a=[],s=this.element.readyState===1?this.tuning.endGapTolerance:0;for(let e of this.bufferManagers)for(let t of e.gaps)(r&&t.persistent||e.playingRepresentation$.getValue()===t.representation)&&t.from-s<=i&&t.to+s>i&&(this.element.duration*1e3-t.to<this.tuning.endGapTolerance?a.push(1/0):a.push(t.to));if(a.length){let e=Math.max(...a)+10;this.gapWatchdogSubscription.unsubscribe(),this.gapWatchdogActive=!1,e===1/0?this.forceEnded$.next():(this.element.currentTime=e/1e3,n=o(o({},n),{},{gapEnds:a,jumpTo:e,resultCurrentTime:this.element.currentTime}),this.tracer.log(`jumpGap`,hh(n)))}}calculateDurationFromSegments(){return Math.max(this.videoBufferManager?.calculateDurationFromSegments()||0,this.audioBufferManager?.calculateDurationFromSegments()||0)}}import{combine as bg,map as xg,observeElementSize as Sg,Subscription as Cg,ValueSubject as wg,noop as Tg}from"@vkontakte/videoplayer-shared/es2015";class Eg{constructor(){i(this,`subscription`,new Cg),i(this,`pipSize$`,new wg(void 0)),i(this,`videoSize$`,new wg(void 0)),i(this,`elementSize$`,new wg(void 0)),i(this,`pictureInPictureWindowRemoveEventListener`,Tg)}connect({observableVideo:e,video:t}){let n=e=>{let t=e.target;this.pipSize$.next({width:t.width,height:t.height})};this.subscription.add(Sg(t).subscribe(this.videoSize$)).add(e.enterPip$.subscribe(({pictureInPictureWindow:e})=>{this.pipSize$.next({width:e.width,height:e.height}),e.addEventListener(`resize`,n),this.pictureInPictureWindowRemoveEventListener=()=>{e.removeEventListener(`resize`,n)}})).add(e.leavePip$.subscribe(()=>{this.pictureInPictureWindowRemoveEventListener()})).add(bg({videoSize:this.videoSize$,pipSize:this.pipSize$,inPip:e.inPiP$}).pipe(xg(({videoSize:e,inPip:t,pipSize:n})=>t?n:e)).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()}}class Dg{constructor(e){i(this,`scene3D`,void 0),i(this,`subscription`,new ah),i(this,`volumeSubscription`,new ah),i(this,`videoState`,new I(`stopped`)),i(this,`video`,void 0),i(this,`observableVideo`,null),i(this,`player`,void 0),i(this,`params`,void 0),i(this,`tracer`,void 0),i(this,`textTracksManager`,void 0),i(this,`droppedFramesManager`,new il),i(this,`stallsManager`,new su),i(this,`elementSizeManager`,new Eg),i(this,`videoTracksMap`,new Map),i(this,`audioTracksMap`,new Map),i(this,`textTracksMap`,new Map),i(this,`videoStreamsMap`,new Map),i(this,`audioStreamsMap`,new Map),i(this,`videoTrackSwitchHistory`,new As),i(this,`audioTrackSwitchHistory`,new As),i(this,`syncPlayback`,()=>{let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),n=this.params.desiredState.playbackState.getTransition(),r=this.params.desiredState.seekState.getState();if(!this.videoState.getTransition()){if(r.state===`requested`&&n?.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.currentNativeBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState(`stopped`),P(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`),P(this.params.desiredState.playbackState,`paused`)):t===`playing`?(this.videoState.startTransitionTo(`playing`),this.playIfAllowed()):n?.to===`ready`&&P(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():n?.to===`playing`&&P(this.params.desiredState.playbackState,`playing`);return;case`paused`:t===`playing`?(this.videoState.startTransitionTo(`playing`),this.playIfAllowed()):n?.to===`paused`&&P(this.params.desiredState.playbackState,`paused`);return;default:return Gm(e)}}}),i(this,`init3DScene`,e=>{if(this.scene3D)return;this.scene3D=new Gl(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)}),i(this,`destroy3DScene`,()=>{this.scene3D&&=(this.scene3D.destroy(),void 0)}),this.textTracksManager=new ko(e.source.url),this.params=e,this.video=no(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(Ks(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 yg({throughputEstimator:this.params.dependencies.throughputEstimator,tuning:this.params.tuning,compatibilityMode:this.params.source.compatibilityMode,tracer:this.tracer,forceVideoCodec:this.params.forceVideoCodec}),this.subscribe()}getProviderSubscriptionInfo(){let{output:e,desiredState:t}=this.params;eh(this.observableVideo)&&(this.observableVideo=Zo(this.video),this.subscription.add(()=>this.observableVideo?.destroy()));let n=this.constructor.name,r=t=>{e.error$.next({id:n,category:Ym.WTF,message:`${n} internal logic error`,thrown:t})};return{output:e,desiredState:t,observableVideo:this.observableVideo,genericErrorListener:r,connect:(e,t)=>this.subscription.add(e.subscribe(t,r))}}subscribe(){var e=this;let{output:t,desiredState:n,observableVideo:r,genericErrorListener:i,connect:s}=this.getProviderSubscriptionInfo();this.subscription.add(this.params.output.availableVideoTracks$.pipe(Xm(e=>!!e.length),ih()).subscribe(e=>{this.droppedFramesManager.connect({logger:this.params.dependencies.logger,video:this.video,droppedFramesChecker:this.params.tuning.droppedFramesChecker,isAuto:this.params.desiredState.autoVideoTrackSwitching,playing$:r.playing$,pause$:r.pause$,tracks:e})}));let c=this.params.desiredState.seekState.stateChangeEnded$.pipe(th(e=>e.to.state!==`none`),Zm());this.stallsManager.init({isSeeked$:c,currentStallDuration$:this.player.currentStallDuration$,videoLastDataObtainedTimestamp$:this.player.videoLastDataObtainedTimestamp$,throughput$:this.params.dependencies.throughputEstimator.throughput$,rtt$:this.params.dependencies.throughputEstimator.rtt$,tuning:this.params.tuning.stallsManager,abrParams:this.params.tuning.autoTrackSelection,isBuffering$:r.isBuffering$,looped$:r.looped$,playing$:r.playing$,duration:this.video.duration}),s(r.ended$,t.endedEvent$),s(r.looped$,t.loopedEvent$),s(r.error$,t.error$),s(r.isBuffering$,t.isBuffering$),s(r.currentBuffer$,t.currentBuffer$),s(r.currentBuffer$,t.currentNativeBuffer$),s(r.playing$,t.firstFrameEvent$),s(r.canplay$,t.canplay$),s(r.inPiP$,t.inPiP$),s(r.inFullscreen$,t.inFullscreen$),s(r.loadedMetadata$,t.loadedMetadataEvent$),s(this.player.error$,t.error$),s(this.player.fetcherRecoverableError$,t.fetcherRecoverableError$),s(this.player.fetcherError$,t.fetcherError$),s(this.player.manifestRequested$,t.manifestRequested$),s(this.player.firstBytesManifest$,t.firstBytesManifest$),s(this.player.manifestReceived$,t.manifestReceived$),s(this.player.firstBytesRequested$,t.firstBytesRequested$),s(this.player.firstBytesReceived$,t.firstBytesReceived$),s(this.player.lastConnectionType$,t.httpConnectionType$),s(this.player.lastConnectionReused$,t.httpConnectionReused$),s(this.player.lastConnectionMetrics$,t.httpConnectionMetrics$),s(this.player.lastDownloadMetrics$,t.httpDownloadMetrics$),s(this.player.isLive$,t.isLive$),s(this.player.lastRequestFirstBytes$.pipe(Xm($m),ih()),t.firstBytesEvent$),s(this.stallsManager.severeStallOccurred$,t.severeStallOccurred$),s(this.videoState.stateChangeEnded$.pipe(th(e=>e.to)),this.params.output.playbackState$),this.subscription.add(r.looped$.subscribe(()=>this.player.warmUpMediaSourceIfNeeded(),i)),this.subscription.add(r.seeked$.subscribe(t.seekedEvent$,i)),this.subscription.add(So(this.video,n.isLooped,i)),this.subscription.add(this.params.skipVideoElVolumeSync$.subscribe(e=>{this.volumeSubscription.unsubscribe(),e?this.volumeSubscription.add(n.volume.stateChangeStarted$.subscribe(({to:e})=>this.params.output.volume$.next(e),i)):this.volumeSubscription.add(r.volumeState$.subscribe(this.params.output.volume$,i))})),vu({subscription:this.subscription,desiredState:n,videoElement$:this.params.output.element$,observableVideo:r}),this.subscription.add(Co(this.video,n.volume,r.volumeState$,i,{skipVideoElVolumeSync$:this.params.skipVideoElVolumeSync$})),this.subscription.add(wo(this.video,n.playbackRate,r.playbackRateState$,i)),this.elementSizeManager.connect({video:this.video,observableVideo:r}),s(ll(this.video,{threshold:this.params.tuning.autoTrackSelection.activeVideoAreaThreshold}),t.elementVisible$),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState(`playing`),P(n.playbackState,`playing`),this.scene3D&&this.scene3D.play()},i)).add(r.pause$.subscribe(()=>{this.videoState.setState(`paused`),P(n.playbackState,`paused`)},i)).add(r.canplay$.subscribe(()=>{this.videoState.getState()===`playing`&&!this.video.ended&&this.playIfAllowed()},i)),this.params.tuning.changePlaybackStateToPausedWhenEnded&&this.subscription.add(r.ended$.subscribe(()=>{this.videoState.setState(`paused`),P(n.playbackState,`paused`)})),this.subscription.add(this.player.state$.stateChangeEnded$.subscribe(({to:e})=>{if(e===`manifest_ready`){this.videoTracksMap=new Map,this.audioTracksMap=new Map,this.textTracksMap=new Map;let e=this.player.getStreams(),t=this.player.getCodecs();if(Km(e,`Manifest not loaded or empty`),!this.params.tuning.isAudioDisabled){let t=[];for(let n of e.audio){t.push(pp(n));let e=[];for(let t of n.representations){let r=up(t);e.push(r),this.audioTracksMap.set(r,{stream:n,representation:t})}this.audioStreamsMap.set(n,e)}this.params.output.availableAudioStreams$.next(t)}let n=[];for(let t of e.video){n.push(mp(t));let e=[];for(let n of t.representations){let r=lp(o(o({},n),{},{streamId:t.id}));r&&(e.push(r),this.videoTracksMap.set(r,{stream:t,representation:n}))}this.videoStreamsMap.set(t,e)}this.params.output.availableVideoStreams$.next(n);for(let t of e.text)for(let e of t.representations){let n=dp(t,e);this.textTracksMap.set(n,{stream:t,representation:e})}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),t?.video&&this.params.output.availableVideoCodecs$.next(t.video),t?.audio&&this.params.output.availableAudioCodecs$.next(t.audio),this.audioTracksMap.size&&this.textTracksMap.size&&this.params.desiredState.internalTextTracks.startTransitionTo(Array.from(this.textTracksMap.keys()))}else e===`representations_ready`&&(this.videoState.setState(`ready`),this.player.initBuffer())},i));let l=nh(this.player.currentStallDuration$,this.player.state$.stateChangeEnded$,n.videoTrack.stateChangeStarted$,n.autoVideoTrackSwitching.transitionStarted$,this.params.dependencies.throughputEstimator.rttAdjustedThroughput$,n.autoVideoTrackLimits.stateChangeStarted$,this.elementSizeManager.getObservable(),this.params.output.elementVisible$,this.droppedFramesManager.onDroopedVideoFramesLimit$,Qm(this.video,`progress`)).pipe(Xm(()=>this.videoTracksMap.size>0)),{abrThrottle:u}=this.params.tuning.dash;u&&(l=l.pipe(oh(u))),this.subscription.add(l.subscribe(a(function*(){let t=e.player.state$.getState(),r=e.player.state$.getTransition();if(t!==`manifest_ready`&&t!==`running`||r)return;n.autoVideoTrackSwitching.getTransition()&&n.autoVideoTrackSwitching.setState(n.autoVideoTrackSwitching.getState());let i=e.selectVideoAudioRepresentations();if(!i)return;let[a,o]=i,s=[...e.videoTracksMap.keys()].find(t=>e.videoTracksMap.get(t)?.representation.id===a.id);$m(s)&&(e.stallsManager.lastVideoTrackSelected=s);let c=e.params.desiredState.autoVideoTrackLimits.getTransition();if(c&&e.params.output.autoVideoTrackLimits$.next(c.to),t===`manifest_ready`)yield e.player.initRepresentations(a.id,o?.id,e.params.sourceHls);else if(yield e.player.switchRepresentation(`video`,a.id),o){let t=!!n.audioStream.getTransition();yield e.player.switchRepresentation(`audio`,o.id,t)}}),i)),this.subscription.add(qm({videoState:this.videoState.stateChangeEnded$,autoVideoTrackState:nh(rh([n.autoVideoTrackSwitching.getState()]),n.autoVideoTrackSwitching.stateChangeEnded$.pipe(th(e=>e.to)))}).pipe(th(({videoState:e,autoVideoTrackState:t})=>e.to!==`stopped`&&t),Zm()).subscribe(e=>this.player.setSmartRepresentationSwitch(e))),this.subscription.add(n.cameraOrientation.stateChangeEnded$.subscribe(({to:e})=>{this.scene3D&&e&&this.scene3D.pointCameraTo(e.x,e.y)})),this.subscription.add(this.elementSizeManager.subscribe(e=>{this.scene3D&&e&&this.scene3D.setViewportSize(e.width,e.height)})),this.subscription.add(this.player.currentVideoRepresentation$.pipe(Zm()).subscribe(e=>{let n=[...this.videoTracksMap.entries()].find(([,{representation:t}])=>t.id===e);if(!n){t.currentVideoTrack$.next(void 0),t.currentVideoStream$.next(void 0);return}let[r,{stream:i}]=n,a=this.params.desiredState.videoStream.getTransition();a&&a.to&&a.to.id===i.id&&this.params.desiredState.videoStream.setState(a.to),t.currentVideoTrack$.next(r),t.currentVideoStream$.next(mp(i));let o=this.player.calculateDurationFromSegments();o&&this.params.output.duration$.next(o/1e3)},i)),this.subscription.add(this.player.currentAudioRepresentation$.pipe(Zm()).subscribe(e=>{let n=[...this.audioTracksMap.entries()].find(([,{representation:t}])=>t.id===e);if(!n){t.currentAudioStream$.next(void 0);return}let[r,{stream:i}]=n,a=this.params.desiredState.audioStream.getTransition();a&&a.to&&a.to.id===i.id&&this.params.desiredState.audioStream.setState(a.to),t.currentAudioStream$.next(pp(i))},i)),this.subscription.add(this.player.currentVideoRepresentationInit$.subscribe(e=>{if(e?.is3dVideo&&this.params.tuning.spherical?.enabled)try{this.init3DScene(e),t.is3DVideo$.next(!0)}catch(e){t.warning$.next({id:`DashProvider`,message:`DashProvider could not initialize 3D-scene: ${e}`})}else this.destroy3DScene(),this.params.tuning.spherical?.enabled&&t.is3DVideo$.next(!1)},i)),this.subscription.add(this.player.currentVideoSegmentLength$.subscribe(t.currentVideoSegmentLength$,i)),this.subscription.add(this.player.currentAudioSegmentLength$.subscribe(t.currentAudioSegmentLength$,i)),this.textTracksManager.connect(this.video,n,t);let d=n.playbackState.stateChangeStarted$.pipe(th(({to:e})=>e===`ready`),Zm());this.subscription.add(nh(d,n.autoVideoTrackSwitching.stateChangeStarted$,this.player.state$.stateChangeEnded$,rh([`init`])).subscribe(()=>{let e=n.autoVideoTrackSwitching.getState(),t=n.playbackState.getState()===`ready`?this.params.tuning.dash.forwardBufferTargetPreload:e?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;this.player.setBufferTarget(t)})),this.subscription.add(nh(d,this.player.state$.stateChangeEnded$,rh([`init`])).subscribe(()=>this.player.setPreloadOnly(n.playbackState.getState()===`ready`)));let f=nh(n.playbackState.stateChangeStarted$,n.videoTrack.stateChangeStarted$,n.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,rh([`init`])).pipe(Jm(0));this.subscription.add(f.subscribe(this.syncPlayback,i))}selectVideoAudioRepresentations(){if(this.player.isStreamEnded)return;let e=this.params.tuning.useNewAutoSelectVideoTrack?Is:Fs,t=this.params.tuning.useNewAutoSelectVideoTrack?Gs:Ws,n=this.params.tuning.useNewAutoSelectVideoTrack?Hs:Us,{desiredState:r,output:i}=this.params,a=r.autoVideoTrackSwitching.getState(),o=r.videoTrack.getState()?.id,s=[...this.videoTracksMap.keys()].find(({id:e})=>e===o),c=i.currentVideoTrack$.getValue(),l=r.videoStream.getState()??(s&&this.videoTracksMap.get(s)?.stream)??this.videoStreamsMap.size===1?this.videoStreamsMap.keys().next().value:void 0;if(!l)return;let u=[...this.videoStreamsMap.keys()].find(({id:e})=>e===l.id),d=u&&this.videoStreamsMap.get(u);if(!d)return;let f=Jp(this.video.buffered,this.video.currentTime*1e3),p;p=this.player.isActiveLive$.getValue()?this.player.isLowLatency$.getValue()?this.params.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.params.tuning.dashCmafLive.normalizedLiveMinBufferSize:this.player.isLive$.getValue()?this.params.tuning.dashCmafLive.normalizedTargetMinBufferSize:a?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;let m=(this.video.duration*1e3||1/0)-this.video.currentTime*1e3,h=Math.min(f/Math.min(p,m||1/0),1),g=r.audioStream.getState()??(this.audioStreamsMap.size===1?this.audioStreamsMap.keys().next().value:void 0),_=[...this.audioStreamsMap.keys()].find(({id:e})=>e===g?.id)??this.audioStreamsMap.keys().next().value,v=0;if(_){if(s&&!a){let t=e(s,d,this.audioStreamsMap.get(_)??[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);v=Math.max(v,t?.bitrate??-1/0)}if(c){let t=e(c,d,this.audioStreamsMap.get(_)??[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);v=Math.max(v,t?.bitrate??-1/0)}}let y=s;(a||!y)&&(y=n(d,{container:this.elementSizeManager.getValue(),panelSize:this.params.panelSize,estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),tuning:this.stallsManager.abrTuningParams,limits:this.params.desiredState.autoVideoTrackLimits.getState(),reserve:v,forwardBufferHealth:h,current:c,visible:this.params.output.elementVisible$.getValue(),history:this.videoTrackSwitchHistory,playbackRate:this.video.playbackRate,droppedVideoMaxQualityLimit:this.droppedFramesManager.droppedVideoMaxQualityLimit,stallsVideoMaxQualityLimit:this.stallsManager.videoMaxQualityLimit,stallsPredictedThroughput:this.stallsManager.predictedThroughput,abrLogger:this.params.dependencies.abrLogger}));let b=_&&t(y,d,this.audioStreamsMap.get(_)??[],{estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),stallsPredictedThroughput:this.stallsManager.predictedThroughput,tuning:this.stallsManager.abrTuningParams,forwardBufferHealth:h,history:this.audioTrackSwitchHistory,playbackRate:this.video.playbackRate,abrLogger:this.params.dependencies.abrLogger}),x=this.videoTracksMap.get(y)?.representation,S=b&&this.audioTracksMap.get(b)?.representation;if(x&&S)return[x,S];if(x&&!S&&this.audioTracksMap.size===0)return[x,void 0]}prepare(e=0){this.player.initManifest(this.video,this.params.source.url,e)}playIfAllowed(){mc(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState(`paused`),P(this.params.desiredState.playbackState,`paused`,!0))},e=>this.params.output.error$.next({id:`ForcePlay`,message:`play() failed even with workarounds`,category:Ym.DOM,thrown:e}))}destroy(){this.subscription.unsubscribe(),this.volumeSubscription.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),ro(this.video,this.params.tuning),this.tracer.end()}}class Og extends Dg{subscribe(){super.subscribe();let{output:e,observableVideo:t,connect:n}=this.getProviderSubscriptionInfo();n(t.timeUpdate$,e.position$),n(t.durationChange$,e.duration$)}seek(e,t){this.params.output.willSeekEvent$.next(),this.player.seek(e,t)}}import{combine as kg,merge as Ag,filter as jg,filterChanged as Mg,isNullable as Ng,map as Pg,ValueSubject as Fg,isNonNullable as Ig}from"@vkontakte/videoplayer-shared/es2015";class Lg extends Dg{constructor(e){super(e),this.textTracksManager.destroy()}subscribe(){super.subscribe();let e=!1,t=-1,{output:n,observableVideo:r,desiredState:i,connect:a}=this.getProviderSubscriptionInfo();this.params.output.position$.next(0),this.params.output.isLive$.next(!0),this.params.output.canPlayLiveTailBuffer$.next(!0),a(r.timeUpdate$,n.liveBufferTime$),a(this.player.liveSeekableDuration$,n.duration$),a(this.player.liveLatency$,n.liveLatency$);let o=new Fg(1);a(r.playbackRateState$,o),(this.params.tuning.dashCmafLive.catchupLiveForMutedInactiveTab||this.params.tuning.live.catchupLiveForMutedInactiveTab)&&this.subscription.add(n.elementVisible$.pipe(Mg()).subscribe(t=>{let r=n.position$.getValue(),i=n.volume$.getValue(),a=!i.volume||i.muted;!t&&!r&&a?e=!0:t&&e&&(this.seek(0),e=!1)})),this.subscription.add(this.params.output.position$.subscribe(this.player.livePositionFromPlayer$)).add(i.isLowLatency.stateChangeEnded$.pipe(Pg(e=>e.to)).subscribe(this.player.isLowLatency$)).add(kg({liveBufferTime:n.liveBufferTime$,liveAvailabilityStartTime:this.player.liveAvailabilityStartTime$}).pipe(Pg(({liveBufferTime:e,liveAvailabilityStartTime:n})=>e&&n?e*1e3+n+t:void 0)).subscribe(n.liveTime$)).add(kg({liveDuration:this.player.liveDuration$,liveStreamStatus:this.player.liveStreamStatus$,playbackRate:Ag(r.playbackRateState$,new Fg(1))}).pipe(jg(({liveStreamStatus:e,liveDuration:t})=>e===`active`&&!!t)).subscribe(({liveDuration:e,playbackRate:r})=>{let i=n.liveBufferTime$.getValue(),a=n.position$.getValue(),{playbackCatchupSpeedup:o}=this.params.tuning.dashCmafLive.lowLatency;a||r<1-o||this.video.paused||Ng(i)||(t=e-i)})).add(kg({time:n.liveBufferTime$,liveDuration:this.player.liveDuration$,playbackRate:Ag(r.playbackRateState$,new Fg(1))}).pipe(Mg((e,t)=>this.player.liveStreamStatus$.getValue()===`active`?e.liveDuration===t.liveDuration:e.time===t.time)).subscribe(({time:e,liveDuration:r,playbackRate:i})=>{let a=n.position$.getValue(),{playbackCatchupSpeedup:o}=this.params.tuning.dashCmafLive.lowLatency;if(!a&&!this.video.paused&&i>=1-o||Ng(e)||Ng(r))return;let s=-1*(r-e-t);n.position$.next(Math.min(s,0))})).add(this.player.currentLiveTextRepresentation$.subscribe(e=>{if(e){let t=fp(e);this.params.output.availableTextTracks$.next([t])}})),this.params.tuning.dashCmafLive.externalStopControl||this.subscription.add(this.player.liveStreamStatus$.pipe(jg(e=>Ig(e))).subscribe(e=>n.isLiveEnded$.next(e===`unpublished`&&n.position$.getValue()===0)))}seek(e){this.params.output.willSeekEvent$.next();let t=-e,n=Math.trunc(t/1e3<=Math.abs(this.params.output.duration$.getValue())?t:0);this.player.seekLive(n).then(()=>{this.params.output.position$.next(e/1e3)})}}var Rg=`X-Playback-Duration`,zg=function(){var e=a(function*(e){let t=yield Mu(e),n=yield t.text(),r=/#EXT-X-VK-PLAYBACK-DURATION:(\d+)/m.exec(n)?.[1];return r?parseInt(r,10):t.headers.has(Rg)?parseInt(t.headers.get(Rg),10):void 0});return function(t){return e.apply(this,arguments)}}();import{assertNever as Bg,combine as Vg,debounce as Hg,ErrorCategory as Ug,filter as Wg,filterChanged as Gg,isNonNullable as Kg,isNullable as qg,map as Jg,merge as Yg,observableFrom as Xg,Subscription as Zg,ValueSubject as Qg,VideoQuality as $g}from"@vkontakte/videoplayer-shared/es2015";var e_=v(Vt(),1);import{videoSizeToQuality as t_,getExponentialDelay as n_}from"@vkontakte/videoplayer-shared/es2015";var r_=e=>{let t=null;if(e.QUALITY&&(t=$o(e.QUALITY)),!t&&e.RESOLUTION){let[n,r]=e.RESOLUTION.split(`x`).map(e=>parseInt(e,10));t=t_({width:n,height:r})}return t??null},i_=(e,t)=>{let n=e.split(`
125
+ `),r=[],i=[];for(let e=0;e<n.length;e++){let a=n[e],o=a.match(/^#EXT-X-STREAM-INF:(.+)/),s=a.match(/^#EXT-X-MEDIA:TYPE=SUBTITLES,(.+)/);if(!(!o&&!s)){if(o){let i=e_.default(o[1].split(`,`).map(e=>e.split(`=`))),a=i.QUALITY??`stream-${i.BANDWIDTH}`,s=r_(i),c;i.BANDWIDTH&&(c=parseInt(i.BANDWIDTH,10)/1e3||void 0),!c&&i[`AVERAGE-BANDWIDTH`]&&(c=parseInt(i[`AVERAGE-BANDWIDTH`],10)/1e3||void 0);let l=i[`FRAME-RATE`]?parseFloat(i[`FRAME-RATE`]):void 0,u;if(i.RESOLUTION){let[e,t]=i.RESOLUTION.split(`x`).map(e=>parseInt(e,10));e&&t&&(u={width:e,height:t})}let d=new URL(n[++e],t).toString();s&&r.push({id:a,quality:s,url:d,bandwidth:c,size:u,fps:l})}if(s){let e=e_.default(s[1].split(`,`).map(e=>{let t=e.indexOf(`=`);return[e.substring(0,t),e.substring(t+1)]}).map(([e,t])=>[e,t.replace(/^"|"$/g,``)])),t=e.URI?.replace(/playlist$/,`subtitles.vtt`),n=e.LANGUAGE,r=e.NAME;t&&n&&i.push({type:`internal`,id:n,label:r,language:n,url:t,isAuto:!1})}}}if(!r.length)throw Error(`Empty manifest`);return{qualityManifests:r,textTracks:i}},a_=e=>new Promise(t=>{setTimeout(()=>{t()},e)}),o_=0,s_=function(){var e=a(function*(e,t=e,n,r){let i=yield(yield Mu(e,r)).text();o_+=1;try{let{qualityManifests:e,textTracks:n}=i_(i,t);return{qualityManifests:e,textTracks:n}}catch{if(o_<=n.manifestRetryMaxCount)return yield a_(n_(o_-1,{start:n.manifestRetryInterval,max:n.manifestRetryMaxInterval})),s_(e,t,n)}return{qualityManifests:[],textTracks:[]}});return function(t){return e.apply(this,arguments)}}(),c_=s_;import{isNonNullable as l_,Subscription as u_,throttle as d_,ValueSubject as f_,Subject as p_,ErrorCategory as m_}from"@vkontakte/videoplayer-shared/es2015";class h_{constructor(e,t,n,r,a){i(this,`params`,void 0),i(this,`subscription`,new u_),i(this,`abortControllers`,{destroy:new V,nextManifest:null}),i(this,`prepareUrl`,void 0),i(this,`currentTextTrackData`,null),i(this,`availableTextTracks$`,new f_(null)),i(this,`getCurrentTime$`,new f_(null)),i(this,`error$`,new p_),this.params={fetchManifestData:n,sourceUrl:r,downloadThreshold:a},this.subscription.add(e.pipe(d_(1e3)).subscribe(e=>{this.processLiveTime(e)})),this.getCurrentTime$.next(()=>this.currentTextTrackData?this.currentTextTrackData.playlist.segmentStartTime/1e3+t.currentTime:0)}destroy(){this.subscription.unsubscribe(),this.abortControllers.destroy.abort()}prepare(e){var t=this;return a(function*(){try{let n=new URL(e);n.searchParams.set(`enable-subtitles`,`yes`),t.prepareUrl=n.toString();let{textTracks:r}=yield t.fetchManifestData();yield t.processTextTracks(r,t.params.sourceUrl)}catch(e){t.error(`prepare`,e)}})()}processTextTracks(e,t){var n=this;return a(function*(){try{let r=yield n.parseTextTracks(e,t);r&&(n.currentTextTrackData=r)}catch(e){n.error(`processTextTracks`,e)}})()}parseTextTracks(e,t){var n=this;return a(function*(){for(let r of e){let e=new URL(r.url,t).toString(),i=yield(yield Mu(e,{signal:n.abortControllers.destroy.signal})).text();return{textTrack:r,playlist:n.parsePlaylist(i,e)}}})()}parsePlaylist(e,t){let n={mediaSequence:0,programDateTime:``,segments:[],targetDuration:0,vkPlaybackDuration:0,segmentStartTime:0,vkStartTime:``},r=e.split(`
126
+ `),i=0;for(let e=0;e<r.length;++e){let a=r[e];switch(!0){case a.startsWith(`#EXTINF:`):{let o=r[++e],s=new URL(o,t).toString(),c=Number(this.extractPlaylistRowValue(`#EXTINF:`,a))*1e3;if(n.segments.push({time:{from:i,to:i+c},url:s}),i+=c,!n.segmentStartTime){let e=new Date(n.vkStartTime).valueOf();n.segmentStartTime=new Date(n.programDateTime).valueOf()-e}break}case a.startsWith(`#EXT-X-TARGETDURATION:`):n.targetDuration=Number(this.extractPlaylistRowValue(`#EXT-X-TARGETDURATION:`,a));break;case a.startsWith(`#EXT-X-MEDIA-SEQUENCE:`):n.mediaSequence=Number(this.extractPlaylistRowValue(`#EXT-X-MEDIA-SEQUENCE:`,a));break;case a.startsWith(`#EXT-X-VK-PLAYBACK-DURATION:`):n.vkPlaybackDuration=Number(this.extractPlaylistRowValue(`#EXT-X-VK-PLAYBACK-DURATION:`,a));break;case a.startsWith(`#EXT-X-PROGRAM-DATE-TIME:`):{let e=this.extractPlaylistRowValue(`#EXT-X-PROGRAM-DATE-TIME:`,a);n.programDateTime=e;let t=new Date(e);t.setMilliseconds(0),i=t.valueOf();break}case a.startsWith(`#EXT-X-VK-START-TIME:`):n.vkStartTime=this.extractPlaylistRowValue(`#EXT-X-VK-START-TIME:`,a);break}}return n}extractPlaylistRowValue(e,t){switch(e){case`#EXTINF:`:return t.substring(e.length,t.length-1);default:return t.substring(e.length)}}processLiveTime(e){if(l_(e)&&this.currentTextTrackData){let{segments:t}=this.currentTextTrackData.playlist,{from:n}=t[0].time,{to:r}=t[t.length-1].time;if(e<n||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([o(o({},this.currentTextTrackData.textTrack),{},{url:n.url,isAuto:!0})]);break}}}fetchNextManifestData(){var e=this;return a(function*(){try{if(e.abortControllers.nextManifest)return;e.abortControllers.nextManifest=new V;let{textTracks:t}=yield e.fetchManifestData(),n=yield e.parseTextTracks(t,e.params.sourceUrl);e.currentTextTrackData&&n&&(e.currentTextTrackData.playlist.segments=n.playlist.segments)}catch(t){e.error(`fetchNextManifestData`,t)}finally{e.abortControllers.nextManifest=null}})()}fetchManifestData(){var e=this;return a(function*(){let t=e.prepareUrl??e.params.sourceUrl;return yield e.params.fetchManifestData(t,{signal:e.abortControllers.destroy.signal})})()}error(e,t){this.error$.next({id:`[LiveTextManager][HLS_LIVE_CMAF]`,category:m_.WTF,thrown:t,message:e})}}class g_{constructor(e){i(this,`subscription`,new Zg),i(this,`volumeSubscription`,new Zg),i(this,`videoState`,new I(`stopped`)),i(this,`video`,void 0),i(this,`params`,void 0),i(this,`textTracksManager`,null),i(this,`liveTextManager`,null),i(this,`masterManifest`,void 0),i(this,`manifests$`,new Qg([])),i(this,`maxSeekBackTime$`,void 0),i(this,`liveOffset`,new Ao),i(this,`manifestStartTime$`,new Qg(void 0)),i(this,`syncPlayback`,()=>{if(!this.manifests$.getValue().length)return;let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),n=this.params.desiredState.playbackState.getTransition(),r=this.params.desiredState.videoTrack.getTransition(),i=this.params.desiredState.autoVideoTrackSwitching.getTransition(),a=this.params.desiredState.autoVideoTrackLimits.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.currentNativeBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState(`stopped`),P(this.params.desiredState.playbackState,`stopped`,!0));return}if(this.videoState.getTransition())return;let o=this.params.desiredState.seekState.getState();if(e===`stopped`){this.videoState.startTransitionTo(`ready`),this.prepare();return}if(r||i||a){let e=this.videoState.getState();this.videoState.setState(`changing_manifest`),this.videoState.startTransitionTo(e),this.prepare(),a&&this.params.output.autoVideoTrackLimits$.next(a.to),o.state===`none`&&this.params.desiredState.seekState.setState({state:`requested`,position:-this.liveOffset.getTotalOffset(),forcePrecise:!0});return}if(n?.to!==`paused`&&o.state===`requested`){this.videoState.startTransitionTo(`ready`),this.seek(o.position&&o.position-this.liveOffset.getTotalPausedTime()),this.prepare();return}switch(e){case`ready`:t===`ready`?P(this.params.desiredState.playbackState,`ready`):t===`paused`?(this.videoState.setState(`paused`),this.liveOffset.pause(),P(this.params.desiredState.playbackState,`paused`)):t===`playing`&&(this.videoState.startTransitionTo(`playing`),this.playIfAllowed());return;case`playing`:t===`paused`?(this.videoState.startTransitionTo(`paused`),this.liveOffset.pause(),this.video.paused?this.videoState.setState(`paused`):this.video.pause()):n?.to===`playing`&&P(this.params.desiredState.playbackState,`playing`);return;case`paused`:if(t===`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 e=this.liveOffset.getTotalOffset();e>=this.maxSeekBackTime$.getValue()&&(e=0,this.liveOffset.resetTo(e)),this.liveOffset.resume(),this.params.output.position$.next(-e/1e3),this.prepare()}else n?.to===`paused`&&(P(this.params.desiredState.playbackState,`paused`),this.liveOffset.pause());return;case`changing_manifest`:break;default:return Bg(e)}}),this.params=e,this.video=no(e.container,e.tuning),this.params.output.element$.next(this.video),this.masterManifest={id:`master`,quality:$g.INVARIANT,url:this.params.source.url};let t=(e,t)=>c_(e,this.params.source.url,{manifestRetryInterval:this.params.tuning.manifestRetryInterval,manifestRetryMaxInterval:this.params.tuning.manifestRetryMaxInterval,manifestRetryMaxCount:this.params.tuning.manifestRetryMaxCount},t);this.params.tuning.useHlsLiveNewTextManager?this.liveTextManager=new h_(this.params.output.liveTime$,this.video,t,this.params.source.url,this.params.tuning.hlsLiveNewTextManagerDownloadThreshold):this.textTracksManager=new ko(e.source.url),t(this.generateLiveUrl()).then(({qualityManifests:e,textTracks:t})=>{e.length===0&&this.params.output.error$.next({id:`HlsLiveProviderInternal:empty_manifest`,category:Ug.WTF,message:`HlsLiveProvider: there are no qualities in manifest`}),this.liveTextManager?.processTextTracks(t,this.params.source.url),this.manifests$.next([this.masterManifest,...e])}).catch(e=>{this.params.output.error$.next({id:`ExtractHlsQualities`,category:Ug.NETWORK,message:`Error fetching manifest and extracting qualities`,thrown:e})}),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(Ks(this.params.source.url)),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.maxSeekBackTime$=new Qg(e.source.maxSeekBackTime??1/0),this.subscribe()}selectManifest(){var e;let{autoVideoTrackSwitching:t,videoTrack:n}=this.params.desiredState,r=t.getState(),i=n.getTransition(),a=(i==null||(e=i.to)==null?void 0:e.id)??n.getState()?.id??`master`,o=this.manifests$.getValue();if(!o.length)return;let s=r?`master`:a;return r&&!i&&n.startTransitionTo(this.masterManifest),o.find(e=>e.id===s)}subscribe(){let{output:e,desiredState:t}=this.params,n=t=>{e.error$.next({id:`HlsLiveProvider`,category:Ug.WTF,message:`HlsLiveProvider internal logic error`,thrown:t})},r=Zo(this.video);this.subscription.add(()=>r.destroy());let i=(e,t)=>this.subscription.add(e.subscribe(t,n));i(r.ended$,e.endedEvent$),i(r.error$,e.error$),i(r.isBuffering$,e.isBuffering$),i(r.currentBuffer$,e.currentBuffer$),i(r.currentBuffer$,e.currentNativeBuffer$),i(r.loadedMetadata$,e.firstBytesEvent$),i(r.loadedMetadata$,e.loadedMetadataEvent$),i(r.playing$,e.firstFrameEvent$),i(r.canplay$,e.canplay$),i(r.inPiP$,e.inPiP$),i(r.inFullscreen$,e.inFullscreen$),this.subscription.add(t.isLooped.stateChangeStarted$.subscribe(()=>t.isLooped.setState(!1),n)),this.subscription.add(Co(this.video,t.volume,r.volumeState$,n,{skipVideoElVolumeSync$:this.params.skipVideoElVolumeSync$})),this.subscription.add(this.params.skipVideoElVolumeSync$.subscribe(e=>{this.volumeSubscription.unsubscribe(),e?this.volumeSubscription.add(t.volume.stateChangeStarted$.subscribe(({to:e})=>this.params.output.volume$.next(e),n)):this.volumeSubscription.add(r.volumeState$.subscribe(this.params.output.volume$,n))})),this.subscription.add(wo(this.video,t.playbackRate,r.playbackRateState$,n)),i(ll(this.video),e.elementVisible$),this.liveTextManager?(i(this.liveTextManager.getCurrentTime$,this.params.output.getCurrentTime$),i(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`),P(t.playbackState,`playing`)},n)).add(r.pause$.subscribe(()=>{this.videoState.setState(`paused`),P(t.playbackState,`paused`)},n)).add(r.canplay$.subscribe(()=>{this.videoState.getTransition()?.to===`ready`&&this.videoState.setState(`ready`),this.videoState.getState()===`playing`&&this.playIfAllowed()},n)),this.liveTextManager&&this.subscription.add(this.liveTextManager.availableTextTracks$.subscribe(e=>{e&&this.params.output.availableTextTracks$.next(e)})),this.subscription.add(this.maxSeekBackTime$.pipe(Gg(),Jg(e=>-e/1e3)).subscribe(this.params.output.duration$,n)),this.subscription.add(r.loadedMetadata$.subscribe(()=>{let e=this.params.desiredState.seekState.getState(),t=this.videoState.getTransition(),n=this.params.desiredState.videoTrack.getTransition(),r=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(n&&Kg(n.to)){let e=n.to.id;this.params.desiredState.videoTrack.setState(n.to);let t=this.manifests$.getValue().find(t=>t.id===e);t&&(this.params.output.currentVideoTrack$.next(t),this.params.output.hostname$.next(Ks(t.url)))}r&&this.params.desiredState.autoVideoTrackSwitching.setState(r.to),t&&t.from===`changing_manifest`&&this.videoState.setState(t.to),e&&e.state===`requested`&&this.seek(e.position)},n)),this.subscription.add(r.loadedData$.subscribe(()=>{var e,t;let n=(e=this.video)==null||(t=e.getStartDate)==null||(t=t.call(e))==null?void 0:t.getTime();this.manifestStartTime$.next(n||void 0)},n)),this.subscription.add(Vg({startTime:this.manifestStartTime$.pipe(Wg(Kg)),currentTime:r.timeUpdate$}).subscribe(({startTime:e,currentTime:t})=>this.params.output.liveTime$.next(e+t*1e3),n)),this.subscription.add(this.manifests$.pipe(Jg(e=>e.map(({id:e,quality:t,size:n,bandwidth:r,fps:i})=>({id:e,quality:t,size:n,fps:i,bitrate:r})))).subscribe(this.params.output.availableVideoTracks$,n));let a=Yg(t.playbackState.stateChangeStarted$,t.seekState.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.stateChangeStarted$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,this.manifests$,Xg([`init`])).pipe(Hg(0));this.subscription.add(a.subscribe(this.syncPlayback,n));let o=!1;this.params.tuning.live.catchupLiveForMutedInactiveTab&&this.subscription.add(e.elementVisible$.pipe(Gg()).subscribe(t=>{let n=e.position$.getValue(),r=e.volume$.getValue(),i=!r.volume||r.muted;!t&&!n&&i?o=!0:t&&o&&(this.seek(0),o=!1)}))}destroy(){this.subscription.unsubscribe(),this.volumeSubscription.unsubscribe(),this.textTracksManager?.destroy(),this.liveTextManager?.destroy(),this.params.output.element$.next(void 0),ro(this.video,this.params.tuning)}prepare(){let e=this.selectManifest();if(qg(e))return;let t=this.params.desiredState.autoVideoTrackLimits.getTransition(),n=this.params.desiredState.autoVideoTrackLimits.getState(),r=new URL(e.url);if((t||n)&&e.id===this.masterManifest.id){let{max:e,min:i}=t?.to??n??{};for(let[t,n]of[[e,`mq`],[i,`lq`]]){let e=String(parseFloat(t||``));n&&t&&r.searchParams.set(n,e)}}let i=this.params.format===`HLS_LIVE_CMAF`?2:0,a=oi(r.toString(),this.liveOffset.getTotalOffset(),i);this.liveTextManager?.prepare(a),this.video.setAttribute(`src`,a),this.video.load(),zg(a).then(e=>{if(!qg(e))this.maxSeekBackTime$.next(e);else{let e=this.params.source.maxSeekBackTime??this.maxSeekBackTime$.getValue();(qg(e)||!isFinite(e))&&Mu(a).then(e=>e.text()).then(e=>{let t=/#EXT-X-STREAM-INF[^\n]+\n(.+)/m.exec(e)?.[1];t&&zg(new URL(t,a).toString()).then(e=>{qg(e)||this.maxSeekBackTime$.next(e)})}).catch(()=>{})}})}playIfAllowed(){mc(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState(`paused`),this.liveOffset.pause(),P(this.params.desiredState.playbackState,`paused`,!0))},e=>this.params.output.error$.next({id:`ForcePlay`,message:`play() failed even with workarounds`,category:Ug.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next();let t=-e,n=t<this.maxSeekBackTime$.getValue()?t:0;this.liveOffset.resetTo(n),this.params.output.position$.next(-n/1e3),this.params.output.seekedEvent$.next()}generateLiveUrl(){let e=oi(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 __,debounce as v_,ErrorCategory as y_,fromEvent as b_,isNonNullable as x_,isNullable as S_,map as C_,merge as w_,observableFrom as T_,Subscription as E_,ValueSubject as D_,VideoQuality as O_}from"@vkontakte/videoplayer-shared/es2015";class k_{constructor(e){i(this,`subscription`,new E_),i(this,`volumeSubscription`,new E_),i(this,`videoState`,new I(`stopped`)),i(this,`video`,void 0),i(this,`params`,void 0),i(this,`textTracksManager`,void 0),i(this,`masterManifest`,void 0),i(this,`manifests$`,new D_([])),i(this,`unmuteAfterBrowserResetsHappened`,new D_(!1)),i(this,`syncPlayback`,()=>{if(!this.manifests$.getValue().length)return;let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),n=this.params.desiredState.playbackState.getTransition(),r=this.params.desiredState.videoTrack.getTransition(),i=this.params.desiredState.autoVideoTrackSwitching.getTransition(),a=this.params.desiredState.autoVideoTrackLimits.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.currentNativeBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState(`stopped`),P(this.params.desiredState.playbackState,`stopped`,!0));return}if(this.videoState.getTransition())return;let o=this.params.desiredState.seekState.getState();if(e===`stopped`){this.videoState.startTransitionTo(`ready`),this.prepare();return}if(r||i||a){let e=this.videoState.getState();this.videoState.setState(`changing_manifest`),this.videoState.startTransitionTo(e);let{currentTime:t}=this.video;this.prepare(),a&&this.params.output.autoVideoTrackLimits$.next(a.to),o.state===`none`&&this.params.desiredState.seekState.setState({state:`requested`,position:t*1e3,forcePrecise:!0});return}switch(n?.to!==`paused`&&o.state===`requested`&&this.seek(o.position),e){case`ready`:t===`ready`?P(this.params.desiredState.playbackState,`ready`):t===`paused`?(this.videoState.setState(`paused`),P(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()):n?.to===`playing`&&P(this.params.desiredState.playbackState,`playing`);return;case`paused`:t===`playing`?(this.videoState.startTransitionTo(`playing`),this.playIfAllowed()):n?.to===`paused`&&P(this.params.desiredState.playbackState,`paused`);return;case`changing_manifest`:break;default:return __(e)}}),this.textTracksManager=new ko(e.source.url),this.params=e,this.video=no(e.container,e.tuning),this.params.output.element$.next(this.video),this.masterManifest={id:`master`,quality:O_.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(Ks(this.params.source.url)),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),this.params.output.manifestRequested$.next(),c_(oi(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:e,textTracks:t})=>{this.params.output.firstBytesManifest$.next(),this.manifests$.next([this.masterManifest,...e]),this.params.output.manifestReceived$.next(),this.params.tuning.useNativeHLSTextTracks||this.params.desiredState.internalTextTracks.startTransitionTo(t)},e=>this.params.output.error$.next({id:`ExtractHlsQualities`,category:y_.NETWORK,message:`Error fetching manifest and extracting qualities`,thrown:e})),this.subscribe()}selectManifest(){var e;let{autoVideoTrackSwitching:t,videoTrack:n}=this.params.desiredState,r=t.getState(),i=n.getTransition(),a=(i==null||(e=i.to)==null?void 0:e.id)??n.getState()?.id??`master`,o=this.manifests$.getValue();if(!o.length)return;let s=r?`master`:a;return r&&(!i||!i.from)&&n.startTransitionTo(this.masterManifest),o.find(e=>e.id===s)}subscribe(){let{output:e,desiredState:t}=this.params,n=t=>{e.error$.next({id:`HlsProvider`,category:y_.WTF,message:`HlsProvider internal logic error`,thrown:t})},r=Zo(this.video);this.subscription.add(()=>r.destroy());let i=(e,t)=>this.subscription.add(e.subscribe(t));if(i(r.timeUpdate$,e.position$),i(r.durationChange$,e.duration$),i(r.ended$,e.endedEvent$),i(r.looped$,e.loopedEvent$),i(r.error$,e.error$),i(r.isBuffering$,e.isBuffering$),i(r.currentBuffer$,e.currentBuffer$),i(r.currentBuffer$,e.currentNativeBuffer$),i(r.loadedMetadata$,e.firstBytesEvent$),i(r.loadedMetadata$,e.loadedMetadataEvent$),i(r.playing$,e.firstFrameEvent$),i(r.canplay$,e.canplay$),i(r.seeked$,e.seekedEvent$),i(r.inPiP$,e.inPiP$),i(r.inFullscreen$,e.inFullscreen$),i(this.videoState.stateChangeEnded$.pipe(C_(e=>e.to)),this.params.output.playbackState$),this.subscription.add(So(this.video,t.isLooped,n)),this.subscription.add(this.params.skipVideoElVolumeSync$.subscribe(e=>{this.volumeSubscription.unsubscribe(),e?this.volumeSubscription.add(t.volume.stateChangeStarted$.subscribe(({to:e})=>this.params.output.volume$.next(e),n)):this.volumeSubscription.add(r.volumeState$.subscribe(this.params.output.volume$,n))})),this.subscription.add(wo(this.video,t.playbackRate,r.playbackRateState$,n)),vu({subscription:this.subscription,desiredState:t,videoElement$:this.params.output.element$,observableVideo:r}),this.subscription.add(Co(this.video,t.volume,r.volumeState$,n,{skipVideoElVolumeSync$:this.params.skipVideoElVolumeSync$})),this.textTracksManager.connect(this.video,t,e),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState(`playing`),P(t.playbackState,`playing`)},n)).add(r.pause$.subscribe(()=>{this.videoState.setState(`paused`),P(t.playbackState,`paused`)},n)).add(r.canplay$.subscribe(()=>{this.videoState.getTransition()?.to===`ready`&&this.videoState.setState(`ready`),this.videoState.getState()===`playing`&&this.playIfAllowed()},n).add(r.loadedMetadata$.subscribe(()=>{let e=this.params.desiredState.seekState.getState(),t=this.videoState.getTransition(),n=this.params.desiredState.videoTrack.getTransition(),r=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(n&&x_(n.to)){let e=n.to.id;this.params.desiredState.videoTrack.setState(n.to);let t=this.manifests$.getValue().find(t=>t.id===e);t&&(this.params.output.currentVideoTrack$.next(t),this.params.output.hostname$.next(Ks(t.url)))}let i=this.params.desiredState.playbackRate.getState();if(i!==this.params.output.element$.getValue()?.playbackRate){let e=this.params.output.element$.getValue();e&&(this.params.desiredState.playbackRate.setState(i),e.playbackRate=i)}r&&this.params.desiredState.autoVideoTrackSwitching.setState(r.to),t&&t.from===`changing_manifest`&&this.videoState.setState(t.to),e.state===`requested`&&this.seek(e.position)},n))),this.params.tuning.changePlaybackStateToPausedWhenEnded&&this.subscription.add(r.ended$.subscribe(()=>{this.videoState.setState(`paused`),P(t.playbackState,`paused`)})),this.subscription.add(this.manifests$.pipe(C_(e=>e.map(({id:e,quality:t,size:n,bandwidth:r,fps:i})=>({id:e,quality:t,size:n,fps:i,bitrate:r})))).subscribe(this.params.output.availableVideoTracks$,n)),!F.device.isIOS||!this.params.tuning.useNativeHLSTextTracks){let{textTracks:e}=this.video;this.subscription.add(w_(b_(e,`addtrack`),b_(e,`removetrack`),b_(e,`change`),T_([`init`])).subscribe(()=>{for(let t=0;t<e.length;t++)e[t].mode=`hidden`},n))}let a=w_(t.playbackState.stateChangeStarted$,t.seekState.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.stateChangeStarted$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,this.manifests$,T_([`init`])).pipe(v_(0));this.subscription.add(a.subscribe(this.syncPlayback,n))}destroy(){this.subscription.unsubscribe(),this.volumeSubscription.unsubscribe(),this.textTracksManager.destroy(),this.params.output.element$.next(void 0),ro(this.video,this.params.tuning)}prepare(){let e=this.selectManifest();if(S_(e))return;let t=this.params.desiredState.autoVideoTrackLimits.getTransition(),n=this.params.desiredState.autoVideoTrackLimits.getState(),r=new URL(e.url);if((t||n)&&e.id===this.masterManifest.id){let{max:e,min:i}=t?.to??n??{};for(let[t,n]of[[e,`mq`],[i,`lq`]]){let e=String(parseFloat(t||``));n&&t&&r.searchParams.set(n,e)}}this.video.setAttribute(`src`,r.toString()),this.video.load()}playIfAllowed(){mc(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState(`paused`),P(this.params.desiredState.playbackState,`paused`,!0))},e=>this.params.output.error$.next({id:`ForcePlay`,message:`play() failed even with workarounds`,category:y_.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next(),this.video.currentTime=e/1e3}}var A_=v(ct(),1),j_=v(Qe(),1),M_=v(kn(),1);import{assertNever as N_,assertNonNullable as P_,debounce as F_,ErrorCategory as I_,isHigherOrEqual as L_,isLowerOrEqual as R_,isNonNullable as z_,merge as B_,observableFrom as V_,Subscription as H_,map as U_}from"@vkontakte/videoplayer-shared/es2015";class W_{constructor(e){i(this,`subscription`,new H_),i(this,`volumeSubscription`,new H_),i(this,`videoState`,new I(`stopped`)),i(this,`video`,void 0),i(this,`trackUrls`,{}),i(this,`params`,void 0),i(this,`textTracksManager`,new ko),i(this,`syncPlayback`,()=>{let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),n=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.currentNativeBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState(`stopped`),P(this.params.desiredState.playbackState,`stopped`,!0));return}if(this.videoState.getTransition())return;let r=this.params.desiredState.autoVideoTrackLimits.getTransition(),i=this.params.desiredState.videoTrack.getTransition(),a=this.params.desiredState.seekState.getState();if(r&&e!==`ready`&&!i){this.handleQualityLimitTransition(r.to);return}if(e===`stopped`){this.videoState.startTransitionTo(`ready`),this.prepare();return}if(i){let{currentTime:e}=this.video;this.prepare(),a.state===`none`&&this.params.desiredState.seekState.setState({state:`requested`,position:e*1e3,forcePrecise:!0});return}switch(n?.to!==`paused`&&a.state===`requested`&&this.seek(a.position),e){case`ready`:t===`ready`?P(this.params.desiredState.playbackState,`ready`):t===`paused`?(this.videoState.setState(`paused`),P(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()):n?.to===`playing`&&P(this.params.desiredState.playbackState,`playing`);return;case`paused`:t===`playing`?(this.videoState.startTransitionTo(`playing`),this.playIfAllowed()):n?.to===`paused`&&P(this.params.desiredState.playbackState,`paused`);return;default:return N_(e)}}),this.params=e,this.video=no(e.container,e.tuning),this.params.output.element$.next(this.video),A_.default(this.params.source).reverse().forEach(([e,t],n)=>{let r=n.toString(10);this.trackUrls[r]={track:{quality:e,id:r},url:t}}),this.params.output.isLive$.next(!1),this.params.output.availableVideoTracks$.next(j_.default(this.trackUrls).map(({track:e})=>e)),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,n=t=>{e.error$.next({id:`MpegProvider`,category:I_.WTF,message:`MpegProvider internal logic error`,thrown:t})},r=Zo(this.video);this.subscription.add(()=>r.destroy());let i=(e,t)=>this.subscription.add(e.subscribe(t,n));i(r.timeUpdate$,e.position$),i(r.durationChange$,e.duration$),i(r.ended$,e.endedEvent$),i(r.looped$,e.loopedEvent$),i(r.error$,e.error$),i(r.isBuffering$,e.isBuffering$),i(r.currentBuffer$,e.currentNativeBuffer$),i(r.currentBuffer$,e.currentBuffer$),i(r.loadedMetadata$,e.firstBytesEvent$),i(r.loadedMetadata$,e.loadedMetadataEvent$),i(r.playing$,e.firstFrameEvent$),i(r.canplay$,e.canplay$),i(r.seeked$,e.seekedEvent$),i(r.inPiP$,e.inPiP$),i(r.inFullscreen$,e.inFullscreen$),i(this.videoState.stateChangeEnded$.pipe(U_(e=>e.to)),this.params.output.playbackState$),this.subscription.add(So(this.video,t.isLooped,n)),vu({subscription:this.subscription,desiredState:t,videoElement$:this.params.output.element$,observableVideo:r}),this.subscription.add(Co(this.video,t.volume,r.volumeState$,n,{skipVideoElVolumeSync$:this.params.skipVideoElVolumeSync$})),this.subscription.add(this.params.skipVideoElVolumeSync$.subscribe(e=>{this.volumeSubscription.unsubscribe(),e?this.volumeSubscription.add(t.volume.stateChangeStarted$.subscribe(({to:e})=>this.params.output.volume$.next(e),n)):this.volumeSubscription.add(r.volumeState$.subscribe(this.params.output.volume$,n))})),this.subscription.add(wo(this.video,t.playbackRate,r.playbackRateState$,n)),i(ll(this.video),e.elementVisible$),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState(`playing`),P(t.playbackState,`playing`)},n)).add(r.pause$.subscribe(()=>{this.videoState.setState(`paused`),P(t.playbackState,`paused`)},n)).add(r.canplay$.subscribe(()=>{this.videoState.getTransition()?.to===`ready`&&this.videoState.setState(`ready`);let e=this.params.desiredState.videoTrack.getTransition();if(e&&z_(e.to)){this.params.desiredState.videoTrack.setState(e.to),this.params.output.currentVideoTrack$.next(this.trackUrls[e.to.id].track);let t=this.params.desiredState.playbackRate.getState();if(t!==this.params.output.element$.getValue()?.playbackRate){let e=this.params.output.element$.getValue();e&&(this.params.desiredState.playbackRate.setState(t),e.playbackRate=t)}}this.videoState.getState()===`playing`&&!this.video.ended&&this.playIfAllowed()},n)),this.params.tuning.changePlaybackStateToPausedWhenEnded&&this.subscription.add(r.ended$.subscribe(()=>{this.videoState.setState(`paused`),P(t.playbackState,`paused`)})),this.textTracksManager.connect(this.video,t,e);let a=B_(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,V_([`init`])).pipe(F_(0));this.subscription.add(a.subscribe(this.syncPlayback,n))}destroy(){this.subscription.unsubscribe(),this.volumeSubscription.unsubscribe(),this.textTracksManager.destroy(),this.trackUrls={},this.params.output.element$.next(void 0),ro(this.video,this.params.tuning)}prepare(){let e=this.params.desiredState.videoTrack.getState()?.id;P_(e,`MpegProvider: track is not selected`);let{url:t}=this.trackUrls[e];P_(t,`MpegProvider: No url for ${e}`),this.params.tuning.requestQuick&&(t=ed(t)),this.video.setAttribute(`src`,t),this.video.load(),this.params.output.hostname$.next(Ks(t))}playIfAllowed(){mc(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState(`paused`),P(this.params.desiredState.playbackState,`paused`,!0))},e=>this.params.output.error$.next({id:`ForcePlay`,message:`play() failed even with workarounds`,category:I_.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=e=>{this.params.output.currentVideoTrack$.next(e),this.params.desiredState.videoTrack.startTransitionTo(e)},n=e=>{t(Hs(a,{container:this.video.getBoundingClientRect(),panelSize:this.params.panelSize,estimatedThroughput:this.params.dependencies.throughputEstimator.throughput$.getValue(),tuning:this.params.tuning.autoTrackSelection,forwardBufferHealth:0,limits:e,abrLogger:this.params.dependencies.abrLogger}))},r=this.params.output.currentVideoTrack$.getValue()?.quality,i=!!(e.max||e.min),a=j_.default(this.trackUrls).map(e=>e.track);if(!r||!i||Ts(e,a[0].quality,M_.default(a,-1)?.quality)){n();return}let o=e.max?R_(r,e.max):!0,s=e.min?L_(r,e.min):!0;o&&s||n(e)}}import{assertNever as G_,debounce as K_,merge as q_,observableFrom as J_,Subscription as Y_,map as X_,ValueSubject as Z_,ErrorCategory as Q_,VideoQuality as $_}from"@vkontakte/videoplayer-shared/es2015";import{ErrorCategory as ev}from"@vkontakte/videoplayer-shared/es2015";var tv=[`stun:videostun.mycdn.me:80`],nv=1e3,rv=3,iv=()=>null;class av{constructor(e,t){i(this,`options`,void 0),i(this,`ws`,null),i(this,`peerConnection`,null),i(this,`serverUrl`,``),i(this,`streamKey`,``),i(this,`stream`,null),i(this,`signalingType`,`JOIN`),i(this,`retryTimeout`,void 0),i(this,`retryCount`,0),i(this,`externalStartCallback`,iv),i(this,`externalStopCallback`,iv),i(this,`externalErrorCallback`,iv),this.options=this.normalizeOptions(t);let n=e.split(`/`);this.serverUrl=n.slice(0,n.length-1).join(`/`),this.streamKey=n[n.length-1]}onStart(e){try{this.externalStartCallback=e}catch(e){this.handleSystemError(e)}}onStop(e){try{this.externalStopCallback=e}catch(e){this.handleSystemError(e)}}onError(e){try{this.externalErrorCallback=e}catch(e){this.handleSystemError(e)}}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(e){this.handleRTCError(e)}}onSocketError(e){try{this.externalErrorCallback(Error(e.toString()))}catch(e){this.handleRTCError(e)}}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(e){this.handleRTCError(e)}}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}}handleUpdateMessage(e){var t=this;return a(function*(){try{let n=yield t.createOffer();t.peerConnection&&(yield t.peerConnection.setLocalDescription(n)),t.handleAnswer(e.sdp)}catch(e){t.handleRTCError(e)}})()}handleLogin(){var e=this;return a(function*(){try{let t={iceServers:[{urls:tv}]};e.peerConnection=new RTCPeerConnection(t),e.peerConnection.ontrack=e.onPeerConnectionStream.bind(e),e.peerConnection.onicecandidate=e.onPeerConnectionIceCandidate.bind(e),e.peerConnection.oniceconnectionstatechange=e.onPeerConnectionIceConnectionStateChange.bind(e);let n=yield e.createOffer();yield e.peerConnection.setLocalDescription(n),e.send({type:e.signalingType,inviteType:`OFFER`,streamKey:e.streamKey,sdp:n.sdp,callSupport:!1})}catch(t){e.handleRTCError(t)}})()}handleAnswer(e){var t=this;return a(function*(){try{t.peerConnection&&(yield t.peerConnection.setRemoteDescription(new RTCSessionDescription({type:`answer`,sdp:e})))}catch(e){t.handleRTCError(e)}})()}handleCandidate(e){var t=this;return a(function*(){if(e)try{t.peerConnection&&(yield t.peerConnection.addIceCandidate(e))}catch(e){t.handleRTCError(e)}})()}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:ev.WTF,message:e.message})}onPeerConnectionStream(e){var t=this;return a(function*(){let n=e.streams[0];t.stream&&t.stream.id===n.id||(t.stream=n,t.externalStartCallback(t.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()))}}createOffer(){var e=this;return a(function*(){let t={offerToReceiveAudio:!0,offerToReceiveVideo:!0,voiceActivityDetection:!1};if(!e.peerConnection)throw Error(`Can not create offer - no peer connection instance `);let n=yield e.peerConnection.createOffer(t),r=n.sdp||``;if(!/^a=rtpmap:\d+ H264\/\d+$/m.test(r))throw Error(`No h264 codec support error`);return n})()}handleRTCError(e){try{this.externalErrorCallback(e||Error(`RTC connection error`))}catch(e){this.handleSystemError(e)}}handleNetworkError(){try{this.externalErrorCallback(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 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,null)}scheduleRetry(){this.retryTimeout=setTimeout(this.connectWS.bind(this),nv)}normalizeOptions(e={}){let t={stunServerList:tv,maxRetryNumber:rv,errorChanel:null};return e.stunServerList&&(t.stunServerList=e.stunServerList),e.maxRetryNumber&&e.maxRetryNumber>0&&(t.maxRetryNumber=e.maxRetryNumber),t}}class ov{constructor(e){i(this,`subscription`,void 0),i(this,`volumeSubscription`,void 0),i(this,`params`,void 0),i(this,`log`,void 0),i(this,`video`,void 0),i(this,`videoState`,new I(`stopped`)),i(this,`liveStreamClient`,void 0),i(this,`maxSeekBackTime$`,new Z_(0)),i(this,`syncPlayback`,()=>{let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),n=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.currentNativeBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState(`stopped`),P(this.params.desiredState.playbackState,`stopped`,!0));return}if(this.videoState.getTransition())return;let r=this.params.desiredState.videoTrack.getTransition();if(e===`stopped`){this.videoState.startTransitionTo(`ready`),this.prepare();return}if(r){this.prepare();return}switch(e){case`ready`:t===`paused`?(this.videoState.setState(`paused`),P(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()):n?.to===`playing`&&P(this.params.desiredState.playbackState,`playing`);return;case`paused`:t===`playing`?(this.videoState.startTransitionTo(`playing`),this.playIfAllowed()):n?.to===`paused`&&P(this.params.desiredState.playbackState,`paused`);return;default:return G_(e)}}),this.subscription=new Y_,this.volumeSubscription=new Y_,this.params=e,this.log=this.params.dependencies.logger.createComponentLog(`WebRTCLiveProvider`),this.video=no(e.container,e.tuning),this.liveStreamClient=new av(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.volumeSubscription.unsubscribe(),this.liveStreamClient.disconnect(),this.params.output.element$.next(void 0),ro(this.video,this.params.tuning)}subscribe(){let{output:e,desiredState:t}=this.params,n=t=>{e.error$.next({id:`WebRTCLiveProvider`,category:Q_.WTF,message:`WebRTCLiveProvider internal logic error`,thrown:t})};this.subscription.add(q_(this.videoState.stateChangeStarted$.pipe(X_(e=>({transition:e,type:`start`}))),this.videoState.stateChangeEnded$.pipe(X_(e=>({transition:e,type:`end`})))).subscribe(({transition:e,type:t})=>{this.log({message:`[videoState change] ${t}: ${JSON.stringify(e)}`})}));let r=Zo(this.video);this.subscription.add(()=>r.destroy());let i=(e,t)=>this.subscription.add(e.subscribe(t,n));i(r.timeUpdate$,e.liveTime$),i(r.ended$,e.endedEvent$),i(r.looped$,e.loopedEvent$),i(r.error$,e.error$),i(r.isBuffering$,e.isBuffering$),i(r.currentBuffer$,e.currentBuffer$),i(r.currentBuffer$,e.currentNativeBuffer$),i(ll(this.video),this.params.output.elementVisible$),this.subscription.add(r.durationChange$.subscribe(t=>{e.duration$.next(t===1/0?0:t)})).add(r.canplay$.subscribe(()=>{this.videoState.getTransition()?.to===`ready`&&this.videoState.setState(`ready`)},n)).add(r.pause$.subscribe(()=>{this.videoState.setState(`paused`)},n)).add(r.playing$.subscribe(()=>{this.videoState.setState(`playing`)},n)).add(r.error$.subscribe(e.error$)).add(this.maxSeekBackTime$.subscribe(this.params.output.duration$)).add(Co(this.video,t.volume,r.volumeState$,n,{skipVideoElVolumeSync$:this.params.skipVideoElVolumeSync$})),this.subscription.add(this.params.skipVideoElVolumeSync$.subscribe(i=>{this.volumeSubscription.unsubscribe(),i?this.volumeSubscription.add(t.volume.stateChangeStarted$.subscribe(({to:t})=>e.volume$.next(t),n)):this.volumeSubscription.add(r.volumeState$.subscribe(e.volume$,n))})),this.subscription.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 G_(n.to)}},n)).add(q_(t.playbackState.stateChangeStarted$,this.videoState.stateChangeEnded$,J_([`init`])).pipe(K_(0)).subscribe(this.syncPlayback.bind(this),n)),this.subscription.add(t.isLooped.stateChangeStarted$.subscribe(()=>t.isLooped.setState(!1),n)),this.subscription.add(t.autoVideoTrackSwitching.stateChangeStarted$.subscribe(()=>t.autoVideoTrackSwitching.setState(!1),n))}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(Ks(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:$_.INVARIANT}),this.video.srcObject=e,P(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.currentNativeBuffer$.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:Q_.EXTERNAL_API,message:e.message,thrown:e})}playIfAllowed(){mc(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState(`paused`),P(this.params.desiredState.playbackState,`paused`,!0))},e=>this.params.output.error$.next({id:`ForcePlay`,message:`play() failed even with workarounds`,category:Q_.DOM,thrown:e}))}prepare(){this.liveStreamClient.connect()}}class sv{constructor(e){i(this,`length`,void 0),i(this,`index`,void 0),i(this,`iterator`,void 0),i(this,`current`,void 0),this.length=e.length,this.iterator=e[Symbol.iterator](),this.next()}next(){this.current=this.iterator.next(),this.index=this.index===void 0?0:this.index+1}getValue(){if(this.current.done)throw Error(`Iterable is completed`);return this.current.value}isCompleted(){return!!this.current.done}isLast(){return this.index===this.length-1}}import{assertNever as cv,assertNonNullable as lv,ErrorCategory as uv,filter as dv,isNonNullable as fv,isNullable as pv,map as mv,merge as hv,once as gv,Subject as K,Subscription as _v,ValueSubject as q,flattenObject as vv,devNull as yv,getWindow as bv}from"@vkontakte/videoplayer-shared/es2015";import{Observable as xv,map as Sv,Subscription as Cv,Subject as wv}from"@vkontakte/videoplayer-shared/es2015";var Tv=e=>new xv(t=>{let n=new Cv,r=e.desiredPlaybackState$.stateChangeStarted$.pipe(Sv(({from:e,to:t})=>`${e}-${t}`)),i=e.desiredPlaybackState$.stateChangeEnded$,a=e.providerChanged$.pipe(Sv(({type:e})=>e!==void 0)),o=new wv,s=0,c=`unknown`;return n.add(r.subscribe(t=>{s&&window.clearTimeout(s),c=t,s=window.setTimeout(()=>o.next(t),e.maxTransitionInterval),z({m:`hangup.set`,l:t,id:s})})),n.add(i.subscribe(()=>{z({m:`hangup.cl`,id:s}),window.clearTimeout(s),c=`unknown`,s=0})),n.add(a.subscribe(t=>{s&&(z({m:`hangup.rs.0`,id:s}),window.clearTimeout(s),s=0,t&&(s=window.setTimeout(()=>o.next(c),e.maxTransitionInterval),z({m:`hangup.rs.1`,id:s})))})),n.add(o.subscribe(t)),()=>{window.clearTimeout(s),n.unsubscribe()}});import{ErrorCategory as Ev,Subscription as Dv,combine as Ov,filter as kv,once as Av}from"@vkontakte/videoplayer-shared/es2015";function jv(){return new(window.AudioContext||window.webkitAudioContext)}class Mv{constructor(e,t,n,r){i(this,`providerOutput`,void 0),i(this,`provider$`,void 0),i(this,`volumeMultiplierError$`,void 0),i(this,`volumeMultiplier`,void 0),i(this,`destroyController`,new V),i(this,`subscriptions`,new Dv),i(this,`audioContext`,null),i(this,`gainNode`,null),i(this,`mediaElementSource`,null),this.providerOutput=e,this.provider$=t,this.volumeMultiplierError$=n,this.volumeMultiplier=r,this.subscriptions.add(this.provider$.pipe(kv(e=>!!e.type),Av()).subscribe(({type:e})=>this.subscribe(e)))}subscribe(e){F.browser.isSafari&&e!==`MPEG`||this.subscriptions.add(Ov({video:this.providerOutput.element$,playbackState:this.providerOutput.playbackState$,volume:this.providerOutput.volume$}).pipe(kv(({playbackState:e,video:t,volume:{muted:n,volume:r}})=>e===`playing`&&!!t&&!n&&!!r),Av()).subscribe(({video:e})=>{this.initAudioContextOnce(e).then(e=>{e||this.destroy()}).catch(e=>{this.handleError(e),this.destroy()})}))}static isSupported(){return`AudioContext`in window&&`GainNode`in window&&`MediaElementAudioSourceNode`in window}initAudioContextOnce(e){var t=this;return a(function*(){let{volumeMultiplier:n}=t,r=jv();t.audioContext=r;let i=r.createGain();if(t.gainNode=i,i.gain.value=n,i.connect(r.destination),r.state===`suspended`&&(yield r.resume(),t.destroyController.signal.aborted))return!1;let a=r.createMediaElementSource(e);return t.mediaElementSource=a,a.connect(i),!0})()}cleanup(){this.mediaElementSource&&=(this.mediaElementSource.disconnect(),null),this.gainNode&&=(this.gainNode.disconnect(),null),this.audioContext&&=(this.audioContext.state!==`closed`&&this.audioContext.close(),null)}destroy(){this.destroyController.abort(),this.subscriptions.unsubscribe(),this.cleanup()}handleError(e){this.volumeMultiplierError$.next({id:Mv.errorId,category:Ev.VIDEO_PIPELINE,message:e?.message??`${Mv.errorId} exception`,thrown:e})}}i(Mv,`errorId`,`VolumeMultiplierManager`);var Nv={chunkDuration:5e3,maxParallelRequests:5};class Pv{constructor(e){i(this,`current$`,new q({type:void 0})),i(this,`providerError$`,new K),i(this,`noAvailableProvidersError$`,new K),i(this,`volumeMultiplierError$`,new K),i(this,`providerOutput`,{position$:new q(0),duration$:new q(1/0),volume$:new q({muted:!1,volume:1}),availableVideoStreams$:new q([]),currentVideoStream$:new q(void 0),availableVideoTracks$:new q([]),currentVideoTrack$:new q(void 0),availableVideoCodecs$:new q([]),availableAudioStreams$:new q([]),currentAudioStream$:new q(void 0),availableAudioTracks$:new q([]),availableAudioCodecs$:new q([]),currentVideoSegmentLength$:new q(0),currentAudioSegmentLength$:new q(0),isAudioAvailable$:new q(!0),autoVideoTrackLimitingAvailable$:new q(!1),autoVideoTrackLimits$:new q(void 0),currentBuffer$:new q(void 0),currentNativeBuffer$:new q(void 0),isBuffering$:new q(!0),error$:new K,fetcherError$:new K,fetcherRecoverableError$:new K,warning$:new K,willSeekEvent$:new K,soundProhibitedEvent$:new K,seekedEvent$:new K,loopedEvent$:new K,endedEvent$:new K,manifestRequested$:new K,firstBytesManifest$:new K,manifestReceived$:new K,firstBytesRequested$:new K,firstBytesReceived$:new K,firstBytesEvent$:new K,loadedMetadataEvent$:new K,firstFrameEvent$:new K,canplay$:new K,isLive$:new q(void 0),isLiveEnded$:new q(null),canPlayLiveTailBuffer$:new q(!1),isLowLatency$:new q(!1),canChangePlaybackSpeed$:new q(!0),liveTime$:new q(void 0),liveBufferTime$:new q(void 0),liveLatency$:new q(void 0),severeStallOccurred$:new K,availableTextTracks$:new q([]),currentTextTrack$:new q(void 0),hostname$:new q(void 0),httpConnectionType$:new q(void 0),httpConnectionReused$:new q(void 0),httpConnectionMetrics$:new q(void 0),httpDownloadMetrics$:new q(void 0),inPiP$:new q(!1),inFullscreen$:new q(!1),element$:new q(void 0),elementVisible$:new q(!0),availableSources$:new q(void 0),is3DVideo$:new q(!1),playbackState$:new q(``),getCurrentTime$:new q(null)}),i(this,`subscription`,new _v),i(this,`screenFormatsIterator`,void 0),i(this,`chromecastFormatsIterator`,void 0),i(this,`videoCodecsIterator`,void 0),i(this,`log`,void 0),i(this,`tracer`,void 0),i(this,`params`,void 0),i(this,`failoverIndex`,void 0),i(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=Ji([...Ld(this.params.tuning),...Id(this.params.tuning)]).filter(t=>fv(e.sources[t])),{forceFormat:n,formatsToAvoid:r}=this.params.tuning,a=[];a=n?[n]:r.length?[...t.filter(e=>!ya(r,e)),...t.filter(e=>ya(r,e))]:t,this.log({message:`Selected formats: ${a.join(` > `)}`}),this.tracer.log(`Selected formats`,vv(a)),this.screenFormatsIterator=new sv(a),this.chromecastFormatsIterator=new sv([...Rd(!0),...Rd(!1)].filter(t=>fv(e.sources[t]))),this.providerOutput.availableSources$.next(e.sources);let{volumeMultiplier:o=1,tuning:{useVolumeMultiplier:s}}=this.params;s&&o!==1&&Mv.isSupported()&&(this.volumeMultiplierManager=new Mv(this.providerOutput,this.current$,this.volumeMultiplierError$,o))}init(){z.reset(),this.subscription.add(this.initProviderErrorHandling()).add(this.params.dependencies.chromecastInitializer.connection$.subscribe(()=>{this.reinitProvider()})).add(this.providerOutput.availableVideoCodecs$.subscribe(e=>{!this.videoCodecsIterator&&e.length>1&&(this.videoCodecsIterator=new sv(e))}))}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(pv(t)){this.handleNoFormatsError(e);return}let n;try{n=this.createProvider(e,t)}catch(e){this.providerError$.next({id:`ProviderNotConstructed`,category:uv.WTF,message:`Failed to create provider`,thrown:e})}n?this.current$.next({type:t,provider:n,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()}switchToNextVideoCodec(){this.params.tuning.dash.codecsPrioritizeEnabled&&!this.videoCodecsIterator.isLast()&&(this.tracer.log(`switchToNextVideoCodec`),this.destroyProvider(),this.videoCodecsIterator.next(),this.initProvider())}destroyProvider(){let e=this.current$.getValue().provider;if(!e)return;this.log({message:`destroyProvider`}),this.tracer.log(`destroyProvider`),e.destroy();let t=this.providerOutput.position$.getValue()*1e3,n=this.params.desiredState.seekState.getState(),r=n.state!==`none`;if(this.params.desiredState.seekState.setState({state:`requested`,position:r?n.position:t,forcePrecise:r?n.forcePrecise:!1}),e.scene3D){let t=e.scene3D.getCameraRotation();this.params.desiredState.cameraOrientation.setState({x:t.x,y:t.y})}let i=this.providerOutput.isBuffering$;i.getValue()||i.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 cv(e)}}createScreenProvider(e){let{sources:t,container:n,desiredState:r,panelSize:i}=this.params,a=this.providerOutput,s={container:n,source:null,desiredState:r,output:a,dependencies:this.params.dependencies,tuning:this.params.tuning,panelSize:i,skipVideoElVolumeSync$:this.params.skipVideoElVolumeSync$};switch(e){case`DASH_SEP`:case`DASH_WEBM`:case`DASH_WEBM_AV1`:case`DASH_ONDEMAND`:case`DASH_STREAMS`:{let n=this.applyFailoverHost(t[e]),r=this.applyFailoverHost(t.HLS_ONDEMAND||t.HLS);lv(n);let{useDashProviderVirtual:i,useDashProviderVirtualMobile:a}=this.params.tuning,{isMobile:c}=F.device;return!c&&i||c&&a?new dm(o(o({},s),{},{source:n,sourceHls:r,forceVideoCodec:this.videoCodecsIterator?.getValue()})):new Og(o(o({},s),{},{source:n,sourceHls:r,forceVideoCodec:this.videoCodecsIterator?.getValue()}))}case`DASH_LIVE_CMAF`:{let n=this.applyFailoverHost(t[e]);return lv(n),this.params.tuning.useDashProviderVirtual&&!F.device.isMobile||this.params.tuning.useDashProviderVirtualMobile&&F.device.isMobile?new Wm(o(o({},s),{},{source:n})):new Lg(o(o({},s),{},{source:n}))}case`HLS`:case`HLS_ONDEMAND`:case`HLS_FMP4`:{let n=this.applyFailoverHost(t[e]);return lv(n),new k_(o(o({},s),{},{source:n}))}case`HLS_LIVE`:case`HLS_LIVE_CMAF`:{let n=this.applyFailoverHost(t[e]);return lv(n),new g_(o(o({},s),{},{source:n,config:{maxPausedTime:this.params.tuning.live.maxPausedTime},format:e}))}case`MPEG`:{let n=this.applyFailoverHost(t[e]);return lv(n),new W_(o(o({},s),{},{source:n}))}case`DASH_LIVE`:{let n=this.applyFailoverHost(t[e]);return lv(n),new pl(o(o({},s),{},{source:n,config:o(o({},Nv),{},{maxPausedTime:this.params.tuning.live.maxPausedTime})}))}case`WEB_RTC_LIVE`:{let i=this.applyFailoverHost(t[e]);return lv(i),new ov({container:n,source:i,desiredState:r,output:a,dependencies:this.params.dependencies,tuning:this.params.tuning,skipVideoElVolumeSync$:this.params.skipVideoElVolumeSync$})}case`DASH`:case`DASH_LIVE_WEBM`:throw Error(`${e} is no longer supported`);default:return cv(e)}}createChromecastProvider(e){let{sources:t,container:n,desiredState:r,meta:i}=this.params,a={meta:i,container:n,source:t,format:e,desiredState:r,output:this.providerOutput,dependencies:this.params.dependencies,tuning:this.params.tuning};if(this.params.tuning.chromecastPresentationApi&&this.params.dependencies.chromecastInitializer instanceof _a){let{chromecastConnector:e}=this.params.dependencies.chromecastInitializer;return lv(e),new Zi(o(o({},a),{},{chromecastConnector:e}))}let s=this.params.dependencies.chromecastInitializer.connection$.getValue();return lv(s),new Ba(o(o({},a),{},{connection:s}))}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 cv(e)}}skipFormat(e){switch(e){case`SCREEN`:return this.screenFormatsIterator.next();case`CHROMECAST`:return this.chromecastFormatsIterator.next();default:return cv(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 cv(e)}}applyFailoverHost(e){if(this.failoverIndex===void 0)return e;let t=this.params.failoverHosts[this.failoverIndex];if(!t)return e;let n=e=>{let n=new URL(e);return n.host=t,n.toString()};if(e===void 0)return e;if(`type`in e){if(e.type===`raw`)return e;if(e.type===`url`)return o(o({},e),{},{url:n(e.url)})}return xa.default(ba.default(e).map(([e,t])=>[e,n(t)]))}initProviderErrorHandling(){let e=new _v,t=!1,n=0;e.add(hv(this.providerOutput.error$.pipe(dv(e=>!this.params.tuning.ignoreAudioRendererError||!e.message||!/AUDIO_RENDERER_ERROR/gi.test(e.message))),Tv({desiredPlaybackState$:this.params.desiredState.playbackState,maxTransitionInterval:this.params.tuning.maxPlaybackTransitionInterval,position$:this.providerOutput.position$,providerChanged$:this.current$}).pipe(mv(e=>({id:`ProviderHangup:${e}`,category:uv.WTF,message:`A ${e} 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 n=this.params.desiredState.playbackState.transitionEnded$.pipe(dv(({to:e})=>e===`playing`),gv()).subscribe(()=>t=!0);e.add(n)}));let r=()=>{let e=z.drain(),{logDashLiveDebug:t,sendDashLiveDebug:n}=this.params.tuning;if(t&&bv().console.log(`===== DASH_LIVE DEBUG START ====
127
+ `,e.map(({time:e,data:t,stack:n})=>`${e}: ${JSON.stringify(t)}${n?`
128
+ `+n:``}`).join(`
183
129
  `),`
184
- ===== DASH_LIVE DEBUG END ====`),o){let u=a.reduce((c,{time:d,data:l,stack:p})=>{let h=(0,Hp.default)(l).map(([f,m])=>`${f}:${m}`).join(",");return c+=`${d}: ${h}${p?`: ${p}`:""};`,c},"");XO.push("core",{key:"vp_dash_live_debug",strings:[u]})}};return e.add(this.providerError$.subscribe(a=>{a.id.startsWith("ProviderHangup")&&(j({m:"final.0",e:a.id}),r())})).add(this.noAvailableProvidersError$.subscribe(()=>{j({m:"final.1"}),r()})),e.add(this.providerError$.subscribe(a=>{let n=this.current$.getValue().destination,o={error:a,currentDestination:n};if(n==="CHROMECAST")this.destroyProvider(),this.params.dependencies.chromecastInitializer.stopMedia().then(()=>this.switchToNextProvider("CHROMECAST"),()=>this.params.dependencies.chromecastInitializer.disconnect());else{let u=a.category===_u.NETWORK,c=a.category===_u.FATAL,d=this.params.failoverHosts.length>0&&(this.failoverIndex===void 0||this.failoverIndex<this.params.failoverHosts.length-1),l=i<this.params.tuning.providerErrorLimit&&!c,p=this.videoCodecsIterator&&!this.videoCodecsIterator.isLast()&&this.params.tuning.dash.codecsPrioritizeEnabled,h=d&&!c&&(u&&t||!l);o=C(x({},o),{isNetworkError:u,isFatalError:c,haveFailoverHost:d,tryFailover:h,canReinitProvider:l}),l?(i++,this.reinitProvider()):h?(this.failoverIndex=this.failoverIndex===void 0?0:this.failoverIndex+1,this.reinitProvider()):p?this.switchToNextVideoCodec():(i=0,this.switchToNextProvider(n!=null?n:"SCREEN"))}a.traceAsLog?this.tracer.log("providerInfo",Up(o)):this.tracer.error("providerError",Up(o))})),e}};import{fromEvent as Ou,once as eN,combine as tN,Subscription as Nw,ValueSubject as jp,map as Fw,filter as iN,isNonNullable as Nu,now as Ke,safeStorage as Wp,getWindow as rN}from"@vkontakte/videoplayer-shared/es2015";var aN=5e3,Uw="one_video_throughput",qw="one_video_rtt",zp=()=>{let{navigator:s}=rN();if(s)return s.connection},Hw=()=>{var e;let s=(e=zp())==null?void 0:e.downlink;if(Nu(s)&&s!==10)return s*1e3},jw=()=>{var e;let s=(e=zp())==null?void 0:e.rtt;if(Nu(s)&&s!==3e3)return s},Ww=(s,e,t)=>{let i=t*8,r=i/s;return i/(r+e)},Qp=class s{constructor(e){this.subscription=new Nw;this.concurrentDownloads=new Set;var r,a;this.tuningConfig=e;let t=s.load(Uw)||(e.useBrowserEstimation?Hw():void 0)||aN,i=(a=(r=s.load(qw))!=null?r:e.useBrowserEstimation?jw():void 0)!=null?a:0;if(this.throughput$=new jp(t),this.rtt$=new jp(i),this.rttAdjustedThroughput$=new jp(Ww(t,i,e.rttPenaltyRequestSize)),this.throughput=Nt.getSmoothedValue(t,-1,e),this.rtt=Nt.getSmoothedValue(i,1,e),e.useBrowserEstimation){let n=()=>{let c=Hw();c&&this.throughput.next(c);let d=jw();Nu(d)&&this.rtt.next(d)},o=zp();o&&"onchange"in o&&this.subscription.add(Ou(o,"change").subscribe(n)),n()}this.subscription.add(this.throughput.smoothed$.subscribe(n=>{Wp.set(Uw,n.toFixed(0))})),this.subscription.add(this.rtt.smoothed$.subscribe(n=>{Wp.set(qw,n.toFixed(0))})),this.subscription.add(this.throughput.debounced$.pipe(Fw(n=>Math.round(n))).subscribe(this.throughput$)),this.subscription.add(this.rtt.debounced$.subscribe(this.rtt$)),this.subscription.add(tN({throughput:this.throughput.smoothed$,rtt:this.rtt.smoothed$}).pipe(Fw(({throughput:n,rtt:o})=>Ww(n,o,e.rttPenaltyRequestSize)),iN(n=>{let o=this.rttAdjustedThroughput$.getValue()||0;return Math.abs(n-o)/o>=e.changeThreshold})).subscribe(this.rttAdjustedThroughput$))}destroy(){this.concurrentDownloads.clear(),this.subscription.unsubscribe()}trackXHR(e){let t=0,i=Ke(),r=new Nw;switch(this.subscription.add(r),this.concurrentDownloads.add(e),e.readyState){case 4:break;case 3:case 2:r.add(Ou(e,"progress").pipe(eN()).subscribe(a=>{t=a.loaded,i=Ke()}));break;case 1:case 0:r.add(Ou(e,"loadstart").subscribe(()=>{t=0,i=Ke()}));break}r.add(Ou(e,"loadend").subscribe(a=>{if(e.status===200){let n=a.loaded,o=Ke(),u=n-t,c=o-i;this.addRawSpeed(u,c,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=Ke(),n=0,o=Ke(),u=d=>{this.concurrentDownloads.delete(e),i.releaseLock(),e.cancel(`Throughput Estimator error: ${d}`).catch(()=>{})},c=p=>y(this,[p],function*({done:d,value:l}){if(d)!t&&this.addRawSpeed(r,Ke()-a,1),this.concurrentDownloads.delete(e);else if(l){if(t){let h=Ke();if(h-o>this.tuningConfig.lowLatency.continuesByteSequenceInterval||h-a>this.tuningConfig.lowLatency.maxLastEvaluationTimeout){let m=o-a;m&&this.addRawSpeed(n,m,1,t),n=l.byteLength,a=Ke()}else n+=l.byteLength;o=Ke()}else r+=l.byteLength,n+=l.byteLength,n>=this.tuningConfig.streamMinSampleSize&&Ke()-o>=this.tuningConfig.streamMinSampleTime&&(this.addRawSpeed(n,Ke()-o,this.concurrentDownloads.size),n=0,o=Ke());yield i==null?void 0:i.read().then(c,u)}});this.concurrentDownloads.add(e),i==null||i.read().then(c,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){var i;let t=Wp.get(e);if(Nu(t))return(i=parseInt(t,10))!=null?i:void 0}},Qw=Qp;import{fillWithDefault as sN,VideoQuality as Fu}from"@vkontakte/videoplayer-shared/es2015";var nN={keepVideoElement:!1,clearVideoElementInnerHTML:!1,throughputEstimator:{type:"EmaAndMa",emaAlphaSlow:.2,emaAlphaFast:.7,emaAlpha:.45,basisTrendChangeCount:10,changeThreshold:.05,useBrowserEstimation:!0,rttPenaltyRequestSize:1*1024*1024,streamMinSampleSize:10*1024,streamMinSampleTime:300,deviationDepth:20,deviationFactor:.5,lowLatency:{continuesByteSequenceInterval:50,maxLastEvaluationTimeout:300}},autoTrackSelection:{maxBitrateFactorAtEmptyBuffer:4,bitrateFactorAtEmptyBuffer:2.8,minBitrateFactorAtEmptyBuffer:1.5,bitrateAudioFactorAtEmptyBuffer:10,maxBitrateFactorAtFullBuffer:3,bitrateFactorAtFullBuffer:2,minBitrateFactorAtFullBuffer:1,bitrateAudioFactorAtFullBuffer:7,minVideoAudioRatio:5,minAvailableThroughputAudioRatio:5,usePixelRatio:!0,pixelRatioMultiplier:void 0,pixelRatioLogBase:3,pixelRatioLogCoefficients:[1,0,1],limitByContainer:!0,maxContainerSizeFactor:2,containerSizeFactor:1.3,minContainerSizeFactor:1,lazyQualitySwitch:!0,minBufferToSwitchUp:.4,considerPlaybackRate:!1,trackCooldownIncreaseQuality:15e3,trackCooldownDecreaseQuality:3e3,backgroundVideoQualityLimit:Fu.Q_4320P,activeVideoAreaThreshold:.1,highQualityLimit:Fu.Q_720P,trafficSavingLimit:Fu.Q_480P},stallsManager:{enabled:!1,ignoreDynamicAbrForShortVideo:!1,stallDurationNoDataBeforeQualityDecrease:500,stallDurationToBeCount:100,stallCountBeforeQualityDecrease:3,resetQualityRestrictionTimeout:1e4,ignoreStallsOnSeek:!0,stallsMetricsHistoryLength:20,maxPossibleStallDuration:3e4,minTvtToBeCounted:120,maxTvtToBeCounted:10800,significantTvt:600,targetStallsDurationPerTvt:1,deviationStallsDurationPerTvt:.5,criticalStallsDurationPerTvt:6,abrAdjustingSpeed:.1,emaAlpha:.6,useTotalStallsDurationPerTvt:!0,useAverageStallsDurationPerTvt:!0,useEmaStallsDurationPerTvt:!0},droppedFramesChecker:{enabled:!1,percentLimit:.1,checkTime:1e3,countLimit:3,tickCountAfterQualityChange:5,qualityUpWaitingTime:5e3,minQualityBanLimit:Fu.Q_480P},dash:{forwardBufferTarget:6e4,forwardBufferTargetAuto:6e4,forwardBufferTargetManual:5*6e4,forwardBufferTargetPreload:5e3,seekBiasInTheEnd:2e3,maxSegmentDurationLeftToSelectNextSegment:3e3,minSafeBufferThreshold:.5,bufferPruningSafeZone:1e3,segmentRequestSize:1*1024*1024,maxVirtualBufferSize:250*1024*1024,virtualBufferPruneSize:100*1024*1024,representationSwitchForwardBufferGap:15e3,crashOnStallTimeout:25e3,crashOnStallTWithoutDataTimeout:5e3,enableSubSegmentBufferFeeding:!0,bufferEmptinessTolerance:100,useNewRepresentationSwitch:!1,useDelayedRepresentationSwitch:!1,useSmartRepresentationSwitch:!1,useFetchPriorityHints:!0,useAbortMSEFix:!1,enableBaseUrlSupport:!0,maxSegmentRetryCount:5,sourceOpenTimeout:1e3,vktvAbrThrottle:0,timeupdateEventTickThrottle:300,fetcherBufferOptimisation:!0,codecsPrioritizeEnabled:!1,usePersistentGaps:!1,abrThrottle:0,useVideoElementWaitingCurrentTimeReassign:!0,stallWatchdogInterval:100,liveUpdateInterval:1e3,liveStallReinitInterval:3e3,ignoreNetworkErrorsOnLoadInit:!1,bufferTolerance:100,actionTimeShiftFromSegment:500,tickMaintainInterval:1e3,minSafeBufferToPlay:1e4,useBufferHoldingOnlyOnStall:!0,useNewStallExitPolicy:!1,videoStreamRepresentaionsFilter:[]},dashCmafLive:{externalStopControl:!1,keepSilentStallWatchdogWhenNotActive:!1,maxActiveLiveOffset:1e4,normalizedTargetMinBufferSize:6e4,normalizedLiveMinBufferSize:5e3,normalizedActualBufferOffset:1e4,offsetCalculationError:3e3,maxLiveDuration:7200,catchupLiveForMutedInactiveTab:!0,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",chromecastPresentationApi:!1,useWebmBigRequest:!1,webmCodec:"vp9",androidPreferredFormat:"dash",iosPreferredFormat:"hls",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,useNewSwitchTo:!1,useDashProviderVirtual:!1,useDashProviderVirtualMobile:!1,useNewAutoSelectVideoTrack:!1,useSafariEndlessRequestBugfix:!0,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,useHlsLiveNewTextManager:!1,exposeInternalsToGlobal:!1,hlsLiveNewTextManagerDownloadThreshold:4e3,disableYandexPiP:!1,asyncResolveClientChecker:!1,autostartOnlyIfVisible:!1,changePlaybackStateToPausedWhenEnded:!1,suppressExceptionsInObservables:!0,devNullLogEnabled:!1,collectingDecodingInfoEnabled:!1,sendDashLiveDebug:!1,logDashLiveDebug:!1},zw=s=>sN(s,nN);import{assertNonNullable as Kp,combine as jt,ErrorCategory as Uu,filter as ve,filterChanged as K,fromEvent as Xp,isNonNullable as Zw,isNullable as gN,Logger as vN,map as X,mapTo as ex,merge as vi,now as qu,once as we,Subject as G,Subscription as tx,tap as Jp,ValueSubject as D,isHigher as SN,isInvariantQuality as ix,flattenObject as Si,throttle as Zp,getTraceSubscriptionMethod as rx,TracerFactory as yN,InternalsExposure as TN,getPlayerId as IN,devNull as Hu}from"@vkontakte/videoplayer-shared/es2015";import{merge as oN,map as uN,filter as Gw,isNonNullable as cN}from"@vkontakte/videoplayer-shared/es2015";var Gp=({seekState:s,position$:e})=>oN(s.stateChangeEnded$.pipe(uN(({to:t})=>{var i;return t.state==="none"?void 0:((i=t.position)!=null?i:NaN)/1e3}),Gw(cN)),e.pipe(Gw(()=>s.getState().state==="none")));import{assertNonNullable as lN}from"@vkontakte/videoplayer-shared/es2015";var Yw=s=>{let e=typeof s.container=="string"?document.getElementById(s.container):s.container;return lN(e,`Wrong container or containerId {${s.container}}`),e};import{filter as dN,once as pN}from"@vkontakte/videoplayer-shared/es2015";var Kw=(s,e,t,i)=>{s!==void 0&&e.getState()===void 0&&e.getPrevState()===void 0&&(t==null?void 0:t.getValue().length)===0?t.pipe(dN(r=>r.length>0),pN()).subscribe(r=>{r.find(i)&&e.startTransitionTo(s)}):(s===void 0||t!=null&&t.getValue().find(i))&&e.startTransitionTo(s)};var Xw=q(ti(),1);import{devNull as hN,getWindow as Yp}from"@vkontakte/videoplayer-shared/es2015";var Jw=()=>{let s="mediaCapabilities"in Yp().navigator?fN:mN,e=Yi(()=>y(null,null,function*(){let t=yield Promise.all((0,Xw.default)(bN).map(n=>y(null,[n],function*([r,a]){return{codec:r,supported:yield s(a)}}))),i=[O.browser.current,...t.map(r=>JSON.stringify(r))].slice(0,16);return hN.push("core",{key:"videoplayer_decoding_info",strings:i}),t}));return()=>Ki(e)},fN=s=>y(null,null,function*(){if(!s)return Promise.resolve({supported:!1});let e={["channels"in s?"audio":"video"]:s};return yield Yp().navigator.mediaCapabilities.decodingInfo(x({type:"media-source"},e))}),mN=s=>{var i;if(!s)return Promise.resolve({supported:!1});let e=Yp().document,t="channels"in s?e.createElement("audio"):e.createElement("video");return Promise.resolve({supported:t.canPlayType((i=s==null?void 0:s.contentType)!=null?i:"")==="probably"})},bN={H264:{contentType:'video/mp4; codecs="avc1.4D400C"',width:720,height:720,bitrate:2886,framerate:30},H265:{contentType:'video/mp4; codecs="hvc1.1.6.L123.B0"',width:720,height:720,bitrate:2886,framerate:30},VP8:{contentType:'video/webm; codecs="vp8"',width:720,height:720,bitrate:2886,framerate:30},VP9:{contentType:'video/webm; codecs="vp09.00.10.08"',width:720,height:720,bitrate:2886,framerate:30},AV1:{contentType:'video/mp4; codecs="av01.0.01M.08"',width:720,height:720,bitrate:2886,framerate:30},OPUS:{contentType:'audio/ogg; codecs="opus"',channels:"2",bitrate:128e3},AAC_LC:{contentType:'audio/mp4; codecs="mp4a.40.2"',channels:"2",bitrate:128e3},AC3:{contentType:'audio/mp4; codecs="ac-3"',channels:"6",bitrate:128e3},EAC3:{contentType:'audio/mp4; codecs="ec-3"',channels:"6",bitrate:128e3},AAC_HE_V1:{contentType:'audio/mp4; codecs="mp4a.40.5"',channels:"2",bitrate:128e3},AAC_HE_V2:{contentType:'audio/mp4; codecs="mp4a.40.29"',channels:"2",bitrate:128e3},AAC_xHE:{contentType:'audio/mp4; codecs="mp4a.40.42"',channels:"2",bitrate:128e3}};var ju=class{constructor(e={},t=yN.createRootTracer(!1),i){this.subscription=new tx;this.logger=new vN;this.abrLogger=this.logger.createComponentLog("ABR");this.internalsExposure=null;this.isPlaybackStarted=!1;this.hasLiveOffsetByPaused=new D(!1);this.hasLiveOffsetByPausedTimer=0;this.playerInitRequest=0;this.playerInited=new D(!1);this.wasSetStartedQuality=!1;this.desiredState={playbackState:new Q("stopped"),seekState:new Q({state:"none"}),volume:new Q({volume:1,muted:!1}),videoTrack:new Q(void 0),videoStream:new Q(void 0),audioStream:new Q(void 0),autoVideoTrackSwitching:new Q(!0),autoVideoTrackLimits:new Q({}),isLooped:new Q(!1),isLowLatency:new Q(!1),playbackRate:new Q(1),externalTextTracks:new Q([]),internalTextTracks:new Q([]),currentTextTrack:new Q(void 0),textTrackCuesSettings:new Q({}),cameraOrientation:new Q({x:0,y:0})};this.info={playbackState$:new D(void 0),position$:new D(0),duration$:new D(1/0),muted$:new D(!1),volume$:new D(1),availableVideoStreams$:new D([]),currentVideoStream$:new D(void 0),availableVideoTracks$:new D([]),availableQualities$:new D([]),availableQualitiesFps$:new D({}),currentQuality$:new D(void 0),isAutoQualityEnabled$:new D(!0),autoQualityLimitingAvailable$:new D(!1),autoQualityLimits$:new D({}),predefinedQualityLimitType$:new D("unknown"),availableAudioStreams$:new D([]),currentAudioStream$:new D(void 0),availableAudioTracks$:new D([]),isAudioAvailable$:new D(!0),currentPlaybackRate$:new D(1),currentBuffer$:new D({start:0,end:0}),currentNativeBuffer$:new D({start:0,end:0}),isBuffering$:new D(!0),isStalled$:new D(!1),isEnded$:new D(!1),isLooped$:new D(!1),isLive$:new D(void 0),isLiveEnded$:new D(null),canPlayLiveTailBuffer$:new D(!1),canChangePlaybackSpeed$:new D(void 0),atLiveEdge$:new D(void 0),atLiveDurationEdge$:new D(void 0),liveTime$:new D(void 0),liveBufferTime$:new D(void 0),liveLatency$:new D(void 0),currentFormat$:new D(void 0),availableTextTracks$:new D([]),currentTextTrack$:new D(void 0),throughputEstimation$:new D(void 0),rttEstimation$:new D(void 0),videoBitrate$:new D(void 0),hostname$:new D(void 0),httpConnectionType$:new D(void 0),httpConnectionReused$:new D(void 0),httpConnectionMetrics$:new D(void 0),httpDownloadMetrics$:new D(void 0),surface$:new D("none"),chromecastState$:new D("NOT_AVAILABLE"),chromecastDeviceName$:new D(void 0),intrinsicVideoSize$:new D(void 0),availableSources$:new D(void 0),is3DVideo$:new D(!1),currentVideoSegmentLength$:new D(0),currentAudioSegmentLength$:new D(0)};this.events={inited$:new G,ready$:new G,started$:new G,playing$:new G,paused$:new G,stopped$:new G,willReady$: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,manifestRequested$:new G,firstBytesManifest$:new G,manifestReceived$:new G,firstBytesRequested$:new G,firstBytesReceived$: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 D(void 0),enableDebugTelemetry$:new D(!1),dumpTelemetry:Dy,getCurrentTime$:new D(null)};this.initLogs(),this.tuning=zw(e),this.tracer=t,this.tuning.suppressExceptionsInObservables&&((0,eh.default)(this.info).forEach(a=>a.setSuppressErrors(!0)),(0,eh.default)(this.events).forEach(a=>a.setSuppressErrors(!0)));let r={receiverApplicationId:this.tuning.chromecastReceiverId,isDisabled:this.tuning.disableChromecast,dependencies:{logger:this.logger}};if(this.chromecastInitializer=this.tuning.chromecastPresentationApi?new Lt(r):new On(r),this.throughputEstimator=new Qw(this.tuning.throughputEstimator),e.exposeInternalsToGlobal&&(this.internalsExposure=new TN("core",IN(i==null?void 0:i.playerId)),this.internalsExposure.expose({player:this})),this.initChromecastSubscription(),this.initDesiredStateSubscriptions(),this.devNullLog=i==null?void 0:i.onDevNullLog,Hu.create("core"),Proxy&&Reflect)return new Proxy(this,{get:(a,n,o)=>{let u=Reflect.get(a,n,o);return typeof u!="function"?u:(...c)=>{try{return u.apply(a,c)}catch(d){let l=c.map(f=>JSON.stringify(f,(m,g)=>{let v=typeof g;return(0,ax.default)(["number","string","boolean"],v)?g:g===null?null:`<${v}>`})),p=`Player.${String(n)}`,h=`Exception calling ${p} (${l.join(", ")})`;throw this.events.fatalError$.next({id:p,category:Uu.WTF,message:h,thrown:d}),d}}}})}initVideo(e){var a;this.config=e,(a=this.internalsExposure)==null||a.expose({config:e,logger:this.logger,tuning:this.tuning}),this.setMuted(this.tuning.isAudioDisabled);let t=()=>{var c,d,l;let u=e,{container:n}=u,o=Xt(u,["container"]);this.tracer.log("initVideo",Si(o)),this.domContainer=Yw(e),this.chromecastInitializer.contentId=(c=e.meta)==null?void 0:c.videoId,this.providerContainer=new hn({sources:e.sources,meta:(d=e.meta)!=null?d:{},failoverHosts:(l=e.failoverHosts)!=null?l:[],container:this.domContainer,desiredState:this.desiredState,dependencies:{throughputEstimator:this.throughputEstimator,chromecastInitializer:this.chromecastInitializer,tracer:this.tracer,logger:this.logger,abrLogger:this.abrLogger},tuning:this.tuning,volumeMultiplier:e.volumeMultiplier,panelSize:e.panelSize}),this.initProviderContainerSubscription(this.providerContainer),this.initStartingVideoTrack(this.providerContainer),this.initTracerSubscription(),this.providerContainer.init(),this.setLiveLowLatency(this.tuning.dashCmafLive.lowLatency.isActiveOnDefault),this.initDebugTelemetry(),this.initWakeLock(),this.playerInited.next(!0),this.devNullLog&&this.tuning.devNullLogEnabled?(Hu.subscribe("core",this.devNullLog),this.tuning.collectingDecodingInfoEnabled&&(this.collectDecodingInfoDestroyCb=Jw())):Hu.destroy("core")},i=()=>{this.tuning.autostartOnlyIfVisible&&window.requestAnimationFrame?this.playerInitRequest=window.requestAnimationFrame(()=>t()):t()},r=()=>{this.tuning.asyncResolveClientChecker?O.isInited$.pipe(ve(n=>!!n),we()).subscribe(()=>{console.log("Core SDK async start"),i()}):i()};return this.isNotActiveTabCase()?(this.tracer.log("request play from hidden tab"),Xp(document,"visibilitychange").pipe(we()).subscribe(r)):r(),this}destroy(){var e,t,i;this.tracer.log("destroy"),window.clearTimeout(this.hasLiveOffsetByPausedTimer),this.playerInitRequest&&window.cancelAnimationFrame(this.playerInitRequest),this.events.willDestruct$.next(),this.stop(),(e=this.providerContainer)==null||e.destroy(),this.throughputEstimator.destroy(),this.chromecastInitializer.destroy(),this.subscription.unsubscribe(),this.tracer.end(),(t=this.internalsExposure)==null||t.destroy(),Hu.destroy("core"),(i=this.collectDecodingInfoDestroyCb)==null||i.call(this)}waitInit(e){this.playerInited.getValue()?e():this.subscription.add(this.playerInited.pipe(ve(t=>!!t),we()).subscribe(e))}prepare(){return this.waitInit(()=>{let e=this.desiredState.playbackState;this.tracer.log("prepare",{currentPlayBackState:e.getState()}),e.getState()==="stopped"&&e.startTransitionTo("ready")}),this}play(){return this.waitInit(()=>{let e=this.desiredState.playbackState;this.tracer.log("play",{currentPlayBackState:e.getState()}),e.getState()!=="playing"&&e.startTransitionTo("playing")}),this}pause(){return this.waitInit(()=>{let e=this.desiredState.playbackState;this.tracer.log("pause",{currentPlayBackState:e.getState()}),e.getState()!=="paused"&&e.startTransitionTo("paused")}),this}stop(){return this.waitInit(()=>{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.waitInit(()=>{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.waitInit(()=>{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.waitInit(()=>{var o;let i=this.desiredState.volume,r=i.getTransition(),a=(o=r==null?void 0:r.to.muted)!=null?o:this.info.muted$.getValue(),n=t!=null?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 instanceof Lt)?this.chromecastInitializer.setVolume(e):i.startTransitionTo({volume:e,muted:n})}),this}setMuted(e,t=!1){return this.waitInit(()=>{var o;let i=this.desiredState.volume,r=this.tuning.isAudioDisabled&&!t||e,a=i.getTransition(),n=(o=a==null?void 0:a.to.volume)!=null?o:this.info.volume$.getValue();this.tracer.log("setMuted",{isMuted:e,nextMuted:r,volume:n,isAudioDisabled:this.tuning.isAudioDisabled,chromecastState:this.chromecastInitializer.castState$.getValue()}),this.chromecastInitializer.castState$.getValue()==="CONNECTED"&&!(this.chromecastInitializer instanceof Lt)?this.chromecastInitializer.setMuted(r):i.startTransitionTo({volume:n,muted:r})}),this}setVideoStream(e){return this.waitInit(()=>{this.desiredState.videoStream.startTransitionTo(e)}),this}setAudioStream(e){return this.waitInit(()=>{this.desiredState.audioStream.startTransitionTo(e)}),this}setQuality(e){return this.waitInit(()=>{Kp(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(ve(i=>i.length>0),we()).subscribe(i=>{this.setVideoTrackIdByQuality(i,e)}):this.explicitInitialQuality=e:t.length>0&&this.setVideoTrackIdByQuality(t,e)}),this}setAutoQuality(e){return this.waitInit(()=>{this.tracer.log("setAutoQuality",{enable:e}),this.desiredState.autoVideoTrackSwitching.startTransitionTo(e)}),this}setAutoQualityLimits(e){return this.waitInit(()=>{this.tracer.log("setAutoQualityLimits",Si(e)),this.desiredState.autoVideoTrackLimits.startTransitionTo(e)}),this}setPredefinedQualityLimits(e){return this.waitInit(()=>{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.waitInit(()=>{this.tracer.log("setPlaybackRate",{playbackRate:e}),this.desiredState.playbackRate.startTransitionTo(e)}),this}setExternalTextTracks(e){return this.waitInit(()=>{e.length&&this.tracer.log("setExternalTextTracks",Si(e)),this.desiredState.externalTextTracks.startTransitionTo(e.map(t=>x({type:"external"},t)))}),this}selectTextTrack(e){return this.waitInit(()=>{var t;Kw(e,this.desiredState.currentTextTrack,(t=this.providerContainer)==null?void 0:t.providerOutput.availableTextTracks$,i=>i.id===e),this.tracer.log("selectTextTrack",{textTrackId:e})}),this}setTextTrackCueSettings(e){return this.waitInit(()=>{this.tracer.log("setTextTrackCueSettings",x({},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.waitInit(()=>{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.waitInit(()=>{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.waitInit(()=>{let t=this.getScene3D();this.tracer.log("stopCameraManualRotation",{isScene3DAvailable:!!t,immediate:e}),t&&t.stopCameraManualRotation(e)}),this}moveCameraFocusPX(e,t){return this.waitInit(()=>{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.waitInit(()=>{let e=this.getScene3D();e&&e.holdCamera()}),this}releaseCamera(){return this.waitInit(()=>{let e=this.getScene3D();e&&e.releaseCamera()}),this}getExactTime(){if(!this.providerContainer)return 0;let e=this.providerContainer.providerOutput.element$.getValue();if(gN(e))return this.info.position$.getValue();let t=this.desiredState.seekState.getState(),i=t.state==="none"?void 0:t.position;return Zw(i)?i/1e3:e.currentTime}getAllLogs(){return this.logger.getAllLogs()}getScene3D(){var t,i;let e=(t=this.providerContainer)==null?void 0:t.current$.getValue();if((i=e==null?void 0:e.provider)!=null&&i.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(vi(this.desiredState.playbackState.stateChangeStarted$,this.desiredState.playbackState.forceChanged$).pipe(X(e=>e.to)).subscribe(this.info.playbackState$)).add(this.desiredState.isLooped.stateChangeEnded$.pipe(X(e=>e.to)).subscribe(this.info.isLooped$)).add(this.desiredState.playbackRate.stateChangeEnded$.pipe(X(e=>e.to)).subscribe(this.info.currentPlaybackRate$)).add(this.desiredState.autoVideoTrackSwitching.stateChangeEnded$.pipe(X(e=>e.to)).subscribe(this.info.isAutoQualityEnabled$)).add(this.desiredState.autoVideoTrackLimits.stateChangeEnded$.pipe(X(e=>e.to)).subscribe(e=>{this.info.autoQualityLimits$.next(e);let{highQualityLimit:t,trafficSavingLimit:i}=this.tuning.autoTrackSelection;this.info.predefinedQualityLimitType$.next(Vy(e,t,i))})),this.subscription.add(this.desiredState.playbackState.stateChangeStarted$.pipe(ve(({from:e})=>e==="stopped"),we()).subscribe(()=>{this.initedAt=qu(),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"ready":this.events.willReady$.next();break;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",Si(n)),n.state==="requested"?this.desiredState.seekState.setState(C(x({},n),{state:"applying"})):this.events.managedError$.next({id:`WillSeekIn${n.state}`,category:Uu.WTF,message:"Received unexpeceted willSeek$"})})).add(e.providerOutput.soundProhibitedEvent$.pipe(we()).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",Si(n)),n.state==="applying"&&(this.desiredState.seekState.setState({state:"none"}),this.events.seeked$.next())})).add(e.current$.pipe(X(n=>n.type)).subscribe(this.info.currentFormat$)).add(e.current$.pipe(X(n=>n.destination),K()).subscribe(()=>this.isPlaybackStarted=!1)).add(e.providerOutput.availableVideoStreams$.subscribe(this.info.availableVideoStreams$)).add(e.providerOutput.availableVideoTracks$.subscribe(this.info.availableVideoTracks$)).add(jt({availableVideoTracks:e.providerOutput.availableVideoTracks$,currentVideoStream:e.providerOutput.currentVideoStream$}).pipe(X(({availableVideoTracks:n,currentVideoStream:o})=>n.filter(u=>o?o.id===u.streamId:!0).map(({quality:u})=>u).sort((u,c)=>ix(u)?1:ix(c)?-1:SN(c,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(K()).subscribe(this.info.isAudioAvailable$)).add(e.providerOutput.currentVideoTrack$.pipe(ve(n=>Zw(n))).subscribe(n=>{this.info.currentQuality$.next(n==null?void 0:n.quality),this.info.videoBitrate$.next(n==null?void 0:n.bitrate)})).add(e.providerOutput.currentVideoSegmentLength$.pipe(K((n,o)=>Math.round(n)===Math.round(o))).subscribe(this.info.currentVideoSegmentLength$)).add(e.providerOutput.currentAudioSegmentLength$.pipe(K((n,o)=>Math.round(n)===Math.round(o))).subscribe(this.info.currentAudioSegmentLength$)).add(e.providerOutput.hostname$.pipe(K()).subscribe(this.info.hostname$)).add(e.providerOutput.httpConnectionType$.pipe(K()).subscribe(this.info.httpConnectionType$)).add(e.providerOutput.httpConnectionReused$.pipe(K()).subscribe(this.info.httpConnectionReused$)).add(e.providerOutput.httpConnectionMetrics$.pipe(K()).subscribe(this.info.httpConnectionMetrics$)).add(e.providerOutput.httpDownloadMetrics$.pipe(K()).subscribe(this.info.httpDownloadMetrics$)).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!=null?n:{})})).add(e.providerOutput.currentBuffer$.pipe(X(n=>n?{start:n.from,end:n.to}:{start:0,end:0})).subscribe(this.info.currentBuffer$)).add(e.providerOutput.currentNativeBuffer$.pipe(X(n=>n?{start:n.from,end:n.to}:{start:0,end:0})).subscribe(this.info.currentNativeBuffer$)).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(Jp(n=>n&&this.stop())).subscribe(this.info.isLiveEnded$)).add(e.providerOutput.canPlayLiveTailBuffer$.subscribe(this.info.canPlayLiveTailBuffer$)).add(e.providerOutput.canChangePlaybackSpeed$.subscribe(this.info.canChangePlaybackSpeed$)).add(e.providerOutput.liveTime$.pipe(K()).subscribe(this.info.liveTime$)).add(e.providerOutput.liveBufferTime$.subscribe(this.info.liveBufferTime$)).add(e.providerOutput.liveLatency$.subscribe(this.info.liveLatency$)).add(jt({hasLiveOffsetByPaused:vi(this.desiredState.playbackState.stateChangeStarted$,this.desiredState.playbackState.forceChanged$).pipe(X(n=>n.to),K(),X(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(jt({atLiveEdge:jt({isLive:e.providerOutput.isLive$,isLowLatency:e.providerOutput.isLowLatency$,position:Gp({seekState:this.desiredState.seekState,position$:e.providerOutput.position$})}).pipe(X(({isLive:n,position:o,isLowLatency:u})=>{let c=this.getActiveLiveDelay(u);return n&&Math.abs(o)<c/1e3}),K(),Jp(n=>n&&this.setPlaybackRate(1))),hasPausedTimeoutCase:this.hasLiveOffsetByPaused}).pipe(X(({atLiveEdge:n,hasPausedTimeoutCase:o})=>n&&!o)).subscribe(this.info.atLiveEdge$)).add(jt({isLive:e.providerOutput.isLive$,position:e.providerOutput.position$,duration:e.providerOutput.duration$}).pipe(X(({isLive:n,position:o,duration:u})=>n&&(Math.abs(u)-Math.abs(o))*1e3<this.tuning.live.activeLiveDelay),K(),Jp(n=>n&&this.setPlaybackRate(1))).subscribe(this.info.atLiveDurationEdge$)).add(e.providerOutput.volume$.pipe(X(n=>n.muted),K()).subscribe(this.info.muted$)).add(e.providerOutput.volume$.pipe(X(n=>n.volume),K()).subscribe(this.info.volume$)).add(Gp({seekState:this.desiredState.seekState,position$:e.providerOutput.position$}).subscribe(this.info.position$)).add(e.providerOutput.seekedEvent$.subscribe(()=>{this.info.isEnded$.getValue()&&this.tuning.changePlaybackStateToPausedWhenEnded&&this.play()})).add(vi(e.providerOutput.endedEvent$.pipe(ex(!0)),e.providerOutput.seekedEvent$.pipe(ex(!1))).pipe(K()).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(X(n=>({id:n?`No${n}`:"NoProviders",category:Uu.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.manifestRequested$.pipe(we()).subscribe(this.events.manifestRequested$)).add(e.providerOutput.firstBytesManifest$.pipe(we()).subscribe(this.events.firstBytesManifest$)).add(e.providerOutput.manifestReceived$.pipe(we()).subscribe(this.events.manifestReceived$)).add(e.providerOutput.firstBytesRequested$.pipe(we()).subscribe(this.events.firstBytesRequested$)).add(e.providerOutput.firstBytesReceived$.pipe(we()).subscribe(this.events.firstBytesReceived$)).add(e.providerOutput.firstBytesEvent$.pipe(we(),X(n=>n!=null?n:qu()-this.initedAt)).subscribe(this.events.firstBytes$)).add(e.providerOutput.loadedMetadataEvent$.subscribe(this.events.loadedMetadata$)).add(e.providerOutput.firstFrameEvent$.pipe(we(),X(()=>qu()-this.initedAt)).subscribe(this.events.firstFrame$)).add(e.providerOutput.canplay$.pipe(we(),X(()=>qu()-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 D(!1);this.subscription.add(e.providerOutput.seekedEvent$.subscribe(()=>t.next(!1))).add(e.providerOutput.willSeekEvent$.subscribe(()=>t.next(!0)));let i=new D(!0);this.subscription.add(e.current$.subscribe(()=>i.next(!0))).add(this.desiredState.playbackState.stateChangeEnded$.pipe(ve(({to:n})=>n==="playing"),we()).subscribe(()=>i.next(!1)));let r=0,a=vi(e.providerOutput.isBuffering$,t,i).pipe(X(()=>{let n=e.providerOutput.isBuffering$.getValue(),o=t.getValue()||i.getValue();return n&&!o}),K());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(vi(e.providerOutput.canplay$,e.providerOutput.firstFrameEvent$,e.providerOutput.firstBytesEvent$).subscribe(()=>{let n=e.providerOutput.element$.getValue();this.setIntrinsicVideoSize({width:n==null?void 0:n.videoWidth,height:n==null?void 0:n.videoHeight})})).add(e.providerOutput.currentVideoTrack$.subscribe(n=>{var u,c;let o=e.providerOutput.element$.getValue();this.setIntrinsicVideoSize({width:(u=n==null?void 0:n.size)==null?void 0:u.width,height:(c=n==null?void 0:n.size)==null?void 0:c.height},{width:o==null?void 0:o.videoWidth,height:o==null?void 0:o.videoHeight})})).add(e.providerOutput.is3DVideo$.subscribe(this.info.is3DVideo$)),this.subscription.add(vi(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(),c=e.providerOutput.elementVisible$.getValue(),d=this.chromecastInitializer.castState$.getValue(),l;d==="CONNECTED"?l="second_screen":u?c?n?l="pip":o?l="fullscreen":l="inline":l="invisible":l="none",this.info.surface$.getValue()!==l&&this.info.surface$.next(l)}))}initChromecastSubscription(){this.subscription.add(this.chromecastInitializer.castState$.subscribe(this.info.chromecastState$)),this.subscription.add(this.chromecastInitializer.connection$.pipe(X(e=>e==null?void 0:e.castDevice.friendlyName)).subscribe(this.info.chromecastDeviceName$)),this.subscription.add(this.chromecastInitializer.errorEvent$.subscribe(this.events.managedError$))}initStartingVideoTrack(e){let t=new tx;this.subscription.add(t),this.subscription.add(e.current$.pipe(K((i,r)=>i.provider===r.provider)).subscribe(()=>{t.unsubscribe(),t.add(e.providerOutput.availableVideoTracks$.pipe(ve(i=>i.length>0),we()).subscribe(i=>{this.setStartingVideoTrack(i)}))}))}setStartingVideoTrack(e){var r;let t;this.wasSetStartedQuality=!0;let i=(r=this.explicitInitialQuality)!=null?r:this.info.currentQuality$.getValue();i&&(t=e.find(({quality:a})=>a===i),t||this.setAutoQuality(!0)),t||(t=xt(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(vi(this.desiredState.videoTrack.stateChangeStarted$.pipe(X(e=>({transition:e,entity:"quality",type:"start"}))),this.desiredState.videoTrack.stateChangeEnded$.pipe(X(e=>({transition:e,entity:"quality",type:"end"}))),this.desiredState.autoVideoTrackSwitching.stateChangeStarted$.pipe(X(e=>({transition:e,entity:"autoQualityEnabled",type:"start"}))),this.desiredState.autoVideoTrackSwitching.stateChangeEnded$.pipe(X(e=>({transition:e,entity:"autoQualityEnabled",type:"end"}))),this.desiredState.seekState.stateChangeStarted$.pipe(X(e=>({transition:e,entity:"seekState",type:"start"}))),this.desiredState.seekState.stateChangeEnded$.pipe(X(e=>({transition:e,entity:"seekState",type:"end"}))),this.desiredState.playbackState.stateChangeStarted$.pipe(X(e=>({transition:e,entity:"playbackState",type:"start"}))),this.desiredState.playbackState.stateChangeEnded$.pipe(X(e=>({transition:e,entity:"playbackState",type:"end"})))).pipe(X(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(){var t;let e=(t=this.providerContainer)==null?void 0:t.providerOutput;Kp(this.providerContainer),Kp(e),Cy(),this.experimental.enableDebugTelemetry$.next(this.tuning.enableTelemetryAtStart),[this.experimental.enableDebugTelemetry$.subscribe(i=>Ly(i)),this.providerContainer.current$.subscribe(({type:i})=>za("provider",i)),e.duration$.subscribe(i=>za("duration",i)),e.availableVideoTracks$.pipe(ve(i=>!!i.length),we()).subscribe(i=>za("tracks",i)),this.events.fatalError$.subscribe(new De("fatalError")),this.events.managedError$.subscribe(new De("managedError")),e.position$.subscribe(new De("position")),e.currentVideoTrack$.pipe(X(i=>i==null?void 0:i.quality)).subscribe(new De("quality")),this.info.currentBuffer$.subscribe(new De("buffer")),e.isBuffering$.subscribe(new De("isBuffering"))].forEach(i=>this.subscription.add(i)),za("codecs",O.video.supportedCodecs)}initTracerSubscription(){let e=rx(this.tracer.log.bind(this.tracer)),t=rx(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(K()).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(jt({currentQuality:this.info.currentQuality$,videoBitrate:this.info.videoBitrate$}).pipe(ve(({currentQuality:i,videoBitrate:r})=>!!i&&!!r),K((i,r)=>i.currentQuality===r.currentQuality)).subscribe(e("currentVideoTrack"))).add(this.info.currentVideoSegmentLength$.pipe(ve(i=>i>0),K()).subscribe(e("currentVideoSegmentLength"))).add(this.info.currentAudioSegmentLength$.pipe(ve(i=>i>0),K()).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(jt({currentBuffer:this.info.currentBuffer$.pipe(ve(i=>i.end>0),K((i,r)=>i.end===r.end&&i.start===r.start)),position:this.info.position$.pipe(K())}).pipe(Zp(1e3)).subscribe(e("currentBufferAndPosition"))).add(this.info.duration$.pipe(K()).subscribe(e("duration"))).add(this.info.isBuffering$.subscribe(e("isBuffering"))).add(this.info.isLive$.pipe(K()).subscribe(e("isLive"))).add(this.info.canChangePlaybackSpeed$.pipe(K()).subscribe(e("canChangePlaybackSpeed"))).add(jt({liveTime:this.info.liveTime$,liveBufferTime:this.info.liveBufferTime$,position:this.info.position$}).pipe(ve(({liveTime:i,liveBufferTime:r})=>!!i&&!!r),Zp(1e3)).subscribe(e("liveBufferAndPosition"))).add(this.info.atLiveEdge$.pipe(K(),ve(i=>i===!0)).subscribe(e("atLiveEdge"))).add(this.info.atLiveDurationEdge$.pipe(K(),ve(i=>i===!0)).subscribe(e("atLiveDurationEdge"))).add(this.info.muted$.pipe(K()).subscribe(e("muted"))).add(this.info.volume$.pipe(K()).subscribe(e("volume"))).add(this.info.isEnded$.pipe(K(),ve(i=>i===!0)).subscribe(e("isEnded"))).add(this.info.availableSources$.subscribe(e("availableSources"))).add(jt({throughputEstimation:this.info.throughputEstimation$,rtt:this.info.rttEstimation$}).pipe(ve(({throughputEstimation:i,rtt:r})=>!!i&&!!r),Zp(3e3)).subscribe(e("throughputEstimation"))).add(this.info.isStalled$.subscribe(e("isStalled"))).add(this.info.is3DVideo$.pipe(K(),ve(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==null||e.release(),e=void 0},i=()=>y(this,null,function*(){t(),e=yield window.navigator.wakeLock.request("screen").catch(r=>{r instanceof DOMException&&r.name==="NotAllowedError"||this.events.managedError$.next({id:"WakeLock",category:Uu.DOM,message:String(r)})})});this.subscription.add(vi(Xp(document,"visibilitychange"),Xp(document,"fullscreenchange"),this.desiredState.playbackState.stateChangeEnded$).subscribe(()=>{let r=document.visibilityState==="visible",a=this.desiredState.playbackState.getState()==="playing",n=!!e&&!(e!=null&&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",Si({quality:t,availableTracks:Si(e),track:Si(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&&!es()}};import{Subscription as Hie,Observable as jie,Subject as Wie,ValueSubject as Qie,VideoQuality as zie}from"@vkontakte/videoplayer-shared/es2015";var Gie=`@vkontakte/videoplayer-core@${qh}`;export{ha as ChromecastState,Zu as HttpConnectionType,jie as Observable,$e as PlaybackState,ju as Player,Rn as PredefinedQualityLimits,Gie as SDK_VERSION,Wie as Subject,Hie as Subscription,ec as Surface,qh as VERSION,Qie as ValueSubject,Ju as VideoCodec,Mt as VideoFormat,zie as VideoQuality,ru as WebmCodecStrategy,OA as areValidLiveRecordSources,O as clientChecker,Bi as isMobile};
130
+ ===== DASH_LIVE DEBUG END ====`),n){let t=e.reduce((e,{time:t,data:n,stack:r})=>{let i=ba.default(n).map(([e,t])=>`${e}:${t}`).join(`,`);return e+=`${t}: ${i}${r?`: ${r}`:``};`,e},``);yv.push(`core`,{key:`vp_dash_live_debug`,strings:[t]})}};return e.add(this.providerError$.subscribe(e=>{e.id.startsWith(`ProviderHangup`)&&(z({m:`final.0`,e:e.id}),r())})).add(this.noAvailableProvidersError$.subscribe(()=>{z({m:`final.1`}),r()})),e.add(this.providerError$.subscribe(e=>{let r=this.current$.getValue().destination,i={error:e,currentDestination:r};if(r===`CHROMECAST`)this.destroyProvider(),this.params.dependencies.chromecastInitializer.stopMedia().then(()=>this.switchToNextProvider(`CHROMECAST`),()=>this.params.dependencies.chromecastInitializer.disconnect());else{let a=e.category===uv.NETWORK,s=e.category===uv.FATAL,c=this.params.failoverHosts.length>0&&(this.failoverIndex===void 0||this.failoverIndex<this.params.failoverHosts.length-1),l=n<this.params.tuning.providerErrorLimit&&!s,u=this.videoCodecsIterator&&!this.videoCodecsIterator.isLast()&&this.params.tuning.dash.codecsPrioritizeEnabled,d=c&&!s&&(a&&t||!l);i=o(o({},i),{},{isNetworkError:a,isFatalError:s,haveFailoverHost:c,tryFailover:d,canReinitProvider:l}),l?(n++,this.reinitProvider()):d?(this.failoverIndex=this.failoverIndex===void 0?0:this.failoverIndex+1,this.reinitProvider()):u?this.switchToNextVideoCodec():(n=0,this.switchToNextProvider(r??`SCREEN`))}e.traceAsLog?this.tracer.log(`providerInfo`,vv(i)):this.tracer.error(`providerError`,vv(i))})),e}}import{fromEvent as Fv,once as Iv,combine as Lv,Subscription as Rv,ValueSubject as zv,map as Bv,filter as Vv,isNonNullable as Hv,now as Uv,safeStorage as Wv,getWindow as Gv}from"@vkontakte/videoplayer-shared/es2015";var Kv=5e3,qv=`one_video_throughput`,Jv=`one_video_rtt`,Yv=()=>{let{navigator:e}=Gv();if(e)return e.connection},Xv=()=>{let e=Yv()?.downlink;if(Hv(e)&&e!==10)return e*1e3},Zv=()=>{let e=Yv()?.rtt;if(Hv(e)&&e!==3e3)return e},Qv=(e,t,n)=>{let r=n*8;return r/(r/e+t)};class $v{constructor(e){i(this,`throughput`,void 0),i(this,`rtt`,void 0),i(this,`subscription`,new Rv),i(this,`tuningConfig`,void 0),i(this,`concurrentDownloads`,new Set),i(this,`throughput$`,void 0),i(this,`rtt$`,void 0),i(this,`rttAdjustedThroughput$`,void 0),this.tuningConfig=e;let t=$v.load(qv)||(e.useBrowserEstimation?Xv():void 0)||Kv,n=$v.load(Jv)??(e.useBrowserEstimation?Zv():void 0)??0;if(this.throughput$=new zv(t),this.rtt$=new zv(n),this.rttAdjustedThroughput$=new zv(Qv(t,n,e.rttPenaltyRequestSize)),this.throughput=Em.getSmoothedValue(t,-1,e),this.rtt=Em.getSmoothedValue(n,1,e),e.useBrowserEstimation){let e=()=>{let e=Xv();e&&this.throughput.next(e);let t=Zv();Hv(t)&&this.rtt.next(t)},t=Yv();t&&`onchange`in t&&this.subscription.add(Fv(t,`change`).subscribe(e)),e()}this.subscription.add(this.throughput.smoothed$.subscribe(e=>{Wv.set(qv,e.toFixed(0))})),this.subscription.add(this.rtt.smoothed$.subscribe(e=>{Wv.set(Jv,e.toFixed(0))})),this.subscription.add(this.throughput.debounced$.pipe(Bv(e=>Math.round(e))).subscribe(this.throughput$)),this.subscription.add(this.rtt.debounced$.subscribe(this.rtt$)),this.subscription.add(Lv({throughput:this.throughput.smoothed$,rtt:this.rtt.smoothed$}).pipe(Bv(({throughput:t,rtt:n})=>Qv(t,n,e.rttPenaltyRequestSize)),Vv(t=>{let n=this.rttAdjustedThroughput$.getValue()||0;return Math.abs(t-n)/n>=e.changeThreshold})).subscribe(this.rttAdjustedThroughput$))}destroy(){this.concurrentDownloads.clear(),this.subscription.unsubscribe()}trackXHR(e){let t=0,n=Uv(),r=new Rv;switch(this.subscription.add(r),this.concurrentDownloads.add(e),e.readyState){case 4:break;case 3:case 2:r.add(Fv(e,`progress`).pipe(Iv()).subscribe(e=>{t=e.loaded,n=Uv()}));break;case 1:case 0:r.add(Fv(e,`loadstart`).subscribe(()=>{t=0,n=Uv()}));break}r.add(Fv(e,`loadend`).subscribe(i=>{if(e.status===200){let e=i.loaded,r=Uv(),a=e-t,o=r-n;this.addRawSpeed(a,o,1)}this.concurrentDownloads.delete(e),r.unsubscribe()}))}trackStream(e,t=!1){var n=this;let r=e.getReader();if(!r){e.cancel(`Could not get reader`);return}let i=0,o=Uv(),s=0,c=Uv(),l=t=>{this.concurrentDownloads.delete(e),r.releaseLock(),e.cancel(`Throughput Estimator error: ${t}`).catch(()=>{})},u=function(){var d=a(function*({done:a,value:d}){if(a)!t&&n.addRawSpeed(i,Uv()-o,1),n.concurrentDownloads.delete(e);else if(d){if(t){let e=Uv();if(e-c>n.tuningConfig.lowLatency.continuesByteSequenceInterval||e-o>n.tuningConfig.lowLatency.maxLastEvaluationTimeout){let e=c-o;e&&n.addRawSpeed(s,e,1,t),s=d.byteLength,o=Uv()}else s+=d.byteLength;c=Uv()}else i+=d.byteLength,s+=d.byteLength,s>=n.tuningConfig.streamMinSampleSize&&Uv()-c>=n.tuningConfig.streamMinSampleTime&&(n.addRawSpeed(s,Uv()-c,n.concurrentDownloads.size),s=0,c=Uv());yield r?.read().then(u,l)}});return function(e){return d.apply(this,arguments)}}();this.concurrentDownloads.add(e),r?.read().then(u,l)}addRawSpeed(e,t,n=1,r=!1){if($v.sanityCheck(e,t,r)){let r=e*8/t;this.throughput.next(r*n)}}addRawThroughput(e){this.throughput.next(e)}addRawRtt(e){this.rtt.next(e)}static sanityCheck(e,t,n=!1){let r=e*8/t;return!(!r||!isFinite(r)||r>1e6||r<30||n&&e<1e4||!n&&e<10*1024||!n&&t<=20)}static load(e){let t=Wv.get(e);if(Hv(t))return parseInt(t,10)??void 0}}var ey=$v;import{fillWithDefault as ty,VideoQuality as ny}from"@vkontakte/videoplayer-shared/es2015";var ry={keepVideoElement:!1,clearVideoElementInnerHTML:!1,throughputEstimator:{type:`EmaAndMa`,emaAlphaSlow:.2,emaAlphaFast:.7,emaAlpha:.45,basisTrendChangeCount:10,changeThreshold:.05,useBrowserEstimation:!0,rttPenaltyRequestSize:1*1024*1024,streamMinSampleSize:10*1024,streamMinSampleTime:300,deviationDepth:20,deviationFactor:.5,lowLatency:{continuesByteSequenceInterval:50,maxLastEvaluationTimeout:300}},autoTrackSelection:{maxBitrateFactorAtEmptyBuffer:4,bitrateFactorAtEmptyBuffer:2.8,minBitrateFactorAtEmptyBuffer:1.5,bitrateAudioFactorAtEmptyBuffer:10,maxBitrateFactorAtFullBuffer:3,bitrateFactorAtFullBuffer:2,minBitrateFactorAtFullBuffer:1,bitrateAudioFactorAtFullBuffer:7,minVideoAudioRatio:5,minAvailableThroughputAudioRatio:5,usePixelRatio:!0,pixelRatioMultiplier:void 0,pixelRatioLogBase:3,pixelRatioLogCoefficients:[1,0,1],limitByContainer:!0,maxContainerSizeFactor:2,containerSizeFactor:1.3,minContainerSizeFactor:1,lazyQualitySwitch:!0,minBufferToSwitchUp:.4,considerPlaybackRate:!1,trackCooldownIncreaseQuality:15e3,trackCooldownDecreaseQuality:3e3,backgroundVideoQualityLimit:ny.Q_4320P,activeVideoAreaThreshold:.1,highQualityLimit:ny.Q_720P,trafficSavingLimit:ny.Q_480P},stallsManager:{enabled:!1,ignoreDynamicAbrForShortVideo:!1,stallDurationNoDataBeforeQualityDecrease:500,stallDurationToBeCount:100,stallCountBeforeQualityDecrease:3,resetQualityRestrictionTimeout:1e4,ignoreStallsOnSeek:!0,stallsMetricsHistoryLength:20,maxPossibleStallDuration:3e4,minTvtToBeCounted:120,maxTvtToBeCounted:10800,significantTvt:600,targetStallsDurationPerTvt:1,deviationStallsDurationPerTvt:.5,criticalStallsDurationPerTvt:6,abrAdjustingSpeed:.1,emaAlpha:.6,useTotalStallsDurationPerTvt:!0,useAverageStallsDurationPerTvt:!0,useEmaStallsDurationPerTvt:!0},droppedFramesChecker:{enabled:!1,percentLimit:.1,checkTime:1e3,countLimit:3,tickCountAfterQualityChange:5,qualityUpWaitingTime:5e3,minQualityBanLimit:ny.Q_480P},dash:{forwardBufferTarget:6e4,forwardBufferTargetAuto:6e4,forwardBufferTargetManual:5*6e4,forwardBufferTargetPreload:5e3,seekBiasInTheEnd:2e3,maxSegmentDurationLeftToSelectNextSegment:3e3,minSafeBufferThreshold:.5,bufferPruningSafeZone:1e3,segmentRequestSize:1*1024*1024,maxVirtualBufferSize:250*1024*1024,virtualBufferPruneSize:100*1024*1024,representationSwitchForwardBufferGap:15e3,crashOnStallTimeout:25e3,crashOnStallTWithoutDataTimeout:5e3,enableSubSegmentBufferFeeding:!0,bufferEmptinessTolerance:100,useNewRepresentationSwitch:!1,useDelayedRepresentationSwitch:!1,useSmartRepresentationSwitch:!1,useFetchPriorityHints:!0,useAbortMSEFix:!1,enableBaseUrlSupport:!0,maxSegmentRetryCount:5,sourceOpenTimeout:1e3,vktvAbrThrottle:0,timeupdateEventTickThrottle:300,fetcherBufferOptimisation:!0,codecsPrioritizeEnabled:!1,usePersistentGaps:!1,abrThrottle:0,useVideoElementWaitingCurrentTimeReassign:!0,stallWatchdogInterval:100,liveUpdateInterval:1e3,liveStallReinitInterval:3e3,ignoreNetworkErrorsOnLoadInit:!1,bufferTolerance:100,actionTimeShiftFromSegment:500,tickMaintainInterval:1e3,minSafeBufferToPlay:1e4,useBufferHoldingOnlyOnStall:!0,useNewStallExitPolicy:!1,videoStreamRepresentaionsFilter:[]},dashCmafLive:{externalStopControl:!1,keepSilentStallWatchdogWhenNotActive:!1,maxActiveLiveOffset:1e4,normalizedTargetMinBufferSize:6e4,normalizedLiveMinBufferSize:5e3,normalizedActualBufferOffset:1e4,offsetCalculationError:3e3,maxLiveDuration:7200,catchupLiveForMutedInactiveTab:!0,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,catchupLiveForMutedInactiveTab:!1},downloadBackoff:{bufferThreshold:100,start:100,factor:2,max:3*1e3,random:.1},enableWakeLock:!0,enableTelemetryAtStart:!1,forceFormat:void 0,formatsToAvoid:[],disableChromecast:!1,chromecastReceiverId:`07A4434E`,chromecastPresentationApi:!1,useWebmBigRequest:!1,webmCodec:`vp9`,androidPreferredFormat:`dash`,iosPreferredFormat:`hls`,preferCMAF:!1,preferWebRTC:!1,preferMultiStream:!1,preferHDR:!1,bigRequestMinInitSize:50*1024,bigRequestMinDataSize:1*1024*1024,stripRangeHeader:!0,flushShortLoopedBuffers:!0,insufficientBufferRuleMargin:1e4,seekNearDurationBias:1,dashSeekInSegmentDurationThreshold:180*1e3,dashSeekInSegmentAlwaysSeekDelta:1e4,endGapTolerance:300,stallIgnoreThreshold:33,gapWatchdogInterval:50,requestQuick:!1,useHlsJs:!1,useNativeHLSTextTracks:!1,useNewSwitchTo:!1,useDashProviderVirtual:!1,useDashProviderVirtualMobile:!1,useNewAutoSelectVideoTrack:!1,useSafariEndlessRequestBugfix:!0,isAudioDisabled:!1,autoplayOnlyInActiveTab:!0,autoplayOnlyIfVisible:!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,useHlsLiveNewTextManager:!1,exposeInternalsToGlobal:!1,hlsLiveNewTextManagerDownloadThreshold:4e3,disableYandexPiP:!1,asyncResolveClientChecker:!1,changePlaybackStateToPausedWhenEnded:!1,suppressExceptionsInObservables:!0,devNullLogEnabled:!1,collectingDecodingInfoEnabled:!1,sendDashLiveDebug:!1,logDashLiveDebug:!1,reuseOwnVideoElement:!1},iy=e=>ty(e,ry);import{assertNonNullable as ay,combine as oy,ErrorCategory as sy,filter as J,filterChanged as Y,fromEvent as cy,isNonNullable as ly,isNullable as uy,Logger as dy,map as X,mapTo as fy,merge as py,now as my,once as Z,Subject as Q,Subscription as hy,tap as gy,ValueSubject as $,isHigher as _y,isInvariantQuality as vy,flattenObject as yy,throttle as by,getTraceSubscriptionMethod as xy,TracerFactory as Sy,InternalsExposure as Cy,getPlayerId as wy,devNull as Ty}from"@vkontakte/videoplayer-shared/es2015";import{merge as Ey,map as Dy,filter as Oy,isNonNullable as ky}from"@vkontakte/videoplayer-shared/es2015";var Ay=({seekState:e,position$:t})=>Ey(e.stateChangeEnded$.pipe(Dy(({to:e})=>e.state===`none`?void 0:(e.position??NaN)/1e3),Oy(ky)),t.pipe(Oy(()=>e.getState().state===`none`)));import{assertNonNullable as jy}from"@vkontakte/videoplayer-shared/es2015";var My=e=>{let t=typeof e.container==`string`?document.getElementById(e.container):e.container;return jy(t,`Wrong container or containerId {${e.container}}`),t};import{filter as Ny,once as Py}from"@vkontakte/videoplayer-shared/es2015";var Fy=(e,t,n,r)=>{e!==void 0&&t.getState()===void 0&&t.getPrevState()===void 0&&n?.getValue().length===0?n.pipe(Ny(e=>e.length>0),Py()).subscribe(n=>{n.find(r)&&t.startTransitionTo(e)}):(e===void 0||n?.getValue().find(r))&&t.startTransitionTo(e)},Iy=v(ct(),1);import{devNull as Ly,getWindow as Ry}from"@vkontakte/videoplayer-shared/es2015";var zy=()=>{let e=`mediaCapabilities`in Ry().navigator?By:Vy,t=Xd(a(function*(){let t=yield Promise.all(Iy.default(Hy).map(function(){var t=a(function*([t,n]){return{codec:t,supported:yield e(n)}});return function(e){return t.apply(this,arguments)}}())),n=[F.browser.current,...t.map(e=>JSON.stringify(e))].slice(0,16);return Ly.push(`core`,{key:`videoplayer_decoding_info`,strings:n}),t}));return()=>Zd(t)},By=function(){var e=a(function*(e){if(!e)return Promise.resolve({supported:!1});let t={[`channels`in e?`audio`:`video`]:e};return yield Ry().navigator.mediaCapabilities.decodingInfo(o({type:`media-source`},t))});return function(t){return e.apply(this,arguments)}}(),Vy=e=>{if(!e)return Promise.resolve({supported:!1});let t=Ry().document,n=`channels`in e?t.createElement(`audio`):t.createElement(`video`);return Promise.resolve({supported:n.canPlayType(e?.contentType??``)===`probably`})},Hy={H264:{contentType:`video/mp4; codecs="avc1.4D400C"`,width:720,height:720,bitrate:2886,framerate:30},H265:{contentType:`video/mp4; codecs="hvc1.1.6.L123.B0"`,width:720,height:720,bitrate:2886,framerate:30},VP8:{contentType:`video/webm; codecs="vp8"`,width:720,height:720,bitrate:2886,framerate:30},VP9:{contentType:`video/webm; codecs="vp09.00.10.08"`,width:720,height:720,bitrate:2886,framerate:30},AV1:{contentType:`video/mp4; codecs="av01.0.01M.08"`,width:720,height:720,bitrate:2886,framerate:30},OPUS:{contentType:`audio/ogg; codecs="opus"`,channels:`2`,bitrate:128e3},AAC_LC:{contentType:`audio/mp4; codecs="mp4a.40.2"`,channels:`2`,bitrate:128e3},AC3:{contentType:`audio/mp4; codecs="ac-3"`,channels:`6`,bitrate:128e3},EAC3:{contentType:`audio/mp4; codecs="ec-3"`,channels:`6`,bitrate:128e3},AAC_HE_V1:{contentType:`audio/mp4; codecs="mp4a.40.5"`,channels:`2`,bitrate:128e3},AAC_HE_V2:{contentType:`audio/mp4; codecs="mp4a.40.29"`,channels:`2`,bitrate:128e3},AAC_xHE:{contentType:`audio/mp4; codecs="mp4a.40.42"`,channels:`2`,bitrate:128e3}};class Uy{constructor(e={},t=Sy.createRootTracer(!1),n){i(this,`subscription`,new hy),i(this,`domContainer`,void 0),i(this,`providerContainer`,void 0),i(this,`chromecastInitializer`,void 0),i(this,`logger`,new dy),i(this,`tracer`,void 0),i(this,`abrLogger`,this.logger.createComponentLog(`ABR`)),i(this,`config`,void 0),i(this,`tuning`,void 0),i(this,`throughputEstimator`,void 0),i(this,`internalsExposure`,null),i(this,`isPlaybackStarted`,!1),i(this,`initedAt`,void 0),i(this,`hasLiveOffsetByPaused`,new $(!1)),i(this,`hasLiveOffsetByPausedTimer`,0),i(this,`playerInitRequest`,0),i(this,`playerInited`,new $(!1)),i(this,`explicitInitialQuality`,void 0),i(this,`wasSetStartedQuality`,!1),i(this,`desiredState`,{playbackState:new I(`stopped`),seekState:new I({state:`none`}),volume:new I({volume:1,muted:!1}),videoTrack:new I(void 0),videoStream:new I(void 0),audioStream:new I(void 0),autoVideoTrackSwitching:new I(!0),autoVideoTrackLimits:new I({}),isLooped:new I(!1),isLowLatency:new I(!1),playbackRate:new I(1),externalTextTracks:new I([]),internalTextTracks:new I([]),currentTextTrack:new I(void 0),textTrackCuesSettings:new I({}),cameraOrientation:new I({x:0,y:0})}),i(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),availableVideoTracks$:new $([]),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}),currentNativeBuffer$:new $({start:0,end:0}),isBuffering$:new $(!0),isStalled$:new $(!1),isEnded$:new $(!1),isLooped$:new $(!1),isLive$:new $(void 0),isLiveEnded$:new $(null),canPlayLiveTailBuffer$:new $(!1),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),httpConnectionMetrics$:new $(void 0),httpDownloadMetrics$: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)}),i(this,`events`,{inited$:new Q,ready$:new Q,started$:new Q,playing$:new Q,paused$:new Q,stopped$:new Q,willReady$:new Q,willStart$:new Q,willResume$:new Q,willPause$:new Q,willStop$:new Q,willDestruct$:new Q,watchCoverageRecord$:new Q,watchCoverageLive$:new Q,managedError$:new Q,fatalError$:new Q,fetcherRecoverableError$:new Q,ended$:new Q,looped$:new Q,seeked$:new Q,willSeek$:new Q,autoplaySoundProhibited$:new Q,manifestRequested$:new Q,firstBytesManifest$:new Q,manifestReceived$:new Q,firstBytesRequested$:new Q,firstBytesReceived$:new Q,firstBytes$:new Q,loadedMetadata$:new Q,firstFrame$:new Q,canplay$:new Q,log$:new Q,fetcherError$:new Q,severeStallOccured$:new Q}),i(this,`experimental`,{element$:new $(void 0),enableDebugTelemetry$:new $(!1),dumpTelemetry:gs,getCurrentTime$:new $(null),skipVideoElVolumeSync$:new $(!1)}),i(this,`devNullLog`,void 0),i(this,`collectDecodingInfoDestroyCb`,void 0),this.initLogs(),this.tuning=iy(e),this.tracer=t,this.tuning.suppressExceptionsInObservables&&(wr.default(this.info).forEach(e=>e.setSuppressErrors(!0)),wr.default(this.events).forEach(e=>e.setSuppressErrors(!0)));let r={receiverApplicationId:this.tuning.chromecastReceiverId,isDisabled:this.tuning.disableChromecast,dependencies:{logger:this.logger}};if(this.chromecastInitializer=this.tuning.chromecastPresentationApi?new _a(r):new Vr(r),this.throughputEstimator=new ey(this.tuning.throughputEstimator),e.exposeInternalsToGlobal&&(this.internalsExposure=new Cy(`core`,wy(n?.playerId)),this.internalsExposure.expose({player:this})),this.initChromecastSubscription(),this.initDesiredStateSubscriptions(),this.devNullLog=n?.onDevNullLog,Ty.create(`core`),Proxy&&Reflect)return new Proxy(this,{get:(e,t,n)=>{let r=Reflect.get(e,t,n);return typeof r==`function`?(...n)=>{try{return r.apply(e,n)}catch(e){let r=n.map(e=>JSON.stringify(e,(e,t)=>{let n=typeof t;return Tr.default([`number`,`string`,`boolean`],n)?t:t===null?null:`<${n}>`})),i=`Player.${String(t)}`,a=`Exception calling ${i} (${r.join(`, `)})`;throw this.events.fatalError$.next({id:i,category:sy.WTF,message:a,thrown:e}),e}}:r}})}initVideo(e){this.config=e,this.internalsExposure?.expose({config:e,logger:this.logger,tuning:this.tuning}),this.setMuted(this.tuning.isAudioDisabled);let t=()=>{let{container:t}=e,n=l(e,r);this.tracer.log(`initVideo`,yy(n)),this.domContainer=My(e),this.chromecastInitializer.contentId=e.meta?.videoId,this.providerContainer=new Pv({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,skipVideoElVolumeSync$:this.experimental.skipVideoElVolumeSync$}),this.initProviderContainerSubscription(this.providerContainer),this.initStartingVideoTrack(this.providerContainer),this.initTracerSubscription(),this.providerContainer.init(),this.setLiveLowLatency(this.tuning.dashCmafLive.lowLatency.isActiveOnDefault),this.initDebugTelemetry(),this.initWakeLock(),this.playerInited.next(!0),this.devNullLog&&this.tuning.devNullLogEnabled?(Ty.subscribe(`core`,this.devNullLog),this.tuning.collectingDecodingInfoEnabled&&(this.collectDecodingInfoDestroyCb=zy())):Ty.destroy(`core`)},n=()=>{this.tuning.autoplayOnlyIfVisible&&window.requestAnimationFrame?this.playerInitRequest=window.requestAnimationFrame(()=>t()):t()},i=()=>{this.tuning.asyncResolveClientChecker?F.isInited$.pipe(J(e=>!!e),Z()).subscribe(()=>{console.log(`Core SDK async start`),n()}):n()};return this.isNotActiveTabCase()?(this.tracer.log(`request play from hidden tab`),cy(document,`visibilitychange`).pipe(Z()).subscribe(i)):i(),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(),Ty.destroy(`core`),this.collectDecodingInfoDestroyCb?.call(this)}waitInit(e){this.playerInited.getValue()?e():this.subscription.add(this.playerInited.pipe(J(e=>!!e),Z()).subscribe(e))}prepare(){return this.waitInit(()=>{let e=this.desiredState.playbackState;this.tracer.log(`prepare`,{currentPlayBackState:e.getState()}),e.getState()===`stopped`&&e.startTransitionTo(`ready`)}),this}play(){return this.waitInit(()=>{let e=this.desiredState.playbackState;this.tracer.log(`play`,{currentPlayBackState:e.getState()}),e.getState()!==`playing`&&e.startTransitionTo(`playing`)}),this}pause(){return this.waitInit(()=>{let e=this.desiredState.playbackState;this.tracer.log(`pause`,{currentPlayBackState:e.getState()}),e.getState()!==`paused`&&e.startTransitionTo(`paused`)}),this}stop(){return this.waitInit(()=>{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.waitInit(()=>{let n=this.info.duration$.getValue(),r=this.info.isLive$.getValue(),i=e;e>=n&&!r&&(i=n-this.tuning.seekNearDurationBias),this.tracer.log(`seekTime`,{duration:n,isLive:r,time:e,calculatedTime:i,forcePrecise:t}),Number.isFinite(i)&&(this.events.willSeek$.next({from:this.getExactTime(),to:i}),this.desiredState.seekState.setState({state:`requested`,position:i*1e3,forcePrecise:t}))}),this}seekPercent(e){return this.waitInit(()=>{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,n=!1){return this.waitInit(()=>{this.experimental.skipVideoElVolumeSync$.next(n);let r=this.desiredState.volume,i=r.getTransition()?.to.muted??this.info.muted$.getValue(),a=t??(this.tuning.isAudioDisabled||i);this.tracer.log(`setVolume`,{volume:e,isAudioDisabled:this.tuning.isAudioDisabled,chromecastState:this.chromecastInitializer.castState$.getValue(),muted:a}),this.chromecastInitializer.castState$.getValue()===`CONNECTED`&&!(this.chromecastInitializer instanceof _a)?this.chromecastInitializer.setVolume(e):r.startTransitionTo({volume:e,muted:a})}),this}setMuted(e,t=!1,n=!1){return this.waitInit(()=>{this.experimental.skipVideoElVolumeSync$.next(n);let r=this.desiredState.volume,i=this.tuning.isAudioDisabled&&!t||e,a=r.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 instanceof _a)?this.chromecastInitializer.setMuted(i):r.startTransitionTo({volume:a,muted:i})}),this}setVideoStream(e){return this.waitInit(()=>{this.desiredState.videoStream.startTransitionTo(e)}),this}setAudioStream(e){return this.waitInit(()=>{this.desiredState.audioStream.startTransitionTo(e)}),this}setQuality(e){return this.waitInit(()=>{ay(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(J(e=>e.length>0),Z()).subscribe(t=>{this.setVideoTrackIdByQuality(t,e)}):this.explicitInitialQuality=e:t.length>0&&this.setVideoTrackIdByQuality(t,e)}),this}setAutoQuality(e){return this.waitInit(()=>{this.tracer.log(`setAutoQuality`,{enable:e}),this.desiredState.autoVideoTrackSwitching.startTransitionTo(e)}),this}setAutoQualityLimits(e){return this.waitInit(()=>{this.tracer.log(`setAutoQualityLimits`,yy(e)),this.desiredState.autoVideoTrackLimits.startTransitionTo(e)}),this}setPredefinedQualityLimits(e){return this.waitInit(()=>{if(this.info.predefinedQualityLimitType$.getValue()===e)return this;let{highQualityLimit:t,trafficSavingLimit:n}=this.tuning.autoTrackSelection,r;switch(e){case`high_quality`:r={min:t,max:void 0};break;case`traffic_saving`:r={max:n,min:void 0};break;default:r={max:void 0,min:void 0}}this.setAutoQualityLimits(r)}),this}setPlaybackRate(e){return this.waitInit(()=>{this.tracer.log(`setPlaybackRate`,{playbackRate:e}),this.desiredState.playbackRate.startTransitionTo(e)}),this}setExternalTextTracks(e){return this.waitInit(()=>{e.length&&this.tracer.log(`setExternalTextTracks`,yy(e)),this.desiredState.externalTextTracks.startTransitionTo(e.map(e=>o({type:`external`},e)))}),this}selectTextTrack(e){return this.waitInit(()=>{Fy(e,this.desiredState.currentTextTrack,this.providerContainer?.providerOutput.availableTextTracks$,t=>t.id===e),this.tracer.log(`selectTextTrack`,{textTrackId:e})}),this}setTextTrackCueSettings(e){return this.waitInit(()=>{this.tracer.log(`setTextTrackCueSettings`,o({},e)),this.desiredState.textTrackCuesSettings.startTransitionTo(e)}),this}setLiveLowLatency(e){let t=this.info.isLive$.getValue(),n=this.desiredState.isLowLatency.getState();return!t||n===e?this:(this.tracer.log(`live switch to low latency `+e),this.desiredState.isLowLatency.setState(e),this.seekTime(0))}setLooped(e){return this.waitInit(()=>{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.waitInit(()=>{let n=this.getScene3D();this.tracer.log(`startCameraManualRotation`,{isScene3DAvailable:!!n,mx:e,my:t}),n&&n.startCameraManualRotation(e,t)}),this}stopCameraManualRotation(e=!1){return this.waitInit(()=>{let t=this.getScene3D();this.tracer.log(`stopCameraManualRotation`,{isScene3DAvailable:!!t,immediate:e}),t&&t.stopCameraManualRotation(e)}),this}moveCameraFocusPX(e,t){return this.waitInit(()=>{let n=this.getScene3D();if(this.tracer.log(`moveCameraFocusPX`,{isScene3DAvailable:!!n,dxpx:e,dypx:t}),n){let r=n.getCameraRotation(),i=n.pixelToDegree({x:e,y:t});this.desiredState.cameraOrientation.setState({x:r.x+i.x,y:r.y+i.y})}}),this}holdCamera(){return this.waitInit(()=>{let e=this.getScene3D();e&&e.holdCamera()}),this}releaseCamera(){return this.waitInit(()=>{let e=this.getScene3D();e&&e.releaseCamera()}),this}getExactTime(){if(!this.providerContainer)return 0;let e=this.providerContainer.providerOutput.element$.getValue();if(uy(e))return this.info.position$.getValue();let t=this.desiredState.seekState.getState(),n=t.state===`none`?void 0:t.position;return ly(n)?n/1e3:e.currentTime}getAllLogs(){return this.logger.getAllLogs()}getScene3D(){var e;let t=this.providerContainer?.current$.getValue();if(!(t==null||(e=t.provider)==null)&&e.scene3D)return t.provider.scene3D}setIntrinsicVideoSize(...e){let t={width:e.reduce((e,{width:t})=>e||t||0,0),height:e.reduce((e,{height:t})=>e||t||0,0)};t.width&&t.height&&this.info.intrinsicVideoSize$.next({width:t.width,height:t.height})}initDesiredStateSubscriptions(){this.subscription.add(py(this.desiredState.playbackState.stateChangeStarted$,this.desiredState.playbackState.forceChanged$).pipe(X(e=>e.to)).subscribe(this.info.playbackState$)).add(this.desiredState.isLooped.stateChangeEnded$.pipe(X(e=>e.to)).subscribe(this.info.isLooped$)).add(this.desiredState.playbackRate.stateChangeEnded$.pipe(X(e=>e.to)).subscribe(this.info.currentPlaybackRate$)).add(this.desiredState.autoVideoTrackSwitching.stateChangeEnded$.pipe(X(e=>e.to)).subscribe(this.info.isAutoQualityEnabled$)).add(this.desiredState.autoVideoTrackLimits.stateChangeEnded$.pipe(X(e=>e.to)).subscribe(e=>{this.info.autoQualityLimits$.next(e);let{highQualityLimit:t,trafficSavingLimit:n}=this.tuning.autoTrackSelection;this.info.predefinedQualityLimitType$.next(ws(e,t,n))})),this.subscription.add(this.desiredState.playbackState.stateChangeStarted$.pipe(J(({from:e})=>e===`stopped`),Z()).subscribe(()=>{this.initedAt=my(),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`ready`:this.events.willReady$.next();break;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 e=this.desiredState.seekState.getState();this.tracer.log(`willSeekEvent`,yy(e)),e.state===`requested`?this.desiredState.seekState.setState(o(o({},e),{},{state:`applying`})):this.events.managedError$.next({id:`WillSeekIn${e.state}`,category:sy.WTF,message:`Received unexpeceted willSeek$`})})).add(e.providerOutput.soundProhibitedEvent$.pipe(Z()).subscribe(this.events.autoplaySoundProhibited$)).add(e.providerOutput.severeStallOccurred$.subscribe(this.events.severeStallOccured$)).add(e.providerOutput.seekedEvent$.subscribe(()=>{let e=this.desiredState.seekState.getState();this.tracer.log(`seekedEvent`,yy(e)),e.state===`applying`&&(this.desiredState.seekState.setState({state:`none`}),this.events.seeked$.next())})).add(e.current$.pipe(X(e=>e.type)).subscribe(this.info.currentFormat$)).add(e.current$.pipe(X(e=>e.destination),Y()).subscribe(()=>this.isPlaybackStarted=!1)).add(e.providerOutput.availableVideoStreams$.subscribe(this.info.availableVideoStreams$)).add(e.providerOutput.availableVideoTracks$.subscribe(this.info.availableVideoTracks$)).add(oy({availableVideoTracks:e.providerOutput.availableVideoTracks$,currentVideoStream:e.providerOutput.currentVideoStream$}).pipe(X(({availableVideoTracks:e,currentVideoStream:t})=>e.filter(e=>t?t.id===e.streamId:!0).map(({quality:e})=>e).sort((e,t)=>vy(e)?1:vy(t)?-1:_y(t,e)?1:-1))).subscribe(this.info.availableQualities$)).add(e.providerOutput.availableVideoTracks$.subscribe(e=>{let t={};for(let n of e)n.fps&&(t[n.quality]=n.fps);this.info.availableQualitiesFps$.next(t)})).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(J(e=>ly(e))).subscribe(e=>{this.info.currentQuality$.next(e?.quality),this.info.videoBitrate$.next(e?.bitrate)})).add(e.providerOutput.currentVideoSegmentLength$.pipe(Y((e,t)=>Math.round(e)===Math.round(t))).subscribe(this.info.currentVideoSegmentLength$)).add(e.providerOutput.currentAudioSegmentLength$.pipe(Y((e,t)=>Math.round(e)===Math.round(t))).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.httpConnectionMetrics$.pipe(Y()).subscribe(this.info.httpConnectionMetrics$)).add(e.providerOutput.httpDownloadMetrics$.pipe(Y()).subscribe(this.info.httpDownloadMetrics$)).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(e=>{this.desiredState.autoVideoTrackLimits.setState(e??{})})).add(e.providerOutput.currentBuffer$.pipe(X(e=>e?{start:e.from,end:e.to}:{start:0,end:0})).subscribe(this.info.currentBuffer$)).add(e.providerOutput.currentNativeBuffer$.pipe(X(e=>e?{start:e.from,end:e.to}:{start:0,end:0})).subscribe(this.info.currentNativeBuffer$)).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(gy(e=>e&&this.stop())).subscribe(this.info.isLiveEnded$)).add(e.providerOutput.canPlayLiveTailBuffer$.subscribe(this.info.canPlayLiveTailBuffer$)).add(e.providerOutput.canChangePlaybackSpeed$.subscribe(this.info.canChangePlaybackSpeed$)).add(e.providerOutput.liveTime$.pipe(Y()).subscribe(this.info.liveTime$)).add(e.providerOutput.liveBufferTime$.subscribe(this.info.liveBufferTime$)).add(e.providerOutput.liveLatency$.subscribe(this.info.liveLatency$)).add(oy({hasLiveOffsetByPaused:py(this.desiredState.playbackState.stateChangeStarted$,this.desiredState.playbackState.forceChanged$).pipe(X(e=>e.to),Y(),X(e=>e===`paused`)),isLowLatency:e.providerOutput.isLowLatency$}).subscribe(({hasLiveOffsetByPaused:e,isLowLatency:t})=>{if(window.clearTimeout(this.hasLiveOffsetByPausedTimer),e){this.hasLiveOffsetByPausedTimer=window.setTimeout(()=>{this.hasLiveOffsetByPaused.next(!0)},this.getActiveLiveDelay(t));return}this.hasLiveOffsetByPaused.next(!1)})).add(oy({atLiveEdge:oy({isLive:e.providerOutput.isLive$,isLowLatency:e.providerOutput.isLowLatency$,position:Ay({seekState:this.desiredState.seekState,position$:e.providerOutput.position$})}).pipe(X(({isLive:e,position:t,isLowLatency:n})=>{let r=this.getActiveLiveDelay(n);return e&&Math.abs(t)<r/1e3}),Y(),gy(e=>e&&this.setPlaybackRate(1))),hasPausedTimeoutCase:this.hasLiveOffsetByPaused}).pipe(X(({atLiveEdge:e,hasPausedTimeoutCase:t})=>e&&!t)).subscribe(this.info.atLiveEdge$)).add(oy({isLive:e.providerOutput.isLive$,position:e.providerOutput.position$,duration:e.providerOutput.duration$}).pipe(X(({isLive:e,position:t,duration:n})=>e&&(Math.abs(n)-Math.abs(t))*1e3<this.tuning.live.activeLiveDelay),Y(),gy(e=>e&&this.setPlaybackRate(1))).subscribe(this.info.atLiveDurationEdge$)).add(e.providerOutput.volume$.pipe(X(e=>e.muted),Y()).subscribe(this.info.muted$)).add(e.providerOutput.volume$.pipe(X(e=>e.volume),Y()).subscribe(this.info.volume$)).add(Ay({seekState:this.desiredState.seekState,position$:e.providerOutput.position$}).subscribe(this.info.position$)).add(e.providerOutput.seekedEvent$.subscribe(()=>{this.info.isEnded$.getValue()&&this.tuning.changePlaybackStateToPausedWhenEnded&&this.play()})).add(py(e.providerOutput.endedEvent$.pipe(fy(!0)),e.providerOutput.seekedEvent$.pipe(fy(!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(X(e=>({id:e?`No${e}`:`NoProviders`,category:sy.VIDEO_PIPELINE,message:e?`${e} 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.manifestRequested$.pipe(Z()).subscribe(this.events.manifestRequested$)).add(e.providerOutput.firstBytesManifest$.pipe(Z()).subscribe(this.events.firstBytesManifest$)).add(e.providerOutput.manifestReceived$.pipe(Z()).subscribe(this.events.manifestReceived$)).add(e.providerOutput.firstBytesRequested$.pipe(Z()).subscribe(this.events.firstBytesRequested$)).add(e.providerOutput.firstBytesReceived$.pipe(Z()).subscribe(this.events.firstBytesReceived$)).add(e.providerOutput.firstBytesEvent$.pipe(Z(),X(e=>e??my()-this.initedAt)).subscribe(this.events.firstBytes$)).add(e.providerOutput.loadedMetadataEvent$.subscribe(this.events.loadedMetadata$)).add(e.providerOutput.firstFrameEvent$.pipe(Z(),X(()=>my()-this.initedAt)).subscribe(this.events.firstFrame$)).add(e.providerOutput.canplay$.pipe(Z(),X(()=>my()-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 n=new $(!0);this.subscription.add(e.current$.subscribe(()=>n.next(!0))).add(this.desiredState.playbackState.stateChangeEnded$.pipe(J(({to:e})=>e===`playing`),Z()).subscribe(()=>n.next(!1)));let r=0,i=py(e.providerOutput.isBuffering$,t,n).pipe(X(()=>{let r=e.providerOutput.isBuffering$.getValue(),i=t.getValue()||n.getValue();return r&&!i}),Y());this.subscription.add(i.subscribe(e=>{e?r=window.setTimeout(()=>this.info.isStalled$.next(!0),this.tuning.stallIgnoreThreshold):(window.clearTimeout(r),this.info.isStalled$.next(!1))})),this.subscription.add(py(e.providerOutput.canplay$,e.providerOutput.firstFrameEvent$,e.providerOutput.firstBytesEvent$).subscribe(()=>{let t=e.providerOutput.element$.getValue();this.setIntrinsicVideoSize({width:t?.videoWidth,height:t?.videoHeight})})).add(e.providerOutput.currentVideoTrack$.subscribe(t=>{var n,r;let i=e.providerOutput.element$.getValue();this.setIntrinsicVideoSize({width:t==null||(n=t.size)==null?void 0:n.width,height:t==null||(r=t.size)==null?void 0:r.height},{width:i?.videoWidth,height:i?.videoHeight})})).add(e.providerOutput.is3DVideo$.subscribe(this.info.is3DVideo$)),this.subscription.add(py(e.providerOutput.inPiP$,e.providerOutput.inFullscreen$,e.providerOutput.element$,e.providerOutput.elementVisible$,this.chromecastInitializer.castState$).subscribe(()=>{let t=e.providerOutput.inPiP$.getValue(),n=e.providerOutput.inFullscreen$.getValue(),r=e.providerOutput.element$.getValue(),i=e.providerOutput.elementVisible$.getValue(),a=this.chromecastInitializer.castState$.getValue(),o;o=a===`CONNECTED`?`second_screen`:r?i?t?`pip`:n?`fullscreen`:`inline`:`invisible`:`none`,this.info.surface$.getValue()!==o&&this.info.surface$.next(o)}))}initChromecastSubscription(){this.subscription.add(this.chromecastInitializer.castState$.subscribe(this.info.chromecastState$)),this.subscription.add(this.chromecastInitializer.connection$.pipe(X(e=>e?.castDevice.friendlyName)).subscribe(this.info.chromecastDeviceName$)),this.subscription.add(this.chromecastInitializer.errorEvent$.subscribe(this.events.managedError$))}initStartingVideoTrack(e){let t=new hy;this.subscription.add(t),this.subscription.add(e.current$.pipe(Y((e,t)=>e.provider===t.provider)).subscribe(()=>{t.unsubscribe(),t.add(e.providerOutput.availableVideoTracks$.pipe(J(e=>e.length>0),Z()).subscribe(e=>{this.setStartingVideoTrack(e)}))}))}setStartingVideoTrack(e){let t;this.wasSetStartedQuality=!0;let n=this.explicitInitialQuality??this.info.currentQuality$.getValue();n&&(t=e.find(({quality:e})=>e===n),t||this.setAutoQuality(!0)),t||=Hs(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(py(this.desiredState.videoTrack.stateChangeStarted$.pipe(X(e=>({transition:e,entity:`quality`,type:`start`}))),this.desiredState.videoTrack.stateChangeEnded$.pipe(X(e=>({transition:e,entity:`quality`,type:`end`}))),this.desiredState.autoVideoTrackSwitching.stateChangeStarted$.pipe(X(e=>({transition:e,entity:`autoQualityEnabled`,type:`start`}))),this.desiredState.autoVideoTrackSwitching.stateChangeEnded$.pipe(X(e=>({transition:e,entity:`autoQualityEnabled`,type:`end`}))),this.desiredState.seekState.stateChangeStarted$.pipe(X(e=>({transition:e,entity:`seekState`,type:`start`}))),this.desiredState.seekState.stateChangeEnded$.pipe(X(e=>({transition:e,entity:`seekState`,type:`end`}))),this.desiredState.playbackState.stateChangeStarted$.pipe(X(e=>({transition:e,entity:`playbackState`,type:`start`}))),this.desiredState.playbackState.stateChangeEnded$.pipe(X(e=>({transition:e,entity:`playbackState`,type:`end`})))).pipe(X(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;ay(this.providerContainer),ay(e),hs(),this.experimental.enableDebugTelemetry$.next(this.tuning.enableTelemetryAtStart),[this.experimental.enableDebugTelemetry$.subscribe(e=>ms(e)),this.providerContainer.current$.subscribe(({type:e})=>_s(`provider`,e)),e.duration$.subscribe(e=>_s(`duration`,e)),e.availableVideoTracks$.pipe(J(e=>!!e.length),Z()).subscribe(e=>_s(`tracks`,e)),this.events.fatalError$.subscribe(new vs(`fatalError`)),this.events.managedError$.subscribe(new vs(`managedError`)),e.position$.subscribe(new vs(`position`)),e.currentVideoTrack$.pipe(X(e=>e?.quality)).subscribe(new vs(`quality`)),this.info.currentBuffer$.subscribe(new vs(`buffer`)),e.isBuffering$.subscribe(new vs(`isBuffering`))].forEach(e=>this.subscription.add(e)),_s(`codecs`,F.video.supportedCodecs)}initTracerSubscription(){let e=xy(this.tracer.log.bind(this.tracer)),t=xy(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(oy({currentQuality:this.info.currentQuality$,videoBitrate:this.info.videoBitrate$}).pipe(J(({currentQuality:e,videoBitrate:t})=>!!e&&!!t),Y((e,t)=>e.currentQuality===t.currentQuality)).subscribe(e(`currentVideoTrack`))).add(this.info.currentVideoSegmentLength$.pipe(J(e=>e>0),Y()).subscribe(e(`currentVideoSegmentLength`))).add(this.info.currentAudioSegmentLength$.pipe(J(e=>e>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(oy({currentBuffer:this.info.currentBuffer$.pipe(J(e=>e.end>0),Y((e,t)=>e.end===t.end&&e.start===t.start)),position:this.info.position$.pipe(Y())}).pipe(by(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(oy({liveTime:this.info.liveTime$,liveBufferTime:this.info.liveBufferTime$,position:this.info.position$}).pipe(J(({liveTime:e,liveBufferTime:t})=>!!e&&!!t),by(1e3)).subscribe(e(`liveBufferAndPosition`))).add(this.info.atLiveEdge$.pipe(Y(),J(e=>e===!0)).subscribe(e(`atLiveEdge`))).add(this.info.atLiveDurationEdge$.pipe(Y(),J(e=>e===!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(),J(e=>e===!0)).subscribe(e(`isEnded`))).add(this.info.availableSources$.subscribe(e(`availableSources`))).add(oy({throughputEstimation:this.info.throughputEstimation$,rtt:this.info.rttEstimation$}).pipe(J(({throughputEstimation:e,rtt:t})=>!!e&&!!t),by(3e3)).subscribe(e(`throughputEstimation`))).add(this.info.isStalled$.subscribe(e(`isStalled`))).add(this.info.is3DVideo$.pipe(Y(),J(e=>e===!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(){var e=this;if(!window.navigator.wakeLock||!this.tuning.enableWakeLock)return;let t,n=()=>{t?.release(),t=void 0},r=function(){var r=a(function*(){n(),t=yield window.navigator.wakeLock.request(`screen`).catch(t=>{t instanceof DOMException&&t.name===`NotAllowedError`||e.events.managedError$.next({id:`WakeLock`,category:sy.DOM,message:String(t)})})});return function(){return r.apply(this,arguments)}}();this.subscription.add(py(cy(document,`visibilitychange`),cy(document,`fullscreenchange`),this.desiredState.playbackState.stateChangeEnded$).subscribe(()=>{let e=document.visibilityState===`visible`,i=this.desiredState.playbackState.getState()===`playing`,a=!!t&&!t?.released;e&&i?a||r():n()})).add(this.events.willDestruct$.subscribe(n))}setVideoTrackIdByQuality(e,t){let n=e.find(e=>e.quality===t);this.tracer.log(`setVideoTrackIdByQuality`,yy({quality:t,availableTracks:yy(e),track:yy(n),isAutoQuality:!n})),n?this.desiredState.videoTrack.startTransitionTo(n):this.setAutoQuality(!0)}getActiveLiveDelay(e=!1){return e?this.tuning.live.lowLatencyActiveLiveDelay:this.tuning.live.activeLiveDelay}isNotActiveTabCase(){return document.hidden&&this.tuning.autoplayOnlyInActiveTab&&!cl()}}import{Subscription as Wy,Observable as Gy,Subject as Ky,ValueSubject as qy,VideoQuality as Jy}from"@vkontakte/videoplayer-shared/es2015";var Yy=`@vkontakte/videoplayer-core@${gr}`;export{Ci as isMobile,F as clientChecker,Xi as areValidLiveRecordSources,Pd as WebmCodecStrategy,Jy as VideoQuality,vr as VideoFormat,yr as VideoCodec,qy as ValueSubject,gr as VERSION,Sr as Surface,Wy as Subscription,Ky as Subject,Yy as SDK_VERSION,Cr as PredefinedQualityLimits,Uy as Player,_r as PlaybackState,Gy as Observable,xr as HttpConnectionType,br as ChromecastState};
131
+ //# sourceMappingURL=es2015.esm.js.map