@vkontakte/videoplayer-core 2.0.154-dev.6d21d9b3.0 → 2.0.154-dev.784f4859.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/es2018.cjs +77 -131
  2. package/es2018.esm.js +75 -129
  3. package/es2024.cjs +81 -135
  4. package/es2024.esm.js +79 -133
  5. package/esnext.cjs +81 -135
  6. package/esnext.esm.js +79 -133
  7. package/evergreen.esm.js +80 -134
  8. package/package.json +2 -2
  9. package/types/enums/AndroidPreferredFormat.d.ts +6 -6
  10. package/types/enums/IOSPreferredFormat.d.ts +2 -2
  11. package/types/enums/WebmCodecStrategy.d.ts +5 -5
  12. package/types/index.d.ts +16 -13
  13. package/types/player/Player.d.ts +217 -210
  14. package/types/player/types.d.ts +589 -589
  15. package/types/player/utils/optimisticPosition.d.ts +7 -7
  16. package/types/player/utils/selectContainer.d.ts +1 -1
  17. package/types/providers/ChromecastPresentationApiProvider/ChromecastPresentationApiConnector.d.ts +106 -106
  18. package/types/providers/ChromecastPresentationApiProvider/ChromecastPresentationApiInitializer.d.ts +23 -23
  19. package/types/providers/ChromecastPresentationApiProvider/ChromecastPresentationApiProvider.d.ts +34 -34
  20. package/types/providers/ChromecastPresentationApiProvider/ProgressTicker.d.ts +9 -9
  21. package/types/providers/ChromecastPresentationApiProvider/index.d.ts +3 -3
  22. package/types/providers/ChromecastPresentationApiProvider/types.d.ts +31 -31
  23. package/types/providers/ChromecastPresentationApiProvider/utils.d.ts +1 -1
  24. package/types/providers/ChromecastProvider/ChromecastInitializer/index.d.ts +22 -22
  25. package/types/providers/ChromecastProvider/ChromecastInitializer/types.d.ts +22 -22
  26. package/types/providers/ChromecastProvider/index.d.ts +23 -23
  27. package/types/providers/ChromecastProvider/types.d.ts +7 -7
  28. package/types/providers/ChromecastProvider/utils.d.ts +1 -1
  29. package/types/providers/DashLiveProvider/DashLiveProvider.d.ts +32 -33
  30. package/types/providers/DashLiveProvider/index.d.ts +1 -1
  31. package/types/providers/DashLiveProvider/types.d.ts +17 -17
  32. package/types/providers/DashLiveProvider/utils/FilesFetcher.d.ts +23 -23
  33. package/types/providers/DashLiveProvider/utils/LiveDashPlayer.d.ts +149 -150
  34. package/types/providers/DashLiveProvider/utils/ThroughputEstimator.d.ts +12 -30
  35. package/types/providers/DashLiveProvider/utils/liveDashPlayerUtil.d.ts +19 -22
  36. package/types/providers/DashProvider/baseDashProvider.d.ts +56 -56
  37. package/types/providers/DashProvider/dashCmafLiveProvider.d.ts +6 -6
  38. package/types/providers/DashProvider/dashProvider.d.ts +4 -4
  39. package/types/providers/DashProvider/index.d.ts +2 -2
  40. package/types/providers/DashProvider/lib/ElementSizeManager.d.ts +14 -14
  41. package/types/providers/DashProvider/lib/LiveTextManager.d.ts +21 -21
  42. package/types/providers/DashProvider/lib/buffer.d.ts +123 -122
  43. package/types/providers/DashProvider/lib/fetcher.d.ts +70 -69
  44. package/types/providers/DashProvider/lib/player.d.ts +109 -107
  45. package/types/providers/DashProvider/lib/sourceBufferTaskQueue.d.ts +17 -17
  46. package/types/providers/DashProvider/lib/types.d.ts +20 -20
  47. package/types/providers/DashProvider/lib/utils.d.ts +4 -4
  48. package/types/providers/DashProviderVirtual/baseDashProvider.d.ts +57 -57
  49. package/types/providers/DashProviderVirtual/consts.d.ts +2 -2
  50. package/types/providers/DashProviderVirtual/dashCmafLiveProvider.d.ts +8 -8
  51. package/types/providers/DashProviderVirtual/dashProvider.d.ts +6 -6
  52. package/types/providers/DashProviderVirtual/index.d.ts +2 -2
  53. package/types/providers/DashProviderVirtual/lib/ElementSizeManager.d.ts +15 -14
  54. package/types/providers/DashProviderVirtual/lib/LiveTextManager.d.ts +21 -21
  55. package/types/providers/DashProviderVirtual/lib/buffer/nativeBufferManager.d.ts +17 -17
  56. package/types/providers/DashProviderVirtual/lib/buffer/sourceBufferTaskQueue.d.ts +17 -17
  57. package/types/providers/DashProviderVirtual/lib/buffer/types.d.ts +39 -39
  58. package/types/providers/DashProviderVirtual/lib/buffer/virtualBuffer/baseVirtualBufferManager.d.ts +94 -92
  59. package/types/providers/DashProviderVirtual/lib/buffer/virtualBuffer/byteRangeVirtualBufferManager.d.ts +19 -19
  60. package/types/providers/DashProviderVirtual/lib/buffer/virtualBuffer/liveVirtualBuffer.d.ts +25 -25
  61. package/types/providers/DashProviderVirtual/lib/buffer/virtualBuffer/templateVirtualBufferManager.d.ts +19 -19
  62. package/types/providers/DashProviderVirtual/lib/buffer/virtualBuffer/virtualBufferFactory.d.ts +4 -4
  63. package/types/providers/DashProviderVirtual/lib/fetcher.d.ts +68 -67
  64. package/types/providers/DashProviderVirtual/lib/player/basePlayer.d.ts +103 -100
  65. package/types/providers/DashProviderVirtual/lib/player/livePlayer.d.ts +34 -34
  66. package/types/providers/DashProviderVirtual/lib/player/player.d.ts +9 -9
  67. package/types/providers/DashProviderVirtual/lib/player/types.d.ts +13 -13
  68. package/types/providers/DashProviderVirtual/lib/types.d.ts +20 -20
  69. package/types/providers/DashProviderVirtual/lib/utils.d.ts +4 -4
  70. package/types/providers/HlsLiveProvider/LiveTextManager.d.ts +35 -35
  71. package/types/providers/HlsLiveProvider/index.d.ts +28 -28
  72. package/types/providers/HlsLiveProvider/seekBackTimeExtractor.d.ts +1 -1
  73. package/types/providers/HlsProvider/index.d.ts +18 -19
  74. package/types/providers/HlsProvider/manifestDataExtractor.d.ts +13 -13
  75. package/types/providers/MpegProvider/index.d.ts +16 -17
  76. package/types/providers/ProviderContainer/index.d.ts +45 -46
  77. package/types/providers/ProviderContainer/types.d.ts +16 -16
  78. package/types/providers/ProviderContainer/utils/formatsSupport.d.ts +9 -9
  79. package/types/providers/ProviderContainer/utils/playbackHangup.d.ts +9 -8
  80. package/types/providers/WebRTCLiveProvider/WebRTCLiveClient.d.ts +185 -185
  81. package/types/providers/WebRTCLiveProvider/WebRTCLiveProvider.d.ts +57 -57
  82. package/types/providers/WebRTCLiveProvider/interface/WebRTCLiveClientOptions.d.ts +6 -6
  83. package/types/providers/types.d.ts +102 -103
  84. package/types/providers/utils/HTMLVideoElement/DroppedFramesManager.d.ts +40 -39
  85. package/types/providers/utils/HTMLVideoElement/TextTrackManager.d.ts +28 -28
  86. package/types/providers/utils/HTMLVideoElement/forcePlay.d.ts +5 -5
  87. package/types/providers/utils/HTMLVideoElement/observable.d.ts +25 -25
  88. package/types/providers/utils/HTMLVideoElement/pool.d.ts +2 -2
  89. package/types/providers/utils/LiveOffset/index.d.ts +12 -12
  90. package/types/providers/utils/LiveOffset/types.d.ts +8 -8
  91. package/types/providers/utils/StallsManager.d.ts +49 -49
  92. package/types/providers/utils/debug.d.ts +13 -12
  93. package/types/providers/utils/extractConnectionHeaders.d.ts +3 -3
  94. package/types/providers/utils/generateLiveUrl.d.ts +4 -4
  95. package/types/providers/utils/guessNetworkErrorCause.d.ts +1 -1
  96. package/types/providers/utils/mergeIntervals.d.ts +1 -1
  97. package/types/providers/utils/okQualityStringToVideoQuality.d.ts +1 -1
  98. package/types/providers/utils/parsers/ietf/index.d.ts +8 -8
  99. package/types/providers/utils/parsers/index.d.ts +1 -1
  100. package/types/providers/utils/parsers/mpd.d.ts +1 -1
  101. package/types/providers/utils/parsers/mpeg/BoxModel.d.ts +18 -17
  102. package/types/providers/utils/parsers/mpeg/BoxParser.d.ts +15 -15
  103. package/types/providers/utils/parsers/mpeg/BoxTypeEnum.d.ts +27 -27
  104. package/types/providers/utils/parsers/mpeg/box.d.ts +68 -68
  105. package/types/providers/utils/parsers/mpeg/boxes/avc1.d.ts +5 -5
  106. package/types/providers/utils/parsers/mpeg/boxes/equi.d.ts +18 -18
  107. package/types/providers/utils/parsers/mpeg/boxes/ftyp.d.ts +14 -14
  108. package/types/providers/utils/parsers/mpeg/boxes/index.d.ts +27 -26
  109. package/types/providers/utils/parsers/mpeg/boxes/mdat.d.ts +12 -12
  110. package/types/providers/utils/parsers/mpeg/boxes/mdia.d.ts +5 -5
  111. package/types/providers/utils/parsers/mpeg/boxes/mfhd.d.ts +8 -8
  112. package/types/providers/utils/parsers/mpeg/boxes/minf.d.ts +5 -5
  113. package/types/providers/utils/parsers/mpeg/boxes/moof.d.ts +5 -5
  114. package/types/providers/utils/parsers/mpeg/boxes/moov.d.ts +5 -5
  115. package/types/providers/utils/parsers/mpeg/boxes/mvhd.d.ts +32 -32
  116. package/types/providers/utils/parsers/mpeg/boxes/prhd.d.ts +13 -13
  117. package/types/providers/utils/parsers/mpeg/boxes/proj.d.ts +5 -5
  118. package/types/providers/utils/parsers/mpeg/boxes/sidx.d.ts +43 -43
  119. package/types/providers/utils/parsers/mpeg/boxes/st3d.d.ts +16 -16
  120. package/types/providers/utils/parsers/mpeg/boxes/stbl.d.ts +5 -5
  121. package/types/providers/utils/parsers/mpeg/boxes/stsd.d.ts +8 -8
  122. package/types/providers/utils/parsers/mpeg/boxes/sv3d.d.ts +5 -5
  123. package/types/providers/utils/parsers/mpeg/boxes/tfdt.d.ts +14 -14
  124. package/types/providers/utils/parsers/mpeg/boxes/tfhd.d.ts +19 -19
  125. package/types/providers/utils/parsers/mpeg/boxes/tkhd.d.ts +39 -39
  126. package/types/providers/utils/parsers/mpeg/boxes/traf.d.ts +5 -5
  127. package/types/providers/utils/parsers/mpeg/boxes/trak.d.ts +5 -5
  128. package/types/providers/utils/parsers/mpeg/boxes/trun.d.ts +28 -28
  129. package/types/providers/utils/parsers/mpeg/boxes/unknown.d.ts +4 -5
  130. package/types/providers/utils/parsers/mpeg/boxes/uuid.d.ts +10 -10
  131. package/types/providers/utils/parsers/mpeg/fullBox.d.ts +12 -12
  132. package/types/providers/utils/parsers/mpeg/isobmff.d.ts +7 -7
  133. package/types/providers/utils/parsers/types.d.ts +131 -133
  134. package/types/providers/utils/parsers/webm/ebml.d.ts +62 -62
  135. package/types/providers/utils/parsers/webm/webm.d.ts +1 -1
  136. package/types/providers/utils/restorePlaybackRateInSafari.d.ts +17 -17
  137. package/types/providers/utils/syncDesiredState.d.ts +8 -12
  138. package/types/providers/utils/syncPlaybackState.d.ts +2 -2
  139. package/types/providers/utils/videoStreamRepresentaionsFilter.d.ts +2 -2
  140. package/types/utils/3d/Camera3D.d.ts +11 -11
  141. package/types/utils/3d/CameraRotationManager.d.ts +59 -59
  142. package/types/utils/3d/Scene3D.d.ts +129 -129
  143. package/types/utils/3d/types.d.ts +14 -14
  144. package/types/utils/ClientChecker/ClientChecker.d.ts +19 -19
  145. package/types/utils/ClientChecker/index.d.ts +2 -2
  146. package/types/utils/ClientChecker/services/AudioChecker.d.ts +7 -7
  147. package/types/utils/ClientChecker/services/BrowserChecker.d.ts +36 -36
  148. package/types/utils/ClientChecker/services/DeviceChecker.d.ts +38 -38
  149. package/types/utils/ClientChecker/services/DisplayChecker.d.ts +20 -20
  150. package/types/utils/ClientChecker/services/VideoChecker.d.ts +35 -35
  151. package/types/utils/ClientChecker/types/checker.d.ts +1 -1
  152. package/types/utils/ClientChecker/types/currentClientBrowser.d.ts +10 -10
  153. package/types/utils/ClientChecker/types/currentClientDevice.d.ts +8 -8
  154. package/types/utils/ClientChecker/types/userAgentData.d.ts +21 -21
  155. package/types/utils/StateMachine/StateMachine.d.ts +17 -17
  156. package/types/utils/StateMachine/types.d.ts +56 -56
  157. package/types/utils/StatefulIterator/index.d.ts +13 -13
  158. package/types/utils/ThroughputEstimator.d.ts +22 -22
  159. package/types/utils/VolumeMultiplierManager/VolumeMultiplierManager.d.ts +20 -20
  160. package/types/utils/VolumeMultiplierManager/index.d.ts +1 -1
  161. package/types/utils/autoSelectTrack.d.ts +28 -27
  162. package/types/utils/buffer/createTimeRanges.d.ts +2 -1
  163. package/types/utils/buffer/getBufferedRangeForPosition.d.ts +2 -2
  164. package/types/utils/buffer/getForwardBufferDuration.d.ts +1 -1
  165. package/types/utils/buffer/getTotalBufferDuration.d.ts +1 -1
  166. package/types/utils/buffer/isPositionBuffered.d.ts +1 -1
  167. package/types/utils/buffer/isSourceBufferValid.d.ts +1 -1
  168. package/types/utils/changePlaybackRate.d.ts +1 -1
  169. package/types/utils/decodingInfoLogger.d.ts +1 -1
  170. package/types/utils/mediaSource.d.ts +1 -5
  171. package/types/utils/observeElementVisibility.d.ts +1 -1
  172. package/types/utils/playbackTelemetry.d.ts +4 -4
  173. package/types/utils/playerOptions.d.ts +3 -3
  174. package/types/utils/qualityLimits.d.ts +15 -14
  175. package/types/utils/setStateWithSubscribe.d.ts +6 -3
  176. package/types/utils/smoothedValue/baseSmoothedValue.d.ts +16 -16
  177. package/types/utils/smoothedValue/emaAndMaSmoothedValue.d.ts +5 -5
  178. package/types/utils/smoothedValue/emaTopExtremumValue.d.ts +8 -8
  179. package/types/utils/smoothedValue/smoothedValueFactory.d.ts +4 -4
  180. package/types/utils/smoothedValue/twoEmaSmoothedValue.d.ts +6 -6
  181. package/types/utils/smoothedValue/types.d.ts +16 -16
  182. package/types/utils/tuningConfig.d.ts +276 -275
  183. package/types/utils/videoFormat.d.ts +1 -1
  184. package/es2015.cjs +0 -184
  185. package/es2015.esm.js +0 -184
package/es2018.esm.js CHANGED
@@ -1,184 +1,130 @@
1
1
  /**
2
- * @vkontakte/videoplayer-core v2.0.154-dev.6d21d9b3.0
3
- * Tue, 03 Mar 2026 22:34:41 GMT
2
+ * @vkontakte/videoplayer-core v2.0.154-dev.784f4859.0
3
+ * Wed, 04 Mar 2026 15:27:09 GMT
4
4
  * https://st.mycdn.me/static/vkontakte-videoplayer/2-0-154/doc/
5
5
  */
6
- var Jw=Object.create;var Ah=Object.defineProperty;var Zw=Object.getOwnPropertyDescriptor;var ex=Object.getOwnPropertyNames;var tx=Object.getPrototypeOf,ix=Object.prototype.hasOwnProperty;var b=(s,e)=>()=>(e||s((e={exports:{}}).exports,e),e.exports);var rx=(s,e,t,i)=>{if(e&&typeof e=="object"||typeof e=="function")for(let r of ex(e))!ix.call(s,r)&&r!==t&&Ah(s,r,{get:()=>e[r],enumerable:!(i=Zw(e,r))||i.enumerable});return s};var _=(s,e,t)=>(t=s!=null?Jw(tx(s)):{},rx(e||!s||!s.__esModule?Ah(t,"default",{value:s,enumerable:!0}):t,s));var ne=b((ju,$h)=>{"use strict";var na=function(s){return s&&s.Math===Math&&s};$h.exports=na(typeof globalThis=="object"&&globalThis)||na(typeof window=="object"&&window)||na(typeof self=="object"&&self)||na(typeof global=="object"&&global)||na(typeof ju=="object"&&ju)||function(){return this}()||Function("return this")()});var me=b((lN,Mh)=>{"use strict";Mh.exports=function(s){try{return!!s()}catch(e){return!0}}});var oa=b((dN,Lh)=>{"use strict";var ax=me();Lh.exports=!ax(function(){var s=function(){}.bind();return typeof s!="function"||s.hasOwnProperty("prototype")})});var Wu=b((pN,Vh)=>{"use strict";var sx=oa(),Bh=Function.prototype,Ch=Bh.apply,Dh=Bh.call;Vh.exports=typeof Reflect=="object"&&Reflect.apply||(sx?Dh.bind(Ch):function(){return Dh.apply(Ch,arguments)})});var be=b((hN,Nh)=>{"use strict";var _h=oa(),Oh=Function.prototype,Qu=Oh.call,nx=_h&&Oh.bind.bind(Qu,Qu);Nh.exports=_h?nx:function(s){return function(){return Qu.apply(s,arguments)}}});var Ti=b((fN,Uh)=>{"use strict";var Fh=be(),ox=Fh({}.toString),ux=Fh("".slice);Uh.exports=function(s){return ux(ox(s),8,-1)}});var zu=b((mN,qh)=>{"use strict";var cx=Ti(),lx=be();qh.exports=function(s){if(cx(s)==="Function")return lx(s)}});var oe=b((bN,Hh)=>{"use strict";var Gu=typeof document=="object"&&document.all;Hh.exports=typeof Gu=="undefined"&&Gu!==void 0?function(s){return typeof s=="function"||s===Gu}:function(s){return typeof s=="function"}});var Ue=b((gN,jh)=>{"use strict";var dx=me();jh.exports=!dx(function(){return Object.defineProperty({},1,{get:function(){return 7}})[1]!==7})});var qe=b((vN,Wh)=>{"use strict";var px=oa(),Tn=Function.prototype.call;Wh.exports=px?Tn.bind(Tn):function(){return Tn.apply(Tn,arguments)}});var Yu=b(Gh=>{"use strict";var Qh={}.propertyIsEnumerable,zh=Object.getOwnPropertyDescriptor,hx=zh&&!Qh.call({1:2},1);Gh.f=hx?function(e){var t=zh(this,e);return!!t&&t.enumerable}:Qh});var ua=b((yN,Yh)=>{"use strict";Yh.exports=function(s,e){return{enumerable:!(s&1),configurable:!(s&2),writable:!(s&4),value:e}}});var Xh=b((TN,Kh)=>{"use strict";var fx=be(),mx=me(),bx=Ti(),Ku=Object,gx=fx("".split);Kh.exports=mx(function(){return!Ku("z").propertyIsEnumerable(0)})?function(s){return bx(s)==="String"?gx(s,""):Ku(s)}:Ku});var ca=b((IN,Jh)=>{"use strict";Jh.exports=function(s){return s==null}});var Wt=b((EN,Zh)=>{"use strict";var vx=ca(),Sx=TypeError;Zh.exports=function(s){if(vx(s))throw new Sx("Can't call method on "+s);return s}});var Ii=b((wN,ef)=>{"use strict";var yx=Xh(),Tx=Wt();ef.exports=function(s){return yx(Tx(s))}});var Ce=b((xN,tf)=>{"use strict";var Ix=oe();tf.exports=function(s){return typeof s=="object"?s!==null:Ix(s)}});var Ei=b((PN,rf)=>{"use strict";rf.exports={}});var xt=b((kN,sf)=>{"use strict";var Xu=Ei(),Ju=ne(),Ex=oe(),af=function(s){return Ex(s)?s:void 0};sf.exports=function(s,e){return arguments.length<2?af(Xu[s])||af(Ju[s]):Xu[s]&&Xu[s][e]||Ju[s]&&Ju[s][e]}});var la=b((AN,nf)=>{"use strict";var wx=be();nf.exports=wx({}.isPrototypeOf)});var wi=b((RN,cf)=>{"use strict";var xx=ne(),of=xx.navigator,uf=of&&of.userAgent;cf.exports=uf?String(uf):""});var ec=b(($N,mf)=>{"use strict";var ff=ne(),Zu=wi(),lf=ff.process,df=ff.Deno,pf=lf&&lf.versions||df&&df.version,hf=pf&&pf.v8,rt,In;hf&&(rt=hf.split("."),In=rt[0]>0&&rt[0]<4?1:+(rt[0]+rt[1]));!In&&Zu&&(rt=Zu.match(/Edge\/(\d+)/),(!rt||rt[1]>=74)&&(rt=Zu.match(/Chrome\/(\d+)/),rt&&(In=+rt[1])));mf.exports=In});var tc=b((MN,gf)=>{"use strict";var bf=ec(),Px=me(),kx=ne(),Ax=kx.String;gf.exports=!!Object.getOwnPropertySymbols&&!Px(function(){var s=Symbol("symbol detection");return!Ax(s)||!(Object(s)instanceof Symbol)||!Symbol.sham&&bf&&bf<41})});var ic=b((LN,vf)=>{"use strict";var Rx=tc();vf.exports=Rx&&!Symbol.sham&&typeof Symbol.iterator=="symbol"});var rc=b((CN,Sf)=>{"use strict";var $x=xt(),Mx=oe(),Lx=la(),Cx=ic(),Dx=Object;Sf.exports=Cx?function(s){return typeof s=="symbol"}:function(s){var e=$x("Symbol");return Mx(e)&&Lx(e.prototype,Dx(s))}});var da=b((DN,yf)=>{"use strict";var Bx=String;yf.exports=function(s){try{return Bx(s)}catch(e){return"Object"}}});var ht=b((BN,Tf)=>{"use strict";var Vx=oe(),_x=da(),Ox=TypeError;Tf.exports=function(s){if(Vx(s))return s;throw new Ox(_x(s)+" is not a function")}});var pa=b((VN,If)=>{"use strict";var Nx=ht(),Fx=ca();If.exports=function(s,e){var t=s[e];return Fx(t)?void 0:Nx(t)}});var wf=b((_N,Ef)=>{"use strict";var ac=qe(),sc=oe(),nc=Ce(),Ux=TypeError;Ef.exports=function(s,e){var t,i;if(e==="string"&&sc(t=s.toString)&&!nc(i=ac(t,s))||sc(t=s.valueOf)&&!nc(i=ac(t,s))||e!=="string"&&sc(t=s.toString)&&!nc(i=ac(t,s)))return i;throw new Ux("Can't convert object to primitive value")}});var at=b((ON,xf)=>{"use strict";xf.exports=!0});var Af=b((NN,kf)=>{"use strict";var Pf=ne(),qx=Object.defineProperty;kf.exports=function(s,e){try{qx(Pf,s,{value:e,configurable:!0,writable:!0})}catch(t){Pf[s]=e}return e}});var ha=b((FN,Mf)=>{"use strict";var Hx=at(),jx=ne(),Wx=Af(),Rf="__core-js_shared__",$f=Mf.exports=jx[Rf]||Wx(Rf,{});($f.versions||($f.versions=[])).push({version:"3.43.0",mode:Hx?"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 oc=b((UN,Cf)=>{"use strict";var Lf=ha();Cf.exports=function(s,e){return Lf[s]||(Lf[s]=e||{})}});var ur=b((qN,Df)=>{"use strict";var Qx=Wt(),zx=Object;Df.exports=function(s){return zx(Qx(s))}});var st=b((HN,Bf)=>{"use strict";var Gx=be(),Yx=ur(),Kx=Gx({}.hasOwnProperty);Bf.exports=Object.hasOwn||function(e,t){return Kx(Yx(e),t)}});var uc=b((jN,Vf)=>{"use strict";var Xx=be(),Jx=0,Zx=Math.random(),eP=Xx(1.1.toString);Vf.exports=function(s){return"Symbol("+(s===void 0?"":s)+")_"+eP(++Jx+Zx,36)}});var we=b((WN,Of)=>{"use strict";var tP=ne(),iP=oc(),_f=st(),rP=uc(),aP=tc(),sP=ic(),cr=tP.Symbol,cc=iP("wks"),nP=sP?cr.for||cr:cr&&cr.withoutSetter||rP;Of.exports=function(s){return _f(cc,s)||(cc[s]=aP&&_f(cr,s)?cr[s]:nP("Symbol."+s)),cc[s]}});var qf=b((QN,Uf)=>{"use strict";var oP=qe(),Nf=Ce(),Ff=rc(),uP=pa(),cP=wf(),lP=we(),dP=TypeError,pP=lP("toPrimitive");Uf.exports=function(s,e){if(!Nf(s)||Ff(s))return s;var t=uP(s,pP),i;if(t){if(e===void 0&&(e="default"),i=oP(t,s,e),!Nf(i)||Ff(i))return i;throw new dP("Can't convert object to primitive value")}return e===void 0&&(e="number"),cP(s,e)}});var lc=b((zN,Hf)=>{"use strict";var hP=qf(),fP=rc();Hf.exports=function(s){var e=hP(s,"string");return fP(e)?e:e+""}});var En=b((GN,Wf)=>{"use strict";var mP=ne(),jf=Ce(),dc=mP.document,bP=jf(dc)&&jf(dc.createElement);Wf.exports=function(s){return bP?dc.createElement(s):{}}});var pc=b((YN,Qf)=>{"use strict";var gP=Ue(),vP=me(),SP=En();Qf.exports=!gP&&!vP(function(){return Object.defineProperty(SP("div"),"a",{get:function(){return 7}}).a!==7})});var Yf=b(Gf=>{"use strict";var yP=Ue(),TP=qe(),IP=Yu(),EP=ua(),wP=Ii(),xP=lc(),PP=st(),kP=pc(),zf=Object.getOwnPropertyDescriptor;Gf.f=yP?zf:function(e,t){if(e=wP(e),t=xP(t),kP)try{return zf(e,t)}catch(i){}if(PP(e,t))return EP(!TP(IP.f,e,t),e[t])}});var hc=b((XN,Kf)=>{"use strict";var AP=me(),RP=oe(),$P=/#|\.prototype\./,fa=function(s,e){var t=LP[MP(s)];return t===DP?!0:t===CP?!1:RP(e)?AP(e):!!e},MP=fa.normalize=function(s){return String(s).replace($P,".").toLowerCase()},LP=fa.data={},CP=fa.NATIVE="N",DP=fa.POLYFILL="P";Kf.exports=fa});var lr=b((JN,Jf)=>{"use strict";var Xf=zu(),BP=ht(),VP=oa(),_P=Xf(Xf.bind);Jf.exports=function(s,e){return BP(s),e===void 0?s:VP?_P(s,e):function(){return s.apply(e,arguments)}}});var fc=b((ZN,Zf)=>{"use strict";var OP=Ue(),NP=me();Zf.exports=OP&&NP(function(){return Object.defineProperty(function(){},"prototype",{value:42,writable:!1}).prototype!==42})});var ft=b((eF,em)=>{"use strict";var FP=Ce(),UP=String,qP=TypeError;em.exports=function(s){if(FP(s))return s;throw new qP(UP(s)+" is not an object")}});var xi=b(im=>{"use strict";var HP=Ue(),jP=pc(),WP=fc(),wn=ft(),tm=lc(),QP=TypeError,mc=Object.defineProperty,zP=Object.getOwnPropertyDescriptor,bc="enumerable",gc="configurable",vc="writable";im.f=HP?WP?function(e,t,i){if(wn(e),t=tm(t),wn(i),typeof e=="function"&&t==="prototype"&&"value"in i&&vc in i&&!i[vc]){var r=zP(e,t);r&&r[vc]&&(e[t]=i.value,i={configurable:gc in i?i[gc]:r[gc],enumerable:bc in i?i[bc]:r[bc],writable:!1})}return mc(e,t,i)}:mc:function(e,t,i){if(wn(e),t=tm(t),wn(i),jP)try{return mc(e,t,i)}catch(r){}if("get"in i||"set"in i)throw new QP("Accessors not supported");return"value"in i&&(e[t]=i.value),e}});var dr=b((iF,rm)=>{"use strict";var GP=Ue(),YP=xi(),KP=ua();rm.exports=GP?function(s,e,t){return YP.f(s,e,KP(1,t))}:function(s,e,t){return s[e]=t,s}});var de=b((rF,sm)=>{"use strict";var ma=ne(),XP=Wu(),JP=zu(),ZP=oe(),ek=Yf().f,tk=hc(),pr=Ei(),ik=lr(),hr=dr(),am=st();ha();var rk=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 XP(s,this,arguments)};return e.prototype=s.prototype,e};sm.exports=function(s,e){var t=s.target,i=s.global,r=s.stat,a=s.proto,n=i?ma:r?ma[t]:ma[t]&&ma[t].prototype,o=i?pr:pr[t]||hr(pr,t,{})[t],u=o.prototype,c,d,l,p,h,f,m,v,g;for(p in e)c=tk(i?p:t+(r?".":"#")+p,s.forced),d=!c&&n&&am(n,p),f=o[p],d&&(s.dontCallGetSet?(g=ek(n,p),m=g&&g.value):m=n[p]),h=d&&m?m:e[p],!(!c&&!a&&typeof f==typeof h)&&(s.bind&&d?v=ik(h,ma):s.wrap&&d?v=rk(h):a&&ZP(h)?v=JP(h):v=h,(s.sham||h&&h.sham||f&&f.sham)&&hr(v,"sham",!0),hr(o,p,v),a&&(l=t+"Prototype",am(pr,l)||hr(pr,l,{}),hr(pr[l],p,h),s.real&&u&&(c||!u[p])&&hr(u,p,h)))}});var xn=b((aF,om)=>{"use strict";var ak=oc(),sk=uc(),nm=ak("keys");om.exports=function(s){return nm[s]||(nm[s]=sk(s))}});var cm=b((sF,um)=>{"use strict";var nk=me();um.exports=!nk(function(){function s(){}return s.prototype.constructor=null,Object.getPrototypeOf(new s)!==s.prototype})});var Pn=b((nF,dm)=>{"use strict";var ok=st(),uk=oe(),ck=ur(),lk=xn(),dk=cm(),lm=lk("IE_PROTO"),Sc=Object,pk=Sc.prototype;dm.exports=dk?Sc.getPrototypeOf:function(s){var e=ck(s);if(ok(e,lm))return e[lm];var t=e.constructor;return uk(t)&&e instanceof t?t.prototype:e instanceof Sc?pk:null}});var hm=b((oF,pm)=>{"use strict";var hk=Math.ceil,fk=Math.floor;pm.exports=Math.trunc||function(e){var t=+e;return(t>0?fk:hk)(t)}});var ba=b((uF,fm)=>{"use strict";var mk=hm();fm.exports=function(s){var e=+s;return e!==e||e===0?0:mk(e)}});var bm=b((cF,mm)=>{"use strict";var bk=ba(),gk=Math.max,vk=Math.min;mm.exports=function(s,e){var t=bk(s);return t<0?gk(t+e,0):vk(t,e)}});var yc=b((lF,gm)=>{"use strict";var Sk=ba(),yk=Math.min;gm.exports=function(s){var e=Sk(s);return e>0?yk(e,9007199254740991):0}});var fr=b((dF,vm)=>{"use strict";var Tk=yc();vm.exports=function(s){return Tk(s.length)}});var Tc=b((pF,ym)=>{"use strict";var Ik=Ii(),Ek=bm(),wk=fr(),Sm=function(s){return function(e,t,i){var r=Ik(e),a=wk(r);if(a===0)return!s&&-1;var n=Ek(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}};ym.exports={includes:Sm(!0),indexOf:Sm(!1)}});var kn=b((hF,Tm)=>{"use strict";Tm.exports={}});var wm=b((fF,Em)=>{"use strict";var xk=be(),Ic=st(),Pk=Ii(),kk=Tc().indexOf,Ak=kn(),Im=xk([].push);Em.exports=function(s,e){var t=Pk(s),i=0,r=[],a;for(a in t)!Ic(Ak,a)&&Ic(t,a)&&Im(r,a);for(;e.length>i;)Ic(t,a=e[i++])&&(~kk(r,a)||Im(r,a));return r}});var Ec=b((mF,xm)=>{"use strict";xm.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]});var wc=b((bF,Pm)=>{"use strict";var Rk=wm(),$k=Ec();Pm.exports=Object.keys||function(e){return Rk(e,$k)}});var xc=b((gF,Mm)=>{"use strict";var Am=Ue(),Mk=me(),Rm=be(),Lk=Pn(),Ck=wc(),Dk=Ii(),Bk=Yu().f,$m=Rm(Bk),Vk=Rm([].push),_k=Am&&Mk(function(){var s=Object.create(null);return s[2]=2,!$m(s,2)}),km=function(s){return function(e){for(var t=Dk(e),i=Ck(t),r=_k&&Lk(t)===null,a=i.length,n=0,o=[],u;a>n;)u=i[n++],(!Am||(r?u in t:$m(t,u)))&&Vk(o,s?[u,t[u]]:t[u]);return o}};Mm.exports={entries:km(!0),values:km(!1)}});var Lm=b(()=>{"use strict";var Ok=de(),Nk=xc().values;Ok({target:"Object",stat:!0},{values:function(e){return Nk(e)}})});var Dm=b((yF,Cm)=>{"use strict";Lm();var Fk=Ei();Cm.exports=Fk.Object.values});var Vm=b((TF,Bm)=>{"use strict";var Uk=Dm();Bm.exports=Uk});var Pi=b((IF,_m)=>{"use strict";var qk=Vm();_m.exports=qk});var ga=b((EF,Om)=>{"use strict";Om.exports=function(){}});var Nm=b(()=>{"use strict";var Hk=de(),jk=Tc().includes,Wk=me(),Qk=ga(),zk=Wk(function(){return!Array(1).includes()});Hk({target:"Array",proto:!0,forced:zk},{includes:function(e){return jk(this,e,arguments.length>1?arguments[1]:void 0)}});Qk("includes")});var Qt=b((PF,Fm)=>{"use strict";var Gk=xt();Fm.exports=Gk});var qm=b((kF,Um)=>{"use strict";Nm();var Yk=Qt();Um.exports=Yk("Array","includes")});var jm=b((AF,Hm)=>{"use strict";var Kk=qm();Hm.exports=Kk});var De=b((RF,Wm)=>{"use strict";var Xk=jm();Wm.exports=Xk});var vb=b(()=>{"use strict";var BA=de(),VA=xc().entries;BA({target:"Object",stat:!0},{entries:function(e){return VA(e)}})});var yb=b((Rq,Sb)=>{"use strict";vb();var _A=Ei();Sb.exports=_A.Object.entries});var Ib=b(($q,Tb)=>{"use strict";var OA=yb();Tb.exports=OA});var Gt=b((Mq,Eb)=>{"use strict";var NA=Ib();Eb.exports=NA});var Ri=b((Lq,wb)=>{"use strict";wb.exports={}});var kb=b((Cq,Pb)=>{"use strict";var FA=ne(),UA=oe(),xb=FA.WeakMap;Pb.exports=UA(xb)&&/native code/.test(String(xb))});var Hc=b((Dq,$b)=>{"use strict";var qA=kb(),Rb=ne(),HA=Ce(),jA=dr(),Fc=st(),Uc=ha(),WA=xn(),QA=kn(),Ab="Object already initialized",qc=Rb.TypeError,zA=Rb.WeakMap,Nn,Ia,Fn,GA=function(s){return Fn(s)?Ia(s):Nn(s,{})},YA=function(s){return function(e){var t;if(!HA(e)||(t=Ia(e)).type!==s)throw new qc("Incompatible receiver, "+s+" required");return t}};qA||Uc.state?(nt=Uc.state||(Uc.state=new zA),nt.get=nt.get,nt.has=nt.has,nt.set=nt.set,Nn=function(s,e){if(nt.has(s))throw new qc(Ab);return e.facade=s,nt.set(s,e),e},Ia=function(s){return nt.get(s)||{}},Fn=function(s){return nt.has(s)}):($i=WA("state"),QA[$i]=!0,Nn=function(s,e){if(Fc(s,$i))throw new qc(Ab);return e.facade=s,jA(s,$i,e),e},Ia=function(s){return Fc(s,$i)?s[$i]:{}},Fn=function(s){return Fc(s,$i)});var nt,$i;$b.exports={set:Nn,get:Ia,has:Fn,enforce:GA,getterFor:YA}});var Qc=b((Bq,Lb)=>{"use strict";var jc=Ue(),KA=st(),Mb=Function.prototype,XA=jc&&Object.getOwnPropertyDescriptor,Wc=KA(Mb,"name"),JA=Wc&&function(){}.name==="something",ZA=Wc&&(!jc||jc&&XA(Mb,"name").configurable);Lb.exports={EXISTS:Wc,PROPER:JA,CONFIGURABLE:ZA}});var Db=b(Cb=>{"use strict";var eR=Ue(),tR=fc(),iR=xi(),rR=ft(),aR=Ii(),sR=wc();Cb.f=eR&&!tR?Object.defineProperties:function(e,t){rR(e);for(var i=aR(t),r=sR(t),a=r.length,n=0,o;a>n;)iR.f(e,o=r[n++],i[o]);return e}});var zc=b((_q,Bb)=>{"use strict";var nR=xt();Bb.exports=nR("document","documentElement")});var Xc=b((Oq,qb)=>{"use strict";var oR=ft(),uR=Db(),Vb=Ec(),cR=kn(),lR=zc(),dR=En(),pR=xn(),_b=">",Ob="<",Yc="prototype",Kc="script",Fb=pR("IE_PROTO"),Gc=function(){},Ub=function(s){return Ob+Kc+_b+s+Ob+"/"+Kc+_b},Nb=function(s){s.write(Ub("")),s.close();var e=s.parentWindow.Object;return s=null,e},hR=function(){var s=dR("iframe"),e="java"+Kc+":",t;return s.style.display="none",lR.appendChild(s),s.src=String(e),t=s.contentWindow.document,t.open(),t.write(Ub("document.F=Object")),t.close(),t.F},Un,qn=function(){try{Un=new ActiveXObject("htmlfile")}catch(e){}qn=typeof document!="undefined"?document.domain&&Un?Nb(Un):hR():Nb(Un);for(var s=Vb.length;s--;)delete qn[Yc][Vb[s]];return qn()};cR[Fb]=!0;qb.exports=Object.create||function(e,t){var i;return e!==null?(Gc[Yc]=oR(e),i=new Gc,Gc[Yc]=null,i[Fb]=e):i=qn(),t===void 0?i:uR.f(i,t)}});var vr=b((Nq,Hb)=>{"use strict";var fR=dr();Hb.exports=function(s,e,t,i){return i&&i.enumerable?s[e]=t:fR(s,e,t),s}});var tl=b((Fq,Qb)=>{"use strict";var mR=me(),bR=oe(),gR=Ce(),vR=Xc(),jb=Pn(),SR=vr(),yR=we(),TR=at(),el=yR("iterator"),Wb=!1,kt,Jc,Zc;[].keys&&(Zc=[].keys(),"next"in Zc?(Jc=jb(jb(Zc)),Jc!==Object.prototype&&(kt=Jc)):Wb=!0);var IR=!gR(kt)||mR(function(){var s={};return kt[el].call(s)!==s});IR?kt={}:TR&&(kt=vR(kt));bR(kt[el])||SR(kt,el,function(){return this});Qb.exports={IteratorPrototype:kt,BUGGY_SAFARI_ITERATORS:Wb}});var Hn=b((Uq,Gb)=>{"use strict";var ER=we(),wR=ER("toStringTag"),zb={};zb[wR]="z";Gb.exports=String(zb)==="[object z]"});var Ea=b((qq,Yb)=>{"use strict";var xR=Hn(),PR=oe(),jn=Ti(),kR=we(),AR=kR("toStringTag"),RR=Object,$R=jn(function(){return arguments}())==="Arguments",MR=function(s,e){try{return s[e]}catch(t){}};Yb.exports=xR?jn:function(s){var e,t,i;return s===void 0?"Undefined":s===null?"Null":typeof(t=MR(e=RR(s),AR))=="string"?t:$R?jn(e):(i=jn(e))==="Object"&&PR(e.callee)?"Arguments":i}});var Xb=b((Hq,Kb)=>{"use strict";var LR=Hn(),CR=Ea();Kb.exports=LR?{}.toString:function(){return"[object "+CR(this)+"]"}});var wa=b((jq,Zb)=>{"use strict";var DR=Hn(),BR=xi().f,VR=dr(),_R=st(),OR=Xb(),NR=we(),Jb=NR("toStringTag");Zb.exports=function(s,e,t,i){var r=t?s:s&&s.prototype;r&&(_R(r,Jb)||BR(r,Jb,{configurable:!0,value:e}),i&&!DR&&VR(r,"toString",OR))}});var tg=b((Wq,eg)=>{"use strict";var FR=tl().IteratorPrototype,UR=Xc(),qR=ua(),HR=wa(),jR=Ri(),WR=function(){return this};eg.exports=function(s,e,t,i){var r=e+" Iterator";return s.prototype=UR(FR,{next:qR(+!i,t)}),HR(s,r,!1,!0),jR[r]=WR,s}});var rg=b((Qq,ig)=>{"use strict";var QR=be(),zR=ht();ig.exports=function(s,e,t){try{return QR(zR(Object.getOwnPropertyDescriptor(s,e)[t]))}catch(i){}}});var sg=b((zq,ag)=>{"use strict";var GR=Ce();ag.exports=function(s){return GR(s)||s===null}});var og=b((Gq,ng)=>{"use strict";var YR=sg(),KR=String,XR=TypeError;ng.exports=function(s){if(YR(s))return s;throw new XR("Can't set "+KR(s)+" as a prototype")}});var il=b((Yq,ug)=>{"use strict";var JR=rg(),ZR=Ce(),e$=Wt(),t$=og();ug.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var s=!1,e={},t;try{t=JR(Object.prototype,"__proto__","set"),t(e,[]),s=e instanceof Array}catch(i){}return function(r,a){return e$(r),t$(a),ZR(r)&&(s?t(r,a):r.__proto__=a),r}}():void 0)});var Sg=b((Kq,vg)=>{"use strict";var i$=de(),r$=qe(),Wn=at(),bg=Qc(),a$=oe(),s$=tg(),cg=Pn(),lg=il(),n$=wa(),o$=dr(),rl=vr(),u$=we(),dg=Ri(),gg=tl(),c$=bg.PROPER,l$=bg.CONFIGURABLE,pg=gg.IteratorPrototype,Qn=gg.BUGGY_SAFARI_ITERATORS,xa=u$("iterator"),hg="keys",Pa="values",fg="entries",mg=function(){return this};vg.exports=function(s,e,t,i,r,a,n){s$(t,e,i);var o=function(g){if(g===r&&p)return p;if(!Qn&&g&&g in d)return d[g];switch(g){case hg:return function(){return new t(this,g)};case Pa:return function(){return new t(this,g)};case fg:return function(){return new t(this,g)}}return function(){return new t(this)}},u=e+" Iterator",c=!1,d=s.prototype,l=d[xa]||d["@@iterator"]||r&&d[r],p=!Qn&&l||o(r),h=e==="Array"&&d.entries||l,f,m,v;if(h&&(f=cg(h.call(new s)),f!==Object.prototype&&f.next&&(!Wn&&cg(f)!==pg&&(lg?lg(f,pg):a$(f[xa])||rl(f,xa,mg)),n$(f,u,!0,!0),Wn&&(dg[u]=mg))),c$&&r===Pa&&l&&l.name!==Pa&&(!Wn&&l$?o$(d,"name",Pa):(c=!0,p=function(){return r$(l,this)})),r)if(m={values:o(Pa),keys:a?p:o(hg),entries:o(fg)},n)for(v in m)(Qn||c||!(v in d))&&rl(d,v,m[v]);else i$({target:e,proto:!0,forced:Qn||c},m);return(!Wn||n)&&d[xa]!==p&&rl(d,xa,p,{name:r}),dg[e]=p,m}});var Tg=b((Xq,yg)=>{"use strict";yg.exports=function(s,e){return{value:s,done:e}}});var sl=b((Jq,Pg)=>{"use strict";var d$=Ii(),al=ga(),Ig=Ri(),wg=Hc(),p$=xi().f,h$=Sg(),zn=Tg(),f$=at(),m$=Ue(),xg="Array Iterator",b$=wg.set,g$=wg.getterFor(xg);Pg.exports=h$(Array,"Array",function(s,e){b$(this,{type:xg,target:d$(s),index:0,kind:e})},function(){var s=g$(this),e=s.target,t=s.index++;if(!e||t>=e.length)return s.target=null,zn(void 0,!0);switch(s.kind){case"keys":return zn(t,!1);case"values":return zn(e[t],!1)}return zn([t,e[t]],!1)},"values");var Eg=Ig.Arguments=Ig.Array;al("keys");al("values");al("entries");if(!f$&&m$&&Eg.name!=="values")try{p$(Eg,"name",{value:"values"})}catch(s){}});var Ag=b((Zq,kg)=>{"use strict";var v$=we(),S$=Ri(),y$=v$("iterator"),T$=Array.prototype;kg.exports=function(s){return s!==void 0&&(S$.Array===s||T$[y$]===s)}});var nl=b((e1,$g)=>{"use strict";var I$=Ea(),Rg=pa(),E$=ca(),w$=Ri(),x$=we(),P$=x$("iterator");$g.exports=function(s){if(!E$(s))return Rg(s,P$)||Rg(s,"@@iterator")||w$[I$(s)]}});var Lg=b((t1,Mg)=>{"use strict";var k$=qe(),A$=ht(),R$=ft(),$$=da(),M$=nl(),L$=TypeError;Mg.exports=function(s,e){var t=arguments.length<2?M$(s):e;if(A$(t))return R$(k$(t,s));throw new L$($$(s)+" is not iterable")}});var Bg=b((i1,Dg)=>{"use strict";var C$=qe(),Cg=ft(),D$=pa();Dg.exports=function(s,e,t){var i,r;Cg(s);try{if(i=D$(s,"return"),!i){if(e==="throw")throw t;return t}i=C$(i,s)}catch(a){r=!0,i=a}if(e==="throw")throw t;if(r)throw i;return Cg(i),t}});var Yn=b((r1,Ng)=>{"use strict";var B$=lr(),V$=qe(),_$=ft(),O$=da(),N$=Ag(),F$=fr(),Vg=la(),U$=Lg(),q$=nl(),_g=Bg(),H$=TypeError,Gn=function(s,e){this.stopped=s,this.result=e},Og=Gn.prototype;Ng.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=B$(e,i),c,d,l,p,h,f,m,v=function(S){return c&&_g(c,"normal"),new Gn(!0,S)},g=function(S){return r?(_$(S),o?u(S[0],S[1],v):u(S[0],S[1])):o?u(S,v):u(S)};if(a)c=s.iterator;else if(n)c=s;else{if(d=q$(s),!d)throw new H$(O$(s)+" is not iterable");if(N$(d)){for(l=0,p=F$(s);p>l;l++)if(h=g(s[l]),h&&Vg(Og,h))return h;return new Gn(!1)}c=U$(s,d)}for(f=a?s.next:c.next;!(m=V$(f,c)).done;){try{h=g(m.value)}catch(S){_g(c,"throw",S)}if(typeof h=="object"&&h&&Vg(Og,h))return h}return new Gn(!1)}});var Ug=b((a1,Fg)=>{"use strict";var j$=Ue(),W$=xi(),Q$=ua();Fg.exports=function(s,e,t){j$?W$.f(s,e,Q$(0,t)):s[e]=t}});var qg=b(()=>{"use strict";var z$=de(),G$=Yn(),Y$=Ug();z$({target:"Object",stat:!0},{fromEntries:function(e){var t={};return G$(e,function(i,r){Y$(t,i,r)},{AS_ENTRIES:!0}),t}})});var jg=b((o1,Hg)=>{"use strict";sl();qg();var K$=Ei();Hg.exports=K$.Object.fromEntries});var Qg=b((u1,Wg)=>{"use strict";Wg.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 Gg=b(()=>{"use strict";sl();var X$=Qg(),J$=ne(),Z$=wa(),zg=Ri();for(Kn in X$)Z$(J$[Kn],Kn),zg[Kn]=zg.Array;var Kn});var Kg=b((d1,Yg)=>{"use strict";var eM=jg();Gg();Yg.exports=eM});var ol=b((p1,Xg)=>{"use strict";var tM=Kg();Xg.exports=tM});var Jg=b(()=>{"use strict"});var ul=b((m1,Zg)=>{"use strict";var ka=ne(),iM=wi(),rM=Ti(),Xn=function(s){return iM.slice(0,s.length)===s};Zg.exports=function(){return Xn("Bun/")?"BUN":Xn("Cloudflare-Workers")?"CLOUDFLARE":Xn("Deno/")?"DENO":Xn("Node.js/")?"NODE":ka.Bun&&typeof Bun.version=="string"?"BUN":ka.Deno&&typeof Deno.version=="object"?"DENO":rM(ka.process)==="process"?"NODE":ka.window&&ka.document?"BROWSER":"REST"}()});var Jn=b((b1,ev)=>{"use strict";var aM=ul();ev.exports=aM==="NODE"});var iv=b((g1,tv)=>{"use strict";var sM=xi();tv.exports=function(s,e,t){return sM.f(s,e,t)}});var sv=b((v1,av)=>{"use strict";var nM=xt(),oM=iv(),uM=we(),cM=Ue(),rv=uM("species");av.exports=function(s){var e=nM(s);cM&&e&&!e[rv]&&oM(e,rv,{configurable:!0,get:function(){return this}})}});var ov=b((S1,nv)=>{"use strict";var lM=la(),dM=TypeError;nv.exports=function(s,e){if(lM(e,s))return s;throw new dM("Incorrect invocation")}});var ll=b((y1,uv)=>{"use strict";var pM=be(),hM=oe(),cl=ha(),fM=pM(Function.toString);hM(cl.inspectSource)||(cl.inspectSource=function(s){return fM(s)});uv.exports=cl.inspectSource});var pl=b((T1,hv)=>{"use strict";var mM=be(),bM=me(),cv=oe(),gM=Ea(),vM=xt(),SM=ll(),lv=function(){},dv=vM("Reflect","construct"),dl=/^\s*(?:class|function)\b/,yM=mM(dl.exec),TM=!dl.test(lv),Aa=function(e){if(!cv(e))return!1;try{return dv(lv,[],e),!0}catch(t){return!1}},pv=function(e){if(!cv(e))return!1;switch(gM(e)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return TM||!!yM(dl,SM(e))}catch(t){return!0}};pv.sham=!0;hv.exports=!dv||bM(function(){var s;return Aa(Aa.call)||!Aa(Object)||!Aa(function(){s=!0})||s})?pv:Aa});var mv=b((I1,fv)=>{"use strict";var IM=pl(),EM=da(),wM=TypeError;fv.exports=function(s){if(IM(s))return s;throw new wM(EM(s)+" is not a constructor")}});var hl=b((E1,gv)=>{"use strict";var bv=ft(),xM=mv(),PM=ca(),kM=we(),AM=kM("species");gv.exports=function(s,e){var t=bv(s).constructor,i;return t===void 0||PM(i=bv(t)[AM])?e:xM(i)}});var Sv=b((w1,vv)=>{"use strict";var RM=be();vv.exports=RM([].slice)});var Tv=b((x1,yv)=>{"use strict";var $M=TypeError;yv.exports=function(s,e){if(s<e)throw new $M("Not enough arguments");return s}});var fl=b((P1,Iv)=>{"use strict";var MM=wi();Iv.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(MM)});var El=b((k1,Mv)=>{"use strict";var je=ne(),LM=Wu(),CM=lr(),Ev=oe(),DM=st(),$v=me(),wv=zc(),BM=Sv(),xv=En(),VM=Tv(),_M=fl(),OM=Jn(),yl=je.setImmediate,Tl=je.clearImmediate,NM=je.process,ml=je.Dispatch,FM=je.Function,Pv=je.MessageChannel,UM=je.String,bl=0,Ra={},kv="onreadystatechange",$a,Mi,gl,vl;$v(function(){$a=je.location});var Il=function(s){if(DM(Ra,s)){var e=Ra[s];delete Ra[s],e()}},Sl=function(s){return function(){Il(s)}},Av=function(s){Il(s.data)},Rv=function(s){je.postMessage(UM(s),$a.protocol+"//"+$a.host)};(!yl||!Tl)&&(yl=function(e){VM(arguments.length,1);var t=Ev(e)?e:FM(e),i=BM(arguments,1);return Ra[++bl]=function(){LM(t,void 0,i)},Mi(bl),bl},Tl=function(e){delete Ra[e]},OM?Mi=function(s){NM.nextTick(Sl(s))}:ml&&ml.now?Mi=function(s){ml.now(Sl(s))}:Pv&&!_M?(gl=new Pv,vl=gl.port2,gl.port1.onmessage=Av,Mi=CM(vl.postMessage,vl)):je.addEventListener&&Ev(je.postMessage)&&!je.importScripts&&$a&&$a.protocol!=="file:"&&!$v(Rv)?(Mi=Rv,je.addEventListener("message",Av,!1)):kv in xv("script")?Mi=function(s){wv.appendChild(xv("script"))[kv]=function(){wv.removeChild(this),Il(s)}}:Mi=function(s){setTimeout(Sl(s),0)});Mv.exports={set:yl,clear:Tl}});var Dv=b((A1,Cv)=>{"use strict";var Lv=ne(),qM=Ue(),HM=Object.getOwnPropertyDescriptor;Cv.exports=function(s){if(!qM)return Lv[s];var e=HM(Lv,s);return e&&e.value}});var wl=b((R1,Vv)=>{"use strict";var Bv=function(){this.head=null,this.tail=null};Bv.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}}};Vv.exports=Bv});var Ov=b(($1,_v)=>{"use strict";var jM=wi();_v.exports=/ipad|iphone|ipod/i.test(jM)&&typeof Pebble!="undefined"});var Fv=b((M1,Nv)=>{"use strict";var WM=wi();Nv.exports=/web0s(?!.*chrome)/i.test(WM)});var zv=b((L1,Qv)=>{"use strict";var yr=ne(),QM=Dv(),Uv=lr(),xl=El().set,zM=wl(),GM=fl(),YM=Ov(),KM=Fv(),Pl=Jn(),qv=yr.MutationObserver||yr.WebKitMutationObserver,Hv=yr.document,jv=yr.process,Zn=yr.Promise,Rl=QM("queueMicrotask"),Sr,kl,Al,eo,Wv;Rl||(Ma=new zM,La=function(){var s,e;for(Pl&&(s=jv.domain)&&s.exit();e=Ma.get();)try{e()}catch(t){throw Ma.head&&Sr(),t}s&&s.enter()},!GM&&!Pl&&!KM&&qv&&Hv?(kl=!0,Al=Hv.createTextNode(""),new qv(La).observe(Al,{characterData:!0}),Sr=function(){Al.data=kl=!kl}):!YM&&Zn&&Zn.resolve?(eo=Zn.resolve(void 0),eo.constructor=Zn,Wv=Uv(eo.then,eo),Sr=function(){Wv(La)}):Pl?Sr=function(){jv.nextTick(La)}:(xl=Uv(xl,yr),Sr=function(){xl(La)}),Rl=function(s){Ma.head||Sr(),Ma.add(s)});var Ma,La;Qv.exports=Rl});var Yv=b((C1,Gv)=>{"use strict";Gv.exports=function(s,e){try{arguments.length===1?console.error(s):console.error(s,e)}catch(t){}}});var to=b((D1,Kv)=>{"use strict";Kv.exports=function(s){try{return{error:!1,value:s()}}catch(e){return{error:!0,value:e}}}});var Li=b((B1,Xv)=>{"use strict";var XM=ne();Xv.exports=XM.Promise});var Tr=b((V1,tS)=>{"use strict";var JM=ne(),Ca=Li(),ZM=oe(),eL=hc(),tL=ll(),iL=we(),Jv=ul(),rL=at(),$l=ec(),Zv=Ca&&Ca.prototype,aL=iL("species"),Ml=!1,eS=ZM(JM.PromiseRejectionEvent),sL=eL("Promise",function(){var s=tL(Ca),e=s!==String(Ca);if(!e&&$l===66||rL&&!(Zv.catch&&Zv.finally))return!0;if(!$l||$l<51||!/native code/.test(s)){var t=new Ca(function(a){a(1)}),i=function(a){a(function(){},function(){})},r=t.constructor={};if(r[aL]=i,Ml=t.then(function(){})instanceof i,!Ml)return!0}return!e&&(Jv==="BROWSER"||Jv==="DENO")&&!eS});tS.exports={CONSTRUCTOR:sL,REJECTION_EVENT:eS,SUBCLASSING:Ml}});var Ir=b((_1,rS)=>{"use strict";var iS=ht(),nL=TypeError,oL=function(s){var e,t;this.promise=new s(function(i,r){if(e!==void 0||t!==void 0)throw new nL("Bad Promise constructor");e=i,t=r}),this.resolve=iS(e),this.reject=iS(t)};rS.exports.f=function(s){return new oL(s)}});var ES=b(()=>{"use strict";var uL=de(),cL=at(),so=Jn(),Yt=ne(),lL=Ei(),Pr=qe(),aS=vr(),sS=il(),dL=wa(),pL=sv(),hL=ht(),ao=oe(),fL=Ce(),mL=ov(),bL=hl(),lS=El().set,Vl=zv(),gL=Yv(),vL=to(),SL=wl(),dS=Hc(),no=Li(),_l=Tr(),pS=Ir(),oo="Promise",hS=_l.CONSTRUCTOR,yL=_l.REJECTION_EVENT,TL=_l.SUBCLASSING,Ll=dS.getterFor(oo),IL=dS.set,Er=no&&no.prototype,Ci=no,io=Er,fS=Yt.TypeError,Cl=Yt.document,Ol=Yt.process,Dl=pS.f,EL=Dl,wL=!!(Cl&&Cl.createEvent&&Yt.dispatchEvent),mS="unhandledrejection",xL="rejectionhandled",nS=0,bS=1,PL=2,Nl=1,gS=2,ro,oS,vS,uS,SS=function(s){var e;return fL(s)&&ao(e=s.then)?e:!1},yS=function(s,e){var t=e.value,i=e.state===bS,r=i?s.ok:s.fail,a=s.resolve,n=s.reject,o=s.domain,u,c,d;try{r?(i||(e.rejection===gS&&AL(e),e.rejection=Nl),r===!0?u=t:(o&&o.enter(),u=r(t),o&&(o.exit(),d=!0)),u===s.promise?n(new fS("Promise-chain cycle")):(c=SS(u))?Pr(c,u,a,n):a(u)):n(t)}catch(l){o&&!d&&o.exit(),n(l)}},TS=function(s,e){s.notified||(s.notified=!0,Vl(function(){for(var t=s.reactions,i;i=t.get();)yS(i,s);s.notified=!1,e&&!s.rejection&&kL(s)}))},IS=function(s,e,t){var i,r;wL?(i=Cl.createEvent("Event"),i.promise=e,i.reason=t,i.initEvent(s,!1,!0),Yt.dispatchEvent(i)):i={promise:e,reason:t},!yL&&(r=Yt["on"+s])?r(i):s===mS&&gL("Unhandled promise rejection",t)},kL=function(s){Pr(lS,Yt,function(){var e=s.facade,t=s.value,i=cS(s),r;if(i&&(r=vL(function(){so?Ol.emit("unhandledRejection",t,e):IS(mS,e,t)}),s.rejection=so||cS(s)?gS:Nl,r.error))throw r.value})},cS=function(s){return s.rejection!==Nl&&!s.parent},AL=function(s){Pr(lS,Yt,function(){var e=s.facade;so?Ol.emit("rejectionHandled",e):IS(xL,e,s.value)})},wr=function(s,e,t){return function(i){s(e,i,t)}},xr=function(s,e,t){s.done||(s.done=!0,t&&(s=t),s.value=e,s.state=PL,TS(s,!0))},Bl=function(s,e,t){if(!s.done){s.done=!0,t&&(s=t);try{if(s.facade===e)throw new fS("Promise can't be resolved itself");var i=SS(e);i?Vl(function(){var r={done:!1};try{Pr(i,e,wr(Bl,r,s),wr(xr,r,s))}catch(a){xr(r,a,s)}}):(s.value=e,s.state=bS,TS(s,!1))}catch(r){xr({done:!1},r,s)}}};if(hS&&(Ci=function(e){mL(this,io),hL(e),Pr(ro,this);var t=Ll(this);try{e(wr(Bl,t),wr(xr,t))}catch(i){xr(t,i)}},io=Ci.prototype,ro=function(e){IL(this,{type:oo,done:!1,notified:!1,parent:!1,reactions:new SL,rejection:!1,state:nS,value:null})},ro.prototype=aS(io,"then",function(e,t){var i=Ll(this),r=Dl(bL(this,Ci));return i.parent=!0,r.ok=ao(e)?e:!0,r.fail=ao(t)&&t,r.domain=so?Ol.domain:void 0,i.state===nS?i.reactions.add(r):Vl(function(){yS(r,i)}),r.promise}),oS=function(){var s=new ro,e=Ll(s);this.promise=s,this.resolve=wr(Bl,e),this.reject=wr(xr,e)},pS.f=Dl=function(s){return s===Ci||s===vS?new oS(s):EL(s)},!cL&&ao(no)&&Er!==Object.prototype)){uS=Er.then,TL||aS(Er,"then",function(e,t){var i=this;return new Ci(function(r,a){Pr(uS,i,r,a)}).then(e,t)},{unsafe:!0});try{delete Er.constructor}catch(s){}sS&&sS(Er,io)}uL({global:!0,constructor:!0,wrap:!0,forced:hS},{Promise:Ci});vS=lL.Promise;dL(Ci,oo,!1,!0);pL(oo)});var AS=b((F1,kS)=>{"use strict";var RL=we(),xS=RL("iterator"),PS=!1;try{wS=0,Fl={next:function(){return{done:!!wS++}},return:function(){PS=!0}},Fl[xS]=function(){return this},Array.from(Fl,function(){throw 2})}catch(s){}var wS,Fl;kS.exports=function(s,e){try{if(!e&&!PS)return!1}catch(r){return!1}var t=!1;try{var i={};i[xS]=function(){return{next:function(){return{done:t=!0}}}},s(i)}catch(r){}return t}});var Ul=b((U1,RS)=>{"use strict";var $L=Li(),ML=AS(),LL=Tr().CONSTRUCTOR;RS.exports=LL||!ML(function(s){$L.all(s).then(void 0,function(){})})});var $S=b(()=>{"use strict";var CL=de(),DL=qe(),BL=ht(),VL=Ir(),_L=to(),OL=Yn(),NL=Ul();CL({target:"Promise",stat:!0,forced:NL},{all:function(e){var t=this,i=VL.f(t),r=i.resolve,a=i.reject,n=_L(function(){var o=BL(t.resolve),u=[],c=0,d=1;OL(e,function(l){var p=c++,h=!1;d++,DL(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 LS=b(()=>{"use strict";var FL=de(),UL=at(),qL=Tr().CONSTRUCTOR,Hl=Li(),HL=xt(),jL=oe(),WL=vr(),MS=Hl&&Hl.prototype;FL({target:"Promise",proto:!0,forced:qL,real:!0},{catch:function(s){return this.then(void 0,s)}});!UL&&jL(Hl)&&(ql=HL("Promise").prototype.catch,MS.catch!==ql&&WL(MS,"catch",ql,{unsafe:!0}));var ql});var CS=b(()=>{"use strict";var QL=de(),zL=qe(),GL=ht(),YL=Ir(),KL=to(),XL=Yn(),JL=Ul();QL({target:"Promise",stat:!0,forced:JL},{race:function(e){var t=this,i=YL.f(t),r=i.reject,a=KL(function(){var n=GL(t.resolve);XL(e,function(o){zL(n,t,o).then(i.resolve,r)})});return a.error&&r(a.value),i.promise}})});var DS=b(()=>{"use strict";var ZL=de(),eC=Ir(),tC=Tr().CONSTRUCTOR;ZL({target:"Promise",stat:!0,forced:tC},{reject:function(e){var t=eC.f(this),i=t.reject;return i(e),t.promise}})});var jl=b((K1,BS)=>{"use strict";var iC=ft(),rC=Ce(),aC=Ir();BS.exports=function(s,e){if(iC(s),rC(e)&&e.constructor===s)return e;var t=aC.f(s),i=t.resolve;return i(e),t.promise}});var OS=b(()=>{"use strict";var sC=de(),nC=xt(),VS=at(),oC=Li(),_S=Tr().CONSTRUCTOR,uC=jl(),cC=nC("Promise"),lC=VS&&!_S;sC({target:"Promise",stat:!0,forced:VS||_S},{resolve:function(e){return uC(lC&&this===cC?oC:this,e)}})});var NS=b(()=>{"use strict";ES();$S();LS();CS();DS();OS()});var HS=b(()=>{"use strict";var dC=de(),pC=at(),uo=Li(),hC=me(),US=xt(),qS=oe(),fC=hl(),FS=jl(),mC=vr(),Ql=uo&&uo.prototype,bC=!!uo&&hC(function(){Ql.finally.call({then:function(){}},function(){})});dC({target:"Promise",proto:!0,real:!0,forced:bC},{finally:function(s){var e=fC(this,US("Promise")),t=qS(s);return this.then(t?function(i){return FS(e,s()).then(function(){return i})}:s,t?function(i){return FS(e,s()).then(function(){throw i})}:s)}});!pC&&qS(uo)&&(Wl=US("Promise").prototype.finally,Ql.finally!==Wl&&mC(Ql,"finally",Wl,{unsafe:!0}));var Wl});var WS=b((rH,jS)=>{"use strict";Jg();NS();HS();var gC=Qt();jS.exports=gC("Promise","finally")});var zS=b((aH,QS)=>{"use strict";var vC=WS();QS.exports=vC});var zl=b((sH,GS)=>{"use strict";var SC=zS();GS.exports=SC});var hy=b(()=>{"use strict";var GC=de(),YC=ur(),KC=fr(),XC=ba(),JC=ga();GC({target:"Array",proto:!0},{at:function(e){var t=YC(this),i=KC(t),r=XC(e),a=r>=0?r:i+r;return a<0||a>=i?void 0:t[a]}});JC("at")});var my=b((nj,fy)=>{"use strict";hy();var ZC=Qt();fy.exports=ZC("Array","at")});var gy=b((oj,by)=>{"use strict";var eD=my();by.exports=eD});var Ke=b((uj,vy)=>{"use strict";var tD=gy();vy.exports=tD});var Pd=b((EQ,pT)=>{"use strict";var s0=Ti();pT.exports=Array.isArray||function(e){return s0(e)==="Array"}});var fT=b((wQ,hT)=>{"use strict";var n0=TypeError,o0=9007199254740991;hT.exports=function(s){if(s>o0)throw n0("Maximum allowed index exceeded");return s}});var gT=b((xQ,bT)=>{"use strict";var u0=Pd(),c0=fr(),l0=fT(),d0=lr(),mT=function(s,e,t,i,r,a,n,o){for(var u=r,c=0,d=n?d0(n,o):!1,l,p;c<i;)c in t&&(l=d?d(t[c],c,e):t[c],a>0&&u0(l)?(p=c0(l),u=mT(s,e,l,p,u,a-1)-1):(l0(u+1),s[u]=l),u++),c++;return u};bT.exports=mT});var TT=b((PQ,yT)=>{"use strict";var vT=Pd(),p0=pl(),h0=Ce(),f0=we(),m0=f0("species"),ST=Array;yT.exports=function(s){var e;return vT(s)&&(e=s.constructor,p0(e)&&(e===ST||vT(e.prototype))?e=void 0:h0(e)&&(e=e[m0],e===null&&(e=void 0))),e===void 0?ST:e}});var ET=b((kQ,IT)=>{"use strict";var b0=TT();IT.exports=function(s,e){return new(b0(s))(e===0?0:e)}});var wT=b(()=>{"use strict";var g0=de(),v0=gT(),S0=ht(),y0=ur(),T0=fr(),I0=ET();g0({target:"Array",proto:!0},{flatMap:function(e){var t=y0(this),i=T0(t),r;return S0(e),r=I0(t,0),r.length=v0(r,t,t,i,0,1,e,arguments.length>1?arguments[1]:void 0),r}})});var xT=b(()=>{"use strict";var E0=ga();E0("flatMap")});var kT=b((LQ,PT)=>{"use strict";wT();xT();var w0=Qt();PT.exports=w0("Array","flatMap")});var RT=b((CQ,AT)=>{"use strict";var x0=kT();AT.exports=x0});var Ka=b((DQ,$T)=>{"use strict";var P0=RT();$T.exports=P0});var Ja=b((XQ,DT)=>{"use strict";var A0=Ea(),R0=String;DT.exports=function(s){if(A0(s)==="Symbol")throw new TypeError("Cannot convert a Symbol value to a string");return R0(s)}});var Ad=b((JQ,BT)=>{"use strict";BT.exports=`
7
- \v\f\r                 \u2028\u2029\uFEFF`});var OT=b((ZQ,_T)=>{"use strict";var $0=be(),M0=Wt(),L0=Ja(),$d=Ad(),VT=$0("".replace),C0=RegExp("^["+$d+"]+"),D0=RegExp("(^|[^"+$d+"])["+$d+"]+$"),Rd=function(s){return function(e){var t=L0(M0(e));return s&1&&(t=VT(t,C0,"")),s&2&&(t=VT(t,D0,"$1")),t}};_T.exports={start:Rd(1),end:Rd(2),trim:Rd(3)}});var qT=b((ez,UT)=>{"use strict";var B0=Qc().PROPER,V0=me(),NT=Ad(),FT="​…᠎";UT.exports=function(s){return V0(function(){return!!NT[s]()||FT[s]()!==FT||B0&&NT[s].name!==s})}});var Md=b((tz,HT)=>{"use strict";var _0=OT().start,O0=qT();HT.exports=O0("trimStart")?function(){return _0(this)}:"".trimStart});var WT=b(()=>{"use strict";var N0=de(),jT=Md();N0({target:"String",proto:!0,name:"trimStart",forced:"".trimLeft!==jT},{trimLeft:jT})});var zT=b(()=>{"use strict";WT();var F0=de(),QT=Md();F0({target:"String",proto:!0,name:"trimStart",forced:"".trimStart!==QT},{trimStart:QT})});var YT=b((nz,GT)=>{"use strict";zT();var U0=Qt();GT.exports=U0("String","trimLeft")});var XT=b((oz,KT)=>{"use strict";var q0=YT();KT.exports=q0});var ZT=b((uz,JT)=>{"use strict";var H0=XT();JT.exports=H0});var rI=b(()=>{"use strict"});var aI=b(()=>{"use strict"});var nI=b((Hz,sI)=>{"use strict";var Q0=Ce(),z0=Ti(),G0=we(),Y0=G0("match");sI.exports=function(s){var e;return Q0(s)&&((e=s[Y0])!==void 0?!!e:z0(s)==="RegExp")}});var cI=b((jz,uI)=>{"use strict";var K0=ne(),X0=me(),oI=K0.RegExp,J0=!X0(function(){var s=!0;try{oI(".","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(oI.prototype,"flags").get.call(e);return o!==i||t!==i});uI.exports={correct:J0}});var dI=b((Wz,lI)=>{"use strict";var Z0=ft();lI.exports=function(){var s=Z0(this),e="";return s.hasIndices&&(e+="d"),s.global&&(e+="g"),s.ignoreCase&&(e+="i"),s.multiline&&(e+="m"),s.dotAll&&(e+="s"),s.unicode&&(e+="u"),s.unicodeSets&&(e+="v"),s.sticky&&(e+="y"),e}});var fI=b((Qz,hI)=>{"use strict";var eB=qe(),tB=st(),iB=la(),pI=cI(),rB=dI(),aB=RegExp.prototype;hI.exports=pI.correct?function(s){return s.flags}:function(s){return!pI.correct&&iB(aB,s)&&!tB(s,"flags")?eB(rB,s):s.flags}});var bI=b((zz,mI)=>{"use strict";var Bd=be(),sB=ur(),nB=Math.floor,Cd=Bd("".charAt),oB=Bd("".replace),Dd=Bd("".slice),uB=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,cB=/\$([$&'`]|\d{1,2})/g;mI.exports=function(s,e,t,i,r,a){var n=t+s.length,o=i.length,u=cB;return r!==void 0&&(r=sB(r),u=uB),oB(a,u,function(c,d){var l;switch(Cd(d,0)){case"$":return"$";case"&":return s;case"`":return Dd(e,0,t);case"'":return Dd(e,n);case"<":l=r[Dd(d,1,-1)];break;default:var p=+d;if(p===0)return c;if(p>o){var h=nB(p/10);return h===0?c:h<=o?i[h-1]===void 0?Cd(d,1):i[h-1]+Cd(d,1):c}l=i[p-1]}return l===void 0?"":l})}});var SI=b(()=>{"use strict";var lB=de(),dB=qe(),_d=be(),gI=Wt(),pB=oe(),hB=Ce(),fB=nI(),Or=Ja(),mB=pa(),bB=fI(),gB=bI(),vB=we(),SB=at(),yB=vB("replace"),TB=TypeError,Vd=_d("".indexOf),IB=_d("".replace),vI=_d("".slice),EB=Math.max;lB({target:"String",proto:!0},{replaceAll:function(e,t){var i=gI(this),r,a,n,o,u,c,d,l,p,h,f=0,m="";if(hB(e)){if(r=fB(e),r&&(a=Or(gI(bB(e))),!~Vd(a,"g")))throw new TB("`.replaceAll` does not allow non-global regexes");if(n=mB(e,yB),n)return dB(n,e,i,t);if(SB&&r)return IB(Or(i),e,t)}for(o=Or(i),u=Or(e),c=pB(t),c||(t=Or(t)),d=u.length,l=EB(1,d),p=Vd(o,u);p!==-1;)h=c?Or(t(u,p,o)):gB(u,o,p,[],void 0,t),m+=vI(o,f,p)+h,f=p+d,p=p+l>o.length?-1:Vd(o,u,p+l);return f<o.length&&(m+=vI(o,f)),m}})});var TI=b((Kz,yI)=>{"use strict";rI();aI();SI();var wB=Qt();yI.exports=wB("String","replaceAll")});var EI=b((Xz,II)=>{"use strict";var xB=TI();II.exports=xB});var xI=b((Jz,wI)=>{"use strict";var PB=EI();wI.exports=PB});var kI=b((Zz,PI)=>{"use strict";var kB=ba(),AB=Ja(),RB=Wt(),$B=RangeError;PI.exports=function(e){var t=AB(RB(this)),i="",r=kB(e);if(r<0||r===1/0)throw new $B("Wrong number of repetitions");for(;r>0;(r>>>=1)&&(t+=t))r&1&&(i+=t);return i}});var LI=b((eG,MI)=>{"use strict";var $I=be(),MB=yc(),AI=Ja(),LB=kI(),CB=Wt(),DB=$I(LB),BB=$I("".slice),VB=Math.ceil,RI=function(s){return function(e,t,i){var r=AI(CB(e)),a=MB(t),n=r.length,o=i===void 0?" ":AI(i),u,c;return a<=n||o===""?r:(u=a-n,c=DB(o,VB(u/o.length)),c.length>u&&(c=BB(c,0,u)),s?r+c:c+r)}};MI.exports={start:RI(!1),end:RI(!0)}});var DI=b((tG,CI)=>{"use strict";var _B=wi();CI.exports=/Version\/10(?:\.\d+){1,2}(?: [\w./]+)?(?: Mobile\/\w+)? Safari\//.test(_B)});var BI=b(()=>{"use strict";var OB=de(),NB=LI().start,FB=DI();OB({target:"String",proto:!0,forced:FB},{padStart:function(e){return NB(this,e,arguments.length>1?arguments[1]:void 0)}})});var _I=b((aG,VI)=>{"use strict";BI();var UB=Qt();VI.exports=UB("String","padStart")});var NI=b((sG,OI)=>{"use strict";var qB=_I();OI.exports=qB});var UI=b((nG,FI)=>{"use strict";var HB=NI();FI.exports=HB});var Rh="2.0.154-dev.6d21d9b3.0";var ke=(r=>(r.STOPPED="stopped",r.READY="ready",r.PLAYING="playing",r.PAUSED="paused",r))(ke||{}),wt=(y=>(y.MPEG="MPEG",y.DASH="DASH",y.DASH_SEP="DASH_SEP",y.DASH_SEP_VK="DASH_SEP",y.DASH_WEBM="DASH_WEBM",y.DASH_WEBM_AV1="DASH_WEBM_AV1",y.DASH_STREAMS="DASH_STREAMS",y.DASH_WEBM_VK="DASH_WEBM",y.DASH_ONDEMAND="DASH_ONDEMAND",y.DASH_ONDEMAND_VK="DASH_ONDEMAND",y.DASH_LIVE="DASH_LIVE",y.DASH_LIVE_CMAF="DASH_LIVE_CMAF",y.DASH_LIVE_WEBM="DASH_LIVE_WEBM",y.HLS="HLS",y.HLS_ONDEMAND="HLS_ONDEMAND",y.HLS_JS="HLS",y.HLS_FMP4="HLS_FMP4",y.HLS_LIVE="HLS_LIVE",y.HLS_LIVE_CMAF="HLS_LIVE_CMAF",y.WEB_RTC_LIVE="WEB_RTC_LIVE",y))(wt||{}),Uu=(r=>(r.AV1="av1",r.VP9="vp9",r.AVC1="avc1",r.HEV1="hev1",r))(Uu||{});var sa=(r=>(r.NOT_AVAILABLE="NOT_AVAILABLE",r.AVAILABLE="AVAILABLE",r.CONNECTING="CONNECTING",r.CONNECTED="CONNECTED",r))(sa||{}),qu=(i=>(i.HTTP1="http1",i.HTTP2="http2",i.QUIC="quic",i))(qu||{});var Hu=(n=>(n.NONE="none",n.INLINE="inline",n.FULLSCREEN="fullscreen",n.SECOND_SCREEN="second_screen",n.PIP="pip",n.INVISIBLE="invisible",n))(Hu||{}),yn=(i=>(i.TRAFFIC_SAVING="traffic_saving",i.HIGH_QUALITY="high_quality",i.UNKNOWN="unknown",i))(yn||{});var Hp=_(Pi(),1),jw=_(De(),1);import{assertNever as Xm,assertNonNullable as Jk,isNonNullable as An,ValueSubject as Pc,Subject as Zk,Subscription as eA,merge as tA,observableFrom as iA,fromEvent as zm,map as Gm,tap as Ym,filterChanged as rA,isNullable as kc,ErrorCategory as Km}from"@vkontakte/videoplayer-shared/es2018";var Qm=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 Rn=class{constructor(e){this.connection$=new Pc(void 0);this.castState$=new Pc("NOT_AVAILABLE");this.errorEvent$=new Zk;this.realCastState$=new Pc("NOT_AVAILABLE");this.subscription=new eA;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=An((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||Qm("https://www.gstatic.com/cv/js/sender/v1/cast_sender.js?loadCastFramework=1").catch(()=>this.errorEvent$.next({id:"ChromecastLoading",category:Km.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(){An(this.connection$.getValue())?this.disconnect():this.connect()}setVolume(e){let t=this.connection$.getValue();kc(t)||(t.remotePlayer.volumeLevel=e,t.remotePlayerController.setVolumeLevel())}setMuted(e){let t=this.connection$.getValue();kc(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(zm(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 Xm(r.sessionState)}})).add(tA(zm(i,cast.framework.CastContextEventType.CAST_STATE_CHANGED).pipe(Ym(r=>{this.log({message:`[cast.framework.RemotePlayerEventType.CAST_STATE_CHANGED]: ${JSON.stringify(r)}`})}),Gm(r=>r.castState)),iA([i.getCastState()])).pipe(rA(),Gm(aA),Ym(r=>{this.log({message:`realCastState$: ${r}`})})).subscribe(this.realCastState$)).add(this.realCastState$.subscribe(r=>{var o,u;let a=r==="CONNECTED",n=An(this.connection$.getValue());if(a&&!n){let c=i.getCurrentSession();Jk(c);let d=c.getCastDevice(),l=(u=(o=c.getMediaSession())==null?void 0:o.media)==null?void 0:u.contentId;(kc(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"?An(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:Km.EXTERNAL_API,message:"[initializeCastApi] failed",thrown:a})}}},aA=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 Xm(s)}};import{assertNonNullable as Cc,combine as Dc,debounce as Bc,ErrorCategory as EA,filter as br,filterChanged as pb,isNonNullable as Vc,isNullable as hb,map as wA,Subscription as xA,ValueSubject as _c}from"@vkontakte/videoplayer-shared/es2018";import{assertNever as sA,assertNonNullable as ki,ErrorCategory as nA,getHighestQuality as oA,isNonNullable as Zm}from"@vkontakte/videoplayer-shared/es2018";import{assertNever as Jm}from"@vkontakte/videoplayer-shared/es2018";var ue=(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:Jm(t)}return s},zt=(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:Jm(e)}};var Mn=s=>{var l;let{source:e,format:t,meta:i,output:r}=s,a,n,o;switch(t){case"MPEG":{let p=e[t];ki(p);let h=oA(Object.keys(p));ki(h);let f=p[h];ki(f),a=f,n="video/mp4",o=$n();break}case"HLS":case"HLS_FMP4":case"HLS_ONDEMAND":{let p=e[t];ki(p),a=p.url,n="application/x-mpegurl",o=$n();break}case"DASH_SEP":case"DASH_ONDEMAND":case"DASH_WEBM":case"DASH_WEBM_AV1":case"DASH_STREAMS":{let p=e[t];ki(p),a=p.url,n="application/dash+xml",o=$n();break}case"DASH_LIVE_CMAF":{let p=e[t];ki(p),a=p.url,n="application/dash+xml",o=eb();break}case"HLS_LIVE":case"HLS_LIVE_CMAF":{let p=e[t];ki(p),a=ue(p.url),n="application/x-mpegurl",o=eb();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:nA.VIDEO_PIPELINE,message:p,thrown:h}),h}case"DASH":case"DASH_LIVE_WEBM":throw new Error(`${t} is no longer supported`);default:return sA(t)}let u=uA((l=i.videoId)!=null?l:a,n);u.contentUrl=a,u.streamType=o,u.metadata=cA();let{title:c,subtitle:d}=i;return Zm(c)&&(u.metadata.title=c),Zm(d)&&(u.metadata.subtitle=d),u};function $n(){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 eb(){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 uA(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:$n()}}function cA(){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 k=(s,e,t=!1)=>{let i=s.getTransition();(t||!i||i.to===e)&&s.setState(e)};var Ln=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 db}from"@vkontakte/videoplayer-shared/es2018";import{isBrowserWindow as yA,ValueSubject as TA}from"@vkontakte/videoplayer-shared/es2018";var tb=_(De(),1);import{getWindow as lA}from"@vkontakte/videoplayer-shared/es2018";var Cn=class{constructor(){this._isMiuiBrowser=!1}get current(){return this._current}get isChrome(){return this.current==="Chrome"}get isChromiumBased(){return(0,tb.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}=lA().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 ib=_(De(),1);import{getWindow as Ac,isBrowserWindow as Rc}from"@vkontakte/videoplayer-shared/es2018";var Ai=()=>{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 Dn=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,ib.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=Ac();if(!Rc(e))return;let{userAgent:t}=e.navigator;try{this._isMobile=Ai()}catch(i){console.error("DeviceChecker: calling isMobile error - ",i)}this.detectDevice(t),this.detectOS(t),this.detectDeviceDetails(t),this.detectHighEntropyValues(),this.isIOS&&this.detectIOSVersion()}async detectHighEntropyValues(){let e=Ac();if(!Rc(e))return;let{userAgentData:t}=e.navigator;if(t!=null&&t.getHighEntropyValues){let i=await 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=Ac();if(!Rc(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 rb,isBrowserWindow as dA}from"@vkontakte/videoplayer-shared/es2018";var Bn=class{get isTouch(){return typeof this._maxTouchPoints=="number"?this._maxTouchPoints>1:"ontouchstart"in rb()}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=rb();if(!dA(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 $c,isBrowserWindow as nb}from"@vkontakte/videoplayer-shared/es2018";var He=()=>window.ManagedMediaSource||window.MediaSource,mr=()=>{var s,e;return!!(window.ManagedMediaSource&&((e=(s=window.ManagedSourceBuffer)==null?void 0:s.prototype)!=null&&e.appendBuffer))},ab=()=>{var s,e;return!!(window.MediaSource&&((e=(s=window.SourceBuffer)==null?void 0:s.prototype)!=null&&e.appendBuffer))},Vn=()=>window.ManagedMediaSource?new ManagedMediaSource:new MediaSource;var sb,pA=(sb=$c().document)==null?void 0:sb.createElement("video"),hA='video/mp4; codecs="avc1.42000a,mp4a.40.2"',fA='video/mp4; codecs="hev1.1.6.L93.B0"',ob='video/webm; codecs="vp09.00.10.08"',ub='video/webm; codecs="av01.0.00M.08"',mA='audio/mp4; codecs="mp4a.40.2"',bA='audio/webm; codecs="opus"',cb,gA=async()=>{let s=$c();if(!nb(s))return;let e={type:"media-source",video:{contentType:"video/webm",width:1280,height:720,bitrate:1e6,framerate:30}},[t,i]=await Promise.all([s.navigator.mediaCapabilities.decodingInfo({...e,video:{...e.video,contentType:ub}}),s.navigator.mediaCapabilities.decodingInfo({...e,video:{...e.video,contentType:ob}})]);cb={DASH_WEBM_AV1:t,DASH_WEBM:i}};gA().catch(s=>{console.log(pA),console.error(s)});var _n=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 cb}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,v,g,S,T,y,x,R;let e=$c();if(!nb(e))return;let t=e.document;this._video=t.createElement("video");try{this._protocols={mms:mr(),mse:ab(),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 C=!!((p=(l=He())==null?void 0:l.isTypeSupported)!=null&&p.call(l,hA)),$=!!((f=(h=He())==null?void 0:h.isTypeSupported)!=null&&f.call(h,fA)),D=!!((v=(m=He())==null?void 0:m.isTypeSupported)!=null&&v.call(m,mA));this._codecs={h264:C,h265:$,vp9:!!((S=(g=He())==null?void 0:g.isTypeSupported)!=null&&S.call(g,ob)),av1:!!((y=(T=He())==null?void 0:T.isTypeSupported)!=null&&y.call(T,ub)),aac:D,opus:!!((R=(x=He())==null?void 0:x.isTypeSupported)!=null&&R.call(x,bA)),mpeg:(C||$)&&D},this._nativeHlsSupported=this._protocols.hls&&this._containers.mp4}catch(C){console.error(C)}try{this.destroyVideoElement()}catch(C){console.error("Error destroying video element:",C)}}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 vA,isBrowserWindow as SA}from"@vkontakte/videoplayer-shared/es2018";var lb="audio/mpeg",On=class{supportMp3(){return this._codecs.mp3&&this._containers.mpeg}detect(){var i,r,a,n;let e=vA();if(!SA(e))return;let t=e.document;this._audio=t.createElement("audio");try{this._containers={mpeg:!!((r=(i=this._audio).canPlayType)!=null&&r.call(i,lb))},this._codecs={mp3:!!((n=(a=He())==null?void 0:a.isTypeSupported)!=null&&n.call(a,lb))}}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 Mc=class{constructor(){this.isInited$=new TA(!1);this._displayChecker=new Bn,this._deviceChecker=new Dn(this._displayChecker),this._browserChecker=new Cn,this._videoChecker=new _n(this._deviceChecker,this._browserChecker),this._audioChecker=new On,this.detect()}get display(){return this._displayChecker}get device(){return this._deviceChecker}get browser(){return this._browserChecker}get video(){return this._videoChecker}get audio(){return this._audioChecker}async detect(){yA()&&(this._displayChecker.detect(),this._deviceChecker.detect(),this._browserChecker.detect(),this._videoChecker.detect(),this._audioChecker.detect(),this.isInited$.next(!0))}},B=new Mc;var Lc=s=>{let{containers:e,protocols:t,codecs:i,nativeHlsSupported:r}=B.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 db(o)}})},va=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 db(s)}},IA=s=>{let t=Object.keys(s).filter(i=>!va(i));return Lc(t).length>0};var Sa=class{constructor(e){this.subscription=new xA;this.sessionId$=new _c(null);this.mediaSessionId$=new _c(null);this.contentId$=new _c(null);this.isMobile=Ai();this.mobileVolumeState={muted:!1,volume:0};this.media=null;this.lastRequestedVolume=null;this.syncMediaState=e=>{var a,n,o;if(hb(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;Vc(i)&&this.params.output.duration$.next(Math.max(0,i));let r=e.currentTime;if(Vc(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 Ln(e),this.log=this.params.dependencies.logger.createComponentLog("ChromecastPresentationApiProvider"),this.log({message:`constructor, format: ${e.format}`}),this.params.output.isLive$.next(va(e.format)),this.subscribe()}subscribe(){let e=r=>{var a;this.params.output.error$.next({category:EA.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(br(r=>!!r)).subscribe(r=>{this.handleMessage(r)},e)),this.subscription.add(this.sessionId$.pipe(br(Vc),pb(),Bc(0)).subscribe(()=>{this.loadMedia()},e));let t=this.contentId$.pipe(pb(),wA(Boolean));this.subscription.add(Dc({seekState:this.params.desiredState.seekState.stateChangeEnded$,mediaLoaded:t}).pipe(br(({mediaLoaded:r})=>r)).subscribe(()=>{let r=this.params.desiredState.seekState.getState();r.state==="requested"&&this.seek(r.position/1e3)},e));let i=Dc({playbackState:this.params.desiredState.playbackState.stateChangeStarted$,mediaLoaded:t});this.subscription.add(i.pipe(br(({mediaLoaded:r})=>r),Bc(0)).subscribe(()=>{this.syncPlayback()},e)),this.subscription.add(i.pipe(br(({mediaLoaded:r,playbackState:{from:a,to:n}})=>!r&&a==="stopped"&&n==="playing")).subscribe(()=>{this.loadMedia()},e)),this.subscription.add(Dc({volumeState:this.params.desiredState.volume.stateChangeStarted$.pipe(Bc(30)),mediaLoaded:t}).pipe(br(({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=Mn(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();Cc(e,"play on null mediaSessionId"),this.params.chromecastConnector.sendV2Message({type:"PLAY",mediaSessionId:e,customData:null})}pause(){let e=this.mediaSessionId$.getValue();Cc(e,"pause on null mediaSessionId"),this.params.chromecastConnector.sendV2Message({type:"PAUSE",mediaSessionId:e,customData:null})}seek(e){let t=this.mediaSessionId$.getValue();Cc(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":k(this.params.desiredState.playbackState,"paused");break;case"PLAYING":k(this.params.desiredState.playbackState,"playing");break;case"IDLE":{t==="FINISHED"?(this.params.output.endedEvent$.next(),k(this.params.desiredState.playbackState,"stopped"),this.contentId$.next(null)):k(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(hb(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 PA,ErrorCategory as Oc,filter as kA,Subject as AA,Subscription as Nc,tap as RA,ValueSubject as gr,fromEvent as ya}from"@vkontakte/videoplayer-shared/es2018";var fb=s=>({castDevice:{friendlyName:s},remotePlayer:{},remotePlayerController:{},session:{}}),mb=()=>String(Date.now())+String(Math.floor(Math.random()*1e5));var Ta=class{constructor(e){this.capabilities=["WEB"];this.presentationRequest$=new gr(null);this.sessionId$=new gr(null);this.broadcastChannel=new BroadcastChannel("vk_player_chromecast_events");this.subscription=new Nc;this.subscriptionEvents=new Nc;this.isDestroyed=!1;this.sequenceNumber=0;this.presentationAvailable$=new gr(!1);this.presentationConnection$=new gr(null);this.message$=new gr(null);this.friendlyName$=new gr(null);this.errorEvent$=new AA;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(ya(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"})})}async connect(){var e;this.log({message:"connect"});try{this.presentationRequest$.getValue()||(this.log({message:"reinitPresentation"}),this.reinitPresentation(!1));let t=this.presentationRequest$.getValue();PA(t,"connect with null presentationRequest");let i=await t.start();this.handleConnection(i)}catch(t){switch(t==null?void 0:t.name){case"AbortError":case"NotAllowedError":break;default:this.errorEvent$.next({category:Oc.WTF,id:"ChromecastPresentationApiConnector",message:(e=t==null?void 0:t.message)!=null?e:"connect error",thrown:t});break}}}subscribe(){this.subscription.add(ya(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}`})}),kA(e=>!!e)).subscribe(e=>{let t=ya(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=ya(e,"connect").subscribe(()=>{this.send("client_connect")}),r=ya(e,"close").subscribe(a=>{switch(a.reason){case"error":this.errorEvent$.next({category:Oc.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:{...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:Oc.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]||mb()}resetSubscriptionEvents(){this.subscriptionEvents.unsubscribe(),this.subscriptionEvents=new Nc}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 bb,Subject as $A,map as MA,Subscription as LA,combine as CA,filterChanged as gb,assertNonNullable as DA}from"@vkontakte/videoplayer-shared/es2018";var Pt=class s{constructor(e){this.subscription=new LA;this.connection$=new bb(void 0);this.castState$=new bb("NOT_AVAILABLE");this.errorEvent$=new $A;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 Ta({appId:e.receiverApplicationId,logger:e.dependencies.logger}),this.subscribe())}static isSupported(){return"chrome"in window&&"presentation"in navigator&&"BroadcastChannel"in window}subscribe(){DA(this.chromecastConnector,"subscribe with null chromecastConnector"),this.subscription.add(this.chromecastConnector.errorEvent$.subscribe(this.errorEvent$));let e=CA({connection:this.chromecastConnector.presentationConnection$,available:this.chromecastConnector.presentationAvailable$,friendlyName:this.chromecastConnector.friendlyName$.pipe(gb())});this.subscription.add(e.pipe(MA(({connection:t,friendlyName:i})=>!!(t&&i)),gb()).subscribe(t=>{var r,a;let i=(a=(r=this.chromecastConnector)==null?void 0:r.friendlyName$.getValue())!=null?a:"";this.connection$.next(t?fb(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()}async stopMedia(){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 Mp=_(De(),1),Lp=_(Gt(),1),ww=_(ol(),1);var ey=_(zl(),1);import{isNonNullable as yC,Subject as co,merge as YS}from"@vkontakte/videoplayer-shared/es2018";var H=class{constructor(e){this.transitionStarted$=new co;this.transitionEnded$=new co;this.transitionUpdated$=new co;this.forceChanged$=new co;this.stateChangeStarted$=YS(this.transitionStarted$,this.transitionUpdated$);this.stateChangeEnded$=YS(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||yC(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 Da,debounce as KS,ErrorCategory as TC,fromEvent as Di,map as XS,merge as JS,observableFrom as IC,Subject as EC,Subscription as Gl,timeout as wC}from"@vkontakte/videoplayer-shared/es2018";var xC=5,PC=5,kC=500,ZS=7e3,Ba=class{constructor(e){this.subscription=new Gl;this.loadMediaTimeoutSubscription=new Gl;this.videoState=new H("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:Da(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:Da(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:Da(e)}break}default:Da(i)}}};this.params=e,this.log=this.params.dependencies.logger.createComponentLog("ChromecastProvider"),this.log({message:`constructor, format: ${e.format}`}),this.params.output.isLive$.next(va(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 Gl;this.subscription.add(e),this.subscription.add(JS(this.videoState.stateChangeStarted$.pipe(XS(r=>`stateChangeStarted$ ${JSON.stringify(r)}`)),this.videoState.stateChangeEnded$.pipe(XS(r=>`stateChangeEnded$ ${JSON.stringify(r)}`))).subscribe(r=>this.log({message:`[videoState] ${r}`})));let t=(r,a)=>this.subscription.add(r.subscribe(a));if(this.params.output.isLive$.getValue())this.params.output.position$.next(0),this.params.output.duration$.next(0);else{let r=new EC;e.add(r.pipe(KS(kC)).subscribe(()=>{this.params.output.seekedEvent$.next()}));let a=NaN;e.add(Di(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)>xC)&&r.next(o),a=o})),e.add(Di(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.DURATION_CHANGED).subscribe(n=>{this.logRemoteEvent(n),this.params.output.duration$.next(n.value)}))}t(Di(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_MEDIA_LOADED_CHANGED),r=>{this.logRemoteEvent(r),r.value?this.handleRemoteReady():(this.handleRemoteStop(),e.unsubscribe())}),t(Di(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_PAUSED_CHANGED),r=>{this.logRemoteEvent(r),r.value?this.handleRemotePause():this.handleRemotePlay()}),t(Di(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<PC&&this.params.output.endedEvent$.next(),this.handleRemoteStop(),k(this.params.desiredState.playbackState,"stopped");break;case chrome.cast.media.PlayerState.PAUSED:{this.handleRemotePause();break}case chrome.cast.media.PlayerState.PLAYING:this.handleRemotePlay();break;case chrome.cast.media.PlayerState.BUFFERING:break;default:Da(n)}}),t(Di(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.VOLUME_LEVEL_CHANGED),r=>{this.logRemoteEvent(r),this.handleRemoteVolumeChange({volume:r.value})}),t(Di(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_MUTED_CHANGED),r=>{this.logRemoteEvent(r),this.handleRemoteVolumeChange({muted:r.value})});let i=JS(this.params.desiredState.playbackState.stateChangeStarted$,this.params.desiredState.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,IC(["init"])).pipe(KS(0));t(i,this.syncPlayback)}restoreSession(e){this.log({message:"restoreSession"});let{remotePlayer:t}=this.params.connection;if(e.playerState!==chrome.cast.media.PlayerState.IDLE){t.isPaused?(this.videoState.setState("paused"),k(this.params.desiredState.playbackState,"paused")):(this.videoState.setState("playing"),k(this.params.desiredState.playbackState,"playing"));let i=this.params.output.isLive$.getValue();this.params.output.duration$.next(i?0:t.duration),this.params.output.position$.next(i?0:t.currentTime),this.params.desiredState.seekState.setState({state:"none"})}}prepare(){let e=this.params.format;this.log({message:`[prepare] format: ${e}`});let t=Mn(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"),k(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"),k(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"&&k(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(wC(ZS).subscribe(()=>a(`timeout(${ZS})`)))});(0,ey.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:TC.VIDEO_PIPELINE,message:a,thrown:r})}),()=>{this.loadMediaTimeoutSubscription.unsubscribe()})}logRemoteEvent(e){this.log({message:`[remoteEvent] ${JSON.stringify(e)}`})}};var hd=_(De(),1);import{clearVideoElement as iy,getWindow as RC}from"@vkontakte/videoplayer-shared/es2018";import{clearVideoElement as AC}from"@vkontakte/videoplayer-shared/es2018";var ty=s=>{try{s.pause(),s.playbackRate=0,AC(s),s.remove()}catch(e){console.error(e)}};import{fromEvent as $C,Subscription as MC}from"@vkontakte/videoplayer-shared/es2018";var Yl=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)}},lo=RC(),Kl=lo.WeakMap?new lo.WeakMap:new Yl,Xl=lo.WeakMap?new lo.WeakMap:new Map,LC=(s,e=20)=>{let t=0;return $C(s,"ratechange").subscribe(i=>{t++,t>=e&&(s.currentTime=s.currentTime,t=0)})},Be=(s,{audioVideoSyncRate:e,disableYandexPiP:t})=>{let i=s.querySelector("video"),r=!!i;i?iy(i):(i=document.createElement("video"),s.appendChild(i)),Kl.set(i,r);let a=new MC;return a.add(LC(i,e)),Xl.set(i,a),i.setAttribute("crossorigin","anonymous"),i.setAttribute("playsinline","playsinline"),t&&i.setAttribute("x-yandex-pip","false"),i.controls=!1,i.setAttribute("poster","data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII="),i},Ve=s=>{let e=Xl.get(s);e==null||e.unsubscribe(),Xl.delete(s);let t=Kl.get(s);Kl.delete(s),t?iy(s):ty(s)};var Zl=_(Pi(),1);import{assertNonNullable as _a,isNonNullable as gt,isNullable as BC,fromEvent as kr,merge as ry,observableFrom as ay,filterChanged as sy,map as Oa,Subject as ny,Subscription as VC,ValueSubject as _C,ErrorCategory as OC}from"@vkontakte/videoplayer-shared/es2018";import{isNonNullable as Jl,isNullable as CC,Subscription as DC}from"@vkontakte/videoplayer-shared/es2018";var po=(s,e,t,{equal:i=(n,o)=>n===o,changed$:r,onError:a}={})=>{let n=s.getState(),o=e(),u=CC(r),c=new DC;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},bt=(s,e,t)=>po(e,()=>s.loop,i=>{Jl(i)&&(s.loop=i)},{onError:t}),_e=(s,e,t,i,r)=>po(e,()=>({muted:s.muted,volume:s.volume}),a=>{r!=null&&r.skipVideoElVolumeSync||Jl(a)&&(s.muted=a.muted,s.volume=a.volume)},{equal:(a,n)=>a===n||(a==null?void 0:a.muted)===(n==null?void 0:n.muted)&&(a==null?void 0:a.volume)===(n==null?void 0:n.volume),changed$:t,onError:i}),Ge=(s,e,t,i)=>po(e,()=>s.playbackRate,r=>{Jl(r)&&(s.playbackRate=r)},{changed$:t,onError:i}),Va=po;var NC=s=>["__",s.language,s.label].join("|"),FC=(s,e)=>{if(s.id===e)return!0;let[t,i,r]=e.split("|");return s.language===i&&s.label===r},ed=class s{constructor(e){this.available$=new ny;this.current$=new _C(void 0);this.error$=new ny;this.subscription=new VC;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:OC.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(Va(t.internalTextTracks,()=>(0,Zl.default)(this.internalTracks),a=>{gt(a)&&this.setInternal(a)},{equal:(a,n)=>gt(a)&&gt(n)&&a.length===n.length&&a.every(({id:o},u)=>o===n[u].id),changed$:this.available$.pipe(Oa(a=>a.filter(({type:n})=>n==="internal"))),onError:r})),this.subscription.add(Va(t.externalTextTracks,()=>(0,Zl.default)(this.externalTracks),a=>{gt(a)&&this.setExternal(a)},{equal:(a,n)=>gt(a)&&gt(n)&&a.length===n.length&&a.every(({id:o},u)=>o===n[u].id),changed$:this.available$.pipe(Oa(a=>a.filter(({type:n})=>n==="external"))),onError:r})),this.subscription.add(Va(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(Va(t.textTrackCuesSettings,()=>({}),()=>{if(this.video)for(let a of this.htmlTextTracksAsArray())this.applyCueSettings(a.cues),this.applyCueSettings(a.activeCues)}))}subscribe(){_a(this.video);let{textTracks:e}=this.video;this.subscription.add(kr(e,"addtrack").subscribe(()=>{let i=this.current$.getValue();i&&this.select(i)})),this.subscription.add(ry(kr(e,"addtrack"),kr(e,"removetrack"),ay(["init"])).pipe(Oa(()=>this.htmlTextTracksAsArray().map(i=>this.htmlTextTrackToITextTrack(i))),sy((i,r)=>i.length===r.length&&i.every(({id:a},n)=>a===r[n].id))).subscribe(this.available$)),this.subscription.add(ry(kr(e,"change"),ay(["init"])).pipe(Oa(()=>this.htmlTextTracksAsArray().find(({mode:i})=>i==="showing")),Oa(i=>i&&this.htmlTextTrackToITextTrack(i).id),sy()).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(kr(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(kr(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;gt(t.align)&&(r.align=t.align),gt(t.position)&&(r.position=t.position),gt(t.size)&&(r.size=t.size),gt(t.line)&&(r.line=t.line)}}htmlTextTracksAsArray(e=!1){_a(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:NC(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){_a(this.video);for(let t of this.htmlTextTracksAsArray(!0))t.mode="showing";for(let t of this.htmlTextTracksAsArray(!0))(BC(e)||!FC(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){_a(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){_a(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)}},Ye=ed;var Bi=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 oy=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},td=s=>{let e=oy(s);return!!(e&&e.fullscreenElement&&e.fullscreenElement===s)},uy=s=>{let e=oy(s);return!!(e&&e.pictureInPictureElement&&e.pictureInPictureElement===s)};import{fromEvent as Ae,map as vt,merge as ho,filterChanged as ly,isNonNullable as dy,Subject as qC,filter as id,mapTo as rd,combine as HC,once as jC,shareReplay as Re,throttle as WC,ErrorCategory as QC,ValueSubject as py,Subscription as zC}from"@vkontakte/videoplayer-shared/es2018";var UC=3,cy=(s,e,t=UC)=>{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 Oe=s=>{let e=A=>Ae(s,A).pipe(rd(void 0),Re(1)),t=new zC,i=()=>t.unsubscribe(),r=ho(Ae(s,"progress"),Ae(s,"timeupdate")).pipe(vt(()=>cy(s.buffered,s.currentTime)),Re(1)),a=B.browser.isSafari?HC({play:e("play").pipe(jC()),playing:e("playing")}).pipe(rd(void 0),Re(1)):e("playing"),n=Ae(s,"volumechange").pipe(vt(()=>({muted:s.muted,volume:s.volume})),Re(1)),o=Ae(s,"ratechange").pipe(vt(()=>s.playbackRate),Re(1)),u=Ae(s,"error").pipe(id(()=>!!(s.error||s.played.length)),vt(()=>{var V;let A=s.error;return{id:A?`MediaError#${A.code}`:"HtmlVideoError",category:QC.VIDEO_PIPELINE,message:A?A.message:"Error event from HTML video element",thrown:(V=s.error)!=null?V:void 0}}),Re(1)),c=Ae(s,"timeupdate").pipe(vt(()=>s.currentTime),Re(1)),d=["waiting","seeking","seeked","timeupdate"],l=new qC,p=.3,h;t.add(ho(...d.map(A=>Ae(s,A))).subscribe(A=>{let V=s.currentTime;s.loop&&dy(h)&&dy(V)&&h>=s.duration-p&&V<=p&&l.next(h),h=V}));let f=e("pause").pipe(id(()=>!s.error&&h!==s.duration),Re(1)),m=Ae(s,"enterpictureinpicture").pipe(Re(1)),v=Ae(s,"leavepictureinpicture").pipe(Re(1)),g=new py(uy(s));t.add(m.subscribe(()=>g.next(!0))),t.add(v.subscribe(()=>g.next(!1)));let S=new py(td(s)),T=Ae(s,"fullscreenchange").pipe(Re(1));t.add(T.pipe(vt(()=>td(s))).subscribe(S));let y=.1,x=1e3,R=Ae(s,"timeupdate").pipe(vt(A=>s.duration-s.currentTime<y),ly(),Re(1)),C=ho(R.pipe(id(A=>!s.loop&&A)),Ae(s,"ended")).pipe(WC(x),rd(void 0),Re(1)),D=ho(...["waiting","pause","canplay","play","canplaythrough","playing","seeking","seeked","ended"].map(A=>Ae(s,A)),R.pipe(vt(A=>({type:A?"ended":"unknown"})))).pipe(vt(A=>B.browser.isFirefox&&A.type==="ended"?s.readyState<2:s.readyState<3),ly(),Re(1));return{playing$:a,pause$:f,canplay$:e("canplay"),ended$:C,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$:Ae(s,"durationchange").pipe(vt(()=>s.duration),Re(1)),isBuffering$:D,currentBuffer$:r,volumeState$:n,playbackRateState$:o,inPiP$:g,inFullscreen$:S,enterPip$:m,leavePip$:v,destroy:i}};import{VideoQuality as Kt}from"@vkontakte/videoplayer-shared/es2018";var Xt=s=>{switch(s){case"mobile":return Kt.Q_144P;case"lowest":return Kt.Q_240P;case"low":return Kt.Q_360P;case"sd":case"medium":return Kt.Q_480P;case"hd":case"high":return Kt.Q_720P;case"fullhd":case"full":return Kt.Q_1080P;case"quadhd":case"quad":return Kt.Q_1440P;case"ultrahd":case"ultra":return Kt.Q_2160P}};var Me=_(Ke(),1),sd=_(De(),1),_i=_(Gt(),1);import{isNonNullable as X,isNullable as go,now as Ry,isHigher as vo,isHigherOrEqual as Vi,isInvariantQuality as So,isLowerOrEqual as Rr,videoSizeToQuality as $y,assertNotEmptyArray as yo,assertNonNullable as My}from"@vkontakte/videoplayer-shared/es2018";var ad=!1,At={},Sy=s=>{ad=s},yy=()=>{At={}},Ty=s=>{s(At)},Na=(s,e)=>{var t;ad&&(At.meta=(t=At.meta)!=null?t:{},At.meta[s]=e)},$e=class{constructor(e){this.name=e}next(e){var i,r;if(!ad)return;At.series=(i=At.series)!=null?i:{};let t=(r=At.series[this.name])!=null?r:[];t.push([Date.now(),e]),At.series[this.name]=t}};import{isHigher as iD,isHigherOrEqual as fj,isLower as Iy,isLowerOrEqual as mj,isNonNullable as fo,isNullable as rD,videoHeightToQuality as mo}from"@vkontakte/videoplayer-shared/es2018";function Ey(s,e,t){return!s.max&&s.min===e?"high_quality":!s.min&&s.max===t?"traffic_saving":"unknown"}function Ar(s,e,t){return rD(s)||fo(s.min)&&fo(s.max)&&Iy(s.max,s.min)||fo(s.min)&&e&&iD(s.min,e)||fo(s.max)&&t&&Iy(s.max,t)}function wy({limits:s,highestAvailableHeight:e,lowestAvailableHeight:t}){return Ar({max:s!=null&&s.max?mo(s.max):void 0,min:s!=null&&s.min?mo(s.min):void 0},e?mo(e):void 0,t?mo(t):void 0)}var Ly=new $e("best_bitrate"),To=(s,e,t)=>(e-t)*Math.pow(2,-10*s)+t;var $r=s=>(e,t)=>s*(Number(e.bitrate)-Number(t.bitrate)),Jt=class{constructor(){this.history={}}recordSelection(e){this.history[e.id]=Ry()}recordSwitch(e){this.last=e}clear(){this.last=void 0,this.history={}}},Io='Assertion "ABR Tracks is empty array" failed',bo=new WeakMap,xy=new WeakMap,Py=new WeakMap,Fa=(s,e,t,i)=>{var u;let r=[...e].sort($r(1)),a=[...t].sort($r(1)),n=a.filter(c=>X(c.bitrate)&&X(s.bitrate)?s.bitrate/c.bitrate>i:!0),o=(u=(0,Me.default)(a,Math.round(a.length*r.indexOf(s)/(r.length+1))))!=null?u:(0,Me.default)(a,-1);return o&&(0,sd.default)(n,o)?o:n.length?(0,Me.default)(n,-1):(0,Me.default)(a,0)},Ua=(s,e,t,i)=>{var u;let r=bo.get(e);r||(r=[...e].sort($r(1)),bo.set(e,r));let a=bo.get(t);a||(a=[...t].sort($r(1)),bo.set(t,a));let n=Py.get(s);n||(n=a.filter(c=>X(c.bitrate)&&X(s.bitrate)?s.bitrate/c.bitrate>i:!0),Py.set(s,n));let o=(u=(0,Me.default)(a,Math.round(a.length*r.indexOf(s)/(r.length+1))))!=null?u:(0,Me.default)(a,-1);return o&&(0,sd.default)(n,o)?o:n.length?(0,Me.default)(n,-1):(0,Me.default)(a,0)},ky=s=>"quality"in s,Eo=(s,e,t,i)=>{var n;let r=X((n=i==null?void 0:i.last)==null?void 0:n.bitrate)&&X(t==null?void 0:t.bitrate)&&i.last.bitrate<t.bitrate?s.trackCooldownIncreaseQuality:s.trackCooldownDecreaseQuality,a=t&&i&&i.history[t.id]&&Ry()-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=ky(o)?"video":"audio",c=ky(o)?o.quality:o.bitrate;return e({message:`
8
- [last ${u} selected] ${c}
9
- `}),o}return i==null||i.recordSwitch(t),t},aD=(s,e)=>Math.log(e)/Math.log(s),Cy=({tuning:s,container:e,limits:t,panelSize:i})=>{let r=s.containerSizeFactor;if(i)return{containerSizeLimit:i,containerSizeFactor:r};if(s.usePixelRatio&&B.display.pixelRatio){let a=B.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=aD(n,o*a+u)+c;Number.isFinite(d)&&(r*=d)}}return X(t==null?void 0:t.min)&&Vi(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}},Ay=new WeakMap,St=(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 q,Y,j,E,P;yo(s,Io);let{containerSizeFactor:v,containerSizeLimit:g}=Cy({container:e,tuning:i,limits:r,panelSize:m}),S=i.considerPlaybackRate&&X(o)?o:1,T=Ay.get(s);T||(T=s.filter(I=>!So(I.quality)).sort((I,w)=>vo(I.quality,w.quality)?-1:1),Ay.set(s,T));let y=(q=(0,Me.default)(T,-1))==null?void 0:q.quality,x=(Y=(0,Me.default)(T,0))==null?void 0:Y.quality,R=Ar(r,x,y),C=S*To(n!=null?n:.5,i.bitrateFactorAtEmptyBuffer,i.bitrateFactorAtFullBuffer),$={},D=null;for(let I of T){let w=!0;if(g)if(I.size)w=I.size.width<=g.width&&I.size.height<=g.height;else{let Fe=g&&$y(g);w=Fe?Rr(I.quality,Fe):!0}if(!w){$[I.quality]="FitsContainer";continue}let F=h||t,O=X(F)&&isFinite(F)&&X(I.bitrate)?F-a>=I.bitrate*C:!0,ct=(r==null?void 0:r.min)===I.quality;if(!O&&!ct){$[I.quality]="FitsThroughput";continue}if(i.lazyQualitySwitch&&X(i.minBufferToSwitchUp)&&u&&!So(u.quality)&&(n!=null?n:0)<i.minBufferToSwitchUp&&vo(I.quality,u.quality)){$[I.quality]="Buffer";continue}if(!!l&&Vi(I.quality,l)&&!ct){$[I.quality]="DroppedFramesLimit";continue}if(!!p&&Vi(I.quality,p)&&!ct){$[I.quality]="StallsLimit";continue}let Ie=R||(go(r==null?void 0:r.max)||Rr(I.quality,r.max))&&(go(r==null?void 0:r.min)||Vi(I.quality,r.min)),Ee=X(d)&&!d?Rr(I.quality,i.backgroundVideoQualityLimit):!0;if(!Ie||!Ee){$[I.quality]="FitsQualityLimits";continue}D||(D=I)}D&&D.bitrate&&Ly.next(D.bitrate);let A=(j=D!=null?D:(0,Me.default)(T,-1))!=null?j:s[0],V=c==null?void 0:c.last,M=Eo(i,f,A,c);return X(c)&&M.quality!==(V==null?void 0:V.quality)&&f({message:`
6
+ import e from"@oxc-project/runtime/helpers/defineProperty";var t=Object.create,n=Object.getPrototypeOf,r=Object.defineProperty,i=Object.getOwnPropertyNames,a=Object.prototype.hasOwnProperty;function o(e){return this[e]}var s,c,l=(e,l,u)=>{var d=typeof e==`object`&&!!e;if(d){var f=l?s??=new WeakMap:c??=new WeakMap,p=f.get(e);if(p)return p}u=e==null?{}:t(n(e));let m=l||!e||!e.__esModule?r(u,`default`,{value:e,enumerable:!0}):u;for(let t of i(e))a.call(m,t)||r(m,t,{get:o.bind(e,t),enumerable:!0});return d&&f.set(e,m),m},u=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports),d=u((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`)()}),f=u((e,t)=>{t.exports=function(e){try{return!!e()}catch{return!0}}}),p=u((e,t)=>{t.exports=!f()(function(){var e=function(){}.bind();return typeof e!=`function`||e.hasOwnProperty(`prototype`)})}),m=u((e,t)=>{var n=p(),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)})}),h=u((e,t)=>{var n=p(),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)}}}),g=u((e,t)=>{var n=h(),r=n({}.toString),i=n(``.slice);t.exports=function(e){return i(r(e),8,-1)}}),_=u((e,t)=>{var n=g(),r=h();t.exports=function(e){if(n(e)===`Function`)return r(e)}}),v=u((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`}}),y=u((e,t)=>{t.exports=!f()(function(){return Object.defineProperty({},1,{get:function(){return 7}})[1]!==7})}),b=u((e,t)=>{var n=p(),r=Function.prototype.call;t.exports=n?r.bind(r):function(){return r.apply(r,arguments)}}),x=u(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}),S=u((e,t)=>{t.exports=function(e,t){return{enumerable:!(e&1),configurable:!(e&2),writable:!(e&4),value:t}}}),C=u((e,t)=>{var n=h(),r=f(),i=g(),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}),w=u((e,t)=>{t.exports=function(e){return e==null}}),T=u((e,t)=>{var n=w(),r=TypeError;t.exports=function(e){if(n(e))throw new r(`Can't call method on `+e);return e}}),E=u((e,t)=>{var n=C(),r=T();t.exports=function(e){return n(r(e))}}),D=u((e,t)=>{var n=v();t.exports=function(e){return typeof e==`object`?e!==null:n(e)}}),O=u((e,t)=>{t.exports={}}),k=u((e,t)=>{var n=O(),r=d(),i=v(),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]}}),A=u((e,t)=>{t.exports=h()({}.isPrototypeOf)}),ee=u((e,t)=>{var n=d().navigator,r=n&&n.userAgent;t.exports=r?String(r):``}),te=u((e,t)=>{var n=d(),r=ee(),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}),ne=u((e,t)=>{var n=te(),r=f(),i=d().String;t.exports=!!Object.getOwnPropertySymbols&&!r(function(){var e=Symbol(`symbol detection`);return!i(e)||!(Object(e)instanceof Symbol)||!Symbol.sham&&n&&n<41})}),re=u((e,t)=>{t.exports=ne()&&!Symbol.sham&&typeof Symbol.iterator==`symbol`}),ie=u((e,t)=>{var n=k(),r=v(),i=A(),a=re(),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))}}),ae=u((e,t)=>{var n=String;t.exports=function(e){try{return n(e)}catch{return`Object`}}}),oe=u((e,t)=>{var n=v(),r=ae(),i=TypeError;t.exports=function(e){if(n(e))return e;throw new i(r(e)+` is not a function`)}}),se=u((e,t)=>{var n=oe(),r=w();t.exports=function(e,t){var i=e[t];return r(i)?void 0:n(i)}}),ce=u((e,t)=>{var n=b(),r=v(),i=D(),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`)}}),le=u((e,t)=>{t.exports=!0}),ue=u((e,t)=>{var n=d(),r=Object.defineProperty;t.exports=function(e,t){try{r(n,e,{value:t,configurable:!0,writable:!0})}catch{n[e]=t}return t}}),de=u((e,t)=>{var n=le(),r=d(),i=ue(),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`})}),fe=u((e,t)=>{var n=de();t.exports=function(e,t){return n[e]||(n[e]=t||{})}}),pe=u((e,t)=>{var n=T(),r=Object;t.exports=function(e){return r(n(e))}}),me=u((e,t)=>{var n=h(),r=pe(),i=n({}.hasOwnProperty);t.exports=Object.hasOwn||function(e,t){return i(r(e),t)}}),he=u((e,t)=>{var n=h(),r=0,i=Math.random(),a=n(1.1.toString);t.exports=function(e){return`Symbol(`+(e===void 0?``:e)+`)_`+a(++r+i,36)}}),j=u((e,t)=>{var n=d(),r=fe(),i=me(),a=he(),o=ne(),s=re(),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]}}),ge=u((e,t)=>{var n=b(),r=D(),i=ie(),a=se(),o=ce(),s=j(),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)}}),_e=u((e,t)=>{var n=ge(),r=ie();t.exports=function(e){var t=n(e,`string`);return r(t)?t:t+``}}),ve=u((e,t)=>{var n=d(),r=D(),i=n.document,a=r(i)&&r(i.createElement);t.exports=function(e){return a?i.createElement(e):{}}}),ye=u((e,t)=>{var n=y(),r=f(),i=ve();t.exports=!n&&!r(function(){return Object.defineProperty(i(`div`),`a`,{get:function(){return 7}}).a!==7})}),be=u(e=>{var t=y(),n=b(),r=x(),i=S(),a=E(),o=_e(),s=me(),c=ye(),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])}}),xe=u((e,t)=>{var n=f(),r=v(),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}),Se=u((e,t)=>{var n=_(),r=oe(),i=p(),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)}}}),Ce=u((e,t)=>{var n=y(),r=f();t.exports=n&&r(function(){return Object.defineProperty(function(){},`prototype`,{value:42,writable:!1}).prototype!==42})}),we=u((e,t)=>{var n=D(),r=String,i=TypeError;t.exports=function(e){if(n(e))return e;throw new i(r(e)+` is not an object`)}}),Te=u(e=>{var t=y(),n=ye(),r=Ce(),i=we(),a=_e(),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}}),Ee=u((e,t)=>{var n=y(),r=Te(),i=S();t.exports=n?function(e,t,n){return r.f(e,t,i(1,n))}:function(e,t,n){return e[t]=n,e}}),M=u((e,t)=>{var n=d(),r=m(),i=_(),a=v(),o=be().f,s=xe(),c=O(),l=Se(),u=Ee(),f=me();de();var p=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,d=e.global,m=e.stat,h=e.proto,g=d?n:m?n[r]:n[r]&&n[r].prototype,_=d?c:c[r]||u(c,r,{})[r],v=_.prototype,y,b,x,S,C,w,T,E,D;for(S in t)y=s(d?S:r+(m?`.`:`#`)+S,e.forced),b=!y&&g&&f(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?p(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`,f(c,x)||u(c,x,{}),u(c[x],S,C),e.real&&v&&(y||!v[S])&&u(v,S,C)))}}),De=u((e,t)=>{var n=fe(),r=he(),i=n(`keys`);t.exports=function(e){return i[e]||(i[e]=r(e))}}),Oe=u((e,t)=>{t.exports=!f()(function(){function e(){}return e.prototype.constructor=null,Object.getPrototypeOf(new e)!==e.prototype})}),ke=u((e,t)=>{var n=me(),r=v(),i=pe(),a=De(),o=Oe(),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}}),Ae=u((e,t)=>{var n=Math.ceil,r=Math.floor;t.exports=Math.trunc||function(e){var t=+e;return(t>0?r:n)(t)}}),je=u((e,t)=>{var n=Ae();t.exports=function(e){var t=+e;return t!==t||t===0?0:n(t)}}),Me=u((e,t)=>{var n=je(),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)}}),Ne=u((e,t)=>{var n=je(),r=Math.min;t.exports=function(e){var t=n(e);return t>0?r(t,9007199254740991):0}}),Pe=u((e,t)=>{var n=Ne();t.exports=function(e){return n(e.length)}}),Fe=u((e,t)=>{var n=E(),r=Me(),i=Pe(),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)}}),Ie=u((e,t)=>{t.exports={}}),Le=u((e,t)=>{var n=h(),r=me(),i=E(),a=Fe().indexOf,o=Ie(),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}}),Re=u((e,t)=>{t.exports=[`constructor`,`hasOwnProperty`,`isPrototypeOf`,`propertyIsEnumerable`,`toLocaleString`,`toString`,`valueOf`]}),ze=u((e,t)=>{var n=Le(),r=Re();t.exports=Object.keys||function(e){return n(e,r)}}),Be=u((e,t)=>{var n=y(),r=f(),i=h(),a=ke(),o=ze(),s=E(),c=x().f,l=i(c),u=i([].push),d=n&&r(function(){var e=Object.create(null);return e[2]=2,!l(e,2)}),p=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:p(!0),values:p(!1)}}),Ve=u(()=>{var e=M(),t=Be().values;e({target:`Object`,stat:!0},{values:function(e){return t(e)}})}),He=u((e,t)=>{Ve(),t.exports=O().Object.values}),Ue=u((e,t)=>{t.exports=He()}),We=u((e,t)=>{t.exports=Ue()}),Ge=u((e,t)=>{t.exports=function(){}}),Ke=u(()=>{var e=M(),t=Fe().includes,n=f(),r=Ge();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`)}),qe=u((e,t)=>{t.exports=k()}),Je=u((e,t)=>{Ke(),t.exports=qe()(`Array`,`includes`)}),Ye=u((e,t)=>{t.exports=Je()}),Xe=u((e,t)=>{t.exports=Ye()}),Ze=u(()=>{var e=M(),t=Be().entries;e({target:`Object`,stat:!0},{entries:function(e){return t(e)}})}),Qe=u((e,t)=>{Ze(),t.exports=O().Object.entries}),$e=u((e,t)=>{t.exports=Qe()}),et=u((e,t)=>{t.exports=$e()}),tt=u((e,t)=>{t.exports={}}),nt=u((e,t)=>{var n=d(),r=v(),i=n.WeakMap;t.exports=r(i)&&/native code/.test(String(i))}),rt=u((e,t)=>{var n=nt(),r=d(),i=D(),a=Ee(),o=me(),s=de(),c=De(),l=Ie(),u=`Object already initialized`,f=r.TypeError,p=r.WeakMap,m,h,g,_=function(e){return g(e)?h(e):m(e,{})},v=function(e){return function(t){var n;if(!i(t)||(n=h(t)).type!==e)throw new f(`Incompatible receiver, `+e+` required`);return n}};n||s.state?(y=s.state||=new p,y.get=y.get,y.has=y.has,y.set=y.set,m=function(e,t){if(y.has(e))throw new f(u);return t.facade=e,y.set(e,t),t},h=function(e){return y.get(e)||{}},g=function(e){return y.has(e)}):(b=c(`state`),l[b]=!0,m=function(e,t){if(o(e,b))throw new f(u);return t.facade=e,a(e,b,t),t},h=function(e){return o(e,b)?e[b]:{}},g=function(e){return o(e,b)});var y,b;t.exports={set:m,get:h,has:g,enforce:_,getterFor:v}}),it=u((e,t)=>{var n=y(),r=me(),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)}}),at=u(e=>{var t=y(),n=Ce(),r=Te(),i=we(),a=E(),o=ze();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}}),ot=u((e,t)=>{t.exports=k()(`document`,`documentElement`)}),st=u((e,t)=>{var n=we(),r=at(),i=Re(),a=Ie(),o=ot(),s=ve(),c=De(),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)}}),ct=u((e,t)=>{var n=Ee();t.exports=function(e,t,r,i){return i&&i.enumerable?e[t]=r:n(e,t,r),e}}),lt=u((e,t)=>{var n=f(),r=v(),i=D(),a=st(),o=ke(),s=ct(),c=j(),l=le(),u=c(`iterator`),d=!1,p,m,h;[].keys&&(h=[].keys(),`next`in h?(m=o(o(h)),m!==Object.prototype&&(p=m)):d=!0),!i(p)||n(function(){var e={};return p[u].call(e)!==e})?p={}:l&&(p=a(p)),r(p[u])||s(p,u,function(){return this}),t.exports={IteratorPrototype:p,BUGGY_SAFARI_ITERATORS:d}}),ut=u((e,t)=>{var n=j()(`toStringTag`),r={};r[n]=`z`,t.exports=String(r)===`[object z]`}),dt=u((e,t)=>{var n=ut(),r=v(),i=g(),a=j()(`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}}),ft=u((e,t)=>{var n=ut(),r=dt();t.exports=n?{}.toString:function(){return`[object `+r(this)+`]`}}),pt=u((e,t)=>{var n=ut(),r=Te().f,i=Ee(),a=me(),o=ft(),s=j()(`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))}}),mt=u((e,t)=>{var n=lt().IteratorPrototype,r=st(),i=S(),a=pt(),o=tt(),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}}),ht=u((e,t)=>{var n=h(),r=oe();t.exports=function(e,t,i){try{return n(r(Object.getOwnPropertyDescriptor(e,t)[i]))}catch{}}}),gt=u((e,t)=>{var n=D();t.exports=function(e){return n(e)||e===null}}),_t=u((e,t)=>{var n=gt(),r=String,i=TypeError;t.exports=function(e){if(n(e))return e;throw new i(`Can't set `+r(e)+` as a prototype`)}}),vt=u((e,t)=>{var n=ht(),r=D(),i=T(),a=_t();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)}),yt=u((e,t)=>{var n=M(),r=b(),i=le(),a=it(),o=v(),s=mt(),c=ke(),l=vt(),u=pt(),d=Ee(),f=ct(),p=j(),m=tt(),h=lt(),g=a.PROPER,_=a.CONFIGURABLE,y=h.IteratorPrototype,x=h.BUGGY_SAFARI_ITERATORS,S=p(`iterator`),C=`keys`,w=`values`,T=`entries`,E=function(){return this};t.exports=function(e,t,a,p,h,v,b){s(a,t,p);var D=function(e){if(e===h&&te)return te;if(!x&&e&&e in A)return A[e];switch(e){case C:return function(){return new a(this,e)};case w:return function(){return new a(this,e)};case T:return function(){return new a(this,e)}}return function(){return new a(this)}},O=t+` Iterator`,k=!1,A=e.prototype,ee=A[S]||A[`@@iterator`]||h&&A[h],te=!x&&ee||D(h),ne=t===`Array`&&A.entries||ee,re,ie,ae;if(ne&&(re=c(ne.call(new e)),re!==Object.prototype&&re.next&&(!i&&c(re)!==y&&(l?l(re,y):o(re[S])||f(re,S,E)),u(re,O,!0,!0),i&&(m[O]=E))),g&&h===w&&ee&&ee.name!==w&&(!i&&_?d(A,`name`,w):(k=!0,te=function(){return r(ee,this)})),h)if(ie={values:D(w),keys:v?te:D(C),entries:D(T)},b)for(ae in ie)(x||k||!(ae in A))&&f(A,ae,ie[ae]);else n({target:t,proto:!0,forced:x||k},ie);return(!i||b)&&A[S]!==te&&f(A,S,te,{name:h}),m[t]=te,ie}}),bt=u((e,t)=>{t.exports=function(e,t){return{value:e,done:t}}}),xt=u((e,t)=>{var n=E(),r=Ge(),i=tt(),a=rt(),o=Te().f,s=yt(),c=bt(),l=le(),u=y(),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{}}),St=u((e,t)=>{var n=j(),r=tt(),i=n(`iterator`),a=Array.prototype;t.exports=function(e){return e!==void 0&&(r.Array===e||a[i]===e)}}),Ct=u((e,t)=>{var n=dt(),r=se(),i=w(),a=tt(),o=j()(`iterator`);t.exports=function(e){if(!i(e))return r(e,o)||r(e,`@@iterator`)||a[n(e)]}}),wt=u((e,t)=>{var n=b(),r=oe(),i=we(),a=ae(),o=Ct(),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`)}}),Tt=u((e,t)=>{var n=b(),r=we(),i=se();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}}),Et=u((e,t)=>{var n=Se(),r=b(),i=we(),a=ae(),o=St(),s=Pe(),c=A(),l=wt(),u=Ct(),d=Tt(),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)}}),Dt=u((e,t)=>{var n=y(),r=Te(),i=S();t.exports=function(e,t,a){n?r.f(e,t,i(0,a)):e[t]=a}}),Ot=u(()=>{var e=M(),t=Et(),n=Dt();e({target:`Object`,stat:!0},{fromEntries:function(e){var r={};return t(e,function(e,t){n(r,e,t)},{AS_ENTRIES:!0}),r}})}),kt=u((e,t)=>{xt(),Ot(),t.exports=O().Object.fromEntries}),At=u((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}}),jt=u(()=>{xt();var e=At(),t=d(),n=pt(),r=tt();for(i in e)n(t[i],i),r[i]=r.Array;var i}),Mt=u((e,t)=>{var n=kt();jt(),t.exports=n}),Nt=u((e,t)=>{t.exports=Mt()}),Pt=u((e,t)=>{var n=d(),r=ee(),i=g(),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`}()}),Ft=u((e,t)=>{t.exports=Pt()===`NODE`}),It=u((e,t)=>{var n=Te();t.exports=function(e,t,r){return n.f(e,t,r)}}),Lt=u((e,t)=>{var n=k(),r=It(),i=j(),a=y(),o=i(`species`);t.exports=function(e){var t=n(e);a&&t&&!t[o]&&r(t,o,{configurable:!0,get:function(){return this}})}}),Rt=u((e,t)=>{var n=A(),r=TypeError;t.exports=function(e,t){if(n(t,e))return e;throw new r(`Incorrect invocation`)}}),zt=u((e,t)=>{var n=h(),r=v(),i=de(),a=n(Function.toString);r(i.inspectSource)||(i.inspectSource=function(e){return a(e)}),t.exports=i.inspectSource}),Bt=u((e,t)=>{var n=h(),r=f(),i=v(),a=dt(),o=k(),s=zt(),c=function(){},l=o(`Reflect`,`construct`),u=/^\s*(?:class|function)\b/,d=n(u.exec),p=!u.test(c),m=function(e){if(!i(e))return!1;try{return l(c,[],e),!0}catch{return!1}},g=function(e){if(!i(e))return!1;switch(a(e)){case`AsyncFunction`:case`GeneratorFunction`:case`AsyncGeneratorFunction`:return!1}try{return p||!!d(u,s(e))}catch{return!0}};g.sham=!0,t.exports=!l||r(function(){var e;return m(m.call)||!m(Object)||!m(function(){e=!0})||e})?g:m}),Vt=u((e,t)=>{var n=Bt(),r=ae(),i=TypeError;t.exports=function(e){if(n(e))return e;throw new i(r(e)+` is not a constructor`)}}),Ht=u((e,t)=>{var n=we(),r=Vt(),i=w(),a=j()(`species`);t.exports=function(e,t){var o=n(e).constructor,s;return o===void 0||i(s=n(o)[a])?t:r(s)}}),Ut=u((e,t)=>{t.exports=h()([].slice)}),Wt=u((e,t)=>{var n=TypeError;t.exports=function(e,t){if(e<t)throw new n(`Not enough arguments`);return e}}),Gt=u((e,t)=>{var n=ee();t.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(n)}),Kt=u((e,t)=>{var n=d(),r=m(),i=Se(),a=v(),o=me(),s=f(),c=ot(),l=Ut(),u=ve(),p=Wt(),h=Gt(),g=Ft(),_=n.setImmediate,y=n.clearImmediate,b=n.process,x=n.Dispatch,S=n.Function,C=n.MessageChannel,w=n.String,T=0,E={},D=`onreadystatechange`,O,k,A,ee;s(function(){O=n.location});var te=function(e){if(o(E,e)){var t=E[e];delete E[e],t()}},ne=function(e){return function(){te(e)}},re=function(e){te(e.data)},ie=function(e){n.postMessage(w(e),O.protocol+`//`+O.host)};(!_||!y)&&(_=function(e){p(arguments.length,1);var t=a(e)?e:S(e),n=l(arguments,1);return E[++T]=function(){r(t,void 0,n)},k(T),T},y=function(e){delete E[e]},g?k=function(e){b.nextTick(ne(e))}:x&&x.now?k=function(e){x.now(ne(e))}:C&&!h?(A=new C,ee=A.port2,A.port1.onmessage=re,k=i(ee.postMessage,ee)):n.addEventListener&&a(n.postMessage)&&!n.importScripts&&O&&O.protocol!==`file:`&&!s(ie)?(k=ie,n.addEventListener(`message`,re,!1)):k=D in u(`script`)?function(e){c.appendChild(u(`script`))[D]=function(){c.removeChild(this),te(e)}}:function(e){setTimeout(ne(e),0)}),t.exports={set:_,clear:y}}),qt=u((e,t)=>{var n=d(),r=y(),i=Object.getOwnPropertyDescriptor;t.exports=function(e){if(!r)return n[e];var t=i(n,e);return t&&t.value}}),Jt=u((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}),Yt=u((e,t)=>{var n=ee();t.exports=/ipad|iphone|ipod/i.test(n)&&typeof Pebble<`u`}),Xt=u((e,t)=>{var n=ee();t.exports=/web0s(?!.*chrome)/i.test(n)}),Zt=u((e,t)=>{var n=d(),r=qt(),i=Se(),a=Kt().set,o=Jt(),s=Gt(),c=Yt(),l=Xt(),u=Ft(),f=n.MutationObserver||n.WebKitMutationObserver,p=n.document,m=n.process,h=n.Promise,g=r(`queueMicrotask`),_,v,y,b,x;g||=(S=new o,C=function(){var e,t;for(u&&(e=m.domain)&&e.exit();t=S.get();)try{t()}catch(e){throw S.head&&_(),e}e&&e.enter()},!s&&!u&&!l&&f&&p?(v=!0,y=p.createTextNode(``),new f(C).observe(y,{characterData:!0}),_=function(){y.data=v=!v}):!c&&h&&h.resolve?(b=h.resolve(void 0),b.constructor=h,x=i(b.then,b),_=function(){x(C)}):u?_=function(){m.nextTick(C)}:(a=i(a,n),_=function(){a(C)}),function(e){S.head||_(),S.add(e)});var S,C;t.exports=g}),Qt=u((e,t)=>{t.exports=function(e,t){try{arguments.length===1?console.error(e):console.error(e,t)}catch{}}}),$t=u((e,t)=>{t.exports=function(e){try{return{error:!1,value:e()}}catch(e){return{error:!0,value:e}}}}),en=u((e,t)=>{t.exports=d().Promise}),tn=u((e,t)=>{var n=d(),r=en(),i=v(),a=xe(),o=zt(),s=j(),c=Pt(),l=le(),u=te(),f=r&&r.prototype,p=s(`species`),m=!1,h=i(n.PromiseRejectionEvent);t.exports={CONSTRUCTOR:a(`Promise`,function(){var e=o(r),t=e!==String(r);if(!t&&u===66||l&&!(f.catch&&f.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[p]=i,m=n.then(function(){})instanceof i,!m)return!0}return!t&&(c===`BROWSER`||c===`DENO`)&&!h}),REJECTION_EVENT:h,SUBCLASSING:m}}),nn=u((e,t)=>{var n=oe(),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)}}),rn=u(()=>{var e=M(),t=le(),n=Ft(),r=d(),i=O(),a=b(),o=ct(),s=vt(),c=pt(),l=Lt(),u=oe(),f=v(),p=D(),m=Rt(),h=Ht(),g=Kt().set,_=Zt(),y=Qt(),x=$t(),S=Jt(),C=rt(),w=en(),T=tn(),E=nn(),k=`Promise`,A=T.CONSTRUCTOR,ee=T.REJECTION_EVENT,te=T.SUBCLASSING,ne=C.getterFor(k),re=C.set,ie=w&&w.prototype,ae=w,se=ie,ce=r.TypeError,ue=r.document,de=r.process,fe=E.f,pe=fe,me=!!(ue&&ue.createEvent&&r.dispatchEvent),he=`unhandledrejection`,j=`rejectionhandled`,ge=0,_e=1,ve=2,ye=1,be=2,xe,Se,Ce,we,Te=function(e){var t;return p(e)&&f(t=e.then)?t:!1},Ee=function(e,t){var n=t.value,r=t.state===_e,i=r?e.ok:e.fail,o=e.resolve,s=e.reject,c=e.domain,l,u,d;try{i?(r||(t.rejection===be&&je(t),t.rejection=ye),i===!0?l=n:(c&&c.enter(),l=i(n),c&&(c.exit(),d=!0)),l===e.promise?s(new ce(`Promise-chain cycle`)):(u=Te(l))?a(u,l,o,s):o(l)):s(n)}catch(e){c&&!d&&c.exit(),s(e)}},De=function(e,t){e.notified||(e.notified=!0,_(function(){for(var n=e.reactions,r;r=n.get();)Ee(r,e);e.notified=!1,t&&!e.rejection&&ke(e)}))},Oe=function(e,t,n){var i,a;me?(i=ue.createEvent(`Event`),i.promise=t,i.reason=n,i.initEvent(e,!1,!0),r.dispatchEvent(i)):i={promise:t,reason:n},!ee&&(a=r[`on`+e])?a(i):e===he&&y(`Unhandled promise rejection`,n)},ke=function(e){a(g,r,function(){var t=e.facade,r=e.value,i=Ae(e),a;if(i&&(a=x(function(){n?de.emit(`unhandledRejection`,r,t):Oe(he,t,r)}),e.rejection=n||Ae(e)?be:ye,a.error))throw a.value})},Ae=function(e){return e.rejection!==ye&&!e.parent},je=function(e){a(g,r,function(){var t=e.facade;n?de.emit(`rejectionHandled`,t):Oe(j,t,e.value)})},Me=function(e,t,n){return function(r){e(t,r,n)}},Ne=function(e,t,n){e.done||(e.done=!0,n&&(e=n),e.value=t,e.state=ve,De(e,!0))},Pe=function(e,t,n){if(!e.done){e.done=!0,n&&(e=n);try{if(e.facade===t)throw new ce(`Promise can't be resolved itself`);var r=Te(t);r?_(function(){var n={done:!1};try{a(r,t,Me(Pe,n,e),Me(Ne,n,e))}catch(t){Ne(n,t,e)}}):(e.value=t,e.state=_e,De(e,!1))}catch(t){Ne({done:!1},t,e)}}};if(A&&(ae=function(e){m(this,se),u(e),a(xe,this);var t=ne(this);try{e(Me(Pe,t),Me(Ne,t))}catch(e){Ne(t,e)}},se=ae.prototype,xe=function(e){re(this,{type:k,done:!1,notified:!1,parent:!1,reactions:new S,rejection:!1,state:ge,value:null})},xe.prototype=o(se,`then`,function(e,t){var r=ne(this),i=fe(h(this,ae));return r.parent=!0,i.ok=f(e)?e:!0,i.fail=f(t)&&t,i.domain=n?de.domain:void 0,r.state===ge?r.reactions.add(i):_(function(){Ee(i,r)}),i.promise}),Se=function(){var e=new xe,t=ne(e);this.promise=e,this.resolve=Me(Pe,t),this.reject=Me(Ne,t)},E.f=fe=function(e){return e===ae||e===Ce?new Se(e):pe(e)},!t&&f(w)&&ie!==Object.prototype)){we=ie.then,te||o(ie,`then`,function(e,t){var n=this;return new ae(function(e,t){a(we,n,e,t)}).then(e,t)},{unsafe:!0});try{delete ie.constructor}catch{}s&&s(ie,se)}e({global:!0,constructor:!0,wrap:!0,forced:A},{Promise:ae}),Ce=i.Promise,c(ae,k,!1,!0),l(k)}),an=u((e,t)=>{var n=j()(`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}}),on=u((e,t)=>{var n=en(),r=an();t.exports=tn().CONSTRUCTOR||!r(function(e){n.all(e).then(void 0,function(){})})}),sn=u(()=>{var e=M(),t=b(),n=oe(),r=nn(),i=$t(),a=Et();e({target:`Promise`,stat:!0,forced:on()},{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}})}),cn=u(()=>{var e=M(),t=le(),n=tn().CONSTRUCTOR,r=en(),i=k(),a=v(),o=ct(),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}),ln=u(()=>{var e=M(),t=b(),n=oe(),r=nn(),i=$t(),a=Et();e({target:`Promise`,stat:!0,forced:on()},{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}})}),un=u(()=>{var e=M(),t=nn(),n=tn().CONSTRUCTOR;e({target:`Promise`,stat:!0,forced:n},{reject:function(e){var n=t.f(this),r=n.reject;return r(e),n.promise}})}),dn=u((e,t)=>{var n=we(),r=D(),i=nn();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}}),fn=u(()=>{var e=M(),t=k(),n=le(),r=en(),i=tn().CONSTRUCTOR,a=dn(),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)}})}),pn=u(()=>{rn(),sn(),cn(),ln(),un(),fn()}),mn=u(()=>{var e=M(),t=le(),n=en(),r=f(),i=k(),a=v(),o=Ht(),s=dn(),c=ct(),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}),hn=u((e,t)=>{pn(),mn(),t.exports=qe()(`Promise`,`finally`)}),gn=u((e,t)=>{t.exports=hn()}),_n=u((e,t)=>{t.exports=gn()}),vn=u(()=>{var e=M(),t=pe(),n=Pe(),r=je(),i=Ge();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`)}),yn=u((e,t)=>{vn(),t.exports=qe()(`Array`,`at`)}),bn=u((e,t)=>{t.exports=yn()}),xn=u((e,t)=>{t.exports=bn()}),Sn=u((e,t)=>{var n=dt(),r=String;t.exports=function(e){if(n(e)===`Symbol`)throw TypeError(`Cannot convert a Symbol value to a string`);return r(e)}}),Cn=u(()=>{var e=M(),t=h(),n=T(),r=je(),i=Sn(),a=f(),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)}})}),wn=u((e,t)=>{Cn(),t.exports=qe()(`String`,`at`)}),Tn=u((e,t)=>{t.exports=wn()}),En=u((e,t)=>{t.exports=Tn()}),Dn=u((e,t)=>{var n=g();t.exports=Array.isArray||function(e){return n(e)===`Array`}}),On=u((e,t)=>{var n=TypeError,r=9007199254740991;t.exports=function(e){if(e>r)throw n(`Maximum allowed index exceeded`);return e}}),kn=u((e,t)=>{var n=Dn(),r=Pe(),i=On(),a=Se(),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}),An=u((e,t)=>{var n=Dn(),r=Bt(),i=D(),a=j()(`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}}),jn=u((e,t)=>{var n=An();t.exports=function(e,t){return new(n(e))(t===0?0:t)}}),Mn=u(()=>{var e=M(),t=kn(),n=oe(),r=pe(),i=Pe(),a=jn();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}})}),Nn=u(()=>{Ge()(`flatMap`)}),Pn=u((e,t)=>{Mn(),Nn(),t.exports=qe()(`Array`,`flatMap`)}),Fn=u((e,t)=>{t.exports=Pn()}),In=u((e,t)=>{t.exports=Fn()}),Ln=u((e,t)=>{t.exports=`
7
+ \v\f\r \xA0               \u2028\u2029`}),Rn=u((e,t)=>{var n=h(),r=T(),i=Sn(),a=Ln(),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)}}),zn=u((e,t)=>{var n=it().PROPER,r=f(),i=Ln(),a=`​…᠎`;t.exports=function(e){return r(function(){return!!i[e]()||a[e]()!==a||n&&i[e].name!==e})}}),Bn=u((e,t)=>{var n=Rn().start;t.exports=zn()(`trimStart`)?function(){return n(this)}:``.trimStart}),Vn=u(()=>{var e=M(),t=Bn();e({target:`String`,proto:!0,name:`trimStart`,forced:``.trimLeft!==t},{trimLeft:t})}),Hn=u(()=>{Vn();var e=M(),t=Bn();e({target:`String`,proto:!0,name:`trimStart`,forced:``.trimStart!==t},{trimStart:t})}),Un=u((e,t)=>{Hn(),t.exports=qe()(`String`,`trimLeft`)}),Wn=u((e,t)=>{t.exports=Un()}),Gn=u((e,t)=>{t.exports=Wn()}),Kn=u((e,t)=>{var n=D(),r=g(),i=j()(`match`);t.exports=function(e){var t;return n(e)&&((t=e[i])===void 0?r(e)===`RegExp`:!!t)}}),qn=u((e,t)=>{var n=d(),r=f(),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})}}),Jn=u((e,t)=>{var n=we();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}}),Yn=u((e,t)=>{var n=b(),r=me(),i=A(),a=qn(),o=Jn(),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}}),Xn=u((e,t)=>{var n=h(),r=pe(),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})}}),Zn=u(()=>{var e=M(),t=b(),n=h(),r=T(),i=v(),a=D(),o=Kn(),s=Sn(),c=se(),l=Yn(),u=Xn(),d=j(),f=le(),p=d(`replace`),m=TypeError,g=n(``.indexOf),_=n(``.replace),y=n(``.slice),x=Math.max;e({target:`String`,proto:!0},{replaceAll:function(e,n){var d=r(this),h,v,b,S,C,w,T,E,D,O,k=0,A=``;if(a(e)){if(h=o(e),h&&(v=s(r(l(e))),!~g(v,`g`)))throw new m("`.replaceAll` does not allow non-global regexes");if(b=c(e,p),b)return t(b,e,d,n);if(f&&h)return _(s(d),e,n)}for(S=s(d),C=s(e),w=i(n),w||(n=s(n)),T=C.length,E=x(1,T),D=g(S,C);D!==-1;)O=w?s(n(C,D,S)):u(C,S,D,[],void 0,n),A+=y(S,k,D)+O,k=D+T,D=D+E>S.length?-1:g(S,C,D+E);return k<S.length&&(A+=y(S,k)),A}})}),Qn=u((e,t)=>{Zn(),t.exports=qe()(`String`,`replaceAll`)}),$n=u((e,t)=>{t.exports=Qn()}),er=u((e,t)=>{t.exports=$n()}),tr=u((e,t)=>{var n=je(),r=Sn(),i=T(),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}}),nr=u((e,t)=>{var n=h(),r=Ne(),i=Sn(),a=tr(),o=T(),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)}}),rr=u((e,t)=>{var n=ee();t.exports=/Version\/10(?:\.\d+){1,2}(?: [\w./]+)?(?: Mobile\/\w+)? Safari\//.test(n)}),ir=u(()=>{var e=M(),t=nr().start;e({target:`String`,proto:!0,forced:rr()},{padStart:function(e){return t(this,e,arguments.length>1?arguments[1]:void 0)}})}),ar=u((e,t)=>{ir(),t.exports=qe()(`String`,`padStart`)}),or=u((e,t)=>{t.exports=ar()}),sr=u((e,t)=>{t.exports=or()}),cr=`2.0.154-dev.784f4859.0`,lr;(e=>{e.STOPPED=`stopped`,e.READY=`ready`,e.PLAYING=`playing`,e.PAUSED=`paused`})(lr||={});var ur;(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`})(ur||={});var dr;(e=>{e.AV1=`av1`,e.VP9=`vp9`,e.AVC1=`avc1`,e.HEV1=`hev1`})(dr||={});var fr;(e=>{e.NOT_AVAILABLE=`NOT_AVAILABLE`,e.AVAILABLE=`AVAILABLE`,e.CONNECTING=`CONNECTING`,e.CONNECTED=`CONNECTED`})(fr||={});var pr;(e=>{e.HTTP1=`http1`,e.HTTP2=`http2`,e.QUIC=`quic`})(pr||={});var mr;(e=>{e.NONE=`none`,e.INLINE=`inline`,e.FULLSCREEN=`fullscreen`,e.SECOND_SCREEN=`second_screen`,e.PIP=`pip`,e.INVISIBLE=`invisible`})(mr||={});var hr;(e=>{e.TRAFFIC_SAVING=`traffic_saving`,e.HIGH_QUALITY=`high_quality`,e.UNKNOWN=`unknown`})(hr||={});var gr=l(We(),1),_r=l(Xe(),1);import{assertNever as vr,assertNonNullable as yr,isNonNullable as br,ValueSubject as xr,Subject as Sr,Subscription as Cr,merge as wr,observableFrom as Tr,fromEvent as Er,map as Dr,tap as Or,filterChanged as kr,isNullable as Ar,ErrorCategory as jr}from"@vkontakte/videoplayer-shared/es2018";var Mr=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 Nr{constructor(t){e(this,`connection$`,new xr(void 0)),e(this,`castState$`,new xr(`NOT_AVAILABLE`)),e(this,`errorEvent$`,new Sr),e(this,`contentId`,void 0),e(this,`realCastState$`,new xr(`NOT_AVAILABLE`)),e(this,`subscription`,new Cr),e(this,`log`,void 0),e(this,`params`,void 0),e(this,`isDestroyed`,!1),this.params=t,this.log=this.params.dependencies.logger.createComponentLog(`ChromecastInitializer`);let n=`chrome`in window;if(this.log({message:`[constructor] receiverApplicationId: ${this.params.receiverApplicationId}, isDisabled: ${this.params.isDisabled}, isSupported: ${n}`}),t.isDisabled||!n)return;let r=br(window.chrome?.cast),i=!!window.__onGCastApiAvailable;r?this.initializeCastApi():(window.__onGCastApiAvailable=e=>{delete window.__onGCastApiAvailable,e&&!this.isDestroyed&&this.initializeCastApi()},i||Mr(`https://www.gstatic.com/cv/js/sender/v1/cast_sender.js?loadCastFramework=1`).catch(()=>this.errorEvent$.next({id:`ChromecastLoading`,category:jr.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(){br(this.connection$.getValue())?this.disconnect():this.connect()}setVolume(e){let t=this.connection$.getValue();Ar(t)||(t.remotePlayer.volumeLevel=e,t.remotePlayerController.setVolumeLevel())}setMuted(e){let t=this.connection$.getValue();Ar(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(Er(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 vr(e.sessionState)}})).add(wr(Er(n,cast.framework.CastContextEventType.CAST_STATE_CHANGED).pipe(Or(e=>{this.log({message:`[cast.framework.RemotePlayerEventType.CAST_STATE_CHANGED]: ${JSON.stringify(e)}`})}),Dr(e=>e.castState)),Tr([n.getCastState()])).pipe(kr(),Dr(Pr),Or(e=>{this.log({message:`realCastState$: ${e}`})})).subscribe(this.realCastState$)).add(this.realCastState$.subscribe(r=>{let i=r===`CONNECTED`,a=br(this.connection$.getValue());if(i&&!a){var o;let r=n.getCurrentSession();yr(r);let i=r.getCastDevice(),a=(o=r.getMediaSession())==null||(o=o.media)==null?void 0:o.contentId;(Ar(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`?br(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:jr.EXTERNAL_API,message:`[initializeCastApi] failed`,thrown:e})}}}var Pr=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 vr(e)}};import{assertNonNullable as Fr,combine as Ir,debounce as Lr,ErrorCategory as Rr,filter as zr,filterChanged as Br,isNonNullable as Vr,isNullable as Hr,map as Ur,Subscription as Wr,ValueSubject as Gr}from"@vkontakte/videoplayer-shared/es2018";import{assertNever as Kr,assertNonNullable as qr,ErrorCategory as Jr,getHighestQuality as Yr,isNonNullable as Xr}from"@vkontakte/videoplayer-shared/es2018";import{assertNever as Zr}from"@vkontakte/videoplayer-shared/es2018";var Qr=(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:Zr(n)}return e},$r=(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:Zr(t)}},ei=e=>{let{source:t,format:n,meta:r,output:i}=e,a,o,s;switch(n){case`MPEG`:{let e=t[n];qr(e);let r=Yr(Object.keys(e));qr(r);let i=e[r];qr(i),a=i,o=`video/mp4`,s=ti();break}case`HLS`:case`HLS_FMP4`:case`HLS_ONDEMAND`:{let e=t[n];qr(e),a=e.url,o=`application/x-mpegurl`,s=ti();break}case`DASH_SEP`:case`DASH_ONDEMAND`:case`DASH_WEBM`:case`DASH_WEBM_AV1`:case`DASH_STREAMS`:{let e=t[n];qr(e),a=e.url,o=`application/dash+xml`,s=ti();break}case`DASH_LIVE_CMAF`:{let e=t[n];qr(e),a=e.url,o=`application/dash+xml`,s=ni();break}case`HLS_LIVE`:case`HLS_LIVE_CMAF`:{let e=t[n];qr(e),a=Qr(e.url),o=`application/x-mpegurl`,s=ni();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:Jr.VIDEO_PIPELINE,message:e,thrown:t}),t}case`DASH`:case`DASH_LIVE_WEBM`:throw Error(`${n} is no longer supported`);default:return Kr(n)}let c=ri(r.videoId??a,o);c.contentUrl=a,c.streamType=s,c.metadata=ii();let{title:l,subtitle:u}=r;return Xr(l)&&(c.metadata.title=l),Xr(u)&&(c.metadata.subtitle=u),c};function ti(){var e;return((e=chrome.cast)==null||(e=e.media)==null||(e=e.StreamType)==null?void 0:e.BUFFERED)??`BUFFERED`}function ni(){var e;return((e=chrome.cast)==null||(e=e.media)==null||(e=e.StreamType)==null?void 0:e.LIVE)??`LIVE`}function ri(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:ti()}}function ii(){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 N=(e,t,n=!1)=>{let r=e.getTransition();(n||!r||r.to===t)&&e.setState(t)};class ai{constructor(t){e(this,`params`,void 0),e(this,`interval`,0),e(this,`startVideoPosition`,void 0),e(this,`startTs`,void 0),this.params=t}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 oi}from"@vkontakte/videoplayer-shared/es2018";import{isBrowserWindow as si,ValueSubject as ci}from"@vkontakte/videoplayer-shared/es2018";var li=l(Xe(),1);import{getWindow as ui}from"@vkontakte/videoplayer-shared/es2018";class di{constructor(){e(this,`_current`,void 0),e(this,`_current_version`,void 0),e(this,`_chromeVersion`,void 0),e(this,`_firefoxVersion`,void 0),e(this,`_safariVersion`,void 0),e(this,`_operaVersion`,void 0),e(this,`_edgeVersion`,void 0),e(this,`_yandexVersion`,void 0),e(this,`_isMiuiBrowser`,!1)}get current(){return this._current}get isChrome(){return this.current===`Chrome`}get isChromiumBased(){return li.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}=ui().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 fi=l(Xe(),1);import{getWindow as pi,isBrowserWindow as mi}from"@vkontakte/videoplayer-shared/es2018";var hi=()=>{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 gi{constructor(t){e(this,`_displayChecker`,void 0),e(this,`_isMobile`,void 0),e(this,`_current`,void 0),e(this,`_iosVersion`,void 0),e(this,`_highEntropyValues`,{}),e(this,`_os`,{name:`Unknown`,version:`Unknown`,full:`Unknown`}),e(this,`_details`,{vendor:`Unknown`,model:`Unknown`}),this._displayChecker=t}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`)||fi.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=pi();if(!mi(e))return;let{userAgent:t}=e.navigator;try{this._isMobile=hi()}catch(e){console.error(`DeviceChecker: calling isMobile error - `,e)}this.detectDevice(t),this.detectOS(t),this.detectDeviceDetails(t),this.detectHighEntropyValues(),this.isIOS&&this.detectIOSVersion()}async detectHighEntropyValues(){let e=pi();if(!mi(e))return;let{userAgentData:t}=e.navigator;if(t?.getHighEntropyValues){let e=await t.getHighEntropyValues([`architecture`,`bitness`,`brands`,`mobile`,`platform`,`formFactor`,`model`,`platformVersion`,`wow64`]);this._highEntropyValues=e,e.platform&&(this._os.name=this.normalizeOSName(e.platform),e.platformVersion&&(this._os.version=this.normalizeOSVersion(e.platformVersion),this._os.full=`${this._os.name} ${this._os.version}`)),e.model&&(this._details.model=e.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=pi();if(!mi(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 _i,isBrowserWindow as vi}from"@vkontakte/videoplayer-shared/es2018";class yi{constructor(){e(this,`_maxTouchPoints`,void 0),e(this,`_height`,void 0),e(this,`_width`,void 0),e(this,`_isHdr`,void 0),e(this,`_pixelRatio`,void 0),e(this,`_screenHeight`,void 0),e(this,`_screenWidth`,void 0),e(this,`_colorDepth`,void 0)}get isTouch(){return typeof this._maxTouchPoints==`number`?this._maxTouchPoints>1:`ontouchstart`in _i()}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=_i();if(!vi(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 bi,isBrowserWindow as xi}from"@vkontakte/videoplayer-shared/es2018";var Si=()=>window.ManagedMediaSource||window.MediaSource,Ci=()=>{var e;return!!(window.ManagedMediaSource&&!((e=window.ManagedSourceBuffer)==null||(e=e.prototype)==null)&&e.appendBuffer)},wi=()=>{var e;return!!(window.MediaSource&&!((e=window.SourceBuffer)==null||(e=e.prototype)==null)&&e.appendBuffer)},Ti=()=>window.ManagedMediaSource?new ManagedMediaSource:new MediaSource,Ei=bi().document?.createElement(`video`),Di=`video/mp4; codecs="avc1.42000a,mp4a.40.2"`,Oi=`video/mp4; codecs="hev1.1.6.L93.B0"`,ki=`video/webm; codecs="vp09.00.10.08"`,Ai=`video/webm; codecs="av01.0.00M.08"`,ji=`audio/mp4; codecs="mp4a.40.2"`,Mi=`audio/webm; codecs="opus"`,Ni;(async()=>{let e=bi();if(!xi(e))return;let t={type:`media-source`,video:{contentType:`video/webm`,width:1280,height:720,bitrate:1e6,framerate:30}},[n,r]=await Promise.all([e.navigator.mediaCapabilities.decodingInfo({...t,video:{...t.video,contentType:Ai}}),e.navigator.mediaCapabilities.decodingInfo({...t,video:{...t.video,contentType:ki}})]);Ni={DASH_WEBM_AV1:n,DASH_WEBM:r}})().catch(e=>{console.log(Ei),console.error(e)});class Pi{constructor(t,n){e(this,`_video`,void 0),e(this,`_deviceChecker`,void 0),e(this,`_browserChecker`,void 0),e(this,`_protocols`,void 0),e(this,`_containers`,void 0),e(this,`_codecs`,void 0),e(this,`_nativeHlsSupported`,void 0),this._deviceChecker=t,this._browserChecker=n}get protocols(){return this._protocols}get containers(){return this._containers}get codecs(){return this._codecs}get webmDecodingInfo(){return Ni}get supportedCodecs(){return Object.keys(this._codecs).filter(e=>this._codecs[e])}get nativeHlsSupported(){return this._nativeHlsSupported}detect(){let e=bi();if(xi(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:Ci(),mse:wi(),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=Si())==null||(o=a.isTypeSupported)==null)&&o.call(a,Di)),v=!!(!((s=Si())==null||(c=s.isTypeSupported)==null)&&c.call(s,Oi)),y=!!(!((l=Si())==null||(u=l.isTypeSupported)==null)&&u.call(l,ji));this._codecs={h264:_,h265:v,vp9:!!(!((d=Si())==null||(f=d.isTypeSupported)==null)&&f.call(d,ki)),av1:!!(!((p=Si())==null||(m=p.isTypeSupported)==null)&&m.call(p,Ai)),aac:y,opus:!!(!((h=Si())==null||(g=h.isTypeSupported)==null)&&g.call(h,Mi)),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 Fi,isBrowserWindow as Ii}from"@vkontakte/videoplayer-shared/es2018";var Li=`audio/mpeg`;class Ri{constructor(){e(this,`_audio`,void 0),e(this,`_containers`,void 0),e(this,`_codecs`,void 0)}supportMp3(){return this._codecs.mp3&&this._containers.mpeg}detect(){let e=Fi();if(Ii(e)){this._audio=e.document.createElement(`audio`);try{var t,n,r;this._containers={mpeg:!!(t=this._audio).canPlayType?.call(t,Li)},this._codecs={mp3:!!(!((n=Si())==null||(r=n.isTypeSupported)==null)&&r.call(n,Li))}}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 zi{constructor(){e(this,`isInited$`,new ci(!1)),e(this,`_displayChecker`,void 0),e(this,`_deviceChecker`,void 0),e(this,`_browserChecker`,void 0),e(this,`_videoChecker`,void 0),e(this,`_audioChecker`,void 0),this._displayChecker=new yi,this._deviceChecker=new gi(this._displayChecker),this._browserChecker=new di,this._videoChecker=new Pi(this._deviceChecker,this._browserChecker),this._audioChecker=new Ri,this.detect()}get display(){return this._displayChecker}get device(){return this._deviceChecker}get browser(){return this._browserChecker}get video(){return this._videoChecker}get audio(){return this._audioChecker}async detect(){si()&&(this._displayChecker.detect(),this._deviceChecker.detect(),this._browserChecker.detect(),this._videoChecker.detect(),this._audioChecker.detect(),this.isInited$.next(!0))}}var P=new zi,Bi=e=>{let{containers:t,protocols:n,codecs:r,nativeHlsSupported:i}=P.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 oi(e)}})},Vi=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 oi(e)}},Hi=e=>Bi(Object.keys(e).filter(e=>!Vi(e))).length>0;class Ui{constructor(t){e(this,`subscription`,new Wr),e(this,`log`,void 0),e(this,`params`,void 0),e(this,`sessionId$`,new Gr(null)),e(this,`mediaSessionId$`,new Gr(null)),e(this,`contentId$`,new Gr(null)),e(this,`progressTicker`,void 0),e(this,`isMobile`,hi()),e(this,`mobileVolumeState`,{muted:!1,volume:0}),e(this,`media`,null),e(this,`lastRequestedVolume`,null),e(this,`syncMediaState`,e=>{if(Hr(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;Vr(n)&&this.params.output.duration$.next(Math.max(0,n));let r=e.currentTime;if(Vr(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=t,this.progressTicker=new ai(t),this.log=this.params.dependencies.logger.createComponentLog(`ChromecastPresentationApiProvider`),this.log({message:`constructor, format: ${t.format}`}),this.params.output.isLive$.next(Vi(t.format)),this.subscribe()}subscribe(){let e=e=>{this.params.output.error$.next({category:Rr.WTF,id:`ChromecastPresentationApiProvider`,message:e?.message??`Unknown error`,thrown:e})};this.subscription.add(this.params.chromecastConnector.message$.pipe(zr(e=>!!e)).subscribe(e=>{this.handleMessage(e)},e)),this.subscription.add(this.sessionId$.pipe(zr(Vr),Br(),Lr(0)).subscribe(()=>{this.loadMedia()},e));let t=this.contentId$.pipe(Br(),Ur(Boolean));this.subscription.add(Ir({seekState:this.params.desiredState.seekState.stateChangeEnded$,mediaLoaded:t}).pipe(zr(({mediaLoaded:e})=>e)).subscribe(()=>{let e=this.params.desiredState.seekState.getState();e.state===`requested`&&this.seek(e.position/1e3)},e));let n=Ir({playbackState:this.params.desiredState.playbackState.stateChangeStarted$,mediaLoaded:t});this.subscription.add(n.pipe(zr(({mediaLoaded:e})=>e),Lr(0)).subscribe(()=>{this.syncPlayback()},e)),this.subscription.add(n.pipe(zr(({mediaLoaded:e,playbackState:{from:t,to:n}})=>!e&&t===`stopped`&&n===`playing`)).subscribe(()=>{this.loadMedia()},e)),this.subscription.add(Ir({volumeState:this.params.desiredState.volume.stateChangeStarted$.pipe(Lr(30)),mediaLoaded:t}).pipe(zr(({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=ei(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();Fr(e,`play on null mediaSessionId`),this.params.chromecastConnector.sendV2Message({type:`PLAY`,mediaSessionId:e,customData:null})}pause(){let e=this.mediaSessionId$.getValue();Fr(e,`pause on null mediaSessionId`),this.params.chromecastConnector.sendV2Message({type:`PAUSE`,mediaSessionId:e,customData:null})}seek(e){let t=this.mediaSessionId$.getValue();Fr(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`:N(this.params.desiredState.playbackState,`paused`);break;case`PLAYING`:N(this.params.desiredState.playbackState,`playing`);break;case`IDLE`:t===`FINISHED`?(this.params.output.endedEvent$.next(),N(this.params.desiredState.playbackState,`stopped`),this.contentId$.next(null)):N(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(Hr(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 Wi,ErrorCategory as Gi,filter as Ki,Subject as qi,Subscription as Ji,tap as Yi,ValueSubject as Xi,fromEvent as Zi}from"@vkontakte/videoplayer-shared/es2018";var Qi=e=>({castDevice:{friendlyName:e},remotePlayer:{},remotePlayerController:{},session:{}}),$i=()=>String(Date.now())+String(Math.floor(Math.random()*1e5));class ea{constructor(t){e(this,`params`,void 0),e(this,`clientId`,void 0),e(this,`capabilities`,[`WEB`]),e(this,`presentationRequest$`,new Xi(null)),e(this,`log`,void 0),e(this,`sessionId$`,new Xi(null)),e(this,`broadcastChannel`,new BroadcastChannel(`vk_player_chromecast_events`)),e(this,`subscription`,new Ji),e(this,`subscriptionEvents`,new Ji),e(this,`isDestroyed`,!1),e(this,`sequenceNumber`,0),e(this,`presentationAvailable$`,new Xi(!1)),e(this,`presentationConnection$`,new Xi(null)),e(this,`message$`,new Xi(null)),e(this,`friendlyName$`,new Xi(null)),e(this,`errorEvent$`,new qi),this.clientId=this.getClientId(),this.params=t,this.log=t.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(),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(Zi(e,`change`).subscribe(()=>{t()})),t()}).catch(()=>{this.presentationAvailable$.next(!0)}),window.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`})})}async connect(){this.log({message:`connect`});try{this.presentationRequest$.getValue()||(this.log({message:`reinitPresentation`}),this.reinitPresentation(!1));let e=this.presentationRequest$.getValue();Wi(e,`connect with null presentationRequest`);let t=await e.start();this.handleConnection(t)}catch(e){switch(e?.name){case`AbortError`:case`NotAllowedError`:break;default:this.errorEvent$.next({category:Gi.WTF,id:`ChromecastPresentationApiConnector`,message:e?.message??`connect error`,thrown:e});break}}}subscribe(){this.subscription.add(Zi(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(Yi(e=>{this.log({message:`presentationConnection$: ${!!e}`})}),Ki(e=>!!e)).subscribe(e=>{let t=Zi(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=Zi(e,`connect`).subscribe(()=>{this.send(`client_connect`)}),r=Zi(e,`close`).subscribe(e=>{switch(e.reason){case`error`:this.errorEvent$.next({category:Gi.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:{...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:Gi.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 window[e]=window[e]||$i()}resetSubscriptionEvents(){this.subscriptionEvents.unsubscribe(),this.subscriptionEvents=new Ji}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 ta,Subject as na,map as ra,Subscription as ia,combine as aa,filterChanged as oa,assertNonNullable as sa}from"@vkontakte/videoplayer-shared/es2018";class ca{static isSupported(){return`chrome`in window&&`presentation`in navigator&&`BroadcastChannel`in window}constructor(t){e(this,`subscription`,new ia),e(this,`log`,void 0),e(this,`contentId`,void 0),e(this,`connection$`,new ta(void 0)),e(this,`castState$`,new ta(`NOT_AVAILABLE`)),e(this,`errorEvent$`,new na),e(this,`chromecastConnector`,void 0);let n=ca.isSupported();this.log=t.dependencies.logger.createComponentLog(`ChromecastPresentationApiInitializer`),this.log({message:`[constructor] receiverApplicationId: ${t.receiverApplicationId}, isDisabled: ${t.isDisabled}, isSupported: ${n}`}),!(!n||t.isDisabled||!t.receiverApplicationId)&&(this.chromecastConnector=new ea({appId:t.receiverApplicationId,logger:t.dependencies.logger}),this.subscribe())}subscribe(){sa(this.chromecastConnector,`subscribe with null chromecastConnector`),this.subscription.add(this.chromecastConnector.errorEvent$.subscribe(this.errorEvent$));let e=aa({connection:this.chromecastConnector.presentationConnection$,available:this.chromecastConnector.presentationAvailable$,friendlyName:this.chromecastConnector.friendlyName$.pipe(oa())});this.subscription.add(e.pipe(ra(({connection:e,friendlyName:t})=>!!(e&&t)),oa()).subscribe(e=>{let t=this.chromecastConnector?.friendlyName$.getValue()??``;this.connection$.next(e?Qi(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()}async stopMedia(){this.log({message:`stopMedia`}),this.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 la=l(Xe(),1),ua=(e,...t)=>typeof e==`string`?e.includes(...t):la.default(e,...t),da=l(et(),1),fa=l(Nt(),1),pa=l(_n(),1);import{isNonNullable as ma,Subject as ha,merge as ga}from"@vkontakte/videoplayer-shared/es2018";class F{constructor(t){e(this,`state`,void 0),e(this,`prevState`,void 0),e(this,`transition`,void 0),e(this,`transitionStarted$`,new ha),e(this,`transitionEnded$`,new ha),e(this,`transitionUpdated$`,new ha),e(this,`forceChanged$`,new ha),e(this,`stateChangeStarted$`,ga(this.transitionStarted$,this.transitionUpdated$)),e(this,`stateChangeEnded$`,ga(this.transitionEnded$,this.forceChanged$)),this.state=t,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||ma(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 _a,debounce as va,ErrorCategory as ya,fromEvent as ba,map as xa,merge as Sa,observableFrom as Ca,Subject as wa,Subscription as Ta,timeout as Ea}from"@vkontakte/videoplayer-shared/es2018";var Da=5,Oa=5,ka=500,Aa=7e3;class ja{constructor(t){e(this,`subscription`,new Ta),e(this,`loadMediaTimeoutSubscription`,new Ta),e(this,`videoState`,new F(`stopped`)),e(this,`params`,void 0),e(this,`log`,void 0),e(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:_a(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:_a(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:_a(e)}break;default:_a(n)}}}),this.params=t,this.log=this.params.dependencies.logger.createComponentLog(`ChromecastProvider`),this.log({message:`constructor, format: ${t.format}`}),this.params.output.isLive$.next(Vi(t.format)),this.params.output.isAudioAvailable$.next(!0),this.handleRemoteVolumeChange({volume:this.params.connection.remotePlayer.volumeLevel,muted:this.params.connection.remotePlayer.isMuted});let n=this.params.connection.session.getMediaSession();n&&this.restoreSession(n),this.subscribe()}destroy(){this.log({message:`[destroy]`}),this.subscription.unsubscribe()}subscribe(){this.subscription.add(this.loadMediaTimeoutSubscription);let e=new Ta;this.subscription.add(e),this.subscription.add(Sa(this.videoState.stateChangeStarted$.pipe(xa(e=>`stateChangeStarted$ ${JSON.stringify(e)}`)),this.videoState.stateChangeEnded$.pipe(xa(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 wa;e.add(t.pipe(va(ka)).subscribe(()=>{this.params.output.seekedEvent$.next()}));let n=NaN;e.add(ba(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)>Da)&&t.next(r),n=r})),e.add(ba(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.DURATION_CHANGED).subscribe(e=>{this.logRemoteEvent(e),this.params.output.duration$.next(e.value)}))}t(ba(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_MEDIA_LOADED_CHANGED),t=>{this.logRemoteEvent(t),t.value?this.handleRemoteReady():(this.handleRemoteStop(),e.unsubscribe())}),t(ba(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_PAUSED_CHANGED),e=>{this.logRemoteEvent(e),e.value?this.handleRemotePause():this.handleRemotePlay()}),t(ba(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<Oa&&this.params.output.endedEvent$.next(),this.handleRemoteStop(),N(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:_a(n)}}),t(ba(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.VOLUME_LEVEL_CHANGED),e=>{this.logRemoteEvent(e),this.handleRemoteVolumeChange({volume:e.value})}),t(ba(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_MUTED_CHANGED),e=>{this.logRemoteEvent(e),this.handleRemoteVolumeChange({muted:e.value})}),t(Sa(this.params.desiredState.playbackState.stateChangeStarted$,this.params.desiredState.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,Ca([`init`])).pipe(va(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`),N(this.params.desiredState.playbackState,`paused`)):(this.videoState.setState(`playing`),N(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=ei(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`),N(this.params.desiredState.playbackState,`paused`))}handleRemotePlay(){let e=this.videoState.getState();(this.videoState.getTransition()?.to===`playing`||e===`paused`)&&(this.videoState.setState(`playing`),N(this.params.desiredState.playbackState,`playing`))}handleRemoteReady(){this.videoState.getTransition()?.to===`ready`&&this.videoState.setState(`ready`),this.params.desiredState.playbackState.getTransition()?.to===`ready`&&N(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(Ea(Aa).subscribe(()=>t(`timeout(${Aa})`)))});pa.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:ya.VIDEO_PIPELINE,message:t,thrown:e})}),()=>{this.loadMediaTimeoutSubscription.unsubscribe()})}logRemoteEvent(e){this.log({message:`[remoteEvent] ${JSON.stringify(e)}`})}}var Ma=l(Xe(),1);import{clearVideoElement as Na,getWindow as Pa}from"@vkontakte/videoplayer-shared/es2018";import{clearVideoElement as Fa}from"@vkontakte/videoplayer-shared/es2018";var Ia=e=>{try{e.pause(),e.playbackRate=0,Fa(e),e.remove()}catch(e){console.error(e)}};import{fromEvent as La,Subscription as Ra}from"@vkontakte/videoplayer-shared/es2018";class za{constructor(){e(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 Ba=Pa(),Va=Ba.WeakMap?new Ba.WeakMap:new za,Ha=Ba.WeakMap?new Ba.WeakMap:new Map,Ua=(e,t=20)=>{let n=0;return La(e,`ratechange`).subscribe(r=>{n++,n>=t&&(e.currentTime=e.currentTime,n=0)})},Wa=(e,{audioVideoSyncRate:t,disableYandexPiP:n})=>{let r=e.querySelector(`video`),i=!!r;r?Na(r):(r=document.createElement(`video`),e.appendChild(r)),Va.set(r,i);let a=new Ra;return a.add(Ua(r,t)),Ha.set(r,a),r.setAttribute(`crossorigin`,`anonymous`),r.setAttribute(`playsinline`,`playsinline`),n&&r.setAttribute(`x-yandex-pip`,`false`),r.controls=!1,r.setAttribute(`poster`,`data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=`),r},Ga=e=>{Ha.get(e)?.unsubscribe(),Ha.delete(e);let t=Va.get(e);Va.delete(e),t?Na(e):Ia(e)},Ka=l(We(),1);import{assertNonNullable as qa,isNonNullable as Ja,isNullable as Ya,fromEvent as Xa,merge as Za,observableFrom as Qa,filterChanged as $a,map as eo,Subject as to,Subscription as no,ValueSubject as ro,ErrorCategory as io}from"@vkontakte/videoplayer-shared/es2018";import{isNonNullable as ao,isNullable as oo,Subscription as so}from"@vkontakte/videoplayer-shared/es2018";var co=(e,t,n,{equal:r=(e,t)=>e===t,changed$:i,onError:a}={})=>{let o=e.getState(),s=t(),c=oo(i),l=new so;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},lo=(e,t,n)=>co(t,()=>e.loop,t=>{ao(t)&&(e.loop=t)},{onError:n}),uo=(e,t,n,r)=>co(t,()=>({muted:e.muted,volume:e.volume}),t=>{ao(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}),fo=(e,t,n,r)=>co(t,()=>e.playbackRate,t=>{ao(t)&&(e.playbackRate=t)},{changed$:n,onError:r}),po=co,mo=e=>[`__`,e.language,e.label].join(`|`),ho=(e,t)=>{if(e.id===t)return!0;let[n,r,i]=t.split(`|`);return e.language===r&&e.label===i};class go{constructor(t){e(this,`available$`,new to),e(this,`current$`,new ro(void 0)),e(this,`error$`,new to),e(this,`video`,void 0),e(this,`cueSettings`,void 0),e(this,`subscription`,new no),e(this,`externalTracks`,new Map),e(this,`internalTracks`,new Map),e(this,`baseURL`,void 0),this.baseURL=t}connect(e,t,n){this.video=e,this.cueSettings=t.textTrackCuesSettings,this.subscribe();let r=e=>{this.error$.next({id:`TextTracksManager`,category:io.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(po(t.internalTextTracks,()=>Ka.default(this.internalTracks),e=>{Ja(e)&&this.setInternal(e)},{equal:(e,t)=>Ja(e)&&Ja(t)&&e.length===t.length&&e.every(({id:e},n)=>e===t[n].id),changed$:this.available$.pipe(eo(e=>e.filter(({type:e})=>e===`internal`))),onError:r})),this.subscription.add(po(t.externalTextTracks,()=>Ka.default(this.externalTracks),e=>{Ja(e)&&this.setExternal(e)},{equal:(e,t)=>Ja(e)&&Ja(t)&&e.length===t.length&&e.every(({id:e},n)=>e===t[n].id),changed$:this.available$.pipe(eo(e=>e.filter(({type:e})=>e===`external`))),onError:r})),this.subscription.add(po(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(po(t.textTrackCuesSettings,()=>({}),()=>{if(this.video)for(let e of this.htmlTextTracksAsArray())this.applyCueSettings(e.cues),this.applyCueSettings(e.activeCues)}))}subscribe(){qa(this.video);let{textTracks:e}=this.video;this.subscription.add(Xa(e,`addtrack`).subscribe(()=>{let e=this.current$.getValue();e&&this.select(e)})),this.subscription.add(Za(Xa(e,`addtrack`),Xa(e,`removetrack`),Qa([`init`])).pipe(eo(()=>this.htmlTextTracksAsArray().map(e=>this.htmlTextTrackToITextTrack(e))),$a((e,t)=>e.length===t.length&&e.every(({id:e},n)=>e===t[n].id))).subscribe(this.available$)),this.subscription.add(Za(Xa(e,`change`),Qa([`init`])).pipe(eo(()=>this.htmlTextTracksAsArray().find(({mode:e})=>e===`showing`)),eo(e=>e&&this.htmlTextTrackToITextTrack(e).id),$a()).subscribe(this.current$));let t=e=>this.applyCueSettings(e.target?.activeCues??null);this.subscription.add(Xa(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(Xa(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;Ja(t.align)&&(e.align=t.align),Ja(t.position)&&(e.position=t.position),Ja(t.size)&&(e.size=t.size),Ja(t.line)&&(e.line=t.line)}}htmlTextTracksAsArray(e=!1){qa(this.video);let t=[...this.video.textTracks];return e?t:t.filter(go.isHealthyTrack)}htmlTextTrackToITextTrack(e){let{language:t,label:n}=e,r=e.id?e.id:mo(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){qa(this.video);for(let e of this.htmlTextTracksAsArray(!0))e.mode=`showing`;for(let t of this.htmlTextTracksAsArray(!0))(Ya(e)||!ho(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){qa(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){qa(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 _o=go;class vo{constructor(){e(this,`pausedTime`,0),e(this,`streamOffset`,0),e(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 yo=e=>{let t=e;for(;!(t instanceof Document)&&!(t instanceof ShadowRoot)&&t!==null;)t=t?.parentNode;return t??void 0},bo=e=>{let t=yo(e);return!!(t&&t.fullscreenElement&&t.fullscreenElement===e)},xo=e=>{let t=yo(e);return!!(t&&t.pictureInPictureElement&&t.pictureInPictureElement===e)};import{fromEvent as So,map as Co,merge as wo,filterChanged as To,isNonNullable as Eo,Subject as Do,filter as Oo,mapTo as ko,combine as Ao,once as jo,shareReplay as Mo,throttle as No,ErrorCategory as Po,ValueSubject as Fo,Subscription as Io}from"@vkontakte/videoplayer-shared/es2018";var Lo=3,Ro=(e,t,n=Lo)=>{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=>So(e,t).pipe(ko(void 0),Mo(1)),n=new Io,r=()=>n.unsubscribe(),i=wo(So(e,`progress`),So(e,`timeupdate`)).pipe(Co(()=>Ro(e.buffered,e.currentTime)),Mo(1)),a=P.browser.isSafari?Ao({play:t(`play`).pipe(jo()),playing:t(`playing`)}).pipe(ko(void 0),Mo(1)):t(`playing`),o=So(e,`volumechange`).pipe(Co(()=>({muted:e.muted,volume:e.volume})),Mo(1)),s=So(e,`ratechange`).pipe(Co(()=>e.playbackRate),Mo(1)),c=So(e,`error`).pipe(Oo(()=>!!(e.error||e.played.length)),Co(()=>{let t=e.error;return{id:t?`MediaError#${t.code}`:`HtmlVideoError`,category:Po.VIDEO_PIPELINE,message:t?t.message:`Error event from HTML video element`,thrown:e.error??void 0}}),Mo(1)),l=So(e,`timeupdate`).pipe(Co(()=>e.currentTime),Mo(1)),u=[`waiting`,`seeking`,`seeked`,`timeupdate`],d=new Do,f=.3,p;n.add(wo(...u.map(t=>So(e,t))).subscribe(t=>{let n=e.currentTime;e.loop&&Eo(p)&&Eo(n)&&p>=e.duration-f&&n<=f&&d.next(p),p=n}));let m=t(`pause`).pipe(Oo(()=>!e.error&&p!==e.duration),Mo(1)),h=So(e,`enterpictureinpicture`).pipe(Mo(1)),g=So(e,`leavepictureinpicture`).pipe(Mo(1)),_=new Fo(xo(e));n.add(h.subscribe(()=>_.next(!0))),n.add(g.subscribe(()=>_.next(!1)));let v=new Fo(bo(e)),y=So(e,`fullscreenchange`).pipe(Mo(1));n.add(y.pipe(Co(()=>bo(e))).subscribe(v));let b=So(e,`timeupdate`).pipe(Co(t=>e.duration-e.currentTime<.1),To(),Mo(1)),x=wo(b.pipe(Oo(t=>!e.loop&&t)),So(e,`ended`)).pipe(No(1e3),ko(void 0),Mo(1)),S=wo(...[`waiting`,`pause`,`canplay`,`play`,`canplaythrough`,`playing`,`seeking`,`seeked`,`ended`].map(t=>So(e,t)),b.pipe(Co(e=>({type:e?`ended`:`unknown`})))).pipe(Co(t=>P.browser.isFirefox&&t.type===`ended`?e.readyState<2:e.readyState<3),To(),Mo(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$:So(e,`durationchange`).pipe(Co(()=>e.duration),Mo(1)),isBuffering$:S,currentBuffer$:i,volumeState$:o,playbackRateState$:s,inPiP$:_,inFullscreen$:v,enterPip$:h,leavePip$:g,destroy:r}};import{VideoQuality as Bo}from"@vkontakte/videoplayer-shared/es2018";var Vo=e=>{switch(e){case`mobile`:return Bo.Q_144P;case`lowest`:return Bo.Q_240P;case`low`:return Bo.Q_360P;case`sd`:case`medium`:return Bo.Q_480P;case`hd`:case`high`:return Bo.Q_720P;case`fullhd`:case`full`:return Bo.Q_1080P;case`quadhd`:case`quad`:return Bo.Q_1440P;case`ultrahd`:case`ultra`:return Bo.Q_2160P}},Ho=l(xn(),1),Uo=l(Xe(),1),Wo=l(et(),1);import{isNonNullable as I,isNullable as Go,now as Ko,isHigher as qo,isHigherOrEqual as Jo,isInvariantQuality as Yo,isLowerOrEqual as Xo,videoSizeToQuality as Zo,assertNotEmptyArray as Qo,assertNonNullable as $o}from"@vkontakte/videoplayer-shared/es2018";var es=!1,ts={},ns=e=>{es=e},rs=()=>{ts={}},is=e=>{e(ts)},as=(e,t)=>{es&&(ts.meta=ts.meta??{},ts.meta[e]=t)};class os{constructor(t){e(this,`name`,void 0),this.name=t}next(e){if(!es)return;ts.series=ts.series??{};let t=ts.series[this.name]??[];t.push([Date.now(),e]),ts.series[this.name]=t}}import{isHigher as ss,isLower as cs,isNonNullable as ls,isNullable as us,videoHeightToQuality as ds}from"@vkontakte/videoplayer-shared/es2018";function fs(e,t,n){return!e.max&&e.min===t?`high_quality`:!e.min&&e.max===n?`traffic_saving`:`unknown`}function ps(e,t,n){return us(e)||ls(e.min)&&ls(e.max)&&cs(e.max,e.min)||ls(e.min)&&ls(t)&&ss(e.min,t)||ls(e.max)&&ls(n)&&cs(e.max,n)}function ms({limits:e,highestAvailableHeight:t,lowestAvailableHeight:n}){return ps({max:e?.max?ds(e.max):void 0,min:e?.min?ds(e.min):void 0},t?ds(t):void 0,n?ds(n):void 0)}var hs=new os(`best_bitrate`),gs=(e,t,n)=>(t-n)*2**(-10*e)+n,_s=e=>(t,n)=>e*(Number(t.bitrate)-Number(n.bitrate));class vs{constructor(){e(this,`last`,void 0),e(this,`history`,{})}recordSelection(e){this.history[e.id]=Ko()}recordSwitch(e){this.last=e}clear(){this.last=void 0,this.history={}}}var ys=`Assertion "ABR Tracks is empty array" failed`,bs=new WeakMap,xs=new WeakMap,Ss=new WeakMap,Cs=(e,t,n,r)=>{let i=[...t].sort(_s(1)),a=[...n].sort(_s(1)),o=a.filter(t=>I(t.bitrate)&&I(e.bitrate)?e.bitrate/t.bitrate>r:!0),s=Ho.default(a,Math.round(a.length*i.indexOf(e)/(i.length+1)))??Ho.default(a,-1);return s&&Uo.default(o,s)?s:o.length?Ho.default(o,-1):Ho.default(a,0)},ws=(e,t,n,r)=>{let i=bs.get(t);i||(i=[...t].sort(_s(1)),bs.set(t,i));let a=bs.get(n);a||(a=[...n].sort(_s(1)),bs.set(n,a));let o=Ss.get(e);o||(o=a.filter(t=>I(t.bitrate)&&I(e.bitrate)?e.bitrate/t.bitrate>r:!0),Ss.set(e,o));let s=Ho.default(a,Math.round(a.length*i.indexOf(e)/(i.length+1)))??Ho.default(a,-1);return s&&Uo.default(o,s)?s:o.length?Ho.default(o,-1):Ho.default(a,0)},Ts=e=>`quality`in e,Es=(e,t,n,r)=>{var i;let a=I(r==null||(i=r.last)==null?void 0:i.bitrate)&&I(n?.bitrate)&&r.last.bitrate<n.bitrate?e.trackCooldownIncreaseQuality:e.trackCooldownDecreaseQuality,o=n&&r&&r.history[n.id]&&Ko()-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 ${Ts(e)?`video`:`audio`} selected] ${Ts(e)?e.quality:e.bitrate}
9
+ `}),e}return r?.recordSwitch(n),n},Ds=(e,t)=>Math.log(t)/Math.log(e),Os=({tuning:e,container:t,limits:n,panelSize:r})=>{let i=e.containerSizeFactor;if(r)return{containerSizeLimit:r,containerSizeFactor:i};if(e.usePixelRatio&&P.display.pixelRatio){let t=P.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=Ds(n,r*t+a)+o;Number.isFinite(s)&&(i*=s)}}return I(n?.min)&&Jo(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}},ks=new WeakMap,As=(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})=>{Qo(e,ys);let{containerSizeFactor:g,containerSizeLimit:_}=Os({container:t,tuning:r,limits:i,panelSize:h}),v=r.considerPlaybackRate&&I(s)?s:1,y=ks.get(e);y||(y=e.filter(e=>!Yo(e.quality)).sort((e,t)=>qo(e.quality,t.quality)?-1:1),ks.set(e,y));let b=Ho.default(y,-1)?.quality,x=Ho.default(y,0)?.quality,S=ps(i,x,b),C=v*gs(o??.5,r.bitrateFactorAtEmptyBuffer,r.bitrateFactorAtFullBuffer),w={},T=null;for(let e of y){let t=!0;if(_)if(e.size)t=e.size.width<=_.width&&e.size.height<=_.height;else{let n=_&&Zo(_);t=n?Xo(e.quality,n):!0}if(!t){w[e.quality]=`FitsContainer`;continue}let s=p||n,l=I(s)&&isFinite(s)&&I(e.bitrate)?s-a>=e.bitrate*C:!0,m=i?.min===e.quality;if(!l&&!m){w[e.quality]=`FitsThroughput`;continue}if(r.lazyQualitySwitch&&I(r.minBufferToSwitchUp)&&c&&!Yo(c.quality)&&(o??0)<r.minBufferToSwitchUp&&qo(e.quality,c.quality)){w[e.quality]=`Buffer`;continue}if(d&&Jo(e.quality,d)&&!m){w[e.quality]=`DroppedFramesLimit`;continue}if(f&&Jo(e.quality,f)&&!m){w[e.quality]=`StallsLimit`;continue}let h=S||(Go(i?.max)||Xo(e.quality,i.max))&&(Go(i?.min)||Jo(e.quality,i.min)),g=I(u)&&!u?Xo(e.quality,r.backgroundVideoQualityLimit):!0;if(!h||!g){w[e.quality]=`FitsQualityLimits`;continue}T||=e}T&&T.bitrate&&hs.next(T.bitrate);let E=T??Ho.default(y,-1)??e[0],D=l?.last,O=Es(r,m,E,l);return I(l)&&O.quality!==D?.quality&&m({message:`
10
10
  [VIDEO TRACKS ABR]
11
11
  [available video tracks]
12
- ${s.map(I=>{var w,F;return`{ id: ${I.id}, quality: ${I.quality}, bitrate: ${I.bitrate}, size: ${(w=I.size)==null?void 0:w.width}:${(F=I.size)==null?void 0:F.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,_i.default)(i!=null?i:{}).map(([I,w])=>`${I}: ${w}`).join(`
16
+ ${Wo.default(r??{}).map(([e,t])=>`${e}: ${t}`).join(`
17
17
  `)}
18
18
 
19
19
  [limit params]
20
- containerSizeFactor: ${v},
21
- containerSizeLimit: ${(E=g==null?void 0:g.width)!=null?E:0} x ${(P=g==null?void 0:g.height)!=null?P:0},
22
- estimatedThroughput: ${t},
23
- stallsPredictedThroughput: ${h},
20
+ containerSizeFactor: ${g},
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},
25
+ playbackRate: ${s},
26
+ playbackRateFactor: ${v},
27
+ forwardBufferHealth: ${o},
28
28
  bitrateFactor: ${C},
29
- minBufferToSwitchUp: ${i.minBufferToSwitchUp},
30
- droppedVideoMaxQualityLimit: ${l},
31
- stallsVideoMaxQualityLimit: ${p},
32
- limitsAreInvalid: ${R},
33
- maxQualityLimit: ${r==null?void 0:r.max},
34
- minQualityLimit: ${r==null?void 0:r.min},
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,_i.default)($).map(([I,w])=>`${I}: ${w}`).join(`
38
- `)||"All tracks are available"}
37
+ ${Wo.default(w).map(([e,t])=>`${e}: ${t}`).join(`
38
+ `)||`All tracks are available`}
39
39
 
40
- [best video track] ${D==null?void 0:D.quality}
41
- [selected video track] ${M==null?void 0:M.quality}
42
- `}),M},wo=(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 Y,j,E,P,I;yo(s,Io);let{containerSizeFactor:v,containerSizeLimit:g}=Cy({container:e,tuning:i,limits:r,panelSize:m}),S=i.considerPlaybackRate&&X(o)?o:1,T=s.filter(w=>!So(w.quality)).sort((w,F)=>vo(w.quality,F.quality)?-1:1),y=(Y=(0,Me.default)(T,-1))==null?void 0:Y.quality,x=(j=(0,Me.default)(T,0))==null?void 0:j.quality,R=Ar(r,x,y),C=S*To(n!=null?n:.5,i.bitrateFactorAtEmptyBuffer,i.bitrateFactorAtFullBuffer),$={},A=T.filter(w=>{let F=!0;if(g)if(w.size)F=w.size.width<=g.width&&w.size.height<=g.height;else{let Tt=g&&$y(g);F=Tt?Rr(w.quality,Tt):!0}if(!F)return $[w.quality]="FitsContainer",!1;let O=h||t,ct=X(O)&&isFinite(O)&&X(w.bitrate)?O-a>=w.bitrate*C:!0,lt=(r==null?void 0:r.min)===w.quality;if(!ct&&!lt)return $[w.quality]="FitsThroughput",!1;if(i.lazyQualitySwitch&&X(i.minBufferToSwitchUp)&&u&&!So(u.quality)&&(n!=null?n:0)<i.minBufferToSwitchUp&&vo(w.quality,u.quality))return $[w.quality]="Buffer",!1;if(!!l&&Vi(w.quality,l)&&!lt)return $[w.quality]="DroppedFramesLimit",!1;if(!!p&&Vi(w.quality,p)&&!lt)return $[w.quality]="StallsLimit",!1;let Ee=R||(go(r==null?void 0:r.max)||Rr(w.quality,r.max))&&(go(r==null?void 0:r.min)||Vi(w.quality,r.min)),Fe=X(d)&&!d?Rr(w.quality,i.backgroundVideoQualityLimit):!0;return!Ee||!Fe?($[w.quality]="FitsQualityLimits",!1):!0})[0];A&&A.bitrate&&Ly.next(A.bitrate);let V=(E=A!=null?A:(0,Me.default)(T,-1))!=null?E:s[0],M=c==null?void 0:c.last,q=Eo(i,f,V,c);return X(c)&&q.quality!==(M==null?void 0:M.quality)&&f({message:`
40
+ [best video track] ${T?.quality}
41
+ [selected video track] ${O?.quality}
42
+ `}),O},js=(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})=>{Qo(e,ys);let{containerSizeFactor:g,containerSizeLimit:_}=Os({container:t,tuning:r,limits:i,panelSize:h}),v=r.considerPlaybackRate&&I(s)?s:1,y=e.filter(e=>!Yo(e.quality)).sort((e,t)=>qo(e.quality,t.quality)?-1:1),b=Ho.default(y,-1)?.quality,x=Ho.default(y,0)?.quality,S=ps(i,x,b),C=v*gs(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=_&&Zo(_);t=n?Xo(e.quality,n):!0}if(!t)return w[e.quality]=`FitsContainer`,!1;let s=p||n,l=I(s)&&isFinite(s)&&I(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&&I(r.minBufferToSwitchUp)&&c&&!Yo(c.quality)&&(o??0)<r.minBufferToSwitchUp&&qo(e.quality,c.quality))return w[e.quality]=`Buffer`,!1;if(d&&Jo(e.quality,d)&&!m)return w[e.quality]=`DroppedFramesLimit`,!1;if(f&&Jo(e.quality,f)&&!m)return w[e.quality]=`StallsLimit`,!1;let h=S||(Go(i?.max)||Xo(e.quality,i.max))&&(Go(i?.min)||Jo(e.quality,i.min)),g=I(u)&&!u?Xo(e.quality,r.backgroundVideoQualityLimit):!0;return!h||!g?(w[e.quality]=`FitsQualityLimits`,!1):!0})[0];T&&T.bitrate&&hs.next(T.bitrate);let E=T??Ho.default(y,-1)??e[0],D=l?.last,O=Es(r,m,E,l);return I(l)&&O.quality!==D?.quality&&m({message:`
43
43
  [VIDEO TRACKS ABR]
44
44
  [available video tracks]
45
- ${s.map(w=>{var F,O;return`{ id: ${w.id}, quality: ${w.quality}, bitrate: ${w.bitrate}, size: ${(F=w.size)==null?void 0:F.width}:${(O=w.size)==null?void 0:O.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,_i.default)(i!=null?i:{}).map(([w,F])=>`${w}: ${F}`).join(`
49
+ ${Wo.default(r??{}).map(([e,t])=>`${e}: ${t}`).join(`
50
50
  `)}
51
51
 
52
52
  [limit params]
53
- containerSizeFactor: ${v},
54
- containerSizeLimit: ${(P=g==null?void 0:g.width)!=null?P:0} x ${(I=g==null?void 0:g.height)!=null?I:0},
55
- estimatedThroughput: ${t},
56
- stallsPredictedThroughput: ${h},
53
+ containerSizeFactor: ${g},
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},
58
+ playbackRate: ${s},
59
+ playbackRateFactor: ${v},
60
+ forwardBufferHealth: ${o},
61
61
  bitrateFactor: ${C},
62
- minBufferToSwitchUp: ${i.minBufferToSwitchUp},
63
- droppedVideoMaxQualityLimit: ${l},
64
- stallsVideoMaxQualityLimit: ${p},
65
- limitsAreInvalid: ${R},
66
- maxQualityLimit: ${r==null?void 0:r.max},
67
- minQualityLimit: ${r==null?void 0:r.min},
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,_i.default)($).map(([w,F])=>`${w}: ${F}`).join(`
71
- `)||"All tracks are available"}
70
+ ${Wo.default(w).map(([e,t])=>`${e}: ${t}`).join(`
71
+ `)||`All tracks are available`}
72
72
 
73
- [best video track] ${A==null?void 0:A.quality}
74
- [selected video track] ${q==null?void 0:q.quality}
75
- `}),q},xo=(s,e,t,{estimatedThroughput:i,tuning:r,playbackRate:a,forwardBufferHealth:n,history:o,abrLogger:u,stallsPredictedThroughput:c})=>{yo(t,Io);let d=r.considerPlaybackRate&&X(a)?a:1,l=[...t].sort($r(-1)),p=s.bitrate;My(p);let h=d*To(n!=null?n:.5,r.bitrateAudioFactorAtEmptyBuffer,r.bitrateAudioFactorAtFullBuffer),f,m=Fa(s,e,t,r.minVideoAudioRatio),v=c||i;X(v)&&isFinite(v)&&(f=l.find(T=>X(T.bitrate)&&X(m==null?void 0:m.bitrate)?v-p>=T.bitrate*h&&T.bitrate>=m.bitrate:!1)),f||(f=m);let g=o==null?void 0:o.last,S=f&&Eo(r,u,f,o);return X(o)&&(S==null?void 0:S.bitrate)!==(g==null?void 0:g.bitrate)&&u({message:`
73
+ [best video track] ${T?.quality}
74
+ [selected video track] ${O?.quality}
75
+ `}),O},Ms=(e,t,n,{estimatedThroughput:r,tuning:i,playbackRate:a,forwardBufferHealth:o,history:s,abrLogger:c,stallsPredictedThroughput:l})=>{Qo(n,ys);let u=i.considerPlaybackRate&&I(a)?a:1,d=[...n].sort(_s(-1)),f=e.bitrate;$o(f);let p=u*gs(o??.5,i.bitrateAudioFactorAtEmptyBuffer,i.bitrateAudioFactorAtFullBuffer),m,h=Cs(e,t,n,i.minVideoAudioRatio),g=l||r;I(g)&&isFinite(g)&&(m=d.find(e=>I(e.bitrate)&&I(h?.bitrate)?g-f>=e.bitrate*p&&e.bitrate>=h.bitrate:!1)),m||=h;let _=s?.last,v=m&&Es(i,c,m,s);return I(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,_i.default)(r!=null?r:{}).map(([T,y])=>`${T}: ${y}`).join(`
82
+ ${Wo.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},Po=(s,e,t,{estimatedThroughput:i,tuning:r,playbackRate:a,forwardBufferHealth:n,history:o,abrLogger:u,stallsPredictedThroughput:c})=>{yo(t,Io);let d=r.considerPlaybackRate&&X(a)?a:1,l=xy.get(t);l||(l=[...t].sort($r(-1)),xy.set(t,l));let p=s.bitrate;My(p);let h=d*To(n!=null?n:.5,r.bitrateAudioFactorAtEmptyBuffer,r.bitrateAudioFactorAtFullBuffer),f,m=Ua(s,e,t,r.minVideoAudioRatio),v=c||i;X(v)&&isFinite(v)&&(f=l.find(T=>X(T.bitrate)&&X(m==null?void 0:m.bitrate)?v-p>=T.bitrate*h&&T.bitrate>=m.bitrate:!1)),f||(f=m);let g=o==null?void 0:o.last,S=f&&Eo(r,u,f,o);return X(o)&&(S==null?void 0:S.bitrate)!==(g==null?void 0:g.bitrate)&&u({message:`
95
+ [selected audio track] ${v?.id}
96
+ `}),v},Ns=(e,t,n,{estimatedThroughput:r,tuning:i,playbackRate:a,forwardBufferHealth:o,history:s,abrLogger:c,stallsPredictedThroughput:l})=>{Qo(n,ys);let u=i.considerPlaybackRate&&I(a)?a:1,d=xs.get(n);d||(d=[...n].sort(_s(-1)),xs.set(n,d));let f=e.bitrate;$o(f);let p=u*gs(o??.5,i.bitrateAudioFactorAtEmptyBuffer,i.bitrateAudioFactorAtFullBuffer),m,h=ws(e,t,n,i.minVideoAudioRatio),g=l||r;I(g)&&isFinite(g)&&(m=d.find(e=>I(e.bitrate)&&I(h?.bitrate)?g-f>=e.bitrate*p&&e.bitrate>=h.bitrate:!1)),m||=h;let _=s?.last,v=m&&Es(i,c,m,s);return I(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,_i.default)(r!=null?r:{}).map(([T,y])=>`${T}: ${y}`).join(`
103
+ ${Wo.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 xe=s=>new URL(s).hostname;import{assertNever as Qy,assertNonNullable as zy,combine as AD,debounce as RD,ErrorCategory as Gy,filter as Yy,filterChanged as $D,isNonNullable as dd,map as $o,merge as Ky,observableFrom as MD,once as LD,Subscription as CD,ValueSubject as pd,videoQualityToHeight as Xy,videoSizeToQuality as DD}from"@vkontakte/videoplayer-shared/es2018";var qy=_(Ke(),1);var By=_(De(),1),Dy=s=>{if(s instanceof DOMException&&(0,By.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"))},Ne=async(s,e)=>{let t=s.muted;try{await s.play()}catch(i){if(!Dy(i))return!1;if(e&&e(),t)return console.warn(i),!1;s.muted=!0;try{await s.play()}catch(r){return Dy(r)&&(s.muted=!1,console.warn(r)),!1}}return!0};import{isNonNullable as Ao,isNullable as lD,assertNonNullable as ja}from"@vkontakte/videoplayer-shared/es2018";var _y=_(Pi(),1);import{isNonNullable as Vy,assertNonNullable as ko,now as sD}from"@vkontakte/videoplayer-shared/es2018";function ge(){return sD()}function nd(s){return ge()-s}function od(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 Oy(s,e,t){let i=(...r)=>{t.apply(null,r),s.removeEventListener(e,i)};s.addEventListener(e,i)}function Mr(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,v=()=>{if(u)return;ko(d);let M=nd(d),q;if(M<m){q=m-M,setTimeout(v,q);return}m*=2,m>f&&(m=f),n&&n.abort(),n=new r,R()},g=M=>(a=M,V),S=M=>(l=M,V),T=()=>(h="json",V),y=()=>{if(!u){if(--c>=0){v(),i&&i();return}u=!0,l&&l(),t&&t()}},x=M=>(p=M,V),R=()=>{d=ge(),n=new r,n.open("get",s);let M=0,q,Y=0,j=()=>(ko(d),Math.max(d,Math.max(q||0,Y||0)));if(a&&n.addEventListener("progress",E=>{let P=ge();a.updateChunk&&E.loaded>M&&(a.updateChunk(j(),E.loaded-M),M=E.loaded,q=P)}),o&&(n.timeout=o,n.addEventListener("timeout",()=>y())),n.addEventListener("load",()=>{if(u)return;ko(n);let E=n.status;if(E>=200&&E<300){let{response:P,responseType:I}=n,w=P==null?void 0:P.byteLength;if(typeof w=="number"&&a){let F=w-M;F&&a.updateChunk&&a.updateChunk(j(),F)}I==="json"&&(!P||!(0,_y.default)(P).length)?y():(l&&l(),e(P))}else y()}),n.addEventListener("error",()=>{y()}),p){let E=()=>{ko(n),n.readyState===XMLHttpRequest.HEADERS_RECEIVED&&(Y=ge(),n.removeEventListener("readystatechange",E))};n.addEventListener("readystatechange",E)}return n.responseType=h,n.send(),V},V={withBitrateReporting:g,withParallel:x,withJSONResponse:T,withRetryCount:M=>(c=M,V),withRetryInterval:(M,q)=>(Vy(M)&&(m=M),Vy(q)&&(f=q),V),withTimeout:M=>(o=M,V),withFinally:S,send:R,abort:()=>{n&&(n.abort(),n=void 0),u=!0,l&&l()}};return V}var qa=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 Ny=_(Pi(),1);var Ha=class{constructor(e,t,i,r,a){this.pendingQueue=[];this.activeRequests={};this.completeRequests={};this.averageSegmentDuration=2e3;this.lastPrefetchStart=0;this.throttleTimeout=null;this.RETRY_COUNT=e,this.TIMEOUT=t,this.BITRATE_ESTIMATOR=i,this.MAX_PARALLEL_REQUESTS=r,this.logger=a}limitCompleteCount(){let e;for(;(e=Object.keys(this.completeRequests)).length>this._getParallelRequestCount()+2;){let t=e[Math.floor(Math.random()*e.length)];this.logger(`Dropping completed request for url ${t}`,{type:"warn"}),delete this.completeRequests[t]}}_sendRequest(e,t){let i=ge(),r=u=>{delete this.activeRequests[t],this.limitCompleteCount(),this.completeRequests[t]=e,this._sendPending(),e._error=1,e._errorMsg=u,e._errorCB?e._errorCB(u):(this.limitCompleteCount(),this.completeRequests[t]=e)},a=u=>{e._complete=1,e._responseData=u,e._downloadTime=ge()-i,delete this.activeRequests[t],this._sendPending(),e._cb?e._cb(u,e._downloadTime):(this.limitCompleteCount(),this.completeRequests[t]=e)},n=()=>{e._finallyCB&&e._finallyCB()},o=()=>{e._retry=1,e._retryCB&&e._retryCB()};e._request=Mr(t,a,()=>r("error"),o),e._request.withRetryCount(this.RETRY_COUNT).withTimeout(this.TIMEOUT).withBitrateReporting(this.BITRATE_ESTIMATOR).withParallel(this._getParallelRequestCount()>1).withFinally(n),this.activeRequests[t]=e,e._request.send(),this.lastPrefetchStart=ge()}_getParallelRequestCount(){return Math.min(this.MAX_PARALLEL_REQUESTS,this.averageSegmentDuration<3e3?3:2)}_getPrefetchDelay(){return Math.max(100,Math.min(5e3,this.averageSegmentDuration/3))}_canSendPending(){let e=this._getParallelRequestCount(),t=ge();if(Object.keys(this.activeRequests).length>=e)return!1;let i=this._getPrefetchDelay()-(t-this.lastPrefetchStart);return this.throttleTimeout&&clearTimeout(this.throttleTimeout),i>0?(this.throttleTimeout=window.setTimeout(()=>this._sendPending(),i),!1):!0}_sendPending(){for(;this._canSendPending();){let e=this.pendingQueue.pop();if(e){if(this.activeRequests[e]||this.completeRequests[e])continue;this.logger(`Submitting pending request url=${e}`),this._sendRequest({},e)}else return}}_removeFromActive(e){delete this.completeRequests[e],delete this.activeRequests[e]}abortAll(){(0,Ny.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 dD}from"@vkontakte/videoplayer-shared/es2018";import{isNonNullable as Fy}from"@vkontakte/videoplayer-shared/es2018";var te=(s,e)=>Fy(s)&&Fy(e)&&s.readyState==="open"&&nD(s,e);function nD(s,e){for(let t=0;t<s.activeSourceBuffers.length;++t)if(s.activeSourceBuffers[t]===e)return!0;return!1}var Uy=_(Gt(),1);import{getWindow as oD}from"@vkontakte/videoplayer-shared/es2018";var ud=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,Uy.default)(this.data).map(([i,r])=>`${i}:${r}`).join(",");return{key:this.tag,strings:[e,(t=this.stack)!=null?t:""],numbers:[this.time]}}},uD=(s,e="warn")=>{let t=oD(),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 ud(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},N=uD("vp_dash_live_debug",!1);var Ro=1e4,cd=3;var pD=6e4,hD=10,fD=1,mD=500,Wa=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 dD,this.chunkRateEstimator=new qa(this.params.logger),this._initVideo()}attachSource(e){this.manifestUrl=e,this.urlResolver=od(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&&(N({m:"ldp.catchUp.1"}),this.rep.stop()),this.currentManifestEntry){let e=this.params.playbackState.getState();this.paused=e==="paused",N({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()?(N({m:"ldp.play.1"}),this._playVideoElement()):(N({m:"ldp.play.2"}),this._notifyBuffering(!0))):(N({m:"ldp.play.3"}),this.catchUp())}startPlay(e,t){this.autoQuality=t,N({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=od(e),N({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;N({m:"iv"}),e.addEventListener("error",()=>{var r,a,n,o;!!e.error&&!this.destroyed&&(N({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"),N({m:"ldp.fs",t:r}),t.currentTime=r))}_selectQuality(e){let{videoElement:t}=this.params,i,r,a,n=t&&1.62*(B.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||{};!wy({limits:this.autoQualityLimits,highestAvailableHeight:this.manifest[0].video.height,lowestAvailableHeight:(0,qy.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||Ao(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"){N({m:"sourceopen",err:`not open: ${(c=this.mediaSource)==null?void 0:c.readyState}`});return}N({m:"sourceopen",c:e.codecs}),this.sourceBuffer=this.mediaSource.addSourceBuffer(e.codecs),this.bufferStates=[],t()}),(o=this.mediaSource)==null||o.addEventListener("sourceclose",u=>{N({m:"sourceclose"})}),this.videoPlayStarted=!1,r.addEventListener("canplay",()=>{N({m:"canplay"}),this.shouldPlay()&&(this.videoPlayStarted=!0,this._playVideoElement())});let n=()=>{Oy(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 Ha(cd,Ro,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 y=a&&(!d||d===this.rep);return y||t("Not running!"),y},p=(y,x,R)=>{u&&u.abort(),u=Mr(this.urlResolver.resolve(y,!1),x,R,()=>this._retryCallback()).withTimeout(Ro).withBitrateReporting(this.bitrateSwitcher).withRetryCount(cd).withFinally(()=>{u=null}).send()},h=(y,x,R)=>{ja(this.filesFetcher),o==null||o.abort(),o=this.filesFetcher.requestData(this.urlResolver.resolve(y,!1),x,R,()=>this._retryCallback()).withFinally(()=>{o=null}).send()},f=y=>{let x=i.playbackRate;i.playbackRate!==y&&(t(`Playback rate switch: ${x}=>${y}`),i.playbackRate=y)},m=y=>{this.lowLatency=y,t(`lowLatency changed to ${y}`),v()},v=()=>{if(!this.lowLatency&&!this.params.config.isLiveCatchUpMode)f(1);else{let y=this._getBufferSizeSec();if(this.bufferStates.length<5){f(1);return}let R=ge()-1e4,C=0;for(let D=0;D<this.bufferStates.length;D++){let A=this.bufferStates[D];y=Math.min(y,A.buf),A.ts<R&&C++}this.bufferStates.splice(0,C),t(`update playback rate; minBuffer=${y} drop=${C} jitter=${this.sourceJitter}`);let $=y-fD;this.sourceJitter>=0?$-=this.sourceJitter/2:this.sourceJitter-=1,$>3?f(1.15):$>1?f(1.1):$>.3?f(1.05):f(1)}},g=y=>{let x,R=()=>x&&x.start?x.start.length:0,C=E=>x.start[E]/1e3,$=E=>x.dur[E]/1e3,D=E=>x.fragIndex+E,A=(E,P)=>({chunkIdx:D(E),startTS:C(E),dur:$(E),discontinuity:P}),V=()=>{let E=0;if(x&&x.dur){let P=this.lowLatency?this.params.config.lowLatencyMinBuffer:this.params.config.minBuffer,I=this.lowLatency?this.params.config.lowLatencyMinBufferSegments:this.params.config.minBufferSegments,w=P;this.sourceJitter>1&&(w+=this.sourceJitter-1);let F=x.dur.length-1;for(;F>=0&&(w-=x.dur[F],!(w<=0));--F);E=Math.min(F,x.dur.length-1-I),E=Math.max(E,0)}return A(E,!0)},M=E=>{let P=R();if(!(P<=0)){if(Ao(E)){for(let I=0;I<P;I++)if(C(I)>E)return A(I)}return V()}},q=E=>{let P=R(),I=E?E.chunkIdx+1:0,w=I-x.fragIndex;if(!(P<=0)){if(!E||w<0||w-P>hD)return t(`Resync: offset=${w} bChunks=${P} chunk=`+JSON.stringify(E)),V();if(!(w>=P))return A(I-x.fragIndex,!1)}},Y=(E,P,I)=>{c&&c.abort(),c=Mr(this.urlResolver.resolve(E,!0,this.lowLatency),P,I,()=>this._retryCallback()).withTimeout(Ro).withRetryCount(cd).withFinally(()=>{c=null}).withJSONResponse().send()};return{seek:(E,P)=>{Y(y,I=>{if(!l())return;x=I;let w=!!x.lowLatency;w!==this.lowLatency&&m(w);let F=0;for(let O=0;O<x.dur.length;++O)F+=x.dur[O];F>0&&(ja(this.filesFetcher),this.filesFetcher.optimizeForSegDuration(F/x.dur.length)),r({name:"index",zeroTime:x.zeroTime,shiftDuration:x.shiftDuration}),this.sourceJitter=x.hasOwnProperty("jitter")?Math.min(10,Math.max(.01,x.jitter/1e3)):1,E(M(P))},()=>this._handleNetworkError())},nextChunk:q}},S=()=>{a=!1,o&&o.abort(),u&&u.abort(),c&&c.abort(),ja(this.filesFetcher),this.filesFetcher.abortAll()};return d={start:y=>{let{videoElement:x,logger:R}=this.params,C=g(e.jidxUrl),$,D,A,V,M=0,q,Y,j,E=()=>{q&&(clearTimeout(q),q=void 0);let K=Math.max(mD,1e3*(this._getBufferSizeSec()-this.sourceJitter-5)),Te=M+K,Ie=ge(),Ee=Math.min(1e4,Te-Ie);M=Ie;let Fe=()=>{c||l()&&C.seek(()=>{l()&&(M=ge(),P(),E())})};Ee>0?q=window.setTimeout(()=>{this.paused?E():Fe()},Ee):Fe()},P=()=>{let K;for(;K=C.nextChunk(V);)V=K,ct(K);let Te=C.nextChunk(A);if(Te){if(A&&Te.discontinuity){R("Detected discontinuity; restarting playback"),this.paused?E():(S(),N({m:"ldp.fetchChunkIdx.0"}),this._initPlayerWith(e));return}O(Te)}else E()},I=(K,Te)=>{if(!l()||!this.sourceBuffer){N({m:"ab.0",c:[!l(),!this.sourceBuffer]});return}let Ie,Ee,Fe,Tt=It=>{N({m:"ldp.postpone",t:It}),window.setTimeout(()=>{l()&&I(K,Te)},It)};if(this.sourceBuffer.updating)R("Source buffer is updating; delaying appendBuffer"),N({m:"ldp.ab.1"}),Tt(100);else{let It=ge(),hi=x.currentTime;!this.paused&&x.buffered.length>1&&Y===hi&&It-j>500&&(R("Stall suspected; trying to fix"),this._fixupStall()),Y!==hi&&(Y=hi,j=It);let tr=this._getBufferSizeSec();if(tr>30)N({m:"ldp.ab.3"}),R(`Buffered ${tr} seconds; delaying appendBuffer`),Tt(2e3);else try{if(this.params.config.useInvalidBufferFix&&te(this.mediaSource,this.sourceBuffer))return;this.sourceBuffer.appendBuffer(K),this.videoPlayStarted?(N({m:"ldp.ab.5"}),this.bufferStates.push({ts:It,buf:tr}),v(),this.bufferStates.length>200&&this.bufferStates.shift()):this.shouldPlay()&&(N({m:"ldp.ab.4"}),this.videoPlayStarted=!0,this._playVideoElement()),Te&&Te()}catch(fi){N({m:"ldp.ab.err",e:fi.name}),fi.name==="QuotaExceededError"?(R("QuotaExceededError; delaying appendBuffer"),Fe=this.sourceBuffer.buffered.length,Fe!==0&&(Ie=this.sourceBuffer.buffered.start(0),Ee=hi,Ee-Ie>4&&this.sourceBuffer.remove(Ie,Ee-3)),Tt(1e3)):(R(fi.name),r({name:"error",type:"buffer",message:`appendBuffer failed due to ${fi.name}`}))}}},w=()=>{D&&$&&(R([`Appending chunk, sz=${D.byteLength}:`,JSON.stringify(A)]),I(D,function(){D=null,P()}))},F=K=>e.fragUrlTemplate.replace("%%id%%",K.chunkIdx),O=K=>{l()&&h(F(K),(Te,Ie)=>{if(l()){if(Ie/=1e3,D=Te,A=K,n=K.startTS,Ie){let Ee=Math.min(10,K.dur/Ie);this.downloadRate=this.downloadRate?(1-.3)*this.downloadRate+.3*Ee:Ee}w()}},()=>this._handleNetworkError())},ct=K=>{l()&&(ja(this.filesFetcher),this.filesFetcher.prefetch(this.urlResolver.resolve(F(K),!1)))},lt=K=>{l()&&(e.cachedHeader=K,I(K,()=>{$=!0,w()}))};a=!0,C.seek(K=>{if(l()){if(M=ge(),!K){E();return}V=K,!lD(y)||K.startTS>y?O(K):(A=K,P())}},y),e.cachedHeader?lt(e.cachedHeader):p(e.headerUrl,lt,()=>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(),Ao(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 Ao(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=ge();if(this.chunkRateEstimator.addInterval(p,f,h)){let v=this.chunkRateEstimator.getBitRate();return t({name:"bandwidth",size:h,duration:f-p,speed:v}),!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&&nd(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=ge();l<o&&(n=p),o=l}}}_fetchManifest(e,t,i){this.manifestRequest=Mr(this.urlResolver.resolve(e,!0),t,i,()=>this._retryCallback()).withJSONResponse().withTimeout(Ro).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;Ne(e,()=>{this.soundProhibitedEvent$.next()}).then(t=>{N({m:"ldp.pve.1"}),t||(N({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))},pD))}_initManifest(){this._fetchManifest(this.manifestUrl,e=>{this.destroyed||(this._handleManifestUpdate(e),this._refetchManifest(this.manifestUrl))},()=>this._handleNetworkError())}};var Wy=_(Gt(),1);import{debounce as bD,filter as Hy,fromEvent as gD,interval as vD,isHigher as SD,isInvariantQuality as yD,isLower as TD,merge as ID,Subject as jy,Subscription as ED}from"@vkontakte/videoplayer-shared/es2018";var ld=class{constructor(){this.onDroopedVideoFramesLimit$=new jy;this.subscription=new ED;this.playing=!1;this.tracks=[];this.forceChecker$=new jy;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&&!yD(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&&SD(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(gD(this.video,"resize").subscribe(this.handleChangeVideoQuality));let e=vD(this.droppedFramesChecker.checkTime).pipe(Hy(()=>this.playing),Hy(()=>{let r=!!this.isForceCheckCounter;return r&&(this.isForceCheckCounter-=1),!r})),t=this.forceChecker$.pipe(bD(this.droppedFramesChecker.checkTime)),i=ID(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,Wy.default)(this.limitCounts).filter(([,a])=>a>=this.droppedFramesChecker.countLimit).sort(([a],[n])=>TD(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}},Lr=ld;import{map as wD,Observable as xD}from"@vkontakte/videoplayer-shared/es2018";import{fromEvent as PD}from"@vkontakte/videoplayer-shared/es2018";var Qa=()=>{var s;return!!((s=window.documentPictureInPicture)!=null&&s.window)||!!document.pictureInPictureElement};var kD=(s,e)=>new xD(t=>{if(!window.IntersectionObserver)return;let i={root:null},r=new IntersectionObserver((n,o)=>{n.forEach(u=>t.next(u.isIntersecting||Qa()))},{...i,...e});r.observe(s);let a=PD(document,"visibilitychange").pipe(wD(n=>!document.hidden||Qa())).subscribe(n=>t.next(n));return()=>{r.unobserve(s),a.unsubscribe()}}),Xe=kD;var BD=["paused","playing","ready"],VD=["paused","playing","ready"],za=class{constructor(e){this.subscription=new CD;this.videoState=new H("stopped");this.representations$=new pd([]);this.droppedFramesManager=new Lr;this.maxSeekBackTime$=new pd(1/0);this.zeroTime$=new pd(void 0);this.liveOffset=new Bi;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:Gy.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=Xt(u.name))!=null?i:DD(u.video),l=u.bitrate/1e3,p={...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),dd(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,hd.default)(VD,e)&&(n||o)){this.prepare();return}if((r==null?void 0:r.to)!=="paused"&&a.state==="requested"&&(0,hd.default)(BD,e)){this.seek(a.position-this.liveOffset.getTotalPausedTime());return}switch(e){case"stopped":this.videoState.startTransitionTo("manifest_ready"),this.dash.attachSource(ue(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"){N({m:"dlp.sync.1"}),this.videoState.startTransitionTo("playing");let u=r==null?void 0:r.from;u&&u==="ready"&&(N({m:"dlp.sync.2"}),this.dash.catchUp()),N({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(ue(this.params.source.url,u))}return;default:return Qy(e)}};this.textTracksManager=new Ye(e.source.url),this.params=e,this.log=this.params.dependencies.logger.createComponentLog("DashLiveProvider");let t=r=>{e.output.error$.next({id:"DashLiveProvider",category:Gy.WTF,message:"DashLiveProvider internal logic error",thrown:r})};this.subscription.add(Ky(this.videoState.stateChangeStarted$.pipe($o(r=>({transition:r,type:"start"}))),this.videoState.stateChangeEnded$.pipe($o(r=>({transition:r,type:"end"})))).subscribe(({transition:r,type:a})=>{N({m:"dlp.s.1",t:a+`:${r.from}-${r.to}`}),this.log({message:`[videoState change] ${a}: ${JSON.stringify(r)}`})})),this.video=Be(e.container,e.tuning),this.params.output.element$.next(this.video),this.dash=this.createLiveDashPlayer(),this.subscription.add(this.dash.soundProhibitedEvent$.subscribe(this.params.output.soundProhibitedEvent$)),this.params.output.duration$.next(1/0),this.params.output.position$.next(0),this.params.output.isLive$.next(!0),this.params.output.canChangePlaybackSpeed$.next(!1),this.params.output.hostname$.next(xe(this.params.source.url)),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.textTracksManager.connect(this.video,this.params.desiredState,this.params.output);let i=Oe(this.video);this.subscription.add(()=>i.destroy()),this.subscription.add(this.representations$.pipe($o(r=>r.map(({track:a})=>a)),Yy(r=>!!r.length),LD()).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($D(),$o(r=>-r/1e3)).subscribe(this.params.output.duration$)).add(AD({zeroTime:this.zeroTime$.pipe(Yy(dd)),position:i.timeUpdate$}).subscribe(({zeroTime:r,position:a})=>{a===0&&this.videoState.getTransition()||this.params.output.liveTime$.next(r+a*1e3)},t)).add(bt(this.video,this.params.desiredState.isLooped,t)).add(_e(this.video,this.params.desiredState.volume,i.volumeState$,t,{skipVideoElVolumeSync:this.params.skipVideoElVolumeSync})),this.params.skipVideoElVolumeSync?this.subscription.add(this.params.desiredState.volume.stateChangeStarted$.subscribe(({to:r})=>this.params.output.volume$.next(r),t)):this.subscription.add(i.volumeState$.subscribe(this.params.output.volume$,t)),this.subscription.add(Ge(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(Xe(this.video).subscribe(this.params.output.elementVisible$)).add(this.params.desiredState.autoVideoTrackLimits.stateChangeStarted$.subscribe(({to:{max:r,min:a}})=>{this.dash.setAutoQualityLimits({max:r&&Xy(r),min:a&&Xy(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),N({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"&&(N({m:"dlp.vse.r"}),this.params.desiredState.playbackState.setState("ready"));break;case"paused":N({m:"dlp.vse.pa"}),this.params.desiredState.playbackState.setState("paused");break;case"playing":N({m:"dlp.vse.pl"}),this.params.desiredState.playbackState.setState("playing");break;default:return Qy(r.to)}},t)).add(Ky(e.desiredState.playbackState.stateChangeStarted$,e.desiredState.seekState.stateChangeEnded$,e.desiredState.videoTrack.stateChangeStarted$,e.desiredState.autoVideoTrackSwitching.stateChangeStarted$,this.videoState.stateChangeEnded$,this.droppedFramesManager.onDroopedVideoFramesLimit$,MD(["init"])).pipe(RD(0)).subscribe(this.syncPlayback,t))}destroy(){N({m:"dlp.destroy"}),this.subscription.unsubscribe(),this.textTracksManager.destroy(),this.droppedFramesManager.destroy(),this.dash.destroy(),this.params.output.element$.next(void 0),Ve(this.video)}createLiveDashPlayer(){let e=new Wa({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&&dd(t)?t:St(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:v})=>v.id===a))==null?void 0:f.representation;zy(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;zy(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),N({m:"dlp.seek",p:e,no:n,url:this.params.source.url}),this.dash.reinit(ue(this.params.source.url,n)),r&&this.dash.pause(),this.liveOffset.resetTo(n,r)}};var Jy=za;import{filter as GV,filterChanged as YV,isNonNullable as KV}from"@vkontakte/videoplayer-shared/es2018";import{assertNever as JD,assertNonNullable as ZD,debounce as e0,ErrorCategory as cT,filter as Ed,filterChanged as Vo,fromEvent as t0,isNonNullable as lT,isNullable as i0,map as wd,merge as _o,observableFrom as xd,once as dT,Subscription as r0,throttle as a0}from"@vkontakte/videoplayer-shared/es2018";var fd=_(Ke(),1);import{videoSizeToQuality as _D}from"@vkontakte/videoplayer-shared/es2018";var Zy=({id:s,width:e,height:t,bitrate:i,fps:r,quality:a,streamId:n})=>{var u;let o=(u=a?Xt(a):void 0)!=null?u:_D({width:e,height:t});return o&&{id:s,quality:o,bitrate:i,size:{width:e,height:t},fps:r,streamId:n}},eT=({id:s,bitrate:e})=>({id:s,bitrate:e}),tT=({language:s,label:e},{id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:s,label:e}),iT=({language:s,label:e,id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:s,label:e}),md=({id:s,language:e,label:t,codecs:i,isDefault:r})=>({id:s,language:e,label:t,codec:(0,fd.default)(i.split("."),0),isDefault:r}),bd=({id:s,language:e,label:t,hdr:i,codecs:r})=>({id:s,language:e,hdr:i,label:t,codec:(0,fd.default)(r.split("."),0)});var ve=s=>s.type==="template";var Mo=class{constructor(e,t){this.fov=e,this.orientation=t}};var Lo=class{constructor(e,t){this.rotating=!1;this.fading=!1;this.lastTickTS=0;this.lastCameraTurnTS=0;this.fadeStartSpeed=null;this.fadeTime=0;this.camera=e,this.options=t,this.rotationSpeed={x:0,y:0,z:0},this.fadeCorrection=1/(this.options.speedFadeTime/1e3)**2}turnCamera(e=0,t=0,i=0){this.pointCameraTo(this.camera.orientation.x+e,this.camera.orientation.y+t,this.camera.orientation.z+i)}pointCameraTo(e=0,t=0,i=0){t=this.limitCameraRotationY(t);let r=e-this.camera.orientation.x,a=t-this.camera.orientation.y,n=i-this.camera.orientation.z;this.camera.orientation.x=e,this.camera.orientation.y=t,this.camera.orientation.z=i,this.lastCameraTurn={x:r,y:a,z:n},this.lastCameraTurnTS=Date.now()}setRotationSpeed(e,t,i){this.rotationSpeed.x=e!=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={...this.rotationSpeed},this.fading=!0}stopFading(){this.fadeStartSpeed=null,this.fading=!0,this.fadeTime=0}limitCameraRotationY(e){return Math.max(-this.options.maxYawAngle,Math.min(e,this.options.maxYawAngle))}tick(e){if(!this.lastTickTS){this.lastTickTS=e,this.lastCameraTurnTS=Date.now();return}let t=e-this.lastTickTS,i=t/1e3;if(this.rotating)this.turnCamera(this.rotationSpeed.x*this.options.rotationSpeedCorrection*i,this.rotationSpeed.y*this.options.rotationSpeedCorrection*i,this.rotationSpeed.z*this.options.rotationSpeedCorrection*i);else if(this.fading&&this.fadeStartSpeed){let r=-this.fadeCorrection*(this.fadeTime/1e3)**2+1;this.setRotationSpeed(this.fadeStartSpeed.x*r,this.fadeStartSpeed.y*r,this.fadeStartSpeed.z*r),r>0?this.turnCamera(this.rotationSpeed.x*this.options.rotationSpeedCorrection*i,this.rotationSpeed.y*this.options.rotationSpeedCorrection*i,this.rotationSpeed.z*this.options.rotationSpeedCorrection*i):(this.stopRotation(!0),this.stopFading()),this.fadeTime=Math.min(this.fadeTime+t,this.options.speedFadeTime)}this.lastTickTS=e}};var rT=`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 aT=`#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 Cr=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 Mo(this.params.fov,this.params.orientation),this.cameraRotationManager=new Lo(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(rT,this.gl.VERTEX_SHADER),i=this.createShader(aT,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 FD,now as Ya,once as UD,Subscription as qD,ValueSubject as vd,isNonNullable as HD,safeStorage as Sd,filterChanged as jD}from"@vkontakte/videoplayer-shared/es2018";var Rt=(s,e,t)=>t*e+(1-t)*s,gd=(s,e)=>s.reduce((t,i)=>t+i,0)/e,sT=(s,e,t,i)=>{let r=0,a=t,n=gd(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 Co="stalls_manager_metrics",yd="stalls_manager_abr_params",nT="stalls_manager_default_tuning_abr_params",Td=class{constructor(){this.isSeeked$=new vd(!1);this.isBuffering$=new vd(!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 qD;this.severeStallOccurred$=new vd(!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(yd):{};return{...this.abrParams,...t}}set lastVideoTrackSelected(e){var t;((t=this.lastUniqueVideoTrackSelected)==null?void 0:t.id)!==e.id&&(this.lastUniqueVideoTrackSelected=e,this.lastUniqueVideoTrackSelectedTimestamp=Ya(),this.currentStallsCount=0)}destroy(){window.clearTimeout(this.qualityRestrictionTimer),this.subscription.unsubscribe(),this.currentStallDuration$.getValue()!==0&&this.updateStallData();let e=(Ya()-this.providerStartWatchingTimestamp-this.sumStallsDuration)/1e3,t=this.sumStallsDuration;this.addStallInfoToHistory(e,t),this.updateStoredAbrParams()}resetStoredAbrParamsIfNeeded(){let{bitrateFactorAtEmptyBuffer:e,bitrateFactorAtFullBuffer:t,containerSizeFactor:i}={...this.getStoredData(nT)},{bitrateFactorAtEmptyBuffer:r,bitrateFactorAtFullBuffer:a,containerSizeFactor:n}={...this.abrParams};this.tuning.enabled&&e===r&&t===a&&i===n||(this.removeStoredData(yd),this.setStoredData(nT,{bitrateFactorAtEmptyBuffer:r,bitrateFactorAtFullBuffer:a,containerSizeFactor:n}))}updateStoredAbrParams(){let e=[],t=this.getStoredData(Co,"[]");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(Co,[]),this.setStoredData(yd,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=Sd.get(e))!=null?i:t)}setStoredData(e,t){Sd.set(e,JSON.stringify(t))}removeStoredData(e){Sd.remove(e)}addStallInfoToHistory(e,t){if(e<this.tuning.minTvtToBeCounted||e>this.tuning.maxTvtToBeCounted||e*1e3<t)return;let i=this.getStoredData(Co,"[]"),r=t/e,a=i.length?Rt(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(Co,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(UD()).subscribe(t=>this.providerStartWatchingTimestamp=Ya())),this.subscription.add(this.currentStallDuration$.pipe(jD()).subscribe(t=>{let{stallDurationNoDataBeforeQualityDecrease:i,stallCountBeforeQualityDecrease:r,resetQualityRestrictionTimeout:a,ignoreStallsOnSeek:n}=this.tuning;if(FD(this.lastUniqueVideoTrackSelected)||n&&this.isSeeked$.getValue())return;let o=this.rtt$.getValue(),u=this.throughput$.getValue(),c=this.videoLastDataObtainedTimestamp$.getValue(),d=Ya(),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,HD(this.lastUniqueVideoTrackSelected.bitrate)&&u>this.lastUniqueVideoTrackSelected.bitrate&&(this.predictedThroughputWithoutData=this.lastUniqueVideoTrackSelected.bitrate)),!t&&Ya()-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}))}},Do=Td;import{combine as WD,map as QD,observeElementSize as zD,Subscription as GD,ValueSubject as Id,noop as YD}from"@vkontakte/videoplayer-shared/es2018";var Bo=class{constructor(){this.subscription=new GD;this.pipSize$=new Id(void 0);this.videoSize$=new Id(void 0);this.elementSize$=new Id(void 0);this.pictureInPictureWindowRemoveEventListener=YD}connect({observableVideo:e,video:t}){let i=r=>{let a=r.target;this.pipSize$.next({width:a.width,height:a.height})};this.subscription.add(zD(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(WD({videoSize:this.videoSize$,pipSize:this.pipSize$,inPip:e.inPiP$}).pipe(QD(({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 oT,map as KD,once as uT}from"@vkontakte/videoplayer-shared/es2018";var Zt=({subscription:s,desiredState:e,videoElement$:t,observableVideo:i})=>{if(!B.browser.isSafari)return;let r=0,a=!1;s.add(e.volume.stateChangeStarted$.pipe(KD(()=>{let n=e.volume.getTransition(),o=t.getValue();return!o||!n?!1:!n.to.muted&&o.muted}),oT(n=>!!n),uT()).subscribe(()=>{r=performance.now(),a=!0})),s.add(i.playbackRateState$.pipe(oT(()=>a),uT()).subscribe(()=>{let n=t.getValue(),o=e.playbackRate.getState();n&&o!==n.playbackRate&&performance.now()-r<1e3&&(n.playbackRate=o)}))};var Oi=class{constructor(e){this.subscription=new r0;this.videoState=new H("stopped");this.observableVideo=null;this.droppedFramesManager=new Lr;this.stallsManager=new Do;this.elementSizeManager=new Bo;this.videoTracksMap=new Map;this.audioTracksMap=new Map;this.textTracksMap=new Map;this.videoStreamsMap=new Map;this.audioStreamsMap=new Map;this.videoTrackSwitchHistory=new Jt;this.audioTrackSwitchHistory=new Jt;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"),k(this.params.desiredState.playbackState,"stopped",!0));return}switch(e){case"stopped":this.videoState.startTransitionTo("ready"),this.prepare();return;case"ready":t==="paused"?(this.videoState.setState("paused"),k(this.params.desiredState.playbackState,"paused")):t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="ready"&&k(this.params.desiredState.playbackState,"ready");return;case"playing":t==="paused"?(this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()):t==="playing"&&this.video.paused?this.playIfAllowed():(i==null?void 0:i.to)==="playing"&&k(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="paused"&&k(this.params.desiredState.playbackState,"paused");return;default:return JD(e)}}};this.init3DScene=e=>{var i,r,a;if(this.scene3D)return;this.scene3D=new Cr(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 Ye(e.source.url),this.params=e,this.video=Be(e.container,e.tuning),this.tracer=e.dependencies.tracer.createComponentTracer(this.constructor.name),this.params.output.element$.next(this.video),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(xe(this.params.source.url)),this.params.output.isLive$.next(!1),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.player=this.getPlayer(),this.subscribe()}getProviderSubscriptionInfo(){let{output:e,desiredState:t}=this.params;i0(this.observableVideo)&&(this.observableVideo=Oe(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:cT.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(Ed(l=>!!l.length),dT()).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(wd(l=>l.to.state!=="none"),Vo());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(Ed(lT),dT()),e.firstBytesEvent$),a(this.stallsManager.severeStallOccurred$,e.severeStallOccurred$),a(this.videoState.stateChangeEnded$.pipe(wd(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(bt(this.video,t.isLooped,r)),this.subscription.add(i.volumeState$.subscribe(this.params.output.volume$,r)),Zt({subscription:this.subscription,desiredState:t,videoElement$:this.params.output.element$,observableVideo:i}),this.subscription.add(_e(this.video,t.volume,i.volumeState$,r)),this.subscription.add(Ge(this.video,t.playbackRate,i.playbackRateState$,r)),this.elementSizeManager.connect({video:this.video,observableVideo:i}),a(Xe(this.video,{threshold:this.params.tuning.autoTrackSelection.activeVideoAreaThreshold}),e.elementVisible$),this.subscription.add(i.playing$.subscribe(()=>{this.videoState.setState("playing"),k(t.playbackState,"playing"),this.scene3D&&this.scene3D.play()},r)).add(i.pause$.subscribe(()=>{this.videoState.setState("paused"),k(t.playbackState,"paused")},r)).add(i.canplay$.subscribe(()=>{this.videoState.getState()==="playing"&&this.playIfAllowed()},r)),this.params.tuning.changePlaybackStateToPausedWhenEnded&&this.subscription.add(i.ended$.subscribe(()=>{this.videoState.setState("paused"),k(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(ZD(p,"Manifest not loaded or empty"),!this.params.tuning.isAudioDisabled){let m=[];for(let v of p.audio){m.push(md(v));let g=[];for(let S of v.representations){let T=eT(S);g.push(T),this.audioTracksMap.set(T,{stream:v,representation:S})}this.audioStreamsMap.set(v,g)}this.params.output.availableAudioStreams$.next(m)}let f=[];for(let m of p.video){f.push(bd(m));let v=[];for(let g of m.representations){let S=Zy({...g,streamId:m.id});S&&(v.push(S),this.videoTracksMap.set(S,{stream:m,representation:g}))}this.videoStreamsMap.set(m,v)}this.params.output.availableVideoStreams$.next(f);for(let m of p.text)for(let v of m.representations){let g=tT(m,v);this.textTracksMap.set(g,{stream:m,representation:v})}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=_o(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$,t0(this.video,"progress")).pipe(Ed(()=>this.videoTracksMap.size>0)),{abrThrottle:u}=this.params.tuning.dash;u&&(o=o.pipe(a0(u))),this.subscription.add(o.subscribe(async()=>{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,v]=f,g=[...this.videoTracksMap.keys()].find(T=>{var y;return((y=this.videoTracksMap.get(T))==null?void 0:y.representation.id)===m.id});lT(g)&&(this.stallsManager.lastVideoTrackSelected=g);let S=this.params.desiredState.autoVideoTrackLimits.getTransition();S&&this.params.output.autoVideoTrackLimits$.next(S.to),l==="manifest_ready"?await this.player.initRepresentations(m.id,v==null?void 0:v.id,this.params.sourceHls):(await this.player.switchRepresentation("video",m.id,h),v&&await this.player.switchRepresentation("audio",v.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(Vo()).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(bd(f))},r)),this.subscription.add(this.player.currentAudioRepresentation$.pipe(Vo()).subscribe(l=>{let p=[...this.audioTracksMap.entries()].find(([,{representation:v}])=>v.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(md(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(wd(({to:l})=>l==="ready"),Vo());this.subscription.add(_o(c,t.autoVideoTrackSwitching.stateChangeStarted$,this.player.state$.stateChangeEnded$,xd(["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(_o(c,this.player.state$.stateChangeEnded$,xd(["init"])).subscribe(()=>this.player.setPreloadOnly(t.playbackState.getState()==="ready")));let d=_o(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,xd(["init"])).pipe(e0(0));this.subscription.add(d.subscribe(this.syncPlayback,r))}selectVideoAudioRepresentations(){var $,D,A,V,M,q,Y,j,E,P,I,w,F;if(this.player.isStreamEnded)return;let e=this.params.tuning.useNewAutoSelectVideoTrack?Ua:Fa,t=this.params.tuning.useNewAutoSelectVideoTrack?Po:xo,i=this.params.tuning.useNewAutoSelectVideoTrack?St:wo,{desiredState:r,output:a}=this.params,n=r.autoVideoTrackSwitching.getState(),o=($=r.videoTrack.getState())==null?void 0:$.id,u=[...this.videoTracksMap.keys()].find(({id:O})=>O===o),c=a.currentVideoTrack$.getValue(),d=((V=(A=r.videoStream.getState())!=null?A:u&&((D=this.videoTracksMap.get(u))==null?void 0:D.stream))!=null?V:this.videoStreamsMap.size===1)?this.videoStreamsMap.keys().next().value:void 0;if(!d)return;let l=[...this.videoStreamsMap.keys()].find(({id:O})=>O===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,v=Math.min(h/Math.min(f,m||1/0),1),g=(M=r.audioStream.getState())!=null?M:this.audioStreamsMap.size===1?this.audioStreamsMap.keys().next().value:void 0,S=(q=[...this.audioStreamsMap.keys()].find(({id:O})=>O===(g==null?void 0:g.id)))!=null?q:this.audioStreamsMap.keys().next().value,T=0;if(S){if(u&&!n){let O=e(u,p,(Y=this.audioStreamsMap.get(S))!=null?Y:[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);T=Math.max(T,(j=O==null?void 0:O.bitrate)!=null?j:-1/0)}if(c){let O=e(c,p,(E=this.audioStreamsMap.get(S))!=null?E:[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);T=Math.max(T,(P=O==null?void 0:O.bitrate)!=null?P:-1/0)}}let y=u;(n||!y)&&(y=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:v,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 x=S&&t(y,p,(I=this.audioStreamsMap.get(S))!=null?I:[],{estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),stallsPredictedThroughput:this.stallsManager.predictedThroughput,tuning:this.stallsManager.abrTuningParams,forwardBufferHealth:v,history:this.audioTrackSwitchHistory,playbackRate:this.video.playbackRate,abrLogger:this.params.dependencies.abrLogger}),R=(w=this.videoTracksMap.get(y))==null?void 0:w.representation,C=x&&((F=this.audioTracksMap.get(x))==null?void 0:F.representation);if(R&&C)return[R,C];if(R&&!C&&this.audioTracksMap.size===0)return[R,void 0]}prepare(e=0){this.player.initManifest(this.video,this.params.source.url,e)}playIfAllowed(){Ne(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),k(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:cT.DOM,thrown:e}))}destroy(){this.subscription.unsubscribe(),this.droppedFramesManager.destroy(),this.stallsManager.destroy(),this.elementSizeManager.destroy(),this.destroy3DScene(),this.textTracksManager.destroy(),this.player.destroy(),this.params.output.element$.next(void 0),this.params.output.currentVideoStream$.next(void 0),Ve(this.video),this.tracer.end()}};var ip=_(Ka(),1);var{NativeAbortSignal:BQ,NativeAbortController:VQ}=function(s){return{NativeAbortSignal:s.AbortSignal,NativeAbortController:s.AbortController}}(typeof self!="undefined"?self:global);function MT(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 LT(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 Oo=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}},Dr=class extends Oo{constructor(){super(),this.listeners||Oo.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 Fi;return setTimeout(()=>t.abort(new DOMException(`This signal is timeout in ${e}ms`,"TimeoutError")),e),t.signal}static any(e){let t=new Fi;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}},Fi=class{constructor(){Object.defineProperty(this,"signal",{value:new Dr,writable:!0,configurable:!0})}abort(e){let t=LT(e),i=MT(t);this.signal.reason=t,this.signal.dispatchEvent(i)}toString(){return"[object AbortController]"}};typeof Symbol!="undefined"&&Symbol.toStringTag&&(Fi.prototype[Symbol.toStringTag]="AbortController",Dr.prototype[Symbol.toStringTag]="AbortSignal");function No(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 kd(s){typeof s=="function"&&(s={fetch:s});let{fetch:e,Request:t=e.Request,AbortController:i,__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL:r=!1}=s;if(!No({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 pe=typeof globalThis=="object"&&globalThis||typeof window=="object"&&window;var k0=()=>"fetch"in pe,Xa=k0()&&No({fetch:pe.fetch,Request:pe.Request,AbortController:pe.AbortController}),CT=Xa?kd({fetch:pe.fetch,Request:pe.Request,AbortController:pe.AbortController}):void 0,Je=Xa?CT.fetch:pe.fetch,GQ=Xa?CT.Request:pe.Request,ie=Xa?Fi:pe.AbortController,YQ=Xa?Dr:pe.AbortSignal;var xE=_(De(),1);var eI=_(ZT(),1);import{ErrorCategory as Za}from"@vkontakte/videoplayer-shared/es2018";var Fo=s=>{if(!s)return{id:"EmptyResponse",category:Za.PARSER,message:"Empty response"};if(s.length<=2&&s.match(/^\d+$/))return{id:`UVError#${s}`,category:Za.NETWORK,message:`UV Error ${s}`};let e=(0,eI.default)(s).substring(0,100).toLowerCase();if(e.startsWith("<!doctype")||e.startsWith("<html>")||e.startsWith("<body>")||e.startsWith("<head>"))return{id:"UnexpectedHTML",category:Za.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:Za.PARSER,message:"XML parsing error"}:{id:"XMLParserLogicError",category:Za.PARSER,message:"Response is valid XML, but parser failed"}};import{abortable as TE,assertNonNullable as Lt,ErrorCategory as zi,filter as Jd,filterChanged as OV,flattenObject as su,fromEvent as Gi,getTraceSubscriptionMethod as NV,getWindow as Ls,interval as IE,isNonNullable as si,isNullable as Cs,map as Zd,merge as Ds,now as FV,Subject as ni,Subscription as EE,SubscriptionRemovable as UV,ValueSubject as Z}from"@vkontakte/videoplayer-shared/es2018";var ei=s=>{let e=new URL(s);return e.searchParams.set("quic","1"),e.toString()};var Uo=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 es,assertNever as tI,ErrorCategory as Br,flattenObject as Vr,fromEvent as iI,getWindow as ts,merge as j0,now as Ui,Subject as _r,Subscription as W0,suppressAbort as Ho,ValueSubject as is}from"@vkontakte/videoplayer-shared/es2018";var qo=s=>{let e=new URL(s);return e.searchParams.set("enable-subtitles","yes"),e.toString()};var jo=class{constructor({throughputEstimator:e,requestQuic:t,tracer:i,compatibilityMode:r=!1,useEnableSubtitlesParam:a=!1}){this.manifestRequested=new _r;this.manifestReceived=new _r;this.firstBytesRequested=new _r;this.firstBytesReceived=new _r;this.lastConnectionType$=new is(void 0);this.lastConnectionReused$=new is(void 0);this.lastRequestFirstBytes$=new is(void 0);this.lastConnectionMetrics$=new is(void 0);this.lastDownloadMetrics$=new is(void 0);this.recoverableError$=new _r;this.error$=new _r;this.abortAllController=new ie;this.subscription=new W0;this.performanceObserver=null;this.pendingConnectionMetrics=new Map;this.fetchManifest=es(this.abortAllController.signal,async function*(e){let t=this.tracer.createComponentTracer("FetchManifest"),i=e;this.requestQuic&&(i=ei(i)),!this.compatibilityMode&&this.useEnableSubtitlesParam&&(i=qo(i)),this.trackRequestStart(i,performance.now());let r=Ui();this.manifestRequested.next();let a=yield this.doFetch(i,{signal:this.abortAllController.signal}).catch(Ho);if(a){let n=Ui();t.log("success",Vr({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=await 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",Vr({url:i,message:"No data in request manifest"})),t.end(),null}.bind(this));this.fetch=es(this.abortAllController.signal,async function*(e,{rangeMethod:t=this.compatibilityMode?0:1,range:i,onProgress:r,priority:a="auto",signal:n,measureThroughput:o=!0,isLowLatency:u=!1,bufferOptimisation:c=!1}={}){var q,Y,j;let d=e,l=new Headers,p=this.tracer.createComponentTracer("Fetch");if(i)switch(t){case 0:{l.append("Range",`bytes=${i.from}-${i.to}`);break}case 1:{let E=new URL(d,ts().location.href);E.searchParams.append("bytes",`${i.from}-${i.to}`),d=E.toString();break}default:tI(t)}this.requestQuic&&(d=ei(d));let h=this.abortAllController.signal,f;if(n){let E=new ie;if(f=j0(iI(this.abortAllController.signal,"abort"),iI(n,"abort")).subscribe(()=>{try{E.abort()}catch(P){Ho(P)}}),this.subscription.add(f),this.abortAllController.signal.aborted||n.aborted)try{E.abort()}catch(P){Ho(P)}h=E.signal}let m=0,v=Ui();p.log("startRequest",Vr({url:d,priority:a,rangeMethod:t,range:i,isLowLatency:u,requestStartedAt:v})),this.trackRequestStart(d,performance.now()),this.firstBytesRequested.next();let g=yield this.doFetch(d,{priority:a,headers:l,signal:h}),S=Ui();if(!g)return p.error("error",{message:"No response in request"}),p.end(),f==null||f.unsubscribe(),null;if((q=this.throughputEstimator)==null||q.addRawRtt(S-v),!g.ok||!g.body){f==null||f.unsubscribe();let E=`Fetch error ${g.status}: ${g.statusText}`;return p.error("error",{message:E}),p.end(),Promise.reject(new Error(`Fetch error ${g.status}: ${g.statusText}`))}if(this.onHeadersReceived(g.headers),!r&&!o){f==null||f.unsubscribe();let E=Ui(),P={requestStartedAt:v,requestEndedAt:E,duration:E-v};return p.log("endRequest",Vr(P)),p.end(),g.arrayBuffer()}let T=g.body;if(o){let E;[T,E]=g.body.tee(),(Y=this.throughputEstimator)==null||Y.trackStream(E,u)}let y=T.getReader(),x,R=parseInt((j=g.headers.get("content-length"))!=null?j:"",10);Number.isFinite(R)&&(x=R),!x&&i&&(x=i.to-i.from+1);let C=x?new Uint8Array(x):new Uint8Array(0),$=!1,D=E=>{f==null||f.unsubscribe(),$=!0,Ho(E)},A=es(h,async function*({done:E,value:P}){if(m===0&&(this.lastRequestFirstBytes$.next(Ui()-v),this.firstBytesReceived.next()),h.aborted){f==null||f.unsubscribe();return}if(!E&&P){if(c&&x)C.set(P,m),m+=P.byteLength;else{let I=new Uint8Array(C.length+P.length);I.set(C),I.set(P,C.length),C=I,m+=P.byteLength}r==null||r(new DataView(C.buffer),m),yield y==null?void 0:y.read().then(A,D)}}.bind(this));yield y==null?void 0:y.read().then(A,D),f==null||f.unsubscribe();let V=Ui(),M={failed:$,requestStartedAt:v,requestEndedAt:V,duration:V-v};if($)return p.error("endRequest",Vr(M)),p.end(),null;if(m>0){let E=V-v,I=m/(E/1e3)*8/1024,w={bytes:m,speed:I,url:e};this.lastDownloadMetrics$.next(w)}return p.log("endRequest",Vr(M)),p.end(),C.buffer}.bind(this));this.fetchByteRangeRepresentation=es(this.abortAllController.signal,async function*(e,t,i){var g;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=(g=e.indexRange)!=null?g: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 v=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:v}}.bind(this));this.fetchTemplateRepresentation=es(this.abortAllController.signal,async function*(e,t){if(e.type!=="template")return null;let i=new URL(e.initUrl,e.baseUrl).toString(),r=yield this.fetch(i,{priority:t,measureThroughput:!1});if(!r)return null;let a=e.segments.map(n=>({...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,ts().PerformanceObserver&&this.setupPerformanceObserver()}onHeadersReceived(e){let{type:t,reused:i}=Uo(e);this.lastConnectionType$.next(t),this.lastConnectionReused$.next(i)}setupPerformanceObserver(){this.performanceObserver=new(ts()).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 ts().navigator))return"unknown";let e=ts().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:Br.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})}async fetchRepresentation(e,t,i="auto"){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:tI(r)}}destroy(){this.abortAllController.abort(),this.subscription.unsubscribe(),this.performanceObserver&&(this.performanceObserver.disconnect(),this.performanceObserver=null),this.pendingConnectionMetrics.clear(),this.tracer.end()}async doFetch(e,t){let i=await Je(e,t);if(i.ok)return i;let r=await i.text(),a=parseInt(r);if(!isNaN(a))switch(a){case 1:this.recoverableError$.next({id:"VideoDataLinkExpiredError",message:"Video data links have expired",category:Br.FATAL,httpCode:i.status,UVBackendErrorCode:r});break;case 8:this.recoverableError$.next({id:"VideoDataLinkBlockedForFloodError",message:"Url blocked for flood",category:Br.FATAL,httpCode:i.status,UVBackendErrorCode:r});break;case 18:this.recoverableError$.next({id:"VideoDataLinkIllegalIpChangeError",message:"Client IP has changed",category:Br.FATAL,httpCode:i.status,UVBackendErrorCode:r});break;case 21:this.recoverableError$.next({id:"VideoDataLinkIllegalHostChangeError",message:"Request HOST has changed",category:Br.FATAL,httpCode:i.status,UVBackendErrorCode:r});break;default:this.error$.next({id:"GeneralVideoDataFetchError",message:`Generic video data fetch error (${a})`,category:Br.FATAL,httpCode:i.status,UVBackendErrorCode:r})}}};var Nd=_(xI(),1),zI=_(Gt(),1),GI=_(UI(),1),YI=_(Ke(),1),Fd=_(Pi(),1);var qI=_(De(),1),Od=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,qI.default)(["6E","7A","F4"],o)}}return!1};import{isNonNullable as WB,isNullable as WI}from"@vkontakte/videoplayer-shared/es2018";var HI=s=>{if(s.includes("/")){let e=s.split("/");return parseInt(e[0])/parseInt(e[1])}else return parseFloat(s)};var jI=s=>{var e;try{let t=jB(),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 jB(){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},Ps=e=>new URL(e).hostname;import{assertNever as Fs,assertNonNullable as Is,combine as Ls,debounce as Rs,ErrorCategory as zs,filter as Bs,filterChanged as Vs,isNonNullable as Hs,map as Us,merge as Ws,observableFrom as Gs,once as Ks,Subscription as qs,ValueSubject as Js,videoQualityToHeight as Ys,videoSizeToQuality as Xs}from"@vkontakte/videoplayer-shared/es2018";var Zs=l(xn(),1),Qs=l(En(),1),$s=(e,t)=>typeof e==`string`?Qs.default(e,t):Zs.default(e,t),ec=l(Xe(),1),tc=e=>{if(e instanceof DOMException&&ec.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`))},nc=async(e,t)=>{let n=e.muted;try{await e.play()}catch(r){if(!tc(r))return!1;if(t&&t(),n)return console.warn(r),!1;e.muted=!0;try{await e.play()}catch(t){return tc(t)?(e.muted=!1,console.warn(t),!1):!1}}return!0};import{isNonNullable as rc,isNullable as ic,assertNonNullable as ac}from"@vkontakte/videoplayer-shared/es2018";var oc=l(We(),1);import{isNonNullable as sc,assertNonNullable as cc,now as lc}from"@vkontakte/videoplayer-shared/es2018";function uc(){return lc()}function dc(e){return uc()-e}function fc(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 pc(e,t,n){let r=(...i)=>{n.apply(null,i),e.removeEventListener(t,r)};e.addEventListener(t,r)}function mc(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;cc(u);let e=dc(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=uc(),o=new i,o.open(`get`,e);let n=0,r,l=0,m=()=>(cc(u),Math.max(u,Math.max(r||0,l||0)));if(a&&o.addEventListener(`progress`,e=>{let t=uc();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;cc(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||!oc.default(e).length)?b():(d&&d(),t(e))}else b()}),o.addEventListener(`error`,()=>{b()}),f){let e=()=>{cc(o),o.readyState===XMLHttpRequest.HEADERS_RECEIVED&&(l=uc(),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)=>(sc(e)&&(h=e),sc(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 hc=100,gc=2e3,_c=500;class vc{constructor(t){e(this,`intervals`,[]),e(this,`currentRate`,0),e(this,`logger`,void 0),this.logger=t}_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-_c;if(t-e>gc){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>hc&&(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 yc=l(We(),1);class bc{constructor(t,n,r,i,a){e(this,`pendingQueue`,[]),e(this,`activeRequests`,{}),e(this,`completeRequests`,{}),e(this,`averageSegmentDuration`,2e3),e(this,`lastPrefetchStart`,0),e(this,`throttleTimeout`,null),e(this,`RETRY_COUNT`,void 0),e(this,`TIMEOUT`,void 0),e(this,`BITRATE_ESTIMATOR`,void 0),e(this,`MAX_PARALLEL_REQUESTS`,void 0),e(this,`logger`,void 0),this.RETRY_COUNT=t,this.TIMEOUT=n,this.BITRATE_ESTIMATOR=r,this.MAX_PARALLEL_REQUESTS=i,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=uc(),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=mc(t,r=>{e._complete=1,e._responseData=r,e._downloadTime=uc()-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=uc()}_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=uc();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(){yc.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 xc}from"@vkontakte/videoplayer-shared/es2018";import{isNonNullable as Sc}from"@vkontakte/videoplayer-shared/es2018";var L=(e,t)=>Sc(e)&&Sc(t)&&e.readyState===`open`&&Cc(e,t);function Cc(e,t){for(let n=0;n<e.activeSourceBuffers.length;++n)if(e.activeSourceBuffers[n]===t)return!0;return!1}var wc=l(et(),1);import{getWindow as Tc}from"@vkontakte/videoplayer-shared/es2018";class Ec{constructor(t,n,r,i){e(this,`tag`,void 0),e(this,`time`,void 0),e(this,`data`,void 0),e(this,`stack`,void 0),this.tag=t,this.time=n,this.data=r,this.stack=i}toString(){return`${this.tag}: ${this.time}: ${JSON.stringify(this.data)}${this.stack?`, stack: ${this.stack}`:``}`}toDevNullEntry(){let e=wc.default(this.data).map(([e,t])=>`${e}:${t}`).join(`,`);return{key:this.tag,strings:[e,this.stack??``],numbers:[this.time]}}}var R=((e,t=`warn`)=>{let n=Tc(),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 Ec(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),Dc=1e4,Oc=3,kc=6e4,Ac=10,jc=1,Mc=500;class Nc{constructor(t){e(this,`paused`,!1),e(this,`autoQuality`,!0),e(this,`autoQualityLimits`,void 0),e(this,`buffering`,!0),e(this,`destroyed`,!1),e(this,`videoPlayStarted`,!1),e(this,`lowLatency`,!1),e(this,`rep`,void 0),e(this,`bitrate`,0),e(this,`manifest`,[]),e(this,`bitrateSwitcher`,void 0),e(this,`filesFetcher`,void 0),e(this,`sourceBuffer`,0),e(this,`mediaSource`,void 0),e(this,`currentManifestEntry`,void 0),e(this,`manifestRequest`,void 0),e(this,`manifestRefetchTimer`,void 0),e(this,`bufferStates`,[]),e(this,`downloadRate`,void 0),e(this,`sourceJitter`,-1),e(this,`chunkRateEstimator`,void 0),e(this,`manifestUrl`,void 0),e(this,`urlResolver`,void 0),e(this,`waitingForFirstBufferAfterSrcChange`,!1),e(this,`params`,void 0),e(this,`soundProhibitedEvent$`,void 0),this.params=t,this.soundProhibitedEvent$=new xc,this.chunkRateEstimator=new vc(this.params.logger),this._initVideo()}attachSource(e){this.manifestUrl=e,this.urlResolver=fc(e),this.bitrateSwitcher=this._initBitrateSwitcher(),this._initManifest()}setAutoQualityEnabled(e){this.autoQuality=e}setAutoQualityLimits(e){this.autoQualityLimits=e}switchByName(e){let t;for(let n=0;n<this.manifest.length;++n)if(t=this.manifest[n],t.name===e){this._switchToQuality(t);return}}catchUp(){this.rep&&(R({m:`ldp.catchUp.1`}),this.rep.stop()),this.currentManifestEntry&&(this.paused=this.params.playbackState.getState()===`paused`,R({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()?(R({m:`ldp.play.1`}),this._playVideoElement()):(R({m:`ldp.play.2`}),this._notifyBuffering(!0))):(R({m:`ldp.play.3`}),this.catchUp())}startPlay(e,t){this.autoQuality=t,R({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=fc(e),R({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;R({m:`iv`}),e.addEventListener(`error`,()=>{e.error&&!this.destroyed&&(R({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`),R({m:`ldp.fs`,t:r}),t.currentTime=r))}_selectQuality(e){let{videoElement:t}=this.params,n,r,i,a=t&&1.62*(P.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||{};!ms({limits:this.autoQualityLimits,highestAvailableHeight:this.manifest[0].video.height,lowestAvailableHeight:$s(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||rc(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`){R({m:`sourceopen`,err:`not open: ${this.mediaSource?.readyState}`});return}R({m:`sourceopen`,c:e.codecs}),this.sourceBuffer=this.mediaSource.addSourceBuffer(e.codecs),this.bufferStates=[],t()}),this.mediaSource?.addEventListener(`sourceclose`,e=>{R({m:`sourceclose`})}),this.videoPlayStarted=!1,r.addEventListener(`canplay`,()=>{R({m:`canplay`}),this.shouldPlay()&&(this.videoPlayStarted=!0,this._playVideoElement())});let a=()=>{pc(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 bc(Oc,Dc,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=mc(this.urlResolver.resolve(e,!1),t,n,()=>this._retryCallback()).withTimeout(Dc).withBitrateReporting(this.bitrateSwitcher).withRetryCount(Oc).withFinally(()=>{s=null}).send()},f=(e,t,n)=>{ac(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=uc()-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-jc;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(rc(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>Ac)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=mc(this.urlResolver.resolve(e,!0,this.lowLatency),t,n,()=>this._retryCallback()).withTimeout(Dc).withRetryCount(Oc).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&&(ac(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(),ac(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(Mc,1e3*(this._getBufferSizeSec()-this.sourceJitter-5)),t=y+e,n=uc(),r=Math.min(1e4,t-n);y=n;let i=()=>{c||u()&&s.seek(()=>{u()&&(y=uc(),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():(_(),R({m:`ldp.fetchChunkIdx.0`}),this._initPlayerWith(e));return}O(n)}else C()},T=(e,t)=>{if(!u()||!this.sourceBuffer){R({m:`ab.0`,c:[!u(),!this.sourceBuffer]});return}let i,a,s,c=n=>{R({m:`ldp.postpone`,t:n}),window.setTimeout(()=>{u()&&T(e,t)},n)};if(this.sourceBuffer.updating)o(`Source buffer is updating; delaying appendBuffer`),R({m:`ldp.ab.1`}),c(100);else{let l=uc(),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)R({m:`ldp.ab.3`}),o(`Buffered ${d} seconds; delaying appendBuffer`),c(2e3);else try{if(this.params.config.useInvalidBufferFix&&L(this.mediaSource,this.sourceBuffer))return;this.sourceBuffer.appendBuffer(e),this.videoPlayStarted?(R({m:`ldp.ab.5`}),this.bufferStates.push({ts:l,buf:d}),h(),this.bufferStates.length>200&&this.bufferStates.shift()):this.shouldPlay()&&(R({m:`ldp.ab.4`}),this.videoPlayStarted=!0,this._playVideoElement()),t&&t()}catch(e){R({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()&&(ac(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=uc(),!e){C();return}v=e,!ic(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(),rc(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,ac(this.bitrateSwitcher),this.bitrateSwitcher.notifySwitch(this.bitrate),this.rep.start(r),n({name:`qualitySwitch`,quality:e}))}_qualityAvailable(e){return rc(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=uc();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&&dc(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=uc();e<a&&(i=t),a=e}}}_fetchManifest(e,t,n){this.manifestRequest=mc(this.urlResolver.resolve(e,!0),t,n,()=>this._retryCallback()).withJSONResponse().withTimeout(Dc).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;nc(e,()=>{this.soundProhibitedEvent$.next()}).then(e=>{R({m:`ldp.pve.1`}),e||(R({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))},kc))}_initManifest(){this._fetchManifest(this.manifestUrl,e=>{this.destroyed||(this._handleManifestUpdate(e),this._refetchManifest(this.manifestUrl))},()=>this._handleNetworkError())}}var Pc=l(et(),1);import{debounce as Fc,filter as Ic,fromEvent as Lc,interval as Rc,isHigher as zc,isInvariantQuality as Bc,isLower as Vc,merge as Hc,Subject as Uc,Subscription as Wc}from"@vkontakte/videoplayer-shared/es2018";class Gc{constructor(){e(this,`onDroopedVideoFramesLimit$`,new Uc),e(this,`subscription`,new Wc),e(this,`log`,void 0),e(this,`video`,void 0),e(this,`droppedFramesChecker`,void 0),e(this,`isAuto`,void 0),e(this,`playing`,!1),e(this,`tracks`,[]),e(this,`forceChecker$`,new Uc),e(this,`isForceCheckCounter`,0),e(this,`prevTotalVideoFrames`,0),e(this,`prevDroppedVideoFrames`,0),e(this,`currentTimer`,void 0),e(this,`limitCounts`,{}),e(this,`currentQuality`,void 0),e(this,`maxQualityLimit`,void 0),e(this,`handleChangeVideoQuality`,()=>{let e=this.tracks.find(({size:e})=>e?.height===this.video.videoHeight&&e?.width===this.video.videoWidth);e&&!Bc(e.quality)&&this.onChangeQuality(e.quality)}),e(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(Lc(this.video,`resize`).subscribe(this.handleChangeVideoQuality));let e=Hc(Rc(this.droppedFramesChecker.checkTime).pipe(Ic(()=>this.playing),Ic(()=>{let e=!!this.isForceCheckCounter;return e&&--this.isForceCheckCounter,!e})),this.forceChecker$.pipe(Fc(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=Pc.default(this.limitCounts).filter(([,e])=>e>=this.droppedFramesChecker.countLimit).sort(([e],[t])=>Vc(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 Kc=Gc;import{map as qc,Observable as Jc}from"@vkontakte/videoplayer-shared/es2018";import{fromEvent as Yc}from"@vkontakte/videoplayer-shared/es2018";var Xc=()=>!!window.documentPictureInPicture?.window||!!document.pictureInPictureElement,Zc=(e,t)=>new Jc(n=>{if(!window.IntersectionObserver)return;let r=new IntersectionObserver((e,t)=>{e.forEach(e=>n.next(e.isIntersecting||Xc()))},{root:null,...t});r.observe(e);let i=Yc(document,`visibilitychange`).pipe(qc(e=>!document.hidden||Xc())).subscribe(e=>n.next(e));return()=>{r.unobserve(e),i.unsubscribe()}}),Qc=[`paused`,`playing`,`ready`],$c=[`paused`,`playing`,`ready`];class el{constructor(t){e(this,`subscription`,new qs),e(this,`video`,void 0),e(this,`videoState`,new F(`stopped`)),e(this,`dash`,void 0),e(this,`representations$`,new Js([])),e(this,`textTracksManager`,void 0),e(this,`droppedFramesManager`,new Kc),e(this,`maxSeekBackTime$`,new Js(1/0)),e(this,`zeroTime$`,new Js(void 0)),e(this,`liveOffset`,new vo),e(this,`log`,void 0),e(this,`params`,void 0),e(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=Vo(e.name)??Xs(e.video),i=e.bitrate/1e3,a={...e.video};if(!r)continue;let o={id:t,quality:r,bitrate:i,size:a};n.push({track:o,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),Hs(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}}),e(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(Ma.default($c,e)&&(a||o)){this.prepare();return}if(r?.to!==`paused`&&i.state===`requested`&&Ma.default(Qc,e)){this.seek(i.position-this.liveOffset.getTotalPausedTime());return}switch(e){case`stopped`:this.videoState.startTransitionTo(`manifest_ready`),this.dash.attachSource(Qr(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`){R({m:`dlp.sync.1`}),this.videoState.startTransitionTo(`playing`);let e=r?.from;e&&e===`ready`&&(R({m:`dlp.sync.2`}),this.dash.catchUp()),R({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(Qr(this.params.source.url,e))}return;default:return Fs(e)}}),this.textTracksManager=new _o(t.source.url),this.params=t,this.log=this.params.dependencies.logger.createComponentLog(`DashLiveProvider`);let n=e=>{t.output.error$.next({id:`DashLiveProvider`,category:zs.WTF,message:`DashLiveProvider internal logic error`,thrown:e})};this.subscription.add(Ws(this.videoState.stateChangeStarted$.pipe(Us(e=>({transition:e,type:`start`}))),this.videoState.stateChangeEnded$.pipe(Us(e=>({transition:e,type:`end`})))).subscribe(({transition:e,type:t})=>{R({m:`dlp.s.1`,t:t+`:${e.from}-${e.to}`}),this.log({message:`[videoState change] ${t}: ${JSON.stringify(e)}`})})),this.video=Wa(t.container,t.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(Ps(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 r=zo(this.video);this.subscription.add(()=>r.destroy()),this.subscription.add(this.representations$.pipe(Us(e=>e.map(({track:e})=>e)),Bs(e=>!!e.length),Ks()).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}))),this.subscription.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.params.desiredState.seekState.getState().state===`applying`&&this.params.output.seekedEvent$.next(),this.videoState.setState(`playing`)},n)).add(r.error$.subscribe(this.params.output.error$)).add(this.maxSeekBackTime$.pipe(Vs(),Us(e=>-e/1e3)).subscribe(this.params.output.duration$)).add(Ls({zeroTime:this.zeroTime$.pipe(Bs(Hs)),position:r.timeUpdate$}).subscribe(({zeroTime:e,position:t})=>{t===0&&this.videoState.getTransition()||this.params.output.liveTime$.next(e+t*1e3)},n)).add(lo(this.video,this.params.desiredState.isLooped,n)).add(uo(this.video,this.params.desiredState.volume,r.volumeState$,n)).add(r.volumeState$.subscribe(this.params.output.volume$,n)).add(fo(this.video,this.params.desiredState.playbackRate,r.playbackRateState$,n)).add(r.loadStart$.subscribe(this.params.output.firstBytesEvent$)).add(r.loadedMetadata$.subscribe(this.params.output.loadedMetadataEvent$)).add(r.playing$.subscribe(this.params.output.firstFrameEvent$)).add(r.canplay$.subscribe(this.params.output.canplay$)).add(r.inPiP$.subscribe(this.params.output.inPiP$)).add(r.inFullscreen$.subscribe(this.params.output.inFullscreen$)).add(Zc(this.video).subscribe(this.params.output.elementVisible$)).add(this.params.desiredState.autoVideoTrackLimits.stateChangeStarted$.subscribe(({to:{max:e,min:t}})=>{this.dash.setAutoQualityLimits({max:e&&Ys(e),min:t&&Ys(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),R({m:`dlp.vse.s`}),this.params.desiredState.playbackState.setState(`stopped`);break;case`manifest_ready`:case`ready`:this.params.desiredState.playbackState.getTransition()?.to===`ready`&&(R({m:`dlp.vse.r`}),this.params.desiredState.playbackState.setState(`ready`));break;case`paused`:R({m:`dlp.vse.pa`}),this.params.desiredState.playbackState.setState(`paused`);break;case`playing`:R({m:`dlp.vse.pl`}),this.params.desiredState.playbackState.setState(`playing`);break;default:return Fs(e.to)}},n)).add(Ws(t.desiredState.playbackState.stateChangeStarted$,t.desiredState.seekState.stateChangeEnded$,t.desiredState.videoTrack.stateChangeStarted$,t.desiredState.autoVideoTrackSwitching.stateChangeStarted$,this.videoState.stateChangeEnded$,this.droppedFramesManager.onDroopedVideoFramesLimit$,Gs([`init`])).pipe(Rs(0)).subscribe(this.syncPlayback,n))}destroy(){R({m:`dlp.destroy`}),this.subscription.unsubscribe(),this.textTracksManager.destroy(),this.droppedFramesManager.destroy(),this.dash.destroy(),this.params.output.element$.next(void 0),Ga(this.video)}createLiveDashPlayer(){let e=new Nc({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&&Hs(t)?t:As(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;Is(t,`Representations missing`),this.dash.startPlay(t,n)}}setVideoTrack(e){let t=this.representations$.getValue().find(({track:t})=>t.id===e.id)?.representation;Is(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),R({m:`dlp.seek`,p:e,no:a,url:this.params.source.url}),this.dash.reinit(Qr(this.params.source.url,a)),r&&this.dash.pause(),this.liveOffset.resetTo(a,r)}}var tl=el;import{filter as nl,filterChanged as rl,isNonNullable as il}from"@vkontakte/videoplayer-shared/es2018";import{assertNever as al,assertNonNullable as ol,debounce as sl,ErrorCategory as cl,filter as ll,filterChanged as ul,fromEvent as dl,isNonNullable as fl,isNullable as pl,map as ml,merge as hl,observableFrom as gl,once as _l,Subscription as vl,throttle as yl}from"@vkontakte/videoplayer-shared/es2018";var bl=l(En(),1);import{videoSizeToQuality as xl}from"@vkontakte/videoplayer-shared/es2018";var Sl=({id:e,width:t,height:n,bitrate:r,fps:i,quality:a,streamId:o})=>{let s=(a?Vo(a):void 0)??xl({width:t,height:n});return s&&{id:e,quality:s,bitrate:r,size:{width:t,height:n},fps:i,streamId:o}},Cl=({id:e,bitrate:t})=>({id:e,bitrate:t}),wl=({language:e,label:t},{id:n,url:r,isAuto:i})=>({id:n,url:r,isAuto:i,type:`internal`,language:e,label:t}),Tl=({language:e,label:t,id:n,url:r,isAuto:i})=>({id:n,url:r,isAuto:i,type:`internal`,language:e,label:t}),El=({id:e,language:t,label:n,codecs:r,isDefault:i})=>({id:e,language:t,label:n,codec:bl.default(r.split(`.`),0),isDefault:i}),Dl=({id:e,language:t,label:n,hdr:r,codecs:i})=>({id:e,language:t,hdr:r,label:n,codec:bl.default(i.split(`.`),0)}),Ol=e=>e.type===`template`;class kl{constructor(t,n){e(this,`fov`,void 0),e(this,`orientation`,void 0),this.fov=t,this.orientation=n}}class Al{constructor(t,n){e(this,`options`,void 0),e(this,`camera`,void 0),e(this,`rotating`,!1),e(this,`fading`,!1),e(this,`lastTickTS`,0),e(this,`lastCameraTurn`,void 0),e(this,`lastCameraTurnTS`,0),e(this,`fadeStartSpeed`,null),e(this,`fadeCorrection`,void 0),e(this,`fadeTime`,0),e(this,`rotationSpeed`,void 0),this.camera=t,this.options=n,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={...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 jl=`./vertex_shader-xzkp5kyx.glsl`,Ml=`./fragment_shader-66qz233h.glsl`;class Nl{constructor(t,n,r){e(this,`container`,void 0),e(this,`sourceVideoElement`,void 0),e(this,`canvas`,void 0),e(this,`gl`,void 0),e(this,`params`,void 0),e(this,`frameWidth`,void 0),e(this,`frameHeight`,void 0),e(this,`viewportWidth`,void 0),e(this,`viewportHeight`,void 0),e(this,`videoInitialized`,!1),e(this,`program`,void 0),e(this,`videoTexture`,void 0),e(this,`vertexBuffer`,void 0),e(this,`textureMappingBuffer`,void 0),e(this,`camera`,void 0),e(this,`cameraRotationManager`,void 0),e(this,`videoElementDataLoadedFn`,void 0),e(this,`renderFn`,void 0),e(this,`active`,!1),this.container=t,this.sourceVideoElement=n,this.params=r,this.canvas=this.createCanvas();let i=this.canvas.getContext(`webgl`);if(!i)throw Error(`Could not initialize WebGL context`);this.gl=i,this.container.appendChild(this.canvas),this.camera=new kl(this.params.fov,this.params.orientation),this.cameraRotationManager=new Al(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(jl,this.gl.VERTEX_SHADER),n=this.createShader(Ml,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 Pl,now as Fl,once as Il,Subscription as Ll,ValueSubject as Rl,isNonNullable as zl,safeStorage as Bl,filterChanged as Vl}from"@vkontakte/videoplayer-shared/es2018";var Hl=(e,t,n)=>n*t+(1-n)*e,Ul=(e,t)=>e.reduce((e,t)=>e+t,0)/t,Wl=(e,t,n,r)=>{let i=0,a=n,o=Ul(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},Gl=`stalls_manager_metrics`,Kl=`stalls_manager_abr_params`,ql=`stalls_manager_default_tuning_abr_params`;class Jl{constructor(){e(this,`currentStallDuration$`,void 0),e(this,`videoLastDataObtainedTimestamp$`,void 0),e(this,`throughput$`,void 0),e(this,`rtt$`,void 0),e(this,`tuning`,void 0),e(this,`abrParams`,void 0),e(this,`duration`,void 0),e(this,`isSeeked$`,new Rl(!1)),e(this,`isBuffering$`,new Rl(!1)),e(this,`maxQualityLimit`,void 0),e(this,`lastUniqueVideoTrackSelected`,void 0),e(this,`currentStallsCount`,0),e(this,`sumStallsDuration`,0),e(this,`lastStallDuration`,0),e(this,`providerStartWatchingTimestamp`,0),e(this,`lastUniqueVideoTrackSelectedTimestamp`,0),e(this,`predictedThroughputWithoutData`,0),e(this,`qualityRestrictionTimer`,void 0),e(this,`subscription`,new Ll),e(this,`severeStallOccurred$`,new Rl(!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(Kl):{};return{...this.abrParams,...e}}set lastVideoTrackSelected(e){this.lastUniqueVideoTrackSelected?.id!==e.id&&(this.lastUniqueVideoTrackSelected=e,this.lastUniqueVideoTrackSelectedTimestamp=Fl(),this.currentStallsCount=0)}destroy(){window.clearTimeout(this.qualityRestrictionTimer),this.subscription.unsubscribe(),this.currentStallDuration$.getValue()!==0&&this.updateStallData();let e=(Fl()-this.providerStartWatchingTimestamp-this.sumStallsDuration)/1e3,t=this.sumStallsDuration;this.addStallInfoToHistory(e,t),this.updateStoredAbrParams()}resetStoredAbrParamsIfNeeded(){let{bitrateFactorAtEmptyBuffer:e,bitrateFactorAtFullBuffer:t,containerSizeFactor:n}={...this.getStoredData(ql)},{bitrateFactorAtEmptyBuffer:r,bitrateFactorAtFullBuffer:i,containerSizeFactor:a}={...this.abrParams};this.tuning.enabled&&e===r&&t===i&&n===a||(this.removeStoredData(Kl),this.setStoredData(ql,{bitrateFactorAtEmptyBuffer:r,bitrateFactorAtFullBuffer:i,containerSizeFactor:a}))}updateStoredAbrParams(){let e=[],t=this.getStoredData(Gl,`[]`);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(Gl,[]),this.setStoredData(Kl,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(Bl.get(e)??t)}setStoredData(e,t){Bl.set(e,JSON.stringify(t))}removeStoredData(e){Bl.remove(e)}addStallInfoToHistory(e,t){if(e<this.tuning.minTvtToBeCounted||e>this.tuning.maxTvtToBeCounted||e*1e3<t)return;let n=this.getStoredData(Gl,`[]`),r=t/e,i={tvt:e,stallsDuration:t,stallsDurationPerTvt:r,stallsDurationPerTvtSmoothed:n.length?Hl(n[n.length-1].stallsDurationPerTvtSmoothed,t/e,this.tuning.emaAlpha):r};n.push(i),n.length>this.tuning.stallsMetricsHistoryLength&&n.shift(),this.setStoredData(Gl,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(Il()).subscribe(e=>this.providerStartWatchingTimestamp=Fl())),this.subscription.add(this.currentStallDuration$.pipe(Vl()).subscribe(e=>{let{stallDurationNoDataBeforeQualityDecrease:t,stallCountBeforeQualityDecrease:n,resetQualityRestrictionTimeout:r,ignoreStallsOnSeek:i}=this.tuning;if(Pl(this.lastUniqueVideoTrackSelected)||i&&this.isSeeked$.getValue())return;let a=this.rtt$.getValue(),o=this.throughput$.getValue(),s=this.videoLastDataObtainedTimestamp$.getValue(),c=Fl(),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&&Fl()-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 Yl=Jl;import{combine as Xl,map as Zl,observeElementSize as Ql,Subscription as $l,ValueSubject as eu,noop as tu}from"@vkontakte/videoplayer-shared/es2018";class nu{constructor(){e(this,`subscription`,new $l),e(this,`pipSize$`,new eu(void 0)),e(this,`videoSize$`,new eu(void 0)),e(this,`elementSize$`,new eu(void 0)),e(this,`pictureInPictureWindowRemoveEventListener`,tu)}connect({observableVideo:e,video:t}){let n=e=>{let t=e.target;this.pipSize$.next({width:t.width,height:t.height})};this.subscription.add(Ql(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(Xl({videoSize:this.videoSize$,pipSize:this.pipSize$,inPip:e.inPiP$}).pipe(Zl(({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 ru,map as iu,once as au}from"@vkontakte/videoplayer-shared/es2018";var ou=({subscription:e,desiredState:t,videoElement$:n,observableVideo:r})=>{if(!P.browser.isSafari)return;let i=0,a=!1;e.add(t.volume.stateChangeStarted$.pipe(iu(()=>{let e=t.volume.getTransition(),r=n.getValue();return!r||!e?!1:!e.to.muted&&r.muted}),ru(e=>!!e),au()).subscribe(()=>{i=performance.now(),a=!0})),e.add(r.playbackRateState$.pipe(ru(()=>a),au()).subscribe(()=>{let e=n.getValue(),r=t.playbackRate.getState();e&&r!==e.playbackRate&&performance.now()-i<1e3&&(e.playbackRate=r)}))};class su{constructor(t){e(this,`scene3D`,void 0),e(this,`subscription`,new vl),e(this,`videoState`,new F(`stopped`)),e(this,`video`,void 0),e(this,`observableVideo`,null),e(this,`player`,void 0),e(this,`params`,void 0),e(this,`tracer`,void 0),e(this,`textTracksManager`,void 0),e(this,`droppedFramesManager`,new Kc),e(this,`stallsManager`,new Yl),e(this,`elementSizeManager`,new nu),e(this,`videoTracksMap`,new Map),e(this,`audioTracksMap`,new Map),e(this,`textTracksMap`,new Map),e(this,`videoStreamsMap`,new Map),e(this,`audioStreamsMap`,new Map),e(this,`videoTrackSwitchHistory`,new vs),e(this,`audioTrackSwitchHistory`,new vs),e(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`),N(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`),N(this.params.desiredState.playbackState,`paused`)):t===`playing`?(this.videoState.startTransitionTo(`playing`),this.playIfAllowed()):n?.to===`ready`&&N(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`&&N(this.params.desiredState.playbackState,`playing`);return;case`paused`:t===`playing`?(this.videoState.startTransitionTo(`playing`),this.playIfAllowed()):n?.to===`paused`&&N(this.params.desiredState.playbackState,`paused`);return;default:return al(e)}}}),e(this,`init3DScene`,e=>{if(this.scene3D)return;this.scene3D=new Nl(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)}),e(this,`destroy3DScene`,()=>{this.scene3D&&=(this.scene3D.destroy(),void 0)}),this.textTracksManager=new _o(t.source.url),this.params=t,this.video=Wa(t.container,t.tuning),this.tracer=t.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(Ps(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;pl(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:cl.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(){let{output:e,desiredState:t,observableVideo:n,genericErrorListener:r,connect:i}=this.getProviderSubscriptionInfo();this.subscription.add(this.params.output.availableVideoTracks$.pipe(ll(e=>!!e.length),_l()).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})}));let a=this.params.desiredState.seekState.stateChangeEnded$.pipe(ml(e=>e.to.state!==`none`),ul());this.stallsManager.init({isSeeked$:a,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$:n.isBuffering$,looped$:n.looped$,playing$:n.playing$,duration:this.video.duration}),i(n.ended$,e.endedEvent$),i(n.looped$,e.loopedEvent$),i(n.error$,e.error$),i(n.isBuffering$,e.isBuffering$),i(n.currentBuffer$,e.currentNativeBuffer$),i(n.playing$,e.firstFrameEvent$),i(n.canplay$,e.canplay$),i(n.inPiP$,e.inPiP$),i(n.inFullscreen$,e.inFullscreen$),i(n.loadedMetadata$,e.loadedMetadataEvent$),i(this.player.error$,e.error$),i(this.player.fetcherRecoverableError$,e.fetcherRecoverableError$),i(this.player.fetcherError$,e.fetcherError$),i(this.player.lastConnectionType$,e.httpConnectionType$),i(this.player.lastConnectionReused$,e.httpConnectionReused$),i(this.player.lastConnectionMetrics$,e.httpConnectionMetrics$),i(this.player.lastDownloadMetrics$,e.httpDownloadMetrics$),i(this.player.isLive$,e.isLive$),i(this.player.currentBuffer$,e.currentBuffer$),i(this.player.lastRequestFirstBytes$.pipe(ll(fl),_l()),e.firstBytesEvent$),i(this.stallsManager.severeStallOccurred$,e.severeStallOccurred$),i(this.videoState.stateChangeEnded$.pipe(ml(e=>e.to)),this.params.output.playbackState$),this.subscription.add(n.looped$.subscribe(()=>this.player.warmUpMediaSourceIfNeeded(),r)),this.subscription.add(n.seeked$.subscribe(e.seekedEvent$,r)),this.subscription.add(lo(this.video,t.isLooped,r)),this.subscription.add(n.volumeState$.subscribe(this.params.output.volume$,r)),ou({subscription:this.subscription,desiredState:t,videoElement$:this.params.output.element$,observableVideo:n}),this.subscription.add(uo(this.video,t.volume,n.volumeState$,r)),this.subscription.add(fo(this.video,t.playbackRate,n.playbackRateState$,r)),this.elementSizeManager.connect({video:this.video,observableVideo:n}),i(Zc(this.video,{threshold:this.params.tuning.autoTrackSelection.activeVideoAreaThreshold}),e.elementVisible$),this.subscription.add(n.playing$.subscribe(()=>{this.videoState.setState(`playing`),N(t.playbackState,`playing`),this.scene3D&&this.scene3D.play()},r)).add(n.pause$.subscribe(()=>{this.videoState.setState(`paused`),N(t.playbackState,`paused`)},r)).add(n.canplay$.subscribe(()=>{this.videoState.getState()===`playing`&&this.playIfAllowed()},r)),this.params.tuning.changePlaybackStateToPausedWhenEnded&&this.subscription.add(n.ended$.subscribe(()=>{this.videoState.setState(`paused`),N(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: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(ol(e,`Manifest not loaded or empty`),!this.params.tuning.isAudioDisabled){let t=[];for(let n of e.audio){t.push(El(n));let e=[];for(let t of n.representations){let r=Cl(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(Dl(t));let e=[];for(let n of t.representations){let r=Sl({...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=wl(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())},r));let o=hl(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$,dl(this.video,`progress`)).pipe(ll(()=>this.videoTracksMap.size>0)),{abrThrottle:s}=this.params.tuning.dash;s&&(o=o.pipe(yl(s))),this.subscription.add(o.subscribe(async()=>{let e=this.player.state$.getState(),n=this.player.state$.getTransition(),r=t.autoVideoTrackSwitching.getState();if(e!==`manifest_ready`&&e!==`running`||n)return;t.autoVideoTrackSwitching.getTransition()&&t.autoVideoTrackSwitching.setState(t.autoVideoTrackSwitching.getState());let i=this.selectVideoAudioRepresentations();if(!i)return;let[a,o]=i,s=[...this.videoTracksMap.keys()].find(e=>this.videoTracksMap.get(e)?.representation.id===a.id);fl(s)&&(this.stallsManager.lastVideoTrackSelected=s);let c=this.params.desiredState.autoVideoTrackLimits.getTransition();c&&this.params.output.autoVideoTrackLimits$.next(c.to),e===`manifest_ready`?await this.player.initRepresentations(a.id,o?.id,this.params.sourceHls):(await this.player.switchRepresentation(`video`,a.id,r),o&&await this.player.switchRepresentation(`audio`,o.id,r))},r)),this.subscription.add(t.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(ul()).subscribe(t=>{let n=[...this.videoTracksMap.entries()].find(([,{representation:e}])=>e.id===t);if(!n){e.currentVideoTrack$.next(void 0),e.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),e.currentVideoTrack$.next(r),e.currentVideoStream$.next(Dl(i))},r)),this.subscription.add(this.player.currentAudioRepresentation$.pipe(ul()).subscribe(t=>{let n=[...this.audioTracksMap.entries()].find(([,{representation:e}])=>e.id===t);if(!n){e.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),e.currentAudioStream$.next(El(i))},r)),this.subscription.add(this.player.currentVideoRepresentationInit$.subscribe(t=>{if(t?.is3dVideo&&this.params.tuning.spherical?.enabled)try{this.init3DScene(t),e.is3DVideo$.next(!0)}catch(t){e.warning$.next({id:`DashProvider`,message:`DashProvider could not initialize 3D-scene: ${t}`})}else this.destroy3DScene(),this.params.tuning.spherical?.enabled&&e.is3DVideo$.next(!1)},r)),this.subscription.add(this.player.currentVideoSegmentLength$.subscribe(e.currentVideoSegmentLength$,r)),this.subscription.add(this.player.currentAudioSegmentLength$.subscribe(e.currentAudioSegmentLength$,r)),this.textTracksManager.connect(this.video,t,e);let c=t.playbackState.stateChangeStarted$.pipe(ml(({to:e})=>e===`ready`),ul());this.subscription.add(hl(c,t.autoVideoTrackSwitching.stateChangeStarted$,this.player.state$.stateChangeEnded$,gl([`init`])).subscribe(()=>{let e=t.autoVideoTrackSwitching.getState(),n=t.playbackState.getState()===`ready`?this.params.tuning.dash.forwardBufferTargetPreload:e?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;this.player.setBufferTarget(n)})),this.subscription.add(hl(c,this.player.state$.stateChangeEnded$,gl([`init`])).subscribe(()=>this.player.setPreloadOnly(t.playbackState.getState()===`ready`)));let l=hl(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,gl([`init`])).pipe(sl(0));this.subscription.add(l.subscribe(this.syncPlayback,r))}selectVideoAudioRepresentations(){if(this.player.isStreamEnded)return;let e=this.params.tuning.useNewAutoSelectVideoTrack?ws:Cs,t=this.params.tuning.useNewAutoSelectVideoTrack?Ns:Ms,n=this.params.tuning.useNewAutoSelectVideoTrack?As:js,{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(){nc(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState(`paused`),N(this.params.desiredState.playbackState,`paused`,!0))},e=>this.params.output.error$.next({id:`ForcePlay`,message:`play() failed even with workarounds`,category:cl.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),Ga(this.video),this.tracer.end()}}var cu=l(In(),1),{NativeAbortSignal:lu,NativeAbortController:uu}=function(e){return{NativeAbortSignal:e.AbortSignal,NativeAbortController:e.AbortController}}(typeof self<`u`?self:global);function du(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 fu(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 pu{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 mu extends pu{constructor(){super(),this.listeners||pu.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 hu;return setTimeout(()=>t.abort(new DOMException(`This signal is timeout in ${e}ms`,`TimeoutError`)),e),t.signal}static any(e){let t=new hu;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 hu{constructor(){Object.defineProperty(this,`signal`,{value:new mu,writable:!0,configurable:!0})}abort(e){let t=fu(e),n=du(t);this.signal.reason=t,this.signal.dispatchEvent(n)}toString(){return`[object AbortController]`}}typeof Symbol<`u`&&Symbol.toStringTag&&(hu.prototype[Symbol.toStringTag]=`AbortController`,mu.prototype[Symbol.toStringTag]=`AbortSignal`);function gu(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 _u(e){typeof e==`function`&&(e={fetch:e});let{fetch:t,Request:n=t.Request,AbortController:r,__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL:i=!1}=e;if(!gu({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 z=typeof globalThis==`object`&&globalThis||typeof window==`object`&&window,vu=`fetch`in z&&gu({fetch:z.fetch,Request:z.Request,AbortController:z.AbortController}),yu=vu?_u({fetch:z.fetch,Request:z.Request,AbortController:z.AbortController}):void 0,bu=vu?yu.fetch:z.fetch;vu?yu.Request:z.Request;var B=vu?hu:z.AbortController;vu||z.AbortSignal;var xu=l(Gn(),1);import{ErrorCategory as Su}from"@vkontakte/videoplayer-shared/es2018";var Cu=e=>{if(!e)return{id:`EmptyResponse`,category:Su.PARSER,message:`Empty response`};if(e.length<=2&&e.match(/^\d+$/))return{id:`UVError#${e}`,category:Su.NETWORK,message:`UV Error ${e}`};let t=xu.default(e).substring(0,100).toLowerCase();if(t.startsWith(`<!doctype`)||t.startsWith(`<html>`)||t.startsWith(`<body>`)||t.startsWith(`<head>`))return{id:`UnexpectedHTML`,category:Su.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:Su.PARSER,message:`XML parsing error`}:{id:`XMLParserLogicError`,category:Su.PARSER,message:`Response is valid XML, but parser failed`}};import{abortable as wu,assertNonNullable as Tu,ErrorCategory as Eu,filter as Du,filterChanged as Ou,flattenObject as ku,fromEvent as Au,getTraceSubscriptionMethod as ju,getWindow as Mu,interval as Nu,isNonNullable as Pu,isNullable as Fu,map as Iu,merge as Lu,now as Ru,Subject as zu,Subscription as Bu,SubscriptionRemovable as Vu,ValueSubject as V}from"@vkontakte/videoplayer-shared/es2018";var Hu=e=>{let t=new URL(e);return t.searchParams.set(`quic`,`1`),t.toString()},Uu=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 Wu,assertNever as Gu,ErrorCategory as Ku,flattenObject as qu,fromEvent as Ju,getWindow as Yu,merge as Xu,now as Zu,Subject as Qu,Subscription as $u,suppressAbort as ed,ValueSubject as td}from"@vkontakte/videoplayer-shared/es2018";var nd=e=>{let t=new URL(e);return t.searchParams.set(`enable-subtitles`,`yes`),t.toString()};class rd{constructor({throughputEstimator:t,requestQuic:n,tracer:r,compatibilityMode:i=!1,useEnableSubtitlesParam:a=!1}){e(this,`throughputEstimator`,void 0),e(this,`requestQuic`,void 0),e(this,`tracer`,void 0),e(this,`manifestRequested`,new Qu),e(this,`manifestReceived`,new Qu),e(this,`firstBytesRequested`,new Qu),e(this,`firstBytesReceived`,new Qu),e(this,`lastConnectionType$`,new td(void 0)),e(this,`lastConnectionReused$`,new td(void 0)),e(this,`lastRequestFirstBytes$`,new td(void 0)),e(this,`lastConnectionMetrics$`,new td(void 0)),e(this,`lastDownloadMetrics$`,new td(void 0)),e(this,`recoverableError$`,new Qu),e(this,`error$`,new Qu),e(this,`abortAllController`,new B),e(this,`subscription`,new $u),e(this,`compatibilityMode`,void 0),e(this,`useEnableSubtitlesParam`,void 0),e(this,`performanceObserver`,null),e(this,`pendingConnectionMetrics`,new Map),e(this,`fetchManifest`,Wu(this.abortAllController.signal,async function*(e){let t=this.tracer.createComponentTracer(`FetchManifest`),n=e;this.requestQuic&&(n=Hu(n)),!this.compatibilityMode&&this.useEnableSubtitlesParam&&(n=nd(n)),this.trackRequestStart(n,performance.now());let r=Zu();this.manifestRequested.next();let i=yield this.doFetch(n,{signal:this.abortAllController.signal}).catch(ed);if(i){let a=Zu();t.log(`success`,qu({url:n,message:`Request successfully executed`})),t.end(),this.manifestReceived.next(),this.onHeadersReceived(i.headers);let o=i.headers.get(`content-length`),s=0;o&&(s=parseInt(o,10));let c=await i.text();if((!o||isNaN(s)||s<=0)&&(s=new TextEncoder().encode(c).length),s>0){let t=a-r,n=s/(t/1e3)*8/1024,i={bytes:s,speed:n,url:e};this.lastDownloadMetrics$.next(i)}return c}else return t.error(`error`,qu({url:n,message:`No data in request manifest`})),t.end(),null}.bind(this))),e(this,`__polyfill_abortableFetch_en8bc70g47j3`,Wu(this.abortAllController.signal,async function*(e,{rangeMethod:t=this.compatibilityMode?0:1,range:n,onProgress:r,priority:i=`auto`,signal:a,measureThroughput:o=!0,isLowLatency:s=!1,bufferOptimisation:c=!1}={}){let l=e,u=new Headers,d=this.tracer.createComponentTracer(`Fetch`);if(n)switch(t){case 0:u.append(`Range`,`bytes=${n.from}-${n.to}`);break;case 1:{let e=new URL(l,Yu().location.href);e.searchParams.append(`bytes`,`${n.from}-${n.to}`),l=e.toString();break}default:Gu(t)}this.requestQuic&&(l=Hu(l));let f=this.abortAllController.signal,p;if(a){let e=new B;if(p=Xu(Ju(this.abortAllController.signal,`abort`),Ju(a,`abort`)).subscribe(()=>{try{e.abort()}catch(e){ed(e)}}),this.subscription.add(p),this.abortAllController.signal.aborted||a.aborted)try{e.abort()}catch(e){ed(e)}f=e.signal}let m=0,h=Zu();d.log(`startRequest`,qu({url:l,priority:i,rangeMethod:t,range:n,isLowLatency:s,requestStartedAt:h})),this.trackRequestStart(l,performance.now()),this.firstBytesRequested.next();let g=yield this.doFetch(l,{priority:i,headers:u,signal:f}),_=Zu();if(!g)return d.error(`error`,{message:`No response in request`}),d.end(),p?.unsubscribe(),null;if(this.throughputEstimator?.addRawRtt(_-h),!g.ok||!g.body){p?.unsubscribe();let e=`Fetch error ${g.status}: ${g.statusText}`;return d.error(`error`,{message:e}),d.end(),Promise.reject(Error(`Fetch error ${g.status}: ${g.statusText}`))}if(this.onHeadersReceived(g.headers),!r&&!o){p?.unsubscribe();let e=Zu(),t={requestStartedAt:h,requestEndedAt:e,duration:e-h};return d.log(`endRequest`,qu(t)),d.end(),g.arrayBuffer()}let v=g.body;if(o){let e;[v,e]=g.body.tee(),this.throughputEstimator?.trackStream(e,s)}let y=v.getReader(),b,x=parseInt(g.headers.get(`content-length`)??``,10);Number.isFinite(x)&&(b=x),!b&&n&&(b=n.to-n.from+1);let S=b?new Uint8Array(b):new Uint8Array,C=!1,w=e=>{p?.unsubscribe(),C=!0,ed(e)},T=Wu(f,async function*({done:e,value:t}){if(m===0&&(this.lastRequestFirstBytes$.next(Zu()-h),this.firstBytesReceived.next()),f.aborted){p?.unsubscribe();return}if(!e&&t){if(c&&b)S.set(t,m),m+=t.byteLength;else{let e=new Uint8Array(S.length+t.length);e.set(S),e.set(t,S.length),S=e,m+=t.byteLength}r?.(new DataView(S.buffer),m),yield y?.read().then(T,w)}}.bind(this));yield y?.read().then(T,w),p?.unsubscribe();let E=Zu(),D={failed:C,requestStartedAt:h,requestEndedAt:E,duration:E-h};if(C)return d.error(`endRequest`,qu(D)),d.end(),null;if(m>0){let t=E-h,n=m/(t/1e3)*8/1024,r={bytes:m,speed:n,url:e};this.lastDownloadMetrics$.next(r)}return d.log(`endRequest`,qu(D)),d.end(),S.buffer}.bind(this))),e(this,`fetchByteRangeRepresentation`,Wu(this.abortAllController.signal,async 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}}.bind(this))),e(this,`fetchTemplateRepresentation`,Wu(this.abortAllController.signal,async 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=>({...e,networkStatus:`none`,bufferStatus:`none`,status:`none`,size:void 0}));return{initMetadata:null,initDataView:new DataView(r),segments:i}}.bind(this))),this.throughputEstimator=t,this.requestQuic=n,this.compatibilityMode=i,this.tracer=r.createComponentTracer(`Fetcher`),this.useEnableSubtitlesParam=a,Yu().PerformanceObserver&&this.setupPerformanceObserver()}onHeadersReceived(e){let{type:t,reused:n}=Uu(e);this.lastConnectionType$.next(t),this.lastConnectionReused$.next(n)}setupPerformanceObserver(){this.performanceObserver=new(Yu()).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 Yu().navigator))return`unknown`;let e=Yu().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:Ku.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})}async fetchRepresentation(e,t,n=`auto`){let{type:r}=e;switch(r){case`byteRange`:return this.fetchByteRangeRepresentation(e,t,n)??null;case`template`:return this.fetchTemplateRepresentation(e,n)??null;default:Gu(r)}}destroy(){this.abortAllController.abort(),this.subscription.unsubscribe(),this.performanceObserver&&=(this.performanceObserver.disconnect(),null),this.pendingConnectionMetrics.clear(),this.tracer.end()}async doFetch(e,t){let n=await bu(e,t);if(n.ok)return n;let r=await n.text(),i=parseInt(r);if(!isNaN(i))switch(i){case 1:this.recoverableError$.next({id:`VideoDataLinkExpiredError`,message:`Video data links have expired`,category:Ku.FATAL,httpCode:n.status,UVBackendErrorCode:r});break;case 8:this.recoverableError$.next({id:`VideoDataLinkBlockedForFloodError`,message:`Url blocked for flood`,category:Ku.FATAL,httpCode:n.status,UVBackendErrorCode:r});break;case 18:this.recoverableError$.next({id:`VideoDataLinkIllegalIpChangeError`,message:`Client IP has changed`,category:Ku.FATAL,httpCode:n.status,UVBackendErrorCode:r});break;case 21:this.recoverableError$.next({id:`VideoDataLinkIllegalHostChangeError`,message:`Request HOST has changed`,category:Ku.FATAL,httpCode:n.status,UVBackendErrorCode:r});break;default:this.error$.next({id:`GeneralVideoDataFetchError`,message:`Generic video data fetch error (${i})`,category:Ku.FATAL,httpCode:n.status,UVBackendErrorCode:r})}}}var id=l(er(),1),ad=l(et(),1),od=l(sr(),1),sd=l(xn(),1),cd=l(We(),1),ld=l(Xe(),1),ud=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 ld.default([`6E`,`7A`,`F4`],i)}}return!1};import{isNonNullable as dd,isNullable as fd}from"@vkontakte/videoplayer-shared/es2018";var pd=e=>{if(e.includes(`/`)){let t=e.split(`/`);return parseInt(t[0])/parseInt(t[1])}else return parseFloat(e)},md=e=>{try{let t=hd(),{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 hd(){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 QI=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},ot=(s,e)=>{let t=s;t=(0,Nd.default)(t,"$$","$");let i={RepresentationID:e.representationId,Number:e.segmentNumber,Bandwidth:e.bandwidth,Time:e.segmentTime};for(let[r,a]of(0,zI.default)(i)){let n=new RegExp(`\\$${r}(?:%0(\\d+)d)?\\$`,"g");t=(0,Nd.default)(t,n,(o,u)=>WI(a)?o:WI(u)?a:(0,GI.default)(a,parseInt(u,10),"0"))}return t},zo=(s,e)=>{var D,A,V,M,q,Y,j,E,P,I,w,F,O,ct,lt,K,Te,Ie,Ee,Fe,Tt,It,hi,tr,fi,jp,Wp,Qp,zp,Gp,Yp,Kp,Xp,Jp,Zp,eh,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;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(et=>{var ee,mi;return(mi=(ee=et.textContent)==null?void 0:ee.trim())!=null?mi:""}),o=(D=(0,YI.default)(n,0))!=null?D:"",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,v;u&&(v={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 g,S=a.getAttribute("mediaPresentationDuration"),T=[...a.getElementsByTagName("Period")],y=T.reduce((et,ee)=>({...et,[ee.id]:ee.children}),{}),x=T.reduce((et,ee)=>({...et,[ee.id]:ee.getAttribute("duration")}),{});S?g=QI(S):(0,Fd.default)(x).filter(et=>et).length&&!u?g=(0,Fd.default)(x).reduce((et,ee)=>{var mi;return et+((mi=QI(ee))!=null?mi:0)},0):m&&(g=parseInt(m,10));let R=0,C=(V=(A=a.getAttribute("profiles"))==null?void 0:A.split(","))!=null?V:[];for(let et of T.map(ee=>ee.id))for(let ee of y[et]){let mi=(M=ee.getAttribute("id"))!=null?M:"id"+(R++).toString(10),ea=(q=ee.getAttribute("mimeType"))!=null?q:"",Vu=(Y=ee.getAttribute("codecs"))!=null?Y:"",_u=(j=ee.getAttribute("contentType"))!=null?j:ea==null?void 0:ea.split("/")[0],Ww=(P=(E=ee.getAttribute("profiles"))==null?void 0:E.split(","))!=null?P:[],Ph=(w=jI((I=ee.getAttribute("lang"))!=null?I:""))!=null?w:{},nn=(ct=(O=(F=ee.querySelector("Label"))==null?void 0:F.textContent)==null?void 0:O.trim())!=null?ct:void 0,Qw=ee.querySelectorAll("Representation"),zw=ee.querySelector("SegmentTemplate"),Gw=(K=(lt=ee.querySelector("Role"))==null?void 0:lt.getAttribute("value"))!=null?K:void 0,ir=_u,ce={id:mi,language:Ph.language,isDefault:Gw==="main",label:nn,codecs:Vu,hdr:ir==="video"&&Od(Vu),mime:ea,representations:[]};for(let J of Qw){let Nt=(Te=J.getAttribute("lang"))!=null?Te:void 0,on=(Ee=(Ie=nn!=null?nn:ee.getAttribute("label"))!=null?Ie:J.getAttribute("label"))!=null?Ee:void 0,un=(It=(Tt=(Fe=J.querySelector("BaseURL"))==null?void 0:Fe.textContent)==null?void 0:Tt.trim())!=null?It:"",bi=new URL(un||o,e).toString(),Ft=(hi=J.getAttribute("mimeType"))!=null?hi:ea,cn=(fi=(tr=J.getAttribute("codecs"))!=null?tr:Vu)!=null?fi:"",ln;if(_u==="text"){let Ut=J.getAttribute("id")||"",dn=((jp=Ph.privateuse)==null?void 0:jp.includes("x-auto"))||Ut.includes("_auto"),gi=J.querySelector("SegmentTemplate");if(gi){let ta={representationId:(Wp=J.getAttribute("id"))!=null?Wp:void 0,bandwidth:(Qp=J.getAttribute("bandwidth"))!=null?Qp:void 0},pn=parseInt((zp=J.getAttribute("bandwidth"))!=null?zp:"",10)/1e3,hn=(Yp=parseInt((Gp=gi.getAttribute("startNumber"))!=null?Gp:"",10))!=null?Yp:1,rr=parseInt((Kp=gi.getAttribute("timescale"))!=null?Kp:"",10),Ou=(Xp=gi.querySelectorAll("SegmentTimeline S"))!=null?Xp:[],ar=gi.getAttribute("media");if(!ar)continue;let fn=[],mn=0,bn="",sr=0,ia=hn,Pe=0;for(let tt of Ou){let vi=parseInt((Jp=tt.getAttribute("d"))!=null?Jp:"",10),ze=parseInt((Zp=tt.getAttribute("r"))!=null?Zp:"",10)||0,qt=parseInt((eh=tt.getAttribute("t"))!=null?eh:"",10);Pe=Number.isFinite(qt)?qt:Pe;let Si=vi/rr*1e3,Ht=Pe/rr*1e3;for(let dt=0;dt<ze+1;dt++){let jt=ot(ar,{...ta,segmentNumber:ia.toString(10),segmentTime:(Pe+dt*vi).toString(10)}),nr=(Ht!=null?Ht:0)+dt*Si,aa=nr+Si;ia++,fn.push({time:{from:nr,to:aa},url:jt})}Pe+=(ze+1)*vi,mn+=(ze+1)*Si}sr=Pe/rr*1e3,bn=ot(ar,{...ta,segmentNumber:ia.toString(10),segmentTime:Pe.toString(10)});let ra={time:{from:sr,to:1/0},url:bn},Et={type:"template",baseUrl:bi,segmentTemplateUrl:ar,initUrl:"",totalSegmentsDurationMs:mn,segments:fn,nextSegmentBeyondManifest:ra,timescale:rr};ln={id:Ut,kind:"text",segmentReference:Et,profiles:[],duration:g,bitrate:pn,mime:"",codecs:"",width:0,height:0,isAuto:dn}}else ln={id:Ut,isAuto:dn,kind:"text",url:bi}}else{let Ut=(ih=(th=J.getAttribute("contentType"))!=null?th:Ft==null?void 0:Ft.split("/")[0])!=null?ih:_u,dn=(ah=(rh=ee.getAttribute("profiles"))==null?void 0:rh.split(","))!=null?ah:[],gi=parseInt((sh=J.getAttribute("width"))!=null?sh:"",10),ta=parseInt((nh=J.getAttribute("height"))!=null?nh:"",10),pn=parseInt((oh=J.getAttribute("bandwidth"))!=null?oh:"",10)/1e3,hn=(uh=J.getAttribute("frameRate"))!=null?uh:"",rr=(ch=J.getAttribute("quality"))!=null?ch:void 0,Ou=hn?HI(hn):void 0,ar=(lh=J.getAttribute("id"))!=null?lh:"id"+(R++).toString(10),fn=Ut==="video"?`${ta}p`:Ut==="audio"?`${pn}Kbps`:cn,mn=`${ar}@${fn}`,bn=[...C,...Ww,...dn],sr,ia=J.querySelector("SegmentBase"),Pe=(dh=J.querySelector("SegmentTemplate"))!=null?dh:zw;if(ia){let Et=(hh=(ph=J.querySelector("SegmentBase Initialization"))==null?void 0:ph.getAttribute("range"))!=null?hh:"",[tt,vi]=Et.split("-").map(jt=>parseInt(jt,10)),ze={from:tt,to:vi},qt=(fh=J.querySelector("SegmentBase"))==null?void 0:fh.getAttribute("indexRange"),[Si,Ht]=qt?qt.split("-").map(jt=>parseInt(jt,10)):[],dt=qt?{from:Si,to:Ht}:void 0;sr={type:"byteRange",url:bi,initRange:ze,indexRange:dt}}else if(Pe){let Et={representationId:(mh=J.getAttribute("id"))!=null?mh:void 0,bandwidth:(bh=J.getAttribute("bandwidth"))!=null?bh:void 0},tt=parseInt((gh=Pe.getAttribute("timescale"))!=null?gh:"",10),vi=(vh=Pe.getAttribute("initialization"))!=null?vh:"",ze=Pe.getAttribute("media"),qt=(yh=parseInt((Sh=Pe.getAttribute("startNumber"))!=null?Sh:"",10))!=null?yh:1,Si=ot(vi,Et);if(!ze)throw new ReferenceError("No media attribute in SegmentTemplate");let Ht=(Th=Pe.querySelectorAll("SegmentTimeline S"))!=null?Th:[],dt=[],jt=0,nr="",aa=0;if(Ht.length){let gn=qt,it=0;for(let or of Ht){let pt=parseInt((Ih=or.getAttribute("d"))!=null?Ih:"",10),yi=parseInt((Eh=or.getAttribute("r"))!=null?Eh:"",10)||0,vn=parseInt((wh=or.getAttribute("t"))!=null?wh:"",10);it=Number.isFinite(vn)?vn:it;let Nu=pt/tt*1e3,Fu=it/tt*1e3;for(let Sn=0;Sn<yi+1;Sn++){let Kw=ot(ze,{...Et,segmentNumber:gn.toString(10),segmentTime:(it+Sn*pt).toString(10)}),kh=(Fu!=null?Fu:0)+Sn*Nu,Xw=kh+Nu;gn++,dt.push({time:{from:kh,to:Xw},url:Kw})}it+=(yi+1)*pt,jt+=(yi+1)*Nu}aa=it/tt*1e3,nr=ot(ze,{...Et,segmentNumber:gn.toString(10),segmentTime:it.toString(10)})}else if(WB(g)){let it=parseInt((xh=Pe.getAttribute("duration"))!=null?xh:"",10)/tt*1e3,or=Math.ceil(g/it),pt=0;for(let yi=1;yi<or;yi++){let vn=ot(ze,{...Et,segmentNumber:yi.toString(10),segmentTime:pt.toString(10)});dt.push({time:{from:pt,to:pt+it},url:vn}),pt+=it}aa=pt,nr=ot(ze,{...Et,segmentNumber:or.toString(10),segmentTime:pt.toString(10)})}let Yw={time:{from:aa,to:1/0},url:nr};sr={type:"template",baseUrl:bi,segmentTemplateUrl:ze,initUrl:Si,totalSegmentsDurationMs:jt,segments:dt,nextSegmentBeyondManifest:Yw,timescale:tt}}else throw new ReferenceError("Unknown MPD segment referencing type");if(!Ut||!Ft)continue;let ra={video:"video",audio:"audio",text:"text"}[Ut];if(!ra)continue;ir||(ir=ra),ln={id:mn,kind:ra,segmentReference:sr,profiles:bn,duration:g,bitrate:pn,mime:Ft,codecs:cn,width:gi,height:ta,fps:Ou,quality:rr}}ce.language||(ce.language=Nt),ce.label||(ce.label=on),ce.mime||(ce.mime=Ft),ce.codecs||(ce.codecs=cn),ce.hdr||(ce.hdr=ir==="video"&&Od(cn)),ce.representations.push(ln)}if(ir){let J=r[ir].find(Nt=>Nt.id===ce.id);if(J&&ce.representations.every(Nt=>Nt.segmentReference.type==="template"))for(let Nt of J.representations){let on=ce.representations.find(Ft=>Ft.id===Nt.id);if(!on)continue;let un=on.segmentReference,bi=Nt.segmentReference;bi.segments.push(...un.segments),bi.nextSegmentBeyondManifest=un.nextSegmentBeyondManifest}else r[ir].push(ce)}}return{duration:g,streams:r,baseUrls:n,live:v}};var Ko=_(Ke(),1),Ud=_(De(),1);import{assertNever as Xo}from"@vkontakte/videoplayer-shared/es2018";var Go=(a=>(a.VP9="vp9",a.AV1="av1",a.NONE="none",a.SMOOTH="smooth",a.POWER_EFFICIENT="power_efficient",a))(Go||{});var Yo=s=>{let{webmDecodingInfo:e}=B.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:Xo(s)}},KI=({webmCodec:s,androidPreferredFormat:e,iosPreferredFormat:t,preferMultiStream:i})=>{let r=[...i?["DASH_STREAMS"]:[],...Yo(s),"DASH_SEP","DASH_ONDEMAND",...i?[]:["DASH_STREAMS"]],a=[...i?["DASH_STREAMS"]:[],"DASH_SEP","DASH_ONDEMAND",...i?[]:["DASH_STREAMS"]];if(B.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",...Yo(s),"HLS","HLS_ONDEMAND"];case"dash_any_webm":return[...Yo(s),"MPEG",...a,"HLS","HLS_ONDEMAND"];case"dash_sep":return["DASH_SEP","MPEG",...Yo(s),...a,"HLS","HLS_ONDEMAND"];default:Xo(e)}if(B.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:Xo(t)}return[...r,"HLS","HLS_ONDEMAND","MPEG"]},XI=({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=B.device.isMac&&B.browser.isSafari;if(B.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:Xo(s)}else B.video.nativeHlsSupported&&!u&&!B.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"]},qd=s=>s?["HLS_LIVE","HLS_LIVE_CMAF","DASH_LIVE_CMAF"]:["DASH_WEBM","DASH_WEBM_AV1","DASH_SEP","DASH_ONDEMAND","HLS","HLS_ONDEMAND","MPEG"],Jo=s=>{if(s.size===0)return;if(s.size===1){let t=s.values().next();return(0,Ko.default)(t.value.split("."),0)}for(let t of s){let i=(0,Ko.default)(t.split("."),0);if(i==="opus"||i==="vp09"||i==="av01")return i}let e=s.values().next();return(0,Ko.default)(e.value.split("."),0)},Zo=s=>{let e=s.map(i=>ti(i)),{codecs:t}=B.video;return GB().filter(i=>{if((0,Ud.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})},eu=s=>{let e=s.map(i=>ti(i)),{codecs:t}=B.video;return YB().filter(i=>{if((0,Ud.default)(e,i))switch(i){case"opus":return t.opus;case"mp4a":return t.aac;default:return!1}else return!1})},ti=s=>s.split(".")[0].replace("0",""),GB=()=>["av1","vp9","hev1","avc1"],YB=()=>["opus","mp4a"];var dE=_(Ke(),1);var KB=(s,e={})=>{let i=e.timeout||1,r=performance.now();return pe.setTimeout(()=>{s({get didTimeout(){return e.timeout?!1:performance.now()-r-1>i},timeRemaining(){return Math.max(0,1+(performance.now()-r))}})},1)},XB=s=>pe.clearTimeout(s),JI=s=>typeof s=="function"&&(s==null?void 0:s.toString().endsWith("{ [native code] }")),ZI=!JI(pe.requestIdleCallback)||!JI(pe.cancelIdleCallback),qi=ZI?KB:pe.requestIdleCallback,Hi=ZI?XB:pe.cancelIdleCallback;import{abortable as Gd,assertNonNullable as yt,ErrorCategory as vV,fromEvent as SV,getExponentialDelay as yV,getWindow as lE,isHigher as TV,isNonNullable as le,isNullable as Se,once as IV,Subject as EV,Subscription as wV,ValueSubject as Rs}from"@vkontakte/videoplayer-shared/es2018";var eE=_(Ke(),1);var tu=s=>s.valid,Q=class{constructor(e,t){this.cursor=0;this.source=e,this.boxParser=t,this.children=[];let i=this.readUint32();this.type=this.readString(4),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 Nr=class extends Q{};import{assertNever as JB}from"@vkontakte/videoplayer-shared/es2018";var rs=class extends Q{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:JB(e)}}};var as=class extends Q{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 ss=class extends Q{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var re=class extends Q{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 ns=class extends re{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 os=class extends Q{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var us=class extends Q{constructor(e,t){super(e,t),this.data=this.content}};var ji=class extends re{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 cs=class extends Q{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var ls=class extends Q{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var ds=class extends re{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 ps=class extends re{constructor(e,t){super(e,t),this.valid&&(this.poseYawDegrees=this.readUint32(),this.posePitchDegrees=this.readUint32(),this.poseRollDegrees=this.readUint32())}};var hs=class extends re{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 fs=class extends Q{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var ms=class extends re{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 bs=class extends Q{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var gs=class extends Q{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var vs=class extends re{constructor(e,t){super(e,t),this.valid&&(this.sequenceNumber=this.readUint32())}};var Ss=class extends Q{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var ys=class extends re{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 Ts=class extends re{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 Is=class extends re{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 Es=class extends Q{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var ws=class extends re{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 xs=class extends Q{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 eV={ftyp:as,moov:ss,mvhd:ns,moof:os,mdat:us,sidx:ji,trak:cs,mdia:fs,mfhd:vs,tkhd:ms,traf:Ss,tfhd:ys,tfdt:Ts,trun:Is,minf:bs,sv3d:ls,st3d:ds,prhd:ps,proj:gs,equi:hs,uuid:rs,stbl:Es,stsd:ws,avc1:xs,unknown:Nr},$t=class s{constructor(e={}){this.options={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||!tu(n))break;t.push(n),i+=n.size}return t}createBox(e,t){let i=eV[e];return i?new i(t,new s):new Nr(t,new s)}};var ii=class{constructor(e){this.index={},this.indexBoxLevel(e)}indexBoxLevel(e){e.forEach(t=>{var i,r,a;tu(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 iV=new TextDecoder("ascii"),rV=s=>iV.decode(new DataView(s.buffer,s.byteOffset+4,4))==="ftyp",aV=s=>{let e=new ji(s,new $t),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})},sV=(s,e)=>{let i=new $t().parse(s),r=new ii(i),a=r.findAll("moof"),n=e?r.findAll("uuid"):r.findAll("mdat");if(!(n.length&&a.length))return null;let o=a[0],u=n[n.length-1],c=o.source.byteOffset,l=u.source.byteOffset-o.source.byteOffset+u.size;return new DataView(s.buffer,c,l)},nV=s=>{let t=new $t().parse(s),i=new ii(t),r={},a=i.findAll("uuid"),n=(0,eE.default)(a,-1);return n?{serverDataReceivedTimestamp:n.userData.received,serverDataPreparedTime:n.userData.received}:r},oV=s=>{var r;let t=new $t().parse(s);return(r=new ii(t).find("sidx"))==null?void 0:r.timescale},uV=(s,e)=>{let i=new $t().parse(s),a=new ii(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},cV=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 $t().parse(s),r=new ii(i);if(r.find("sv3d")){e.is3dVideo=!0;let n=r.find("st3d");n&&(e.stereoMode=n.stereoMode);let o=r.find("prhd");o&&(e.projectionData.pose.yaw=o.poseYawDegrees,e.projectionData.pose.pitch=o.posePitchDegrees,e.projectionData.pose.roll=o.poseRollDegrees);let u=r.find("equi");u&&(e.projectionData.bounds.top=u.projectionBoundsTop,e.projectionData.bounds.right=u.projectionBoundsRight,e.projectionData.bounds.bottom=u.projectionBoundsBottom,e.projectionData.bounds.left=u.projectionBoundsLeft)}return e},tE={validateData:rV,parseInit:cV,getIndexRange:()=>{},parseSegments:aV,parseFeedableSegmentChunk:sV,getChunkEndTime:uV,getServerLatencyTimestamps:nV,getTimescaleFromIndex:oV};var ks=_(De(),1);import{assertNonNullable as Hd,isNonNullable as sE,isNullable as dV}from"@vkontakte/videoplayer-shared/es2018";import{assertNever as lV}from"@vkontakte/videoplayer-shared/es2018";var iE={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"}},rE=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=Ps(s,t),r=i in iE,a=r?iE[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=Ps(u),l=c*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}},Ps=(s,e=s.byteLength)=>{switch(e){case 1:return s.getUint8(0);case 2:return s.getUint16(0);case 3:return s.getUint8(0)*2**16+s.getUint16(1);case 4:return s.getUint32(0);case 5:return s.getUint8(0)*2**32+s.getUint32(1);case 6:return s.getUint16(0)*2**32+s.getUint32(2);case 7:{let t=s.getUint8(0)*281474976710656+s.getUint16(1)*4294967296+s.getUint32(3);if(Number.isSafeInteger(t))return t}case 8:throw new ReferenceError("Int64 is not supported")}return 0},ut=(s,e)=>{switch(e){case"int":return s.getInt8(0);case"uint":return Ps(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:lV(e)}},Wi=(s,e)=>{let t=0;for(;t<s.byteLength;){let i=new DataView(s.buffer,s.byteOffset+t),r=rE(i);if(!e(r))return;r.type==="master"&&Wi(r.value,e),t=r.value.byteOffset-s.byteOffset+r.valueSize}},aE=s=>{if(s.getUint32(0)!==440786851)return!1;let e,t,i,r=rE(s);return Wi(r.value,({tag:a,type:n,value:o})=>(a===17143?e=ut(o,n):a===17026?t=ut(o,n):a===17029&&(i=ut(o,n)),!0)),(e===void 0||e<=1)&&t!==void 0&&t==="webm"&&(i===void 0||i<=2)};var nE=[357149030,290298740,374648427,174,224,30320,30321,30322,272869232,524531317,475249515,423732329,307544935],pV=[231,22612,22743,167,171,163,160,175],hV=s=>{let e,t,i,r,a=!1,n=!1,o=!1,u,c,d=!1,l=0;return Wi(s,({tag:p,type:h,value:f,valueSize:m})=>{if(p===21419){let v=ut(f,h);c=Ps(v)}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=ut(f,h):p===17545?r=ut(f,h):p===21420&&c===475249515?u=ut(f,h):p===374648427?Wi(f,({tag:v,type:g,value:S})=>v===30321?(d=ut(S,g)===1,!1):!0):a&&n&&(0,ks.default)(nE,p)&&(o=!0),!o}),Hd(e,"Failed to parse webm Segment start"),Hd(t,"Failed to parse webm Segment end"),Hd(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}}}},fV=s=>{if(dV(s.cuesSeekPosition))return;let e=s.segmentStart+s.cuesSeekPosition,t=1024*1024;return{from:e,to:e+t}},mV=(s,e)=>{let t=!1,i=!1,r=o=>sE(o.time)&&sE(o.position),a=[],n;return Wi(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=ut(c,u));break;case 183:break;case 241:n&&(n.position=ut(c,u));break;default:t&&(0,ks.default)(nE,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}}})},bV=s=>{let e=0,t=!1;try{Wi(s,i=>i.tag===524531317?i.tagSize<=s.byteLength?(e=i.tagSize,!1):(e+=i.tagHeaderSize,!0):(0,ks.default)(pV,i.tag)?(e+i.tagSize<=s.byteLength&&(e+=i.tagSize,t||(t=(0,ks.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},oE={validateData:aE,parseInit:hV,getIndexRange:fV,parseSegments:mV,parseFeedableSegmentChunk:bV};var Qi=s=>{let e=/^(.+)\/([^;]+)(?:;.*)?$/.exec(s);if(e){let[,t,i]=e;if(t==="audio"||t==="video")switch(i){case"webm":return oE;case"mp4":return tE}}throw new ReferenceError(`Unsupported mime type ${s}`)};var jd=_(Ke(),1);import{videoSizeToQuality as gV}from"@vkontakte/videoplayer-shared/es2018";var ri=({id:s,width:e,height:t,bitrate:i,fps:r,quality:a,streamId:n})=>{var u;let o=(u=a?Xt(a):void 0)!=null?u:gV({width:e,height:t});return o&&{id:s,quality:o,bitrate:i,size:{width:e,height:t},fps:r,streamId:n}},As=({id:s,bitrate:e})=>({id:s,bitrate:e}),uE=({language:s,label:e},{id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:s,label:e}),cE=({language:s,label:e,id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:s,label:e}),Wd=({id:s,language:e,label:t,codecs:i,isDefault:r})=>({id:s,language:e,label:t,codec:(0,jd.default)(i.split("."),0),isDefault:r}),Qd=({id:s,language:e,label:t,hdr:i,codecs:r})=>({id:s,language:e,hdr:i,label:t,codec:(0,jd.default)(r.split("."),0)}),zd=s=>"url"in s,We=s=>s.type==="template";var Fr=class{constructor(e,t,i,{fetcher:r,tuning:a,getCurrentPosition:n,getCurrentStallDuration:o,manifest:u}){this.error$=new EV;this.playingRepresentation$=new Rs(void 0);this.playingRepresentationInit$=new Rs(void 0);this.currentSegmentLength$=new Rs(0);this.onLastSegment$=new Rs(!1);this.fullyBuffered$=new Rs(!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 ie;this.downloadAbortController=new ie;this.subscription=new wV;this.startWith=Gd(this.destroyAbortController.signal,async function*(e){let t=this.representations.get(e);yt(t,`Cannot find representation ${e}`),this.playingRepresentationId=e,this.downloadingRepresentationId=e,this.containerParser=Qi(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);yt(i,"No init buffer for starting representation"),yt(r,"No segments for starting representation"),await this.nativeBufferManager.addInitSegment(i),this.playingRepresentation$.next(this.playingRepresentationId),this.playingRepresentationInit$.next(a)}.bind(this));this.switchTo=Gd(this.destroyAbortController.signal,async function*(e,t=!0){var l;if(Se(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);yt(r,`No such representation ${e}`),yt(i,`No such representation ${this.downloadingRepresentationId}`),yield this.loadInitIfNeeded(r,"high");let a=this.initData.get(r.id),n=this.segments.get(r.id);yt(a,"No init buffer for switching representation"),yt(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 yt(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=Gd(this.downloadAbortController.signal,async function*(){let e=yV(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(t=>{let i=lE();this.loadByteRangeSegmentsTimeoutId=i.setTimeout(t,e),this.subscription.add(SV(i,"online").pipe(IV()).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]))}async seek(e){await this.abort(),await this.clearBuffer(),await this.maintain(e)}async maintain(e=this.getCurrentPosition()){Se(e)||(await this.maintainPlaybackBuffer(e),await 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=le(e)&&le(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}}async abort(){this.abortDownload(),await 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(Se(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,dE.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=lE();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_hjbkfbahm51l)for(let t of this.idleCallbacks.values())e.__polyfill_cancelIdleCallback_hjbkfbahm51l(t);this.idleCallbacks.clear(),e.clearTimeout(this.loadByteRangeSegmentsTimeoutId)}forceSwitchCondition(e,t){let i=!0;if(this.kind==="video"){let r=ri(e),a=ri(t);i=le(r)&&le(a)&&TV(a.quality,r.quality)}else if(this.kind==="audio"){let r=As(e),a=As(t);i=le(r==null?void 0:r.bitrate)&&le(a==null?void 0:a.bitrate)&&a.bitrate>r.bitrate}return i}async clearBuffer(){this.bufferClearingMutex=!0,await 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 ie,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=[]}async abortNativeBuffer(){this.abortNativeBufferMutex=!0;let e=this.playingRepresentationId&&this.initData.get(this.playingRepresentationId),t=e instanceof ArrayBuffer?e:void 0,i=await this.nativeBufferManager.abortBuffer(t);return this.abortNativeBufferMutex=!1,this.maintainNativeBufferMutex=!1,i}async loadInits(e){await this.loadInit(e,"high",!0);for(let[t,i]of this.representations)this.idleCallbacks.set(i.id,qi(async r=>await this.loadInitIfNeeded(i,"low",!1)))}async loadInitIfNeeded(e,t="auto",i=!1){let r=this.initDataPromises.get(e.id),a;this.initData.has(e.id)&&this.segments.has(e.id)?a=Promise.resolve():le(r)?a=r:a=this.loadInit(e,t,i),await a}async loadInit(e,t="auto",i=!1){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=await n)!=null?r:{};if(this.initDataPromises.delete(e.id),Se(u)||Se(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:vV.WTF,message:"loadInit threw",thrown:a})}}async maintainNativeBuffer(){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(Se(e)||Se(i)||this.maintainNativeBufferMutex||this.abortNativeBufferMutex||this.bufferClearingMutex||this.switchMutex||this.preloadOnly)return;this.maintainNativeBufferMutex=!0;let r=this.bufferPlaybackQueue.find(v=>this.withinInterval(e,v.segment.time)),a=this.bufferPlaybackQueue.find(v=>v.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;le(n)&&le(a)&&le(r)&&this.playingRepresentationId!==a.representationId&&this.withinAppendInterval(e,a.segment.time)&&(a===r||r.segment.bufferStatus==="fed")&&(await this.abortNativeBuffer(),await this.nativeBufferManager.addInitSegment(n,this.downloadAbortController.signal),this.playingRepresentationId=a.representationId,this.playingRepresentation$.next(this.playingRepresentationId)),le(a)&&this.withinAppendInterval(e,a.segment.time)&&p&&(a.segment.loadedBytes===a.segment.size&&a.segment.bufferStatus==="none"?await this.appendSegmentFully(a,u):await this.appendSegmentPartially(a,u)),le(o)&&this.withinRemoveInterval(e,o.segment.time)&&await this.removeSegment(o,u),this.pruneVirtualBuffer(e),this.maintainNativeBufferMutex=!1}async maintainPlaybackBuffer(e){yt(this.downloadingRepresentationId);let t=this.segments.get(this.downloadingRepresentationId),i=this.representations.get(this.downloadingRepresentationId);if(Se(t)||Se(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);le(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)),await this.processCachedItems();let a=this.selectItemsToLoad();await this.loadItems(a,i),this.maintainPlaybackBufferMutex=!1}actualizeLastSegmentInfo(e){var r;let t=this.segments.get((r=this.downloadingRepresentationId)!=null?r:"");if(Se(t)||t.length===0)return;let i=t[(t==null?void 0:t.length)-1];Se(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){yt(this.downloadingRepresentationId);let i=this.getPlaybackBufferState(),r,a;le(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}async processCachedItems(){let e=[...this.downloadingBufferItems];for(;e.length&&e[0].segment.networkStatus==="downloaded";)await this.onDownloadItem(e[0]),e.shift()}withinInterval(e,{from:t,to:i},r=this.tuning.dash.bufferTolerance){return le(e)?e+r>=t&&e<i:!1}withinAppendInterval(e,{from:t,to:i}){let{actionTimeShiftFromSegment:r}=this.tuning.dash;return le(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 le(e)?e-i>t:!1}async appendSegmentFully(e,t){if(Se(e.segment.data))return;e.segment.feedingBytes=e.segment.size,await this.nativeBufferManager.append(e.segment.data,t)&&(e.segment.fedBytes=e.segment.size,this.onItemFullyAppended(e))}async appendSegmentPartially(e,t){if(Se(e.segment.data)||Se(e.segment.loadedBytes)||Se(e.segment.feedingBytes)||Se(e.segment.fedBytes)||Se(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,await 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"}async removeSegment(e,t){let{from:i,to:r}=e.segment.time,a=(r-i)/4;await this.nativeBufferManager.remove(0,r-a,t)&&(e.segment.fedBytes=0,e.segment.feedingBytes=0,e.segment.bufferStatus="none",this.bufferPlaybackQueue.shift())}async onDownloadItem(e){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||le(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)le(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())le(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 xV,isNonNullable as PV,isNullable as pE,now as hE,isAbortError as kV}from"@vkontakte/videoplayer-shared/es2018";var iu=class extends Fr{constructor(e,t,i,r){super(e,t,i,r)}async loadItems(e,t,i="auto"){let{signal:r}=this.downloadAbortController;if(r.aborted||!e.length)return;let{url:a,...n}=this.prepareFetchParams(e,t);if(this.failedDownloads&&await this.waitExponentialDownloadDelay(),!r.aborted)try{await this.fetcher.fetch(a,{...n,priority:i}),this.lastDataObtainedTimestampMs=hE(),this.failedDownloads=0}catch(o){this.abortDownloadingItems(),kV(o)||(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(ve(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:async(o,u)=>{if(!i.aborted)try{this.lastDataObtainedTimestampMs=hE(),await 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:xV.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:c})}},signal:i,bufferOptimisation:this.tuning.dash.fetcherBufferOptimisation}}async onSomeDataLoaded({downloadingItems:e,dataView:t,representationId:i,globalFrom:r,loaded:a,signal:n}){let o=this.representations.get(i);if(!(!this.downloadingBufferItems.length||pE(o)||pE(r)||n.aborted))for(let u of e){let{segment:c}=u,d=c.byte.from-r,l=c.byte.to-r,p=l-d+1,h=d<a,f=l<=a;c.size=p,h&&(c.networkStatus==="downloading"&&c.bufferStatus==="none"&&f?(c.data=new DataView(t.buffer,t.byteOffset+d,p),this.currentVirtualBufferSize+=c.size,this.onItemFullyDownloaded(u),c.loadedBytes=Math.min(p,a-d),await this.onDownloadItem(u)):PV(c.feedingBytes)&&this.tuning.dash.enableSubSegmentBufferFeeding&&c.networkStatus==="downloading"&&(c.loadedBytes=Math.min(p,a-d),f&&(this.currentVirtualBufferSize+=c.size,this.onItemFullyDownloaded(u)),c.loadedBytes>c.feedingBytes&&(c.data=new DataView(t.buffer,t.byteOffset+d,c.loadedBytes),await this.onDownloadItem(u))))}}updateRepresentationBaseUrl(e,t){if(ve(e.segmentReference))throw new Error("Representation is not byte range type");e.segmentReference.url=t}};import{ErrorCategory as AV,isAbortError as RV,isNullable as Yd,now as fE}from"@vkontakte/videoplayer-shared/es2018";var Ur=class extends Fr{constructor(e,t,i,r){super(e,t,i,r)}async loadItems(e,t,i="auto"){let{signal:r}=this.downloadAbortController;if(r.aborted||!e.length)return;let{url:a,...n}=this.prepareFetchParams(e,t);if(this.failedDownloads&&await this.waitExponentialDownloadDelay(),!r.aborted)try{let o=await this.fetcher.fetch(a,{...n,priority:i});if(this.lastDataObtainedTimestampMs=fE(),Yd(o))return;let u=e[0],c=new DataView(o);u.segment.size=c.byteLength,u.segment.loadedBytes=c.byteLength,u.segment.data=c,this.onItemFullyDownloaded(u),await this.onDownloadItem(u),this.failedDownloads=0}catch(o){this.abortDownloadingItems(),RV(o)||(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:async(n,o)=>{if(!r.aborted)try{this.lastDataObtainedTimestampMs=fE(),await this.onSomeDataLoaded({downloadingItems:e,dataView:n,loaded:o,signal:r,representationId:t.id})}catch(u){this.error$.next({id:"SegmentFeeding",category:AV.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:u})}},signal:r,bufferOptimisation:this.tuning.dash.fetcherBufferOptimisation}}getFetchUrl(e,t){if(!ve(t.segmentReference))throw new Error("Representation is not template type");return new URL(e[0].segment.url,t.segmentReference.baseUrl)}async onSomeDataLoaded({downloadingItems:e,dataView:t,representationId:i,loaded:r,signal:a}){let n=e[0],{segment:o}=n,u=this.representations.get(i);!this.downloadingBufferItems.length||Yd(u)||Yd(o.feedingBytes)||o.networkStatus!=="downloading"||a.aborted||(o.loadedBytes=r,o.loadedBytes>o.feedingBytes&&this.tuning.dash.enableSubSegmentBufferFeeding&&(o.data=new DataView(t.buffer,t.byteOffset,o.loadedBytes),await this.onDownloadItem(n)))}updateRepresentationBaseUrl(e,t){if(!ve(e.segmentReference))throw new Error("Representation is not template type");e.segmentReference.baseUrl=t}};var Kd=_(Ka(),1),bE=_(Ke(),1);import{assertNonNullable as $V,ErrorCategory as MV,isNullable as Mt,ValueSubject as mE}from"@vkontakte/videoplayer-shared/es2018";var ru=class extends Ur{constructor(t,i,r,a){super(t,i,r,a);this.currentLiveSegmentServerLatency$=new mE(0);this.currentLowLatencySegmentLength$=new mE(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,Kd.default)(t.streams[this.kind],o=>o.representations);for(let o of i){if(Mt(o)||!ve(o.segmentReference))return;let u=o.segmentReference.segments.map(h=>({...h,networkStatus:"none",bufferStatus:"none",size:void 0})),c=100,d=(r=this.segments.get(o.id))!=null?r:[],l=(n=(a=(0,bE.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;$V(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,Kd.default)(i,n=>n.representations).find(n=>n.id===this.downloadingRepresentationId);if(Mt(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(Mt(this.playingRepresentationId))return 0;let t=(r=this.representations.get(this.playingRepresentationId))==null?void 0:r.segmentReference;return Mt(t)||!ve(t)?0:this.getActualLiveStartingSegments(t)[0].time.from+this.tuning.dash.bufferTolerance}prepareFetchParams(t,i){return{...super.prepareFetchParams(t,i),isLowLatency:this.isActiveLowLatency()}}async onSomeDataLoaded({downloadingItems:t,...i}){await super.onSomeDataLoaded({downloadingItems:t,...i}),this.isActiveLowLatency()&&this.updateLowLatencyItemTime(t[0])}onItemFullyDownloaded(t){if(super.onItemFullyDownloaded(t),Mt(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(Mt(t.segment.data)||Mt(r)||!ve(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(!ve(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=ot(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}async loadInit(t,i="auto",r=!1){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=await o)!=null?a:{};if(this.initDataPromises.delete(t.id),Mt(c)||Mt(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:MV.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 $s=class{static getBufferManager(e,t,i,r){var a;return(a=r.manifest)!=null&&a.live?new ru(e,t,i,r):ve(i[0].segmentReference)?new Ur(e,t,i,r):new iu(e,t,i,r)}};import{ErrorCategory as DV,fromEvent as BV,isNullable as qr,Subject as VV,Subscription as _V}from"@vkontakte/videoplayer-shared/es2018";import{assertNever as LV,ErrorCategory as gE,Subject as vE}from"@vkontakte/videoplayer-shared/es2018";var CV=18,SE=!1;try{SE=B.browser.isSafari&&!!B.browser.safariVersion&&B.browser.safariVersion<=CV}catch(s){console.error(s)}var Xd=class{constructor(e,t=!1){this.bufferFull$=new vE;this.error$=new vE;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:gE.VIDEO_PIPELINE,message:"Buffer appending or removal failed",thrown:t})}};this.buffer=e,this.isAbortFixEnabled=t,this.buffer.addEventListener("updateend",this.completeTask)}async append(e,t){return t&&t.aborted?!1:new Promise(i=>{let r={operation:"append",data:e,signal:t,callback:i};this.queue.push(r),this.pull()})}async remove(e,t,i){return i&&i.aborted?!1:new Promise(r=>{let a={operation:"remove",from:e,to:t,signal:i,callback:r};this.queue.unshift(a),this.pull()})}async abort(e){return new Promise(t=>{let i,r=a=>{this.abortRequested=!1,t(a)};SE&&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:gE.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:LV(t)}}},yE=Xd;var ai=(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 Ms=class{constructor(e){this.error$=new VV;this.subscription=new _V;this.mediaSource=e}init(e,t,i=!1){this.sourceBuffer=this.mediaSource.addSourceBuffer(`${e}; codecs="${t}"`),this.sourceBufferTaskQueue=new yE(this.sourceBuffer,i),this.subscription.add(this.sourceBufferTaskQueue.error$.subscribe(r=>this.error$.next(r))),this.subscription.add(BV(this.sourceBuffer,"error").subscribe(()=>this.error$.next({id:"SourceBuffer",category:DV.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)}async clear(e){let t=this.getBufferState();if(qr(t))return Promise.resolve(!1);let i=!0;await this.sourceBufferTaskQueue.abort();for(let r of t)i&&(i=await this.sourceBufferTaskQueue.remove(r.from,r.to,e));return i}warmUpMediaSource(){!qr(this.sourceBuffer)&&!this.sourceBuffer.updating&&(this.sourceBuffer.mode="segments")}getBufferState(){if(qr(this.sourceBuffer)||!te(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 qr(this.sourceBuffer)||!te(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length||qr(e)?0:ai(this.sourceBuffer.buffered,e)}async abortBuffer(e){return qr(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 au=(s,e)=>{s.video.forEach(t=>{let i=t.representations.filter(({fps:r,height:a,codecs:n})=>{var u;let o=(u=e.find(([c,d,l])=>c===`${a}p`&&ti(n)===l))==null?void 0:u[1];return o&&Number.isInteger(o)&&r&&Number.isInteger(r)?r<=o:!0});t.representations=i})};var qV=["timeupdate","progress","play","seeked","stalled","waiting"],wE=["timeupdate","progress","loadeddata","playing","seeked"],Hr=class{constructor(e){this.element=null;this.manifestUrlString="";this.source=null;this.manifest=null;this.bufferManagers=[];this.nativeBufferManagers=[];this.subscription=new EE;this.subscriptionRemovable=new UV;this.representationSubscription=new EE;this.forceEnded$=new ni;this.destroyController=new ie;this.state$=new H("none");this.currentVideoRepresentation$=new Z(void 0);this.currentVideoRepresentationInit$=new Z(void 0);this.currentAudioRepresentation$=new Z(void 0);this.currentVideoSegmentLength$=new Z(0);this.currentAudioSegmentLength$=new Z(0);this.error$=new ni;this.manifestRequested=new ni;this.manifestReceived=new ni;this.firstBytesRequested=new ni;this.firstBytesReceived=new ni;this.lastConnectionType$=new Z(void 0);this.lastConnectionReused$=new Z(void 0);this.lastRequestFirstBytes$=new Z(void 0);this.lastConnectionMetrics$=new Z(void 0);this.lastDownloadMetrics$=new Z(void 0);this.currentLiveTextRepresentation$=new Z(null);this.isLive$=new Z(!1);this.isActiveLive$=new Z(!1);this.isLowLatency$=new Z(!1);this.liveDuration$=new Z(0);this.liveSeekableDuration$=new Z(0);this.liveAvailabilityStartTime$=new Z(0);this.liveStreamStatus$=new Z(void 0);this.currentBuffer$=new Z({from:0,to:0});this.bufferLength$=new Z(0);this.nativeBufferLength$=new Z(0);this.liveLatency$=new Z(void 0);this.liveLoadBufferLength$=new Z(0);this.livePositionFromPlayer$=new Z(0);this.currentStallDuration$=new Z(0);this.videoLastDataObtainedTimestamp$=new Z(0);this.fetcherRecoverableError$=new ni;this.fetcherError$=new ni;this.initRepresentations=TE(this.destroyController.signal,async function*(e,t,i){var a;this.tracer.log("initRepresentationsStart",su({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(),Lt(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=TE(this.destroyController.signal,async function*(){try{return yield this.fetcher.fetchManifest(this.manifestUrlString)}catch(e){Cs(this.manifest)&&!this.bufferLength$.getValue()&&this.error$.next({id:"LoadManifest",category:zi.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 jo({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()}async initManifest(e,t,i){var r;this.tracer.log("initManifest"),this.state$.startTransitionTo("manifest_ready"),this.element=e,this.manifestUrlString=this.prepareManifestUrlString(t,i),this.manifest=await this.updateManifest(),(r=this.manifest)!=null&&r.streams.video.length?this.state$.setState("manifest_ready"):this.error$.next({id:"NoRepresentations",category:zi.PARSER,message:"No playable video representations"})}initBuffer(){var t,i;Lt(this.element),this.state$.setState("running"),this.subscription.add(Ds(...qV.map(r=>Gi(this.element,r)),Gi(Ls(),"online"),IE(this.tuning.dash.tickMaintainInterval)).subscribe(()=>this.tick(),r=>this.error$.next({id:"DashVKPlayer",category:zi.WTF,message:"Internal logic error",thrown:r})));let e=[...(i=(t=this.source)==null?void 0:t.activeSourceBuffers)!=null?i:[]];this.subscription.add(Ds(...e.map(r=>Gi(r,"updateend"))).subscribe(r=>this.reinitDecoderIfNeeded())),this.subscription.add(Gi(this.element,"waiting").subscribe(r=>{this.stallWatchdogSubscription&&(this.stallWatchdogSubscription.unsubscribe(),this.subscriptionRemovable.remove(this.stallWatchdogSubscription)),this.stallWatchdogSubscription=IE(this.tuning.dash.stallWatchdogInterval).subscribe(()=>this.stallWatchdogIntervalCallback(),a=>this.error$.next({id:"StallWatchdogCallback",category:zi.NETWORK,message:"Can't restore DASH after stall.",thrown:a})),this.subscriptionRemovable.add(this.stallWatchdogSubscription)}))}async switchRepresentation(e,t,i=!1){let r={video:this.videoBufferManager,audio:this.audioBufferManager,text:null}[e];return r==null?void 0:r.switchTo(t,i)}async seek(e,t=!1){var r,a,n,o,u;Lt(this.element),Lt(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,B.browser.isSafari?(await((o=this.audioBufferManager)==null?void 0:o.seek(i)),await this.videoBufferManager.seek(i)):(await this.videoBufferManager.seek(i),await((u=this.audioBufferManager)==null?void 0:u.seek(i))),this.tracer.log("seek",su({requestedPosition:e,forcePrecise:t,position:i}))}warmUpMediaSourceIfNeeded(e=(t=>(t=this.element)==null?void 0:t.currentTime)()){si(this.element)&&si(this.source)&&si(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&&Ls().clearTimeout(this.timeoutSourceOpenId),this.destroyController.abort(),this.fetcher.destroy(),this.stop(),si(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"}async reinitDecoderIfNeeded(e=!1){var r,a;let t=(a=(r=this.videoNativeBufferManager)==null?void 0:r.getBufferState())!=null?a:[];if(Cs(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?await this.seek(i):this.element.currentTime=this.element.currentTime)}async stallWatchdogIntervalCallback(){Lt(this.element),Lt(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(await 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`)}await this.restoreAfterDeepStall(i),this.tracer.log("stallIntervalCallback",su(i))}isStallExceeded(e){var p,h,f,m,v,g,S,T;let{crashOnStallTimeout:t,crashOnStallTWithoutDataTimeout:i}=this.tuning.dash,r=FV(),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=(g=(v=this.videoBufferManager)==null?void 0:v.getForwardPlaybackBufferDuration())!=null?g:0,c=(T=(S=this.audioBufferManager)==null?void 0:S.getForwardPlaybackBufferDuration())!=null?T:0,d=si(this.videoBufferManager)&&u<a&&r-n>i,l=si(this.audioBufferManager)&&c<a&&r-o>i;return(d||l)&&e>i||e>=t}async updateManifest(){this.tracer.log("updateManifestStart",{manifestUrl:this.manifestUrlString});let e=await this.fetchManifest();if(Cs(e))return null;let t=this.parseManifest(e);if(!t)return null;let i=this.getResultManifest(t);return this.tracer.log("updateManifestEnd",su(i)),i}parseManifest(e){var t;try{return zo(e!=null?e:"",this.manifestUrlString)}catch(i){let r=(t=Fo(e))!=null?t:{id:"ManifestParsing",category:zi.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=He())==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=eu(l),d=a[0]),o==="video"&&(r=Zo(l),this.forceVideoCodec&&(0,xE.default)(r,this.forceVideoCodec)?d=this.forceVideoCodec:d=r[0]),d&&(t[o]=c.filter(({codecs:p})=>ti(p)===d))}else{let l=new Set(c.map(({codecs:p})=>p));d=Jo(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);B.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&&au(t,f)}}let n={...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){Lt(this.manifest),Lt(this.element);let a=c=>{this.representationSubscription.add(Gi(c,"error").pipe(Jd(d=>{var l;return!!((l=this.element)!=null&&l.played.length)})).subscribe(d=>{this.error$.next({id:"VideoSource",category:zi.VIDEO_PIPELINE,message:"Unexpected video source error",thrown:d})}))};this.source=Vn();let n=Ls().document,o=n.createElement("source");if(a(o),o.src=URL.createObjectURL(this.source),this.element.appendChild(o),mr())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 Ms(this.source),this.videoBufferManager=$s.getBufferManager("video",this.videoNativeBufferManager,u,e),this.bufferManagers=[this.videoBufferManager],this.nativeBufferManagers=[this.videoNativeBufferManager],si(i)){this.audioNativeBufferManager=new Ms(this.source);let c=this.manifest.streams.audio.reduce((d,l)=>[...d,...l.representations],[]);this.audioBufferManager=$s.getBufferManager("audio",this.audioNativeBufferManager,c,e),this.bufferManagers.push(this.audioBufferManager),this.nativeBufferManagers.push(this.audioNativeBufferManager)}}async waitStreamToOpen(){if(this.isStreamNotOpen){let e=this.tuning.dash.sourceOpenTimeout>=0;await new Promise(t=>{var i;e&&(this.timeoutSourceOpenId=Ls().setTimeout(()=>{if(this.isStreamNotOpen){t();return}this.error$.next({id:"OpenOfStream",category:zi.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&&Ls().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(Ds(...this.bufferManagers.map(e=>e.error$)).subscribe(this.error$)),Lt(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(Ds(...wE.map(e=>Gi(this.element,e))).pipe(Zd(e=>{var t;return(t=this.videoBufferManager)==null?void 0:t.getPlaybackBufferState()}),Jd(si),Zd(({from:e,to:t})=>({from:e/1e3,to:t/1e3}))).subscribe(this.currentBuffer$)),this.representationSubscription.add(Ds(...wE.map(e=>Gi(this.element,e))).pipe(Zd(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)}),OV()).subscribe(this.bufferLength$)),this.representationSubscription.add(this.nativeBufferLength$.pipe(Jd(e=>e>this.tuning.dash.bufferEmptinessTolerance)).subscribe(e=>this.stopStallWatchdogSubscription()))}initTracerSubscription(){let e=NV(this.tracer.error.bind(this.tracer));this.subscription.add(this.error$.subscribe(e("error")))}async tick(){var r,a,n;if(Cs(this.element)||Cs(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),await this.videoBufferManager.maintain(e),await((n=this.audioBufferManager)==null?void 0:n.maintain(e))}};import{assertNonNullable as nu,combine as HV,ErrorCategory as jV,filter as ep,filterChanged as WV,fromEvent as QV,isNonNullable as zV,map as tp,merge as Bs}from"@vkontakte/videoplayer-shared/es2018";var ou=class extends Hr{constructor(e){super(e)}prepareManifestUrlString(e,t){return e}initRepresentationSubscriptions(){super.initRepresentationSubscriptions(),this.initDisableStallWatchdogSubscription(),this.initEndOfVideoSubscription()}setSourceDuration(){var t;nu(this.manifest),nu(this.source);let e=[(t=this.manifest.duration)!=null?t:0,...(0,ip.default)((0,ip.default)([...this.manifest.streams.audio,...this.manifest.streams.video],i=>i.representations),i=>{let r=[];return i.duration&&r.push(i.duration),ve(i.segmentReference)&&i.segmentReference.totalSegmentsDurationMs&&r.push(i.segmentReference.totalSegmentsDurationMs),r})];this.source.duration=Math.max(...e)/1e3}async restoreAfterDeepStall(e){var i,r;nu(this.element);let t=this.element.currentTime*1e3;await Promise.all([(i=this.videoBufferManager)==null?void 0:i.maintain(t),(r=this.audioBufferManager)==null?void 0:r.maintain(t)]),e.position=t}initDisableStallWatchdogSubscription(){nu(this.element);let e=Bs(QV(this.element,"ended"),this.forceEnded$),t=this.nativeBufferLength$.pipe(ep(i=>i>this.tuning.dash.bufferEmptinessTolerance));this.representationSubscription.add(Bs(e,t).subscribe(i=>this.stopStallWatchdogSubscription()))}initEndOfVideoSubscription(){let e=Bs(...this.bufferManagers.map(a=>a.fullyBuffered$)).pipe(tp(()=>this.bufferManagers.every(a=>a.fullyBuffered$.getValue()))),t=Bs(...this.bufferManagers.map(a=>a.onLastSegment$)).pipe(tp(()=>this.bufferManagers.some(a=>a.onLastSegment$.getValue()))),i=HV({allBuffersFull:e,someBufferEnded:t}).pipe(WV(),tp(({allBuffersFull:a,someBufferEnded:n})=>a&&n),ep(a=>a)),r=()=>{var a;try{(a=this.source)==null||a.endOfStream()}catch(n){this.error$.next({id:"EndOfStream",category:jV.VIDEO_PIPELINE,message:"Failed to end MediaSource stream",thrown:n})}};this.representationSubscription.add(Bs(this.forceEnded$,i).pipe(ep(a=>zV(this.source)&&this.source.readyState==="open"&&Array.from(this.source.sourceBuffers).every(n=>!n.updating))).subscribe(r))}};var Vs=class extends Oi{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(YV(),GV(a=>KV(a))).subscribe(a=>{let n=this.player.calculateDurationFromSegments(a);n&&this.params.output.duration$.next(n/1e3)},r))}getPlayer(){return new ou({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 sp,merge as ME,filter as LE,filterChanged as CE,isNullable as np,map as DE,ValueSubject as op,isNonNullable as a_}from"@vkontakte/videoplayer-shared/es2018";import{isNullable as XV,ValueSubject as PE}from"@vkontakte/videoplayer-shared/es2018";var oi=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 PE(e.initial),this.debounced$=new PE(e.initial);let t=(i=e.label)!=null?i:"value"+Math.random().toString(16).substring(2,6);this.rawSeries$=new $e(`raw_${t}`),this.smoothedSeries$=new $e(`smoothed_${t}`),this.reportedSeries$=new $e(`reported_${t}`),this.rawSeries$.next(e.initial),this.smoothedSeries$.next(e.initial),this.reportedSeries$.next(e.initial)}next(e){let t=0,i=0;for(let o=0;o<this.pastMeasures.length;o++)this.pastMeasures[o]!==void 0&&(t+=(this.pastMeasures[o]-this.smoothed)**2,i++);this.takenMeasures=i,t/=i;let r=Math.sqrt(t),a=this.smoothed+this.params.deviationFactor*r,n=this.smoothed-this.params.deviationFactor*r;this.pastMeasures[this.measuresCursor]=e,this.measuresCursor=(this.measuresCursor+1)%this.pastMeasures.length,this.rawSeries$.next(e),this.updateSmoothedValue(e),this.smoothed$.next(this.smoothed),this.smoothedSeries$.next(this.smoothed),!(this.smoothed>a||this.smoothed<n)&&(XV(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 uu=class extends oi{constructor(e){super(e),this.slow=this.fast=e.initial}updateSmoothedValue(e){this.slow=Rt(this.slow,e,this.params.emaAlphaSlow),this.fast=Rt(this.fast,e,this.params.emaAlphaFast);let t=this.params.fastDirection>0?Math.max:Math.min;this.smoothed=t(this.slow,this.fast)}};var cu=class extends oi{constructor(e){super(e),this.emaSmoothed=e.initial}updateSmoothedValue(e){let t=gd(this.pastMeasures,this.takenMeasures);this.emaSmoothed=Rt(this.emaSmoothed,e,this.params.emaAlpha);let i=sT(this.pastMeasures,this.takenMeasures,this.measuresCursor-1,this.params.basisTrendChangeCount);this.smoothed=i?this.emaSmoothed:t}};var lu=class extends oi{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?Rt(this.smoothed,t,this.params.emaAlpha):t}};var Ct=class{static getSmoothedValue(e,t,i){return i.type==="TwoEma"?new uu({initial:e,emaAlphaSlow:i.emaAlphaSlow,emaAlphaFast:i.emaAlphaFast,changeThreshold:i.changeThreshold,fastDirection:t,deviationDepth:i.deviationDepth,deviationFactor:i.deviationFactor,label:"throughput"}):new cu({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 lu({initial:e,label:"liveEdgeDelay",...t})}};import{assertNonNullable as Yi,combine as Os,ErrorCategory as du,filter as pu,filterChanged as rp,fromEvent as kE,interval as t_,isNonNullable as i_,isNullable as AE,map as ap,now as RE,throttle as r_}from"@vkontakte/videoplayer-shared/es2018";var jr=(s,e)=>{s&&s.playbackRate!==e&&(s.playbackRate=e)};import{isNullable as JV,ValueSubject as ZV}from"@vkontakte/videoplayer-shared/es2018";var _s=class s{constructor(e,t){this.currentRepresentation$=new ZV(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(!JV(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({...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&&ve(t.segmentReference))}};var hu=class extends Hr{constructor(t){super(t);this.liveStreamEndTimestamp=0;this.liveWasInterrupted=!1;this.liveBuffer=Ct.getLiveBufferSmoothedValue(this.tuning.dashCmafLive.lowLatency.maxTargetOffset,{...t.tuning.dashCmafLive.lowLatency.bufferEstimator})}async seek(t){Yi(this.element),this.updateManifestUrlWithTimeOffset(t),this.manifest=await this.updateManifest(),await this.forcePositionToRepresentationInitialTime()}initBuffer(){super.initBuffer(),this.forcePositionToRepresentationInitialTime()}async forcePositionToRepresentationInitialTime(){var r;let t=this.videoBufferManager,i=(r=t==null?void 0:t.getRepresentationInitialTime())!=null?r:0;await super.seek(i,!1)}async tick(){var i,r,a;await super.tick();let t=((r=(i=this.element)==null?void 0:i.currentTime)!=null?r:0)*1e3;(a=this.liveTextManager)==null||a.maintain(t)}setSourceDuration(){Yi(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)}async restoreAfterDeepStall(t){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=await this.updateManifest(),await this.forcePositionToRepresentationInitialTime()):this.seek(u).catch(c=>{this.error$.next({id:"stallIntervalCallback",category:du.VIDEO_PIPELINE,message:"stallIntervalCallback failed",thrown:c})})}}async updateManifest(){var d,l;let t=await super.updateManifest();if(AE(t))return null;if(AE(t.live))return this.error$.next({id:"ManifestParsing",category:du.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:du.VIDEO_PIPELINE,message:"seekLive after stream restore failed",thrown:h})})}return t}prepareManifestUrlString(t,i){return ue(t,i,2)}updateManifestUrlWithTimeOffset(t){let i=this.liveStreamStatus$.getValue()!=="active"?RE()-this.liveStreamEndTimestamp:0,r=this.normalizeLiveOffset(t+i);this.isActiveLive$.next(r===0),this.manifestUrlString=ue(this.manifestUrlString,r,2)}createBuffers(t,i,r,a){Yi(this.manifest),super.createBuffers(t,i,r,a),_s.isSupported(this.manifest.streams.text)&&!this.isLowLatency$.getValue()&&(this.liveTextManager=new _s(this.manifest.streams.text,t))}initRepresentationSubscriptions(){Yi(this.element),Yi(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),i_(this.liveTextManager)&&this.representationSubscription.add(this.liveTextManager.currentRepresentation$.subscribe(this.currentLiveTextRepresentation$))}initStreamDurationOnPauseSubscription(){Yi(this.element);let{liveUpdateInterval:t}=this.tuning.dash,i=()=>t_(t).subscribe(async r=>{let a=zt(this.manifestUrlString,2);this.manifestUrlString=ue(this.manifestUrlString,a+t,2),this.liveStreamStatus$.getValue()==="active"&&(this.manifest=await this.updateManifest())});this.representationSubscription.add(kE(this.element,"pause").subscribe(r=>{this.livePauseWatchdogSubscription=i(),this.representationSubscription.add(this.livePauseWatchdogSubscription)})),this.representationSubscription.add(kE(this.element,"play").subscribe(r=>{var a;return(a=this.livePauseWatchdogSubscription)==null?void 0:a.unsubscribe()}))}initLiveDurationSubscriptions(t){this.representationSubscription.add(this.liveDuration$.pipe(rp()).subscribe(i=>this.liveStreamEndTimestamp=RE())),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(Os({isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe(ap(({isActiveLive:t,isLowLatency:i})=>t&&i),rp(),pu(t=>!this.isManualDecreasePlaybackInLive())).subscribe(t=>jr(this.element,1))),this.representationSubscription.add(Os({liveBuffer:this.liveBuffer.smoothed$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe(pu(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(Os({bufferLength:this.bufferLength$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe(pu(({bufferLength:r,isActiveLive:a,isLowLatency:n})=>a&&n&&!!r),ap(({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(Os({isLive:this.isLive$,rtt:this.throughputEstimator.rtt$,bufferLength:this.bufferLength$,segmentServerLatency:t.currentLiveSegmentServerLatency$}).pipe(pu(({isLive:r})=>r),rp((r,a)=>a.bufferLength<r.bufferLength),ap(({rtt:r,bufferLength:a,segmentServerLatency:n})=>{let o=zt(this.manifestUrlString,2);return(r/2+a+n+o)/1e3})).subscribe(this.liveLatency$))}initLiveMaintainSubscription(t){let i=0;this.representationSubscription.add(Os({liveLoadBufferLength:this.liveLoadBufferLength$,bufferLength:this.bufferLength$}).pipe(r_(this.tuning.dash.liveUpdateInterval)).subscribe(async({liveLoadBufferLength:r,bufferLength:a})=>{Yi(this.element);let n=this.element.playbackRate,o=zt(this.manifestUrlString,2),u=Math.abs(this.livePositionFromPlayer$.getValue())*1e3,c=Math.min(u,this.tuning.dashCmafLive.normalizedTargetMinBufferSize*n),d=this.tuning.dashCmafLive.normalizedActualBufferOffset*n,l=this.tuning.dashCmafLive.normalizedLiveMinBufferSize*n,p=isFinite(r)?r:a,h=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),f=u<=this.tuning.live.activeLiveDelay;this.isActiveLive$.next(f);let m="none";if(h?m="active_low_latency":this.isLowLatency$.getValue()&&f?(t.forEach(v=>v.proceedLowLatencyLive()),m="active_low_latency"):o!==0&&p<c?m="live_forward_buffering":p<c+l&&(m="live_with_target_offset"),isFinite(r)&&(i=r>i?r:i),m==="live_forward_buffering"||m==="live_with_target_offset"){let v=i-(c+d),g=this.normalizeLiveOffset(Math.trunc(o+v/n)),S=Math.abs(g-o),T=0;!r||S<=this.tuning.dashCmafLive.offsetCalculationError?T=o:g>0&&S>this.tuning.dashCmafLive.offsetCalculationError&&(T=g),this.manifestUrlString=ue(this.manifestUrlString,T,2)}(m==="live_with_target_offset"||m==="live_forward_buffering")&&(i=0,this.manifest=await this.updateManifest())},r=>{this.error$.next({id:"updateLive",category:du.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 Wr=class extends Oi{constructor(e){super(e),this.textTracksManager.destroy()}getPlayer(){return new hu({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 op(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(CE()).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(DE(u=>u.to)).subscribe(this.player.isLowLatency$)).add(sp({liveBufferTime:i.liveBufferTime$,liveAvailabilityStartTime:this.player.liveAvailabilityStartTime$}).pipe(DE(({liveBufferTime:u,liveAvailabilityStartTime:c})=>u&&c?u+c:void 0)).subscribe(i.liveTime$)).add(sp({liveDuration:this.player.liveDuration$,liveStreamStatus:this.player.liveStreamStatus$,playbackRate:ME(r.playbackRateState$,new op(1))}).pipe(LE(({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||np(d)||(t=u-d)})).add(sp({time:i.liveBufferTime$,liveDuration:this.player.liveDuration$,playbackRate:ME(r.playbackRateState$,new op(1))}).pipe(CE((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||np(u)||np(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=iT(u);this.params.output.availableTextTracks$.next([c])}})),this.params.tuning.dashCmafLive.externalStopControl||this.subscription.add(this.player.liveStreamStatus$.pipe(LE(u=>a_(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 A_,assertNonNullable as R_,combine as $_,debounce as M_,ErrorCategory as QE,filter as gp,filterChanged as zs,fromEvent as L_,isNonNullable as zE,isNullable as C_,map as Gs,merge as Ys,observableFrom as Iu,once as GE,Subscription as D_,throttle as B_}from"@vkontakte/videoplayer-shared/es2018";var WE=_(De(),1),mp=_(Ka(),1);var ui=(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 pp,assertNonNullable as Yr,combine as Kr,ErrorCategory as Ze,filter as Su,filterChanged as js,flattenObject as Ws,fromEvent as Bt,getTraceSubscriptionMethod as b_,interval as hp,isNonNullable as Qs,isNullable as HE,map as Xr,merge as Zi,now as fp,Subject as Vt,Subscription as jE,SubscriptionRemovable as g_,tap as v_,throttle as S_,ValueSubject as ae}from"@vkontakte/videoplayer-shared/es2018";var mu=_(De(),1),Xi=_(Ke(),1),bu=_(Ka(),1);var FE=_(zl(),1);import{assertNever as s_,ErrorCategory as BE,Subject as VE}from"@vkontakte/videoplayer-shared/es2018";var n_=18,_E=!1;try{_E=B.browser.isSafari&&!!B.browser.safariVersion&&B.browser.safariVersion<=n_}catch(s){console.error(s)}var up=class{constructor(e,t=!1){this.bufferFull$=new VE;this.error$=new VE;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:BE.VIDEO_PIPELINE,message:"Buffer appending or removal failed",thrown:t})}};this.buffer=e,this.isAbortFixEnabled=t,this.buffer.addEventListener("updateend",this.completeTask)}async append(e,t){return t&&t.aborted?!1:new Promise(i=>{let r={operation:"append",data:e,signal:t,callback:i};this.queue.push(r),this.pull()})}async remove(e,t,i){return i&&i.aborted?!1:new Promise(r=>{let a={operation:"remove",from:e,to:t,signal:i,callback:r};this.queue.unshift(a),this.pull()})}async abort(e){return new Promise(t=>{let i,r=a=>{this.abortRequested=!1,t(a)};_E&&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:BE.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:s_(t)}}},OE=up;var cp=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 ci,assertNonNullable as Le,ErrorCategory as Dt,fromEvent as lp,getExponentialDelay as dp,isHigher as o_,isNonNullable as li,isNullable as he,now as fu,once as u_,Subject as c_,Subscription as l_,ValueSubject as Ki,isAbortError as NE}from"@vkontakte/videoplayer-shared/es2018";var Ns=class{constructor(e,t,i,{fetcher:r,tuning:a,getCurrentPosition:n,isActiveLowLatency:o,compatibilityMode:u=!1,manifest:c}){this.currentLiveSegmentServerLatency$=new Ki(0);this.currentLowLatencySegmentLength$=new Ki(0);this.currentSegmentLength$=new Ki(0);this.onLastSegment$=new Ki(!1);this.fullyBuffered$=new Ki(!1);this.playingRepresentation$=new Ki(void 0);this.playingRepresentationInit$=new Ki(void 0);this.error$=new c_;this.gaps=[];this.subscription=new l_;this.allInitsLoaded=!1;this.activeSegments=new Set;this.downloadAbortController=new ie;this.switchAbortController=new ie;this.destroyAbortController=new ie;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=ci(this.destroyAbortController.signal,async function*(e){let t=this.representations.get(e);Le(t,`Cannot find representation ${e}`),this.playingRepresentationId=e,this.downloadingRepresentationId=e,this.sourceBuffer=this.mediaSource.addSourceBuffer(`${t.mime}; codecs="${t.codecs}"`),this.sourceBufferTaskQueue=new OE(this.sourceBuffer,this.tuning.dash.useAbortMSEFix),this.subscription.add(lp(this.sourceBuffer,"updateend").subscribe(()=>{this.checkEjectedSegments(),this.maintain()},n=>{let o,u=this.mediaSource.readyState;u!=="open"&&(o={id:`SegmentEjection_source_${u}`,category:Dt.VIDEO_PIPELINE,message:"Error when trying to clear segments ejected by browser",thrown:n}),o!=null||(o={id:"SegmentEjection",category:Dt.VIDEO_PIPELINE,message:"Error when trying to clear segments ejected by browser",thrown:n}),this.error$.next(o)})),this.subscription.add(lp(this.sourceBuffer,"error").subscribe(()=>this.error$.next({id:"SourceBuffer",category:Dt.VIDEO_PIPELINE,message:"SourceBuffer Error event fired"}))),this.subscription.add(this.sourceBufferTaskQueue.bufferFull$.subscribe(n=>{let o=this.getCurrentPosition();if(!this.sourceBuffer||!o||!te(this.mediaSource,this.sourceBuffer))return;let u=Math.min(this.bufferLimit,cp(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);Le(i,"No init buffer for starting representation"),Le(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=ci(this.destroyAbortController.signal,async function*(e,t=!1){if(!te(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);Le(i,`No such representation ${e}`);let r=this.segments.get(e),a=this.initData.get(e);if(he(a)||he(r)?yield this.loadInit(i,"high",!1):a instanceof Promise&&(yield a),r=this.segments.get(e),Le(r,"No segments for starting representation"),a=this.initData.get(e),!(!a||!(a instanceof ArrayBuffer)||!this.sourceBuffer||!te(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();li(n)&&!this.isLive&&(this.bufferLimit=1/0,await this.pruneBuffer(n,1/0,!0)),this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e}this.maintain()}}.bind(this));this.switchToOld=ci(this.destroyAbortController.signal,async function*(e,t=!1){if(!te(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);Le(i,`No such representation ${e}`);let r=this.segments.get(e),a=this.initData.get(e);if(he(a)||he(r)?yield this.loadInit(i,"high",!1):a instanceof Promise&&(yield a),r=this.segments.get(e),Le(r,"No segments for starting representation"),a=this.initData.get(e),!(!a||!(a instanceof ArrayBuffer)||!this.sourceBuffer||!te(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();li(n)&&(this.isLive||(this.bufferLimit=1/0,await this.pruneBuffer(n,1/0,!0)),this.maintain(n)),this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e}}.bind(this));this.seekLive=ci(this.destroyAbortController.signal,async function*(e){var u;let t=(0,bu.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||!We(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);Le(r,`Representation not found by id ${i}`);let a=this.segments.get(i);Le(a,"No segments for starting representation");let n=this.initData.get(i);if(Le(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){!te(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId||(this.switchAbortController.abort(),this.switchAbortController=new ie,ci(this.switchAbortController.signal,async function*(i,r=!1){this.switchingToRepresentationId=i;let a=this.representations.get(i);Le(a,`No such representation ${i}`);let n=this.segments.get(i),o=this.initData.get(i);if(he(o)||he(n)?yield this.loadInit(a,"high",!1):o instanceof Promise&&(yield o),n=this.segments.get(i),Le(n,"No segments for starting representation"),o=this.initData.get(i),!(!(o instanceof ArrayBuffer)||!this.sourceBuffer||!te(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();li(u)&&!this.isLive&&(this.bufferLimit=this.forwardBufferTarget,yield this.pruneBuffer(u,1/0,!0)),this.downloadingRepresentationId=i,this.switchingToRepresentationId=void 0}this.maintain()}}.bind(this))(e,t))}warmUpMediaSource(){!he(this.sourceBuffer)&&!this.sourceBuffer.updating&&(this.sourceBuffer.mode="segments")}async abort(){for(let e of this.activeSegments)this.abortSegment(e.segment);return this.activeSegments.clear(),this.downloadAbortController.abort(),this.downloadAbortController=new ie,this.abortBuffer()}maintain(e=this.getCurrentPosition()){var p;if(he(e)||he(this.downloadingRepresentationId)||he(this.playingRepresentationId)||he(this.sourceBuffer)||!te(this.mediaSource,this.sourceBuffer)||li(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(Le(t,`No such representation ${this.downloadingRepresentationId}`),Le(i,`No such representation ${this.playingRepresentationId}`),he(r)||he(a))return;let n=r.find(h=>e>=h.time.from&&e<h.time.to);li(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=ri(i),m=ri(t),v=this.useSmartRepresentationSwitch&&this.tuning.dash.useNewRepresentationSwitch&&this.tuning.dash.useSmartRepresentationSwitch&&li(f)&&li(m)&&o_(f.quality,m.quality),g=this.useSmartRepresentationSwitch&&this.tuning.dash.useNewRepresentationSwitch&&this.tuning.dash.useDelayedRepresentationSwitch;if(v||g?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(([y,x])=>{let R=x.find(C=>e>=C.time.from&&e<C.time.to);return{representationId:y,status:R==null?void 0:R.status}}).find(y=>y.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)&&cp(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,mu.default)(d,n))h="high";else{let f=(0,Xi.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,Xi.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;li(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,bu.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,bu.default)(e.streams[this.kind],n=>n.representations);for(let n of t){if(!n||!We(n.segmentReference))return;let o=n.segmentReference.segments.map(p=>({...p,status:"none",size:void 0})),u=100,c=(i=this.segments.get(n.id))!=null?i:[],d=(a=(r=(0,Xi.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;Le(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,Xi.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(!We(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=ot(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&&Hi&&Hi(this.gapDetectionIdleCallback),this.initLoadIdleCallback&&Hi&&Hi(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 v=h<=i&&f>=i,g=h>i||v||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"&&g&&T&&this.sourceBuffer&&te(this.mediaSource,this.sourceBuffer)&&!(ui(this.sourceBuffer.buffered,h)&&ui(this.sourceBuffer.buffered,f)))&&g&&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}async loadSegments(e,t,i="auto"){We(t.segmentReference)?await this.loadTemplateSegment(e[0],t,i):await this.loadByteRangeSegments(e,t,i)}async loadTemplateSegment(e,t,i="auto"){e.status="downloading";let r={segment:e,loadedBytes:0,feedingBytes:0,fedBytes:0,representationId:t.id};this.activeSegments.add(r);let{range:a,url:n,signal:o,onProgress:u,onProgressTasks:c}=this.prepareTemplateFetchSegmentParams(e,t);this.failedDownloads&&o&&(await ci(o,async function*(){let d=dp(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(l=>setTimeout(l,d))}.bind(this))(),o.aborted&&this.abortActiveSegments([e]));try{let d=await this.fetcher.fetch(n,{range:a,signal:o,onProgress:u,priority:i,isLowLatency:this.isActiveLowLatency(),bufferOptimisation:this.tuning.dash.fetcherBufferOptimisation});if(this.lastDataObtainedTimestampMs=fu(),!d)return;let l=new DataView(d),p=Qi(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?await Promise.all(c):await 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]),NE(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())We(t.segmentReference)?t.segmentReference.baseUrl=e:t.segmentReference.url=e}async loadByteRangeSegments(e,t,i="auto"){if(!e.length)return;for(let u of e)u.status="downloading",this.activeSegments.add({segment:u,loadedBytes:0,feedingBytes:0,fedBytes:0,representationId:t.id});let{range:r,url:a,signal:n,onProgress:o}=this.prepareByteRangeFetchSegmentParams(e,t);this.failedDownloads&&n&&(await ci(n,async function*(){let u=dp(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(c=>{this.loadByteRangeSegmentsTimeoutId=window.setTimeout(c,u),lp(window,"online").pipe(u_()).subscribe(()=>{c(),window.clearTimeout(this.loadByteRangeSegmentsTimeoutId)})})}.bind(this))(),n.aborted&&this.abortActiveSegments(e));try{await this.fetcher.fetch(a,{range:r,onProgress:o,signal:n,priority:i,bufferOptimisation:this.tuning.dash.fetcherBufferOptimisation}),this.lastDataObtainedTimestampMs=fu(),this.failedDownloads=0}catch(u){this.abortActiveSegments(e),NE(u)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}}prepareByteRangeFetchSegmentParams(e,t){if(We(t.segmentReference))throw new Error("Representation is not byte range type");let i=t.segmentReference.url,r={from:(0,Xi.default)(e,0).byte.from,to:(0,Xi.default)(e,-1).byte.to},{signal:a}=this.downloadAbortController;return{url:i,range:r,signal:a,onProgress:async(o,u)=>{if(!a.aborted)try{this.lastDataObtainedTimestampMs=fu(),await 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:Dt.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:c})}}}}prepareTemplateFetchSegmentParams(e,t){if(!We(t.segmentReference))throw new Error("Representation is not template type");let i=new URL(e.url,t.segmentReference.baseUrl);this.isActiveLowLatency()&&i.searchParams.set("low-latency","yes");let r=i.toString(),{signal:a}=this.downloadAbortController,n=[],u=this.isActiveLowLatency()||this.tuning.dash.enableSubSegmentBufferFeeding&&this.liveUpdateSegmentIndex<3?(c,d)=>{if(!a.aborted)try{this.lastDataObtainedTimestampMs=fu();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:Dt.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,mu.default)(e,t.segment)&&this.abortSegment(t.segment)}async onSomeTemplateDataLoaded({dataView:e,representationId:t,loaded:i,onSegmentAppendFailed:r,signal:a}){if(!this.activeSegments.size||!te(this.mediaSource,this.sourceBuffer))return;let n=this.representations.get(t);if(n)for(let o of this.activeSegments){let{segment:u}=o;if(o.representationId===t){if(a.aborted){r();continue}if(o.loadedBytes=i,o.loadedBytes>o.feedingBytes){let c=new DataView(e.buffer,e.byteOffset+o.feedingBytes,o.loadedBytes-o.feedingBytes),d=Qi(n.mime).parseFeedableSegmentChunk(c,this.isLive);d!=null&&d.byteLength&&(u.status="partially_fed",o.feedingBytes+=d.byteLength,await this.sourceBufferTaskQueue.append(d),o.fedBytes+=d.byteLength)}}}}async onSomeByteRangesDataLoaded({dataView:e,representationId:t,globalFrom:i,loaded:r,signal:a,onSegmentAppendFailed:n}){if(!this.activeSegments.size||!te(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)continue;if(a.aborted){await n();continue}let d=c.byte.from-i,l=c.byte.to-i,p=l-d+1,h=d<r,f=l<=r;if(!h)continue;let m=Qi(o.mime);if(c.status==="downloading"&&f){c.status="downloaded";let v=new DataView(e.buffer,e.byteOffset+d,p);await this.sourceBufferTaskQueue.append(v,a)&&!a.aborted?this.onSegmentFullyAppended(u,t):await n()}else if(this.tuning.dash.enableSubSegmentBufferFeeding&&(c.status==="downloading"||c.status==="partially_fed")&&(u.loadedBytes=Math.min(p,r-d),u.loadedBytes>u.feedingBytes)){let v=new DataView(e.buffer,e.byteOffset+d+u.feedingBytes,u.loadedBytes-u.feedingBytes),g=u.loadedBytes===p?v:m.parseFeedableSegmentChunk(v);g!=null&&g.byteLength&&(c.status="partially_fed",u.feedingBytes+=g.byteLength,await this.sourceBufferTaskQueue.append(g,a)&&!a.aborted?(u.fedBytes+=g.byteLength,u.fedBytes===p&&this.onSegmentFullyAppended(u,t)):await n())}}}onSegmentFullyAppended(e,t){var i;if(!(he(this.sourceBuffer)||!te(this.mediaSource,this.sourceBuffer))){!this.isLive&&B.browser.isSafari&&this.tuning.useSafariEndlessRequestBugfix&&(ui(this.sourceBuffer.buffered,e.segment.time.from,100)&&ui(this.sourceBuffer.buffered,e.segment.time.to,100)||this.error$.next({id:"EmptyAppendBuffer",category:Dt.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",zd(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=qi(()=>(0,FE.default)(this.loadInit(i,"low",!1),()=>this.initLoadIdleCallback=null)))}async loadInit(e,t="auto",i=!1){let r=this.tuning.dash.useFetchPriorityHints?t:"auto",a=!i&&this.tuning.dash.ignoreNetworkErrorsOnLoadInit,o=(!i&&this.failedDownloads>0?ci(this.destroyAbortController.signal,async function*(){let u=dp(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(c=>setTimeout(c,u))}.bind(this))():Promise.resolve()).then(()=>this.fetcher.fetchRepresentation(e.segmentReference,Qi(e.mime),{priority:r,ignoreNetworkErrors:a})).then(async u=>{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&&We(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:Dt.WTF,message:"loadInit threw",thrown:u})});return this.initData.set(e.id,o),o}async dropBuffer(){for(let e of this.segments.values())for(let t of e)t.status="none";await this.pruneBuffer(0,1/0,!0)}async pruneBuffer(e,t,i=!1){if(!this.sourceBuffer||!te(this.mediaSource,this.sourceBuffer)||!this.playingRepresentationId||he(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({...u.time}),r=n(r);let c=zd(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,mu.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?(await Promise.all(r.map(c=>this.sourceBufferTaskQueue.remove(c.from,c.to)))).reduce((c,d)=>c||d,!1):!1}async abortBuffer(){if(!this.sourceBuffer||!te(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||!te(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||!te(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length||he(e)?0:ai(this.sourceBuffer.buffered,e)}detectGaps(e,t){if(!(!this.sourceBuffer||!te(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||!te(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=qi(()=>{try{this.detectGaps(e,t)}catch(a){this.error$.next({id:"GapDetection",category:Dt.WTF,message:"detectGaps threw",thrown:a})}finally{this.gapDetectionIdleCallback=null}})}checkEjectedSegments(){if(he(this.sourceBuffer)||!te(this.mediaSource,this.sourceBuffer)||he(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:Dt.VIDEO_PIPELINE,thrown:e,message:"Something went wrong"})}};import{abortable as Fs,assertNever as UE,fromEvent as qE,merge as d_,now as Ji,Subject as Qr,ValueSubject as Us,flattenObject as zr,ErrorCategory as Gr,SubscriptionRemovable as p_,getWindow as qs,suppressAbort as gu}from"@vkontakte/videoplayer-shared/es2018";var vu=class{constructor({throughputEstimator:e,requestQuic:t,tracer:i,compatibilityMode:r=!1,useEnableSubtitlesParam:a=!1}){this.manifestRequested$=new Qr;this.firstBytesManifest$=new Qr;this.firstBytesRequested$=new Qr;this.firstBytesReceived$=new Qr;this.lastConnectionType$=new Us(void 0);this.lastConnectionReused$=new Us(void 0);this.lastRequestFirstBytes$=new Us(void 0);this.lastConnectionMetrics$=new Us(void 0);this.lastDownloadMetrics$=new Us(void 0);this.recoverableError$=new Qr;this.error$=new Qr;this.abortAllController=new ie;this.subscription=new p_;this.performanceObserver=null;this.pendingConnectionMetrics=new Map;this.fetchManifest=Fs(this.abortAllController.signal,async function*(e){let t=this.tracer.createComponentTracer("FetchManifest"),i=e;this.requestQuic&&(i=ei(i)),!this.compatibilityMode&&this.useEnableSubtitlesParam&&(i=qo(i)),this.trackRequestStart(i,performance.now());let r=Ji();this.manifestRequested$.next();let a=yield this.doFetch(i,{signal:this.abortAllController.signal}).catch(gu);if(a){let n=Ji();t.log("success",zr({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=await 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",zr({url:i,message:"No data in request manifest"})),t.end(),null}.bind(this));this.fetch=Fs(this.abortAllController.signal,async function*(e,{rangeMethod:t=this.compatibilityMode?0:1,range:i,onProgress:r,priority:a="auto",signal:n,measureThroughput:o=!0,isLowLatency:u=!1,bufferOptimisation:c=!1,ignoreNetworkErrors:d=!1}={}){var Y,j,E;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 P=new URL(l,qs().location.href);P.searchParams.append("bytes",`${i.from}-${i.to}`),l=P.toString();break}default:UE(t)}this.requestQuic&&(l=ei(l));let f=this.abortAllController.signal,m;if(n){let P=new ie;if(m=d_(qE(this.abortAllController.signal,"abort"),qE(n,"abort")).subscribe(()=>{try{P.abort()}catch(I){gu(I)}}),this.subscription.add(m),this.abortAllController.signal.aborted||n.aborted)try{P.abort()}catch(I){gu(I)}f=P.signal}let v=0,g=Ji();h.log("startRequest",zr({url:l,priority:a,rangeMethod:t,range:i,isLowLatency:u,requestStartedAt:g})),this.trackRequestStart(l,performance.now()),this.firstBytesRequested$.next();let S=yield this.doFetch(l,{priority:a,headers:p,signal:f},{ignoreNetworkErrors:d}),T=Ji();if(!S)return h.error("error",{message:"No response in request"}),h.end(),this.unsubscribeAbortSubscription(m),null;if((Y=this.throughputEstimator)==null||Y.addRawRtt(T-g),!S.ok||!S.body){this.unsubscribeAbortSubscription(m);let P=`Fetch error ${S.status}: ${S.statusText}`;return h.error("error",{message:P}),h.end(),Promise.reject(new Error(`Fetch error ${S.status}: ${S.statusText}`))}if(this.onHeadersReceived(S.headers),!r&&!o){this.unsubscribeAbortSubscription(m);let P=Ji(),I={requestStartedAt:g,requestEndedAt:P,duration:P-g};return h.log("endRequest",zr(I)),h.end(),S.arrayBuffer()}let y=S.body;if(o){let P;[y,P]=S.body.tee(),(j=this.throughputEstimator)==null||j.trackStream(P,u)}let x=y.getReader(),R,C=parseInt((E=S.headers.get("content-length"))!=null?E:"",10);Number.isFinite(C)&&(R=C),!R&&i&&(R=i.to-i.from+1);let $=R?new Uint8Array(R):new Uint8Array(0),D=!1,A=P=>{this.unsubscribeAbortSubscription(m),D=!0,gu(P)},V=Fs(f,async function*({done:P,value:I}){if(v===0&&(this.lastRequestFirstBytes$.next(Ji()-g),this.firstBytesReceived$.next()),f.aborted){this.unsubscribeAbortSubscription(m);return}if(!P&&I){if(c&&R)$.set(I,v),v+=I.byteLength;else{let w=new Uint8Array($.length+I.length);w.set($),w.set(I,$.length),$=w,v+=I.byteLength}r==null||r(new DataView($.buffer),v),yield x==null?void 0:x.read().then(V,A)}}.bind(this));yield x==null?void 0:x.read().then(V,A),this.unsubscribeAbortSubscription(m);let M=Ji(),q={failed:D,requestStartedAt:g,requestEndedAt:M,duration:M-g};if(D)return h.error("endRequest",zr(q)),h.end(),null;if(v>0){let P=M-g,w=v/(P/1e3)*8/1024,F={bytes:v,speed:w,url:e};this.lastDownloadMetrics$.next(F)}return h.log("endRequest",zr(q)),h.end(),$.buffer}.bind(this));this.fetchByteRangeRepresentation=Fs(this.abortAllController.signal,async function*(e,t,i){var g;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},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=(g=e.indexRange)!=null?g: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 v=t.parseSegments(m,h,f);return{init:h,dataView:new DataView(l),segments:v}}.bind(this));this.fetchTemplateRepresentation=Fs(this.abortAllController.signal,async function*(e,t){if(e.type!=="template")return null;let i=new URL(e.initUrl,e.baseUrl).toString(),r=yield this.fetch(i,{measureThroughput:!1,...t});return r?{init:null,segments:e.segments.map(n=>({...n,status:"none",size:void 0})),dataView:new DataView(r)}:null}.bind(this));this.throughputEstimator=e,this.requestQuic=t,this.compatibilityMode=r,this.tracer=i.createComponentTracer("Fetcher"),this.useEnableSubtitlesParam=a,qs().PerformanceObserver&&this.setupPerformanceObserver()}onHeadersReceived(e){let{type:t,reused:i}=Uo(e);this.lastConnectionType$.next(t),this.lastConnectionReused$.next(i)}setupPerformanceObserver(){this.performanceObserver=new(qs()).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 qs().navigator))return"unknown";let e=qs().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:Gr.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})}async fetchRepresentation(e,t,i){var a,n;let{type:r}=e;switch(r){case"byteRange":return(a=await this.fetchByteRangeRepresentation(e,t,i))!=null?a:null;case"template":return(n=await this.fetchTemplateRepresentation(e,i))!=null?n:null;default:UE(r)}}destroy(){this.abortAllController.abort(),this.subscription.unsubscribe(),this.performanceObserver&&(this.performanceObserver.disconnect(),this.performanceObserver=null),this.pendingConnectionMetrics.clear(),this.tracer.end()}async doFetch(e,t,i){let r=await Je(e,t);if(r.ok)return r;if(i!=null&&i.ignoreNetworkErrors)return;let a=await r.text(),n=parseInt(a);if(!isNaN(n))switch(n){case 1:this.recoverableError$.next({id:"VideoDataLinkExpiredError",message:"Video data links have expired",category:Gr.FATAL,httpCode:r.status,UVBackendErrorCode:a});break;case 8:this.recoverableError$.next({id:"VideoDataLinkBlockedForFloodError",message:"Url blocked for flood",category:Gr.FATAL,httpCode:r.status,UVBackendErrorCode:a});break;case 18:this.recoverableError$.next({id:"VideoDataLinkIllegalIpChangeError",message:"Client IP has changed",category:Gr.FATAL,httpCode:r.status,UVBackendErrorCode:a});break;case 21:this.recoverableError$.next({id:"VideoDataLinkIllegalHostChangeError",message:"Request HOST has changed",category:Gr.FATAL,httpCode:r.status,UVBackendErrorCode:a});break;default:this.error$.next({id:"GeneralVideoDataFetchError",message:`Generic video data fetch error (${n})`,category:Gr.FATAL,httpCode:r.status,UVBackendErrorCode:a})}}unsubscribeAbortSubscription(e){e&&(e.unsubscribe(),this.subscription.remove(e))}};import{isNullable as h_,ValueSubject as f_}from"@vkontakte/videoplayer-shared/es2018";var Hs=class s{constructor(e,t){this.currentRepresentation$=new f_(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(!h_(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({...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&&We(t.segmentReference))}};var y_=["timeupdate","progress","play","seeked","stalled","waiting"],T_=["timeupdate","progress","loadeddata","playing","seeked"];var yu=class{constructor(e){this.element=null;this.manifestUrlString="";this.source=null;this.manifest=null;this.bufferManagers=[];this.subscription=new jE;this.subscriptionRemovable=new g_;this.representationSubscription=new jE;this.state$=new H("none");this.currentVideoRepresentation$=new ae(void 0);this.currentVideoRepresentationInit$=new ae(void 0);this.currentAudioRepresentation$=new ae(void 0);this.currentVideoSegmentLength$=new ae(0);this.currentAudioSegmentLength$=new ae(0);this.error$=new Vt;this.manifestRequested$=new Vt;this.firstBytesManifest$=new Vt;this.manifestReceived$=new Vt;this.firstBytesRequested$=new Vt;this.firstBytesReceived$=new Vt;this.lastConnectionType$=new ae(void 0);this.lastConnectionReused$=new ae(void 0);this.lastRequestFirstBytes$=new ae(void 0);this.lastConnectionMetrics$=new ae(void 0);this.lastDownloadMetrics$=new ae(void 0);this.currentLiveTextRepresentation$=new ae(null);this.isLive$=new ae(!1);this.isActiveLive$=new ae(!1);this.isLowLatency$=new ae(!1);this.liveDuration$=new ae(0);this.liveSeekableDuration$=new ae(0);this.liveAvailabilityStartTime$=new ae(0);this.liveStreamStatus$=new ae(void 0);this.bufferLength$=new ae(0);this.liveLatency$=new ae(void 0);this.liveLoadBufferLength$=new ae(0);this.livePositionFromPlayer$=new ae(0);this.currentStallDuration$=new ae(0);this.videoLastDataObtainedTimestamp$=new ae(0);this.fetcherRecoverableError$=new Vt;this.fetcherError$=new Vt;this.liveStreamEndTimestamp=0;this.isUpdatingLive=!1;this.isJumpGapAfterSeekLive=!1;this.forceEnded$=new Vt;this.gapWatchdogActive=!1;this.liveWasInterrupted=!1;this.destroyController=new ie;this.initManifest=pp(this.destroyController.signal,async function*(e,t,i){var r;this.tracer.log("initManifest"),this.element=e,this.manifestUrlString=ue(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:Ze.PARSER,message:"No playable video representations"})}.bind(this));this.updateManifest=pp(this.destroyController.signal,async 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:Ze.NETWORK,message:"Failed to load manifest",thrown:d})});if(!e)return null;let t=null;try{t=zo(e!=null?e:"",this.manifestUrlString),this.manifestReceived$.next()}catch(d){let l=(u=Fo(e))!=null?u:{id:"ManifestParsing",category:Ze.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,v;return!!((f=(h=this.element)==null?void 0:h.canPlayType)!=null&&f.call(h,l)&&((v=(m=He())==null?void 0:m.isTypeSupported)!=null&&v.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 v=this.normalizeLiveOffset(-1*this.livePositionFromPlayer$.getValue()*1e3);this.seekLive(v).catch(g=>{this.error$.next({id:"updateManifest",category:Ze.VIDEO_PIPELINE,message:"seekLive after stream restore failed",thrown:g})})}}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=eu(f),h=n[0]),d==="video"&&(a=Zo(f),this.forceVideoCodec&&(0,WE.default)(a,this.forceVideoCodec)?h=this.forceVideoCodec:h=a[0]),h&&(r[d]=p.filter(({codecs:m})=>ti(m)===h))}else{let f=new Set(p.map(({codecs:m})=>m));h=Jo(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),v=r.video.some(S=>!S.hdr);B.display.isHDR&&f&&m?r.video=r.video.filter(S=>S.hdr):v&&(r.video=r.video.filter(S=>!S.hdr));let{videoStreamRepresentaionsFilter:g}=this.tuning.dash;g.length&&au(r,g)}}let o={...t,streams:r};return this.tuning.dash.codecsPrioritizeEnabled&&(o.codecs={video:a,audio:n}),this.tracer.log("updateManifestEnd",Ws(o)),o}.bind(this));this.initRepresentations=pp(this.destroyController.signal,async function*(e,t,i){var l;this.tracer.log("initRepresentationsStart",Ws({initialVideo:e,initialAudio:t,sourceHls:i})),Yr(this.manifest),Yr(this.element),this.representationSubscription.unsubscribe(),this.state$.startTransitionTo("representations_ready");let r=p=>{this.representationSubscription.add(Bt(p,"error").pipe(Su(h=>{var f;return!!((f=this.element)!=null&&f.played.length)})).subscribe(h=>{this.error$.next({id:"VideoSource",category:Ze.VIDEO_PIPELINE,message:"Unexpected video source error",thrown:h})}))};this.source=Vn();let a=document.createElement("source");if(r(a),a.src=URL.createObjectURL(this.source),this.element.appendChild(a),mr())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 Ns("video",this.source,o,n),this.bufferManagers=[this.videoBufferManager],Qs(t)){let p=this.manifest.streams.audio.reduce((h,f)=>[...h,...f.representations],[]);this.audioBufferManager=new Ns("audio",this.source,p,n),this.bufferManagers.push(this.audioBufferManager)}if(Hs.isSupported(this.manifest.streams.text)&&!this.isLowLatency$.getValue()&&(this.liveTextManager=new Hs(this.manifest.streams.text,n)),this.representationSubscription.add(this.fetcher.lastRequestFirstBytes$.subscribe(this.lastRequestFirstBytes$)),this.representationSubscription.add(Zi(...T_.map(p=>Bt(this.element,p))).pipe(Xr(p=>this.element?ai(this.element.buffered,this.element.currentTime*1e3):0),js(),v_(p=>{p>this.tuning.dash.bufferEmptinessTolerance&&this.stopStallWatchdogSubscription()})).subscribe(this.bufferLength$)),this.representationSubscription.add(Zi(Bt(this.element,"ended"),this.forceEnded$).subscribe(()=>{this.stopStallWatchdogSubscription()})),this.isLive$.getValue()){this.subscription.add(this.liveDuration$.pipe(js()).subscribe(h=>this.liveStreamEndTimestamp=fp())),this.subscription.add(Bt(this.element,"pause").subscribe(()=>{let{liveUpdateInterval:h}=this.tuning.dash;this.livePauseWatchdogSubscription=hp(h).subscribe(f=>{let m=zt(this.manifestUrlString,2);this.manifestUrlString=ue(this.manifestUrlString,m+h,2),this.liveStreamStatus$.getValue()==="active"&&this.updateManifest()}),this.subscription.add(this.livePauseWatchdogSubscription)})).add(Bt(this.element,"play").subscribe(h=>{var f;return(f=this.livePauseWatchdogSubscription)==null?void 0:f.unsubscribe()})),this.representationSubscription.add(Kr({isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe(Xr(({isActiveLive:h,isLowLatency:f})=>h&&f),js()).subscribe(h=>{this.isManualDecreasePlaybackInLive()||jr(this.element,1)})),this.representationSubscription.add(Kr({bufferLength:this.bufferLength$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe(Su(({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(Kr({isLive:this.isLive$,rtt:this.throughputEstimator.rtt$,bufferLength:this.bufferLength$,segmentServerLatency:this.videoBufferManager.currentLiveSegmentServerLatency$}).pipe(Su(({isLive:h})=>h),js((h,f)=>f.bufferLength<h.bufferLength),Xr(({rtt:h,bufferLength:f,segmentServerLatency:m})=>{let v=zt(this.manifestUrlString,2);return(h/2+f+m+v)/1e3})).subscribe(this.liveLatency$)),this.representationSubscription.add(Kr({liveBuffer:this.liveBuffer.smoothed$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).subscribe(({liveBuffer:h,isActiveLive:f,isLowLatency:m})=>{if(!m||!f)return;let v=this.tuning.dashCmafLive.lowLatency.maxTargetOffset,g=this.tuning.dashCmafLive.lowLatency.maxTargetOffsetDeviation,S=this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup,T=h-v;if(this.isManualDecreasePlaybackInLive())return;let y=1;Math.abs(T)>g&&(y=1+Math.sign(T)*S),jr(this.element,y)})),this.representationSubscription.add(this.bufferLength$.subscribe(h=>{var m,v;let f=0;if(h){let g=((v=(m=this.element)==null?void 0:m.currentTime)!=null?v:0)*1e3;f=Math.min(...this.bufferManagers.map(T=>{var y,x;return(x=(y=T.getLiveSegmentsToLoadState(this.manifest))==null?void 0:y.to)!=null?x:g}))-g}this.liveLoadBufferLength$.getValue()!==f&&this.liveLoadBufferLength$.next(f)}));let p=0;this.representationSubscription.add(Kr({liveLoadBufferLength:this.liveLoadBufferLength$,bufferLength:this.bufferLength$}).pipe(S_(this.tuning.dash.liveUpdateInterval)).subscribe(async({liveLoadBufferLength:h,bufferLength:f})=>{if(!this.element||this.isUpdatingLive)return;let m=this.element.playbackRate,v=zt(this.manifestUrlString,2),g=Math.abs(this.livePositionFromPlayer$.getValue())*1e3,S=Math.min(g,this.tuning.dashCmafLive.normalizedTargetMinBufferSize*m),T=this.tuning.dashCmafLive.normalizedActualBufferOffset*m,y=this.tuning.dashCmafLive.normalizedLiveMinBufferSize*m,x=isFinite(h)?h:f,R=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),C=g<=this.tuning.live.activeLiveDelay;this.isActiveLive$.next(C);let $="none";if(R?$="active_low_latency":this.isLowLatency$.getValue()&&C?(this.bufferManagers.forEach(D=>D.proceedLowLatencyLive()),$="active_low_latency"):v!==0&&x<S?$="live_forward_buffering":x<S+y&&($="live_with_target_offset"),isFinite(h)&&(p=h>p?h:p),$==="live_forward_buffering"||$==="live_with_target_offset"){let D=p-(S+T),A=this.normalizeLiveOffset(Math.trunc(v+D/m)),V=Math.abs(A-v),M=0;!h||V<=this.tuning.dashCmafLive.offsetCalculationError?M=v:A>0&&V>this.tuning.dashCmafLive.offsetCalculationError&&(M=A),this.manifestUrlString=ue(this.manifestUrlString,M,2)}($==="live_with_target_offset"||$==="live_forward_buffering")&&(p=0,await this.updateLive())},h=>{this.error$.next({id:"updateLive",category:Ze.VIDEO_PIPELINE,thrown:h,message:"Failed to update live with subscription"})}))}let u=Zi(...this.bufferManagers.map(p=>p.fullyBuffered$)).pipe(Xr(()=>this.bufferManagers.every(p=>p.fullyBuffered$.getValue()))),c=Zi(...this.bufferManagers.map(p=>p.onLastSegment$)).pipe(Xr(()=>this.bufferManagers.some(p=>p.onLastSegment$.getValue()))),d=Kr({allBuffersFull:u,someBufferEnded:c}).pipe(js(),Xr(({allBuffersFull:p,someBufferEnded:h})=>p&&h),Su(p=>p));if(this.representationSubscription.add(Zi(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:Ze.VIDEO_PIPELINE,message:"Failed to end MediaSource stream",thrown:h})}})),this.representationSubscription.add(Zi(...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:Ze.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,mp.default)((0,mp.default)([...this.manifest.streams.audio,...this.manifest.streams.video],h=>h.representations),h=>{let f=[];return h.duration&&f.push(h.duration),We(h.segmentReference)&&h.segmentReference.totalSegmentsDurationMs&&f.push(h.segmentReference.totalSegmentsDurationMs),f})];this.source.duration=Math.max(...p)/1e3}this.audioBufferManager&&Qs(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=hp(this.tuning.gapWatchdogInterval).subscribe(()=>this.jumpGap(),n=>{this.error$.next({id:"GapWatchdog",category:Ze.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 vu({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=Ct.getLiveBufferSmoothedValue(this.tuning.dashCmafLive.lowLatency.maxTargetOffset,{...e.tuning.dashCmafLive.lowLatency.bufferEstimator}),this.initTracerSubscription()}setSmartRepresentationSwitch(e){this.bufferManagers.forEach(t=>t.setSmartRepresentationSwitch(e))}async seekLive(e){Yr(this.element),this.updateManifestUrlWithTimeOffset(e),this.manifest=await this.updateManifest(),this.manifest&&(this.isJumpGapAfterSeekLive=!0,await this.updateLiveBuffersFromManifest(this.manifest))}updateManifestUrlWithTimeOffset(e){let t=this.liveStreamStatus$.getValue()!=="active"?fp()-this.liveStreamEndTimestamp:0,i=this.normalizeLiveOffset(e+t);this.isActiveLive$.next(i===0),this.manifestUrlString=ue(this.manifestUrlString,i,2)}async updateLiveBuffersFromManifest(e){var t,i,r;await((t=this.videoBufferManager)==null?void 0:t.seekLive(e.streams.video)),await((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(){Yr(this.element),this.state$.setState("running"),this.subscription.add(Zi(...y_.map(e=>Bt(this.element,e)),Bt(window,"online")).subscribe(()=>this.tick(),e=>{this.error$.next({id:"DashVKPlayer",category:Ze.WTF,message:"Internal logic error",thrown:e})})),this.subscription.add(Bt(this.element,"progress").subscribe(()=>{this.element&&this.element.readyState===2&&!this.element.seeking&&(this.element.currentTime=this.element.currentTime)})),this.subscription.add(Bt(this.element,"waiting").subscribe(()=>{this.tuning.dash.useVideoElementWaitingCurrentTimeReassign&&this.element&&this.element.readyState===2&&!this.element.seeking&&ui(this.element.buffered,this.element.currentTime*1e3)&&(this.element.currentTime=this.element.currentTime);let e=()=>{var y,x,R,C,$,D,A,V,M,q,Y;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||((y=this.source)==null?void 0:y.readyState)!=="open")return;let d=this.currentStallDuration$.getValue();d+=n,this.currentStallDuration$.next(d);let l={timeInWaiting:d},p=fp(),h=100,f=(R=(x=this.videoBufferManager)==null?void 0:x.lastDataObtainedTimestamp)!=null?R:0;this.videoLastDataObtainedTimestamp$.next(f);let m=($=(C=this.audioBufferManager)==null?void 0:C.lastDataObtainedTimestamp)!=null?$:0,v=(A=(D=this.videoBufferManager)==null?void 0:D.getForwardBufferDuration())!=null?A:0,g=(M=(V=this.audioBufferManager)==null?void 0:V.getForwardBufferDuration())!=null?M:0,S=v<h&&p-f>r,T=this.audioBufferManager&&g<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 j=this.normalizeLiveOffset(-1*this.livePositionFromPlayer$.getValue()*1e3);!c&&t?(this.liveWasInterrupted=!0,this.updateManifestUrlWithTimeOffset(j),this.updateManifest()):this.seekLive(j).catch(E=>{this.error$.next({id:"stallIntervalCallback",category:Ze.VIDEO_PIPELINE,message:"stallIntervalCallback failed",thrown:E})}),l.liveLastOffset=j}else{let j=this.element.currentTime*1e3;(q=this.videoBufferManager)==null||q.maintain(j),(Y=this.audioBufferManager)==null||Y.maintain(j),l.position=j}this.tracer.log("stallIntervalCallback",Ws(l))};this.stallWatchdogSubscription&&(this.stallWatchdogSubscription.unsubscribe(),this.subscriptionRemovable.remove(this.stallWatchdogSubscription)),this.stallWatchdogSubscription=hp(this.tuning.dash.stallWatchdogInterval).subscribe(e,t=>{this.error$.next({id:"StallWatchdogCallback",category:Ze.NETWORK,message:"Can't restore DASH after stall.",thrown:t})}),this.subscriptionRemovable.add(this.stallWatchdogSubscription)})),this.tick()}async switchRepresentation(e,t,i=!1){let r={video:this.videoBufferManager,audio:this.audioBufferManager,text:null}[e];return this.tuning.useNewSwitchTo?this.currentStallDuration$.getValue()>0?r==null?void 0:r.switchToWithPreviousAbort(t,i):r==null?void 0:r.switchTo(t,i):r==null?void 0:r.switchToOld(t,i)}async seek(e,t){var r,a,n,o,u;Yr(this.element),Yr(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),ui(this.element.buffered,i)||await Promise.all([this.videoBufferManager.abort(),(o=this.audioBufferManager)==null?void 0:o.abort()]),!(HE(this.element)||HE(this.videoBufferManager))&&(this.videoBufferManager.maintain(i),(u=this.audioBufferManager)==null||u.maintain(i),this.element.currentTime=i/1e3,this.tracer.log("seek",Ws({requestedPosition:e,forcePrecise:t,position:i})))}warmUpMediaSourceIfNeeded(e=(t=>(t=this.element)==null?void 0:t.currentTime)()){var i;Qs(this.element)&&Qs(this.source)&&Qs(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=b_(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}async updateLive(){var e;this.isUpdatingLive=!0,this.manifest=await 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={...i,gapEnds:n,jumpTo:u,resultCurrentTime:this.element.currentTime},this.tracer.log("jumpGap",Ws(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 I_,map as E_,observeElementSize as w_,Subscription as x_,ValueSubject as bp,noop as P_}from"@vkontakte/videoplayer-shared/es2018";var Tu=class{constructor(){this.subscription=new x_;this.pipSize$=new bp(void 0);this.videoSize$=new bp(void 0);this.elementSize$=new bp(void 0);this.pictureInPictureWindowRemoveEventListener=P_}connect({observableVideo:e,video:t}){let i=r=>{let a=r.target;this.pipSize$.next({width:a.width,height:a.height})};this.subscription.add(w_(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(I_({videoSize:this.videoSize$,pipSize:this.pipSize$,inPip:e.inPiP$}).pipe(E_(({videoSize:r,inPip:a,pipSize:n})=>a?n:r)).subscribe(this.elementSize$))}getValue(){return this.elementSize$.getValue()}subscribe(e,t){return this.elementSize$.subscribe(e,t)}getObservable(){return this.elementSize$}destroy(){this.pictureInPictureWindowRemoveEventListener(),this.subscription.unsubscribe()}};var er=class{constructor(e){this.subscription=new D_;this.videoState=new H("stopped");this.observableVideo=null;this.droppedFramesManager=new Lr;this.stallsManager=new Do;this.elementSizeManager=new Tu;this.videoTracksMap=new Map;this.audioTracksMap=new Map;this.textTracksMap=new Map;this.videoStreamsMap=new Map;this.audioStreamsMap=new Map;this.videoTrackSwitchHistory=new Jt;this.audioTrackSwitchHistory=new Jt;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"),k(this.params.desiredState.playbackState,"stopped",!0));return}switch(e){case"stopped":this.videoState.startTransitionTo("ready"),this.prepare();return;case"ready":t==="paused"?(this.videoState.setState("paused"),k(this.params.desiredState.playbackState,"paused")):t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="ready"&&k(this.params.desiredState.playbackState,"ready");return;case"playing":t==="paused"?(this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()):t==="playing"&&this.video.paused?this.playIfAllowed():(i==null?void 0:i.to)==="playing"&&k(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="paused"&&k(this.params.desiredState.playbackState,"paused");return;default:return A_(e)}}};this.init3DScene=e=>{var i,r,a;if(this.scene3D)return;this.scene3D=new Cr(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 Ye(e.source.url),this.params=e,this.video=Be(e.container,e.tuning),this.tracer=e.dependencies.tracer.createComponentTracer(this.constructor.name),this.params.output.element$.next(this.video),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(xe(this.params.source.url)),this.params.output.isLive$.next(!1),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.player=new yu({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;C_(this.observableVideo)&&(this.observableVideo=Oe(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:QE.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(gp(l=>!!l.length),GE()).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(Gs(l=>l.to.state!=="none"),zs());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(gp(zE),GE()),e.firstBytesEvent$),a(this.stallsManager.severeStallOccurred$,e.severeStallOccurred$),a(this.videoState.stateChangeEnded$.pipe(Gs(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(bt(this.video,t.isLooped,r)),this.params.skipVideoElVolumeSync?this.subscription.add(t.volume.stateChangeStarted$.subscribe(({to:l})=>this.params.output.volume$.next(l),r)):this.subscription.add(i.volumeState$.subscribe(this.params.output.volume$,r)),Zt({subscription:this.subscription,desiredState:t,videoElement$:this.params.output.element$,observableVideo:i}),this.subscription.add(_e(this.video,t.volume,i.volumeState$,r,{skipVideoElVolumeSync:this.params.skipVideoElVolumeSync})),this.subscription.add(Ge(this.video,t.playbackRate,i.playbackRateState$,r)),this.elementSizeManager.connect({video:this.video,observableVideo:i}),a(Xe(this.video,{threshold:this.params.tuning.autoTrackSelection.activeVideoAreaThreshold}),e.elementVisible$),this.subscription.add(i.playing$.subscribe(()=>{this.videoState.setState("playing"),k(t.playbackState,"playing"),this.scene3D&&this.scene3D.play()},r)).add(i.pause$.subscribe(()=>{this.videoState.setState("paused"),k(t.playbackState,"paused")},r)).add(i.canplay$.subscribe(()=>{this.videoState.getState()==="playing"&&!this.video.ended&&this.playIfAllowed()},r)),this.params.tuning.changePlaybackStateToPausedWhenEnded&&this.subscription.add(i.ended$.subscribe(()=>{this.videoState.setState("paused"),k(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(R_(p,"Manifest not loaded or empty"),!this.params.tuning.isAudioDisabled){let m=[];for(let v of p.audio){m.push(Wd(v));let g=[];for(let S of v.representations){let T=As(S);g.push(T),this.audioTracksMap.set(T,{stream:v,representation:S})}this.audioStreamsMap.set(v,g)}this.params.output.availableAudioStreams$.next(m)}let f=[];for(let m of p.video){f.push(Qd(m));let v=[];for(let g of m.representations){let S=ri({...g,streamId:m.id});S&&(v.push(S),this.videoTracksMap.set(S,{stream:m,representation:g}))}this.videoStreamsMap.set(m,v)}this.params.output.availableVideoStreams$.next(f);for(let m of p.text)for(let v of m.representations){let g=uE(m,v);this.textTracksMap.set(g,{stream:m,representation:v})}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=Ys(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$,L_(this.video,"progress")).pipe(gp(()=>this.videoTracksMap.size>0)),{abrThrottle:u}=this.params.tuning.dash;u&&(o=o.pipe(B_(u))),this.subscription.add(o.subscribe(async()=>{let l=this.player.state$.getState(),p=this.player.state$.getTransition();if(l!=="manifest_ready"&&l!=="running"||p)return;t.autoVideoTrackSwitching.getTransition()&&t.autoVideoTrackSwitching.setState(t.autoVideoTrackSwitching.getState());let h=this.selectVideoAudioRepresentations();if(!h)return;let[f,m]=h,v=[...this.videoTracksMap.keys()].find(S=>{var T;return((T=this.videoTracksMap.get(S))==null?void 0:T.representation.id)===f.id});zE(v)&&(this.stallsManager.lastVideoTrackSelected=v);let g=this.params.desiredState.autoVideoTrackLimits.getTransition();if(g&&this.params.output.autoVideoTrackLimits$.next(g.to),l==="manifest_ready")await this.player.initRepresentations(f.id,m==null?void 0:m.id,this.params.sourceHls);else if(await this.player.switchRepresentation("video",f.id),m){let S=!!t.audioStream.getTransition();await this.player.switchRepresentation("audio",m.id,S)}},r)),this.subscription.add($_({videoState:this.videoState.stateChangeEnded$,autoVideoTrackState:Ys(Iu([t.autoVideoTrackSwitching.getState()]),t.autoVideoTrackSwitching.stateChangeEnded$.pipe(Gs(l=>l.to)))}).pipe(Gs(({videoState:l,autoVideoTrackState:p})=>l.to!=="stopped"&&p),zs()).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(zs()).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(Qd(f));let v=this.player.calculateDurationFromSegments();v&&this.params.output.duration$.next(v/1e3)},r)),this.subscription.add(this.player.currentAudioRepresentation$.pipe(zs()).subscribe(l=>{let p=[...this.audioTracksMap.entries()].find(([,{representation:v}])=>v.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(Wd(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(Gs(({to:l})=>l==="ready"),zs());this.subscription.add(Ys(c,t.autoVideoTrackSwitching.stateChangeStarted$,this.player.state$.stateChangeEnded$,Iu(["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(Ys(c,this.player.state$.stateChangeEnded$,Iu(["init"])).subscribe(()=>this.player.setPreloadOnly(t.playbackState.getState()==="ready")));let d=Ys(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,Iu(["init"])).pipe(M_(0));this.subscription.add(d.subscribe(this.syncPlayback,r))}selectVideoAudioRepresentations(){var $,D,A,V,M,q,Y,j,E,P,I,w,F;if(this.player.isStreamEnded)return;let e=this.params.tuning.useNewAutoSelectVideoTrack?Ua:Fa,t=this.params.tuning.useNewAutoSelectVideoTrack?Po:xo,i=this.params.tuning.useNewAutoSelectVideoTrack?St:wo,{desiredState:r,output:a}=this.params,n=r.autoVideoTrackSwitching.getState(),o=($=r.videoTrack.getState())==null?void 0:$.id,u=[...this.videoTracksMap.keys()].find(({id:O})=>O===o),c=a.currentVideoTrack$.getValue(),d=((V=(A=r.videoStream.getState())!=null?A:u&&((D=this.videoTracksMap.get(u))==null?void 0:D.stream))!=null?V:this.videoStreamsMap.size===1)?this.videoStreamsMap.keys().next().value:void 0;if(!d)return;let l=[...this.videoStreamsMap.keys()].find(({id:O})=>O===d.id),p=l&&this.videoStreamsMap.get(l);if(!p)return;let h=ai(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,v=Math.min(h/Math.min(f,m||1/0),1),g=(M=r.audioStream.getState())!=null?M:this.audioStreamsMap.size===1?this.audioStreamsMap.keys().next().value:void 0,S=(q=[...this.audioStreamsMap.keys()].find(({id:O})=>O===(g==null?void 0:g.id)))!=null?q:this.audioStreamsMap.keys().next().value,T=0;if(S){if(u&&!n){let O=e(u,p,(Y=this.audioStreamsMap.get(S))!=null?Y:[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);T=Math.max(T,(j=O==null?void 0:O.bitrate)!=null?j:-1/0)}if(c){let O=e(c,p,(E=this.audioStreamsMap.get(S))!=null?E:[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);T=Math.max(T,(P=O==null?void 0:O.bitrate)!=null?P:-1/0)}}let y=u;(n||!y)&&(y=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:v,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 x=S&&t(y,p,(I=this.audioStreamsMap.get(S))!=null?I:[],{estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),stallsPredictedThroughput:this.stallsManager.predictedThroughput,tuning:this.stallsManager.abrTuningParams,forwardBufferHealth:v,history:this.audioTrackSwitchHistory,playbackRate:this.video.playbackRate,abrLogger:this.params.dependencies.abrLogger}),R=(w=this.videoTracksMap.get(y))==null?void 0:w.representation,C=x&&((F=this.audioTracksMap.get(x))==null?void 0:F.representation);if(R&&C)return[R,C];if(R&&!C&&this.audioTracksMap.size===0)return[R,void 0]}prepare(e=0){this.player.initManifest(this.video,this.params.source.url,e)}playIfAllowed(){Ne(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),k(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:QE.DOM,thrown:e}))}destroy(){this.subscription.unsubscribe(),this.droppedFramesManager.destroy(),this.stallsManager.destroy(),this.elementSizeManager.destroy(),this.destroy3DScene(),this.textTracksManager.destroy(),this.player.destroy(),this.params.output.element$.next(void 0),this.params.output.currentVideoStream$.next(void 0),Ve(this.video),this.tracer.end()}};var Ks=class extends er{subscribe(){super.subscribe();let{output:e,observableVideo:t,connect:i}=this.getProviderSubscriptionInfo();i(t.timeUpdate$,e.position$),i(t.durationChange$,e.duration$)}seek(e,t){this.params.output.willSeekEvent$.next(),this.player.seek(e,t)}};import{combine as vp,merge as YE,filter as KE,filterChanged as XE,isNullable as Sp,map as JE,ValueSubject as yp,isNonNullable as V_}from"@vkontakte/videoplayer-shared/es2018";var Xs=class extends er{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 yp(1);n(r.playbackRateState$,o),this.params.tuning.dashCmafLive.catchupLiveForMutedInactiveTab&&this.subscription.add(i.elementVisible$.pipe(XE()).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(JE(u=>u.to)).subscribe(this.player.isLowLatency$)).add(vp({liveBufferTime:i.liveBufferTime$,liveAvailabilityStartTime:this.player.liveAvailabilityStartTime$}).pipe(JE(({liveBufferTime:u,liveAvailabilityStartTime:c})=>u&&c?u*1e3+c+t:void 0)).subscribe(i.liveTime$)).add(vp({liveDuration:this.player.liveDuration$,liveStreamStatus:this.player.liveStreamStatus$,playbackRate:YE(r.playbackRateState$,new yp(1))}).pipe(KE(({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||Sp(d)||(t=u-d)})).add(vp({time:i.liveBufferTime$,liveDuration:this.player.liveDuration$,playbackRate:YE(r.playbackRateState$,new yp(1))}).pipe(XE((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||Sp(u)||Sp(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=cE(u);this.params.output.availableTextTracks$.next([c])}})),this.params.tuning.dashCmafLive.externalStopControl||this.subscription.add(this.player.liveStreamStatus$.pipe(KE(u=>V_(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 ZE="X-Playback-Duration",Tp=async s=>{var r;let e=await Je(s),t=await 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(ZE)?parseInt(e.headers.get(ZE),10):void 0};import{assertNever as z_,combine as G_,debounce as Y_,ErrorCategory as xu,filter as K_,filterChanged as X_,isNonNullable as iw,isNullable as Pu,map as rw,merge as J_,observableFrom as Z_,Subscription as eO,ValueSubject as wp,VideoQuality as tO}from"@vkontakte/videoplayer-shared/es2018";var Ep=_(ol(),1);import{videoSizeToQuality as __,getExponentialDelay as O_}from"@vkontakte/videoplayer-shared/es2018";var N_=s=>{let e=null;if(s.QUALITY&&(e=Xt(s.QUALITY)),!e&&s.RESOLUTION){let[t,i]=s.RESOLUTION.split("x").map(r=>parseInt(r,10));e=__({width:t,height:i})}return e!=null?e:null},F_=(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,Ep.default)(c[1].split(",").map(S=>S.split("="))),p=(a=l.QUALITY)!=null?a:`stream-${l.BANDWIDTH}`,h=N_(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,v;if(l.RESOLUTION){let[S,T]=l.RESOLUTION.split("x").map(y=>parseInt(y,10));S&&T&&(v={width:S,height:T})}let g=new URL(t[++o],e).toString();h&&i.push({id:p,quality:h,url:g,bandwidth:f,size:v,fps:m})}if(d){let l=(0,Ep.default)(d[1].split(",").map(m=>{let v=m.indexOf("=");return[m.substring(0,v),m.substring(v+1)]}).map(([m,v])=>[m,v.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}},U_=s=>new Promise(e=>{setTimeout(()=>{e()},s)}),Ip=0,ew=async(s,e=s,t,i)=>{let a=await(await Je(s,i)).text();Ip+=1;try{let{qualityManifests:n,textTracks:o}=F_(a,e);return{qualityManifests:n,textTracks:o}}catch(n){if(Ip<=t.manifestRetryMaxCount)return await U_(O_(Ip-1,{start:t.manifestRetryInterval,max:t.manifestRetryMaxInterval})),ew(s,e,t)}return{qualityManifests:[],textTracks:[]}},Eu=ew;import{isNonNullable as q_,Subscription as H_,throttle as j_,ValueSubject as tw,Subject as W_,ErrorCategory as Q_}from"@vkontakte/videoplayer-shared/es2018";var wu=class{constructor(e,t,i,r,a){this.subscription=new H_;this.abortControllers={destroy:new ie,nextManifest:null};this.prepareUrl=void 0;this.currentTextTrackData=null;this.availableTextTracks$=new tw(null);this.getCurrentTime$=new tw(null);this.error$=new W_;this.params={fetchManifestData:i,sourceUrl:r,downloadThreshold:a},this.subscription.add(e.pipe(j_(1e3)).subscribe(n=>{this.processLiveTime(n)})),this.getCurrentTime$.next(()=>this.currentTextTrackData?this.currentTextTrackData.playlist.segmentStartTime/1e3+t.currentTime:0)}destroy(){this.subscription.unsubscribe(),this.abortControllers.destroy.abort()}async prepare(e){try{let t=new URL(e);t.searchParams.set("enable-subtitles","yes"),this.prepareUrl=t.toString();let{textTracks:i}=await this.fetchManifestData();await this.processTextTracks(i,this.params.sourceUrl)}catch(t){this.error("prepare",t)}}async processTextTracks(e,t){try{let i=await this.parseTextTracks(e,t);i&&(this.currentTextTrackData=i)}catch(i){this.error("processTextTracks",i)}}async parseTextTracks(e,t){for(let i of e){let r=new URL(i.url,t).toString(),n=await(await Je(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(q_(e)&&this.currentTextTrackData){let{segments:t}=this.currentTextTrackData.playlist,{from:i}=t[0].time,{to:r}=t[t.length-1].time;if(e<i||e>r)return;r-e<this.params.downloadThreshold&&this.fetchNextManifestData();for(let n of t)if(n.time.from<=e&&n.time.to>=e){this.availableTextTracks$.next([{...this.currentTextTrackData.textTrack,url:n.url,isAuto:!0}]);break}}}async fetchNextManifestData(){try{if(this.abortControllers.nextManifest)return;this.abortControllers.nextManifest=new ie;let{textTracks:e}=await this.fetchManifestData(),t=await this.parseTextTracks(e,this.params.sourceUrl);this.currentTextTrackData&&t&&(this.currentTextTrackData.playlist.segments=t.playlist.segments)}catch(e){this.error("fetchNextManifestData",e)}finally{this.abortControllers.nextManifest=null}}async fetchManifestData(){var t;let e=(t=this.prepareUrl)!=null?t:this.params.sourceUrl;return await this.params.fetchManifestData(e,{signal:this.abortControllers.destroy.signal})}error(e,t){this.error$.next({id:"[LiveTextManager][HLS_LIVE_CMAF]",category:Q_.WTF,thrown:t,message:e})}};var Js=class{constructor(e){this.subscription=new eO;this.videoState=new H("stopped");this.textTracksManager=null;this.liveTextManager=null;this.manifests$=new wp([]);this.liveOffset=new Bi;this.manifestStartTime$=new wp(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"),k(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"?k(this.params.desiredState.playbackState,"ready"):i==="paused"?(this.videoState.setState("paused"),this.liveOffset.pause(),k(this.params.desiredState.playbackState,"paused")):i==="playing"&&(this.videoState.startTransitionTo("playing"),this.playIfAllowed());return;case"playing":i==="paused"?(this.videoState.startTransitionTo("paused"),this.liveOffset.pause(),this.video.paused?this.videoState.setState("paused"):this.video.pause()):(r==null?void 0:r.to)==="playing"&&k(this.params.desiredState.playbackState,"playing");return;case"paused":if(i==="playing")if(this.videoState.startTransitionTo("playing"),this.liveOffset.getTotalPausedTime()<this.params.config.maxPausedTime&&this.liveOffset.getTotalOffset()<this.maxSeekBackTime$.getValue())this.liveOffset.resume(),this.playIfAllowed(),this.params.output.position$.next(-this.liveOffset.getTotalOffset()/1e3);else{let 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"&&(k(this.params.desiredState.playbackState,"paused"),this.liveOffset.pause());return;case"changing_manifest":break;default:return z_(t)}};var i;this.params=e,this.video=Be(e.container,e.tuning),this.params.output.element$.next(this.video),this.masterManifest={id:"master",quality:tO.INVARIANT,url:this.params.source.url};let t=(r,a)=>Eu(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 wu(this.params.output.liveTime$,this.video,t,this.params.source.url,this.params.tuning.hlsLiveNewTextManagerDownloadThreshold):this.textTracksManager=new Ye(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:xu.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:xu.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(xe(this.params.source.url)),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.maxSeekBackTime$=new wp((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:xu.WTF,message:"HlsLiveProvider internal logic error",thrown:o})},r=Oe(this.video);this.subscription.add(()=>r.destroy());let a=(o,u)=>this.subscription.add(o.subscribe(u,i));a(r.ended$,e.endedEvent$),a(r.error$,e.error$),a(r.isBuffering$,e.isBuffering$),a(r.currentBuffer$,e.currentBuffer$),a(r.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(_e(this.video,t.volume,r.volumeState$,i,{skipVideoElVolumeSync:this.params.skipVideoElVolumeSync})),this.params.skipVideoElVolumeSync?this.subscription.add(t.volume.stateChangeStarted$.subscribe(({to:o})=>this.params.output.volume$.next(o),i)):this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(Ge(this.video,t.playbackRate,r.playbackRateState$,i)),a(Xe(this.video),e.elementVisible$),this.liveTextManager?(a(this.liveTextManager.getCurrentTime$,this.params.output.getCurrentTime$),a(this.liveTextManager.error$,this.params.output.error$)):this.textTracksManager&&this.textTracksManager.connect(this.video,t,e),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState("playing"),k(t.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),k(t.playbackState,"paused")},i)).add(r.canplay$.subscribe(()=>{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(X_(),rw(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&&iw(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(xe(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(G_({startTime:this.manifestStartTime$.pipe(K_(iw)),currentTime:r.timeUpdate$}).subscribe(({startTime:o,currentTime:u})=>this.params.output.liveTime$.next(o+u*1e3),i)),this.subscription.add(this.manifests$.pipe(rw(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=J_(t.playbackState.stateChangeStarted$,t.seekState.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.stateChangeStarted$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,this.manifests$,Z_(["init"])).pipe(Y_(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),Ve(this.video)}prepare(){var o,u,c;let e=this.selectManifest();if(Pu(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=ue(r.toString(),this.liveOffset.getTotalOffset(),a);(c=this.liveTextManager)==null||c.prepare(n),this.video.setAttribute("src",n),this.video.load(),Tp(n).then(d=>{var l;if(!Pu(d))this.maxSeekBackTime$.next(d);else{let p=(l=this.params.source.maxSeekBackTime)!=null?l:this.maxSeekBackTime$.getValue();(Pu(p)||!isFinite(p))&&Je(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 v=new URL(f,n).toString();Tp(v).then(g=>{Pu(g)||this.maxSeekBackTime$.next(g)})}}).catch(()=>{})}})}playIfAllowed(){Ne(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),this.liveOffset.pause(),k(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:xu.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=ue(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 iO,debounce as rO,ErrorCategory as xp,fromEvent as Pp,isNonNullable as aO,isNullable as sO,map as aw,merge as sw,observableFrom as nw,Subscription as nO,ValueSubject as ow,VideoQuality as oO}from"@vkontakte/videoplayer-shared/es2018";var Zs=class{constructor(e){this.subscription=new nO;this.videoState=new H("stopped");this.manifests$=new ow([]);this.unmuteAfterBrowserResetsHappened=new ow(!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"),k(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"?k(this.params.desiredState.playbackState,"ready"):i==="paused"?(this.videoState.setState("paused"),k(this.params.desiredState.playbackState,"paused")):i==="playing"&&(this.videoState.startTransitionTo("playing"),this.playIfAllowed());return;case"playing":i==="paused"?(this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()):(r==null?void 0:r.to)==="playing"&&k(this.params.desiredState.playbackState,"playing");return;case"paused":i==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(r==null?void 0:r.to)==="paused"&&k(this.params.desiredState.playbackState,"paused");return;case"changing_manifest":break;default:return iO(t)}};this.textTracksManager=new Ye(e.source.url),this.params=e,this.video=Be(e.container,e.tuning),this.params.output.element$.next(this.video),this.masterManifest={id:"master",quality:oO.INVARIANT,url:this.params.source.url},this.params.output.isLive$.next(!1),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(xe(this.params.source.url)),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),this.params.output.manifestRequested$.next(),Eu(ue(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:xp.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:xp.WTF,message:"HlsProvider internal logic error",thrown:o})},r=Oe(this.video);this.subscription.add(()=>r.destroy());let a=(o,u)=>this.subscription.add(o.subscribe(u));if(a(r.timeUpdate$,e.position$),a(r.durationChange$,e.duration$),a(r.ended$,e.endedEvent$),a(r.looped$,e.loopedEvent$),a(r.error$,e.error$),a(r.isBuffering$,e.isBuffering$),a(r.currentBuffer$,e.currentBuffer$),a(r.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(aw(o=>o.to)),this.params.output.playbackState$),this.subscription.add(bt(this.video,t.isLooped,i)),this.params.skipVideoElVolumeSync?this.subscription.add(t.volume.stateChangeStarted$.subscribe(({to:o})=>this.params.output.volume$.next(o),i)):this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(Ge(this.video,t.playbackRate,r.playbackRateState$,i)),Zt({subscription:this.subscription,desiredState:t,videoElement$:this.params.output.element$,observableVideo:r}),this.subscription.add(_e(this.video,t.volume,r.volumeState$,i,{skipVideoElVolumeSync:this.params.skipVideoElVolumeSync})),this.textTracksManager.connect(this.video,t,e),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState("playing"),k(t.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),k(t.playbackState,"paused")},i)).add(r.canplay$.subscribe(()=>{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&&aO(c.to)){let f=c.to.id;this.params.desiredState.videoTrack.setState(c.to);let m=this.manifests$.getValue().find(v=>v.id===f);m&&(this.params.output.currentVideoTrack$.next(m),this.params.output.hostname$.next(xe(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"),k(t.playbackState,"paused")})),this.subscription.add(this.manifests$.pipe(aw(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)),!B.device.isIOS||!this.params.tuning.useNativeHLSTextTracks){let{textTracks:o}=this.video;this.subscription.add(sw(Pp(o,"addtrack"),Pp(o,"removetrack"),Pp(o,"change"),nw(["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$,nw(["init"])).pipe(rO(0));this.subscription.add(n.subscribe(this.syncPlayback,i))}destroy(){this.subscription.unsubscribe(),this.textTracksManager.destroy(),this.params.output.element$.next(void 0),Ve(this.video)}prepare(){var a,n;let e=this.selectManifest();if(sO(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(){Ne(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),k(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:xp.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next(),this.video.currentTime=e/1e3}};var lw=_(Gt(),1),kp=_(Pi(),1),dw=_(Ke(),1);import{assertNever as uO,assertNonNullable as uw,debounce as cO,ErrorCategory as cw,isHigherOrEqual as lO,isLowerOrEqual as dO,isNonNullable as pO,merge as hO,observableFrom as fO,Subscription as mO,map as bO}from"@vkontakte/videoplayer-shared/es2018";var en=class{constructor(e){this.subscription=new mO;this.videoState=new H("stopped");this.trackUrls={};this.textTracksManager=new Ye;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"),k(this.params.desiredState.playbackState,"stopped",!0));return}if(this.videoState.getTransition())return;let a=this.params.desiredState.autoVideoTrackLimits.getTransition(),n=this.params.desiredState.videoTrack.getTransition(),o=this.params.desiredState.seekState.getState();if(a&&e!=="ready"&&!n){this.handleQualityLimitTransition(a.to);return}if(e==="stopped"){this.videoState.startTransitionTo("ready"),this.prepare();return}if(n){let{currentTime:u}=this.video;this.prepare(),o.state==="none"&&this.params.desiredState.seekState.setState({state:"requested",position:u*1e3,forcePrecise:!0});return}switch((i==null?void 0:i.to)!=="paused"&&o.state==="requested"&&this.seek(o.position),e){case"ready":t==="ready"?k(this.params.desiredState.playbackState,"ready"):t==="paused"?(this.videoState.setState("paused"),k(this.params.desiredState.playbackState,"paused")):t==="playing"&&(this.videoState.startTransitionTo("playing"),this.playIfAllowed());return;case"playing":t==="paused"?(this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()):(i==null?void 0:i.to)==="playing"&&k(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="paused"&&k(this.params.desiredState.playbackState,"paused");return;default:return uO(e)}};this.params=e,this.video=Be(e.container,e.tuning),this.params.output.element$.next(this.video),(0,lw.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,kp.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:cw.WTF,message:"MpegProvider internal logic error",thrown:o})},r=Oe(this.video);this.subscription.add(()=>r.destroy());let a=(o,u)=>this.subscription.add(o.subscribe(u,i));a(r.timeUpdate$,e.position$),a(r.durationChange$,e.duration$),a(r.ended$,e.endedEvent$),a(r.looped$,e.loopedEvent$),a(r.error$,e.error$),a(r.isBuffering$,e.isBuffering$),a(r.currentBuffer$,e.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(bO(o=>o.to)),this.params.output.playbackState$),this.subscription.add(bt(this.video,t.isLooped,i)),Zt({subscription:this.subscription,desiredState:t,videoElement$:this.params.output.element$,observableVideo:r}),this.subscription.add(_e(this.video,t.volume,r.volumeState$,i,{skipVideoElVolumeSync:this.params.skipVideoElVolumeSync})),this.params.skipVideoElVolumeSync?this.subscription.add(t.volume.stateChangeStarted$.subscribe(({to:o})=>this.params.output.volume$.next(o),i)):this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(Ge(this.video,t.playbackRate,r.playbackRateState$,i)),a(Xe(this.video),e.elementVisible$),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState("playing"),k(t.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),k(t.playbackState,"paused")},i)).add(r.canplay$.subscribe(()=>{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&&pO(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"),k(t.playbackState,"paused")})),this.textTracksManager.connect(this.video,t,e);let n=hO(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,fO(["init"])).pipe(cO(0));this.subscription.add(n.subscribe(this.syncPlayback,i))}destroy(){this.subscription.unsubscribe(),this.textTracksManager.destroy(),this.trackUrls={},this.params.output.element$.next(void 0),Ve(this.video)}prepare(){var i;let e=(i=this.params.desiredState.videoTrack.getState())==null?void 0:i.id;uw(e,"MpegProvider: track is not selected");let{url:t}=this.trackUrls[e];uw(t,`MpegProvider: No url for ${e}`),this.params.tuning.requestQuick&&(t=ei(t)),this.video.setAttribute("src",t),this.video.load(),this.params.output.hostname$.next(xe(t))}playIfAllowed(){Ne(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),k(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:cw.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=St(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,kp.default)(this.trackUrls).map(l=>l.track);if(!r||!a||Ar(e,n[0].quality,(d=(0,dw.default)(n,-1))==null?void 0:d.quality)){i();return}let o=e.max?dO(r,e.max):!0,u=e.min?lO(r,e.min):!0;o&&u||i(e)}};import{assertNever as hw,debounce as yO,merge as fw,observableFrom as TO,Subscription as IO,map as mw,ValueSubject as EO,ErrorCategory as Rp,VideoQuality as wO}from"@vkontakte/videoplayer-shared/es2018";import{ErrorCategory as gO}from"@vkontakte/videoplayer-shared/es2018";var pw=["stun:videostun.mycdn.me:80"],vO=1e3,SO=3,Ap=()=>null,ku=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=Ap;this.externalStopCallback=Ap;this.externalErrorCallback=Ap;this.options=this.normalizeOptions(t);let i=e.split("/");this.serverUrl=i.slice(0,i.length-1).join("/"),this.streamKey=i[i.length-1]}onStart(e){try{this.externalStartCallback=e}catch(t){this.handleSystemError(t)}}onStop(e){try{this.externalStopCallback=e}catch(t){this.handleSystemError(t)}}onError(e){try{this.externalErrorCallback=e}catch(t){this.handleSystemError(t)}}connect(){this.connectWS()}disconnect(){try{this.externalStopCallback(),this.closeConnections()}catch(e){this.handleSystemError(e)}}connectWS(){this.ws||(this.ws=new WebSocket(this.serverUrl),this.ws.onopen=this.onSocketOpen.bind(this),this.ws.onmessage=this.onSocketMessage.bind(this),this.ws.onclose=this.onSocketClose.bind(this),this.ws.onerror=this.onSocketError.bind(this))}onSocketOpen(){this.handleLogin()}onSocketClose(e){try{if(!this.ws)return;this.ws=null,e.code>1e3?(this.retryCount++,this.retryCount>this.options.maxRetryNumber?this.handleNetworkError():this.scheduleRetry()):this.externalStopCallback()}catch(t){this.handleRTCError(t)}}onSocketError(e){try{this.externalErrorCallback(new Error(e.toString()))}catch(t){this.handleRTCError(t)}}onSocketMessage(e){try{let t=this.parseMessage(e.data);switch(t.type){case"JOIN":case"CALL_JOIN":this.handleJoinMessage(t);break;case"UPDATE":this.handleUpdateMessage(t);break;case"STATUS":this.handleStatusMessage(t);break}}catch(t){this.handleRTCError(t)}}handleJoinMessage(e){switch(e.inviteType){case"ANSWER":this.handleAnswer(e.sdp);break;case"CANDIDATE":this.handleCandidate(e.candidate);break}}handleStatusMessage(e){switch(e.status){case"UNPUBLISHED":this.handleUnpublished();break}}async handleUpdateMessage(e){try{let t=await this.createOffer();this.peerConnection&&await this.peerConnection.setLocalDescription(t),this.handleAnswer(e.sdp)}catch(t){this.handleRTCError(t)}}async handleLogin(){try{let e={iceServers:[{urls: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=await this.createOffer();await this.peerConnection.setLocalDescription(t),this.send({type:this.signalingType,inviteType:"OFFER",streamKey:this.streamKey,sdp:t.sdp,callSupport:!1})}catch(e){this.handleRTCError(e)}}async handleAnswer(e){try{this.peerConnection&&await this.peerConnection.setRemoteDescription(new RTCSessionDescription({type:"answer",sdp:e}))}catch(t){this.handleRTCError(t)}}async handleCandidate(e){if(e)try{this.peerConnection&&await this.peerConnection.addIceCandidate(e)}catch(t){this.handleRTCError(t)}}handleUnpublished(){try{this.closeConnections(),this.externalStopCallback()}catch(e){this.handleRTCError(e)}}handleSystemError(e){this.options.errorChanel&&this.options.errorChanel.next({id:"webrtc-provider-error",category:gO.WTF,message:e.message})}async onPeerConnectionStream(e){let t=e.streams[0];this.stream&&this.stream.id===t.id||(this.stream=t,this.externalStartCallback(this.stream))}onPeerConnectionIceCandidate(e){e.candidate&&this.send({type:this.signalingType,inviteType:"CANDIDATE",candidate:e.candidate})}onPeerConnectionIceConnectionStateChange(){if(this.peerConnection){let e=this.peerConnection.iceConnectionState;["failed","closed"].indexOf(e)>-1&&(this.retryCount++,this.retryCount>this.options.maxRetryNumber?this.handleNetworkError():(this.closeConnections(),this.scheduleRetry()))}}async createOffer(){let e={offerToReceiveAudio:!0,offerToReceiveVideo:!0,voiceActivityDetection:!1};if(!this.peerConnection)throw new Error("Can not create offer - no peer connection instance ");let t=await this.peerConnection.createOffer(e),i=t.sdp||"";if(!/^a=rtpmap:\d+ H264\/\d+$/m.test(i))throw new Error("No h264 codec support error");return t}handleRTCError(e){try{this.externalErrorCallback(e||new Error("RTC connection error"))}catch(t){this.handleSystemError(t)}}handleNetworkError(){try{this.externalErrorCallback(new Error("Network error"))}catch(e){this.handleSystemError(e)}}send(e){this.ws&&this.ws.send(JSON.stringify(e))}parseMessage(e){try{return JSON.parse(e)}catch(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),vO)}normalizeOptions(e={}){let t={stunServerList:pw,maxRetryNumber:SO,errorChanel:null};return e.stunServerList&&(t.stunServerList=e.stunServerList),e.maxRetryNumber&&e.maxRetryNumber>0&&(t.maxRetryNumber=e.maxRetryNumber),t}};var tn=class{constructor(e){this.videoState=new H("stopped");this.maxSeekBackTime$=new EO(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"),k(this.params.desiredState.playbackState,"stopped",!0));return}if(this.videoState.getTransition())return;let a=this.params.desiredState.videoTrack.getTransition();if(e==="stopped"){this.videoState.startTransitionTo("ready"),this.prepare();return}if(a){this.prepare();return}switch(e){case"ready":t==="paused"?(this.videoState.setState("paused"),k(this.params.desiredState.playbackState,"paused")):t==="playing"&&(this.videoState.startTransitionTo("playing"),this.playIfAllowed());return;case"playing":t==="paused"?(this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()):(i==null?void 0:i.to)==="playing"&&k(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="paused"&&k(this.params.desiredState.playbackState,"paused");return;default:return hw(e)}};this.subscription=new IO,this.params=e,this.log=this.params.dependencies.logger.createComponentLog("WebRTCLiveProvider"),this.video=Be(e.container,e.tuning),this.liveStreamClient=new ku(this.params.source.url,{maxRetryNumber:this.params.tuning.webrtc.connectionRetryMaxNumber,errorChanel:this.params.output.error$}),this.liveStreamClient.onStart(this.onLiveStreamStart.bind(this)),this.liveStreamClient.onStop(this.onLiveStreamStop.bind(this)),this.liveStreamClient.onError(this.onLiveStreamError.bind(this)),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.subscribe()}destroy(){this.subscription.unsubscribe(),this.liveStreamClient.disconnect(),this.params.output.element$.next(void 0),Ve(this.video)}subscribe(){let{output:e,desiredState:t}=this.params,i=n=>{e.error$.next({id:"WebRTCLiveProvider",category:Rp.WTF,message:"WebRTCLiveProvider internal logic error",thrown:n})};this.subscription.add(fw(this.videoState.stateChangeStarted$.pipe(mw(n=>({transition:n,type:"start"}))),this.videoState.stateChangeEnded$.pipe(mw(n=>({transition:n,type:"end"})))).subscribe(({transition:n,type:o})=>{this.log({message:`[videoState change] ${o}: ${JSON.stringify(n)}`})}));let r=Oe(this.video);this.subscription.add(()=>r.destroy());let a=(n,o)=>this.subscription.add(n.subscribe(o,i));a(r.timeUpdate$,e.liveTime$),a(r.ended$,e.endedEvent$),a(r.looped$,e.loopedEvent$),a(r.error$,e.error$),a(r.isBuffering$,e.isBuffering$),a(r.currentBuffer$,e.currentBuffer$),a(r.currentBuffer$,e.currentNativeBuffer$),a(Xe(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(_e(this.video,t.volume,r.volumeState$,i,{skipVideoElVolumeSync:this.params.skipVideoElVolumeSync})),this.params.skipVideoElVolumeSync?this.subscription.add(t.volume.stateChangeStarted$.subscribe(({to:n})=>e.volume$.next(n),i)):this.subscription.add(r.volumeState$.subscribe(e.volume$,i)),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 hw(n.to)}},i)).add(fw(t.playbackState.stateChangeStarted$,this.videoState.stateChangeEnded$,TO(["init"])).pipe(yO(0)).subscribe(this.syncPlayback.bind(this),i)),this.subscription.add(t.isLooped.stateChangeStarted$.subscribe(()=>t.isLooped.setState(!1),i)),this.subscription.add(t.autoVideoTrackSwitching.stateChangeStarted$.subscribe(()=>t.autoVideoTrackSwitching.setState(!1),i))}onLiveStreamStart(e){this.params.output.element$.next(this.video),this.params.output.duration$.next(0),this.params.output.position$.next(0),this.params.output.isLive$.next(!0),this.params.output.canChangePlaybackSpeed$.next(!1),this.params.output.hostname$.next(xe(this.params.source.url)),this.params.output.autoVideoTrackLimitingAvailable$.next(!1),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.currentVideoTrack$.next({id:"webrtc",quality:wO.INVARIANT}),this.video.srcObject=e,k(this.params.desiredState.playbackState,"playing")}onLiveStreamStop(){this.videoState.startTransitionTo("stopped"),this.syncPlayback(),this.params.output.position$.next(0),this.params.output.duration$.next(0),this.params.output.currentBuffer$.next(void 0),this.params.output.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:Rp.EXTERNAL_API,message:e.message,thrown:e})}playIfAllowed(){Ne(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),k(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:Rp.DOM,thrown:e}))}prepare(){this.liveStreamClient.connect()}};var Jr=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 an,assertNonNullable as _t,ErrorCategory as Au,filter as Tw,isNonNullable as Iw,isNullable as MO,map as LO,merge as CO,once as DO,Subject as se,Subscription as Ew,ValueSubject as U,flattenObject as $p,devNull as BO,getWindow as VO}from"@vkontakte/videoplayer-shared/es2018";import{Observable as xO,map as bw,Subscription as PO,Subject as kO}from"@vkontakte/videoplayer-shared/es2018";var gw=s=>new xO(e=>{let t=new PO,i=s.desiredPlaybackState$.stateChangeStarted$.pipe(bw(({from:c,to:d})=>`${c}-${d}`)),r=s.desiredPlaybackState$.stateChangeEnded$,a=s.providerChanged$.pipe(bw(({type:c})=>c!==void 0)),n=new kO,o=0,u="unknown";return t.add(i.subscribe(c=>{o&&window.clearTimeout(o),u=c,o=window.setTimeout(()=>n.next(c),s.maxTransitionInterval),N({m:"hangup.set",l:c,id:o})})),t.add(r.subscribe(()=>{N({m:"hangup.cl",id:o}),window.clearTimeout(o),u="unknown",o=0})),t.add(a.subscribe(c=>{o&&(N({m:"hangup.rs.0",id:o}),window.clearTimeout(o),o=0,c&&(o=window.setTimeout(()=>n.next(u),s.maxTransitionInterval),N({m:"hangup.rs.1",id:o})))})),t.add(n.subscribe(e)),()=>{window.clearTimeout(o),t.unsubscribe()}});import{ErrorCategory as AO,Subscription as RO,combine as $O,filter as Sw,once as yw}from"@vkontakte/videoplayer-shared/es2018";function vw(){return new(window.AudioContext||window.webkitAudioContext)}var rn=class rn{constructor(e,t,i,r){this.providerOutput=e;this.provider$=t;this.volumeMultiplierError$=i;this.volumeMultiplier=r;this.destroyController=new ie;this.subscriptions=new RO;this.audioContext=null;this.gainNode=null;this.mediaElementSource=null;this.subscriptions.add(this.provider$.pipe(Sw(a=>!!a.type),yw()).subscribe(({type:a})=>this.subscribe(a)))}subscribe(e){B.browser.isSafari&&e!=="MPEG"||this.subscriptions.add($O({video:this.providerOutput.element$,playbackState:this.providerOutput.playbackState$,volume:this.providerOutput.volume$}).pipe(Sw(({playbackState:t,video:i,volume:{muted:r,volume:a}})=>t==="playing"&&!!i&&!r&&!!a),yw()).subscribe(({video:t})=>{this.initAudioContextOnce(t).then(i=>{i||this.destroy()}).catch(i=>{this.handleError(i),this.destroy()})}))}static isSupported(){return"AudioContext"in window&&"GainNode"in window&&"MediaElementAudioSourceNode"in window}async initAudioContextOnce(e){let{volumeMultiplier:t}=this,i=vw();this.audioContext=i;let r=i.createGain();if(this.gainNode=r,r.gain.value=t,r.connect(i.destination),i.state==="suspended"&&(await i.resume(),this.destroyController.signal.aborted))return!1;let a=i.createMediaElementSource(e);return this.mediaElementSource=a,a.connect(r),!0}cleanup(){this.mediaElementSource&&(this.mediaElementSource.disconnect(),this.mediaElementSource=null),this.gainNode&&(this.gainNode.disconnect(),this.gainNode=null),this.audioContext&&(this.audioContext.state!=="closed"&&this.audioContext.close(),this.audioContext=null)}destroy(){this.destroyController.abort(),this.subscriptions.unsubscribe(),this.cleanup()}handleError(e){var t;this.volumeMultiplierError$.next({id:rn.errorId,category:AO.VIDEO_PIPELINE,message:(t=e==null?void 0:e.message)!=null?t:`${rn.errorId} exception`,thrown:e})}};rn.errorId="VolumeMultiplierManager";var Zr=rn;var _O={chunkDuration:5e3,maxParallelRequests:5},sn=class{constructor(e){this.current$=new U({type:void 0});this.providerError$=new se;this.noAvailableProvidersError$=new se;this.volumeMultiplierError$=new se;this.providerOutput={position$:new U(0),duration$:new U(1/0),volume$:new U({muted:!1,volume:1}),availableVideoStreams$:new U([]),currentVideoStream$:new U(void 0),availableVideoTracks$:new U([]),currentVideoTrack$:new U(void 0),availableVideoCodecs$:new U([]),availableAudioStreams$:new U([]),currentAudioStream$:new U(void 0),availableAudioTracks$:new U([]),availableAudioCodecs$:new U([]),currentVideoSegmentLength$:new U(0),currentAudioSegmentLength$:new U(0),isAudioAvailable$:new U(!0),autoVideoTrackLimitingAvailable$:new U(!1),autoVideoTrackLimits$:new U(void 0),currentBuffer$:new U(void 0),currentNativeBuffer$:new U(void 0),isBuffering$:new U(!0),error$:new se,fetcherError$:new se,fetcherRecoverableError$:new se,warning$:new se,willSeekEvent$:new se,soundProhibitedEvent$:new se,seekedEvent$:new se,loopedEvent$:new se,endedEvent$:new se,manifestRequested$:new se,firstBytesManifest$:new se,manifestReceived$:new se,firstBytesRequested$:new se,firstBytesReceived$:new se,firstBytesEvent$:new se,loadedMetadataEvent$:new se,firstFrameEvent$:new se,canplay$:new se,isLive$:new U(void 0),isLiveEnded$:new U(null),canPlayLiveTailBuffer$:new U(!1),isLowLatency$:new U(!1),canChangePlaybackSpeed$:new U(!0),liveTime$:new U(void 0),liveBufferTime$:new U(void 0),liveLatency$:new U(void 0),severeStallOccurred$:new se,availableTextTracks$:new U([]),currentTextTrack$:new U(void 0),hostname$:new U(void 0),httpConnectionType$:new U(void 0),httpConnectionReused$:new U(void 0),httpConnectionMetrics$:new U(void 0),httpDownloadMetrics$:new U(void 0),inPiP$:new U(!1),inFullscreen$:new U(!1),element$:new U(void 0),elementVisible$:new U(!0),availableSources$:new U(void 0),is3DVideo$:new U(!1),playbackState$:new U(""),getCurrentTime$:new U(null)};this.subscription=new Ew;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=Lc([...XI(this.params.tuning),...KI(this.params.tuning)]).filter(c=>Iw(e.sources[c])),{forceFormat:i,formatsToAvoid:r}=this.params.tuning,a=[];i?a=[i]:r.length?a=[...t.filter(c=>!(0,Mp.default)(r,c)),...t.filter(c=>(0,Mp.default)(r,c))]:a=t,this.log({message:`Selected formats: ${a.join(" > ")}`}),this.tracer.log("Selected formats",$p(a)),this.screenFormatsIterator=new Jr(a);let n=[...qd(!0),...qd(!1)];this.chromecastFormatsIterator=new Jr(n.filter(c=>Iw(e.sources[c]))),this.providerOutput.availableSources$.next(e.sources);let{volumeMultiplier:o=1,tuning:{useVolumeMultiplier:u}}=this.params;u&&o!==1&&Zr.isSupported()&&(this.volumeMultiplierManager=new Zr(this.providerOutput,this.current$,this.volumeMultiplierError$,o))}init(){N.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 Jr(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(MO(t)){this.handleNoFormatsError(e);return}let i;try{i=this.createProvider(e,t)}catch(r){this.providerError$.next({id:"ProviderNotConstructed",category:Au.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 an(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,skipVideoElVolumeSync:this.params.skipVideoElVolumeSync};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);_t(d);let{useDashProviderVirtual:p,useDashProviderVirtualMobile:h}=this.params.tuning,{isMobile:f}=B.device;return!f&&p||f&&h?new Vs({...o,source:d,sourceHls:l,forceVideoCodec:(u=this.videoCodecsIterator)==null?void 0:u.getValue()}):new Ks({...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 _t(d),this.params.tuning.useDashProviderVirtual&&!B.device.isMobile?new Wr({...o,source:d}):this.params.tuning.useDashProviderVirtualMobile&&B.device.isMobile?new Wr({...o,source:d}):new Xs({...o,source:d})}case"HLS":case"HLS_ONDEMAND":case"HLS_FMP4":{let d=this.applyFailoverHost(t[e]);return _t(d),new Zs({...o,source:d})}case"HLS_LIVE":case"HLS_LIVE_CMAF":{let d=this.applyFailoverHost(t[e]);return _t(d),new Js({...o,source:d,config:{maxPausedTime:this.params.tuning.live.maxPausedTime},format:e})}case"MPEG":{let d=this.applyFailoverHost(t[e]);return _t(d),new en({...o,source:d})}case"DASH_LIVE":{let d=this.applyFailoverHost(t[e]);return _t(d),new Jy({...o,source:d,config:{..._O,maxPausedTime:this.params.tuning.live.maxPausedTime}})}case"WEB_RTC_LIVE":{let d=this.applyFailoverHost(t[e]);return _t(d),new tn({container:i,source:d,desiredState:r,output:n,dependencies:this.params.dependencies,tuning:this.params.tuning,skipVideoElVolumeSync:this.params.skipVideoElVolumeSync})}case"DASH":case"DASH_LIVE_WEBM":throw new Error(`${e} is no longer supported`);default:return an(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 Pt){let{chromecastConnector:c}=this.params.dependencies.chromecastInitializer;return _t(c),new Sa({...o,chromecastConnector:c})}let u=this.params.dependencies.chromecastInitializer.connection$.getValue();return _t(u),new Ba({...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 an(e)}}skipFormat(e){switch(e){case"SCREEN":return this.screenFormatsIterator.next();case"CHROMECAST":return this.chromecastFormatsIterator.next();default:return an(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 an(e)}}applyFailoverHost(e){if(this.failoverIndex===void 0)return e;let t=this.params.failoverHosts[this.failoverIndex];if(!t)return e;let i=r=>{let a=new URL(r);return a.host=t,a.toString()};if(e===void 0)return e;if("type"in e){if(e.type==="raw")return e;if(e.type==="url")return{...e,url:i(e.url)}}return(0,ww.default)((0,Lp.default)(e).map(([r,a])=>[r,i(a)]))}initProviderErrorHandling(){let e=new Ew,t=!1,i=0;e.add(CO(this.providerOutput.error$.pipe(Tw(a=>!this.params.tuning.ignoreAudioRendererError||!a.message||!/AUDIO_RENDERER_ERROR/ig.test(a.message))),gw({desiredPlaybackState$:this.params.desiredState.playbackState,maxTransitionInterval:this.params.tuning.maxPlaybackTransitionInterval,position$:this.providerOutput.position$,providerChanged$:this.current$}).pipe(LO(a=>({id:`ProviderHangup:${a}`,category:Au.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(Tw(({to:n})=>n==="playing"),DO()).subscribe(()=>t=!0);e.add(a)}));let r=()=>{let a=N.drain(),{logDashLiveDebug:n,sendDashLiveDebug:o}=this.params.tuning;if(n&&VO().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 gd=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},_d=(e,t)=>{let n=e;n=id.default(n,`$$`,`$`);let r={RepresentationID:t.representationId,Number:t.segmentNumber,Bandwidth:t.bandwidth,Time:t.segmentTime};for(let[e,t]of ad.default(r)){let r=RegExp(`\\$${e}(?:%0(\\d+)d)?\\$`,`g`);n=id.default(n,r,(e,n)=>fd(t)?e:fd(n)?t:od.default(t,parseInt(n,10),`0`))}return n},vd=(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()??``),o=sd.default(a,0)??``,s=i.getAttribute(`type`)===`dynamic`,c=i.getAttribute(`availabilityStartTime`),l=i.getAttribute(`publishTime`),u=i.getElementsByTagName(`vk:Attrs`)[0],d=u?.getElementsByTagName(`vk:XLatestSegmentPublishTime`)[0].textContent,f=u?.getElementsByTagName(`vk:XStreamIsLive`)[0].textContent,p=u?.getElementsByTagName(`vk:XStreamIsUnpublished`)[0].textContent,m=u?.getElementsByTagName(`vk:XPlaybackDuration`)[0].textContent,h;s&&(h={availabilityStartTime:c?new Date(c).getTime():0,publishTime:l?new Date(l).getTime():0,latestSegmentPublishTime:d?new Date(d).getTime():0,streamIsAlive:f===`yes`,streamIsUnpublished:p===`yes`});let g,_=i.getAttribute(`mediaPresentationDuration`),v=[...i.getElementsByTagName(`Period`)],y=v.reduce((e,t)=>({...e,[t.id]:t.children}),{}),b=v.reduce((e,t)=>({...e,[t.id]:t.getAttribute(`duration`)}),{});_?g=gd(_):cd.default(b).filter(e=>e).length&&!s?g=cd.default(b).reduce((e,t)=>e+(gd(t)??0),0):m&&(g=parseInt(m,10));let x=0,S=i.getAttribute(`profiles`)?.split(`,`)??[];for(let e of v.map(e=>e.id))for(let n of y[e]){var C;let e=n.getAttribute(`id`)??`id`+(x++).toString(10),i=n.getAttribute(`mimeType`)??``,a=n.getAttribute(`codecs`)??``,s=n.getAttribute(`contentType`)??i?.split(`/`)[0],c=n.getAttribute(`profiles`)?.split(`,`)??[],l=md(n.getAttribute(`lang`)??``)??{},u=((C=n.querySelector(`Label`))==null||(C=C.textContent)==null?void 0:C.trim())??void 0,d=n.querySelectorAll(`Representation`),f=n.querySelector(`SegmentTemplate`),p=n.querySelector(`Role`)?.getAttribute(`value`)??void 0,m=s,h={id:e,language:l.language,isDefault:p===`main`,label:u,codecs:a,hdr:m===`video`&&ud(a),mime:i,representations:[]};for(let e of d){var w;let r=e.getAttribute(`lang`)??void 0,d=u??n.getAttribute(`label`)??e.getAttribute(`label`)??void 0,p=((w=e.querySelector(`BaseURL`))==null||(w=w.textContent)==null?void 0:w.trim())??``,_=new URL(p||o,t).toString(),v=e.getAttribute(`mimeType`)??i,y=e.getAttribute(`codecs`)??a??``,b;if(s===`text`){let t=e.getAttribute(`id`)||``,n=ua(l.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,o=parseInt(r.getAttribute(`startNumber`)??``,10)??1,s=parseInt(r.getAttribute(`timescale`)??``,10),c=r.querySelectorAll(`SegmentTimeline S`)??[],l=r.getAttribute(`media`);if(!l)continue;let u=[],d=0,f=``,p=0,m=o,h=0;for(let e of c){let t=parseInt(e.getAttribute(`d`)??``,10),n=parseInt(e.getAttribute(`r`)??``,10)||0,r=parseInt(e.getAttribute(`t`)??``,10);h=Number.isFinite(r)?r:h;let a=t/s*1e3,o=h/s*1e3;for(let e=0;e<n+1;e++){let n=_d(l,{...i,segmentNumber:m.toString(10),segmentTime:(h+e*t).toString(10)}),r=(o??0)+e*a,s=r+a;m++,u.push({time:{from:r,to:s},url:n})}h+=(n+1)*t,d+=(n+1)*a}p=h/s*1e3,f=_d(l,{...i,segmentNumber:m.toString(10),segmentTime:h.toString(10)}),b={id:t,kind:`text`,segmentReference:{type:`template`,baseUrl:_,segmentTemplateUrl:l,initUrl:``,totalSegmentsDurationMs:d,segments:u,nextSegmentBeyondManifest:{time:{from:p,to:1/0},url:f},timescale:s},profiles:[],duration:g,bitrate:a,mime:``,codecs:``,width:0,height:0,isAuto:n}}else b={id:t,isAuto:n,kind:`text`,url:_}}else{let t=e.getAttribute(`contentType`)??v?.split(`/`)[0]??s,r=n.getAttribute(`profiles`)?.split(`,`)??[],i=parseInt(e.getAttribute(`width`)??``,10),a=parseInt(e.getAttribute(`height`)??``,10),o=parseInt(e.getAttribute(`bandwidth`)??``,10)/1e3,l=e.getAttribute(`frameRate`)??``,u=e.getAttribute(`quality`)??void 0,d=l?pd(l):void 0,p=`${e.getAttribute(`id`)??`id`+(x++).toString(10)}@${t===`video`?`${a}p`:t===`audio`?`${o}Kbps`:y}`,h=[...S,...c,...r],C,w=e.querySelector(`SegmentBase`),T=e.querySelector(`SegmentTemplate`)??f;if(w){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)):[];C={type:`byteRange`,url:_,initRange:r,indexRange:i?{from:a,to:o}:void 0}}else if(T){let t={representationId:e.getAttribute(`id`)??void 0,bandwidth:e.getAttribute(`bandwidth`)??void 0},n=parseInt(T.getAttribute(`timescale`)??``,10),r=T.getAttribute(`initialization`)??``,i=T.getAttribute(`media`),a=parseInt(T.getAttribute(`startNumber`)??``,10)??1,o=_d(r,t);if(!i)throw ReferenceError(`No media attribute in SegmentTemplate`);let s=T.querySelectorAll(`SegmentTimeline S`)??[],c=[],l=0,u=``,d=0;if(s.length){let e=a,r=0;for(let a of s){let o=parseInt(a.getAttribute(`d`)??``,10),s=parseInt(a.getAttribute(`r`)??``,10)||0,u=parseInt(a.getAttribute(`t`)??``,10);r=Number.isFinite(u)?u:r;let d=o/n*1e3,f=r/n*1e3;for(let n=0;n<s+1;n++){let a=_d(i,{...t,segmentNumber:e.toString(10),segmentTime:(r+n*o).toString(10)}),s=(f??0)+n*d,l=s+d;e++,c.push({time:{from:s,to:l},url:a})}r+=(s+1)*o,l+=(s+1)*d}d=r/n*1e3,u=_d(i,{...t,segmentNumber:e.toString(10),segmentTime:r.toString(10)})}else if(dd(g)){let e=parseInt(T.getAttribute(`duration`)??``,10)/n*1e3,r=Math.ceil(g/e),a=0;for(let n=1;n<r;n++){let r=_d(i,{...t,segmentNumber:n.toString(10),segmentTime:a.toString(10)});c.push({time:{from:a,to:a+e},url:r}),a+=e}d=a,u=_d(i,{...t,segmentNumber:r.toString(10),segmentTime:a.toString(10)})}C={type:`template`,baseUrl:_,segmentTemplateUrl:i,initUrl:o,totalSegmentsDurationMs:l,segments:c,nextSegmentBeyondManifest:{time:{from:d,to:1/0},url:u},timescale:n}}else throw ReferenceError(`Unknown MPD segment referencing type`);if(!t||!v)continue;let E={video:`video`,audio:`audio`,text:`text`}[t];if(!E)continue;m||=E,b={id:p,kind:E,segmentReference:C,profiles:h,duration:g,bitrate:o,mime:v,codecs:y,width:i,height:a,fps:d,quality:u}}h.language||=r,h.label||=d,h.mime||=v,h.codecs||=y,h.hdr||=m===`video`&&ud(y),h.representations.push(b)}if(m){let e=r[m].find(e=>e.id===h.id);if(e&&h.representations.every(e=>e.segmentReference.type===`template`))for(let t of e.representations){let e=h.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[m].push(h)}}return{duration:g,streams:r,baseUrls:a,live:h}},yd=l(En(),1),bd=l(Xe(),1);import{assertNever as xd}from"@vkontakte/videoplayer-shared/es2018";var Sd;(e=>{e.VP9=`vp9`,e.AV1=`av1`,e.NONE=`none`,e.SMOOTH=`smooth`,e.POWER_EFFICIENT=`power_efficient`})(Sd||={});var Cd=e=>{let{webmDecodingInfo:t}=P.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:xd(e)}},wd=({webmCodec:e,androidPreferredFormat:t,iosPreferredFormat:n,preferMultiStream:r})=>{let i=[...r?[`DASH_STREAMS`]:[],...Cd(e),`DASH_SEP`,`DASH_ONDEMAND`,...r?[]:[`DASH_STREAMS`]],a=[...r?[`DASH_STREAMS`]:[],`DASH_SEP`,`DASH_ONDEMAND`,...r?[]:[`DASH_STREAMS`]];if(P.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`,...Cd(e),`HLS`,`HLS_ONDEMAND`];case`dash_any_webm`:return[...Cd(e),`MPEG`,...a,`HLS`,`HLS_ONDEMAND`];case`dash_sep`:return[`DASH_SEP`,`MPEG`,...Cd(e),...a,`HLS`,`HLS_ONDEMAND`];default:xd(t)}if(P.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:xd(n)}return[...i,`HLS`,`HLS_ONDEMAND`,`MPEG`]},Td=({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=P.device.isMac&&P.browser.isSafari;if(P.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:xd(e)}else s=P.video.nativeHlsSupported&&!c&&!P.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`]},Ed=e=>e?[`HLS_LIVE`,`HLS_LIVE_CMAF`,`DASH_LIVE_CMAF`]:[`DASH_WEBM`,`DASH_WEBM_AV1`,`DASH_SEP`,`DASH_ONDEMAND`,`HLS`,`HLS_ONDEMAND`,`MPEG`],Dd=e=>{if(e.size===0)return;if(e.size===1){let t=e.values().next();return yd.default(t.value.split(`.`),0)}for(let t of e){let e=yd.default(t.split(`.`),0);if(e===`opus`||e===`vp09`||e===`av01`)return e}let t=e.values().next();return yd.default(t.value.split(`.`),0)},Od=e=>{let t=e.map(e=>Ad(e)),{codecs:n}=P.video;return jd().filter(e=>{if(bd.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})},kd=e=>{let t=e.map(e=>Ad(e)),{codecs:n}=P.video;return Md().filter(e=>{if(bd.default(t,e))switch(e){case`opus`:return n.opus;case`mp4a`:return n.aac;default:return!1}else return!1})},Ad=e=>e.split(`.`)[0].replace(`0`,``),jd=()=>[`av1`,`vp9`,`hev1`,`avc1`],Md=()=>[`opus`,`mp4a`],Nd=l(xn(),1),Pd=(e,t={})=>{let n=t.timeout||1,r=performance.now();return z.setTimeout(()=>{e({get didTimeout(){return t.timeout?!1:performance.now()-r-1>n},timeRemaining(){return Math.max(0,1+(performance.now()-r))}})},1)},Fd=e=>z.clearTimeout(e),Id=e=>typeof e==`function`&&e?.toString().endsWith(`{ [native code] }`),Ld=!Id(z.requestIdleCallback)||!Id(z.cancelIdleCallback),Rd=Ld?Pd:z.requestIdleCallback,zd=Ld?Fd:z.cancelIdleCallback;import{abortable as Bd,assertNonNullable as Vd,ErrorCategory as Hd,fromEvent as Ud,getExponentialDelay as Wd,getWindow as Gd,isHigher as Kd,isNonNullable as H,isNullable as U,once as qd,Subject as Jd,Subscription as Yd,ValueSubject as Xd}from"@vkontakte/videoplayer-shared/es2018";var Zd=l(xn(),1),Qd=e=>e.valid;class $d{get id(){return this.type}constructor(t,n){e(this,`source`,void 0),e(this,`boxParser`,void 0),e(this,`type`,void 0),e(this,`size`,void 0),e(this,`content`,void 0),e(this,`valid`,void 0),e(this,`children`,void 0),e(this,`cursor`,0),this.source=t,this.boxParser=n,this.children=[];let r=this.readUint32();this.type=this.readString(4),r===1&&(this.cursor+=8);let i=t.byteOffset+this.cursor,a;r===0||r===1?(this.size=void 0,this.valid=!1,a=void 0):r>t.byteLength?(this.size=r,this.valid=!1,a=Math.min(r-this.cursor,t.byteLength-this.cursor)):(this.size=r,this.valid=!0,a=r-this.cursor),this.content=new DataView(t.buffer,i,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 ef extends $d{}import{assertNever as tf}from"@vkontakte/videoplayer-shared/es2018";class nf extends $d{constructor(t,n){if(super(t,n),e(this,`userData`,void 0),!this.valid)return;let r=this.readString(16),i=new DataView(this.content.buffer,this.content.byteOffset+16,this.content.byteLength-16);this.userData=this.parseData(r,i)}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:tf(e)}}}class rf extends $d{constructor(t,n){if(super(t,n),e(this,`majorBrand`,void 0),e(this,`minorVersion`,void 0),e(this,`compatibleBrands`,void 0),!this.valid)return;this.compatibleBrands=[],this.majorBrand=this.readString(4),this.minorVersion=this.readUint32();let r=new DataView(this.content.buffer,this.content.byteOffset+8,this.content.byteLength-8);for(let e=0;e<r.byteLength;e+=4){let e=this.readString(4);this.compatibleBrands.push(e)}}}class af extends $d{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}}class of extends $d{constructor(t,n){if(super(t,n),e(this,`version`,void 0),e(this,`flags`,void 0),!this.valid)return;let r=this.readUint32();this.version=r>>>24,this.flags=r&16777215,this.content=new DataView(this.content.buffer,this.content.byteOffset+4,this.content.byteLength-4)}}class sf extends of{constructor(t,n){super(t,n),e(this,`creationTime`,void 0),e(this,`modificationTime`,void 0),e(this,`timescale`,void 0),e(this,`duration`,void 0),e(this,`rate`,void 0),e(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 cf extends $d{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}}class lf extends $d{constructor(t,n){super(t,n),e(this,`data`,void 0),this.data=this.content}}class uf extends of{get earliestPresentationTime(){return this.earliestPresentationTime32}get firstOffset(){return this.firstOffset32}constructor(t,n){if(super(t,n),e(this,`referenceId`,void 0),e(this,`timescale`,void 0),e(this,`earliestPresentationTime32`,void 0),e(this,`firstOffset32`,void 0),e(this,`earliestPresentationTime64`,void 0),e(this,`firstOffset64`,void 0),e(this,`reserved`,void 0),e(this,`referenceCount`,void 0),e(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 df extends $d{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}}class ff extends $d{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}}class pf extends of{constructor(t,n){if(super(t,n),e(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 mf extends of{constructor(t,n){super(t,n),e(this,`poseYawDegrees`,void 0),e(this,`posePitchDegrees`,void 0),e(this,`poseRollDegrees`,void 0),this.valid&&(this.poseYawDegrees=this.readUint32(),this.posePitchDegrees=this.readUint32(),this.poseRollDegrees=this.readUint32())}}class hf extends of{constructor(t,n){super(t,n),e(this,`projectionBoundsTop`,void 0),e(this,`projectionBoundsBottom`,void 0),e(this,`projectionBoundsLeft`,void 0),e(this,`projectionBoundsRight`,void 0),this.valid&&(this.projectionBoundsTop=this.readUint32(),this.projectionBoundsBottom=this.readUint32(),this.projectionBoundsLeft=this.readUint32(),this.projectionBoundsRight=this.readUint32())}}class gf extends $d{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}}class _f extends of{constructor(t,n){super(t,n),e(this,`creationTime`,void 0),e(this,`modificationTime`,void 0),e(this,`trackId`,void 0),e(this,`duration`,void 0),e(this,`layer`,void 0),e(this,`alternateGroup`,void 0),e(this,`volume`,void 0),e(this,`matrix`,void 0),e(this,`width`,void 0),e(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 vf extends $d{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}}class yf extends $d{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}}class bf extends of{constructor(t,n){super(t,n),e(this,`sequenceNumber`,void 0),this.valid&&(this.sequenceNumber=this.readUint32())}}class xf extends $d{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}}class Sf extends of{constructor(t,n){super(t,n),e(this,`trackId`,void 0),e(this,`baseDataOffset`,void 0),e(this,`sampleDescriptionIndex`,void 0),e(this,`defaultSampleDuration`,void 0),e(this,`defaultSampleSize`,void 0),e(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 Cf extends of{get baseMediaDecodeTime(){return this.version===1?this.baseMediaDecodeTime64:this.baseMediaDecodeTime32}constructor(t,n){super(t,n),e(this,`baseMediaDecodeTime32`,0),e(this,`baseMediaDecodeTime64`,BigInt(0)),this.version===1?this.baseMediaDecodeTime64=this.readUint64():this.baseMediaDecodeTime32=this.readUint32()}}class wf extends of{constructor(t,n){super(t,n),e(this,`sampleCount`,void 0),e(this,`dataOffset`,void 0),e(this,`firstSampleFlags`,void 0),e(this,`sampleDuration`,[]),e(this,`sampleSize`,[]),e(this,`sampleFlags`,[]),e(this,`sampleCompositionTimeOffset`,[]),e(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 Tf extends $d{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}}class Ef extends of{constructor(t,n){super(t,n),e(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 Df extends $d{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 Of={ftyp:rf,moov:af,mvhd:sf,moof:cf,mdat:lf,sidx:uf,trak:df,mdia:gf,mfhd:bf,tkhd:_f,traf:xf,tfhd:Sf,tfdt:Cf,trun:wf,minf:vf,sv3d:ff,st3d:pf,prhd:mf,proj:yf,equi:hf,uuid:nf,stbl:Tf,stsd:Ef,avc1:Df,unknown:ef};class kf{constructor(t={}){e(this,`options`,void 0),this.options={offset:0,...t}}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||!Qd(i))break;t.push(i),n+=i.size}return t}createBox(e,t){let n=Of[e];return n?new n(t,new kf):new ef(t,new kf)}}class Af{constructor(t){e(this,`index`,void 0),this.index={},this.indexBoxLevel(t)}indexBoxLevel(e){e.forEach(e=>{var t,n;Qd(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 jf=new TextDecoder(`ascii`),Mf={validateData:e=>jf.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 Af(new kf().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 uf(e,new kf),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 Af(new kf().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 Af(new kf().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 Af(new kf().parse(e)),n={},r=t.findAll(`uuid`),i=Zd.default(r,-1);return i?{serverDataReceivedTimestamp:i.userData.received,serverDataPreparedTime:i.userData.received}:n},getTimescaleFromIndex:e=>new Af(new kf().parse(e)).find(`sidx`)?.timescale},Nf=l(Xe(),1);import{assertNonNullable as Pf,isNonNullable as Ff,isNullable as If}from"@vkontakte/videoplayer-shared/es2018";import{assertNever as Lf}from"@vkontakte/videoplayer-shared/es2018";var Rf={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`}},zf=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=Bf(e,n),i=r in Rf,a=i?Rf[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=Bf(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}},Bf=(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},Vf=(e,t)=>{switch(t){case`int`:return e.getInt8(0);case`uint`:return Bf(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:Lf(t)}},Hf=(e,t)=>{let n=0;for(;n<e.byteLength;){let r=zf(new DataView(e.buffer,e.byteOffset+n));if(!t(r))return;r.type===`master`&&Hf(r.value,t),n=r.value.byteOffset-e.byteOffset+r.valueSize}},Uf=e=>{if(e.getUint32(0)!==440786851)return!1;let t,n,r;return Hf(zf(e).value,({tag:e,type:i,value:a})=>(e===17143?t=Vf(a,i):e===17026?n=Vf(a,i):e===17029&&(r=Vf(a,i)),!0)),(t===void 0||t<=1)&&n!==void 0&&n===`webm`&&(r===void 0||r<=2)},Wf=[357149030,290298740,374648427,174,224,30320,30321,30322,272869232,524531317,475249515,423732329,307544935],Gf=[231,22612,22743,167,171,163,160,175],Kf={validateData:Uf,parseInit:e=>{let t,n,r,i,a=!1,o=!1,s=!1,c,l,u=!1;return Hf(e,({tag:e,type:d,value:f,valueSize:p})=>(e===21419?l=Bf(Vf(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=Vf(f,d):e===17545?i=Vf(f,d):e===21420&&l===475249515?c=Vf(f,d):e===374648427?Hf(f,({tag:e,type:t,value:n})=>e===30321?(u=Vf(n,t)===1,!1):!0):a&&o&&ua(Wf,e)&&(s=!0),!s)),Pf(t,`Failed to parse webm Segment start`),Pf(n,`Failed to parse webm Segment end`),Pf(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(If(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=>Ff(e.time)&&Ff(e.position),a=[],o;return Hf(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=Vf(s,t));break;case 183:break;case 241:o&&(o.position=Vf(s,t));break;default:n&&ua(Wf,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{Hf(e,r=>r.tag===524531317?r.tagSize<=e.byteLength?(t=r.tagSize,!1):(t+=r.tagHeaderSize,!0):ua(Gf,r.tag)?(t+r.tagSize<=e.byteLength&&(t+=r.tagSize,n||=Nf.default([163,160,175],r.tag)),!0):!1)}catch{}return t>0&&t<=e.byteLength&&n?new DataView(e.buffer,e.byteOffset,t):null}},qf=e=>{let t=/^(.+)\/([^;]+)(?:;.*)?$/.exec(e);if(t){let[,e,n]=t;if(e===`audio`||e===`video`)switch(n){case`webm`:return Kf;case`mp4`:return Mf}}throw ReferenceError(`Unsupported mime type ${e}`)},Jf=l(En(),1);import{videoSizeToQuality as Yf}from"@vkontakte/videoplayer-shared/es2018";var Xf=({id:e,width:t,height:n,bitrate:r,fps:i,quality:a,streamId:o})=>{let s=(a?Vo(a):void 0)??Yf({width:t,height:n});return s&&{id:e,quality:s,bitrate:r,size:{width:t,height:n},fps:i,streamId:o}},Zf=({id:e,bitrate:t})=>({id:e,bitrate:t}),Qf=({language:e,label:t},{id:n,url:r,isAuto:i})=>({id:n,url:r,isAuto:i,type:`internal`,language:e,label:t}),$f=({language:e,label:t,id:n,url:r,isAuto:i})=>({id:n,url:r,isAuto:i,type:`internal`,language:e,label:t}),ep=({id:e,language:t,label:n,codecs:r,isDefault:i})=>({id:e,language:t,label:n,codec:Jf.default(r.split(`.`),0),isDefault:i}),tp=({id:e,language:t,label:n,hdr:r,codecs:i})=>({id:e,language:t,hdr:r,label:n,codec:Jf.default(i.split(`.`),0)}),np=e=>`url`in e,rp=e=>e.type===`template`;class ip{constructor(t,n,r,{fetcher:i,tuning:a,getCurrentPosition:o,getCurrentStallDuration:s,manifest:c}){e(this,`error$`,new Jd),e(this,`playingRepresentation$`,new Xd(void 0)),e(this,`playingRepresentationInit$`,new Xd(void 0)),e(this,`currentSegmentLength$`,new Xd(0)),e(this,`onLastSegment$`,new Xd(!1)),e(this,`fullyBuffered$`,new Xd(!1)),e(this,`kind`,void 0),e(this,`nativeBufferManager`,void 0),e(this,`fetcher`,void 0),e(this,`tuning`,void 0),e(this,`representations`,void 0),e(this,`playingRepresentationId`,void 0),e(this,`downloadingRepresentationId`,void 0),e(this,`switchingRepresentationId`,void 0),e(this,`initData`,new Map),e(this,`initDataPromises`,new Map),e(this,`idleCallbacks`,new Map),e(this,`parsedInitData`,new Map),e(this,`segments`,new Map),e(this,`containerParser`,void 0),e(this,`bufferPlaybackQueue`,[]),e(this,`downloadingBufferItems`,[]),e(this,`preloadOnly`,!1),e(this,`forwardBufferTarget`,void 0),e(this,`failedDownloads`,0),e(this,`lastDataObtainedTimestampMs`,0),e(this,`loadByteRangeSegmentsTimeoutId`,0),e(this,`currentVirtualBufferSize`,0),e(this,`baseUrls`,[]),e(this,`baseUrlsIndex`,0),e(this,`maintainPlaybackBufferMutex`,!1),e(this,`maintainNativeBufferMutex`,!1),e(this,`bufferClearingMutex`,!1),e(this,`abortNativeBufferMutex`,!1),e(this,`switchMutex`,!1),e(this,`destroyAbortController`,new B),e(this,`downloadAbortController`,new B),e(this,`subscription`,new Yd),e(this,`getCurrentPosition`,void 0),e(this,`getCurrentStallDuration`,void 0),e(this,`startWith`,Bd(this.destroyAbortController.signal,async function*(e){let t=this.representations.get(e);Vd(t,`Cannot find representation ${e}`),this.playingRepresentationId=e,this.downloadingRepresentationId=e,this.containerParser=qf(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);Vd(n,`No init buffer for starting representation`),Vd(r,`No segments for starting representation`),await this.nativeBufferManager.addInitSegment(n),this.playingRepresentation$.next(this.playingRepresentationId),this.playingRepresentationInit$.next(i)}.bind(this))),e(this,`switchTo`,Bd(this.destroyAbortController.signal,async function*(e,t=!0){if(U(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);Vd(r,`No such representation ${e}`),Vd(n,`No such representation ${this.downloadingRepresentationId}`),yield this.loadInitIfNeeded(r,`high`);let i=this.initData.get(r.id),a=this.segments.get(r.id);Vd(i,`No init buffer for switching representation`),Vd(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 Vd(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}.bind(this))),e(this,`waitExponentialDownloadDelay`,Bd(this.downloadAbortController.signal,async function*(){let e=Wd(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(t=>{let n=Gd();this.loadByteRangeSegmentsTimeoutId=n.setTimeout(t,e),this.subscription.add(Ud(n,`online`).pipe(qd()).subscribe(()=>{t(),n.clearTimeout(this.loadByteRangeSegmentsTimeoutId)}))})}.bind(this))),this.kind=t,this.nativeBufferManager=n,this.fetcher=i,this.tuning=a,this.getCurrentPosition=o,this.getCurrentStallDuration=s,this.forwardBufferTarget=a.dash.forwardBufferTargetAuto,this.baseUrls=c?.baseUrls??[],this.representations=new Map(r.map(e=>[e.id,e]))}async seek(e){await this.abort(),await this.clearBuffer(),await this.maintain(e)}async maintain(e=this.getCurrentPosition()){U(e)||(await this.maintainPlaybackBuffer(e),await this.maintainNativeBuffer(),this.actualizeLastSegmentInfo(e))}getForwardPlaybackBufferDuration(e=this.getCurrentPosition()){let t=this.bufferPlaybackQueue.filter(e=>e.segment.networkStatus===`downloaded`),n=t[t.length-1],r=H(e)&&H(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}async abort(){this.abortDownload(),await this.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 U(this.playingRepresentationId)?0:(this.segments.get(this.playingRepresentationId)?.[0].time.from??0)/1e3}calculateDurationFromSegments(e){let t=this.segments.get(e);return(t?Nd.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=Gd();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=Xf(e),i=Xf(t);n=H(r)&&H(i)&&Kd(i.quality,r.quality)}else if(this.kind===`audio`){let r=Zf(e),i=Zf(t);n=H(r?.bitrate)&&H(i?.bitrate)&&i.bitrate>r.bitrate}return n}async clearBuffer(){this.bufferClearingMutex=!0,await 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 B,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=[]}async abortNativeBuffer(){this.abortNativeBufferMutex=!0;let e=this.playingRepresentationId&&this.initData.get(this.playingRepresentationId),t=e instanceof ArrayBuffer?e:void 0,n=await this.nativeBufferManager.abortBuffer(t);return this.abortNativeBufferMutex=!1,this.maintainNativeBufferMutex=!1,n}async loadInits(e){await this.loadInit(e,`high`,!0);for(let[e,t]of this.representations)this.idleCallbacks.set(t.id,Rd(async e=>await this.loadInitIfNeeded(t,`low`,!1)))}async loadInitIfNeeded(e,t=`auto`,n=!1){let r=this.initDataPromises.get(e.id),i;i=this.initData.has(e.id)&&this.segments.has(e.id)?Promise.resolve():H(r)?r:this.loadInit(e,t,n),await i}async loadInit(e,t=`auto`,n=!1){try{let n=this.tuning.dash.useFetchPriorityHints?t:`auto`,r=this.fetcher.fetchRepresentation(e.segmentReference,this.containerParser,n);this.initDataPromises.set(e.id,r);let{initMetadata:i,initDataView:a,segments:o}=await r??{};if(this.initDataPromises.delete(e.id),U(a)||U(o))return;i&&this.parsedInitData.set(e.id,i);let s=a.buffer.slice(a.byteOffset,a.byteOffset+a.byteLength);this.initData.set(e.id,s),this.segments.set(e.id,o),this.failedDownloads=0}catch(e){n&&this.error$.next({id:`LoadInits`,category:Hd.WTF,message:`loadInit threw`,thrown:e})}}async maintainNativeBuffer(){let e=this.getCurrentPosition(),t=this.segments.get(this.downloadingRepresentationId??``),n=t?.[t?.length-1];if(U(e)||U(n)||this.maintainNativeBufferMutex||this.abortNativeBufferMutex||this.bufferClearingMutex||this.switchMutex||this.preloadOnly)return;this.maintainNativeBufferMutex=!0;let r=this.bufferPlaybackQueue.find(t=>this.withinInterval(e,t.segment.time)),i=this.bufferPlaybackQueue.find(e=>e.segment.bufferStatus!==`fed`),a=this.initData.get(i?.representationId??``),o=this.bufferPlaybackQueue[0],s=this.downloadAbortController.signal,c=(this.getCurrentStallDuration()??0)>0;this.tuning.dash.useBufferHoldingOnlyOnStall&&(c&&=e>0);let l=Math.min(this.tuning.dash.minSafeBufferToPlay,n.time.to-e),u=c?this.getForwardPlaybackBufferDuration()>=l:!0;H(a)&&H(i)&&H(r)&&this.playingRepresentationId!==i.representationId&&this.withinAppendInterval(e,i.segment.time)&&(i===r||r.segment.bufferStatus===`fed`)&&(await this.abortNativeBuffer(),await this.nativeBufferManager.addInitSegment(a,this.downloadAbortController.signal),this.playingRepresentationId=i.representationId,this.playingRepresentation$.next(this.playingRepresentationId)),H(i)&&this.withinAppendInterval(e,i.segment.time)&&u&&(i.segment.loadedBytes===i.segment.size&&i.segment.bufferStatus===`none`?await this.appendSegmentFully(i,s):await this.appendSegmentPartially(i,s)),H(o)&&this.withinRemoveInterval(e,o.segment.time)&&await this.removeSegment(o,s),this.pruneVirtualBuffer(e),this.maintainNativeBufferMutex=!1}async maintainPlaybackBuffer(e){Vd(this.downloadingRepresentationId);let t=this.segments.get(this.downloadingRepresentationId),n=this.representations.get(this.downloadingRepresentationId);if(U(t)||U(n)||this.maintainPlaybackBufferMutex||this.abortNativeBufferMutex||this.bufferClearingMutex||this.switchMutex)return;this.maintainPlaybackBufferMutex=!0;let r=t.find(t=>e>=t.time.from&&e<t.time.to);H(r)&&isFinite(r.time.from)&&isFinite(r.time.to)&&this.currentSegmentLength$.next(r?.time.to-r.time.from),this.downloadingBufferItems.length||(this.downloadingBufferItems=this.selectDownloadingItems(e,t)),await this.processCachedItems();let i=this.selectItemsToLoad();await this.loadItems(i,n),this.maintainPlaybackBufferMutex=!1}actualizeLastSegmentInfo(e){let t=this.segments.get(this.downloadingRepresentationId??``);if(U(t)||t.length===0)return;let n=t[t?.length-1];U(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){Vd(this.downloadingRepresentationId);let n=this.getPlaybackBufferState(),r,i;H(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}async processCachedItems(){let e=[...this.downloadingBufferItems];for(;e.length&&e[0].segment.networkStatus===`downloaded`;)await this.onDownloadItem(e[0]),e.shift()}withinInterval(e,{from:t,to:n},r=this.tuning.dash.bufferTolerance){return H(e)?e+r>=t&&e<n:!1}withinAppendInterval(e,{from:t,to:n}){let{actionTimeShiftFromSegment:r}=this.tuning.dash;return H(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 H(e)?e-n>t:!1}async appendSegmentFully(e,t){U(e.segment.data)||(e.segment.feedingBytes=e.segment.size,await this.nativeBufferManager.append(e.segment.data,t)&&(e.segment.fedBytes=e.segment.size,this.onItemFullyAppended(e)))}async appendSegmentPartially(e,t){if(U(e.segment.data)||U(e.segment.loadedBytes)||U(e.segment.feedingBytes)||U(e.segment.fedBytes)||U(e.segment.size))return;let n=e.segment.data,r=new DataView(n.buffer,n.byteOffset+e.segment.feedingBytes,n.byteLength-e.segment.feedingBytes),i=e.segment.loadedBytes===e.segment.size?r:this.parseFeedableSegmentChunk(r);i?.byteLength&&(e.segment.bufferStatus=`partially_fed`,e.segment.feedingBytes+=i.byteLength,await this.nativeBufferManager.append(i,t)&&(e.segment.fedBytes+=i.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`}async removeSegment(e,t){let{from:n,to:r}=e.segment.time,i=(r-n)/4;await this.nativeBufferManager.remove(0,r-i,t)&&(e.segment.fedBytes=0,e.segment.feedingBytes=0,e.segment.bufferStatus=`none`,this.bufferPlaybackQueue.shift())}async onDownloadItem(e){if(!this.downloadingBufferItems.find(t=>t===e))return;let t=this.getCurrentPosition();return this.downloadingBufferItems=this.downloadingBufferItems.filter(t=>t!==e||t.segment.networkStatus!==`downloaded`),(this.preloadOnly||H(t)&&!this.withinRemoveInterval(t,e.segment.time))&&!this.bufferPlaybackQueue.find(t=>t===e)&&this.bufferPlaybackQueue.push(e),this.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)H(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())H(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 ap,isNonNullable as op,isNullable as sp,now as cp,isAbortError as lp}from"@vkontakte/videoplayer-shared/es2018";class up extends ip{constructor(e,t,n,r){super(e,t,n,r)}async loadItems(e,t,n=`auto`){let{signal:r}=this.downloadAbortController;if(r.aborted||!e.length)return;let{url:i,...a}=this.prepareFetchParams(e,t);if(this.failedDownloads&&await this.waitExponentialDownloadDelay(),!r.aborted)try{await this.fetcher.fetch(i,{...a,priority:n}),this.lastDataObtainedTimestampMs=cp(),this.failedDownloads=0}catch(e){this.abortDownloadingItems(),lp(e)||(this.failedDownloads++,this.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){if(Ol(t.segmentReference))throw Error(`Representation is not byte range type`);let{signal:n}=this.downloadAbortController,r=t.segmentReference.url,i={from:e[0].segment.byte.from,to:e[e.length-1].segment.byte.to};return{url:r,range:i,onProgress:async(r,a)=>{if(!n.aborted)try{this.lastDataObtainedTimestampMs=cp(),await this.onSomeDataLoaded({downloadingItems:e,dataView:r,loaded:a,signal:n,globalFrom:i?i.from:0,representationId:t.id})}catch(e){this.error$.next({id:`SegmentFeeding`,category:ap.VIDEO_PIPELINE,message:`Error when feeding segments`,thrown:e})}},signal:n,bufferOptimisation:this.tuning.dash.fetcherBufferOptimisation}}async onSomeDataLoaded({downloadingItems:e,dataView:t,representationId:n,globalFrom:r,loaded:i,signal:a}){let o=this.representations.get(n);if(!(!this.downloadingBufferItems.length||sp(o)||sp(r)||a.aborted))for(let n of e){let{segment:e}=n,a=e.byte.from-r,o=e.byte.to-r,s=o-a+1,c=a<i,l=o<=i;e.size=s,c&&(e.networkStatus===`downloading`&&e.bufferStatus===`none`&&l?(e.data=new DataView(t.buffer,t.byteOffset+a,s),this.currentVirtualBufferSize+=e.size,this.onItemFullyDownloaded(n),e.loadedBytes=Math.min(s,i-a),await this.onDownloadItem(n)):op(e.feedingBytes)&&this.tuning.dash.enableSubSegmentBufferFeeding&&e.networkStatus===`downloading`&&(e.loadedBytes=Math.min(s,i-a),l&&(this.currentVirtualBufferSize+=e.size,this.onItemFullyDownloaded(n)),e.loadedBytes>e.feedingBytes&&(e.data=new DataView(t.buffer,t.byteOffset+a,e.loadedBytes),await this.onDownloadItem(n))))}}updateRepresentationBaseUrl(e,t){if(Ol(e.segmentReference))throw Error(`Representation is not byte range type`);e.segmentReference.url=t}}import{ErrorCategory as dp,isAbortError as fp,isNullable as pp,now as mp}from"@vkontakte/videoplayer-shared/es2018";class hp extends ip{constructor(e,t,n,r){super(e,t,n,r)}async loadItems(e,t,n=`auto`){let{signal:r}=this.downloadAbortController;if(r.aborted||!e.length)return;let{url:i,...a}=this.prepareFetchParams(e,t);if(this.failedDownloads&&await this.waitExponentialDownloadDelay(),!r.aborted)try{let t=await this.fetcher.fetch(i,{...a,priority:n});if(this.lastDataObtainedTimestampMs=mp(),pp(t))return;let r=e[0],o=new DataView(t);r.segment.size=o.byteLength,r.segment.loadedBytes=o.byteLength,r.segment.data=o,this.onItemFullyDownloaded(r),await this.onDownloadItem(r),this.failedDownloads=0}catch(e){this.abortDownloadingItems(),fp(e)||(this.failedDownloads++,this.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){let n=this.getFetchUrl(e,t).toString(),{signal:r}=this.downloadAbortController;return{url:n,onProgress:async(n,i)=>{if(!r.aborted)try{this.lastDataObtainedTimestampMs=mp(),await this.onSomeDataLoaded({downloadingItems:e,dataView:n,loaded:i,signal:r,representationId:t.id})}catch(e){this.error$.next({id:`SegmentFeeding`,category:dp.VIDEO_PIPELINE,message:`Error when feeding segments`,thrown:e})}},signal:r,bufferOptimisation:this.tuning.dash.fetcherBufferOptimisation}}getFetchUrl(e,t){if(!Ol(t.segmentReference))throw Error(`Representation is not template type`);return new URL(e[0].segment.url,t.segmentReference.baseUrl)}async onSomeDataLoaded({downloadingItems:e,dataView:t,representationId:n,loaded:r,signal:i}){let a=e[0],{segment:o}=a,s=this.representations.get(n);!this.downloadingBufferItems.length||pp(s)||pp(o.feedingBytes)||o.networkStatus!==`downloading`||i.aborted||(o.loadedBytes=r,o.loadedBytes>o.feedingBytes&&this.tuning.dash.enableSubSegmentBufferFeeding&&(o.data=new DataView(t.buffer,t.byteOffset,o.loadedBytes),await this.onDownloadItem(a)))}updateRepresentationBaseUrl(e,t){if(!Ol(e.segmentReference))throw Error(`Representation is not template type`);e.segmentReference.baseUrl=t}}var gp=l(In(),1);import{assertNonNullable as _p,ErrorCategory as vp,isNullable as yp,ValueSubject as bp}from"@vkontakte/videoplayer-shared/es2018";class xp extends hp{constructor(t,n,r,i){super(t,n,r,i),e(this,`currentLiveSegmentServerLatency$`,new bp(0)),e(this,`currentLowLatencySegmentLength$`,new bp(0)),e(this,`liveInitialAdditionalOffset`,0),e(this,`isSeekingLive`,!1),e(this,`isActiveLowLatency`,void 0),this.isActiveLowLatency=i.isActiveLowLatency}updateManifest(e){if(!e||[...this.segments.values()].every(e=>!e.length))return;let t=gp.default(e.streams[this.kind],e=>e.representations);for(let e of t){if(yp(e)||!Ol(e.segmentReference))return;let t=e.segmentReference.segments.map(e=>({...e,networkStatus:`none`,bufferStatus:`none`,size:void 0})),n=this.segments.get(e.id)??[],r=$s(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;_p(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=gp.default(t,e=>e.representations).find(e=>e.id===this.downloadingRepresentationId);if(yp(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(yp(this.playingRepresentationId))return 0;let e=this.representations.get(this.playingRepresentationId)?.segmentReference;return yp(e)||!Ol(e)?0:this.getActualLiveStartingSegments(e)[0].time.from+this.tuning.dash.bufferTolerance}prepareFetchParams(e,t){return{...super.prepareFetchParams(e,t),isLowLatency:this.isActiveLowLatency()}}async onSomeDataLoaded({downloadingItems:e,...t}){await super.onSomeDataLoaded({downloadingItems:e,...t}),this.isActiveLowLatency()&&this.updateLowLatencyItemTime(e[0])}onItemFullyDownloaded(e){if(super.onItemFullyDownloaded(e),yp(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(yp(e.segment.data)||yp(n)||!Ol(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(!Ol(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=_d(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}async loadInit(e,t=`auto`,n=!1){try{let n=this.tuning.dash.useFetchPriorityHints?t:`auto`,r=this.fetcher.fetchRepresentation(e.segmentReference,this.containerParser,n);this.initDataPromises.set(e.id,r);let{initMetadata:i,initDataView:a,segments:o}=await r??{};if(this.initDataPromises.delete(e.id),yp(a)||yp(o))return;i&&this.parsedInitData.set(e.id,i);let s=this.getActualLiveStartingSegments(e.segmentReference);this.segments.has(e.id)||this.segments.set(e.id,s);let c=a.buffer.slice(a.byteOffset,a.byteOffset+a.byteLength);this.initData.set(e.id,c),this.failedDownloads=0}catch(e){n&&this.error$.next({id:`LoadInits`,category:vp.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 Sp{static getBufferManager(e,t,n,r){return r.manifest?.live?new xp(e,t,n,r):Ol(n[0].segmentReference)?new hp(e,t,n,r):new up(e,t,n,r)}}import{ErrorCategory as Cp,fromEvent as wp,isNullable as Tp,Subject as Ep,Subscription as Dp}from"@vkontakte/videoplayer-shared/es2018";import{assertNever as Op,ErrorCategory as kp,Subject as Ap}from"@vkontakte/videoplayer-shared/es2018";var jp=18,Mp=!1;try{Mp=P.browser.isSafari&&!!P.browser.safariVersion&&P.browser.safariVersion<=jp}catch(e){console.error(e)}class Np{constructor(t,n=!1){e(this,`bufferFull$`,new Ap),e(this,`error$`,new Ap),e(this,`buffer`,void 0),e(this,`queue`,[]),e(this,`currentTask`,null),e(this,`destroyed`,!1),e(this,`abortRequested`,!1),e(this,`isAbortFixEnabled`,!1),e(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:kp.VIDEO_PIPELINE,message:`Buffer appending or removal failed`,thrown:e})}}),this.buffer=t,this.isAbortFixEnabled=n,this.buffer.addEventListener(`updateend`,this.completeTask)}async append(e,t){return t&&t.aborted?!1:new Promise(n=>{let r={operation:`append`,data:e,signal:t,callback:n};this.queue.push(r),this.pull()})}async remove(e,t,n){return n&&n.aborted?!1:new Promise(r=>{let i={operation:`remove`,from:e,to:t,signal:n,callback:r};this.queue.unshift(i),this.pull()})}async abort(e){return new Promise(t=>{let n,r=e=>{this.abortRequested=!1,t(e)};n=Mp&&e?{operation:`safariAbort`,init:e,callback:r}:{operation:`abort`,callback:r};for(let{callback:e}of this.queue)e(!1);this.abortRequested=!0,n&&(this.queue=[n]),this.pull()})}destroy(){this.destroyed=!0,this.buffer.removeEventListener(`updateend`,this.completeTask),this.queue=[],this.currentTask=null;try{this.buffer.abort()}catch(e){if(!(e instanceof DOMException&&e.name===`InvalidStateError`))throw e}}pull(){if((this.buffer.updating||this.currentTask||this.destroyed)&&!this.abortRequested)return;let e=this.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:kp.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:Op(t)}}}var Pp=Np,Fp=(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 Ip{constructor(t){e(this,`error$`,new Ep),e(this,`mediaSource`,void 0),e(this,`sourceBuffer`,void 0),e(this,`sourceBufferTaskQueue`,void 0),e(this,`subscription`,new Dp),this.mediaSource=t}init(e,t,n=!1){this.sourceBuffer=this.mediaSource.addSourceBuffer(`${e}; codecs="${t}"`),this.sourceBufferTaskQueue=new Pp(this.sourceBuffer,n),this.subscription.add(this.sourceBufferTaskQueue.error$.subscribe(e=>this.error$.next(e))),this.subscription.add(wp(this.sourceBuffer,`error`).subscribe(()=>this.error$.next({id:`SourceBuffer`,category:Cp.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)}async clear(e){let t=this.getBufferState();if(Tp(t))return Promise.resolve(!1);let n=!0;await this.sourceBufferTaskQueue.abort();for(let r of t)n&&=await this.sourceBufferTaskQueue.remove(r.from,r.to,e);return n}warmUpMediaSource(){!Tp(this.sourceBuffer)&&!this.sourceBuffer.updating&&(this.sourceBuffer.mode=`segments`)}getBufferState(){if(Tp(this.sourceBuffer)||!L(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 Tp(this.sourceBuffer)||!L(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length||Tp(e)?0:Fp(this.sourceBuffer.buffered,e)}async abortBuffer(e){return Tp(this.sourceBuffer)?!1:this.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 Lp=(e,t)=>{e.video.forEach(e=>{e.representations=e.representations.filter(({fps:e,height:n,codecs:r})=>{let i=t.find(([e,t,i])=>e===`${n}p`&&Ad(r)===i)?.[1];return i&&Number.isInteger(i)&&e&&Number.isInteger(e)?e<=i:!0})})},Rp=[`timeupdate`,`progress`,`play`,`seeked`,`stalled`,`waiting`],zp=[`timeupdate`,`progress`,`loadeddata`,`playing`,`seeked`];class Bp{constructor(t){e(this,`element`,null),e(this,`manifestUrlString`,``),e(this,`source`,null),e(this,`manifest`,null),e(this,`tuning`,void 0),e(this,`tracer`,void 0),e(this,`forceVideoCodec`,void 0),e(this,`videoBufferManager`,void 0),e(this,`audioBufferManager`,void 0),e(this,`bufferManagers`,[]),e(this,`videoNativeBufferManager`,void 0),e(this,`audioNativeBufferManager`,void 0),e(this,`nativeBufferManagers`,[]),e(this,`throughputEstimator`,void 0),e(this,`subscription`,new Bu),e(this,`subscriptionRemovable`,new Vu),e(this,`representationSubscription`,new Bu),e(this,`fetcher`,void 0),e(this,`forceEnded$`,new zu),e(this,`stallWatchdogSubscription`,void 0),e(this,`destroyController`,new B),e(this,`state$`,new F(`none`)),e(this,`currentVideoRepresentation$`,new V(void 0)),e(this,`currentVideoRepresentationInit$`,new V(void 0)),e(this,`currentAudioRepresentation$`,new V(void 0)),e(this,`currentVideoSegmentLength$`,new V(0)),e(this,`currentAudioSegmentLength$`,new V(0)),e(this,`error$`,new zu),e(this,`manifestRequested`,new zu),e(this,`manifestReceived`,new zu),e(this,`firstBytesRequested`,new zu),e(this,`firstBytesReceived`,new zu),e(this,`lastConnectionType$`,new V(void 0)),e(this,`lastConnectionReused$`,new V(void 0)),e(this,`lastRequestFirstBytes$`,new V(void 0)),e(this,`lastConnectionMetrics$`,new V(void 0)),e(this,`lastDownloadMetrics$`,new V(void 0)),e(this,`currentLiveTextRepresentation$`,new V(null)),e(this,`timeoutSourceOpenId`,void 0),e(this,`isLive$`,new V(!1)),e(this,`isActiveLive$`,new V(!1)),e(this,`isLowLatency$`,new V(!1)),e(this,`liveDuration$`,new V(0)),e(this,`liveSeekableDuration$`,new V(0)),e(this,`liveAvailabilityStartTime$`,new V(0)),e(this,`liveStreamStatus$`,new V(void 0)),e(this,`currentBuffer$`,new V({from:0,to:0})),e(this,`bufferLength$`,new V(0)),e(this,`nativeBufferLength$`,new V(0)),e(this,`liveLatency$`,new V(void 0)),e(this,`liveLoadBufferLength$`,new V(0)),e(this,`livePositionFromPlayer$`,new V(0)),e(this,`currentStallDuration$`,new V(0)),e(this,`videoLastDataObtainedTimestamp$`,new V(0)),e(this,`fetcherRecoverableError$`,new zu),e(this,`fetcherError$`,new zu),e(this,`initRepresentations`,wu(this.destroyController.signal,async function*(e,t,n){this.tracer.log(`initRepresentationsStart`,ku({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(),Tu(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`)}.bind(this))),e(this,`fetchManifest`,wu(this.destroyController.signal,async function*(){try{return yield this.fetcher.fetchManifest(this.manifestUrlString)}catch(e){Fu(this.manifest)&&!this.bufferLength$.getValue()&&this.error$.next({id:`LoadManifest`,category:Eu.NETWORK,message:`Failed to load manifest`,thrown:e})}}.bind(this))),this.throughputEstimator=t.throughputEstimator,this.tuning=t.tuning,this.tracer=t.tracer.createComponentTracer(this.constructor.name),this.forceVideoCodec=t.forceVideoCodec,this.fetcher=new rd({throughputEstimator:this.throughputEstimator,requestQuic:this.tuning.requestQuick,compatibilityMode:t.compatibilityMode,tracer:this.tracer,useEnableSubtitlesParam:t.tuning.useEnableSubtitlesParam}),this.subscription.add(this.fetcher.recoverableError$.subscribe(this.fetcherRecoverableError$)),this.subscription.add(this.fetcher.error$.subscribe(this.fetcherError$)),this.initTracerSubscription()}async initManifest(e,t,n){this.tracer.log(`initManifest`),this.state$.startTransitionTo(`manifest_ready`),this.element=e,this.manifestUrlString=this.prepareManifestUrlString(t,n),this.manifest=await this.updateManifest(),this.manifest?.streams.video.length?this.state$.setState(`manifest_ready`):this.error$.next({id:`NoRepresentations`,category:Eu.PARSER,message:`No playable video representations`})}initBuffer(){Tu(this.element),this.state$.setState(`running`),this.subscription.add(Lu(...Rp.map(e=>Au(this.element,e)),Au(Mu(),`online`),Nu(this.tuning.dash.tickMaintainInterval)).subscribe(()=>this.tick(),e=>this.error$.next({id:`DashVKPlayer`,category:Eu.WTF,message:`Internal logic error`,thrown:e})));let e=[...this.source?.activeSourceBuffers??[]];this.subscription.add(Lu(...e.map(e=>Au(e,`updateend`))).subscribe(e=>this.reinitDecoderIfNeeded())),this.subscription.add(Au(this.element,`waiting`).subscribe(e=>{this.stallWatchdogSubscription&&(this.stallWatchdogSubscription.unsubscribe(),this.subscriptionRemovable.remove(this.stallWatchdogSubscription)),this.stallWatchdogSubscription=Nu(this.tuning.dash.stallWatchdogInterval).subscribe(()=>this.stallWatchdogIntervalCallback(),e=>this.error$.next({id:`StallWatchdogCallback`,category:Eu.NETWORK,message:`Can't restore DASH after stall.`,thrown:e})),this.subscriptionRemovable.add(this.stallWatchdogSubscription)}))}async switchRepresentation(e,t,n=!1){return{video:this.videoBufferManager,audio:this.audioBufferManager,text:null}[e]?.switchTo(t,n)}async seek(e,t=!1){Tu(this.element),Tu(this.videoBufferManager);let n;n=t||this.element.duration*1e3<=this.tuning.dashSeekInSegmentDurationThreshold||Math.abs(this.element.currentTime*1e3-e)<=this.tuning.dashSeekInSegmentAlwaysSeekDelta?e:Math.max(this.videoBufferManager.findSegmentStartTime(e)??e,this.audioBufferManager?.findSegmentStartTime(e)??e),this.warmUpMediaSourceIfNeeded(n),this.element.currentTime=n/1e3,P.browser.isSafari?(await this.audioBufferManager?.seek(n),await this.videoBufferManager.seek(n)):(await this.videoBufferManager.seek(n),await this.audioBufferManager?.seek(n)),this.tracer.log(`seek`,ku({requestedPosition:e,forcePrecise:t,position:n}))}warmUpMediaSourceIfNeeded(e=this.element?.currentTime){Pu(this.element)&&Pu(this.source)&&Pu(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&&Mu().clearTimeout(this.timeoutSourceOpenId),this.destroyController.abort(),this.fetcher.destroy(),this.stop(),Pu(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`}async reinitDecoderIfNeeded(e=!1){let t=this.videoNativeBufferManager?.getBufferState()??[];if(Fu(this.element)||!t.length)return;let n=this.element.currentTime*1e3;this.element.readyState<3&&t.some(e=>n>=e.from&&n<=e.to)&&(e?await this.seek(n):this.element.currentTime=this.element.currentTime)}async stallWatchdogIntervalCallback(){Tu(this.element),Tu(this.source);let{stallWatchdogInterval:e}=this.tuning.dash;if(this.isStreamNotOpen)return;let t=this.currentStallDuration$.getValue()+e;this.currentStallDuration$.next(t);let n={timeInWaiting:t};if(await this.reinitDecoderIfNeeded(t%1e3==0),this.isStallExceeded(t)){if(this.tuning.dash.useNewStallExitPolicy)return this.seek(this.element.currentTime*1e3);throw Error(`Stall timeout exceeded: ${t} ms`)}await this.restoreAfterDeepStall(n),this.tracer.log(`stallIntervalCallback`,ku(n))}isStallExceeded(e){let{crashOnStallTimeout:t,crashOnStallTWithoutDataTimeout:n}=this.tuning.dash,r=Ru(),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=Pu(this.videoBufferManager)&&o<100&&r-i>n,l=Pu(this.audioBufferManager)&&s<100&&r-a>n;return(c||l)&&e>n||e>=t}async updateManifest(){this.tracer.log(`updateManifestStart`,{manifestUrl:this.manifestUrlString});let e=await this.fetchManifest();if(Fu(e))return null;let t=this.parseManifest(e);if(!t)return null;let n=this.getResultManifest(t);return this.tracer.log(`updateManifestEnd`,ku(n)),n}parseManifest(e){try{return vd(e??``,this.manifestUrlString)}catch(t){let n=Cu(e)??{id:`ManifestParsing`,category:Eu.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=Si())==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=kd(e),s=i[0]),a===`video`&&(r=Od(e),s=this.forceVideoCodec&&ua(r,this.forceVideoCodec)?this.forceVideoCodec:r[0]),s&&(t[a]=o.filter(({codecs:e})=>Ad(e)===s))}else s=Dd(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);P.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&&Lp(t,i)}}let a={...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){Tu(this.manifest),Tu(this.element);let i=e=>{this.representationSubscription.add(Au(e,`error`).pipe(Du(e=>!!this.element?.played.length)).subscribe(e=>{this.error$.next({id:`VideoSource`,category:Eu.VIDEO_PIPELINE,message:`Unexpected video source error`,thrown:e})}))};this.source=Ti();let a=Mu().document,o=a.createElement(`source`);if(i(o),o.src=URL.createObjectURL(this.source),this.element.appendChild(o),Ci())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 Ip(this.source),this.videoBufferManager=Sp.getBufferManager(`video`,this.videoNativeBufferManager,s,e),this.bufferManagers=[this.videoBufferManager],this.nativeBufferManagers=[this.videoNativeBufferManager],Pu(n)){this.audioNativeBufferManager=new Ip(this.source);let t=this.manifest.streams.audio.reduce((e,t)=>[...e,...t.representations],[]);this.audioBufferManager=Sp.getBufferManager(`audio`,this.audioNativeBufferManager,t,e),this.bufferManagers.push(this.audioBufferManager),this.nativeBufferManagers.push(this.audioNativeBufferManager)}}async waitStreamToOpen(){if(this.isStreamNotOpen){let e=this.tuning.dash.sourceOpenTimeout>=0;await new Promise(t=>{e&&(this.timeoutSourceOpenId=Mu().setTimeout(()=>{if(this.isStreamNotOpen){t();return}this.error$.next({id:`OpenOfStream`,category:Eu.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&&Mu().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(Lu(...this.bufferManagers.map(e=>e.error$)).subscribe(this.error$)),Tu(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(Lu(...zp.map(e=>Au(this.element,e))).pipe(Iu(e=>this.videoBufferManager?.getPlaybackBufferState()),Du(Pu),Iu(({from:e,to:t})=>({from:e/1e3,to:t/1e3}))).subscribe(this.currentBuffer$)),this.representationSubscription.add(Lu(...zp.map(e=>Au(this.element,e))).pipe(Iu(e=>Math.min(this.videoBufferManager?.getForwardPlaybackBufferDuration()??0,this.audioBufferManager?.getForwardPlaybackBufferDuration()??0,this.audioBufferManager?.getForwardPlaybackBufferDuration()??0)),Ou()).subscribe(this.bufferLength$)),this.representationSubscription.add(this.nativeBufferLength$.pipe(Du(e=>e>this.tuning.dash.bufferEmptinessTolerance)).subscribe(e=>this.stopStallWatchdogSubscription()))}initTracerSubscription(){let e=ju(this.tracer.error.bind(this.tracer));this.subscription.add(this.error$.subscribe(e(`error`)))}async tick(){if(Fu(this.element)||Fu(this.videoBufferManager)||this.isStreamNotOpen)return;let e=this.element.currentTime*1e3,t=(this.videoNativeBufferManager?.getBufferState()??[]).find(t=>e>=t.from&&e<=t.to);this.nativeBufferLength$.next(t?t.to-e:0),await this.videoBufferManager.maintain(e),await this.audioBufferManager?.maintain(e)}}import{assertNonNullable as Vp,combine as Hp,ErrorCategory as Up,filter as Wp,filterChanged as Gp,fromEvent as Kp,isNonNullable as qp,map as Jp,merge as Yp}from"@vkontakte/videoplayer-shared/es2018";class Xp extends Bp{constructor(e){super(e)}prepareManifestUrlString(e,t){return e}initRepresentationSubscriptions(){super.initRepresentationSubscriptions(),this.initDisableStallWatchdogSubscription(),this.initEndOfVideoSubscription()}setSourceDuration(){Vp(this.manifest),Vp(this.source);let e=[this.manifest.duration??0,...cu.default(cu.default([...this.manifest.streams.audio,...this.manifest.streams.video],e=>e.representations),e=>{let t=[];return e.duration&&t.push(e.duration),Ol(e.segmentReference)&&e.segmentReference.totalSegmentsDurationMs&&t.push(e.segmentReference.totalSegmentsDurationMs),t})];this.source.duration=Math.max(...e)/1e3}async restoreAfterDeepStall(e){Vp(this.element);let t=this.element.currentTime*1e3;await Promise.all([this.videoBufferManager?.maintain(t),this.audioBufferManager?.maintain(t)]),e.position=t}initDisableStallWatchdogSubscription(){Vp(this.element);let e=Yp(Kp(this.element,`ended`),this.forceEnded$),t=this.nativeBufferLength$.pipe(Wp(e=>e>this.tuning.dash.bufferEmptinessTolerance));this.representationSubscription.add(Yp(e,t).subscribe(e=>this.stopStallWatchdogSubscription()))}initEndOfVideoSubscription(){let e=Hp({allBuffersFull:Yp(...this.bufferManagers.map(e=>e.fullyBuffered$)).pipe(Jp(()=>this.bufferManagers.every(e=>e.fullyBuffered$.getValue()))),someBufferEnded:Yp(...this.bufferManagers.map(e=>e.onLastSegment$)).pipe(Jp(()=>this.bufferManagers.some(e=>e.onLastSegment$.getValue())))}).pipe(Gp(),Jp(({allBuffersFull:e,someBufferEnded:t})=>e&&t),Wp(e=>e));this.representationSubscription.add(Yp(this.forceEnded$,e).pipe(Wp(e=>qp(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:Up.VIDEO_PIPELINE,message:`Failed to end MediaSource stream`,thrown:e})}}))}}class Zp extends su{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(rl(),nl(e=>il(e))).subscribe(e=>{let t=this.player.calculateDurationFromSegments(e);t&&this.params.output.duration$.next(t/1e3)},r))}getPlayer(){return new Xp({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 Qp,merge as $p,filter as em,filterChanged as tm,isNullable as nm,map as rm,ValueSubject as im,isNonNullable as am}from"@vkontakte/videoplayer-shared/es2018";import{isNullable as om,ValueSubject as sm}from"@vkontakte/videoplayer-shared/es2018";class cm{constructor(t){e(this,`prevReported`,void 0),e(this,`rawSeries$`,void 0),e(this,`smoothedSeries$`,void 0),e(this,`reportedSeries$`,void 0),e(this,`smoothed`,void 0),e(this,`pastMeasures`,[]),e(this,`takenMeasures`,0),e(this,`measuresCursor`,0),e(this,`params`,void 0),e(this,`smoothed$`,void 0),e(this,`debounced$`,void 0),this.params=t,this.pastMeasures=Array(t.deviationDepth),this.smoothed=this.prevReported=t.initial,this.smoothed$=new sm(t.initial),this.debounced$=new sm(t.initial);let n=t.label??`value`+Math.random().toString(16).substring(2,6);this.rawSeries$=new os(`raw_${n}`),this.smoothedSeries$=new os(`smoothed_${n}`),this.reportedSeries$=new os(`reported_${n}`),this.rawSeries$.next(t.initial),this.smoothedSeries$.next(t.initial),this.reportedSeries$.next(t.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)&&(om(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 lm extends cm{constructor(t){super(t),e(this,`slow`,void 0),e(this,`fast`,void 0),this.slow=this.fast=t.initial}updateSmoothedValue(e){this.slow=Hl(this.slow,e,this.params.emaAlphaSlow),this.fast=Hl(this.fast,e,this.params.emaAlphaFast),this.smoothed=(this.params.fastDirection>0?Math.max:Math.min)(this.slow,this.fast)}}class um extends cm{constructor(t){super(t),e(this,`emaSmoothed`,void 0),this.emaSmoothed=t.initial}updateSmoothedValue(e){let t=Ul(this.pastMeasures,this.takenMeasures);this.emaSmoothed=Hl(this.emaSmoothed,e,this.params.emaAlpha),this.smoothed=Wl(this.pastMeasures,this.takenMeasures,this.measuresCursor-1,this.params.basisTrendChangeCount)?this.emaSmoothed:t}}class dm extends cm{constructor(t){super(t),e(this,`extremumInterval`,void 0),e(this,`furtherValues`,[]),e(this,`currentTopExtremumValue`,0),this.extremumInterval=t.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?Hl(this.smoothed,e,this.params.emaAlpha):e}}class fm{static getSmoothedValue(e,t,n){return n.type===`TwoEma`?new lm({initial:e,emaAlphaSlow:n.emaAlphaSlow,emaAlphaFast:n.emaAlphaFast,changeThreshold:n.changeThreshold,fastDirection:t,deviationDepth:n.deviationDepth,deviationFactor:n.deviationFactor,label:`throughput`}):new um({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 dm({initial:e,label:`liveEdgeDelay`,...t})}}import{assertNonNullable as pm,combine as mm,ErrorCategory as hm,filter as gm,filterChanged as _m,fromEvent as vm,interval as ym,isNonNullable as bm,isNullable as xm,map as Sm,now as Cm,throttle as wm}from"@vkontakte/videoplayer-shared/es2018";var Tm=(e,t)=>{e&&e.playbackRate!==t&&(e.playbackRate=t)};import{isNullable as Em,ValueSubject as Dm}from"@vkontakte/videoplayer-shared/es2018";class Om{constructor(t,n){e(this,`currentRepresentation$`,new Dm(null)),e(this,`maxRepresentations`,4),e(this,`representationsCursor`,0),e(this,`representations`,[]),e(this,`getCurrentPosition`,void 0),e(this,`currentSegment`,null),this.getCurrentPosition=n.getCurrentPosition,this.processStreams(t)}updateLive(e){this.processStreams(e?.streams.text)}seekLive(e){this.processStreams(e)}maintain(e=this.getCurrentPosition()){if(!Em(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 o=t.segments.find(t=>t.time.from<=e&&t.time.to>=e);!o||this.currentSegment?.time.from===o.time.from&&this.currentSegment.time.to===o.time.to||(this.currentSegment=o,this.currentRepresentation$.next({...n,label:`Live Text`,language:`ru`,isAuto:!0,url:new URL(o.url,t.baseUrl).toString()}))}}destroy(){this.currentRepresentation$.next(null),this.currentSegment=null,this.representations=[]}processStreams(e){for(let t of e??[]){let e=Om.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=>Om.filterRepresentations(e.representations))}static filterRepresentations(e){return e?.filter(e=>e.kind===`text`&&`segmentReference`in e&&Ol(e.segmentReference))}}class km extends Bp{constructor(t){super(t),e(this,`liveTextManager`,void 0),e(this,`liveStreamEndTimestamp`,0),e(this,`liveBuffer`,void 0),e(this,`livePauseWatchdogSubscription`,void 0),e(this,`liveWasInterrupted`,!1),this.liveBuffer=fm.getLiveBufferSmoothedValue(this.tuning.dashCmafLive.lowLatency.maxTargetOffset,{...t.tuning.dashCmafLive.lowLatency.bufferEstimator})}async seek(e){pm(this.element),this.updateManifestUrlWithTimeOffset(e),this.manifest=await this.updateManifest(),await this.forcePositionToRepresentationInitialTime()}initBuffer(){super.initBuffer(),this.forcePositionToRepresentationInitialTime()}async forcePositionToRepresentationInitialTime(){let e=this.videoBufferManager?.getRepresentationInitialTime()??0;await super.seek(e,!1)}async tick(){await super.tick();let e=(this.element?.currentTime??0)*1e3;this.liveTextManager?.maintain(e)}setSourceDuration(){pm(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)}async restoreAfterDeepStall(e){let{liveStallReinitInterval:t}=this.tuning.dash,{keepSilentStallWatchdogWhenNotActive:n}=this.tuning.dashCmafLive,r=this.currentStallDuration$.getValue(),i=this.liveStreamStatus$.getValue()===`active`;if(r%t===0){let t=this.normalizeLiveOffset(-1*this.livePositionFromPlayer$.getValue()*1e3);e.liveLastOffset=t,!i&&n?(this.liveWasInterrupted=!0,this.updateManifestUrlWithTimeOffset(t),this.manifest=await this.updateManifest(),await this.forcePositionToRepresentationInitialTime()):this.seek(t).catch(e=>{this.error$.next({id:`stallIntervalCallback`,category:hm.VIDEO_PIPELINE,message:`stallIntervalCallback failed`,thrown:e})})}}async updateManifest(){let e=await super.updateManifest();if(xm(e))return null;if(xm(e.live))return this.error$.next({id:`ManifestParsing`,category:hm.PARSER,message:`MPD doesnt contain live section for live stream`}),null;this.isLive$.next(!0);let{availabilityStartTime:t,latestSegmentPublishTime:n,streamIsUnpublished:r,streamIsAlive:i}=e.live,a=(e.duration??0)/1e3;this.liveSeekableDuration$.next(-1*a),this.liveDuration$.next((n-t)/1e3),this.liveAvailabilityStartTime$.next(e.live.availabilityStartTime);let o=`active`;if(i||(o=r?`unpublished`:`unexpectedly_down`),this.liveStreamStatus$.next(o),this.bufferManagers.forEach(t=>t.updateManifest(e)),this.liveTextManager?.updateLive(e),i&&this.liveWasInterrupted){this.liveWasInterrupted=!1,this.stopStallWatchdogSubscription();let e=this.normalizeLiveOffset(-1*this.livePositionFromPlayer$.getValue()*1e3);this.seek(e).catch(e=>{this.error$.next({id:`updateManifest`,category:hm.VIDEO_PIPELINE,message:`seekLive after stream restore failed`,thrown:e})})}return e}prepareManifestUrlString(e,t){return Qr(e,t,2)}updateManifestUrlWithTimeOffset(e){let t=this.liveStreamStatus$.getValue()===`active`?0:Cm()-this.liveStreamEndTimestamp,n=this.normalizeLiveOffset(e+t);this.isActiveLive$.next(n===0),this.manifestUrlString=Qr(this.manifestUrlString,n,2)}createBuffers(e,t,n,r){pm(this.manifest),super.createBuffers(e,t,n,r),Om.isSupported(this.manifest.streams.text)&&!this.isLowLatency$.getValue()&&(this.liveTextManager=new Om(this.manifest.streams.text,e))}initRepresentationSubscriptions(){pm(this.element),pm(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),bm(this.liveTextManager)&&this.representationSubscription.add(this.liveTextManager.currentRepresentation$.subscribe(this.currentLiveTextRepresentation$))}initStreamDurationOnPauseSubscription(){pm(this.element);let{liveUpdateInterval:e}=this.tuning.dash,t=()=>ym(e).subscribe(async t=>{let n=$r(this.manifestUrlString,2);this.manifestUrlString=Qr(this.manifestUrlString,n+e,2),this.liveStreamStatus$.getValue()===`active`&&(this.manifest=await this.updateManifest())});this.representationSubscription.add(vm(this.element,`pause`).subscribe(e=>{this.livePauseWatchdogSubscription=t(),this.representationSubscription.add(this.livePauseWatchdogSubscription)})),this.representationSubscription.add(vm(this.element,`play`).subscribe(e=>this.livePauseWatchdogSubscription?.unsubscribe()))}initLiveDurationSubscriptions(e){this.representationSubscription.add(this.liveDuration$.pipe(_m()).subscribe(e=>this.liveStreamEndTimestamp=Cm())),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(mm({isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe(Sm(({isActiveLive:e,isLowLatency:t})=>e&&t),_m(),gm(e=>!this.isManualDecreasePlaybackInLive())).subscribe(e=>Tm(this.element,1))),this.representationSubscription.add(mm({liveBuffer:this.liveBuffer.smoothed$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe(gm(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),Tm(this.element,s)}))}initLiveBufferInfoSubscriptions(e,t){this.representationSubscription.add(mm({bufferLength:this.bufferLength$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe(gm(({bufferLength:e,isActiveLive:t,isLowLatency:n})=>t&&n&&!!e),Sm(({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(mm({isLive:this.isLive$,rtt:this.throughputEstimator.rtt$,bufferLength:this.bufferLength$,segmentServerLatency:e.currentLiveSegmentServerLatency$}).pipe(gm(({isLive:e})=>e),_m((e,t)=>t.bufferLength<e.bufferLength),Sm(({rtt:e,bufferLength:t,segmentServerLatency:n})=>{let r=$r(this.manifestUrlString,2);return(e/2+t+n+r)/1e3})).subscribe(this.liveLatency$))}initLiveMaintainSubscription(e){let t=0;this.representationSubscription.add(mm({liveLoadBufferLength:this.liveLoadBufferLength$,bufferLength:this.bufferLength$}).pipe(wm(this.tuning.dash.liveUpdateInterval)).subscribe(async({liveLoadBufferLength:n,bufferLength:r})=>{pm(this.element);let i=this.element.playbackRate,a=$r(this.manifestUrlString,2),o=Math.abs(this.livePositionFromPlayer$.getValue())*1e3,s=Math.min(o,this.tuning.dashCmafLive.normalizedTargetMinBufferSize*i),c=this.tuning.dashCmafLive.normalizedActualBufferOffset*i,l=this.tuning.dashCmafLive.normalizedLiveMinBufferSize*i,u=isFinite(n)?n:r,d=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),f=o<=this.tuning.live.activeLiveDelay;this.isActiveLive$.next(f);let p=`none`;if(d?p=`active_low_latency`:this.isLowLatency$.getValue()&&f?(e.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(n)&&(t=n>t?n:t),p===`live_forward_buffering`||p===`live_with_target_offset`){let e=t-(s+c),r=this.normalizeLiveOffset(Math.trunc(a+e/i)),o=Math.abs(r-a),l=0;!n||o<=this.tuning.dashCmafLive.offsetCalculationError?l=a:r>0&&o>this.tuning.dashCmafLive.offsetCalculationError&&(l=r),this.manifestUrlString=Qr(this.manifestUrlString,l,2)}(p===`live_with_target_offset`||p===`live_forward_buffering`)&&(t=0,this.manifest=await this.updateManifest())},e=>{this.error$.next({id:`updateLive`,category:hm.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 Am extends su{constructor(e){super(e),this.textTracksManager.destroy()}getPlayer(){return new km({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 im(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(tm()).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(rm(e=>e.to)).subscribe(this.player.isLowLatency$)).add(Qp({liveBufferTime:n.liveBufferTime$,liveAvailabilityStartTime:this.player.liveAvailabilityStartTime$}).pipe(rm(({liveBufferTime:e,liveAvailabilityStartTime:t})=>e&&t?e+t:void 0)).subscribe(n.liveTime$)).add(Qp({liveDuration:this.player.liveDuration$,liveStreamStatus:this.player.liveStreamStatus$,playbackRate:$p(r.playbackRateState$,new im(1))}).pipe(em(({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||nm(i)||(t=e-i)})).add(Qp({time:n.liveBufferTime$,liveDuration:this.player.liveDuration$,playbackRate:$p(r.playbackRateState$,new im(1))}).pipe(tm((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||nm(e)||nm(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=Tl(e);this.params.output.availableTextTracks$.next([t])}})),this.params.tuning.dashCmafLive.externalStopControl||this.subscription.add(this.player.liveStreamStatus$.pipe(em(e=>am(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 jm,assertNonNullable as Mm,combine as Nm,debounce as Pm,ErrorCategory as Fm,filter as Im,filterChanged as Lm,fromEvent as Rm,isNonNullable as zm,isNullable as Bm,map as Vm,merge as Hm,observableFrom as Um,once as Wm,Subscription as Gm,throttle as Km}from"@vkontakte/videoplayer-shared/es2018";var qm=l(In(),1),Jm=(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 Ym,assertNonNullable as Xm,combine as Zm,ErrorCategory as Qm,filter as $m,filterChanged as eh,flattenObject as th,fromEvent as nh,getTraceSubscriptionMethod as rh,interval as ih,isNonNullable as ah,isNullable as oh,map as sh,merge as ch,now as lh,Subject as uh,Subscription as dh,SubscriptionRemovable as fh,tap as ph,throttle as mh,ValueSubject as W}from"@vkontakte/videoplayer-shared/es2018";var hh=l(Xe(),1),gh=l(xn(),1),_h=l(In(),1),vh=l(_n(),1);import{assertNever as yh,ErrorCategory as bh,Subject as xh}from"@vkontakte/videoplayer-shared/es2018";var Sh=18,Ch=!1;try{Ch=P.browser.isSafari&&!!P.browser.safariVersion&&P.browser.safariVersion<=Sh}catch(e){console.error(e)}class wh{constructor(t,n=!1){e(this,`bufferFull$`,new xh),e(this,`error$`,new xh),e(this,`buffer`,void 0),e(this,`queue`,[]),e(this,`currentTask`,null),e(this,`destroyed`,!1),e(this,`abortRequested`,!1),e(this,`isAbortFixEnabled`,!1),e(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:bh.VIDEO_PIPELINE,message:`Buffer appending or removal failed`,thrown:e})}}),this.buffer=t,this.isAbortFixEnabled=n,this.buffer.addEventListener(`updateend`,this.completeTask)}async append(e,t){return t&&t.aborted?!1:new Promise(n=>{let r={operation:`append`,data:e,signal:t,callback:n};this.queue.push(r),this.pull()})}async remove(e,t,n){return n&&n.aborted?!1:new Promise(r=>{let i={operation:`remove`,from:e,to:t,signal:n,callback:r};this.queue.unshift(i),this.pull()})}async abort(e){return new Promise(t=>{let n,r=e=>{this.abortRequested=!1,t(e)};n=Ch&&e?{operation:`safariAbort`,init:e,callback:r}:{operation:`abort`,callback:r};for(let{callback:e}of this.queue)e(!1);this.abortRequested=!0,n&&(this.queue=[n]),this.pull()})}destroy(){this.destroyed=!0,this.buffer.removeEventListener(`updateend`,this.completeTask),this.queue=[],this.currentTask=null;try{this.buffer.abort()}catch(e){if(!(e instanceof DOMException&&e.name===`InvalidStateError`))throw e}}pull(){if((this.buffer.updating||this.currentTask||this.destroyed)&&!this.abortRequested)return;let e=this.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:bh.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:yh(t)}}}var Th=wh,Eh=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 Dh,assertNonNullable as Oh,ErrorCategory as kh,fromEvent as Ah,getExponentialDelay as jh,isHigher as Mh,isNonNullable as Nh,isNullable as G,now as Ph,once as Fh,Subject as Ih,Subscription as Lh,ValueSubject as Rh,isAbortError as zh}from"@vkontakte/videoplayer-shared/es2018";class Bh{constructor(t,n,r,{fetcher:i,tuning:a,getCurrentPosition:o,isActiveLowLatency:s,compatibilityMode:c=!1,manifest:l}){e(this,`currentLiveSegmentServerLatency$`,new Rh(0)),e(this,`currentLowLatencySegmentLength$`,new Rh(0)),e(this,`currentSegmentLength$`,new Rh(0)),e(this,`onLastSegment$`,new Rh(!1)),e(this,`fullyBuffered$`,new Rh(!1)),e(this,`playingRepresentation$`,new Rh(void 0)),e(this,`playingRepresentationInit$`,new Rh(void 0)),e(this,`error$`,new Ih),e(this,`gaps`,[]),e(this,`subscription`,new Lh),e(this,`kind`,void 0),e(this,`initData`,void 0),e(this,`parsedInitData`,void 0),e(this,`representations`,void 0),e(this,`segments`,void 0),e(this,`allInitsLoaded`,!1),e(this,`activeSegments`,new Set),e(this,`mediaSource`,void 0),e(this,`playingRepresentationId`,void 0),e(this,`downloadingRepresentationId`,void 0),e(this,`switchingToRepresentationId`,void 0),e(this,`sourceBuffer`,void 0),e(this,`downloadAbortController`,new B),e(this,`switchAbortController`,new B),e(this,`destroyAbortController`,new B),e(this,`useSmartRepresentationSwitch`,!1),e(this,`getCurrentPosition`,void 0),e(this,`isActiveLowLatency`,void 0),e(this,`tuning`,void 0),e(this,`forwardBufferTarget`,void 0),e(this,`fetcher`,void 0),e(this,`bufferLimit`,1/0),e(this,`sourceBufferTaskQueue`,void 0),e(this,`gapDetectionIdleCallback`,void 0),e(this,`initLoadIdleCallback`,void 0),e(this,`failedDownloads`,0),e(this,`baseUrls`,[]),e(this,`baseUrlsIndex`,0),e(this,`compatibilityMode`,void 0),e(this,`preloadOnly`,void 0),e(this,`isLive`,!1),e(this,`liveUpdateSegmentIndex`,0),e(this,`liveInitialAdditionalOffset`,0),e(this,`isSeekingLive`,!1),e(this,`index`,0),e(this,`lastDataObtainedTimestampMs`,0),e(this,`loadByteRangeSegmentsTimeoutId`,0),e(this,`startWith`,Dh(this.destroyAbortController.signal,async function*(e){let t=this.representations.get(e);Oh(t,`Cannot find representation ${e}`),this.playingRepresentationId=e,this.downloadingRepresentationId=e,this.sourceBuffer=this.mediaSource.addSourceBuffer(`${t.mime}; codecs="${t.codecs}"`),this.sourceBufferTaskQueue=new Th(this.sourceBuffer,this.tuning.dash.useAbortMSEFix),this.subscription.add(Ah(this.sourceBuffer,`updateend`).subscribe(()=>{this.checkEjectedSegments(),this.maintain()},e=>{let t,n=this.mediaSource.readyState;n!==`open`&&(t={id:`SegmentEjection_source_${n}`,category:kh.VIDEO_PIPELINE,message:`Error when trying to clear segments ejected by browser`,thrown:e}),t??={id:`SegmentEjection`,category:kh.VIDEO_PIPELINE,message:`Error when trying to clear segments ejected by browser`,thrown:e},this.error$.next(t)})),this.subscription.add(Ah(this.sourceBuffer,`error`).subscribe(()=>this.error$.next({id:`SourceBuffer`,category:kh.VIDEO_PIPELINE,message:`SourceBuffer Error event fired`}))),this.subscription.add(this.sourceBufferTaskQueue.bufferFull$.subscribe(e=>{let t=this.getCurrentPosition();if(!this.sourceBuffer||!t||!L(this.mediaSource,this.sourceBuffer))return;this.bufferLimit=Math.min(this.bufferLimit,Eh(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);Oh(n,`No init buffer for starting representation`),Oh(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))}.bind(this))),e(this,`switchTo`,Dh(this.destroyAbortController.signal,async function*(e,t=!1){if(!L(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let n=this.representations.get(e);Oh(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),Oh(r,`No segments for starting representation`),i=this.initData.get(e),!(!i||!(i instanceof ArrayBuffer)||!this.sourceBuffer||!L(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();Nh(t)&&!this.isLive&&(this.bufferLimit=1/0,await this.pruneBuffer(t,1/0,!0)),this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e}this.maintain()}}.bind(this))),e(this,`switchToOld`,Dh(this.destroyAbortController.signal,async function*(e,t=!1){if(!L(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let n=this.representations.get(e);Oh(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),Oh(r,`No segments for starting representation`),i=this.initData.get(e),!(!i||!(i instanceof ArrayBuffer)||!this.sourceBuffer||!L(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();Nh(t)&&(this.isLive||(this.bufferLimit=1/0,await this.pruneBuffer(t,1/0,!0)),this.maintain(t)),this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e}}.bind(this))),e(this,`seekLive`,Dh(this.destroyAbortController.signal,async function*(e){let t=_h.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||!rp(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);Oh(r,`Representation not found by id ${n}`);let i=this.segments.get(n);Oh(i,`No segments for starting representation`);let a=this.initData.get(n);if(Oh(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}.bind(this))),this.fetcher=i,this.tuning=a,this.compatibilityMode=c,this.forwardBufferTarget=a.dash.forwardBufferTargetAuto,this.getCurrentPosition=o,this.isActiveLowLatency=s,this.isLive=!!l?.live,this.baseUrls=l?.baseUrls??[],this.initData=new Map(r.map(e=>[e.id,null])),this.segments=new Map,this.parsedInitData=new Map,this.representations=new Map(r.map(e=>[e.id,e])),this.kind=t,this.mediaSource=n,this.sourceBuffer=null}switchToWithPreviousAbort(e,t=!1){!L(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId||(this.switchAbortController.abort(),this.switchAbortController=new B,Dh(this.switchAbortController.signal,async function*(e,t=!1){this.switchingToRepresentationId=e;let n=this.representations.get(e);Oh(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),Oh(r,`No segments for starting representation`),i=this.initData.get(e),!(!(i instanceof ArrayBuffer)||!this.sourceBuffer||!L(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();Nh(t)&&!this.isLive&&(this.bufferLimit=this.forwardBufferTarget,yield this.pruneBuffer(t,1/0,!0)),this.downloadingRepresentationId=e,this.switchingToRepresentationId=void 0}this.maintain()}}.bind(this))(e,t))}warmUpMediaSource(){!G(this.sourceBuffer)&&!this.sourceBuffer.updating&&(this.sourceBuffer.mode=`segments`)}async abort(){for(let e of this.activeSegments)this.abortSegment(e.segment);return this.activeSegments.clear(),this.downloadAbortController.abort(),this.downloadAbortController=new B,this.abortBuffer()}maintain(e=this.getCurrentPosition()){if(G(e)||G(this.downloadingRepresentationId)||G(this.playingRepresentationId)||G(this.sourceBuffer)||!L(this.mediaSource,this.sourceBuffer)||Nh(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(Oh(t,`No such representation ${this.downloadingRepresentationId}`),Oh(n,`No such representation ${this.playingRepresentationId}`),G(r)||G(i))return;let a=r.find(t=>e>=t.time.from&&e<t.time.to);Nh(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=Xf(n),s=Xf(t),c=this.useSmartRepresentationSwitch&&this.tuning.dash.useNewRepresentationSwitch&&this.tuning.dash.useSmartRepresentationSwitch&&Nh(i)&&Nh(s)&&Mh(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)&&Eh(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(hh.default(s,a))e=`high`;else{let t=gh.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=gh.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;Nh(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=_h.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=_h.default(e.streams[this.kind],e=>e.representations);for(let e of t){if(!e||!rp(e.segmentReference))return;let t=e.segmentReference.segments.map(e=>({...e,status:`none`,size:void 0})),n=this.segments.get(e.id)??[],r=$s(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;Oh(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?gh.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(!rp(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=_d(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&&L(this.mediaSource,this.sourceBuffer)&&!(Jm(this.sourceBuffer.buffered,t)&&Jm(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}async loadSegments(e,t,n=`auto`){rp(t.segmentReference)?await this.loadTemplateSegment(e[0],t,n):await this.loadByteRangeSegments(e,t,n)}async loadTemplateSegment(e,t,n=`auto`){e.status=`downloading`;let r={segment:e,loadedBytes:0,feedingBytes:0,fedBytes:0,representationId:t.id};this.activeSegments.add(r);let{range:i,url:a,signal:o,onProgress:s,onProgressTasks:c}=this.prepareTemplateFetchSegmentParams(e,t);this.failedDownloads&&o&&(await Dh(o,async function*(){let e=jh(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(t=>setTimeout(t,e))}.bind(this))(),o.aborted&&this.abortActiveSegments([e]));try{let e=await this.fetcher.fetch(a,{range:i,signal:o,onProgress:s,priority:n,isLowLatency:this.isActiveLowLatency(),bufferOptimisation:this.tuning.dash.fetcherBufferOptimisation});if(this.lastDataObtainedTimestampMs=Ph(),!e)return;let l=new DataView(e),u=qf(t.mime);if(!isFinite(r.segment.time.to)){let e=t.segmentReference.timescale;r.segment.time.to=u.getChunkEndTime(l,e)}s&&r.feedingBytes&&c?await Promise.all(c):await this.sourceBufferTaskQueue.append(l,o);let{serverDataReceivedTimestamp:d,serverDataPreparedTime:f}=u.getServerLatencyTimestamps(l);d&&f&&this.currentLiveSegmentServerLatency$.next(f-d),r.segment.status=`downloaded`,this.onSegmentFullyAppended(r,t.id),this.failedDownloads=0}catch(t){this.abortActiveSegments([e]),zh(t)||(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())rp(t.segmentReference)?t.segmentReference.baseUrl=e:t.segmentReference.url=e}async loadByteRangeSegments(e,t,n=`auto`){if(!e.length)return;for(let n of e)n.status=`downloading`,this.activeSegments.add({segment:n,loadedBytes:0,feedingBytes:0,fedBytes:0,representationId:t.id});let{range:r,url:i,signal:a,onProgress:o}=this.prepareByteRangeFetchSegmentParams(e,t);this.failedDownloads&&a&&(await Dh(a,async function*(){let e=jh(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(t=>{this.loadByteRangeSegmentsTimeoutId=window.setTimeout(t,e),Ah(window,`online`).pipe(Fh()).subscribe(()=>{t(),window.clearTimeout(this.loadByteRangeSegmentsTimeoutId)})})}.bind(this))(),a.aborted&&this.abortActiveSegments(e));try{await this.fetcher.fetch(i,{range:r,onProgress:o,signal:a,priority:n,bufferOptimisation:this.tuning.dash.fetcherBufferOptimisation}),this.lastDataObtainedTimestampMs=Ph(),this.failedDownloads=0}catch(t){this.abortActiveSegments(e),zh(t)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}}prepareByteRangeFetchSegmentParams(e,t){if(rp(t.segmentReference))throw Error(`Representation is not byte range type`);let n=t.segmentReference.url,r={from:gh.default(e,0).byte.from,to:gh.default(e,-1).byte.to},{signal:i}=this.downloadAbortController;return{url:n,range:r,signal:i,onProgress:async(e,n)=>{if(!i.aborted)try{this.lastDataObtainedTimestampMs=Ph(),await this.onSomeByteRangesDataLoaded({dataView:e,loaded:n,signal:i,onSegmentAppendFailed:()=>this.abort(),globalFrom:r?r.from:0,representationId:t.id})}catch(e){this.error$.next({id:`SegmentFeeding`,category:kh.VIDEO_PIPELINE,message:`Error when feeding segments`,thrown:e})}}}}prepareTemplateFetchSegmentParams(e,t){if(!rp(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=Ph();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:kh.VIDEO_PIPELINE,message:`Error when feeding segments`,thrown:e})}}:void 0,onProgressTasks:a}}abortActiveSegments(e){for(let t of this.activeSegments)hh.default(e,t.segment)&&this.abortSegment(t.segment)}async onSomeTemplateDataLoaded({dataView:e,representationId:t,loaded:n,onSegmentAppendFailed:r,signal:i}){if(!this.activeSegments.size||!L(this.mediaSource,this.sourceBuffer))return;let a=this.representations.get(t);if(a)for(let o of this.activeSegments){let{segment:s}=o;if(o.representationId===t){if(i.aborted){r();continue}if(o.loadedBytes=n,o.loadedBytes>o.feedingBytes){let t=new DataView(e.buffer,e.byteOffset+o.feedingBytes,o.loadedBytes-o.feedingBytes),n=qf(a.mime).parseFeedableSegmentChunk(t,this.isLive);n?.byteLength&&(s.status=`partially_fed`,o.feedingBytes+=n.byteLength,await this.sourceBufferTaskQueue.append(n),o.fedBytes+=n.byteLength)}}}}async onSomeByteRangesDataLoaded({dataView:e,representationId:t,globalFrom:n,loaded:r,signal:i,onSegmentAppendFailed:a}){if(!this.activeSegments.size||!L(this.mediaSource,this.sourceBuffer))return;let o=this.representations.get(t);if(o)for(let s of this.activeSegments){let{segment:c}=s;if(s.representationId!==t)continue;if(i.aborted){await a();continue}let l=c.byte.from-n,u=c.byte.to-n,d=u-l+1,f=l<r,p=u<=r;if(!f)continue;let m=qf(o.mime);if(c.status===`downloading`&&p){c.status=`downloaded`;let n=new DataView(e.buffer,e.byteOffset+l,d);await this.sourceBufferTaskQueue.append(n,i)&&!i.aborted?this.onSegmentFullyAppended(s,t):await a()}else if(this.tuning.dash.enableSubSegmentBufferFeeding&&(c.status===`downloading`||c.status===`partially_fed`)&&(s.loadedBytes=Math.min(d,r-l),s.loadedBytes>s.feedingBytes)){let n=new DataView(e.buffer,e.byteOffset+l+s.feedingBytes,s.loadedBytes-s.feedingBytes),r=s.loadedBytes===d?n:m.parseFeedableSegmentChunk(n);r?.byteLength&&(c.status=`partially_fed`,s.feedingBytes+=r.byteLength,await this.sourceBufferTaskQueue.append(r,i)&&!i.aborted?(s.fedBytes+=r.byteLength,s.fedBytes===d&&this.onSegmentFullyAppended(s,t)):await a())}}}onSegmentFullyAppended(e,t){if(!(G(this.sourceBuffer)||!L(this.mediaSource,this.sourceBuffer))){!this.isLive&&P.browser.isSafari&&this.tuning.useSafariEndlessRequestBugfix&&(Jm(this.sourceBuffer.buffered,e.segment.time.from,100)&&Jm(this.sourceBuffer.buffered,e.segment.time.to,100)||this.error$.next({id:`EmptyAppendBuffer`,category:kh.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`,np(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=Rd(()=>vh.default(this.loadInit(n,`low`,!1),()=>this.initLoadIdleCallback=null)))}async loadInit(e,t=`auto`,n=!1){let r=this.tuning.dash.useFetchPriorityHints?t:`auto`,i=!n&&this.tuning.dash.ignoreNetworkErrorsOnLoadInit,a=(!n&&this.failedDownloads>0?Dh(this.destroyAbortController.signal,async function*(){let e=jh(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(t=>setTimeout(t,e))}.bind(this))():Promise.resolve()).then(()=>this.fetcher.fetchRepresentation(e.segmentReference,qf(e.mime),{priority:r,ignoreNetworkErrors:i})).then(async t=>{if(!t)return;let{init:n,dataView:r,segments:i}=t,a=r.buffer.slice(r.byteOffset,r.byteOffset+r.byteLength);this.initData.set(e.id,a);let o=i;this.isLive&&rp(e.segmentReference)&&(o=this.getActualLiveStartingSegments(e.segmentReference)),(!this.isLive||!this.segments.has(e.id))&&this.segments.set(e.id,o),n&&this.parsedInitData.set(e.id,n)}).then(()=>this.failedDownloads=0,t=>{i||this.initData.set(e.id,null),n&&this.error$.next({id:`LoadInits`,category:kh.WTF,message:`loadInit threw`,thrown:t})});return this.initData.set(e.id,a),a}async dropBuffer(){for(let e of this.segments.values())for(let t of e)t.status=`none`;await this.pruneBuffer(0,1/0,!0)}async pruneBuffer(e,t,n=!1){if(!this.sourceBuffer||!L(this.mediaSource,this.sourceBuffer)||!this.playingRepresentationId||G(e))return!1;let r=[],i=0,a=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},o=e=>{if(i>=t)return r;r.push({...e.time}),r=a(r);let n=np(e)?e.size??0:e.byte.to-e.byte.from;i+=n};for(let t of this.segments.values())for(let n of t){let t=n.time.to<=e-this.tuning.dash.bufferPruningSafeZone,r=n.time.from>=e+Math.min(this.forwardBufferTarget,this.bufferLimit);(t||r)&&n.status===`fed`&&o(n)}for(let e=0;e<this.sourceBuffer.buffered.length;e++){let t=this.sourceBuffer.buffered.start(e)*1e3,n=this.sourceBuffer.buffered.end(e)*1e3,r=0;for(let e of this.segments.values())for(let i of e)hh.default([`none`,`partially_ejected`],i.status)&&Math.round(i.time.from)<=Math.round(t)&&Math.round(i.time.to)>=Math.round(n)&&r++;r===this.segments.size&&o({time:{from:t,to:n},url:``,status:`none`})}if(r.length&&n){let t=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;for(let n of this.segments.values())for(let r of n)r.time.from>=e+t&&r.status===`fed`&&o(r)}return r.length?(await Promise.all(r.map(e=>this.sourceBufferTaskQueue.remove(e.from,e.to)))).reduce((e,t)=>e||t,!1):!1}async abortBuffer(){if(!this.sourceBuffer||!L(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||!L(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||!L(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length||G(e)?0:Fp(this.sourceBuffer.buffered,e)}detectGaps(e,t){if(!(!this.sourceBuffer||!L(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||!L(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=Rd(()=>{try{this.detectGaps(e,t)}catch(e){this.error$.next({id:`GapDetection`,category:kh.WTF,message:`detectGaps threw`,thrown:e})}finally{this.gapDetectionIdleCallback=null}})}checkEjectedSegments(){if(G(this.sourceBuffer)||!L(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:kh.VIDEO_PIPELINE,thrown:e,message:`Something went wrong`})}}import{abortable as Vh,assertNever as Hh,fromEvent as Uh,merge as Wh,now as Gh,Subject as Kh,ValueSubject as qh,flattenObject as Jh,ErrorCategory as Yh,SubscriptionRemovable as Xh,getWindow as Zh,suppressAbort as Qh}from"@vkontakte/videoplayer-shared/es2018";class $h{constructor({throughputEstimator:t,requestQuic:n,tracer:r,compatibilityMode:i=!1,useEnableSubtitlesParam:a=!1}){e(this,`throughputEstimator`,void 0),e(this,`requestQuic`,void 0),e(this,`tracer`,void 0),e(this,`manifestRequested$`,new Kh),e(this,`firstBytesManifest$`,new Kh),e(this,`firstBytesRequested$`,new Kh),e(this,`firstBytesReceived$`,new Kh),e(this,`lastConnectionType$`,new qh(void 0)),e(this,`lastConnectionReused$`,new qh(void 0)),e(this,`lastRequestFirstBytes$`,new qh(void 0)),e(this,`lastConnectionMetrics$`,new qh(void 0)),e(this,`lastDownloadMetrics$`,new qh(void 0)),e(this,`recoverableError$`,new Kh),e(this,`error$`,new Kh),e(this,`abortAllController`,new B),e(this,`subscription`,new Xh),e(this,`compatibilityMode`,void 0),e(this,`useEnableSubtitlesParam`,void 0),e(this,`performanceObserver`,null),e(this,`pendingConnectionMetrics`,new Map),e(this,`fetchManifest`,Vh(this.abortAllController.signal,async function*(e){let t=this.tracer.createComponentTracer(`FetchManifest`),n=e;this.requestQuic&&(n=Hu(n)),!this.compatibilityMode&&this.useEnableSubtitlesParam&&(n=nd(n)),this.trackRequestStart(n,performance.now());let r=Gh();this.manifestRequested$.next();let i=yield this.doFetch(n,{signal:this.abortAllController.signal}).catch(Qh);if(i){let a=Gh();t.log(`success`,Jh({url:n,message:`Request successfully executed`})),t.end(),this.onHeadersReceived(i.headers),this.firstBytesManifest$.next();let o=i.headers.get(`content-length`),s=0;o&&(s=parseInt(o,10));let c=await i.text();if((!o||isNaN(s)||s<=0)&&(s=new TextEncoder().encode(c).length),s>0){let t=a-r,n=s/(t/1e3)*8/1024,i={bytes:s,speed:n,url:e};this.lastDownloadMetrics$.next(i)}return c}else return t.error(`error`,Jh({url:n,message:`No data in request manifest`})),t.end(),null}.bind(this))),e(this,`__polyfill_abortableFetch_6bc8n4d9c1e7`,Vh(this.abortAllController.signal,async function*(e,{rangeMethod:t=this.compatibilityMode?0:1,range:n,onProgress:r,priority:i=`auto`,signal:a,measureThroughput:o=!0,isLowLatency:s=!1,bufferOptimisation:c=!1,ignoreNetworkErrors: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,Zh().location.href);e.searchParams.append(`bytes`,`${n.from}-${n.to}`),u=e.toString();break}default:Hh(t)}this.requestQuic&&(u=Hu(u));let p=this.abortAllController.signal,m;if(a){let e=new B;if(m=Wh(Uh(this.abortAllController.signal,`abort`),Uh(a,`abort`)).subscribe(()=>{try{e.abort()}catch(e){Qh(e)}}),this.subscription.add(m),this.abortAllController.signal.aborted||a.aborted)try{e.abort()}catch(e){Qh(e)}p=e.signal}let h=0,g=Gh();f.log(`startRequest`,Jh({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},{ignoreNetworkErrors:l}),v=Gh();if(!_)return f.error(`error`,{message:`No response in request`}),f.end(),this.unsubscribeAbortSubscription(m),null;if(this.throughputEstimator?.addRawRtt(v-g),!_.ok||!_.body){this.unsubscribeAbortSubscription(m);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){this.unsubscribeAbortSubscription(m);let e=Gh(),t={requestStartedAt:g,requestEndedAt:e,duration:e-g};return f.log(`endRequest`,Jh(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=>{this.unsubscribeAbortSubscription(m),w=!0,Qh(e)},E=Vh(p,async function*({done:e,value:t}){if(h===0&&(this.lastRequestFirstBytes$.next(Gh()-g),this.firstBytesReceived$.next()),p.aborted){this.unsubscribeAbortSubscription(m);return}if(!e&&t){if(c&&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)}}.bind(this));yield b?.read().then(E,T),this.unsubscribeAbortSubscription(m);let D=Gh(),O={failed:w,requestStartedAt:g,requestEndedAt:D,duration:D-g};if(w)return f.error(`endRequest`,Jh(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`,Jh(O)),f.end(),C.buffer}.bind(this))),e(this,`fetchByteRangeRepresentation`,Vh(this.abortAllController.signal,async 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},measureThroughput:!1,...n});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,measureThroughput:!1});if(!t)return null;m=new DataView(t)}let h=t.parseSegments(m,f,p);return{init:f,dataView:new DataView(u),segments:h}}.bind(this))),e(this,`fetchTemplateRepresentation`,Vh(this.abortAllController.signal,async function*(e,t){if(e.type!==`template`)return null;let n=new URL(e.initUrl,e.baseUrl).toString(),r=yield this.fetch(n,{measureThroughput:!1,...t});return r?{init:null,segments:e.segments.map(e=>({...e,status:`none`,size:void 0})),dataView:new DataView(r)}:null}.bind(this))),this.throughputEstimator=t,this.requestQuic=n,this.compatibilityMode=i,this.tracer=r.createComponentTracer(`Fetcher`),this.useEnableSubtitlesParam=a,Zh().PerformanceObserver&&this.setupPerformanceObserver()}onHeadersReceived(e){let{type:t,reused:n}=Uu(e);this.lastConnectionType$.next(t),this.lastConnectionReused$.next(n)}setupPerformanceObserver(){this.performanceObserver=new(Zh()).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 Zh().navigator))return`unknown`;let e=Zh().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:Yh.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})}async fetchRepresentation(e,t,n){let{type:r}=e;switch(r){case`byteRange`:return await this.fetchByteRangeRepresentation(e,t,n)??null;case`template`:return await this.fetchTemplateRepresentation(e,n)??null;default:Hh(r)}}destroy(){this.abortAllController.abort(),this.subscription.unsubscribe(),this.performanceObserver&&=(this.performanceObserver.disconnect(),null),this.pendingConnectionMetrics.clear(),this.tracer.end()}async doFetch(e,t,n){let r=await bu(e,t);if(r.ok)return r;if(n?.ignoreNetworkErrors)return;let i=await r.text(),a=parseInt(i);if(!isNaN(a))switch(a){case 1:this.recoverableError$.next({id:`VideoDataLinkExpiredError`,message:`Video data links have expired`,category:Yh.FATAL,httpCode:r.status,UVBackendErrorCode:i});break;case 8:this.recoverableError$.next({id:`VideoDataLinkBlockedForFloodError`,message:`Url blocked for flood`,category:Yh.FATAL,httpCode:r.status,UVBackendErrorCode:i});break;case 18:this.recoverableError$.next({id:`VideoDataLinkIllegalIpChangeError`,message:`Client IP has changed`,category:Yh.FATAL,httpCode:r.status,UVBackendErrorCode:i});break;case 21:this.recoverableError$.next({id:`VideoDataLinkIllegalHostChangeError`,message:`Request HOST has changed`,category:Yh.FATAL,httpCode:r.status,UVBackendErrorCode:i});break;default:this.error$.next({id:`GeneralVideoDataFetchError`,message:`Generic video data fetch error (${a})`,category:Yh.FATAL,httpCode:r.status,UVBackendErrorCode:i})}}unsubscribeAbortSubscription(e){e&&(e.unsubscribe(),this.subscription.remove(e))}}import{isNullable as eg,ValueSubject as tg}from"@vkontakte/videoplayer-shared/es2018";class ng{constructor(t,n){e(this,`currentRepresentation$`,new tg(null)),e(this,`maxRepresentations`,4),e(this,`representationsCursor`,0),e(this,`representations`,[]),e(this,`getCurrentPosition`,void 0),e(this,`currentSegment`,null),this.getCurrentPosition=n.getCurrentPosition,this.processStreams(t)}updateLive(e){this.processStreams(e?.streams.text)}seekLive(e){this.processStreams(e)}maintain(e=this.getCurrentPosition()){if(!eg(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 o=t.segments.find(t=>t.time.from<=e&&t.time.to>=e);!o||this.currentSegment?.time.from===o.time.from&&this.currentSegment.time.to===o.time.to||(this.currentSegment=o,this.currentRepresentation$.next({...n,label:`Live Text`,language:`ru`,isAuto:!0,url:new URL(o.url,t.baseUrl).toString()}))}}destroy(){this.currentRepresentation$.next(null),this.currentSegment=null,this.representations=[]}processStreams(e){for(let t of e??[]){let e=ng.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=>ng.filterRepresentations(e.representations))}static filterRepresentations(e){return e?.filter(e=>e.kind===`text`&&`segmentReference`in e&&rp(e.segmentReference))}}var rg=[`timeupdate`,`progress`,`play`,`seeked`,`stalled`,`waiting`],ig=[`timeupdate`,`progress`,`loadeddata`,`playing`,`seeked`];class ag{constructor(t){e(this,`element`,null),e(this,`manifestUrlString`,``),e(this,`source`,null),e(this,`manifest`,null),e(this,`tuning`,void 0),e(this,`tracer`,void 0),e(this,`forceVideoCodec`,void 0),e(this,`videoBufferManager`,void 0),e(this,`audioBufferManager`,void 0),e(this,`bufferManagers`,[]),e(this,`liveTextManager`,void 0),e(this,`throughputEstimator`,void 0),e(this,`subscription`,new dh),e(this,`subscriptionRemovable`,new fh),e(this,`representationSubscription`,new dh),e(this,`fetcher`,void 0),e(this,`state$`,new F(`none`)),e(this,`currentVideoRepresentation$`,new W(void 0)),e(this,`currentVideoRepresentationInit$`,new W(void 0)),e(this,`currentAudioRepresentation$`,new W(void 0)),e(this,`currentVideoSegmentLength$`,new W(0)),e(this,`currentAudioSegmentLength$`,new W(0)),e(this,`error$`,new uh),e(this,`manifestRequested$`,new uh),e(this,`firstBytesManifest$`,new uh),e(this,`manifestReceived$`,new uh),e(this,`firstBytesRequested$`,new uh),e(this,`firstBytesReceived$`,new uh),e(this,`lastConnectionType$`,new W(void 0)),e(this,`lastConnectionReused$`,new W(void 0)),e(this,`lastRequestFirstBytes$`,new W(void 0)),e(this,`lastConnectionMetrics$`,new W(void 0)),e(this,`lastDownloadMetrics$`,new W(void 0)),e(this,`currentLiveTextRepresentation$`,new W(null)),e(this,`timeoutSourceOpenId`,void 0),e(this,`isLive$`,new W(!1)),e(this,`isActiveLive$`,new W(!1)),e(this,`isLowLatency$`,new W(!1)),e(this,`liveDuration$`,new W(0)),e(this,`liveSeekableDuration$`,new W(0)),e(this,`liveAvailabilityStartTime$`,new W(0)),e(this,`liveStreamStatus$`,new W(void 0)),e(this,`bufferLength$`,new W(0)),e(this,`liveLatency$`,new W(void 0)),e(this,`liveLoadBufferLength$`,new W(0)),e(this,`livePositionFromPlayer$`,new W(0)),e(this,`currentStallDuration$`,new W(0)),e(this,`videoLastDataObtainedTimestamp$`,new W(0)),e(this,`fetcherRecoverableError$`,new uh),e(this,`fetcherError$`,new uh),e(this,`liveStreamEndTimestamp`,0),e(this,`liveBuffer`,void 0),e(this,`isUpdatingLive`,!1),e(this,`isJumpGapAfterSeekLive`,!1),e(this,`forceEnded$`,new uh),e(this,`gapWatchdogActive`,!1),e(this,`gapWatchdogSubscription`,void 0),e(this,`stallWatchdogSubscription`,void 0),e(this,`livePauseWatchdogSubscription`,void 0),e(this,`liveWasInterrupted`,!1),e(this,`destroyController`,new B),e(this,`initManifest`,Ym(this.destroyController.signal,async function*(e,t,n){this.tracer.log(`initManifest`),this.element=e,this.manifestUrlString=Qr(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:Qm.PARSER,message:`No playable video representations`})}.bind(this))),e(this,`updateManifest`,Ym(this.destroyController.signal,async 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:Qm.NETWORK,message:`Failed to load manifest`,thrown:e})});if(!e)return null;let t=null;try{t=vd(e??``,this.manifestUrlString),this.manifestReceived$.next()}catch(t){let n=Cu(e)??{id:`ManifestParsing`,category:Qm.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=Si())==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:Qm.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=kd(t),s=a[0]),e===`video`&&(i=Od(t),s=this.forceVideoCodec&&ua(i,this.forceVideoCodec)?this.forceVideoCodec:i[0]),s&&(r[e]=o.filter(({codecs:e})=>Ad(e)===s))}else s=Dd(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);P.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&&Lp(r,i)}}let o={...t,streams:r};return this.tuning.dash.codecsPrioritizeEnabled&&(o.codecs={video:i,audio:a}),this.tracer.log(`updateManifestEnd`,th(o)),o}.bind(this))),e(this,`initRepresentations`,Ym(this.destroyController.signal,async function*(e,t,n){this.tracer.log(`initRepresentationsStart`,th({initialVideo:e,initialAudio:t,sourceHls:n})),Xm(this.manifest),Xm(this.element),this.representationSubscription.unsubscribe(),this.state$.startTransitionTo(`representations_ready`);let r=e=>{this.representationSubscription.add(nh(e,`error`).pipe($m(e=>!!this.element?.played.length)).subscribe(e=>{this.error$.next({id:`VideoSource`,category:Qm.VIDEO_PIPELINE,message:`Unexpected video source error`,thrown:e})}))};this.source=Ti();let i=document.createElement(`source`);if(r(i),i.src=URL.createObjectURL(this.source),this.element.appendChild(i),Ci())if(n){let e=document.createElement(`source`);r(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 a={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((e,t)=>[...e,...t.representations],[]);if(this.videoBufferManager=new Bh(`video`,this.source,o,a),this.bufferManagers=[this.videoBufferManager],ah(t)){let e=this.manifest.streams.audio.reduce((e,t)=>[...e,...t.representations],[]);this.audioBufferManager=new Bh(`audio`,this.source,e,a),this.bufferManagers.push(this.audioBufferManager)}if(ng.isSupported(this.manifest.streams.text)&&!this.isLowLatency$.getValue()&&(this.liveTextManager=new ng(this.manifest.streams.text,a)),this.representationSubscription.add(this.fetcher.lastRequestFirstBytes$.subscribe(this.lastRequestFirstBytes$)),this.representationSubscription.add(ch(...ig.map(e=>nh(this.element,e))).pipe(sh(e=>this.element?Fp(this.element.buffered,this.element.currentTime*1e3):0),eh(),ph(e=>{e>this.tuning.dash.bufferEmptinessTolerance&&this.stopStallWatchdogSubscription()})).subscribe(this.bufferLength$)),this.representationSubscription.add(ch(nh(this.element,`ended`),this.forceEnded$).subscribe(()=>{this.stopStallWatchdogSubscription()})),this.isLive$.getValue()){this.subscription.add(this.liveDuration$.pipe(eh()).subscribe(e=>this.liveStreamEndTimestamp=lh())),this.subscription.add(nh(this.element,`pause`).subscribe(()=>{let{liveUpdateInterval:e}=this.tuning.dash;this.livePauseWatchdogSubscription=ih(e).subscribe(t=>{let n=$r(this.manifestUrlString,2);this.manifestUrlString=Qr(this.manifestUrlString,n+e,2),this.liveStreamStatus$.getValue()===`active`&&this.updateManifest()}),this.subscription.add(this.livePauseWatchdogSubscription)})).add(nh(this.element,`play`).subscribe(e=>this.livePauseWatchdogSubscription?.unsubscribe())),this.representationSubscription.add(Zm({isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe(sh(({isActiveLive:e,isLowLatency:t})=>e&&t),eh()).subscribe(e=>{this.isManualDecreasePlaybackInLive()||Tm(this.element,1)})),this.representationSubscription.add(Zm({bufferLength:this.bufferLength$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe($m(({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(Zm({isLive:this.isLive$,rtt:this.throughputEstimator.rtt$,bufferLength:this.bufferLength$,segmentServerLatency:this.videoBufferManager.currentLiveSegmentServerLatency$}).pipe($m(({isLive:e})=>e),eh((e,t)=>t.bufferLength<e.bufferLength),sh(({rtt:e,bufferLength:t,segmentServerLatency:n})=>{let r=$r(this.manifestUrlString,2);return(e/2+t+n+r)/1e3})).subscribe(this.liveLatency$)),this.representationSubscription.add(Zm({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),Tm(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(Zm({liveLoadBufferLength:this.liveLoadBufferLength$,bufferLength:this.bufferLength$}).pipe(mh(this.tuning.dash.liveUpdateInterval)).subscribe(async({liveLoadBufferLength:t,bufferLength:n})=>{if(!this.element||this.isUpdatingLive)return;let r=this.element.playbackRate,i=$r(this.manifestUrlString,2),a=Math.abs(this.livePositionFromPlayer$.getValue())*1e3,o=Math.min(a,this.tuning.dashCmafLive.normalizedTargetMinBufferSize*r),s=this.tuning.dashCmafLive.normalizedActualBufferOffset*r,c=this.tuning.dashCmafLive.normalizedLiveMinBufferSize*r,l=isFinite(t)?t:n,u=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),d=a<=this.tuning.live.activeLiveDelay;this.isActiveLive$.next(d);let f=`none`;if(u?f=`active_low_latency`:this.isLowLatency$.getValue()&&d?(this.bufferManagers.forEach(e=>e.proceedLowLatencyLive()),f=`active_low_latency`):i!==0&&l<o?f=`live_forward_buffering`:l<o+c&&(f=`live_with_target_offset`),isFinite(t)&&(e=t>e?t:e),f===`live_forward_buffering`||f===`live_with_target_offset`){let n=e-(o+s),a=this.normalizeLiveOffset(Math.trunc(i+n/r)),c=Math.abs(a-i),l=0;!t||c<=this.tuning.dashCmafLive.offsetCalculationError?l=i:a>0&&c>this.tuning.dashCmafLive.offsetCalculationError&&(l=a),this.manifestUrlString=Qr(this.manifestUrlString,l,2)}(f===`live_with_target_offset`||f===`live_forward_buffering`)&&(e=0,await this.updateLive())},e=>{this.error$.next({id:`updateLive`,category:Qm.VIDEO_PIPELINE,thrown:e,message:`Failed to update live with subscription`})}))}let s=Zm({allBuffersFull:ch(...this.bufferManagers.map(e=>e.fullyBuffered$)).pipe(sh(()=>this.bufferManagers.every(e=>e.fullyBuffered$.getValue()))),someBufferEnded:ch(...this.bufferManagers.map(e=>e.onLastSegment$)).pipe(sh(()=>this.bufferManagers.some(e=>e.onLastSegment$.getValue())))}).pipe(eh(),sh(({allBuffersFull:e,someBufferEnded:t})=>e&&t),$m(e=>e));if(this.representationSubscription.add(ch(this.forceEnded$,s).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:Qm.VIDEO_PIPELINE,message:`Failed to end MediaSource stream`,thrown:e})}})),this.representationSubscription.add(ch(...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:Qm.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,...qm.default(qm.default([...this.manifest.streams.audio,...this.manifest.streams.video],e=>e.representations),e=>{let t=[];return e.duration&&t.push(e.duration),rp(e.segmentReference)&&e.segmentReference.totalSegmentsDurationMs&&t.push(e.segmentReference.totalSegmentsDurationMs),t})];this.source.duration=Math.max(...e)/1e3}this.audioBufferManager&&ah(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))),e(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=ih(this.tuning.gapWatchdogInterval).subscribe(()=>this.jumpGap(),e=>{this.error$.next({id:`GapWatchdog`,category:Qm.WTF,message:`Error handling gaps`,thrown:e})}),this.subscription.add(this.gapWatchdogSubscription))}),this.throughputEstimator=t.throughputEstimator,this.tuning=t.tuning,this.tracer=t.tracer.createComponentTracer(this.constructor.name),this.forceVideoCodec=t.forceVideoCodec,this.fetcher=new $h({throughputEstimator:this.throughputEstimator,requestQuic:this.tuning.requestQuick,compatibilityMode:t.compatibilityMode,tracer:this.tracer,useEnableSubtitlesParam:t.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=fm.getLiveBufferSmoothedValue(this.tuning.dashCmafLive.lowLatency.maxTargetOffset,{...t.tuning.dashCmafLive.lowLatency.bufferEstimator}),this.initTracerSubscription()}setSmartRepresentationSwitch(e){this.bufferManagers.forEach(t=>t.setSmartRepresentationSwitch(e))}async seekLive(e){Xm(this.element),this.updateManifestUrlWithTimeOffset(e),this.manifest=await this.updateManifest(),this.manifest&&(this.isJumpGapAfterSeekLive=!0,await this.updateLiveBuffersFromManifest(this.manifest))}updateManifestUrlWithTimeOffset(e){let t=this.liveStreamStatus$.getValue()===`active`?0:lh()-this.liveStreamEndTimestamp,n=this.normalizeLiveOffset(e+t);this.isActiveLive$.next(n===0),this.manifestUrlString=Qr(this.manifestUrlString,n,2)}async updateLiveBuffersFromManifest(e){await this.videoBufferManager?.seekLive(e.streams.video),await this.audioBufferManager?.seekLive(e.streams.audio),this.liveTextManager?.seekLive(e.streams.text)}stopStallWatchdogSubscription(){this.stallWatchdogSubscription?.unsubscribe(),this.currentStallDuration$.next(0)}initBuffer(){Xm(this.element),this.state$.setState(`running`),this.subscription.add(ch(...rg.map(e=>nh(this.element,e)),nh(window,`online`)).subscribe(()=>this.tick(),e=>{this.error$.next({id:`DashVKPlayer`,category:Qm.WTF,message:`Internal logic error`,thrown:e})})),this.subscription.add(nh(this.element,`progress`).subscribe(()=>{this.element&&this.element.readyState===2&&!this.element.seeking&&(this.element.currentTime=this.element.currentTime)})),this.subscription.add(nh(this.element,`waiting`).subscribe(()=>{this.tuning.dash.useVideoElementWaitingCurrentTimeReassign&&this.element&&this.element.readyState===2&&!this.element.seeking&&Jm(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=ih(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=lh(),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:Qm.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`,th(c))},e=>{this.error$.next({id:`StallWatchdogCallback`,category:Qm.NETWORK,message:`Can't restore DASH after stall.`,thrown:e})}),this.subscriptionRemovable.add(this.stallWatchdogSubscription)})),this.tick()}async switchRepresentation(e,t,n=!1){let r={video:this.videoBufferManager,audio:this.audioBufferManager,text:null}[e];return this.tuning.useNewSwitchTo?this.currentStallDuration$.getValue()>0?r?.switchToWithPreviousAbort(t,n):r?.switchTo(t,n):r?.switchToOld(t,n)}async seek(e,t){Xm(this.element),Xm(this.videoBufferManager);let n;n=t||this.element.duration*1e3<=this.tuning.dashSeekInSegmentDurationThreshold||Math.abs(this.element.currentTime*1e3-e)<=this.tuning.dashSeekInSegmentAlwaysSeekDelta?e:Math.max(this.videoBufferManager.findSegmentStartTime(e)??e,this.audioBufferManager?.findSegmentStartTime(e)??e),this.warmUpMediaSourceIfNeeded(n),!Jm(this.element.buffered,n)&&await Promise.all([this.videoBufferManager.abort(),this.audioBufferManager?.abort()]),oh(this.element)||oh(this.videoBufferManager)||(this.videoBufferManager.maintain(n),this.audioBufferManager?.maintain(n),this.element.currentTime=n/1e3,this.tracer.log(`seek`,th({requestedPosition:e,forcePrecise:t,position:n})))}warmUpMediaSourceIfNeeded(e=this.element?.currentTime){ah(this.element)&&ah(this.source)&&ah(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=rh(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}async updateLive(){this.isUpdatingLive=!0,this.manifest=await this.updateManifest(),this.manifest&&(this.bufferManagers.forEach(e=>e.updateLive(this.manifest)),this.liveTextManager?.updateLive(this.manifest)),this.isUpdatingLive=!1}jumpGap(){if(!this.element||!this.videoBufferManager)return;let e=this.videoBufferManager.getDebugBufferState();if(!e)return;let t=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),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=[],o=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-o<=i&&t.to+o>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={...n,gapEnds:a,jumpTo:e,resultCurrentTime:this.element.currentTime},this.tracer.log(`jumpGap`,th(n)))}}calculateDurationFromSegments(){return Math.max(this.videoBufferManager?.calculateDurationFromSegments()||0,this.audioBufferManager?.calculateDurationFromSegments()||0)}}import{combine as og,map as sg,observeElementSize as cg,Subscription as lg,ValueSubject as ug,noop as dg}from"@vkontakte/videoplayer-shared/es2018";class fg{constructor(){e(this,`subscription`,new lg),e(this,`pipSize$`,new ug(void 0)),e(this,`videoSize$`,new ug(void 0)),e(this,`elementSize$`,new ug(void 0)),e(this,`pictureInPictureWindowRemoveEventListener`,dg)}connect({observableVideo:e,video:t}){let n=e=>{let t=e.target;this.pipSize$.next({width:t.width,height:t.height})};this.subscription.add(cg(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(og({videoSize:this.videoSize$,pipSize:this.pipSize$,inPip:e.inPiP$}).pipe(sg(({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 pg{constructor(t){e(this,`scene3D`,void 0),e(this,`subscription`,new Gm),e(this,`videoState`,new F(`stopped`)),e(this,`video`,void 0),e(this,`observableVideo`,null),e(this,`player`,void 0),e(this,`params`,void 0),e(this,`tracer`,void 0),e(this,`textTracksManager`,void 0),e(this,`droppedFramesManager`,new Kc),e(this,`stallsManager`,new Yl),e(this,`elementSizeManager`,new fg),e(this,`videoTracksMap`,new Map),e(this,`audioTracksMap`,new Map),e(this,`textTracksMap`,new Map),e(this,`videoStreamsMap`,new Map),e(this,`audioStreamsMap`,new Map),e(this,`videoTrackSwitchHistory`,new vs),e(this,`audioTrackSwitchHistory`,new vs),e(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`),N(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`),N(this.params.desiredState.playbackState,`paused`)):t===`playing`?(this.videoState.startTransitionTo(`playing`),this.playIfAllowed()):n?.to===`ready`&&N(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`&&N(this.params.desiredState.playbackState,`playing`);return;case`paused`:t===`playing`?(this.videoState.startTransitionTo(`playing`),this.playIfAllowed()):n?.to===`paused`&&N(this.params.desiredState.playbackState,`paused`);return;default:return jm(e)}}}),e(this,`init3DScene`,e=>{if(this.scene3D)return;this.scene3D=new Nl(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)}),e(this,`destroy3DScene`,()=>{this.scene3D&&=(this.scene3D.destroy(),void 0)}),this.textTracksManager=new _o(t.source.url),this.params=t,this.video=Wa(t.container,t.tuning),this.tracer=t.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(Ps(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 ag({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;Bm(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:Fm.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(){let{output:e,desiredState:t,observableVideo:n,genericErrorListener:r,connect:i}=this.getProviderSubscriptionInfo();this.subscription.add(this.params.output.availableVideoTracks$.pipe(Im(e=>!!e.length),Wm()).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})}));let a=this.params.desiredState.seekState.stateChangeEnded$.pipe(Vm(e=>e.to.state!==`none`),Lm());this.stallsManager.init({isSeeked$:a,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$:n.isBuffering$,looped$:n.looped$,playing$:n.playing$,duration:this.video.duration}),i(n.ended$,e.endedEvent$),i(n.looped$,e.loopedEvent$),i(n.error$,e.error$),i(n.isBuffering$,e.isBuffering$),i(n.currentBuffer$,e.currentBuffer$),i(n.currentBuffer$,e.currentNativeBuffer$),i(n.playing$,e.firstFrameEvent$),i(n.canplay$,e.canplay$),i(n.inPiP$,e.inPiP$),i(n.inFullscreen$,e.inFullscreen$),i(n.loadedMetadata$,e.loadedMetadataEvent$),i(this.player.error$,e.error$),i(this.player.fetcherRecoverableError$,e.fetcherRecoverableError$),i(this.player.fetcherError$,e.fetcherError$),i(this.player.manifestRequested$,e.manifestRequested$),i(this.player.firstBytesManifest$,e.firstBytesManifest$),i(this.player.manifestReceived$,e.manifestReceived$),i(this.player.firstBytesRequested$,e.firstBytesRequested$),i(this.player.firstBytesReceived$,e.firstBytesReceived$),i(this.player.lastConnectionType$,e.httpConnectionType$),i(this.player.lastConnectionReused$,e.httpConnectionReused$),i(this.player.lastConnectionMetrics$,e.httpConnectionMetrics$),i(this.player.lastDownloadMetrics$,e.httpDownloadMetrics$),i(this.player.isLive$,e.isLive$),i(this.player.lastRequestFirstBytes$.pipe(Im(zm),Wm()),e.firstBytesEvent$),i(this.stallsManager.severeStallOccurred$,e.severeStallOccurred$),i(this.videoState.stateChangeEnded$.pipe(Vm(e=>e.to)),this.params.output.playbackState$),this.subscription.add(n.looped$.subscribe(()=>this.player.warmUpMediaSourceIfNeeded(),r)),this.subscription.add(n.seeked$.subscribe(e.seekedEvent$,r)),this.subscription.add(lo(this.video,t.isLooped,r)),this.subscription.add(n.volumeState$.subscribe(this.params.output.volume$,r)),ou({subscription:this.subscription,desiredState:t,videoElement$:this.params.output.element$,observableVideo:n}),this.subscription.add(uo(this.video,t.volume,n.volumeState$,r)),this.subscription.add(fo(this.video,t.playbackRate,n.playbackRateState$,r)),this.elementSizeManager.connect({video:this.video,observableVideo:n}),i(Zc(this.video,{threshold:this.params.tuning.autoTrackSelection.activeVideoAreaThreshold}),e.elementVisible$),this.subscription.add(n.playing$.subscribe(()=>{this.videoState.setState(`playing`),N(t.playbackState,`playing`),this.scene3D&&this.scene3D.play()},r)).add(n.pause$.subscribe(()=>{this.videoState.setState(`paused`),N(t.playbackState,`paused`)},r)).add(n.canplay$.subscribe(()=>{this.videoState.getState()===`playing`&&!this.video.ended&&this.playIfAllowed()},r)),this.params.tuning.changePlaybackStateToPausedWhenEnded&&this.subscription.add(n.ended$.subscribe(()=>{this.videoState.setState(`paused`),N(t.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(Mm(e,`Manifest not loaded or empty`),!this.params.tuning.isAudioDisabled){let t=[];for(let n of e.audio){t.push(ep(n));let e=[];for(let t of n.representations){let r=Zf(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(tp(t));let e=[];for(let n of t.representations){let r=Xf({...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=Qf(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())},r));let o=Hm(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$,Rm(this.video,`progress`)).pipe(Im(()=>this.videoTracksMap.size>0)),{abrThrottle:s}=this.params.tuning.dash;s&&(o=o.pipe(Km(s))),this.subscription.add(o.subscribe(async()=>{let e=this.player.state$.getState(),n=this.player.state$.getTransition();if(e!==`manifest_ready`&&e!==`running`||n)return;t.autoVideoTrackSwitching.getTransition()&&t.autoVideoTrackSwitching.setState(t.autoVideoTrackSwitching.getState());let r=this.selectVideoAudioRepresentations();if(!r)return;let[i,a]=r,o=[...this.videoTracksMap.keys()].find(e=>this.videoTracksMap.get(e)?.representation.id===i.id);zm(o)&&(this.stallsManager.lastVideoTrackSelected=o);let s=this.params.desiredState.autoVideoTrackLimits.getTransition();if(s&&this.params.output.autoVideoTrackLimits$.next(s.to),e===`manifest_ready`)await this.player.initRepresentations(i.id,a?.id,this.params.sourceHls);else if(await this.player.switchRepresentation(`video`,i.id),a){let e=!!t.audioStream.getTransition();await this.player.switchRepresentation(`audio`,a.id,e)}},r)),this.subscription.add(Nm({videoState:this.videoState.stateChangeEnded$,autoVideoTrackState:Hm(Um([t.autoVideoTrackSwitching.getState()]),t.autoVideoTrackSwitching.stateChangeEnded$.pipe(Vm(e=>e.to)))}).pipe(Vm(({videoState:e,autoVideoTrackState:t})=>e.to!==`stopped`&&t),Lm()).subscribe(e=>this.player.setSmartRepresentationSwitch(e))),this.subscription.add(t.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(Lm()).subscribe(t=>{let n=[...this.videoTracksMap.entries()].find(([,{representation:e}])=>e.id===t);if(!n){e.currentVideoTrack$.next(void 0),e.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),e.currentVideoTrack$.next(r),e.currentVideoStream$.next(tp(i));let o=this.player.calculateDurationFromSegments();o&&this.params.output.duration$.next(o/1e3)},r)),this.subscription.add(this.player.currentAudioRepresentation$.pipe(Lm()).subscribe(t=>{let n=[...this.audioTracksMap.entries()].find(([,{representation:e}])=>e.id===t);if(!n){e.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),e.currentAudioStream$.next(ep(i))},r)),this.subscription.add(this.player.currentVideoRepresentationInit$.subscribe(t=>{if(t?.is3dVideo&&this.params.tuning.spherical?.enabled)try{this.init3DScene(t),e.is3DVideo$.next(!0)}catch(t){e.warning$.next({id:`DashProvider`,message:`DashProvider could not initialize 3D-scene: ${t}`})}else this.destroy3DScene(),this.params.tuning.spherical?.enabled&&e.is3DVideo$.next(!1)},r)),this.subscription.add(this.player.currentVideoSegmentLength$.subscribe(e.currentVideoSegmentLength$,r)),this.subscription.add(this.player.currentAudioSegmentLength$.subscribe(e.currentAudioSegmentLength$,r)),this.textTracksManager.connect(this.video,t,e);let c=t.playbackState.stateChangeStarted$.pipe(Vm(({to:e})=>e===`ready`),Lm());this.subscription.add(Hm(c,t.autoVideoTrackSwitching.stateChangeStarted$,this.player.state$.stateChangeEnded$,Um([`init`])).subscribe(()=>{let e=t.autoVideoTrackSwitching.getState(),n=t.playbackState.getState()===`ready`?this.params.tuning.dash.forwardBufferTargetPreload:e?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;this.player.setBufferTarget(n)})),this.subscription.add(Hm(c,this.player.state$.stateChangeEnded$,Um([`init`])).subscribe(()=>this.player.setPreloadOnly(t.playbackState.getState()===`ready`)));let l=Hm(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,Um([`init`])).pipe(Pm(0));this.subscription.add(l.subscribe(this.syncPlayback,r))}selectVideoAudioRepresentations(){if(this.player.isStreamEnded)return;let e=this.params.tuning.useNewAutoSelectVideoTrack?ws:Cs,t=this.params.tuning.useNewAutoSelectVideoTrack?Ns:Ms,n=this.params.tuning.useNewAutoSelectVideoTrack?As:js,{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=Fp(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(){nc(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState(`paused`),N(this.params.desiredState.playbackState,`paused`,!0))},e=>this.params.output.error$.next({id:`ForcePlay`,message:`play() failed even with workarounds`,category:Fm.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),Ga(this.video),this.tracer.end()}}class mg extends pg{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 hg,merge as gg,filter as _g,filterChanged as vg,isNullable as yg,map as bg,ValueSubject as xg,isNonNullable as Sg}from"@vkontakte/videoplayer-shared/es2018";class Cg extends pg{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 xg(1);a(r.playbackRateState$,o),this.params.tuning.dashCmafLive.catchupLiveForMutedInactiveTab&&this.subscription.add(n.elementVisible$.pipe(vg()).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(bg(e=>e.to)).subscribe(this.player.isLowLatency$)).add(hg({liveBufferTime:n.liveBufferTime$,liveAvailabilityStartTime:this.player.liveAvailabilityStartTime$}).pipe(bg(({liveBufferTime:e,liveAvailabilityStartTime:n})=>e&&n?e*1e3+n+t:void 0)).subscribe(n.liveTime$)).add(hg({liveDuration:this.player.liveDuration$,liveStreamStatus:this.player.liveStreamStatus$,playbackRate:gg(r.playbackRateState$,new xg(1))}).pipe(_g(({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||yg(i)||(t=e-i)})).add(hg({time:n.liveBufferTime$,liveDuration:this.player.liveDuration$,playbackRate:gg(r.playbackRateState$,new xg(1))}).pipe(vg((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||yg(e)||yg(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=$f(e);this.params.output.availableTextTracks$.next([t])}})),this.params.tuning.dashCmafLive.externalStopControl||this.subscription.add(this.player.liveStreamStatus$.pipe(_g(e=>Sg(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 wg=`X-Playback-Duration`,Tg=async e=>{let t=await bu(e),n=await t.text(),r=/#EXT-X-VK-PLAYBACK-DURATION:(\d+)/m.exec(n)?.[1];return r?parseInt(r,10):t.headers.has(wg)?parseInt(t.headers.get(wg),10):void 0};import{assertNever as Eg,combine as Dg,debounce as Og,ErrorCategory as kg,filter as Ag,filterChanged as jg,isNonNullable as Mg,isNullable as Ng,map as Pg,merge as Fg,observableFrom as Ig,Subscription as Lg,ValueSubject as Rg,VideoQuality as zg}from"@vkontakte/videoplayer-shared/es2018";var Bg=l(Nt(),1);import{videoSizeToQuality as Vg,getExponentialDelay as Hg}from"@vkontakte/videoplayer-shared/es2018";var Ug=e=>{let t=null;if(e.QUALITY&&(t=Vo(e.QUALITY)),!t&&e.RESOLUTION){let[n,r]=e.RESOLUTION.split(`x`).map(e=>parseInt(e,10));t=Vg({width:n,height:r})}return t??null},Wg=(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=Bg.default(o[1].split(`,`).map(e=>e.split(`=`))),a=i.QUALITY??`stream-${i.BANDWIDTH}`,s=Ug(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=Bg.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}},Gg=e=>new Promise(t=>{setTimeout(()=>{t()},e)}),Kg=0,qg=async(e,t=e,n,r)=>{let i=await(await bu(e,r)).text();Kg+=1;try{let{qualityManifests:e,textTracks:n}=Wg(i,t);return{qualityManifests:e,textTracks:n}}catch{if(Kg<=n.manifestRetryMaxCount)return await Gg(Hg(Kg-1,{start:n.manifestRetryInterval,max:n.manifestRetryMaxInterval})),qg(e,t,n)}return{qualityManifests:[],textTracks:[]}},Jg=qg;import{isNonNullable as Yg,Subscription as Xg,throttle as Zg,ValueSubject as Qg,Subject as $g,ErrorCategory as e_}from"@vkontakte/videoplayer-shared/es2018";class t_{constructor(t,n,r,i,a){e(this,`params`,void 0),e(this,`subscription`,new Xg),e(this,`abortControllers`,{destroy:new B,nextManifest:null}),e(this,`prepareUrl`,void 0),e(this,`currentTextTrackData`,null),e(this,`availableTextTracks$`,new Qg(null)),e(this,`getCurrentTime$`,new Qg(null)),e(this,`error$`,new $g),this.params={fetchManifestData:r,sourceUrl:i,downloadThreshold:a},this.subscription.add(t.pipe(Zg(1e3)).subscribe(e=>{this.processLiveTime(e)})),this.getCurrentTime$.next(()=>this.currentTextTrackData?this.currentTextTrackData.playlist.segmentStartTime/1e3+n.currentTime:0)}destroy(){this.subscription.unsubscribe(),this.abortControllers.destroy.abort()}async prepare(e){try{let t=new URL(e);t.searchParams.set(`enable-subtitles`,`yes`),this.prepareUrl=t.toString();let{textTracks:n}=await this.fetchManifestData();await this.processTextTracks(n,this.params.sourceUrl)}catch(e){this.error(`prepare`,e)}}async processTextTracks(e,t){try{let n=await this.parseTextTracks(e,t);n&&(this.currentTextTrackData=n)}catch(e){this.error(`processTextTracks`,e)}}async parseTextTracks(e,t){for(let n of e){let e=new URL(n.url,t).toString(),r=await(await bu(e,{signal:this.abortControllers.destroy.signal})).text();return{textTrack:n,playlist:this.parsePlaylist(r,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(Yg(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([{...this.currentTextTrackData.textTrack,url:n.url,isAuto:!0}]);break}}}async fetchNextManifestData(){try{if(this.abortControllers.nextManifest)return;this.abortControllers.nextManifest=new B;let{textTracks:e}=await this.fetchManifestData(),t=await this.parseTextTracks(e,this.params.sourceUrl);this.currentTextTrackData&&t&&(this.currentTextTrackData.playlist.segments=t.playlist.segments)}catch(e){this.error(`fetchNextManifestData`,e)}finally{this.abortControllers.nextManifest=null}}async fetchManifestData(){let e=this.prepareUrl??this.params.sourceUrl;return await this.params.fetchManifestData(e,{signal:this.abortControllers.destroy.signal})}error(e,t){this.error$.next({id:`[LiveTextManager][HLS_LIVE_CMAF]`,category:e_.WTF,thrown:t,message:e})}}class n_{constructor(t){e(this,`subscription`,new Lg),e(this,`videoState`,new F(`stopped`)),e(this,`video`,void 0),e(this,`params`,void 0),e(this,`textTracksManager`,null),e(this,`liveTextManager`,null),e(this,`masterManifest`,void 0),e(this,`manifests$`,new Rg([])),e(this,`maxSeekBackTime$`,void 0),e(this,`liveOffset`,new vo),e(this,`manifestStartTime$`,new Rg(void 0)),e(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`),N(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`?N(this.params.desiredState.playbackState,`ready`):t===`paused`?(this.videoState.setState(`paused`),this.liveOffset.pause(),N(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`&&N(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`&&(N(this.params.desiredState.playbackState,`paused`),this.liveOffset.pause());return;case`changing_manifest`:break;default:return Eg(e)}}),this.params=t,this.video=Wa(t.container,t.tuning),this.params.output.element$.next(this.video),this.masterManifest={id:`master`,quality:zg.INVARIANT,url:this.params.source.url};let n=(e,t)=>Jg(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 t_(this.params.output.liveTime$,this.video,n,this.params.source.url,this.params.tuning.hlsLiveNewTextManagerDownloadThreshold):this.textTracksManager=new _o(t.source.url),n(this.generateLiveUrl()).then(({qualityManifests:e,textTracks:t})=>{e.length===0&&this.params.output.error$.next({id:`HlsLiveProviderInternal:empty_manifest`,category:kg.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:kg.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(Ps(this.params.source.url)),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.maxSeekBackTime$=new Rg(t.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:kg.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(uo(this.video,t.volume,r.volumeState$,n)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,n)),this.subscription.add(fo(this.video,t.playbackRate,r.playbackRateState$,n)),i(Zc(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`),N(t.playbackState,`playing`)},n)).add(r.pause$.subscribe(()=>{this.videoState.setState(`paused`),N(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(jg(),Pg(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&&Mg(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(Ps(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(Dg({startTime:this.manifestStartTime$.pipe(Ag(Mg)),currentTime:r.timeUpdate$}).subscribe(({startTime:e,currentTime:t})=>this.params.output.liveTime$.next(e+t*1e3),n)),this.subscription.add(this.manifests$.pipe(Pg(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=Fg(t.playbackState.stateChangeStarted$,t.seekState.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.stateChangeStarted$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,this.manifests$,Ig([`init`])).pipe(Og(0));this.subscription.add(a.subscribe(this.syncPlayback,n))}destroy(){this.subscription.unsubscribe(),this.textTracksManager?.destroy(),this.liveTextManager?.destroy(),this.params.output.element$.next(void 0),Ga(this.video)}prepare(){let e=this.selectManifest();if(Ng(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=Qr(r.toString(),this.liveOffset.getTotalOffset(),i);this.liveTextManager?.prepare(a),this.video.setAttribute(`src`,a),this.video.load(),Tg(a).then(e=>{if(!Ng(e))this.maxSeekBackTime$.next(e);else{let e=this.params.source.maxSeekBackTime??this.maxSeekBackTime$.getValue();(Ng(e)||!isFinite(e))&&bu(a).then(e=>e.text()).then(e=>{let t=/#EXT-X-STREAM-INF[^\n]+\n(.+)/m.exec(e)?.[1];t&&Tg(new URL(t,a).toString()).then(e=>{Ng(e)||this.maxSeekBackTime$.next(e)})}).catch(()=>{})}})}playIfAllowed(){nc(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState(`paused`),this.liveOffset.pause(),N(this.params.desiredState.playbackState,`paused`,!0))},e=>this.params.output.error$.next({id:`ForcePlay`,message:`play() failed even with workarounds`,category:kg.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=Qr(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 r_,debounce as i_,ErrorCategory as a_,fromEvent as o_,isNonNullable as s_,isNullable as c_,map as l_,merge as u_,observableFrom as d_,Subscription as f_,ValueSubject as p_,VideoQuality as m_}from"@vkontakte/videoplayer-shared/es2018";class h_{constructor(t){e(this,`subscription`,new f_),e(this,`videoState`,new F(`stopped`)),e(this,`video`,void 0),e(this,`params`,void 0),e(this,`textTracksManager`,void 0),e(this,`masterManifest`,void 0),e(this,`manifests$`,new p_([])),e(this,`unmuteAfterBrowserResetsHappened`,new p_(!1)),e(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`),N(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`?N(this.params.desiredState.playbackState,`ready`):t===`paused`?(this.videoState.setState(`paused`),N(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`&&N(this.params.desiredState.playbackState,`playing`);return;case`paused`:t===`playing`?(this.videoState.startTransitionTo(`playing`),this.playIfAllowed()):n?.to===`paused`&&N(this.params.desiredState.playbackState,`paused`);return;case`changing_manifest`:break;default:return r_(e)}}),this.textTracksManager=new _o(t.source.url),this.params=t,this.video=Wa(t.container,t.tuning),this.params.output.element$.next(this.video),this.masterManifest={id:`master`,quality:m_.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(Ps(this.params.source.url)),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),this.params.output.manifestRequested$.next(),Jg(Qr(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:a_.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:a_.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(l_(e=>e.to)),this.params.output.playbackState$),this.subscription.add(lo(this.video,t.isLooped,n)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,n)),this.subscription.add(fo(this.video,t.playbackRate,r.playbackRateState$,n)),ou({subscription:this.subscription,desiredState:t,videoElement$:this.params.output.element$,observableVideo:r}),this.subscription.add(uo(this.video,t.volume,r.volumeState$,n)),this.textTracksManager.connect(this.video,t,e),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState(`playing`),N(t.playbackState,`playing`)},n)).add(r.pause$.subscribe(()=>{this.videoState.setState(`paused`),N(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&&s_(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(Ps(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`),N(t.playbackState,`paused`)})),this.subscription.add(this.manifests$.pipe(l_(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)),!P.device.isIOS||!this.params.tuning.useNativeHLSTextTracks){let{textTracks:e}=this.video;this.subscription.add(u_(o_(e,`addtrack`),o_(e,`removetrack`),o_(e,`change`),d_([`init`])).subscribe(()=>{for(let t=0;t<e.length;t++)e[t].mode=`hidden`},n))}let a=u_(t.playbackState.stateChangeStarted$,t.seekState.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.stateChangeStarted$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,this.manifests$,d_([`init`])).pipe(i_(0));this.subscription.add(a.subscribe(this.syncPlayback,n))}destroy(){this.subscription.unsubscribe(),this.textTracksManager.destroy(),this.params.output.element$.next(void 0),Ga(this.video)}prepare(){let e=this.selectManifest();if(c_(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(){nc(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState(`paused`),N(this.params.desiredState.playbackState,`paused`,!0))},e=>this.params.output.error$.next({id:`ForcePlay`,message:`play() failed even with workarounds`,category:a_.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next(),this.video.currentTime=e/1e3}}var g_=l(et(),1),__=l(We(),1),v_=l(xn(),1);import{assertNever as y_,assertNonNullable as b_,debounce as x_,ErrorCategory as S_,isHigherOrEqual as C_,isLowerOrEqual as w_,isNonNullable as T_,merge as E_,observableFrom as D_,Subscription as O_,map as k_}from"@vkontakte/videoplayer-shared/es2018";class A_{constructor(t){e(this,`subscription`,new O_),e(this,`videoState`,new F(`stopped`)),e(this,`video`,void 0),e(this,`trackUrls`,{}),e(this,`params`,void 0),e(this,`textTracksManager`,new _o),e(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`),N(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`?N(this.params.desiredState.playbackState,`ready`):t===`paused`?(this.videoState.setState(`paused`),N(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`&&N(this.params.desiredState.playbackState,`playing`);return;case`paused`:t===`playing`?(this.videoState.startTransitionTo(`playing`),this.playIfAllowed()):n?.to===`paused`&&N(this.params.desiredState.playbackState,`paused`);return;default:return y_(e)}}),this.params=t,this.video=Wa(t.container,t.tuning),this.params.output.element$.next(this.video),g_.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(__.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:S_.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(k_(e=>e.to)),this.params.output.playbackState$),this.subscription.add(lo(this.video,t.isLooped,n)),ou({subscription:this.subscription,desiredState:t,videoElement$:this.params.output.element$,observableVideo:r}),this.subscription.add(uo(this.video,t.volume,r.volumeState$,n)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,n)),this.subscription.add(fo(this.video,t.playbackRate,r.playbackRateState$,n)),i(Zc(this.video),e.elementVisible$),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState(`playing`),N(t.playbackState,`playing`)},n)).add(r.pause$.subscribe(()=>{this.videoState.setState(`paused`),N(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&&T_(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`),N(t.playbackState,`paused`)})),this.textTracksManager.connect(this.video,t,e);let a=E_(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,D_([`init`])).pipe(x_(0));this.subscription.add(a.subscribe(this.syncPlayback,n))}destroy(){this.subscription.unsubscribe(),this.textTracksManager.destroy(),this.trackUrls={},this.params.output.element$.next(void 0),Ga(this.video)}prepare(){let e=this.params.desiredState.videoTrack.getState()?.id;b_(e,`MpegProvider: track is not selected`);let{url:t}=this.trackUrls[e];b_(t,`MpegProvider: No url for ${e}`),this.params.tuning.requestQuick&&(t=Hu(t)),this.video.setAttribute(`src`,t),this.video.load(),this.params.output.hostname$.next(Ps(t))}playIfAllowed(){nc(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState(`paused`),N(this.params.desiredState.playbackState,`paused`,!0))},e=>this.params.output.error$.next({id:`ForcePlay`,message:`play() failed even with workarounds`,category:S_.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(As(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=__.default(this.trackUrls).map(e=>e.track);if(!r||!i||ps(e,a[0].quality,v_.default(a,-1)?.quality)){n();return}let o=e.max?w_(r,e.max):!0,s=e.min?C_(r,e.min):!0;o&&s||n(e)}}import{assertNever as j_,debounce as M_,merge as N_,observableFrom as P_,Subscription as F_,map as I_,ValueSubject as L_,ErrorCategory as R_,VideoQuality as z_}from"@vkontakte/videoplayer-shared/es2018";import{ErrorCategory as B_}from"@vkontakte/videoplayer-shared/es2018";var V_=[`stun:videostun.mycdn.me:80`],H_=1e3,U_=3,W_=()=>null;class G_{constructor(t,n){e(this,`options`,void 0),e(this,`ws`,null),e(this,`peerConnection`,null),e(this,`serverUrl`,``),e(this,`streamKey`,``),e(this,`stream`,null),e(this,`signalingType`,`JOIN`),e(this,`retryTimeout`,void 0),e(this,`retryCount`,0),e(this,`externalStartCallback`,W_),e(this,`externalStopCallback`,W_),e(this,`externalErrorCallback`,W_),this.options=this.normalizeOptions(n);let r=t.split(`/`);this.serverUrl=r.slice(0,r.length-1).join(`/`),this.streamKey=r[r.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}}async handleUpdateMessage(e){try{let t=await this.createOffer();this.peerConnection&&await this.peerConnection.setLocalDescription(t),this.handleAnswer(e.sdp)}catch(e){this.handleRTCError(e)}}async handleLogin(){try{let e={iceServers:[{urls:V_}]};this.peerConnection=new RTCPeerConnection(e),this.peerConnection.ontrack=this.onPeerConnectionStream.bind(this),this.peerConnection.onicecandidate=this.onPeerConnectionIceCandidate.bind(this),this.peerConnection.oniceconnectionstatechange=this.onPeerConnectionIceConnectionStateChange.bind(this);let t=await this.createOffer();await this.peerConnection.setLocalDescription(t),this.send({type:this.signalingType,inviteType:`OFFER`,streamKey:this.streamKey,sdp:t.sdp,callSupport:!1})}catch(e){this.handleRTCError(e)}}async handleAnswer(e){try{this.peerConnection&&await this.peerConnection.setRemoteDescription(new RTCSessionDescription({type:`answer`,sdp:e}))}catch(e){this.handleRTCError(e)}}async handleCandidate(e){if(e)try{this.peerConnection&&await this.peerConnection.addIceCandidate(e)}catch(e){this.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:B_.WTF,message:e.message})}async onPeerConnectionStream(e){let t=e.streams[0];this.stream&&this.stream.id===t.id||(this.stream=t,this.externalStartCallback(this.stream))}onPeerConnectionIceCandidate(e){e.candidate&&this.send({type:this.signalingType,inviteType:`CANDIDATE`,candidate:e.candidate})}onPeerConnectionIceConnectionStateChange(){if(this.peerConnection){let e=this.peerConnection.iceConnectionState;[`failed`,`closed`].indexOf(e)>-1&&(this.retryCount++,this.retryCount>this.options.maxRetryNumber?this.handleNetworkError():(this.closeConnections(),this.scheduleRetry()))}}async createOffer(){let e={offerToReceiveAudio:!0,offerToReceiveVideo:!0,voiceActivityDetection:!1};if(!this.peerConnection)throw Error(`Can not create offer - no peer connection instance `);let t=await this.peerConnection.createOffer(e),n=t.sdp||``;if(!/^a=rtpmap:\d+ H264\/\d+$/m.test(n))throw Error(`No h264 codec support error`);return t}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),H_)}normalizeOptions(e={}){let t={stunServerList:V_,maxRetryNumber:U_,errorChanel:null};return e.stunServerList&&(t.stunServerList=e.stunServerList),e.maxRetryNumber&&e.maxRetryNumber>0&&(t.maxRetryNumber=e.maxRetryNumber),t}}class K_{constructor(t){e(this,`subscription`,void 0),e(this,`params`,void 0),e(this,`log`,void 0),e(this,`video`,void 0),e(this,`videoState`,new F(`stopped`)),e(this,`liveStreamClient`,void 0),e(this,`maxSeekBackTime$`,new L_(0)),e(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`),N(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`),N(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`&&N(this.params.desiredState.playbackState,`playing`);return;case`paused`:t===`playing`?(this.videoState.startTransitionTo(`playing`),this.playIfAllowed()):n?.to===`paused`&&N(this.params.desiredState.playbackState,`paused`);return;default:return j_(e)}}),this.subscription=new F_,this.params=t,this.log=this.params.dependencies.logger.createComponentLog(`WebRTCLiveProvider`),this.video=Wa(t.container,t.tuning),this.liveStreamClient=new G_(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),Ga(this.video)}subscribe(){let{output:e,desiredState:t}=this.params,n=t=>{e.error$.next({id:`WebRTCLiveProvider`,category:R_.WTF,message:`WebRTCLiveProvider internal logic error`,thrown:t})};this.subscription.add(N_(this.videoState.stateChangeStarted$.pipe(I_(e=>({transition:e,type:`start`}))),this.videoState.stateChangeEnded$.pipe(I_(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(Zc(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(uo(this.video,t.volume,r.volumeState$,n)).add(r.volumeState$.subscribe(e.volume$,n)).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 j_(n.to)}},n)).add(N_(t.playbackState.stateChangeStarted$,this.videoState.stateChangeEnded$,P_([`init`])).pipe(M_(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(Ps(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:z_.INVARIANT}),this.video.srcObject=e,N(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:R_.EXTERNAL_API,message:e.message,thrown:e})}playIfAllowed(){nc(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState(`paused`),N(this.params.desiredState.playbackState,`paused`,!0))},e=>this.params.output.error$.next({id:`ForcePlay`,message:`play() failed even with workarounds`,category:R_.DOM,thrown:e}))}prepare(){this.liveStreamClient.connect()}}class q_{constructor(t){e(this,`length`,void 0),e(this,`index`,void 0),e(this,`iterator`,void 0),e(this,`current`,void 0),this.length=t.length,this.iterator=t[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 J_,assertNonNullable as Y_,ErrorCategory as X_,filter as Z_,isNonNullable as Q_,isNullable as $_,map as ev,merge as tv,once as nv,Subject as K,Subscription as rv,ValueSubject as q,flattenObject as iv,devNull as av,getWindow as ov}from"@vkontakte/videoplayer-shared/es2018";import{Observable as sv,map as cv,Subscription as lv,Subject as uv}from"@vkontakte/videoplayer-shared/es2018";var dv=e=>new sv(t=>{let n=new lv,r=e.desiredPlaybackState$.stateChangeStarted$.pipe(cv(({from:e,to:t})=>`${e}-${t}`)),i=e.desiredPlaybackState$.stateChangeEnded$,a=e.providerChanged$.pipe(cv(({type:e})=>e!==void 0)),o=new uv,s=0,c=`unknown`;return n.add(r.subscribe(t=>{s&&window.clearTimeout(s),c=t,s=window.setTimeout(()=>o.next(t),e.maxTransitionInterval),R({m:`hangup.set`,l:t,id:s})})),n.add(i.subscribe(()=>{R({m:`hangup.cl`,id:s}),window.clearTimeout(s),c=`unknown`,s=0})),n.add(a.subscribe(t=>{s&&(R({m:`hangup.rs.0`,id:s}),window.clearTimeout(s),s=0,t&&(s=window.setTimeout(()=>o.next(c),e.maxTransitionInterval),R({m:`hangup.rs.1`,id:s})))})),n.add(o.subscribe(t)),()=>{window.clearTimeout(s),n.unsubscribe()}});import{ErrorCategory as fv,Subscription as pv,combine as mv,filter as hv,once as gv}from"@vkontakte/videoplayer-shared/es2018";function _v(){return new(window.AudioContext||window.webkitAudioContext)}class vv{constructor(t,n,r,i){e(this,`providerOutput`,void 0),e(this,`provider$`,void 0),e(this,`volumeMultiplierError$`,void 0),e(this,`volumeMultiplier`,void 0),e(this,`destroyController`,new B),e(this,`subscriptions`,new pv),e(this,`audioContext`,null),e(this,`gainNode`,null),e(this,`mediaElementSource`,null),this.providerOutput=t,this.provider$=n,this.volumeMultiplierError$=r,this.volumeMultiplier=i,this.subscriptions.add(this.provider$.pipe(hv(e=>!!e.type),gv()).subscribe(({type:e})=>this.subscribe(e)))}subscribe(e){P.browser.isSafari&&e!==`MPEG`||this.subscriptions.add(mv({video:this.providerOutput.element$,playbackState:this.providerOutput.playbackState$,volume:this.providerOutput.volume$}).pipe(hv(({playbackState:e,video:t,volume:{muted:n,volume:r}})=>e===`playing`&&!!t&&!n&&!!r),gv()).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}async initAudioContextOnce(e){let{volumeMultiplier:t}=this,n=_v();this.audioContext=n;let r=n.createGain();if(this.gainNode=r,r.gain.value=t,r.connect(n.destination),n.state===`suspended`&&(await n.resume(),this.destroyController.signal.aborted))return!1;let i=n.createMediaElementSource(e);return this.mediaElementSource=i,i.connect(r),!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:vv.errorId,category:fv.VIDEO_PIPELINE,message:e?.message??`${vv.errorId} exception`,thrown:e})}}e(vv,`errorId`,`VolumeMultiplierManager`);var yv={chunkDuration:5e3,maxParallelRequests:5};class bv{constructor(t){e(this,`current$`,new q({type:void 0})),e(this,`providerError$`,new K),e(this,`noAvailableProvidersError$`,new K),e(this,`volumeMultiplierError$`,new K),e(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)}),e(this,`subscription`,new rv),e(this,`screenFormatsIterator`,void 0),e(this,`chromecastFormatsIterator`,void 0),e(this,`videoCodecsIterator`,void 0),e(this,`log`,void 0),e(this,`tracer`,void 0),e(this,`params`,void 0),e(this,`failoverIndex`,void 0),e(this,`volumeMultiplierManager`,null),this.params=t,this.log=this.params.dependencies.logger.createComponentLog(`ProviderContainer`),this.tracer=t.dependencies.tracer.createComponentTracer(this.constructor.name);let n=Bi([...Td(this.params.tuning),...wd(this.params.tuning)]).filter(e=>Q_(t.sources[e])),{forceFormat:r,formatsToAvoid:i}=this.params.tuning,a=[];a=r?[r]:i.length?[...n.filter(e=>!ua(i,e)),...n.filter(e=>ua(i,e))]:n,this.log({message:`Selected formats: ${a.join(` > `)}`}),this.tracer.log(`Selected formats`,iv(a)),this.screenFormatsIterator=new q_(a),this.chromecastFormatsIterator=new q_([...Ed(!0),...Ed(!1)].filter(e=>Q_(t.sources[e]))),this.providerOutput.availableSources$.next(t.sources);let{volumeMultiplier:o=1,tuning:{useVolumeMultiplier:s}}=this.params;s&&o!==1&&vv.isSupported()&&(this.volumeMultiplierManager=new vv(this.providerOutput,this.current$,this.volumeMultiplierError$,o))}init(){R.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 q_(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($_(t)){this.handleNoFormatsError(e);return}let n;try{n=this.createProvider(e,t)}catch(e){this.providerError$.next({id:`ProviderNotConstructed`,category:X_.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 J_(e)}}createScreenProvider(e){let{sources:t,container:n,desiredState:r,panelSize:i}=this.params,a=this.providerOutput,o={container:n,source:null,desiredState:r,output:a,dependencies:this.params.dependencies,tuning:this.params.tuning,panelSize:i};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);Y_(n);let{useDashProviderVirtual:i,useDashProviderVirtualMobile:a}=this.params.tuning,{isMobile:s}=P.device;return!s&&i||s&&a?new Zp({...o,source:n,sourceHls:r,forceVideoCodec:this.videoCodecsIterator?.getValue()}):new mg({...o,source:n,sourceHls:r,forceVideoCodec:this.videoCodecsIterator?.getValue()})}case`DASH_LIVE_CMAF`:{let n=this.applyFailoverHost(t[e]);return Y_(n),this.params.tuning.useDashProviderVirtual&&!P.device.isMobile||this.params.tuning.useDashProviderVirtualMobile&&P.device.isMobile?new Am({...o,source:n}):new Cg({...o,source:n})}case`HLS`:case`HLS_ONDEMAND`:case`HLS_FMP4`:{let n=this.applyFailoverHost(t[e]);return Y_(n),new h_({...o,source:n})}case`HLS_LIVE`:case`HLS_LIVE_CMAF`:{let n=this.applyFailoverHost(t[e]);return Y_(n),new n_({...o,source:n,config:{maxPausedTime:this.params.tuning.live.maxPausedTime},format:e})}case`MPEG`:{let n=this.applyFailoverHost(t[e]);return Y_(n),new A_({...o,source:n})}case`DASH_LIVE`:{let n=this.applyFailoverHost(t[e]);return Y_(n),new tl({...o,source:n,config:{...yv,maxPausedTime:this.params.tuning.live.maxPausedTime}})}case`WEB_RTC_LIVE`:{let i=this.applyFailoverHost(t[e]);return Y_(i),new K_({container:n,source:i,desiredState:r,output:a,dependencies:this.params.dependencies,tuning:this.params.tuning})}case`DASH`:case`DASH_LIVE_WEBM`:throw Error(`${e} is no longer supported`);default:return J_(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 ca){let{chromecastConnector:e}=this.params.dependencies.chromecastInitializer;return Y_(e),new Ui({...a,chromecastConnector:e})}let o=this.params.dependencies.chromecastInitializer.connection$.getValue();return Y_(o),new ja({...a,connection:o})}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 J_(e)}}skipFormat(e){switch(e){case`SCREEN`:return this.screenFormatsIterator.next();case`CHROMECAST`:return this.chromecastFormatsIterator.next();default:return J_(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 J_(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{...e,url:n(e.url)}}return fa.default(da.default(e).map(([e,t])=>[e,n(t)]))}initProviderErrorHandling(){let e=new rv,t=!1,n=0;e.add(tv(this.providerOutput.error$.pipe(Z_(e=>!this.params.tuning.ignoreAudioRendererError||!e.message||!/AUDIO_RENDERER_ERROR/gi.test(e.message))),dv({desiredPlaybackState$:this.params.desiredState.playbackState,maxTransitionInterval:this.params.tuning.maxPlaybackTransitionInterval,position$:this.providerOutput.position$,providerChanged$:this.current$}).pipe(ev(e=>({id:`ProviderHangup:${e}`,category:X_.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(Z_(({to:e})=>e===`playing`),nv()).subscribe(()=>t=!0);e.add(n)}));let r=()=>{let e=R.drain(),{logDashLiveDebug:t,sendDashLiveDebug:n}=this.params.tuning;if(t&&ov().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,Lp.default)(l).map(([f,m])=>`${f}:${m}`).join(",");return c+=`${d}: ${h}${p?`: ${p}`:""};`,c},"");BO.push("core",{key:"vp_dash_live_debug",strings:[u]})}};return e.add(this.providerError$.subscribe(a=>{a.id.startsWith("ProviderHangup")&&(N({m:"final.0",e:a.id}),r())})).add(this.noAvailableProvidersError$.subscribe(()=>{N({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===Au.NETWORK,c=a.category===Au.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={...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",$p(o)):this.tracer.error("providerError",$p(o))})),e}};import{fromEvent as Ru,once as OO,combine as NO,Subscription as xw,ValueSubject as Cp,map as Pw,filter as FO,isNonNullable as $u,now as Qe,safeStorage as Dp,getWindow as UO}from"@vkontakte/videoplayer-shared/es2018";var qO=5e3,kw="one_video_throughput",Aw="one_video_rtt",Vp=()=>{let{navigator:s}=UO();if(s)return s.connection},Rw=()=>{var e;let s=(e=Vp())==null?void 0:e.downlink;if($u(s)&&s!==10)return s*1e3},$w=()=>{var e;let s=(e=Vp())==null?void 0:e.rtt;if($u(s)&&s!==3e3)return s},Mw=(s,e,t)=>{let i=t*8,r=i/s;return i/(r+e)},Bp=class s{constructor(e){this.subscription=new xw;this.concurrentDownloads=new Set;var r,a;this.tuningConfig=e;let t=s.load(kw)||(e.useBrowserEstimation?Rw():void 0)||qO,i=(a=(r=s.load(Aw))!=null?r:e.useBrowserEstimation?$w():void 0)!=null?a:0;if(this.throughput$=new Cp(t),this.rtt$=new Cp(i),this.rttAdjustedThroughput$=new Cp(Mw(t,i,e.rttPenaltyRequestSize)),this.throughput=Ct.getSmoothedValue(t,-1,e),this.rtt=Ct.getSmoothedValue(i,1,e),e.useBrowserEstimation){let n=()=>{let c=Rw();c&&this.throughput.next(c);let d=$w();$u(d)&&this.rtt.next(d)},o=Vp();o&&"onchange"in o&&this.subscription.add(Ru(o,"change").subscribe(n)),n()}this.subscription.add(this.throughput.smoothed$.subscribe(n=>{Dp.set(kw,n.toFixed(0))})),this.subscription.add(this.rtt.smoothed$.subscribe(n=>{Dp.set(Aw,n.toFixed(0))})),this.subscription.add(this.throughput.debounced$.pipe(Pw(n=>Math.round(n))).subscribe(this.throughput$)),this.subscription.add(this.rtt.debounced$.subscribe(this.rtt$)),this.subscription.add(NO({throughput:this.throughput.smoothed$,rtt:this.rtt.smoothed$}).pipe(Pw(({throughput:n,rtt:o})=>Mw(n,o,e.rttPenaltyRequestSize)),FO(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=Qe(),r=new xw;switch(this.subscription.add(r),this.concurrentDownloads.add(e),e.readyState){case 4:break;case 3:case 2:r.add(Ru(e,"progress").pipe(OO()).subscribe(a=>{t=a.loaded,i=Qe()}));break;case 1:case 0:r.add(Ru(e,"loadstart").subscribe(()=>{t=0,i=Qe()}));break}r.add(Ru(e,"loadend").subscribe(a=>{if(e.status===200){let n=a.loaded,o=Qe(),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=Qe(),n=0,o=Qe(),u=d=>{this.concurrentDownloads.delete(e),i.releaseLock(),e.cancel(`Throughput Estimator error: ${d}`).catch(()=>{})},c=async({done:d,value:l})=>{if(d)!t&&this.addRawSpeed(r,Qe()-a,1),this.concurrentDownloads.delete(e);else if(l){if(t){let p=Qe();if(p-o>this.tuningConfig.lowLatency.continuesByteSequenceInterval||p-a>this.tuningConfig.lowLatency.maxLastEvaluationTimeout){let f=o-a;f&&this.addRawSpeed(n,f,1,t),n=l.byteLength,a=Qe()}else n+=l.byteLength;o=Qe()}else r+=l.byteLength,n+=l.byteLength,n>=this.tuningConfig.streamMinSampleSize&&Qe()-o>=this.tuningConfig.streamMinSampleTime&&(this.addRawSpeed(n,Qe()-o,this.concurrentDownloads.size),n=0,o=Qe());await(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=Dp.get(e);if($u(t))return(i=parseInt(t,10))!=null?i:void 0}},Lw=Bp;import{fillWithDefault as HO,VideoQuality as Mu}from"@vkontakte/videoplayer-shared/es2018";var jO={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:Mu.Q_4320P,activeVideoAreaThreshold:.1,highQualityLimit:Mu.Q_720P,trafficSavingLimit:Mu.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:Mu.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},Cw=s=>HO(s,jO);import{assertNonNullable as Np,combine as Ot,ErrorCategory as Lu,filter as fe,filterChanged as z,fromEvent as Fp,isNonNullable as Nw,isNullable as tN,Logger as iN,map as G,mapTo as Fw,merge as di,now as Cu,once as ye,Subject as W,Subscription as Uw,tap as Up,ValueSubject as L,isHigher as rN,isInvariantQuality as qw,flattenObject as pi,throttle as qp,getTraceSubscriptionMethod as Hw,TracerFactory as aN,InternalsExposure as sN,getPlayerId as nN,devNull as Du}from"@vkontakte/videoplayer-shared/es2018";import{merge as WO,map as QO,filter as Dw,isNonNullable as zO}from"@vkontakte/videoplayer-shared/es2018";var _p=({seekState:s,position$:e})=>WO(s.stateChangeEnded$.pipe(QO(({to:t})=>{var i;return t.state==="none"?void 0:((i=t.position)!=null?i:NaN)/1e3}),Dw(zO)),e.pipe(Dw(()=>s.getState().state==="none")));import{assertNonNullable as GO}from"@vkontakte/videoplayer-shared/es2018";var Bw=s=>{let e=typeof s.container=="string"?document.getElementById(s.container):s.container;return GO(e,`Wrong container or containerId {${s.container}}`),e};import{filter as YO,once as KO}from"@vkontakte/videoplayer-shared/es2018";var Vw=(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(YO(r=>r.length>0),KO()).subscribe(r=>{r.find(i)&&e.startTransitionTo(s)}):(s===void 0||t!=null&&t.getValue().find(i))&&e.startTransitionTo(s)};var _w=_(Gt(),1);import{devNull as XO,getWindow as Op}from"@vkontakte/videoplayer-shared/es2018";var Ow=()=>{let s="mediaCapabilities"in Op().navigator?JO:ZO,e=qi(async()=>{let t=await Promise.all((0,_w.default)(eN).map(async([r,a])=>({codec:r,supported:await s(a)}))),i=[B.browser.current,...t.map(r=>JSON.stringify(r))].slice(0,16);return XO.push("core",{key:"videoplayer_decoding_info",strings:i}),t});return()=>Hi(e)},JO=async s=>{if(!s)return Promise.resolve({supported:!1});let e={["channels"in s?"audio":"video"]:s};return await Op().navigator.mediaCapabilities.decodingInfo({type:"media-source",...e})},ZO=s=>{var i;if(!s)return Promise.resolve({supported:!1});let e=Op().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"})},eN={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 Bu=class{constructor(e={},t=aN.createRootTracer(!1),i){this.subscription=new Uw;this.logger=new iN;this.abrLogger=this.logger.createComponentLog("ABR");this.internalsExposure=null;this.isPlaybackStarted=!1;this.hasLiveOffsetByPaused=new L(!1);this.hasLiveOffsetByPausedTimer=0;this.playerInitRequest=0;this.playerInited=new L(!1);this.wasSetStartedQuality=!1;this.skipVideoElVolumeSync=!1;this.desiredState={playbackState:new H("stopped"),seekState:new H({state:"none"}),volume:new H({volume:1,muted:!1}),videoTrack:new H(void 0),videoStream:new H(void 0),audioStream:new H(void 0),autoVideoTrackSwitching:new H(!0),autoVideoTrackLimits:new H({}),isLooped:new H(!1),isLowLatency:new H(!1),playbackRate:new H(1),externalTextTracks:new H([]),internalTextTracks:new H([]),currentTextTrack:new H(void 0),textTrackCuesSettings:new H({}),cameraOrientation:new H({x:0,y:0})};this.info={playbackState$:new L(void 0),position$:new L(0),duration$:new L(1/0),muted$:new L(!1),volume$:new L(1),availableVideoStreams$:new L([]),currentVideoStream$:new L(void 0),availableQualities$:new L([]),availableQualitiesFps$:new L({}),currentQuality$:new L(void 0),isAutoQualityEnabled$:new L(!0),autoQualityLimitingAvailable$:new L(!1),autoQualityLimits$:new L({}),predefinedQualityLimitType$:new L("unknown"),availableAudioStreams$:new L([]),currentAudioStream$:new L(void 0),availableAudioTracks$:new L([]),isAudioAvailable$:new L(!0),currentPlaybackRate$:new L(1),currentBuffer$:new L({start:0,end:0}),currentNativeBuffer$:new L({start:0,end:0}),isBuffering$:new L(!0),isStalled$:new L(!1),isEnded$:new L(!1),isLooped$:new L(!1),isLive$:new L(void 0),isLiveEnded$:new L(null),canPlayLiveTailBuffer$:new L(!1),canChangePlaybackSpeed$:new L(void 0),atLiveEdge$:new L(void 0),atLiveDurationEdge$:new L(void 0),liveTime$:new L(void 0),liveBufferTime$:new L(void 0),liveLatency$:new L(void 0),currentFormat$:new L(void 0),availableTextTracks$:new L([]),currentTextTrack$:new L(void 0),throughputEstimation$:new L(void 0),rttEstimation$:new L(void 0),videoBitrate$:new L(void 0),hostname$:new L(void 0),httpConnectionType$:new L(void 0),httpConnectionReused$:new L(void 0),httpConnectionMetrics$:new L(void 0),httpDownloadMetrics$:new L(void 0),surface$:new L("none"),chromecastState$:new L("NOT_AVAILABLE"),chromecastDeviceName$:new L(void 0),intrinsicVideoSize$:new L(void 0),availableSources$:new L(void 0),is3DVideo$:new L(!1),currentVideoSegmentLength$:new L(0),currentAudioSegmentLength$:new L(0)};this.events={inited$:new W,ready$:new W,started$:new W,playing$:new W,paused$:new W,stopped$:new W,willReady$:new W,willStart$:new W,willResume$:new W,willPause$:new W,willStop$:new W,willDestruct$:new W,watchCoverageRecord$:new W,watchCoverageLive$:new W,managedError$:new W,fatalError$:new W,fetcherRecoverableError$:new W,ended$:new W,looped$:new W,seeked$:new W,willSeek$:new W,autoplaySoundProhibited$:new W,manifestRequested$:new W,firstBytesManifest$:new W,manifestReceived$:new W,firstBytesRequested$:new W,firstBytesReceived$:new W,firstBytes$:new W,loadedMetadata$:new W,firstFrame$:new W,canplay$:new W,log$:new W,fetcherError$:new W,severeStallOccured$:new W};this.experimental={element$:new L(void 0),enableDebugTelemetry$:new L(!1),dumpTelemetry:Ty,getCurrentTime$:new L(null)};this.initLogs(),this.tuning=Cw(e),this.tracer=t,this.tuning.suppressExceptionsInObservables&&((0,Hp.default)(this.info).forEach(a=>a.setSuppressErrors(!0)),(0,Hp.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 Pt(r):new Rn(r),this.throughputEstimator=new Lw(this.tuning.throughputEstimator),e.exposeInternalsToGlobal&&(this.internalsExposure=new sN("core",nN(i==null?void 0:i.playerId)),this.internalsExposure.expose({player:this})),this.initChromecastSubscription(),this.initDesiredStateSubscriptions(),this.devNullLog=i==null?void 0:i.onDevNullLog,Du.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,v)=>{let g=typeof v;return(0,jw.default)(["number","string","boolean"],g)?v:v===null?null:`<${g}>`})),p=`Player.${String(n)}`,h=`Exception calling ${p} (${l.join(", ")})`;throw this.events.fatalError$.next({id:p,category:Lu.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 u,c,d;let{container:n,...o}=e;this.tracer.log("initVideo",pi(o)),this.domContainer=Bw(e),this.chromecastInitializer.contentId=(u=e.meta)==null?void 0:u.videoId,this.providerContainer=new sn({sources:e.sources,meta:(c=e.meta)!=null?c:{},failoverHosts:(d=e.failoverHosts)!=null?d:[],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.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?(Du.subscribe("core",this.devNullLog),this.tuning.collectingDecodingInfoEnabled&&(this.collectDecodingInfoDestroyCb=Ow())):Du.destroy("core")},i=()=>{this.tuning.autostartOnlyIfVisible&&window.requestAnimationFrame?this.playerInitRequest=window.requestAnimationFrame(()=>t()):t()},r=()=>{this.tuning.asyncResolveClientChecker?B.isInited$.pipe(fe(n=>!!n),ye()).subscribe(()=>{console.log("Core SDK async start"),i()}):i()};return this.isNotActiveTabCase()?(this.tracer.log("request play from hidden tab"),Fp(document,"visibilitychange").pipe(ye()).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(),Du.destroy("core"),(i=this.collectDecodingInfoDestroyCb)==null||i.call(this)}waitInit(e){this.playerInited.getValue()?e():this.subscription.add(this.playerInited.pipe(fe(t=>!!t),ye()).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,i=!1){return this.waitInit(()=>{var u;this.skipVideoElVolumeSync=i;let r=this.desiredState.volume,a=r.getTransition(),n=(u=a==null?void 0:a.to.muted)!=null?u:this.info.muted$.getValue(),o=t!=null?t:this.tuning.isAudioDisabled||n;this.tracer.log("setVolume",{volume:e,isAudioDisabled:this.tuning.isAudioDisabled,chromecastState:this.chromecastInitializer.castState$.getValue(),muted:o}),this.chromecastInitializer.castState$.getValue()==="CONNECTED"&&!(this.chromecastInitializer instanceof Pt)?this.chromecastInitializer.setVolume(e):r.startTransitionTo({volume:e,muted:o})}),this}setMuted(e,t=!1,i=!1){return this.waitInit(()=>{var u;this.skipVideoElVolumeSync=i;let r=this.desiredState.volume,a=this.tuning.isAudioDisabled&&!t||e,n=r.getTransition(),o=(u=n==null?void 0:n.to.volume)!=null?u:this.info.volume$.getValue();this.tracer.log("setMuted",{isMuted:e,nextMuted:a,volume:o,isAudioDisabled:this.tuning.isAudioDisabled,chromecastState:this.chromecastInitializer.castState$.getValue()}),this.chromecastInitializer.castState$.getValue()==="CONNECTED"&&!(this.chromecastInitializer instanceof Pt)?this.chromecastInitializer.setMuted(a):r.startTransitionTo({volume:o,muted:a})}),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(()=>{Np(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(fe(i=>i.length>0),ye()).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",pi(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",pi(e)),this.desiredState.externalTextTracks.startTransitionTo(e.map(t=>({type:"external",...t})))}),this}selectTextTrack(e){return this.waitInit(()=>{var t;Vw(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",{...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(tN(e))return this.info.position$.getValue();let t=this.desiredState.seekState.getState(),i=t.state==="none"?void 0:t.position;return Nw(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(di(this.desiredState.playbackState.stateChangeStarted$,this.desiredState.playbackState.forceChanged$).pipe(G(e=>e.to)).subscribe(this.info.playbackState$)).add(this.desiredState.isLooped.stateChangeEnded$.pipe(G(e=>e.to)).subscribe(this.info.isLooped$)).add(this.desiredState.playbackRate.stateChangeEnded$.pipe(G(e=>e.to)).subscribe(this.info.currentPlaybackRate$)).add(this.desiredState.autoVideoTrackSwitching.stateChangeEnded$.pipe(G(e=>e.to)).subscribe(this.info.isAutoQualityEnabled$)).add(this.desiredState.autoVideoTrackLimits.stateChangeEnded$.pipe(G(e=>e.to)).subscribe(e=>{this.info.autoQualityLimits$.next(e);let{highQualityLimit:t,trafficSavingLimit:i}=this.tuning.autoTrackSelection;this.info.predefinedQualityLimitType$.next(Ey(e,t,i))})),this.subscription.add(this.desiredState.playbackState.stateChangeStarted$.pipe(fe(({from:e})=>e==="stopped"),ye()).subscribe(()=>{this.initedAt=Cu(),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",pi(n)),n.state==="requested"?this.desiredState.seekState.setState({...n,state:"applying"}):this.events.managedError$.next({id:`WillSeekIn${n.state}`,category:Lu.WTF,message:"Received unexpeceted willSeek$"})})).add(e.providerOutput.soundProhibitedEvent$.pipe(ye()).subscribe(this.events.autoplaySoundProhibited$)).add(e.providerOutput.severeStallOccurred$.subscribe(this.events.severeStallOccured$)).add(e.providerOutput.seekedEvent$.subscribe(()=>{let n=this.desiredState.seekState.getState();this.tracer.log("seekedEvent",pi(n)),n.state==="applying"&&(this.desiredState.seekState.setState({state:"none"}),this.events.seeked$.next())})).add(e.current$.pipe(G(n=>n.type)).subscribe(this.info.currentFormat$)).add(e.current$.pipe(G(n=>n.destination),z()).subscribe(()=>this.isPlaybackStarted=!1)).add(e.providerOutput.availableVideoStreams$.subscribe(this.info.availableVideoStreams$)).add(Ot({availableVideoTracks:e.providerOutput.availableVideoTracks$,currentVideoStream:e.providerOutput.currentVideoStream$}).pipe(G(({availableVideoTracks:n,currentVideoStream:o})=>n.filter(u=>o?o.id===u.streamId:!0).map(({quality:u})=>u).sort((u,c)=>qw(u)?1:qw(c)?-1:rN(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(z()).subscribe(this.info.isAudioAvailable$)).add(e.providerOutput.currentVideoTrack$.pipe(fe(n=>Nw(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(z((n,o)=>Math.round(n)===Math.round(o))).subscribe(this.info.currentVideoSegmentLength$)).add(e.providerOutput.currentAudioSegmentLength$.pipe(z((n,o)=>Math.round(n)===Math.round(o))).subscribe(this.info.currentAudioSegmentLength$)).add(e.providerOutput.hostname$.pipe(z()).subscribe(this.info.hostname$)).add(e.providerOutput.httpConnectionType$.pipe(z()).subscribe(this.info.httpConnectionType$)).add(e.providerOutput.httpConnectionReused$.pipe(z()).subscribe(this.info.httpConnectionReused$)).add(e.providerOutput.httpConnectionMetrics$.pipe(z()).subscribe(this.info.httpConnectionMetrics$)).add(e.providerOutput.httpDownloadMetrics$.pipe(z()).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(G(n=>n?{start:n.from,end:n.to}:{start:0,end:0})).subscribe(this.info.currentBuffer$)).add(e.providerOutput.currentNativeBuffer$.pipe(G(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(Up(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(z()).subscribe(this.info.liveTime$)).add(e.providerOutput.liveBufferTime$.subscribe(this.info.liveBufferTime$)).add(e.providerOutput.liveLatency$.subscribe(this.info.liveLatency$)).add(Ot({hasLiveOffsetByPaused:di(this.desiredState.playbackState.stateChangeStarted$,this.desiredState.playbackState.forceChanged$).pipe(G(n=>n.to),z(),G(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(Ot({atLiveEdge:Ot({isLive:e.providerOutput.isLive$,isLowLatency:e.providerOutput.isLowLatency$,position:_p({seekState:this.desiredState.seekState,position$:e.providerOutput.position$})}).pipe(G(({isLive:n,position:o,isLowLatency:u})=>{let c=this.getActiveLiveDelay(u);return n&&Math.abs(o)<c/1e3}),z(),Up(n=>n&&this.setPlaybackRate(1))),hasPausedTimeoutCase:this.hasLiveOffsetByPaused}).pipe(G(({atLiveEdge:n,hasPausedTimeoutCase:o})=>n&&!o)).subscribe(this.info.atLiveEdge$)).add(Ot({isLive:e.providerOutput.isLive$,position:e.providerOutput.position$,duration:e.providerOutput.duration$}).pipe(G(({isLive:n,position:o,duration:u})=>n&&(Math.abs(u)-Math.abs(o))*1e3<this.tuning.live.activeLiveDelay),z(),Up(n=>n&&this.setPlaybackRate(1))).subscribe(this.info.atLiveDurationEdge$)).add(e.providerOutput.volume$.pipe(G(n=>n.muted),z()).subscribe(this.info.muted$)).add(e.providerOutput.volume$.pipe(G(n=>n.volume),z()).subscribe(this.info.volume$)).add(_p({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(di(e.providerOutput.endedEvent$.pipe(Fw(!0)),e.providerOutput.seekedEvent$.pipe(Fw(!1))).pipe(z()).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(G(n=>({id:n?`No${n}`:"NoProviders",category:Lu.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(ye()).subscribe(this.events.manifestRequested$)).add(e.providerOutput.firstBytesManifest$.pipe(ye()).subscribe(this.events.firstBytesManifest$)).add(e.providerOutput.manifestReceived$.pipe(ye()).subscribe(this.events.manifestReceived$)).add(e.providerOutput.firstBytesRequested$.pipe(ye()).subscribe(this.events.firstBytesRequested$)).add(e.providerOutput.firstBytesReceived$.pipe(ye()).subscribe(this.events.firstBytesReceived$)).add(e.providerOutput.firstBytesEvent$.pipe(ye(),G(n=>n!=null?n:Cu()-this.initedAt)).subscribe(this.events.firstBytes$)).add(e.providerOutput.loadedMetadataEvent$.subscribe(this.events.loadedMetadata$)).add(e.providerOutput.firstFrameEvent$.pipe(ye(),G(()=>Cu()-this.initedAt)).subscribe(this.events.firstFrame$)).add(e.providerOutput.canplay$.pipe(ye(),G(()=>Cu()-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 L(!1);this.subscription.add(e.providerOutput.seekedEvent$.subscribe(()=>t.next(!1))).add(e.providerOutput.willSeekEvent$.subscribe(()=>t.next(!0)));let i=new L(!0);this.subscription.add(e.current$.subscribe(()=>i.next(!0))).add(this.desiredState.playbackState.stateChangeEnded$.pipe(fe(({to:n})=>n==="playing"),ye()).subscribe(()=>i.next(!1)));let r=0,a=di(e.providerOutput.isBuffering$,t,i).pipe(G(()=>{let n=e.providerOutput.isBuffering$.getValue(),o=t.getValue()||i.getValue();return n&&!o}),z());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(di(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(di(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(G(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 Uw;this.subscription.add(t),this.subscription.add(e.current$.pipe(z((i,r)=>i.provider===r.provider)).subscribe(()=>{t.unsubscribe(),t.add(e.providerOutput.availableVideoTracks$.pipe(fe(i=>i.length>0),ye()).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=St(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(di(this.desiredState.videoTrack.stateChangeStarted$.pipe(G(e=>({transition:e,entity:"quality",type:"start"}))),this.desiredState.videoTrack.stateChangeEnded$.pipe(G(e=>({transition:e,entity:"quality",type:"end"}))),this.desiredState.autoVideoTrackSwitching.stateChangeStarted$.pipe(G(e=>({transition:e,entity:"autoQualityEnabled",type:"start"}))),this.desiredState.autoVideoTrackSwitching.stateChangeEnded$.pipe(G(e=>({transition:e,entity:"autoQualityEnabled",type:"end"}))),this.desiredState.seekState.stateChangeStarted$.pipe(G(e=>({transition:e,entity:"seekState",type:"start"}))),this.desiredState.seekState.stateChangeEnded$.pipe(G(e=>({transition:e,entity:"seekState",type:"end"}))),this.desiredState.playbackState.stateChangeStarted$.pipe(G(e=>({transition:e,entity:"playbackState",type:"start"}))),this.desiredState.playbackState.stateChangeEnded$.pipe(G(e=>({transition:e,entity:"playbackState",type:"end"})))).pipe(G(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;Np(this.providerContainer),Np(e),yy(),this.experimental.enableDebugTelemetry$.next(this.tuning.enableTelemetryAtStart),[this.experimental.enableDebugTelemetry$.subscribe(i=>Sy(i)),this.providerContainer.current$.subscribe(({type:i})=>Na("provider",i)),e.duration$.subscribe(i=>Na("duration",i)),e.availableVideoTracks$.pipe(fe(i=>!!i.length),ye()).subscribe(i=>Na("tracks",i)),this.events.fatalError$.subscribe(new $e("fatalError")),this.events.managedError$.subscribe(new $e("managedError")),e.position$.subscribe(new $e("position")),e.currentVideoTrack$.pipe(G(i=>i==null?void 0:i.quality)).subscribe(new $e("quality")),this.info.currentBuffer$.subscribe(new $e("buffer")),e.isBuffering$.subscribe(new $e("isBuffering"))].forEach(i=>this.subscription.add(i)),Na("codecs",B.video.supportedCodecs)}initTracerSubscription(){let e=Hw(this.tracer.log.bind(this.tracer)),t=Hw(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(z()).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(Ot({currentQuality:this.info.currentQuality$,videoBitrate:this.info.videoBitrate$}).pipe(fe(({currentQuality:i,videoBitrate:r})=>!!i&&!!r),z((i,r)=>i.currentQuality===r.currentQuality)).subscribe(e("currentVideoTrack"))).add(this.info.currentVideoSegmentLength$.pipe(fe(i=>i>0),z()).subscribe(e("currentVideoSegmentLength"))).add(this.info.currentAudioSegmentLength$.pipe(fe(i=>i>0),z()).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(Ot({currentBuffer:this.info.currentBuffer$.pipe(fe(i=>i.end>0),z((i,r)=>i.end===r.end&&i.start===r.start)),position:this.info.position$.pipe(z())}).pipe(qp(1e3)).subscribe(e("currentBufferAndPosition"))).add(this.info.duration$.pipe(z()).subscribe(e("duration"))).add(this.info.isBuffering$.subscribe(e("isBuffering"))).add(this.info.isLive$.pipe(z()).subscribe(e("isLive"))).add(this.info.canChangePlaybackSpeed$.pipe(z()).subscribe(e("canChangePlaybackSpeed"))).add(Ot({liveTime:this.info.liveTime$,liveBufferTime:this.info.liveBufferTime$,position:this.info.position$}).pipe(fe(({liveTime:i,liveBufferTime:r})=>!!i&&!!r),qp(1e3)).subscribe(e("liveBufferAndPosition"))).add(this.info.atLiveEdge$.pipe(z(),fe(i=>i===!0)).subscribe(e("atLiveEdge"))).add(this.info.atLiveDurationEdge$.pipe(z(),fe(i=>i===!0)).subscribe(e("atLiveDurationEdge"))).add(this.info.muted$.pipe(z()).subscribe(e("muted"))).add(this.info.volume$.pipe(z()).subscribe(e("volume"))).add(this.info.isEnded$.pipe(z(),fe(i=>i===!0)).subscribe(e("isEnded"))).add(this.info.availableSources$.subscribe(e("availableSources"))).add(Ot({throughputEstimation:this.info.throughputEstimation$,rtt:this.info.rttEstimation$}).pipe(fe(({throughputEstimation:i,rtt:r})=>!!i&&!!r),qp(3e3)).subscribe(e("throughputEstimation"))).add(this.info.isStalled$.subscribe(e("isStalled"))).add(this.info.is3DVideo$.pipe(z(),fe(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=async()=>{t(),e=await window.navigator.wakeLock.request("screen").catch(r=>{r instanceof DOMException&&r.name==="NotAllowedError"||this.events.managedError$.next({id:"WakeLock",category:Lu.DOM,message:String(r)})})};this.subscription.add(di(Fp(document,"visibilitychange"),Fp(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",pi({quality:t,availableTracks:pi(e),track:pi(i),isAutoQuality:!i})),i?this.desiredState.videoTrack.startTransitionTo(i):this.setAutoQuality(!0)}getActiveLiveDelay(e=!1){return e?this.tuning.live.lowLatencyActiveLiveDelay:this.tuning.live.activeLiveDelay}isNotActiveTabCase(){return document.hidden&&this.tuning.autoplayOnlyInActiveTab&&!Qa()}};import{Subscription as Nte,Observable as Fte,Subject as Ute,ValueSubject as qte,VideoQuality as Hte}from"@vkontakte/videoplayer-shared/es2018";var jte=`@vkontakte/videoplayer-core@${Rh}`;export{sa as ChromecastState,qu as HttpConnectionType,Fte as Observable,ke as PlaybackState,Bu as Player,yn as PredefinedQualityLimits,jte as SDK_VERSION,Ute as Subject,Nte as Subscription,Hu as Surface,Rh as VERSION,qte as ValueSubject,Uu as VideoCodec,wt as VideoFormat,Hte as VideoQuality,Go as WebmCodecStrategy,IA as areValidLiveRecordSources,B as clientChecker,Ai as isMobile};
130
+ ===== DASH_LIVE DEBUG END ====`),n){let t=e.reduce((e,{time:t,data:n,stack:r})=>{let i=da.default(n).map(([e,t])=>`${e}:${t}`).join(`,`);return e+=`${t}: ${i}${r?`: ${r}`:``};`,e},``);av.push(`core`,{key:`vp_dash_live_debug`,strings:[t]})}};return e.add(this.providerError$.subscribe(e=>{e.id.startsWith(`ProviderHangup`)&&(R({m:`final.0`,e:e.id}),r())})).add(this.noAvailableProvidersError$.subscribe(()=>{R({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===X_.NETWORK,o=e.category===X_.FATAL,s=this.params.failoverHosts.length>0&&(this.failoverIndex===void 0||this.failoverIndex<this.params.failoverHosts.length-1),c=n<this.params.tuning.providerErrorLimit&&!o,l=this.videoCodecsIterator&&!this.videoCodecsIterator.isLast()&&this.params.tuning.dash.codecsPrioritizeEnabled,u=s&&!o&&(a&&t||!c);i={...i,isNetworkError:a,isFatalError:o,haveFailoverHost:s,tryFailover:u,canReinitProvider:c},c?(n++,this.reinitProvider()):u?(this.failoverIndex=this.failoverIndex===void 0?0:this.failoverIndex+1,this.reinitProvider()):l?this.switchToNextVideoCodec():(n=0,this.switchToNextProvider(r??`SCREEN`))}e.traceAsLog?this.tracer.log(`providerInfo`,iv(i)):this.tracer.error(`providerError`,iv(i))})),e}}import{fromEvent as xv,once as Sv,combine as Cv,Subscription as wv,ValueSubject as Tv,map as Ev,filter as Dv,isNonNullable as Ov,now as kv,safeStorage as Av,getWindow as jv}from"@vkontakte/videoplayer-shared/es2018";var Mv=5e3,Nv=`one_video_throughput`,Pv=`one_video_rtt`,Fv=()=>{let{navigator:e}=jv();if(e)return e.connection},Iv=()=>{let e=Fv()?.downlink;if(Ov(e)&&e!==10)return e*1e3},Lv=()=>{let e=Fv()?.rtt;if(Ov(e)&&e!==3e3)return e},Rv=(e,t,n)=>{let r=n*8;return r/(r/e+t)};class zv{constructor(t){e(this,`throughput`,void 0),e(this,`rtt`,void 0),e(this,`subscription`,new wv),e(this,`tuningConfig`,void 0),e(this,`concurrentDownloads`,new Set),e(this,`throughput$`,void 0),e(this,`rtt$`,void 0),e(this,`rttAdjustedThroughput$`,void 0),this.tuningConfig=t;let n=zv.load(Nv)||(t.useBrowserEstimation?Iv():void 0)||Mv,r=zv.load(Pv)??(t.useBrowserEstimation?Lv():void 0)??0;if(this.throughput$=new Tv(n),this.rtt$=new Tv(r),this.rttAdjustedThroughput$=new Tv(Rv(n,r,t.rttPenaltyRequestSize)),this.throughput=fm.getSmoothedValue(n,-1,t),this.rtt=fm.getSmoothedValue(r,1,t),t.useBrowserEstimation){let e=()=>{let e=Iv();e&&this.throughput.next(e);let t=Lv();Ov(t)&&this.rtt.next(t)},t=Fv();t&&`onchange`in t&&this.subscription.add(xv(t,`change`).subscribe(e)),e()}this.subscription.add(this.throughput.smoothed$.subscribe(e=>{Av.set(Nv,e.toFixed(0))})),this.subscription.add(this.rtt.smoothed$.subscribe(e=>{Av.set(Pv,e.toFixed(0))})),this.subscription.add(this.throughput.debounced$.pipe(Ev(e=>Math.round(e))).subscribe(this.throughput$)),this.subscription.add(this.rtt.debounced$.subscribe(this.rtt$)),this.subscription.add(Cv({throughput:this.throughput.smoothed$,rtt:this.rtt.smoothed$}).pipe(Ev(({throughput:e,rtt:n})=>Rv(e,n,t.rttPenaltyRequestSize)),Dv(e=>{let n=this.rttAdjustedThroughput$.getValue()||0;return Math.abs(e-n)/n>=t.changeThreshold})).subscribe(this.rttAdjustedThroughput$))}destroy(){this.concurrentDownloads.clear(),this.subscription.unsubscribe()}trackXHR(e){let t=0,n=kv(),r=new wv;switch(this.subscription.add(r),this.concurrentDownloads.add(e),e.readyState){case 4:break;case 3:case 2:r.add(xv(e,`progress`).pipe(Sv()).subscribe(e=>{t=e.loaded,n=kv()}));break;case 1:case 0:r.add(xv(e,`loadstart`).subscribe(()=>{t=0,n=kv()}));break}r.add(xv(e,`loadend`).subscribe(i=>{if(e.status===200){let e=i.loaded,r=kv(),a=e-t,o=r-n;this.addRawSpeed(a,o,1)}this.concurrentDownloads.delete(e),r.unsubscribe()}))}trackStream(e,t=!1){let n=e.getReader();if(!n){e.cancel(`Could not get reader`);return}let r=0,i=kv(),a=0,o=kv(),s=t=>{this.concurrentDownloads.delete(e),n.releaseLock(),e.cancel(`Throughput Estimator error: ${t}`).catch(()=>{})},c=async({done:l,value:u})=>{if(l)!t&&this.addRawSpeed(r,kv()-i,1),this.concurrentDownloads.delete(e);else if(u){if(t){let e=kv();if(e-o>this.tuningConfig.lowLatency.continuesByteSequenceInterval||e-i>this.tuningConfig.lowLatency.maxLastEvaluationTimeout){let e=o-i;e&&this.addRawSpeed(a,e,1,t),a=u.byteLength,i=kv()}else a+=u.byteLength;o=kv()}else r+=u.byteLength,a+=u.byteLength,a>=this.tuningConfig.streamMinSampleSize&&kv()-o>=this.tuningConfig.streamMinSampleTime&&(this.addRawSpeed(a,kv()-o,this.concurrentDownloads.size),a=0,o=kv());await n?.read().then(c,s)}};this.concurrentDownloads.add(e),n?.read().then(c,s)}addRawSpeed(e,t,n=1,r=!1){if(zv.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=Av.get(e);if(Ov(t))return parseInt(t,10)??void 0}}var Bv=zv;import{fillWithDefault as Vv,VideoQuality as Hv}from"@vkontakte/videoplayer-shared/es2018";var Uv={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:Hv.Q_4320P,activeVideoAreaThreshold:.1,highQualityLimit:Hv.Q_720P,trafficSavingLimit:Hv.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:Hv.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: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,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},Wv=e=>Vv(e,Uv);import{assertNonNullable as Gv,combine as Kv,ErrorCategory as qv,filter as J,filterChanged as Y,fromEvent as Jv,isNonNullable as Yv,isNullable as Xv,Logger as Zv,map as X,mapTo as Qv,merge as $v,now as ey,once as Z,Subject as Q,Subscription as ty,tap as ny,ValueSubject as $,isHigher as ry,isInvariantQuality as iy,flattenObject as ay,throttle as oy,getTraceSubscriptionMethod as sy,TracerFactory as cy,InternalsExposure as ly,getPlayerId as uy,devNull as dy}from"@vkontakte/videoplayer-shared/es2018";import{merge as fy,map as py,filter as my,isNonNullable as hy}from"@vkontakte/videoplayer-shared/es2018";var gy=({seekState:e,position$:t})=>fy(e.stateChangeEnded$.pipe(py(({to:e})=>e.state===`none`?void 0:(e.position??NaN)/1e3),my(hy)),t.pipe(my(()=>e.getState().state===`none`)));import{assertNonNullable as _y}from"@vkontakte/videoplayer-shared/es2018";var vy=e=>{let t=typeof e.container==`string`?document.getElementById(e.container):e.container;return _y(t,`Wrong container or containerId {${e.container}}`),t};import{filter as yy,once as by}from"@vkontakte/videoplayer-shared/es2018";var xy=(e,t,n,r)=>{e!==void 0&&t.getState()===void 0&&t.getPrevState()===void 0&&n?.getValue().length===0?n.pipe(yy(e=>e.length>0),by()).subscribe(n=>{n.find(r)&&t.startTransitionTo(e)}):(e===void 0||n?.getValue().find(r))&&t.startTransitionTo(e)},Sy=l(et(),1);import{devNull as Cy,getWindow as wy}from"@vkontakte/videoplayer-shared/es2018";var Ty=()=>{let e=`mediaCapabilities`in wy().navigator?Ey:Dy,t=Rd(async()=>{let t=await Promise.all(Sy.default(Oy).map(async([t,n])=>({codec:t,supported:await e(n)}))),n=[P.browser.current,...t.map(e=>JSON.stringify(e))].slice(0,16);return Cy.push(`core`,{key:`videoplayer_decoding_info`,strings:n}),t});return()=>zd(t)},Ey=async e=>{if(!e)return Promise.resolve({supported:!1});let t={[`channels`in e?`audio`:`video`]:e};return await wy().navigator.mediaCapabilities.decodingInfo({type:`media-source`,...t})},Dy=e=>{if(!e)return Promise.resolve({supported:!1});let t=wy().document,n=`channels`in e?t.createElement(`audio`):t.createElement(`video`);return Promise.resolve({supported:n.canPlayType(e?.contentType??``)===`probably`})},Oy={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 ky{constructor(t={},n=cy.createRootTracer(!1),r){e(this,`subscription`,new ty),e(this,`domContainer`,void 0),e(this,`providerContainer`,void 0),e(this,`chromecastInitializer`,void 0),e(this,`logger`,new Zv),e(this,`tracer`,void 0),e(this,`abrLogger`,this.logger.createComponentLog(`ABR`)),e(this,`config`,void 0),e(this,`tuning`,void 0),e(this,`throughputEstimator`,void 0),e(this,`internalsExposure`,null),e(this,`isPlaybackStarted`,!1),e(this,`initedAt`,void 0),e(this,`hasLiveOffsetByPaused`,new $(!1)),e(this,`hasLiveOffsetByPausedTimer`,0),e(this,`playerInitRequest`,0),e(this,`playerInited`,new $(!1)),e(this,`explicitInitialQuality`,void 0),e(this,`wasSetStartedQuality`,!1),e(this,`desiredState`,{playbackState:new F(`stopped`),seekState:new F({state:`none`}),volume:new F({volume:1,muted:!1}),videoTrack:new F(void 0),videoStream:new F(void 0),audioStream:new F(void 0),autoVideoTrackSwitching:new F(!0),autoVideoTrackLimits:new F({}),isLooped:new F(!1),isLowLatency:new F(!1),playbackRate:new F(1),externalTextTracks:new F([]),internalTextTracks:new F([]),currentTextTrack:new F(void 0),textTrackCuesSettings:new F({}),cameraOrientation:new F({x:0,y:0})}),e(this,`info`,{playbackState$:new $(void 0),position$:new $(0),duration$:new $(1/0),muted$:new $(!1),volume$:new $(1),availableVideoStreams$:new $([]),currentVideoStream$:new $(void 0),availableQualities$:new $([]),availableQualitiesFps$:new $({}),currentQuality$:new $(void 0),isAutoQualityEnabled$:new $(!0),autoQualityLimitingAvailable$:new $(!1),autoQualityLimits$:new $({}),predefinedQualityLimitType$:new $(`unknown`),availableAudioStreams$:new $([]),currentAudioStream$:new $(void 0),availableAudioTracks$:new $([]),isAudioAvailable$:new $(!0),currentPlaybackRate$:new $(1),currentBuffer$:new $({start:0,end:0}),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)}),e(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}),e(this,`experimental`,{element$:new $(void 0),enableDebugTelemetry$:new $(!1),dumpTelemetry:is,getCurrentTime$:new $(null)}),e(this,`devNullLog`,void 0),e(this,`collectDecodingInfoDestroyCb`,void 0),this.initLogs(),this.tuning=Wv(t),this.tracer=n,this.tuning.suppressExceptionsInObservables&&(gr.default(this.info).forEach(e=>e.setSuppressErrors(!0)),gr.default(this.events).forEach(e=>e.setSuppressErrors(!0)));let i={receiverApplicationId:this.tuning.chromecastReceiverId,isDisabled:this.tuning.disableChromecast,dependencies:{logger:this.logger}};if(this.chromecastInitializer=this.tuning.chromecastPresentationApi?new ca(i):new Nr(i),this.throughputEstimator=new Bv(this.tuning.throughputEstimator),t.exposeInternalsToGlobal&&(this.internalsExposure=new ly(`core`,uy(r?.playerId)),this.internalsExposure.expose({player:this})),this.initChromecastSubscription(),this.initDesiredStateSubscriptions(),this.devNullLog=r?.onDevNullLog,dy.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 _r.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:qv.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,...n}=e;this.tracer.log(`initVideo`,ay(n)),this.domContainer=vy(e),this.chromecastInitializer.contentId=e.meta?.videoId,this.providerContainer=new bv({sources:e.sources,meta:e.meta??{},failoverHosts:e.failoverHosts??[],container:this.domContainer,desiredState:this.desiredState,dependencies:{throughputEstimator:this.throughputEstimator,chromecastInitializer:this.chromecastInitializer,tracer:this.tracer,logger:this.logger,abrLogger:this.abrLogger},tuning:this.tuning,volumeMultiplier:e.volumeMultiplier,panelSize:e.panelSize}),this.initProviderContainerSubscription(this.providerContainer),this.initStartingVideoTrack(this.providerContainer),this.initTracerSubscription(),this.providerContainer.init(),this.setLiveLowLatency(this.tuning.dashCmafLive.lowLatency.isActiveOnDefault),this.initDebugTelemetry(),this.initWakeLock(),this.playerInited.next(!0),this.devNullLog&&this.tuning.devNullLogEnabled?(dy.subscribe(`core`,this.devNullLog),this.tuning.collectingDecodingInfoEnabled&&(this.collectDecodingInfoDestroyCb=Ty())):dy.destroy(`core`)},n=()=>{this.tuning.autostartOnlyIfVisible&&window.requestAnimationFrame?this.playerInitRequest=window.requestAnimationFrame(()=>t()):t()},r=()=>{this.tuning.asyncResolveClientChecker?P.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`),Jv(document,`visibilitychange`).pipe(Z()).subscribe(r)):r(),this}destroy(){this.tracer.log(`destroy`),window.clearTimeout(this.hasLiveOffsetByPausedTimer),this.playerInitRequest&&window.cancelAnimationFrame(this.playerInitRequest),this.events.willDestruct$.next(),this.stop(),this.providerContainer?.destroy(),this.throughputEstimator.destroy(),this.chromecastInitializer.destroy(),this.subscription.unsubscribe(),this.tracer.end(),this.internalsExposure?.destroy(),dy.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){return this.waitInit(()=>{let n=this.desiredState.volume,r=n.getTransition()?.to.muted??this.info.muted$.getValue(),i=t??(this.tuning.isAudioDisabled||r);this.tracer.log(`setVolume`,{volume:e,isAudioDisabled:this.tuning.isAudioDisabled,chromecastState:this.chromecastInitializer.castState$.getValue(),muted:i}),this.chromecastInitializer.castState$.getValue()===`CONNECTED`&&!(this.chromecastInitializer instanceof ca)?this.chromecastInitializer.setVolume(e):n.startTransitionTo({volume:e,muted:i})}),this}setMuted(e,t=!1){return this.waitInit(()=>{let n=this.desiredState.volume,r=this.tuning.isAudioDisabled&&!t||e,i=n.getTransition()?.to.volume??this.info.volume$.getValue();this.tracer.log(`setMuted`,{isMuted:e,nextMuted:r,volume:i,isAudioDisabled:this.tuning.isAudioDisabled,chromecastState:this.chromecastInitializer.castState$.getValue()}),this.chromecastInitializer.castState$.getValue()===`CONNECTED`&&!(this.chromecastInitializer instanceof ca)?this.chromecastInitializer.setMuted(r):n.startTransitionTo({volume:i,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(()=>{Gv(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`,ay(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`,ay(e)),this.desiredState.externalTextTracks.startTransitionTo(e.map(e=>({type:`external`,...e})))}),this}selectTextTrack(e){return this.waitInit(()=>{xy(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`,{...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(Xv(e))return this.info.position$.getValue();let t=this.desiredState.seekState.getState(),n=t.state===`none`?void 0:t.position;return Yv(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($v(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(fs(e,t,n))})),this.subscription.add(this.desiredState.playbackState.stateChangeStarted$.pipe(J(({from:e})=>e===`stopped`),Z()).subscribe(()=>{this.initedAt=ey(),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`,ay(e)),e.state===`requested`?this.desiredState.seekState.setState({...e,state:`applying`}):this.events.managedError$.next({id:`WillSeekIn${e.state}`,category:qv.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`,ay(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(Kv({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)=>iy(e)?1:iy(t)?-1:ry(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=>Yv(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(ny(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(Kv({hasLiveOffsetByPaused:$v(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(Kv({atLiveEdge:Kv({isLive:e.providerOutput.isLive$,isLowLatency:e.providerOutput.isLowLatency$,position:gy({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(),ny(e=>e&&this.setPlaybackRate(1))),hasPausedTimeoutCase:this.hasLiveOffsetByPaused}).pipe(X(({atLiveEdge:e,hasPausedTimeoutCase:t})=>e&&!t)).subscribe(this.info.atLiveEdge$)).add(Kv({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(),ny(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(gy({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($v(e.providerOutput.endedEvent$.pipe(Qv(!0)),e.providerOutput.seekedEvent$.pipe(Qv(!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:qv.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??ey()-this.initedAt)).subscribe(this.events.firstBytes$)).add(e.providerOutput.loadedMetadataEvent$.subscribe(this.events.loadedMetadata$)).add(e.providerOutput.firstFrameEvent$.pipe(Z(),X(()=>ey()-this.initedAt)).subscribe(this.events.firstFrame$)).add(e.providerOutput.canplay$.pipe(Z(),X(()=>ey()-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=$v(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($v(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($v(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 ty;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||=As(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($v(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;Gv(this.providerContainer),Gv(e),rs(),this.experimental.enableDebugTelemetry$.next(this.tuning.enableTelemetryAtStart),[this.experimental.enableDebugTelemetry$.subscribe(e=>ns(e)),this.providerContainer.current$.subscribe(({type:e})=>as(`provider`,e)),e.duration$.subscribe(e=>as(`duration`,e)),e.availableVideoTracks$.pipe(J(e=>!!e.length),Z()).subscribe(e=>as(`tracks`,e)),this.events.fatalError$.subscribe(new os(`fatalError`)),this.events.managedError$.subscribe(new os(`managedError`)),e.position$.subscribe(new os(`position`)),e.currentVideoTrack$.pipe(X(e=>e?.quality)).subscribe(new os(`quality`)),this.info.currentBuffer$.subscribe(new os(`buffer`)),e.isBuffering$.subscribe(new os(`isBuffering`))].forEach(e=>this.subscription.add(e)),as(`codecs`,P.video.supportedCodecs)}initTracerSubscription(){let e=sy(this.tracer.log.bind(this.tracer)),t=sy(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(Kv({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(Kv({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(oy(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(Kv({liveTime:this.info.liveTime$,liveBufferTime:this.info.liveBufferTime$,position:this.info.position$}).pipe(J(({liveTime:e,liveBufferTime:t})=>!!e&&!!t),oy(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(Kv({throughputEstimation:this.info.throughputEstimation$,rtt:this.info.rttEstimation$}).pipe(J(({throughputEstimation:e,rtt:t})=>!!e&&!!t),oy(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(){if(!window.navigator.wakeLock||!this.tuning.enableWakeLock)return;let e,t=()=>{e?.release(),e=void 0},n=async()=>{t(),e=await window.navigator.wakeLock.request(`screen`).catch(e=>{e instanceof DOMException&&e.name===`NotAllowedError`||this.events.managedError$.next({id:`WakeLock`,category:qv.DOM,message:String(e)})})};this.subscription.add($v(Jv(document,`visibilitychange`),Jv(document,`fullscreenchange`),this.desiredState.playbackState.stateChangeEnded$).subscribe(()=>{let r=document.visibilityState===`visible`,i=this.desiredState.playbackState.getState()===`playing`,a=!!e&&!e?.released;r&&i?a||n():t()})).add(this.events.willDestruct$.subscribe(t))}setVideoTrackIdByQuality(e,t){let n=e.find(e=>e.quality===t);this.tracer.log(`setVideoTrackIdByQuality`,ay({quality:t,availableTracks:ay(e),track:ay(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&&!Xc()}}import{Subscription as Ay,Observable as jy,Subject as My,ValueSubject as Ny,VideoQuality as Py}from"@vkontakte/videoplayer-shared/es2018";var Fy=`@vkontakte/videoplayer-core@${cr}`;export{hi as isMobile,P as clientChecker,Hi as areValidLiveRecordSources,Sd as WebmCodecStrategy,Py as VideoQuality,ur as VideoFormat,dr as VideoCodec,Ny as ValueSubject,cr as VERSION,mr as Surface,Ay as Subscription,My as Subject,Fy as SDK_VERSION,hr as PredefinedQualityLimits,ky as Player,lr as PlaybackState,jy as Observable,pr as HttpConnectionType,fr as ChromecastState};