@vkontakte/videoplayer-core 2.0.155 → 2.0.156-dev.04ce2cd1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (185) hide show
  1. package/es2015.cjs +83 -136
  2. package/es2015.esm.js +77 -130
  3. package/es2018.cjs +77 -130
  4. package/es2018.esm.js +75 -128
  5. package/es2024.cjs +83 -136
  6. package/es2024.esm.js +81 -134
  7. package/esnext.cjs +83 -136
  8. package/esnext.esm.js +81 -134
  9. package/evergreen.esm.js +82 -135
  10. package/package.json +2 -2
  11. package/types/enums/AndroidPreferredFormat.d.ts +6 -6
  12. package/types/enums/IOSPreferredFormat.d.ts +2 -2
  13. package/types/enums/WebmCodecStrategy.d.ts +5 -5
  14. package/types/index.d.ts +16 -13
  15. package/types/player/Player.d.ts +219 -210
  16. package/types/player/types.d.ts +595 -591
  17. package/types/player/utils/optimisticPosition.d.ts +7 -7
  18. package/types/player/utils/selectContainer.d.ts +1 -1
  19. package/types/providers/ChromecastPresentationApiProvider/ChromecastPresentationApiConnector.d.ts +107 -106
  20. package/types/providers/ChromecastPresentationApiProvider/ChromecastPresentationApiInitializer.d.ts +23 -23
  21. package/types/providers/ChromecastPresentationApiProvider/ChromecastPresentationApiProvider.d.ts +34 -34
  22. package/types/providers/ChromecastPresentationApiProvider/ProgressTicker.d.ts +9 -9
  23. package/types/providers/ChromecastPresentationApiProvider/index.d.ts +3 -3
  24. package/types/providers/ChromecastPresentationApiProvider/types.d.ts +31 -31
  25. package/types/providers/ChromecastPresentationApiProvider/utils.d.ts +1 -1
  26. package/types/providers/ChromecastProvider/ChromecastInitializer/index.d.ts +22 -22
  27. package/types/providers/ChromecastProvider/ChromecastInitializer/types.d.ts +22 -22
  28. package/types/providers/ChromecastProvider/index.d.ts +23 -23
  29. package/types/providers/ChromecastProvider/types.d.ts +7 -7
  30. package/types/providers/ChromecastProvider/utils.d.ts +1 -1
  31. package/types/providers/DashLiveProvider/DashLiveProvider.d.ts +33 -33
  32. package/types/providers/DashLiveProvider/index.d.ts +1 -1
  33. package/types/providers/DashLiveProvider/types.d.ts +17 -17
  34. package/types/providers/DashLiveProvider/utils/FilesFetcher.d.ts +23 -23
  35. package/types/providers/DashLiveProvider/utils/LiveDashPlayer.d.ts +149 -150
  36. package/types/providers/DashLiveProvider/utils/ThroughputEstimator.d.ts +12 -30
  37. package/types/providers/DashLiveProvider/utils/liveDashPlayerUtil.d.ts +19 -22
  38. package/types/providers/DashProvider/baseDashProvider.d.ts +57 -56
  39. package/types/providers/DashProvider/dashCmafLiveProvider.d.ts +6 -6
  40. package/types/providers/DashProvider/dashProvider.d.ts +4 -4
  41. package/types/providers/DashProvider/index.d.ts +2 -2
  42. package/types/providers/DashProvider/lib/ElementSizeManager.d.ts +14 -14
  43. package/types/providers/DashProvider/lib/LiveTextManager.d.ts +21 -21
  44. package/types/providers/DashProvider/lib/buffer.d.ts +123 -122
  45. package/types/providers/DashProvider/lib/fetcher.d.ts +70 -69
  46. package/types/providers/DashProvider/lib/player.d.ts +109 -107
  47. package/types/providers/DashProvider/lib/sourceBufferTaskQueue.d.ts +17 -17
  48. package/types/providers/DashProvider/lib/types.d.ts +20 -20
  49. package/types/providers/DashProvider/lib/utils.d.ts +4 -4
  50. package/types/providers/DashProviderVirtual/baseDashProvider.d.ts +58 -57
  51. package/types/providers/DashProviderVirtual/consts.d.ts +2 -2
  52. package/types/providers/DashProviderVirtual/dashCmafLiveProvider.d.ts +8 -8
  53. package/types/providers/DashProviderVirtual/dashProvider.d.ts +6 -6
  54. package/types/providers/DashProviderVirtual/index.d.ts +2 -2
  55. package/types/providers/DashProviderVirtual/lib/ElementSizeManager.d.ts +15 -14
  56. package/types/providers/DashProviderVirtual/lib/LiveTextManager.d.ts +21 -21
  57. package/types/providers/DashProviderVirtual/lib/buffer/nativeBufferManager.d.ts +17 -17
  58. package/types/providers/DashProviderVirtual/lib/buffer/sourceBufferTaskQueue.d.ts +17 -17
  59. package/types/providers/DashProviderVirtual/lib/buffer/types.d.ts +39 -39
  60. package/types/providers/DashProviderVirtual/lib/buffer/virtualBuffer/baseVirtualBufferManager.d.ts +94 -92
  61. package/types/providers/DashProviderVirtual/lib/buffer/virtualBuffer/byteRangeVirtualBufferManager.d.ts +19 -19
  62. package/types/providers/DashProviderVirtual/lib/buffer/virtualBuffer/liveVirtualBuffer.d.ts +25 -25
  63. package/types/providers/DashProviderVirtual/lib/buffer/virtualBuffer/templateVirtualBufferManager.d.ts +19 -19
  64. package/types/providers/DashProviderVirtual/lib/buffer/virtualBuffer/virtualBufferFactory.d.ts +4 -4
  65. package/types/providers/DashProviderVirtual/lib/fetcher.d.ts +68 -67
  66. package/types/providers/DashProviderVirtual/lib/player/basePlayer.d.ts +103 -100
  67. package/types/providers/DashProviderVirtual/lib/player/livePlayer.d.ts +34 -34
  68. package/types/providers/DashProviderVirtual/lib/player/player.d.ts +9 -9
  69. package/types/providers/DashProviderVirtual/lib/player/types.d.ts +13 -13
  70. package/types/providers/DashProviderVirtual/lib/types.d.ts +20 -20
  71. package/types/providers/DashProviderVirtual/lib/utils.d.ts +4 -4
  72. package/types/providers/HlsLiveProvider/LiveTextManager.d.ts +35 -35
  73. package/types/providers/HlsLiveProvider/index.d.ts +29 -28
  74. package/types/providers/HlsLiveProvider/seekBackTimeExtractor.d.ts +1 -1
  75. package/types/providers/HlsProvider/index.d.ts +19 -19
  76. package/types/providers/HlsProvider/manifestDataExtractor.d.ts +13 -13
  77. package/types/providers/MpegProvider/index.d.ts +17 -17
  78. package/types/providers/ProviderContainer/index.d.ts +47 -45
  79. package/types/providers/ProviderContainer/types.d.ts +16 -16
  80. package/types/providers/ProviderContainer/utils/formatsSupport.d.ts +9 -9
  81. package/types/providers/ProviderContainer/utils/playbackHangup.d.ts +9 -8
  82. package/types/providers/WebRTCLiveProvider/WebRTCLiveClient.d.ts +185 -185
  83. package/types/providers/WebRTCLiveProvider/WebRTCLiveProvider.d.ts +58 -57
  84. package/types/providers/WebRTCLiveProvider/interface/WebRTCLiveClientOptions.d.ts +6 -6
  85. package/types/providers/types.d.ts +103 -102
  86. package/types/providers/utils/HTMLVideoElement/DroppedFramesManager.d.ts +40 -39
  87. package/types/providers/utils/HTMLVideoElement/TextTrackManager.d.ts +28 -28
  88. package/types/providers/utils/HTMLVideoElement/forcePlay.d.ts +5 -5
  89. package/types/providers/utils/HTMLVideoElement/observable.d.ts +25 -25
  90. package/types/providers/utils/HTMLVideoElement/pool.d.ts +5 -4
  91. package/types/providers/utils/LiveOffset/index.d.ts +12 -12
  92. package/types/providers/utils/LiveOffset/types.d.ts +8 -8
  93. package/types/providers/utils/StallsManager.d.ts +49 -49
  94. package/types/providers/utils/debug.d.ts +13 -12
  95. package/types/providers/utils/extractConnectionHeaders.d.ts +3 -3
  96. package/types/providers/utils/generateLiveUrl.d.ts +4 -4
  97. package/types/providers/utils/guessNetworkErrorCause.d.ts +1 -1
  98. package/types/providers/utils/mergeIntervals.d.ts +1 -1
  99. package/types/providers/utils/okQualityStringToVideoQuality.d.ts +1 -1
  100. package/types/providers/utils/parsers/ietf/index.d.ts +8 -8
  101. package/types/providers/utils/parsers/index.d.ts +1 -1
  102. package/types/providers/utils/parsers/mpd.d.ts +1 -1
  103. package/types/providers/utils/parsers/mpeg/BoxModel.d.ts +18 -17
  104. package/types/providers/utils/parsers/mpeg/BoxParser.d.ts +15 -15
  105. package/types/providers/utils/parsers/mpeg/BoxTypeEnum.d.ts +27 -27
  106. package/types/providers/utils/parsers/mpeg/box.d.ts +68 -68
  107. package/types/providers/utils/parsers/mpeg/boxes/avc1.d.ts +5 -5
  108. package/types/providers/utils/parsers/mpeg/boxes/equi.d.ts +18 -18
  109. package/types/providers/utils/parsers/mpeg/boxes/ftyp.d.ts +14 -14
  110. package/types/providers/utils/parsers/mpeg/boxes/index.d.ts +27 -26
  111. package/types/providers/utils/parsers/mpeg/boxes/mdat.d.ts +12 -12
  112. package/types/providers/utils/parsers/mpeg/boxes/mdia.d.ts +5 -5
  113. package/types/providers/utils/parsers/mpeg/boxes/mfhd.d.ts +8 -8
  114. package/types/providers/utils/parsers/mpeg/boxes/minf.d.ts +5 -5
  115. package/types/providers/utils/parsers/mpeg/boxes/moof.d.ts +5 -5
  116. package/types/providers/utils/parsers/mpeg/boxes/moov.d.ts +5 -5
  117. package/types/providers/utils/parsers/mpeg/boxes/mvhd.d.ts +32 -32
  118. package/types/providers/utils/parsers/mpeg/boxes/prhd.d.ts +13 -13
  119. package/types/providers/utils/parsers/mpeg/boxes/proj.d.ts +5 -5
  120. package/types/providers/utils/parsers/mpeg/boxes/sidx.d.ts +43 -43
  121. package/types/providers/utils/parsers/mpeg/boxes/st3d.d.ts +16 -16
  122. package/types/providers/utils/parsers/mpeg/boxes/stbl.d.ts +5 -5
  123. package/types/providers/utils/parsers/mpeg/boxes/stsd.d.ts +8 -8
  124. package/types/providers/utils/parsers/mpeg/boxes/sv3d.d.ts +5 -5
  125. package/types/providers/utils/parsers/mpeg/boxes/tfdt.d.ts +14 -14
  126. package/types/providers/utils/parsers/mpeg/boxes/tfhd.d.ts +19 -19
  127. package/types/providers/utils/parsers/mpeg/boxes/tkhd.d.ts +39 -39
  128. package/types/providers/utils/parsers/mpeg/boxes/traf.d.ts +5 -5
  129. package/types/providers/utils/parsers/mpeg/boxes/trak.d.ts +5 -5
  130. package/types/providers/utils/parsers/mpeg/boxes/trun.d.ts +28 -28
  131. package/types/providers/utils/parsers/mpeg/boxes/unknown.d.ts +4 -5
  132. package/types/providers/utils/parsers/mpeg/boxes/uuid.d.ts +10 -10
  133. package/types/providers/utils/parsers/mpeg/fullBox.d.ts +12 -12
  134. package/types/providers/utils/parsers/mpeg/isobmff.d.ts +7 -7
  135. package/types/providers/utils/parsers/types.d.ts +137 -139
  136. package/types/providers/utils/parsers/webm/ebml.d.ts +62 -62
  137. package/types/providers/utils/parsers/webm/webm.d.ts +1 -1
  138. package/types/providers/utils/restorePlaybackRateInSafari.d.ts +17 -17
  139. package/types/providers/utils/syncDesiredState.d.ts +10 -10
  140. package/types/providers/utils/syncPlaybackState.d.ts +2 -2
  141. package/types/providers/utils/videoStreamRepresentaionsFilter.d.ts +2 -2
  142. package/types/utils/3d/Camera3D.d.ts +11 -11
  143. package/types/utils/3d/CameraRotationManager.d.ts +59 -59
  144. package/types/utils/3d/Scene3D.d.ts +129 -129
  145. package/types/utils/3d/types.d.ts +14 -14
  146. package/types/utils/ClientChecker/ClientChecker.d.ts +19 -19
  147. package/types/utils/ClientChecker/index.d.ts +2 -2
  148. package/types/utils/ClientChecker/services/AudioChecker.d.ts +7 -7
  149. package/types/utils/ClientChecker/services/BrowserChecker.d.ts +36 -36
  150. package/types/utils/ClientChecker/services/DeviceChecker.d.ts +38 -38
  151. package/types/utils/ClientChecker/services/DisplayChecker.d.ts +20 -20
  152. package/types/utils/ClientChecker/services/VideoChecker.d.ts +35 -35
  153. package/types/utils/ClientChecker/types/checker.d.ts +1 -1
  154. package/types/utils/ClientChecker/types/currentClientBrowser.d.ts +10 -10
  155. package/types/utils/ClientChecker/types/currentClientDevice.d.ts +8 -8
  156. package/types/utils/ClientChecker/types/userAgentData.d.ts +21 -21
  157. package/types/utils/StateMachine/StateMachine.d.ts +17 -17
  158. package/types/utils/StateMachine/types.d.ts +56 -56
  159. package/types/utils/StatefulIterator/index.d.ts +13 -13
  160. package/types/utils/ThroughputEstimator.d.ts +22 -22
  161. package/types/utils/VolumeMultiplierManager/VolumeMultiplierManager.d.ts +20 -20
  162. package/types/utils/VolumeMultiplierManager/index.d.ts +1 -1
  163. package/types/utils/autoSelectTrack.d.ts +28 -27
  164. package/types/utils/buffer/createTimeRanges.d.ts +2 -1
  165. package/types/utils/buffer/getBufferedRangeForPosition.d.ts +2 -2
  166. package/types/utils/buffer/getForwardBufferDuration.d.ts +1 -1
  167. package/types/utils/buffer/getTotalBufferDuration.d.ts +1 -1
  168. package/types/utils/buffer/isPositionBuffered.d.ts +1 -1
  169. package/types/utils/buffer/isSourceBufferValid.d.ts +1 -1
  170. package/types/utils/changePlaybackRate.d.ts +1 -1
  171. package/types/utils/decodingInfoLogger.d.ts +1 -1
  172. package/types/utils/mediaSource.d.ts +1 -5
  173. package/types/utils/observeElementVisibility.d.ts +1 -1
  174. package/types/utils/playbackTelemetry.d.ts +4 -4
  175. package/types/utils/playerOptions.d.ts +3 -3
  176. package/types/utils/qualityLimits.d.ts +15 -14
  177. package/types/utils/setStateWithSubscribe.d.ts +6 -3
  178. package/types/utils/smoothedValue/baseSmoothedValue.d.ts +16 -16
  179. package/types/utils/smoothedValue/emaAndMaSmoothedValue.d.ts +5 -5
  180. package/types/utils/smoothedValue/emaTopExtremumValue.d.ts +8 -8
  181. package/types/utils/smoothedValue/smoothedValueFactory.d.ts +4 -4
  182. package/types/utils/smoothedValue/twoEmaSmoothedValue.d.ts +6 -6
  183. package/types/utils/smoothedValue/types.d.ts +16 -16
  184. package/types/utils/tuningConfig.d.ts +304 -287
  185. package/types/utils/videoFormat.d.ts +1 -1
package/es2024.cjs CHANGED
@@ -1,184 +1,131 @@
1
1
  /**
2
- * @vkontakte/videoplayer-core v2.0.155
3
- * Wed, 11 Mar 2026 06:02:14 GMT
4
- * https://st.mycdn.me/static/vkontakte-videoplayer/2-0-155/doc/
2
+ * @vkontakte/videoplayer-core v2.0.156-dev.04ce2cd1.0
3
+ * Wed, 18 Mar 2026 16:32:46 GMT
4
+ * https://st.mycdn.me/static/vkontakte-videoplayer/2-0-156/doc/
5
5
  */
6
- "use strict";var cy=Object.create;var Ds=Object.defineProperty;var ly=Object.getOwnPropertyDescriptor;var dy=Object.getOwnPropertyNames;var py=Object.getPrototypeOf,hy=Object.prototype.hasOwnProperty;var b=(a,e)=>()=>(e||a((e={exports:{}}).exports,e),e.exports),my=(a,e)=>{for(var t in e)Ds(a,t,{get:e[t],enumerable:!0})},Ml=(a,e,t,i)=>{if(e&&typeof e=="object"||typeof e=="function")for(let r of dy(e))!hy.call(a,r)&&r!==t&&Ds(a,r,{get:()=>e[r],enumerable:!(i=ly(e,r))||i.enumerable});return a};var j=(a,e,t)=>(t=a!=null?cy(py(a)):{},Ml(e||!a||!a.__esModule?Ds(t,"default",{value:a,enumerable:!0}):t,a)),fy=a=>Ml(Ds({},"__esModule",{value:!0}),a);var Ee=b((Mo,$l)=>{"use strict";var Qr=function(a){return a&&a.Math===Math&&a};$l.exports=Qr(typeof globalThis=="object"&&globalThis)||Qr(typeof window=="object"&&window)||Qr(typeof self=="object"&&self)||Qr(typeof global=="object"&&global)||Qr(typeof Mo=="object"&&Mo)||function(){return this}()||Function("return this")()});var $e=b((c$,Ll)=>{"use strict";Ll.exports=function(a){try{return!!a()}catch{return!0}}});var Gr=b((l$,Cl)=>{"use strict";var by=$e();Cl.exports=!by(function(){var a=function(){}.bind();return typeof a!="function"||a.hasOwnProperty("prototype")})});var $o=b((d$,_l)=>{"use strict";var gy=Gr(),Vl=Function.prototype,Dl=Vl.apply,Bl=Vl.call;_l.exports=typeof Reflect=="object"&&Reflect.apply||(gy?Bl.bind(Dl):function(){return Bl.apply(Dl,arguments)})});var Le=b((p$,Fl)=>{"use strict";var Ol=Gr(),Nl=Function.prototype,Lo=Nl.call,vy=Ol&&Nl.bind.bind(Lo,Lo);Fl.exports=Ol?vy:function(a){return function(){return Lo.apply(a,arguments)}}});var Ri=b((h$,ql)=>{"use strict";var Ul=Le(),Sy=Ul({}.toString),yy=Ul("".slice);ql.exports=function(a){return yy(Sy(a),8,-1)}});var Co=b((m$,Hl)=>{"use strict";var Ty=Ri(),Iy=Le();Hl.exports=function(a){if(Ty(a)==="Function")return Iy(a)}});var we=b((f$,jl)=>{"use strict";var Do=typeof document=="object"&&document.all;jl.exports=typeof Do>"u"&&Do!==void 0?function(a){return typeof a=="function"||a===Do}:function(a){return typeof a=="function"}});var st=b((b$,zl)=>{"use strict";var Ey=$e();zl.exports=!Ey(function(){return Object.defineProperty({},1,{get:function(){return 7}})[1]!==7})});var nt=b((g$,Wl)=>{"use strict";var wy=Gr(),Os=Function.prototype.call;Wl.exports=wy?Os.bind(Os):function(){return Os.apply(Os,arguments)}});var Bo=b(Yl=>{"use strict";var Ql={}.propertyIsEnumerable,Gl=Object.getOwnPropertyDescriptor,xy=Gl&&!Ql.call({1:2},1);Yl.f=xy?function(e){var t=Gl(this,e);return!!t&&t.enumerable}:Ql});var Yr=b((S$,Kl)=>{"use strict";Kl.exports=function(a,e){return{enumerable:!(a&1),configurable:!(a&2),writable:!(a&4),value:e}}});var Jl=b((y$,Xl)=>{"use strict";var Py=Le(),ky=$e(),Ay=Ri(),Vo=Object,Ry=Py("".split);Xl.exports=ky(function(){return!Vo("z").propertyIsEnumerable(0)})?function(a){return Ay(a)==="String"?Ry(a,""):Vo(a)}:Vo});var Kr=b((T$,Zl)=>{"use strict";Zl.exports=function(a){return a==null}});var si=b((I$,ed)=>{"use strict";var My=Kr(),$y=TypeError;ed.exports=function(a){if(My(a))throw new $y("Can't call method on "+a);return a}});var Mi=b((E$,td)=>{"use strict";var Ly=Jl(),Cy=si();td.exports=function(a){return Ly(Cy(a))}});var Ye=b((w$,id)=>{"use strict";var Dy=we();id.exports=function(a){return typeof a=="object"?a!==null:Dy(a)}});var $i=b((x$,rd)=>{"use strict";rd.exports={}});var jt=b((P$,sd)=>{"use strict";var _o=$i(),Oo=Ee(),By=we(),ad=function(a){return By(a)?a:void 0};sd.exports=function(a,e){return arguments.length<2?ad(_o[a])||ad(Oo[a]):_o[a]&&_o[a][e]||Oo[a]&&Oo[a][e]}});var Xr=b((k$,nd)=>{"use strict";var Vy=Le();nd.exports=Vy({}.isPrototypeOf)});var Li=b((A$,cd)=>{"use strict";var _y=Ee(),od=_y.navigator,ud=od&&od.userAgent;cd.exports=ud?String(ud):""});var Fo=b((R$,fd)=>{"use strict";var md=Ee(),No=Li(),ld=md.process,dd=md.Deno,pd=ld&&ld.versions||dd&&dd.version,hd=pd&&pd.v8,xt,Ns;hd&&(xt=hd.split("."),Ns=xt[0]>0&&xt[0]<4?1:+(xt[0]+xt[1]));!Ns&&No&&(xt=No.match(/Edge\/(\d+)/),(!xt||xt[1]>=74)&&(xt=No.match(/Chrome\/(\d+)/),xt&&(Ns=+xt[1])));fd.exports=Ns});var Uo=b((M$,gd)=>{"use strict";var bd=Fo(),Oy=$e(),Ny=Ee(),Fy=Ny.String;gd.exports=!!Object.getOwnPropertySymbols&&!Oy(function(){var a=Symbol("symbol detection");return!Fy(a)||!(Object(a)instanceof Symbol)||!Symbol.sham&&bd&&bd<41})});var qo=b(($$,vd)=>{"use strict";var Uy=Uo();vd.exports=Uy&&!Symbol.sham&&typeof Symbol.iterator=="symbol"});var Ho=b((L$,Sd)=>{"use strict";var qy=jt(),Hy=we(),jy=Xr(),zy=qo(),Wy=Object;Sd.exports=zy?function(a){return typeof a=="symbol"}:function(a){var e=qy("Symbol");return Hy(e)&&jy(e.prototype,Wy(a))}});var Jr=b((C$,yd)=>{"use strict";var Qy=String;yd.exports=function(a){try{return Qy(a)}catch{return"Object"}}});var Bt=b((D$,Td)=>{"use strict";var Gy=we(),Yy=Jr(),Ky=TypeError;Td.exports=function(a){if(Gy(a))return a;throw new Ky(Yy(a)+" is not a function")}});var Zr=b((B$,Id)=>{"use strict";var Xy=Bt(),Jy=Kr();Id.exports=function(a,e){var t=a[e];return Jy(t)?void 0:Xy(t)}});var wd=b((V$,Ed)=>{"use strict";var jo=nt(),zo=we(),Wo=Ye(),Zy=TypeError;Ed.exports=function(a,e){var t,i;if(e==="string"&&zo(t=a.toString)&&!Wo(i=jo(t,a))||zo(t=a.valueOf)&&!Wo(i=jo(t,a))||e!=="string"&&zo(t=a.toString)&&!Wo(i=jo(t,a)))return i;throw new Zy("Can't convert object to primitive value")}});var Pt=b((_$,xd)=>{"use strict";xd.exports=!0});var Ad=b((O$,kd)=>{"use strict";var Pd=Ee(),eT=Object.defineProperty;kd.exports=function(a,e){try{eT(Pd,a,{value:e,configurable:!0,writable:!0})}catch{Pd[a]=e}return e}});var ea=b((N$,$d)=>{"use strict";var tT=Pt(),iT=Ee(),rT=Ad(),Rd="__core-js_shared__",Md=$d.exports=iT[Rd]||rT(Rd,{});(Md.versions||(Md.versions=[])).push({version:"3.43.0",mode:tT?"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 Qo=b((F$,Cd)=>{"use strict";var Ld=ea();Cd.exports=function(a,e){return Ld[a]||(Ld[a]=e||{})}});var or=b((U$,Dd)=>{"use strict";var aT=si(),sT=Object;Dd.exports=function(a){return sT(aT(a))}});var kt=b((q$,Bd)=>{"use strict";var nT=Le(),oT=or(),uT=nT({}.hasOwnProperty);Bd.exports=Object.hasOwn||function(e,t){return uT(oT(e),t)}});var Go=b((H$,Vd)=>{"use strict";var cT=Le(),lT=0,dT=Math.random(),pT=cT(1.1.toString);Vd.exports=function(a){return"Symbol("+(a===void 0?"":a)+")_"+pT(++lT+dT,36)}});var Ue=b((j$,Od)=>{"use strict";var hT=Ee(),mT=Qo(),_d=kt(),fT=Go(),bT=Uo(),gT=qo(),ur=hT.Symbol,Yo=mT("wks"),vT=gT?ur.for||ur:ur&&ur.withoutSetter||fT;Od.exports=function(a){return _d(Yo,a)||(Yo[a]=bT&&_d(ur,a)?ur[a]:vT("Symbol."+a)),Yo[a]}});var qd=b((z$,Ud)=>{"use strict";var ST=nt(),Nd=Ye(),Fd=Ho(),yT=Zr(),TT=wd(),IT=Ue(),ET=TypeError,wT=IT("toPrimitive");Ud.exports=function(a,e){if(!Nd(a)||Fd(a))return a;var t=yT(a,wT),i;if(t){if(e===void 0&&(e="default"),i=ST(t,a,e),!Nd(i)||Fd(i))return i;throw new ET("Can't convert object to primitive value")}return e===void 0&&(e="number"),TT(a,e)}});var Ko=b((W$,Hd)=>{"use strict";var xT=qd(),PT=Ho();Hd.exports=function(a){var e=xT(a,"string");return PT(e)?e:e+""}});var Fs=b((Q$,zd)=>{"use strict";var kT=Ee(),jd=Ye(),Xo=kT.document,AT=jd(Xo)&&jd(Xo.createElement);zd.exports=function(a){return AT?Xo.createElement(a):{}}});var Jo=b((G$,Wd)=>{"use strict";var RT=st(),MT=$e(),$T=Fs();Wd.exports=!RT&&!MT(function(){return Object.defineProperty($T("div"),"a",{get:function(){return 7}}).a!==7})});var Yd=b(Gd=>{"use strict";var LT=st(),CT=nt(),DT=Bo(),BT=Yr(),VT=Mi(),_T=Ko(),OT=kt(),NT=Jo(),Qd=Object.getOwnPropertyDescriptor;Gd.f=LT?Qd:function(e,t){if(e=VT(e),t=_T(t),NT)try{return Qd(e,t)}catch{}if(OT(e,t))return BT(!CT(DT.f,e,t),e[t])}});var Zo=b((K$,Kd)=>{"use strict";var FT=$e(),UT=we(),qT=/#|\.prototype\./,ta=function(a,e){var t=jT[HT(a)];return t===WT?!0:t===zT?!1:UT(e)?FT(e):!!e},HT=ta.normalize=function(a){return String(a).replace(qT,".").toLowerCase()},jT=ta.data={},zT=ta.NATIVE="N",WT=ta.POLYFILL="P";Kd.exports=ta});var cr=b((X$,Jd)=>{"use strict";var Xd=Co(),QT=Bt(),GT=Gr(),YT=Xd(Xd.bind);Jd.exports=function(a,e){return QT(a),e===void 0?a:GT?YT(a,e):function(){return a.apply(e,arguments)}}});var eu=b((J$,Zd)=>{"use strict";var KT=st(),XT=$e();Zd.exports=KT&&XT(function(){return Object.defineProperty(function(){},"prototype",{value:42,writable:!1}).prototype!==42})});var Vt=b((Z$,ep)=>{"use strict";var JT=Ye(),ZT=String,eI=TypeError;ep.exports=function(a){if(JT(a))return a;throw new eI(ZT(a)+" is not an object")}});var Ci=b(ip=>{"use strict";var tI=st(),iI=Jo(),rI=eu(),Us=Vt(),tp=Ko(),aI=TypeError,tu=Object.defineProperty,sI=Object.getOwnPropertyDescriptor,iu="enumerable",ru="configurable",au="writable";ip.f=tI?rI?function(e,t,i){if(Us(e),t=tp(t),Us(i),typeof e=="function"&&t==="prototype"&&"value"in i&&au in i&&!i[au]){var r=sI(e,t);r&&r[au]&&(e[t]=i.value,i={configurable:ru in i?i[ru]:r[ru],enumerable:iu in i?i[iu]:r[iu],writable:!1})}return tu(e,t,i)}:tu:function(e,t,i){if(Us(e),t=tp(t),Us(i),iI)try{return tu(e,t,i)}catch{}if("get"in i||"set"in i)throw new aI("Accessors not supported");return"value"in i&&(e[t]=i.value),e}});var lr=b((tL,rp)=>{"use strict";var nI=st(),oI=Ci(),uI=Yr();rp.exports=nI?function(a,e,t){return oI.f(a,e,uI(1,t))}:function(a,e,t){return a[e]=t,a}});var Pe=b((iL,sp)=>{"use strict";var ia=Ee(),cI=$o(),lI=Co(),dI=we(),pI=Yd().f,hI=Zo(),dr=$i(),mI=cr(),pr=lr(),ap=kt();ea();var fI=function(a){var e=function(t,i,r){if(this instanceof e){switch(arguments.length){case 0:return new a;case 1:return new a(t);case 2:return new a(t,i)}return new a(t,i,r)}return cI(a,this,arguments)};return e.prototype=a.prototype,e};sp.exports=function(a,e){var t=a.target,i=a.global,r=a.stat,s=a.proto,n=i?ia:r?ia[t]:ia[t]&&ia[t].prototype,o=i?dr:dr[t]||pr(dr,t,{})[t],u=o.prototype,c,d,l,p,m,f,g,v,S;for(p in e)c=hI(i?p:t+(r?".":"#")+p,a.forced),d=!c&&n&&ap(n,p),f=o[p],d&&(a.dontCallGetSet?(S=pI(n,p),g=S&&S.value):g=n[p]),m=d&&g?g:e[p],!(!c&&!s&&typeof f==typeof m)&&(a.bind&&d?v=mI(m,ia):a.wrap&&d?v=fI(m):s&&dI(m)?v=lI(m):v=m,(a.sham||m&&m.sham||f&&f.sham)&&pr(v,"sham",!0),pr(o,p,v),s&&(l=t+"Prototype",ap(dr,l)||pr(dr,l,{}),pr(dr[l],p,m),a.real&&u&&(c||!u[p])&&pr(u,p,m)))}});var qs=b((rL,op)=>{"use strict";var bI=Qo(),gI=Go(),np=bI("keys");op.exports=function(a){return np[a]||(np[a]=gI(a))}});var cp=b((aL,up)=>{"use strict";var vI=$e();up.exports=!vI(function(){function a(){}return a.prototype.constructor=null,Object.getPrototypeOf(new a)!==a.prototype})});var Hs=b((sL,dp)=>{"use strict";var SI=kt(),yI=we(),TI=or(),II=qs(),EI=cp(),lp=II("IE_PROTO"),su=Object,wI=su.prototype;dp.exports=EI?su.getPrototypeOf:function(a){var e=TI(a);if(SI(e,lp))return e[lp];var t=e.constructor;return yI(t)&&e instanceof t?t.prototype:e instanceof su?wI:null}});var hp=b((nL,pp)=>{"use strict";var xI=Math.ceil,PI=Math.floor;pp.exports=Math.trunc||function(e){var t=+e;return(t>0?PI:xI)(t)}});var ra=b((oL,mp)=>{"use strict";var kI=hp();mp.exports=function(a){var e=+a;return e!==e||e===0?0:kI(e)}});var bp=b((uL,fp)=>{"use strict";var AI=ra(),RI=Math.max,MI=Math.min;fp.exports=function(a,e){var t=AI(a);return t<0?RI(t+e,0):MI(t,e)}});var nu=b((cL,gp)=>{"use strict";var $I=ra(),LI=Math.min;gp.exports=function(a){var e=$I(a);return e>0?LI(e,9007199254740991):0}});var hr=b((lL,vp)=>{"use strict";var CI=nu();vp.exports=function(a){return CI(a.length)}});var ou=b((dL,yp)=>{"use strict";var DI=Mi(),BI=bp(),VI=hr(),Sp=function(a){return function(e,t,i){var r=DI(e),s=VI(r);if(s===0)return!a&&-1;var n=BI(i,s),o;if(a&&t!==t){for(;s>n;)if(o=r[n++],o!==o)return!0}else for(;s>n;n++)if((a||n in r)&&r[n]===t)return a||n||0;return!a&&-1}};yp.exports={includes:Sp(!0),indexOf:Sp(!1)}});var js=b((pL,Tp)=>{"use strict";Tp.exports={}});var wp=b((hL,Ep)=>{"use strict";var _I=Le(),uu=kt(),OI=Mi(),NI=ou().indexOf,FI=js(),Ip=_I([].push);Ep.exports=function(a,e){var t=OI(a),i=0,r=[],s;for(s in t)!uu(FI,s)&&uu(t,s)&&Ip(r,s);for(;e.length>i;)uu(t,s=e[i++])&&(~NI(r,s)||Ip(r,s));return r}});var cu=b((mL,xp)=>{"use strict";xp.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]});var lu=b((fL,Pp)=>{"use strict";var UI=wp(),qI=cu();Pp.exports=Object.keys||function(e){return UI(e,qI)}});var du=b((bL,$p)=>{"use strict";var Ap=st(),HI=$e(),Rp=Le(),jI=Hs(),zI=lu(),WI=Mi(),QI=Bo().f,Mp=Rp(QI),GI=Rp([].push),YI=Ap&&HI(function(){var a=Object.create(null);return a[2]=2,!Mp(a,2)}),kp=function(a){return function(e){for(var t=WI(e),i=zI(t),r=YI&&jI(t)===null,s=i.length,n=0,o=[],u;s>n;)u=i[n++],(!Ap||(r?u in t:Mp(t,u)))&&GI(o,a?[u,t[u]]:t[u]);return o}};$p.exports={entries:kp(!0),values:kp(!1)}});var Lp=b(()=>{"use strict";var KI=Pe(),XI=du().values;KI({target:"Object",stat:!0},{values:function(e){return XI(e)}})});var Dp=b((SL,Cp)=>{"use strict";Lp();var JI=$i();Cp.exports=JI.Object.values});var Vp=b((yL,Bp)=>{"use strict";var ZI=Dp();Bp.exports=ZI});var Di=b((TL,_p)=>{"use strict";var eE=Vp();_p.exports=eE});var aa=b((IL,Op)=>{"use strict";Op.exports=function(){}});var Np=b(()=>{"use strict";var tE=Pe(),iE=ou().includes,rE=$e(),aE=aa(),sE=rE(function(){return!Array(1).includes()});tE({target:"Array",proto:!0,forced:sE},{includes:function(e){return iE(this,e,arguments.length>1?arguments[1]:void 0)}});aE("includes")});var ni=b((xL,Fp)=>{"use strict";var nE=jt();Fp.exports=nE});var qp=b((PL,Up)=>{"use strict";Np();var oE=ni();Up.exports=oE("Array","includes")});var jp=b((kL,Hp)=>{"use strict";var uE=qp();Hp.exports=uE});var Ke=b((AL,zp)=>{"use strict";var cE=jp();zp.exports=cE});var sh=b(()=>{"use strict";var SE=Pe(),yE=du().entries;SE({target:"Object",stat:!0},{entries:function(e){return yE(e)}})});var oh=b((fD,nh)=>{"use strict";sh();var TE=$i();nh.exports=TE.Object.entries});var ch=b((bD,uh)=>{"use strict";var IE=oh();uh.exports=IE});var li=b((gD,lh)=>{"use strict";var EE=ch();lh.exports=EE});var Vi=b((vD,dh)=>{"use strict";dh.exports={}});var mh=b((SD,hh)=>{"use strict";var wE=Ee(),xE=we(),ph=wE.WeakMap;hh.exports=xE(ph)&&/native code/.test(String(ph))});var Su=b((yD,gh)=>{"use strict";var PE=mh(),bh=Ee(),kE=Ye(),AE=lr(),bu=kt(),gu=ea(),RE=qs(),ME=js(),fh="Object already initialized",vu=bh.TypeError,$E=bh.WeakMap,an,ca,sn,LE=function(a){return sn(a)?ca(a):an(a,{})},CE=function(a){return function(e){var t;if(!kE(e)||(t=ca(e)).type!==a)throw new vu("Incompatible receiver, "+a+" required");return t}};PE||gu.state?(At=gu.state||(gu.state=new $E),At.get=At.get,At.has=At.has,At.set=At.set,an=function(a,e){if(At.has(a))throw new vu(fh);return e.facade=a,At.set(a,e),e},ca=function(a){return At.get(a)||{}},sn=function(a){return At.has(a)}):(_i=RE("state"),ME[_i]=!0,an=function(a,e){if(bu(a,_i))throw new vu(fh);return e.facade=a,AE(a,_i,e),e},ca=function(a){return bu(a,_i)?a[_i]:{}},sn=function(a){return bu(a,_i)});var At,_i;gh.exports={set:an,get:ca,has:sn,enforce:LE,getterFor:CE}});var Iu=b((TD,Sh)=>{"use strict";var yu=st(),DE=kt(),vh=Function.prototype,BE=yu&&Object.getOwnPropertyDescriptor,Tu=DE(vh,"name"),VE=Tu&&function(){}.name==="something",_E=Tu&&(!yu||yu&&BE(vh,"name").configurable);Sh.exports={EXISTS:Tu,PROPER:VE,CONFIGURABLE:_E}});var Th=b(yh=>{"use strict";var OE=st(),NE=eu(),FE=Ci(),UE=Vt(),qE=Mi(),HE=lu();yh.f=OE&&!NE?Object.defineProperties:function(e,t){UE(e);for(var i=qE(t),r=HE(t),s=r.length,n=0,o;s>n;)FE.f(e,o=r[n++],i[o]);return e}});var Eu=b((ED,Ih)=>{"use strict";var jE=jt();Ih.exports=jE("document","documentElement")});var ku=b((wD,Rh)=>{"use strict";var zE=Vt(),WE=Th(),Eh=cu(),QE=js(),GE=Eu(),YE=Fs(),KE=qs(),wh=">",xh="<",xu="prototype",Pu="script",kh=KE("IE_PROTO"),wu=function(){},Ah=function(a){return xh+Pu+wh+a+xh+"/"+Pu+wh},Ph=function(a){a.write(Ah("")),a.close();var e=a.parentWindow.Object;return a=null,e},XE=function(){var a=YE("iframe"),e="java"+Pu+":",t;return a.style.display="none",GE.appendChild(a),a.src=String(e),t=a.contentWindow.document,t.open(),t.write(Ah("document.F=Object")),t.close(),t.F},nn,on=function(){try{nn=new ActiveXObject("htmlfile")}catch{}on=typeof document<"u"?document.domain&&nn?Ph(nn):XE():Ph(nn);for(var a=Eh.length;a--;)delete on[xu][Eh[a]];return on()};QE[kh]=!0;Rh.exports=Object.create||function(e,t){var i;return e!==null?(wu[xu]=zE(e),i=new wu,wu[xu]=null,i[kh]=e):i=on(),t===void 0?i:WE.f(i,t)}});var fr=b((xD,Mh)=>{"use strict";var JE=lr();Mh.exports=function(a,e,t,i){return i&&i.enumerable?a[e]=t:JE(a,e,t),a}});var $u=b((PD,Ch)=>{"use strict";var ZE=$e(),ew=we(),tw=Ye(),iw=ku(),$h=Hs(),rw=fr(),aw=Ue(),sw=Pt(),Mu=aw("iterator"),Lh=!1,Wt,Au,Ru;[].keys&&(Ru=[].keys(),"next"in Ru?(Au=$h($h(Ru)),Au!==Object.prototype&&(Wt=Au)):Lh=!0);var nw=!tw(Wt)||ZE(function(){var a={};return Wt[Mu].call(a)!==a});nw?Wt={}:sw&&(Wt=iw(Wt));ew(Wt[Mu])||rw(Wt,Mu,function(){return this});Ch.exports={IteratorPrototype:Wt,BUGGY_SAFARI_ITERATORS:Lh}});var un=b((kD,Bh)=>{"use strict";var ow=Ue(),uw=ow("toStringTag"),Dh={};Dh[uw]="z";Bh.exports=String(Dh)==="[object z]"});var la=b((AD,Vh)=>{"use strict";var cw=un(),lw=we(),cn=Ri(),dw=Ue(),pw=dw("toStringTag"),hw=Object,mw=cn(function(){return arguments}())==="Arguments",fw=function(a,e){try{return a[e]}catch{}};Vh.exports=cw?cn:function(a){var e,t,i;return a===void 0?"Undefined":a===null?"Null":typeof(t=fw(e=hw(a),pw))=="string"?t:mw?cn(e):(i=cn(e))==="Object"&&lw(e.callee)?"Arguments":i}});var Oh=b((RD,_h)=>{"use strict";var bw=un(),gw=la();_h.exports=bw?{}.toString:function(){return"[object "+gw(this)+"]"}});var da=b((MD,Fh)=>{"use strict";var vw=un(),Sw=Ci().f,yw=lr(),Tw=kt(),Iw=Oh(),Ew=Ue(),Nh=Ew("toStringTag");Fh.exports=function(a,e,t,i){var r=t?a:a&&a.prototype;r&&(Tw(r,Nh)||Sw(r,Nh,{configurable:!0,value:e}),i&&!vw&&yw(r,"toString",Iw))}});var qh=b(($D,Uh)=>{"use strict";var ww=$u().IteratorPrototype,xw=ku(),Pw=Yr(),kw=da(),Aw=Vi(),Rw=function(){return this};Uh.exports=function(a,e,t,i){var r=e+" Iterator";return a.prototype=xw(ww,{next:Pw(+!i,t)}),kw(a,r,!1,!0),Aw[r]=Rw,a}});var jh=b((LD,Hh)=>{"use strict";var Mw=Le(),$w=Bt();Hh.exports=function(a,e,t){try{return Mw($w(Object.getOwnPropertyDescriptor(a,e)[t]))}catch{}}});var Wh=b((CD,zh)=>{"use strict";var Lw=Ye();zh.exports=function(a){return Lw(a)||a===null}});var Gh=b((DD,Qh)=>{"use strict";var Cw=Wh(),Dw=String,Bw=TypeError;Qh.exports=function(a){if(Cw(a))return a;throw new Bw("Can't set "+Dw(a)+" as a prototype")}});var Lu=b((BD,Yh)=>{"use strict";var Vw=jh(),_w=Ye(),Ow=si(),Nw=Gh();Yh.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var a=!1,e={},t;try{t=Vw(Object.prototype,"__proto__","set"),t(e,[]),a=e instanceof Array}catch{}return function(r,s){return Ow(r),Nw(s),_w(r)&&(a?t(r,s):r.__proto__=s),r}}():void 0)});var nm=b((VD,sm)=>{"use strict";var Fw=Pe(),Uw=nt(),ln=Pt(),rm=Iu(),qw=we(),Hw=qh(),Kh=Hs(),Xh=Lu(),jw=da(),zw=lr(),Cu=fr(),Ww=Ue(),Jh=Vi(),am=$u(),Qw=rm.PROPER,Gw=rm.CONFIGURABLE,Zh=am.IteratorPrototype,dn=am.BUGGY_SAFARI_ITERATORS,pa=Ww("iterator"),em="keys",ha="values",tm="entries",im=function(){return this};sm.exports=function(a,e,t,i,r,s,n){Hw(t,e,i);var o=function(S){if(S===r&&p)return p;if(!dn&&S&&S in d)return d[S];switch(S){case em:return function(){return new t(this,S)};case ha:return function(){return new t(this,S)};case tm:return function(){return new t(this,S)}}return function(){return new t(this)}},u=e+" Iterator",c=!1,d=a.prototype,l=d[pa]||d["@@iterator"]||r&&d[r],p=!dn&&l||o(r),m=e==="Array"&&d.entries||l,f,g,v;if(m&&(f=Kh(m.call(new a)),f!==Object.prototype&&f.next&&(!ln&&Kh(f)!==Zh&&(Xh?Xh(f,Zh):qw(f[pa])||Cu(f,pa,im)),jw(f,u,!0,!0),ln&&(Jh[u]=im))),Qw&&r===ha&&l&&l.name!==ha&&(!ln&&Gw?zw(d,"name",ha):(c=!0,p=function(){return Uw(l,this)})),r)if(g={values:o(ha),keys:s?p:o(em),entries:o(tm)},n)for(v in g)(dn||c||!(v in d))&&Cu(d,v,g[v]);else Fw({target:e,proto:!0,forced:dn||c},g);return(!ln||n)&&d[pa]!==p&&Cu(d,pa,p,{name:r}),Jh[e]=p,g}});var um=b((_D,om)=>{"use strict";om.exports=function(a,e){return{value:a,done:e}}});var Bu=b((OD,hm)=>{"use strict";var Yw=Mi(),Du=aa(),cm=Vi(),dm=Su(),Kw=Ci().f,Xw=nm(),pn=um(),Jw=Pt(),Zw=st(),pm="Array Iterator",ex=dm.set,tx=dm.getterFor(pm);hm.exports=Xw(Array,"Array",function(a,e){ex(this,{type:pm,target:Yw(a),index:0,kind:e})},function(){var a=tx(this),e=a.target,t=a.index++;if(!e||t>=e.length)return a.target=null,pn(void 0,!0);switch(a.kind){case"keys":return pn(t,!1);case"values":return pn(e[t],!1)}return pn([t,e[t]],!1)},"values");var lm=cm.Arguments=cm.Array;Du("keys");Du("values");Du("entries");if(!Jw&&Zw&&lm.name!=="values")try{Kw(lm,"name",{value:"values"})}catch{}});var fm=b((ND,mm)=>{"use strict";var ix=Ue(),rx=Vi(),ax=ix("iterator"),sx=Array.prototype;mm.exports=function(a){return a!==void 0&&(rx.Array===a||sx[ax]===a)}});var Vu=b((FD,gm)=>{"use strict";var nx=la(),bm=Zr(),ox=Kr(),ux=Vi(),cx=Ue(),lx=cx("iterator");gm.exports=function(a){if(!ox(a))return bm(a,lx)||bm(a,"@@iterator")||ux[nx(a)]}});var Sm=b((UD,vm)=>{"use strict";var dx=nt(),px=Bt(),hx=Vt(),mx=Jr(),fx=Vu(),bx=TypeError;vm.exports=function(a,e){var t=arguments.length<2?fx(a):e;if(px(t))return hx(dx(t,a));throw new bx(mx(a)+" is not iterable")}});var Im=b((qD,Tm)=>{"use strict";var gx=nt(),ym=Vt(),vx=Zr();Tm.exports=function(a,e,t){var i,r;ym(a);try{if(i=vx(a,"return"),!i){if(e==="throw")throw t;return t}i=gx(i,a)}catch(s){r=!0,i=s}if(e==="throw")throw t;if(r)throw i;return ym(i),t}});var mn=b((HD,Pm)=>{"use strict";var Sx=cr(),yx=nt(),Tx=Vt(),Ix=Jr(),Ex=fm(),wx=hr(),Em=Xr(),xx=Sm(),Px=Vu(),wm=Im(),kx=TypeError,hn=function(a,e){this.stopped=a,this.result=e},xm=hn.prototype;Pm.exports=function(a,e,t){var i=t&&t.that,r=!!(t&&t.AS_ENTRIES),s=!!(t&&t.IS_RECORD),n=!!(t&&t.IS_ITERATOR),o=!!(t&&t.INTERRUPTED),u=Sx(e,i),c,d,l,p,m,f,g,v=function(E){return c&&wm(c,"normal"),new hn(!0,E)},S=function(E){return r?(Tx(E),o?u(E[0],E[1],v):u(E[0],E[1])):o?u(E,v):u(E)};if(s)c=a.iterator;else if(n)c=a;else{if(d=Px(a),!d)throw new kx(Ix(a)+" is not iterable");if(Ex(d)){for(l=0,p=wx(a);p>l;l++)if(m=S(a[l]),m&&Em(xm,m))return m;return new hn(!1)}c=xx(a,d)}for(f=s?a.next:c.next;!(g=yx(f,c)).done;){try{m=S(g.value)}catch(E){wm(c,"throw",E)}if(typeof m=="object"&&m&&Em(xm,m))return m}return new hn(!1)}});var Am=b((jD,km)=>{"use strict";var Ax=st(),Rx=Ci(),Mx=Yr();km.exports=function(a,e,t){Ax?Rx.f(a,e,Mx(0,t)):a[e]=t}});var Rm=b(()=>{"use strict";var $x=Pe(),Lx=mn(),Cx=Am();$x({target:"Object",stat:!0},{fromEntries:function(e){var t={};return Lx(e,function(i,r){Cx(t,i,r)},{AS_ENTRIES:!0}),t}})});var $m=b((QD,Mm)=>{"use strict";Bu();Rm();var Dx=$i();Mm.exports=Dx.Object.fromEntries});var Cm=b((GD,Lm)=>{"use strict";Lm.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 Bm=b(()=>{"use strict";Bu();var Bx=Cm(),Vx=Ee(),_x=da(),Dm=Vi();for(fn in Bx)_x(Vx[fn],fn),Dm[fn]=Dm.Array;var fn});var _m=b((XD,Vm)=>{"use strict";var Ox=$m();Bm();Vm.exports=Ox});var _u=b((JD,Om)=>{"use strict";var Nx=_m();Om.exports=Nx});var Nm=b(()=>{"use strict"});var Ou=b((tB,Fm)=>{"use strict";var ma=Ee(),Fx=Li(),Ux=Ri(),bn=function(a){return Fx.slice(0,a.length)===a};Fm.exports=function(){return bn("Bun/")?"BUN":bn("Cloudflare-Workers")?"CLOUDFLARE":bn("Deno/")?"DENO":bn("Node.js/")?"NODE":ma.Bun&&typeof Bun.version=="string"?"BUN":ma.Deno&&typeof Deno.version=="object"?"DENO":Ux(ma.process)==="process"?"NODE":ma.window&&ma.document?"BROWSER":"REST"}()});var gn=b((iB,Um)=>{"use strict";var qx=Ou();Um.exports=qx==="NODE"});var Hm=b((rB,qm)=>{"use strict";var Hx=Ci();qm.exports=function(a,e,t){return Hx.f(a,e,t)}});var Wm=b((aB,zm)=>{"use strict";var jx=jt(),zx=Hm(),Wx=Ue(),Qx=st(),jm=Wx("species");zm.exports=function(a){var e=jx(a);Qx&&e&&!e[jm]&&zx(e,jm,{configurable:!0,get:function(){return this}})}});var Gm=b((sB,Qm)=>{"use strict";var Gx=Xr(),Yx=TypeError;Qm.exports=function(a,e){if(Gx(e,a))return a;throw new Yx("Incorrect invocation")}});var Fu=b((nB,Ym)=>{"use strict";var Kx=Le(),Xx=we(),Nu=ea(),Jx=Kx(Function.toString);Xx(Nu.inspectSource)||(Nu.inspectSource=function(a){return Jx(a)});Ym.exports=Nu.inspectSource});var qu=b((oB,ef)=>{"use strict";var Zx=Le(),eP=$e(),Km=we(),tP=la(),iP=jt(),rP=Fu(),Xm=function(){},Jm=iP("Reflect","construct"),Uu=/^\s*(?:class|function)\b/,aP=Zx(Uu.exec),sP=!Uu.test(Xm),fa=function(e){if(!Km(e))return!1;try{return Jm(Xm,[],e),!0}catch{return!1}},Zm=function(e){if(!Km(e))return!1;switch(tP(e)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return sP||!!aP(Uu,rP(e))}catch{return!0}};Zm.sham=!0;ef.exports=!Jm||eP(function(){var a;return fa(fa.call)||!fa(Object)||!fa(function(){a=!0})||a})?Zm:fa});var rf=b((uB,tf)=>{"use strict";var nP=qu(),oP=Jr(),uP=TypeError;tf.exports=function(a){if(nP(a))return a;throw new uP(oP(a)+" is not a constructor")}});var Hu=b((cB,sf)=>{"use strict";var af=Vt(),cP=rf(),lP=Kr(),dP=Ue(),pP=dP("species");sf.exports=function(a,e){var t=af(a).constructor,i;return t===void 0||lP(i=af(t)[pP])?e:cP(i)}});var of=b((lB,nf)=>{"use strict";var hP=Le();nf.exports=hP([].slice)});var cf=b((dB,uf)=>{"use strict";var mP=TypeError;uf.exports=function(a,e){if(a<e)throw new mP("Not enough arguments");return a}});var ju=b((pB,lf)=>{"use strict";var fP=Li();lf.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(fP)});var Zu=b((hB,Sf)=>{"use strict";var ut=Ee(),bP=$o(),gP=cr(),df=we(),vP=kt(),vf=$e(),pf=Eu(),SP=of(),hf=Fs(),yP=cf(),TP=ju(),IP=gn(),Ku=ut.setImmediate,Xu=ut.clearImmediate,EP=ut.process,zu=ut.Dispatch,wP=ut.Function,mf=ut.MessageChannel,xP=ut.String,Wu=0,ba={},ff="onreadystatechange",ga,Oi,Qu,Gu;vf(function(){ga=ut.location});var Ju=function(a){if(vP(ba,a)){var e=ba[a];delete ba[a],e()}},Yu=function(a){return function(){Ju(a)}},bf=function(a){Ju(a.data)},gf=function(a){ut.postMessage(xP(a),ga.protocol+"//"+ga.host)};(!Ku||!Xu)&&(Ku=function(e){yP(arguments.length,1);var t=df(e)?e:wP(e),i=SP(arguments,1);return ba[++Wu]=function(){bP(t,void 0,i)},Oi(Wu),Wu},Xu=function(e){delete ba[e]},IP?Oi=function(a){EP.nextTick(Yu(a))}:zu&&zu.now?Oi=function(a){zu.now(Yu(a))}:mf&&!TP?(Qu=new mf,Gu=Qu.port2,Qu.port1.onmessage=bf,Oi=gP(Gu.postMessage,Gu)):ut.addEventListener&&df(ut.postMessage)&&!ut.importScripts&&ga&&ga.protocol!=="file:"&&!vf(gf)?(Oi=gf,ut.addEventListener("message",bf,!1)):ff in hf("script")?Oi=function(a){pf.appendChild(hf("script"))[ff]=function(){pf.removeChild(this),Ju(a)}}:Oi=function(a){setTimeout(Yu(a),0)});Sf.exports={set:Ku,clear:Xu}});var If=b((mB,Tf)=>{"use strict";var yf=Ee(),PP=st(),kP=Object.getOwnPropertyDescriptor;Tf.exports=function(a){if(!PP)return yf[a];var e=kP(yf,a);return e&&e.value}});var ec=b((fB,wf)=>{"use strict";var Ef=function(){this.head=null,this.tail=null};Ef.prototype={add:function(a){var e={item:a,next:null},t=this.tail;t?t.next=e:this.head=e,this.tail=e},get:function(){var a=this.head;if(a){var e=this.head=a.next;return e===null&&(this.tail=null),a.item}}};wf.exports=Ef});var Pf=b((bB,xf)=>{"use strict";var AP=Li();xf.exports=/ipad|iphone|ipod/i.test(AP)&&typeof Pebble<"u"});var Af=b((gB,kf)=>{"use strict";var RP=Li();kf.exports=/web0s(?!.*chrome)/i.test(RP)});var Bf=b((vB,Df)=>{"use strict";var gr=Ee(),MP=If(),Rf=cr(),tc=Zu().set,$P=ec(),LP=ju(),CP=Pf(),DP=Af(),ic=gn(),Mf=gr.MutationObserver||gr.WebKitMutationObserver,$f=gr.document,Lf=gr.process,vn=gr.Promise,sc=MP("queueMicrotask"),br,rc,ac,Sn,Cf;sc||(va=new $P,Sa=function(){var a,e;for(ic&&(a=Lf.domain)&&a.exit();e=va.get();)try{e()}catch(t){throw va.head&&br(),t}a&&a.enter()},!LP&&!ic&&!DP&&Mf&&$f?(rc=!0,ac=$f.createTextNode(""),new Mf(Sa).observe(ac,{characterData:!0}),br=function(){ac.data=rc=!rc}):!CP&&vn&&vn.resolve?(Sn=vn.resolve(void 0),Sn.constructor=vn,Cf=Rf(Sn.then,Sn),br=function(){Cf(Sa)}):ic?br=function(){Lf.nextTick(Sa)}:(tc=Rf(tc,gr),br=function(){tc(Sa)}),sc=function(a){va.head||br(),va.add(a)});var va,Sa;Df.exports=sc});var _f=b((SB,Vf)=>{"use strict";Vf.exports=function(a,e){try{arguments.length===1?console.error(a):console.error(a,e)}catch{}}});var yn=b((yB,Of)=>{"use strict";Of.exports=function(a){try{return{error:!1,value:a()}}catch(e){return{error:!0,value:e}}}});var Ni=b((TB,Nf)=>{"use strict";var BP=Ee();Nf.exports=BP.Promise});var vr=b((IB,Hf)=>{"use strict";var VP=Ee(),ya=Ni(),_P=we(),OP=Zo(),NP=Fu(),FP=Ue(),Ff=Ou(),UP=Pt(),nc=Fo(),Uf=ya&&ya.prototype,qP=FP("species"),oc=!1,qf=_P(VP.PromiseRejectionEvent),HP=OP("Promise",function(){var a=NP(ya),e=a!==String(ya);if(!e&&nc===66||UP&&!(Uf.catch&&Uf.finally))return!0;if(!nc||nc<51||!/native code/.test(a)){var t=new ya(function(s){s(1)}),i=function(s){s(function(){},function(){})},r=t.constructor={};if(r[qP]=i,oc=t.then(function(){})instanceof i,!oc)return!0}return!e&&(Ff==="BROWSER"||Ff==="DENO")&&!qf});Hf.exports={CONSTRUCTOR:HP,REJECTION_EVENT:qf,SUBCLASSING:oc}});var Sr=b((EB,zf)=>{"use strict";var jf=Bt(),jP=TypeError,zP=function(a){var e,t;this.promise=new a(function(i,r){if(e!==void 0||t!==void 0)throw new jP("Bad Promise constructor");e=i,t=r}),this.resolve=jf(e),this.reject=jf(t)};zf.exports.f=function(a){return new zP(a)}});var db=b(()=>{"use strict";var WP=Pe(),QP=Pt(),wn=gn(),di=Ee(),GP=$i(),Er=nt(),Wf=fr(),Qf=Lu(),YP=da(),KP=Wm(),XP=Bt(),En=we(),JP=Ye(),ZP=Gm(),ek=Hu(),Jf=Zu().set,pc=Bf(),tk=_f(),ik=yn(),rk=ec(),Zf=Su(),xn=Ni(),hc=vr(),eb=Sr(),Pn="Promise",tb=hc.CONSTRUCTOR,ak=hc.REJECTION_EVENT,sk=hc.SUBCLASSING,uc=Zf.getterFor(Pn),nk=Zf.set,yr=xn&&xn.prototype,Fi=xn,Tn=yr,ib=di.TypeError,cc=di.document,mc=di.process,lc=eb.f,ok=lc,uk=!!(cc&&cc.createEvent&&di.dispatchEvent),rb="unhandledrejection",ck="rejectionhandled",Gf=0,ab=1,lk=2,fc=1,sb=2,In,Yf,nb,Kf,ob=function(a){var e;return JP(a)&&En(e=a.then)?e:!1},ub=function(a,e){var t=e.value,i=e.state===ab,r=i?a.ok:a.fail,s=a.resolve,n=a.reject,o=a.domain,u,c,d;try{r?(i||(e.rejection===sb&&pk(e),e.rejection=fc),r===!0?u=t:(o&&o.enter(),u=r(t),o&&(o.exit(),d=!0)),u===a.promise?n(new ib("Promise-chain cycle")):(c=ob(u))?Er(c,u,s,n):s(u)):n(t)}catch(l){o&&!d&&o.exit(),n(l)}},cb=function(a,e){a.notified||(a.notified=!0,pc(function(){for(var t=a.reactions,i;i=t.get();)ub(i,a);a.notified=!1,e&&!a.rejection&&dk(a)}))},lb=function(a,e,t){var i,r;uk?(i=cc.createEvent("Event"),i.promise=e,i.reason=t,i.initEvent(a,!1,!0),di.dispatchEvent(i)):i={promise:e,reason:t},!ak&&(r=di["on"+a])?r(i):a===rb&&tk("Unhandled promise rejection",t)},dk=function(a){Er(Jf,di,function(){var e=a.facade,t=a.value,i=Xf(a),r;if(i&&(r=ik(function(){wn?mc.emit("unhandledRejection",t,e):lb(rb,e,t)}),a.rejection=wn||Xf(a)?sb:fc,r.error))throw r.value})},Xf=function(a){return a.rejection!==fc&&!a.parent},pk=function(a){Er(Jf,di,function(){var e=a.facade;wn?mc.emit("rejectionHandled",e):lb(ck,e,a.value)})},Tr=function(a,e,t){return function(i){a(e,i,t)}},Ir=function(a,e,t){a.done||(a.done=!0,t&&(a=t),a.value=e,a.state=lk,cb(a,!0))},dc=function(a,e,t){if(!a.done){a.done=!0,t&&(a=t);try{if(a.facade===e)throw new ib("Promise can't be resolved itself");var i=ob(e);i?pc(function(){var r={done:!1};try{Er(i,e,Tr(dc,r,a),Tr(Ir,r,a))}catch(s){Ir(r,s,a)}}):(a.value=e,a.state=ab,cb(a,!1))}catch(r){Ir({done:!1},r,a)}}};if(tb&&(Fi=function(e){ZP(this,Tn),XP(e),Er(In,this);var t=uc(this);try{e(Tr(dc,t),Tr(Ir,t))}catch(i){Ir(t,i)}},Tn=Fi.prototype,In=function(e){nk(this,{type:Pn,done:!1,notified:!1,parent:!1,reactions:new rk,rejection:!1,state:Gf,value:null})},In.prototype=Wf(Tn,"then",function(e,t){var i=uc(this),r=lc(ek(this,Fi));return i.parent=!0,r.ok=En(e)?e:!0,r.fail=En(t)&&t,r.domain=wn?mc.domain:void 0,i.state===Gf?i.reactions.add(r):pc(function(){ub(r,i)}),r.promise}),Yf=function(){var a=new In,e=uc(a);this.promise=a,this.resolve=Tr(dc,e),this.reject=Tr(Ir,e)},eb.f=lc=function(a){return a===Fi||a===nb?new Yf(a):ok(a)},!QP&&En(xn)&&yr!==Object.prototype)){Kf=yr.then,sk||Wf(yr,"then",function(e,t){var i=this;return new Fi(function(r,s){Er(Kf,i,r,s)}).then(e,t)},{unsafe:!0});try{delete yr.constructor}catch{}Qf&&Qf(yr,Tn)}WP({global:!0,constructor:!0,wrap:!0,forced:tb},{Promise:Fi});nb=GP.Promise;YP(Fi,Pn,!1,!0);KP(Pn)});var bb=b((PB,fb)=>{"use strict";var hk=Ue(),hb=hk("iterator"),mb=!1;try{pb=0,bc={next:function(){return{done:!!pb++}},return:function(){mb=!0}},bc[hb]=function(){return this},Array.from(bc,function(){throw 2})}catch{}var pb,bc;fb.exports=function(a,e){try{if(!e&&!mb)return!1}catch{return!1}var t=!1;try{var i={};i[hb]=function(){return{next:function(){return{done:t=!0}}}},a(i)}catch{}return t}});var gc=b((kB,gb)=>{"use strict";var mk=Ni(),fk=bb(),bk=vr().CONSTRUCTOR;gb.exports=bk||!fk(function(a){mk.all(a).then(void 0,function(){})})});var vb=b(()=>{"use strict";var gk=Pe(),vk=nt(),Sk=Bt(),yk=Sr(),Tk=yn(),Ik=mn(),Ek=gc();gk({target:"Promise",stat:!0,forced:Ek},{all:function(e){var t=this,i=yk.f(t),r=i.resolve,s=i.reject,n=Tk(function(){var o=Sk(t.resolve),u=[],c=0,d=1;Ik(e,function(l){var p=c++,m=!1;d++,vk(o,t,l).then(function(f){m||(m=!0,u[p]=f,--d||r(u))},s)}),--d||r(u)});return n.error&&s(n.value),i.promise}})});var yb=b(()=>{"use strict";var wk=Pe(),xk=Pt(),Pk=vr().CONSTRUCTOR,Sc=Ni(),kk=jt(),Ak=we(),Rk=fr(),Sb=Sc&&Sc.prototype;wk({target:"Promise",proto:!0,forced:Pk,real:!0},{catch:function(a){return this.then(void 0,a)}});!xk&&Ak(Sc)&&(vc=kk("Promise").prototype.catch,Sb.catch!==vc&&Rk(Sb,"catch",vc,{unsafe:!0}));var vc});var Tb=b(()=>{"use strict";var Mk=Pe(),$k=nt(),Lk=Bt(),Ck=Sr(),Dk=yn(),Bk=mn(),Vk=gc();Mk({target:"Promise",stat:!0,forced:Vk},{race:function(e){var t=this,i=Ck.f(t),r=i.reject,s=Dk(function(){var n=Lk(t.resolve);Bk(e,function(o){$k(n,t,o).then(i.resolve,r)})});return s.error&&r(s.value),i.promise}})});var Ib=b(()=>{"use strict";var _k=Pe(),Ok=Sr(),Nk=vr().CONSTRUCTOR;_k({target:"Promise",stat:!0,forced:Nk},{reject:function(e){var t=Ok.f(this),i=t.reject;return i(e),t.promise}})});var yc=b((VB,Eb)=>{"use strict";var Fk=Vt(),Uk=Ye(),qk=Sr();Eb.exports=function(a,e){if(Fk(a),Uk(e)&&e.constructor===a)return e;var t=qk.f(a),i=t.resolve;return i(e),t.promise}});var Pb=b(()=>{"use strict";var Hk=Pe(),jk=jt(),wb=Pt(),zk=Ni(),xb=vr().CONSTRUCTOR,Wk=yc(),Qk=jk("Promise"),Gk=wb&&!xb;Hk({target:"Promise",stat:!0,forced:wb||xb},{resolve:function(e){return Wk(Gk&&this===Qk?zk:this,e)}})});var kb=b(()=>{"use strict";db();vb();yb();Tb();Ib();Pb()});var $b=b(()=>{"use strict";var Yk=Pe(),Kk=Pt(),kn=Ni(),Xk=$e(),Rb=jt(),Mb=we(),Jk=Hu(),Ab=yc(),Zk=fr(),Ic=kn&&kn.prototype,eA=!!kn&&Xk(function(){Ic.finally.call({then:function(){}},function(){})});Yk({target:"Promise",proto:!0,real:!0,forced:eA},{finally:function(a){var e=Jk(this,Rb("Promise")),t=Mb(a);return this.then(t?function(i){return Ab(e,a()).then(function(){return i})}:a,t?function(i){return Ab(e,a()).then(function(){throw i})}:a)}});!Kk&&Mb(kn)&&(Tc=Rb("Promise").prototype.finally,Ic.finally!==Tc&&Zk(Ic,"finally",Tc,{unsafe:!0}));var Tc});var Cb=b((HB,Lb)=>{"use strict";Nm();kb();$b();var tA=ni();Lb.exports=tA("Promise","finally")});var Bb=b((jB,Db)=>{"use strict";var iA=Cb();Db.exports=iA});var Ec=b((zB,Vb)=>{"use strict";var rA=Bb();Vb.exports=rA});var jb=b(()=>{"use strict";var dA=Pe(),pA=or(),hA=hr(),mA=ra(),fA=aa();dA({target:"Array",proto:!0},{at:function(e){var t=pA(this),i=hA(t),r=mA(e),s=r>=0?r:i+r;return s<0||s>=i?void 0:t[s]}});fA("at")});var Wb=b((_0,zb)=>{"use strict";jb();var bA=ni();zb.exports=bA("Array","at")});var Gb=b((O0,Qb)=>{"use strict";var gA=Wb();Qb.exports=gA});var gt=b((N0,Yb)=>{"use strict";var vA=Gb();Yb.exports=vA});var zc=b((VO,Ag)=>{"use strict";var CA=Ri();Ag.exports=Array.isArray||function(e){return CA(e)==="Array"}});var Mg=b((_O,Rg)=>{"use strict";var DA=TypeError,BA=9007199254740991;Rg.exports=function(a){if(a>BA)throw DA("Maximum allowed index exceeded");return a}});var Cg=b((OO,Lg)=>{"use strict";var VA=zc(),_A=hr(),OA=Mg(),NA=cr(),$g=function(a,e,t,i,r,s,n,o){for(var u=r,c=0,d=n?NA(n,o):!1,l,p;c<i;)c in t&&(l=d?d(t[c],c,e):t[c],s>0&&VA(l)?(p=_A(l),u=$g(a,e,l,p,u,s-1)-1):(OA(u+1),a[u]=l),u++),c++;return u};Lg.exports=$g});var _g=b((NO,Vg)=>{"use strict";var Dg=zc(),FA=qu(),UA=Ye(),qA=Ue(),HA=qA("species"),Bg=Array;Vg.exports=function(a){var e;return Dg(a)&&(e=a.constructor,FA(e)&&(e===Bg||Dg(e.prototype))?e=void 0:UA(e)&&(e=e[HA],e===null&&(e=void 0))),e===void 0?Bg:e}});var Ng=b((FO,Og)=>{"use strict";var jA=_g();Og.exports=function(a,e){return new(jA(a))(e===0?0:e)}});var Fg=b(()=>{"use strict";var zA=Pe(),WA=Cg(),QA=Bt(),GA=or(),YA=hr(),KA=Ng();zA({target:"Array",proto:!0},{flatMap:function(e){var t=GA(this),i=YA(t),r;return QA(e),r=KA(t,0),r.length=WA(r,t,t,i,0,1,e,arguments.length>1?arguments[1]:void 0),r}})});var Ug=b(()=>{"use strict";var XA=aa();XA("flatMap")});var Hg=b((zO,qg)=>{"use strict";Fg();Ug();var JA=ni();qg.exports=JA("Array","flatMap")});var zg=b((WO,jg)=>{"use strict";var ZA=Hg();jg.exports=ZA});var Ca=b((QO,Wg)=>{"use strict";var eR=zg();Wg.exports=eR});var Ba=b((lN,Kg)=>{"use strict";var iR=la(),rR=String;Kg.exports=function(a){if(iR(a)==="Symbol")throw new TypeError("Cannot convert a Symbol value to a string");return rR(a)}});var Qc=b((dN,Xg)=>{"use strict";Xg.exports=`
7
- \v\f\r                 \u2028\u2029\uFEFF`});var ev=b((pN,Zg)=>{"use strict";var aR=Le(),sR=si(),nR=Ba(),Yc=Qc(),Jg=aR("".replace),oR=RegExp("^["+Yc+"]+"),uR=RegExp("(^|[^"+Yc+"])["+Yc+"]+$"),Gc=function(a){return function(e){var t=nR(sR(e));return a&1&&(t=Jg(t,oR,"")),a&2&&(t=Jg(t,uR,"$1")),t}};Zg.exports={start:Gc(1),end:Gc(2),trim:Gc(3)}});var av=b((hN,rv)=>{"use strict";var cR=Iu().PROPER,lR=$e(),tv=Qc(),iv="​…᠎";rv.exports=function(a){return lR(function(){return!!tv[a]()||iv[a]()!==iv||cR&&tv[a].name!==a})}});var Kc=b((mN,sv)=>{"use strict";var dR=ev().start,pR=av();sv.exports=pR("trimStart")?function(){return dR(this)}:"".trimStart});var ov=b(()=>{"use strict";var hR=Pe(),nv=Kc();hR({target:"String",proto:!0,name:"trimStart",forced:"".trimLeft!==nv},{trimLeft:nv})});var cv=b(()=>{"use strict";ov();var mR=Pe(),uv=Kc();mR({target:"String",proto:!0,name:"trimStart",forced:"".trimStart!==uv},{trimStart:uv})});var dv=b((SN,lv)=>{"use strict";cv();var fR=ni();lv.exports=fR("String","trimLeft")});var hv=b((yN,pv)=>{"use strict";var bR=dv();pv.exports=bR});var fv=b((TN,mv)=>{"use strict";var gR=hv();mv.exports=gR});var gv=b(()=>{"use strict"});var vv=b(()=>{"use strict"});var yv=b((eF,Sv)=>{"use strict";var vR=Ye(),SR=Ri(),yR=Ue(),TR=yR("match");Sv.exports=function(a){var e;return vR(a)&&((e=a[TR])!==void 0?!!e:SR(a)==="RegExp")}});var Ev=b((tF,Iv)=>{"use strict";var IR=Ee(),ER=$e(),Tv=IR.RegExp,wR=!ER(function(){var a=!0;try{Tv(".","d")}catch{a=!1}var e={},t="",i=a?"dgimsy":"gimsy",r=function(u,c){Object.defineProperty(e,u,{get:function(){return t+=c,!0}})},s={dotAll:"s",global:"g",ignoreCase:"i",multiline:"m",sticky:"y"};a&&(s.hasIndices="d");for(var n in s)r(n,s[n]);var o=Object.getOwnPropertyDescriptor(Tv.prototype,"flags").get.call(e);return o!==i||t!==i});Iv.exports={correct:wR}});var xv=b((iF,wv)=>{"use strict";var xR=Vt();wv.exports=function(){var a=xR(this),e="";return a.hasIndices&&(e+="d"),a.global&&(e+="g"),a.ignoreCase&&(e+="i"),a.multiline&&(e+="m"),a.dotAll&&(e+="s"),a.unicode&&(e+="u"),a.unicodeSets&&(e+="v"),a.sticky&&(e+="y"),e}});var Av=b((rF,kv)=>{"use strict";var PR=nt(),kR=kt(),AR=Xr(),Pv=Ev(),RR=xv(),MR=RegExp.prototype;kv.exports=Pv.correct?function(a){return a.flags}:function(a){return!Pv.correct&&AR(MR,a)&&!kR(a,"flags")?PR(RR,a):a.flags}});var Mv=b((aF,Rv)=>{"use strict";var el=Le(),$R=or(),LR=Math.floor,Jc=el("".charAt),CR=el("".replace),Zc=el("".slice),DR=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,BR=/\$([$&'`]|\d{1,2})/g;Rv.exports=function(a,e,t,i,r,s){var n=t+a.length,o=i.length,u=BR;return r!==void 0&&(r=$R(r),u=DR),CR(s,u,function(c,d){var l;switch(Jc(d,0)){case"$":return"$";case"&":return a;case"`":return Zc(e,0,t);case"'":return Zc(e,n);case"<":l=r[Zc(d,1,-1)];break;default:var p=+d;if(p===0)return c;if(p>o){var m=LR(p/10);return m===0?c:m<=o?i[m-1]===void 0?Jc(d,1):i[m-1]+Jc(d,1):c}l=i[p-1]}return l===void 0?"":l})}});var Cv=b(()=>{"use strict";var VR=Pe(),_R=nt(),il=Le(),$v=si(),OR=we(),NR=Ye(),FR=yv(),$r=Ba(),UR=Zr(),qR=Av(),HR=Mv(),jR=Ue(),zR=Pt(),WR=jR("replace"),QR=TypeError,tl=il("".indexOf),GR=il("".replace),Lv=il("".slice),YR=Math.max;VR({target:"String",proto:!0},{replaceAll:function(e,t){var i=$v(this),r,s,n,o,u,c,d,l,p,m,f=0,g="";if(NR(e)){if(r=FR(e),r&&(s=$r($v(qR(e))),!~tl(s,"g")))throw new QR("`.replaceAll` does not allow non-global regexes");if(n=UR(e,WR),n)return _R(n,e,i,t);if(zR&&r)return GR($r(i),e,t)}for(o=$r(i),u=$r(e),c=OR(t),c||(t=$r(t)),d=u.length,l=YR(1,d),p=tl(o,u);p!==-1;)m=c?$r(t(u,p,o)):HR(u,o,p,[],void 0,t),g+=Lv(o,f,p)+m,f=p+d,p=p+l>o.length?-1:tl(o,u,p+l);return f<o.length&&(g+=Lv(o,f)),g}})});var Bv=b((oF,Dv)=>{"use strict";gv();vv();Cv();var KR=ni();Dv.exports=KR("String","replaceAll")});var _v=b((uF,Vv)=>{"use strict";var XR=Bv();Vv.exports=XR});var Nv=b((cF,Ov)=>{"use strict";var JR=_v();Ov.exports=JR});var Uv=b((lF,Fv)=>{"use strict";var ZR=ra(),eM=Ba(),tM=si(),iM=RangeError;Fv.exports=function(e){var t=eM(tM(this)),i="",r=ZR(e);if(r<0||r===1/0)throw new iM("Wrong number of repetitions");for(;r>0;(r>>>=1)&&(t+=t))r&1&&(i+=t);return i}});var Wv=b((dF,zv)=>{"use strict";var jv=Le(),rM=nu(),qv=Ba(),aM=Uv(),sM=si(),nM=jv(aM),oM=jv("".slice),uM=Math.ceil,Hv=function(a){return function(e,t,i){var r=qv(sM(e)),s=rM(t),n=r.length,o=i===void 0?" ":qv(i),u,c;return s<=n||o===""?r:(u=s-n,c=nM(o,uM(u/o.length)),c.length>u&&(c=oM(c,0,u)),a?r+c:c+r)}};zv.exports={start:Hv(!1),end:Hv(!0)}});var Gv=b((pF,Qv)=>{"use strict";var cM=Li();Qv.exports=/Version\/10(?:\.\d+){1,2}(?: [\w./]+)?(?: Mobile\/\w+)? Safari\//.test(cM)});var Yv=b(()=>{"use strict";var lM=Pe(),dM=Wv().start,pM=Gv();lM({target:"String",proto:!0,forced:pM},{padStart:function(e){return dM(this,e,arguments.length>1?arguments[1]:void 0)}})});var Xv=b((fF,Kv)=>{"use strict";Yv();var hM=ni();Kv.exports=hM("String","padStart")});var Zv=b((bF,Jv)=>{"use strict";var mM=Xv();Jv.exports=mM});var tS=b((gF,eS)=>{"use strict";var fM=Zv();eS.exports=fM});var s$={};my(s$,{ChromecastState:()=>nr,HttpConnectionType:()=>Vs,Observable:()=>qt.Observable,PlaybackState:()=>Fe,Player:()=>xs,PredefinedQualityLimits:()=>Wr,SDK_VERSION:()=>a$,Subject:()=>qt.Subject,Subscription:()=>qt.Subscription,Surface:()=>_s,VERSION:()=>Ro,ValueSubject:()=>qt.ValueSubject,VideoCodec:()=>Bs,VideoFormat:()=>Dt,VideoQuality:()=>qt.VideoQuality,WebmCodecStrategy:()=>_a,areValidLiveRecordSources:()=>ih,clientChecker:()=>F,isMobile:()=>ui});module.exports=fy(s$);var Ro="2.0.155";var Fe=(r=>(r.STOPPED="stopped",r.READY="ready",r.PLAYING="playing",r.PAUSED="paused",r))(Fe||{}),Dt=(x=>(x.MPEG="MPEG",x.DASH="DASH",x.DASH_SEP="DASH_SEP",x.DASH_SEP_VK="DASH_SEP",x.DASH_WEBM="DASH_WEBM",x.DASH_WEBM_AV1="DASH_WEBM_AV1",x.DASH_STREAMS="DASH_STREAMS",x.DASH_WEBM_VK="DASH_WEBM",x.DASH_ONDEMAND="DASH_ONDEMAND",x.DASH_ONDEMAND_VK="DASH_ONDEMAND",x.DASH_LIVE="DASH_LIVE",x.DASH_LIVE_CMAF="DASH_LIVE_CMAF",x.DASH_LIVE_WEBM="DASH_LIVE_WEBM",x.HLS="HLS",x.HLS_ONDEMAND="HLS_ONDEMAND",x.HLS_JS="HLS",x.HLS_FMP4="HLS_FMP4",x.HLS_LIVE="HLS_LIVE",x.HLS_LIVE_CMAF="HLS_LIVE_CMAF",x.WEB_RTC_LIVE="WEB_RTC_LIVE",x))(Dt||{}),Bs=(r=>(r.AV1="av1",r.VP9="vp9",r.AVC1="avc1",r.HEV1="hev1",r))(Bs||{});var nr=(r=>(r.NOT_AVAILABLE="NOT_AVAILABLE",r.AVAILABLE="AVAILABLE",r.CONNECTING="CONNECTING",r.CONNECTED="CONNECTED",r))(nr||{}),Vs=(i=>(i.HTTP1="http1",i.HTTP2="http2",i.QUIC="quic",i))(Vs||{});var _s=(n=>(n.NONE="none",n.INLINE="inline",n.FULLSCREEN="fullscreen",n.SECOND_SCREEN="second_screen",n.PIP="pip",n.INVISIBLE="invisible",n))(_s||{}),Wr=(i=>(i.TRAFFIC_SAVING="traffic_saving",i.HIGH_QUALITY="high_quality",i.UNKNOWN="unknown",i))(Wr||{});var Al=j(Di(),1),ay=j(Ke(),1);var Z=require("@vkontakte/videoplayer-shared/es2024");var Wp=a=>new Promise((e,t)=>{let i=document.createElement("script");i.setAttribute("src",a),i.onload=()=>e(),i.onerror=r=>t(r),document.body.appendChild(i)});var zs=class{constructor(e){this.connection$=new Z.ValueSubject(void 0);this.castState$=new Z.ValueSubject("NOT_AVAILABLE");this.errorEvent$=new Z.Subject;this.realCastState$=new Z.ValueSubject("NOT_AVAILABLE");this.subscription=new Z.Subscription;this.isDestroyed=!1;this.params=e,this.log=this.params.dependencies.logger.createComponentLog("ChromecastInitializer");let t="chrome"in window;if(this.log({message:`[constructor] receiverApplicationId: ${this.params.receiverApplicationId}, isDisabled: ${this.params.isDisabled}, isSupported: ${t}`}),e.isDisabled||!t)return;let i=(0,Z.isNonNullable)(window.chrome?.cast),r=!!window.__onGCastApiAvailable;i?this.initializeCastApi():(window.__onGCastApiAvailable=s=>{delete window.__onGCastApiAvailable,s&&!this.isDestroyed&&this.initializeCastApi()},r||Wp("https://www.gstatic.com/cv/js/sender/v1/cast_sender.js?loadCastFramework=1").catch(()=>this.errorEvent$.next({id:"ChromecastLoading",category:Z.ErrorCategory.NETWORK,message:"Script loading failed!"})))}connect(){cast.framework.CastContext.getInstance()?.requestSession()}disconnect(){cast.framework.CastContext.getInstance()?.getCurrentSession()?.endSession(!0)}stopMedia(){return new Promise((e,t)=>{cast.framework.CastContext.getInstance()?.getCurrentSession()?.getMediaSession()?.stop(new chrome.cast.media.StopRequest,e,t)})}toggleConnection(){(0,Z.isNonNullable)(this.connection$.getValue())?this.disconnect():this.connect()}setVolume(e){let t=this.connection$.getValue();(0,Z.isNullable)(t)||(t.remotePlayer.volumeLevel=e,t.remotePlayerController.setVolumeLevel())}setMuted(e){let t=this.connection$.getValue();(0,Z.isNullable)(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((0,Z.fromEvent)(i,cast.framework.CastContextEventType.SESSION_STATE_CHANGED).subscribe(r=>{switch(r.sessionState){case cast.framework.SessionState.SESSION_STARTED:case cast.framework.SessionState.SESSION_STARTING:case cast.framework.SessionState.SESSION_RESUMED:this.contentId=i.getCurrentSession()?.getMediaSession()?.media?.contentId;break;case cast.framework.SessionState.NO_SESSION:case cast.framework.SessionState.SESSION_ENDING:case cast.framework.SessionState.SESSION_ENDED:case cast.framework.SessionState.SESSION_START_FAILED:this.contentId=void 0;break;default:return(0,Z.assertNever)(r.sessionState)}})).add((0,Z.merge)((0,Z.fromEvent)(i,cast.framework.CastContextEventType.CAST_STATE_CHANGED).pipe((0,Z.tap)(r=>{this.log({message:`[cast.framework.RemotePlayerEventType.CAST_STATE_CHANGED]: ${JSON.stringify(r)}`})}),(0,Z.map)(r=>r.castState)),(0,Z.observableFrom)([i.getCastState()])).pipe((0,Z.filterChanged)(),(0,Z.map)(lE),(0,Z.tap)(r=>{this.log({message:`realCastState$: ${r}`})})).subscribe(this.realCastState$)).add(this.realCastState$.subscribe(r=>{let s=r==="CONNECTED",n=(0,Z.isNonNullable)(this.connection$.getValue());if(s&&!n){let o=i.getCurrentSession();(0,Z.assertNonNullable)(o);let u=o.getCastDevice(),c=o.getMediaSession()?.media?.contentId;((0,Z.isNullable)(c)||c===this.contentId)&&(this.log({message:"connection created"}),this.connection$.next({remotePlayer:e,remotePlayerController:t,session:o,castDevice:u}))}else!s&&n&&(this.log({message:"connection destroyed"}),this.connection$.next(void 0));this.castState$.next(r==="CONNECTED"?(0,Z.isNonNullable)(this.connection$.getValue())?"CONNECTED":"AVAILABLE":r)}))}initializeCastApi(){let e,t,i;try{e=cast.framework.CastContext.getInstance(),t=chrome.cast.media.DEFAULT_MEDIA_RECEIVER_APP_ID,i=chrome.cast.AutoJoinPolicy.ORIGIN_SCOPED}catch{return}try{e.setOptions({receiverApplicationId:this.params.receiverApplicationId??t,autoJoinPolicy:i}),this.initListeners()}catch(r){this.errorEvent$.next({id:"ChromecastInitializer",category:Z.ErrorCategory.EXTERNAL_API,message:"[initializeCastApi] failed",thrown:r})}}},lE=a=>{switch(a){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(0,Z.assertNever)(a)}};var te=require("@vkontakte/videoplayer-shared/es2024");var Ce=require("@vkontakte/videoplayer-shared/es2024");var pu=require("@vkontakte/videoplayer-shared/es2024");var xe=(a,e=0,t=0)=>{switch(t){case 0:return a.replace("_offset_p",e===0?"":"_"+e.toFixed(0));case 1:{if(e===0)return a;let i=new URL(a);return i.searchParams.append("playback_shift",e.toFixed(0)),i.toString()}case 2:{let i=new URL(a);return!i.searchParams.get("offset_p")&&e===0?a:(i.searchParams.set("offset_p",e.toFixed(0)),i.toString())}default:(0,pu.assertNever)(t)}return a},oi=(a,e)=>{switch(e){case 0:return NaN;case 1:{let t=new URL(a);return Number(t.searchParams.get("playback_shift"))}case 2:{let t=new URL(a);return Number(t.searchParams.get("offset_p")??0)}default:(0,pu.assertNever)(e)}};var Qs=a=>{let{source:e,format:t,meta:i,output:r}=a,s,n,o;switch(t){case"MPEG":{let l=e[t];(0,Ce.assertNonNullable)(l);let p=(0,Ce.getHighestQuality)(Object.keys(l));(0,Ce.assertNonNullable)(p);let m=l[p];(0,Ce.assertNonNullable)(m),s=m,n="video/mp4",o=Ws();break}case"HLS":case"HLS_FMP4":case"HLS_ONDEMAND":{let l=e[t];(0,Ce.assertNonNullable)(l),s=l.url,n="application/x-mpegurl",o=Ws();break}case"DASH_SEP":case"DASH_ONDEMAND":case"DASH_WEBM":case"DASH_WEBM_AV1":case"DASH_STREAMS":{let l=e[t];(0,Ce.assertNonNullable)(l),s=l.url,n="application/dash+xml",o=Ws();break}case"DASH_LIVE_CMAF":{let l=e[t];(0,Ce.assertNonNullable)(l),s=l.url,n="application/dash+xml",o=Qp();break}case"HLS_LIVE":case"HLS_LIVE_CMAF":{let l=e[t];(0,Ce.assertNonNullable)(l),s=xe(l.url),n="application/x-mpegurl",o=Qp();break}case"DASH_LIVE":case"WEB_RTC_LIVE":{let l="Unsupported format for Chromecast",p=new Error(l);throw r.error$.next({id:"ChromecastProvider.createMediaInfo()",category:Ce.ErrorCategory.VIDEO_PIPELINE,message:l,thrown:p}),p}case"DASH":case"DASH_LIVE_WEBM":throw new Error(`${t} is no longer supported`);default:return(0,Ce.assertNever)(t)}let u=dE(i.videoId??s,n);u.contentUrl=s,u.streamType=o,u.metadata=pE();let{title:c,subtitle:d}=i;return(0,Ce.isNonNullable)(c)&&(u.metadata.title=c),(0,Ce.isNonNullable)(d)&&(u.metadata.subtitle=d),u};function Ws(){return chrome.cast?.media?.StreamType?.BUFFERED??"BUFFERED"}function Qp(){return chrome.cast?.media?.StreamType?.LIVE??"LIVE"}function dE(a,e){return chrome.cast?.media?.MediaInfo?new chrome.cast.media.MediaInfo(a,e):{contentId:a,contentType:e,metadata:{title:"",subtitle:""},streamType:Ws()}}function pE(){return chrome.cast?.media?.GenericMediaMetadata?new chrome.cast.media.GenericMediaMetadata:{images:[],metadataType:0,releaseDate:"",subtitle:"",title:"",releaseYear:1970,type:0}}var C=(a,e,t=!1)=>{let i=a.getTransition();(t||!i||i.to===e)&&a.setState(e)};var Gs=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)}};var mu=require("@vkontakte/videoplayer-shared/es2024");var rn=require("@vkontakte/videoplayer-shared/es2024");var Gp=j(Ke(),1),Yp=require("@vkontakte/videoplayer-shared/es2024");var Ys=class{constructor(){this._isMiuiBrowser=!1}get current(){return this._current}get isChrome(){return this.current==="Chrome"}get isChromiumBased(){return(0,Gp.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,s=/chromium/i.test(e)?"Chromium":void 0,n=/firefox|fxios/i.test(e)?"Firefox":void 0,o=/webkit|safari|khtml/i.test(e)?"Safari":void 0,u=/opr\//i.test(e)?"Opera":void 0,c=/edg/i.test(e)?"Edge":void 0;this._isMiuiBrowser=/(XiaoMi)|(MiuiBrowser)/i.test(e),this._current=t||i||n||u||c||r||s||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}=(0,Yp.getWindow)().navigator,i=t.match(e);if(!i)return;let r=i[1],s=parseInt(r,10);if(!isNaN(s))return this._current_version=s,s}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 Kp=j(Ke(),1),ci=require("@vkontakte/videoplayer-shared/es2024");var ui=()=>/Mobile|mini|Fennec|Android|iP(ad|od|hone)/.test(navigator.appVersion??navigator.userAgent)||navigator?.userAgentData?.mobile;var Ks=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,Kp.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=(0,ci.getWindow)();if(!(0,ci.isBrowserWindow)(e))return;let{userAgent:t}=e.navigator;try{this._isMobile=ui()}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=(0,ci.getWindow)();if(!(0,ci.isBrowserWindow)(e))return;let{userAgentData:t}=e.navigator;if(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,s=/ipod/i.test(e)?"iPod":void 0,n=/mac/i.test(e)?"Mac":void 0,o=/webOS|BlackBerry|IEMobile|Opera Mini/i.test(e)?"RestMobile":void 0;this._current=t||i||r||s||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 s=e.match(i);if(s){let n=r.length>0,o=r.length>1,u="Unknown",c="Unknown";if(n){let d=r[0];typeof d=="number"?d<s.length&&s[d]!==void 0&&(u=s[d]):u=d}if(o){let d=r[1];typeof d=="number"?d<s.length&&s[d]!==void 0&&(c=s[d]):d!==void 0&&(c=d)}else s[2]!==void 0?c=s[2]:s[1]!==void 0&&n&&typeof r[0]=="string"&&(c=s[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 s=e.match(i);if(s){let n=r[0],o=r[1],u=typeof n=="number"?s[n]!==void 0?this.normalizeVendorName(s[n]):"Unknown":this.normalizeVendorName(n),c="Unknown";typeof o=="number"?c=s[o]!==void 0?s[o]:"Unknown":o!==void 0?c=o:s[1]!==void 0?c=s[1]:s[0]!==void 0&&(c=s[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=(0,ci.getWindow)();if(!(0,ci.isBrowserWindow)(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?.[1]&&(this._iosVersion=parseFloat(t[1].replace(/_/g,".")))}catch(e){console.error("DeviceChecker: iOS version detection error - ",e)}}};var sa=require("@vkontakte/videoplayer-shared/es2024"),Xs=class{get isTouch(){return typeof this._maxTouchPoints=="number"?this._maxTouchPoints>1:"ontouchstart"in(0,sa.getWindow)()}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=(0,sa.getWindow)();if(!(0,sa.isBrowserWindow)(e))return;let{navigator:t,screen:i}=e,{maxTouchPoints:r}=t;try{this._maxTouchPoints=r??0,this._isHdr=!!e.matchMedia("(dynamic-range: high)")?.matches,this._colorDepth=i.colorDepth}catch(s){console.error(s)}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(s){console.error(s)}}};var Bi=require("@vkontakte/videoplayer-shared/es2024");var ot=()=>window.ManagedMediaSource||window.MediaSource,mr=()=>!!(window.ManagedMediaSource&&window.ManagedSourceBuffer?.prototype?.appendBuffer),Xp=()=>!!(window.MediaSource&&window.SourceBuffer?.prototype?.appendBuffer),Js=()=>window.ManagedMediaSource?new ManagedMediaSource:new MediaSource;var hE=(0,Bi.getWindow)().document?.createElement("video"),mE='video/mp4; codecs="avc1.42000a,mp4a.40.2"',fE='video/mp4; codecs="hev1.1.6.L93.B0"',Jp='video/webm; codecs="vp09.00.10.08"',Zp='video/webm; codecs="av01.0.00M.08"',bE='audio/mp4; codecs="mp4a.40.2"',gE='audio/webm; codecs="opus"',eh,vE=async()=>{let a=(0,Bi.getWindow)();if(!(0,Bi.isBrowserWindow)(a))return;let e={type:"media-source",video:{contentType:"video/webm",width:1280,height:720,bitrate:1e6,framerate:30}},[t,i]=await Promise.all([a.navigator.mediaCapabilities.decodingInfo({...e,video:{...e.video,contentType:Zp}}),a.navigator.mediaCapabilities.decodingInfo({...e,video:{...e.video,contentType:Jp}})]);eh={DASH_WEBM_AV1:t,DASH_WEBM:i}};vE().catch(a=>{console.log(hE),console.error(a)});var Zs=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 eh}get supportedCodecs(){return Object.keys(this._codecs).filter(e=>this._codecs[e])}get nativeHlsSupported(){return this._nativeHlsSupported}detect(){let e=(0,Bi.getWindow)();if(!(0,Bi.isBrowserWindow)(e))return;let t=e.document;this._video=t.createElement("video");try{this._protocols={mms:mr(),mse:Xp(),hls:!!(this._video.canPlayType?.("application/x-mpegurl")||this._video.canPlayType?.("vnd.apple.mpegURL")),webrtc:!!e.RTCPeerConnection,ws:!!e.WebSocket},this._containers={mp4:!!this._video.canPlayType?.("video/mp4"),webm:!!this._video.canPlayType?.("video/webm"),cmaf:!0};let i=!!ot()?.isTypeSupported?.(mE),r=!!ot()?.isTypeSupported?.(fE),s=!!ot()?.isTypeSupported?.(bE);this._codecs={h264:i,h265:r,vp9:!!ot()?.isTypeSupported?.(Jp),av1:!!ot()?.isTypeSupported?.(Zp),aac:s,opus:!!ot()?.isTypeSupported?.(gE),mpeg:(i||r)&&s},this._nativeHlsSupported=this._protocols.hls&&this._containers.mp4}catch(i){console.error(i)}try{this.destroyVideoElement()}catch(i){console.error("Error destroying video element:",i)}}destroyVideoElement(){if(!this._video)return;if(this._video.pause(),this._video.currentTime=0,this._video.removeAttribute("src"),this._video.src="",this._video.load(),this._video.remove){this._video.remove(),this._video=null;return}this._video.parentNode&&this._video.parentNode.removeChild(this._video);let e=this._video.cloneNode(!1);this._video.parentNode?.replaceChild(e,this._video),this._video=null}};var tn=require("@vkontakte/videoplayer-shared/es2024");var th="audio/mpeg",en=class{supportMp3(){return this._codecs.mp3&&this._containers.mpeg}detect(){let e=(0,tn.getWindow)();if(!(0,tn.isBrowserWindow)(e))return;let t=e.document;this._audio=t.createElement("audio");try{this._containers={mpeg:!!this._audio.canPlayType?.(th)},this._codecs={mp3:!!ot()?.isTypeSupported?.(th)}}catch(i){console.error(i)}try{this.destroyAudioElement()}catch(i){console.error("Error destroying audio element:",i)}}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}};var hu=class{constructor(){this.isInited$=new rn.ValueSubject(!1);this._displayChecker=new Xs,this._deviceChecker=new Ks(this._displayChecker),this._browserChecker=new Ys,this._videoChecker=new Zs(this._deviceChecker,this._browserChecker),this._audioChecker=new en,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(){(0,rn.isBrowserWindow)()&&(this._displayChecker.detect(),this._deviceChecker.detect(),this._browserChecker.detect(),this._videoChecker.detect(),this._audioChecker.detect(),this.isInited$.next(!0))}},F=new hu;var fu=a=>{let{containers:e,protocols:t,codecs:i,nativeHlsSupported:r}=F.video,s=(i.h264||i.h265)&&i.aac,n=t.mse||t.mms;return a.filter(o=>{switch(o){case"DASH_SEP":return n&&e.mp4&&s;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&&s||e.webm&&(i.vp9||i.av1)&&(i.opus||i.aac));case"DASH_LIVE":return n&&e.mp4&&s;case"DASH_LIVE_CMAF":return n&&e.mp4&&s&&e.cmaf;case"DASH_ONDEMAND":return n&&e.mp4&&s;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(0,mu.assertNever)(o)}})},na=a=>{switch(a){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(0,mu.assertNever)(a)}},ih=a=>{let t=Object.keys(a).filter(i=>!na(i));return fu(t).length>0};var oa=class{constructor(e){this.subscription=new te.Subscription;this.sessionId$=new te.ValueSubject(null);this.mediaSessionId$=new te.ValueSubject(null);this.contentId$=new te.ValueSubject(null);this.isMobile=ui();this.mobileVolumeState={muted:!1,volume:0};this.media=null;this.lastRequestedVolume=null;this.syncMediaState=e=>{if((0,te.isNullable)(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 i=e.media?.duration;(0,te.isNonNullable)(i)&&this.params.output.duration$.next(Math.max(0,i));let r=e.currentTime;if((0,te.isNonNullable)(r)){this.params.desiredState.seekState.getState().state==="applying"&&this.params.output.seekedEvent$.next(),this.params.output.position$.next(r);let n=this.params.output.isLive$.getValue();e.playerState==="PLAYING"&&!n?this.progressTicker.start(r):this.progressTicker.pause()}};this.params=e,this.progressTicker=new Gs(e),this.log=this.params.dependencies.logger.createComponentLog("ChromecastPresentationApiProvider"),this.log({message:`constructor, format: ${e.format}`}),this.params.output.isLive$.next(na(e.format)),this.subscribe()}subscribe(){let e=r=>{this.params.output.error$.next({category:te.ErrorCategory.WTF,id:"ChromecastPresentationApiProvider",message:r?.message??"Unknown error",thrown:r})};this.subscription.add(this.params.chromecastConnector.message$.pipe((0,te.filter)(r=>!!r)).subscribe(r=>{this.handleMessage(r)},e)),this.subscription.add(this.sessionId$.pipe((0,te.filter)(te.isNonNullable),(0,te.filterChanged)(),(0,te.debounce)(0)).subscribe(()=>{this.loadMedia()},e));let t=this.contentId$.pipe((0,te.filterChanged)(),(0,te.map)(Boolean));this.subscription.add((0,te.combine)({seekState:this.params.desiredState.seekState.stateChangeEnded$,mediaLoaded:t}).pipe((0,te.filter)(({mediaLoaded:r})=>r)).subscribe(()=>{let r=this.params.desiredState.seekState.getState();r.state==="requested"&&this.seek(r.position/1e3)},e));let i=(0,te.combine)({playbackState:this.params.desiredState.playbackState.stateChangeStarted$,mediaLoaded:t});this.subscription.add(i.pipe((0,te.filter)(({mediaLoaded:r})=>r),(0,te.debounce)(0)).subscribe(()=>{this.syncPlayback()},e)),this.subscription.add(i.pipe((0,te.filter)(({mediaLoaded:r,playbackState:{from:s,to:n}})=>!r&&s==="stopped"&&n==="playing")).subscribe(()=>{this.loadMedia()},e)),this.subscription.add((0,te.combine)({volumeState:this.params.desiredState.volume.stateChangeStarted$.pipe((0,te.debounce)(30)),mediaLoaded:t}).pipe((0,te.filter)(({mediaLoaded:r})=>r)).subscribe(({volumeState:r})=>{let{muted:s,volume:n}=r.to;this.setVolume(n,s)},e))}handleMessage(e){switch(e.type){case"new_session":case"update_session":{this.sessionId$.next(e.message.sessionId);let t=e.message?.media?.[0];this.syncMediaState(t);let i=e.message?.receiver.volume;this.syncVolumeState(i)}break;case"v2_message":{switch(e.message?.type){case"MEDIA_STATUS":{let t=e.message?.status?.[0];this.syncMediaState(t);break}}break}}}loadMedia(){let e=Qs(this.params),t=this.media?.currentTime,i=this.params.desiredState.seekState.getState(),r=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();(0,te.assertNonNullable)(e,"play on null mediaSessionId"),this.params.chromecastConnector.sendV2Message({type:"PLAY",mediaSessionId:e,customData:null})}pause(){let e=this.mediaSessionId$.getValue();(0,te.assertNonNullable)(e,"pause on null mediaSessionId"),this.params.chromecastConnector.sendV2Message({type:"PAUSE",mediaSessionId:e,customData:null})}seek(e){let t=this.mediaSessionId$.getValue();(0,te.assertNonNullable)(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":C(this.params.desiredState.playbackState,"paused");break;case"PLAYING":C(this.params.desiredState.playbackState,"playing");break;case"IDLE":{t==="FINISHED"?(this.params.output.endedEvent$.next(),C(this.params.desiredState.playbackState,"stopped"),this.contentId$.next(null)):C(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((0,te.isNullable)(e))return;let{level:t,muted:i}=e,r={muted:i??!1,volume: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 s=`[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,s+=`, volume passed to state machine: ${r.volume}`),this.log({message:s}),this.params.output.volume$.next(r)}destroy(){this.progressTicker.destroy(),this.subscription.unsubscribe()}};var le=require("@vkontakte/videoplayer-shared/es2024");var rh=a=>({castDevice:{friendlyName:a},remotePlayer:{},remotePlayerController:{},session:{}}),ah=()=>String(Date.now())+String(Math.floor(Math.random()*1e5));var ua=class{constructor(e){this.capabilities=["WEB"];this.presentationRequest$=new le.ValueSubject(null);this.sessionId$=new le.ValueSubject(null);this.broadcastChannel=new BroadcastChannel("vk_player_chromecast_events");this.subscription=new le.Subscription;this.subscriptionEvents=new le.Subscription;this.isDestroyed=!1;this.sequenceNumber=0;this.presentationAvailable$=new le.ValueSubject(!1);this.presentationConnection$=new le.ValueSubject(null);this.message$=new le.ValueSubject(null);this.friendlyName$=new le.ValueSubject(null);this.errorEvent$=new le.Subject;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 s=()=>{this.log({message:`PresentationRequest presentation availability: ${r.value}`}),this.presentationAvailable$.next(r.value)};this.subscriptionEvents.add((0,le.fromEvent)(r,"change").subscribe(()=>{s()})),s()}).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(){this.log({message:"connect"});try{this.presentationRequest$.getValue()||(this.log({message:"reinitPresentation"}),this.reinitPresentation(!1));let e=this.presentationRequest$.getValue();(0,le.assertNonNullable)(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:le.ErrorCategory.WTF,id:"ChromecastPresentationApiConnector",message:e?.message??"connect error",thrown:e});break}}}subscribe(){this.subscription.add((0,le.fromEvent)(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((0,le.tap)(e=>{this.log({message:`presentationConnection$: ${!!e}`})}),(0,le.filter)(e=>!!e)).subscribe(e=>{let t=(0,le.fromEvent)(e,"message").subscribe(s=>{let n=JSON.parse(s.data);n.clientId===this.clientId&&(this.log({message:`[onmessage] ${s.data}`}),this.handleMessage(n),this.message$.next(n))}),i=(0,le.fromEvent)(e,"connect").subscribe(()=>{this.send("client_connect")}),r=(0,le.fromEvent)(e,"close").subscribe(s=>{switch(s.reason){case"error":this.errorEvent$.next({category:le.ErrorCategory.WTF,id:"ChromecastPresentationApiConnector",message:"Session error",thrown:s});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?.state==="connected"&&t?.send(e)}catch(t){this.errorEvent$.next({category:le.ErrorCategory.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)%Number.MAX_SAFE_INTEGER,e}resetSequenceNumber(){this.sequenceNumber=0}getClientId(){let e="__vk_player_chromecast_id";return window[e]=window[e]||ah()}resetSubscriptionEvents(){this.subscriptionEvents.unsubscribe(),this.subscriptionEvents=new le.Subscription}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))}};var qe=require("@vkontakte/videoplayer-shared/es2024");var zt=class a{constructor(e){this.subscription=new qe.Subscription;this.connection$=new qe.ValueSubject(void 0);this.castState$=new qe.ValueSubject("NOT_AVAILABLE");this.errorEvent$=new qe.Subject;let t=a.isSupported();this.log=e.dependencies.logger.createComponentLog("ChromecastPresentationApiInitializer"),this.log({message:`[constructor] receiverApplicationId: ${e.receiverApplicationId}, isDisabled: ${e.isDisabled}, isSupported: ${t}`}),!(!t||e.isDisabled||!e.receiverApplicationId)&&(this.chromecastConnector=new ua({appId:e.receiverApplicationId,logger:e.dependencies.logger}),this.subscribe())}static isSupported(){return"chrome"in window&&"presentation"in navigator&&"BroadcastChannel"in window}subscribe(){(0,qe.assertNonNullable)(this.chromecastConnector,"subscribe with null chromecastConnector"),this.subscription.add(this.chromecastConnector.errorEvent$.subscribe(this.errorEvent$));let e=(0,qe.combine)({connection:this.chromecastConnector.presentationConnection$,available:this.chromecastConnector.presentationAvailable$,friendlyName:this.chromecastConnector.friendlyName$.pipe((0,qe.filterChanged)())});this.subscription.add(e.pipe((0,qe.map)(({connection:t,friendlyName:i})=>!!(t&&i)),(0,qe.filterChanged)()).subscribe(t=>{let i=this.chromecastConnector?.friendlyName$.getValue()??"";this.connection$.next(t?rh(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(){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 El=j(Ke(),1),wl=j(li(),1),zS=j(_u(),1);var Ob=j(Ec(),1);var Ot=require("@vkontakte/videoplayer-shared/es2024"),ee=class{constructor(e){this.transitionStarted$=new Ot.Subject;this.transitionEnded$=new Ot.Subject;this.transitionUpdated$=new Ot.Subject;this.forceChanged$=new Ot.Subject;this.stateChangeStarted$=(0,Ot.merge)(this.transitionStarted$,this.transitionUpdated$);this.stateChangeEnded$=(0,Ot.merge)(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||(0,Ot.isNonNullable)(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}};var ne=require("@vkontakte/videoplayer-shared/es2024");var aA=5,sA=5,nA=500,_b=7e3,Ta=class{constructor(e){this.subscription=new ne.Subscription;this.loadMediaTimeoutSubscription=new ne.Subscription;this.videoState=new ee("stopped");this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.videoState.getTransition(),i=this.params.desiredState.playbackState.getState(),r=this.params.desiredState.playbackState.getTransition(),s=this.params.desiredState.seekState.getState();if(this.log({message:`[syncPlayback] videoState: ${e}; videoTransition: ${JSON.stringify(t)}; desiredPlaybackState: ${i}; desiredPlaybackStateTransition: ${this.params.desiredState.playbackState.getTransition()}; seekState: ${JSON.stringify(s)};`}),i==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.stop());return}if(!t){if(r?.to!=="paused"&&s.state==="requested"&&e!=="stopped"){this.seek(s.position/1e3);return}switch(i){case"ready":{switch(e){case"playing":case"paused":case"ready":break;case"stopped":this.videoState.startTransitionTo("ready"),this.prepare();break;default:(0,ne.assertNever)(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:(0,ne.assertNever)(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:(0,ne.assertNever)(e)}break}default:(0,ne.assertNever)(i)}}};this.params=e,this.log=this.params.dependencies.logger.createComponentLog("ChromecastProvider"),this.log({message:`constructor, format: ${e.format}`}),this.params.output.isLive$.next(na(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 ne.Subscription;this.subscription.add(e),this.subscription.add((0,ne.merge)(this.videoState.stateChangeStarted$.pipe((0,ne.map)(r=>`stateChangeStarted$ ${JSON.stringify(r)}`)),this.videoState.stateChangeEnded$.pipe((0,ne.map)(r=>`stateChangeEnded$ ${JSON.stringify(r)}`))).subscribe(r=>this.log({message:`[videoState] ${r}`})));let t=(r,s)=>this.subscription.add(r.subscribe(s));if(this.params.output.isLive$.getValue())this.params.output.position$.next(0),this.params.output.duration$.next(0);else{let r=new ne.Subject;e.add(r.pipe((0,ne.debounce)(nA)).subscribe(()=>{this.params.output.seekedEvent$.next()}));let s=NaN;e.add((0,ne.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.CURRENT_TIME_CHANGED).subscribe(n=>{this.logRemoteEvent(n);let o=n.value;this.params.output.position$.next(o),(this.params.desiredState.seekState.getState().state==="applying"||Math.abs(o-s)>aA)&&r.next(o),s=o})),e.add((0,ne.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.DURATION_CHANGED).subscribe(n=>{this.logRemoteEvent(n),this.params.output.duration$.next(n.value)}))}t((0,ne.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_MEDIA_LOADED_CHANGED),r=>{this.logRemoteEvent(r),r.value?this.handleRemoteReady():(this.handleRemoteStop(),e.unsubscribe())}),t((0,ne.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_PAUSED_CHANGED),r=>{this.logRemoteEvent(r),r.value?this.handleRemotePause():this.handleRemotePlay()}),t((0,ne.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.PLAYER_STATE_CHANGED),r=>{this.logRemoteEvent(r);let{remotePlayer:s}=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()&&s.duration-s.currentTime<sA&&this.params.output.endedEvent$.next(),this.handleRemoteStop(),C(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:(0,ne.assertNever)(n)}}),t((0,ne.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.VOLUME_LEVEL_CHANGED),r=>{this.logRemoteEvent(r),this.handleRemoteVolumeChange({volume:r.value})}),t((0,ne.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_MUTED_CHANGED),r=>{this.logRemoteEvent(r),this.handleRemoteVolumeChange({muted:r.value})});let i=(0,ne.merge)(this.params.desiredState.playbackState.stateChangeStarted$,this.params.desiredState.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,(0,ne.observableFrom)(["init"])).pipe((0,ne.debounce)(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"),C(this.params.desiredState.playbackState,"paused")):(this.videoState.setState("playing"),C(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=Qs(this.params),i=this.createLoadRequest(t);this.loadMedia(i)}handleRemotePause(){let e=this.videoState.getState();(this.videoState.getTransition()?.to==="paused"||e==="playing")&&(this.videoState.setState("paused"),C(this.params.desiredState.playbackState,"paused"))}handleRemotePlay(){let e=this.videoState.getState();(this.videoState.getTransition()?.to==="playing"||e==="paused")&&(this.videoState.setState("playing"),C(this.params.desiredState.playbackState,"playing"))}handleRemoteReady(){this.videoState.getTransition()?.to==="ready"&&this.videoState.setState("ready"),this.params.desiredState.playbackState.getTransition()?.to==="ready"&&C(this.params.desiredState.playbackState,"ready")}handleRemoteStop(){this.videoState.getState()!=="stopped"&&this.videoState.setState("stopped")}handleRemoteVolumeChange(e){let t=this.params.output.volume$.getValue(),i={volume:e.volume??t.volume,muted:e.muted??t.muted};(i.volume!==t.volume||i.muted!==i.muted)&&this.params.output.volume$.next(i)}seek(e){this.params.output.willSeekEvent$.next();let{remotePlayer:t,remotePlayerController:i}=this.params.connection;t.currentTime=e,i.seek()}stop(){let{remotePlayerController:e}=this.params.connection;e.stop()}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,s)=>{this.loadMediaTimeoutSubscription.add((0,ne.timeout)(_b).subscribe(()=>s(`timeout(${_b})`)))});(0,Ob.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 s=`[prepare] loadMedia failed, format: ${this.params.format}, reason: ${r}`;this.log({message:s}),this.params.output.error$.next({id:"ChromecastProvider.loadMedia",category:ne.ErrorCategory.VIDEO_PIPELINE,message:s,thrown:r})}),()=>{this.loadMediaTimeoutSubscription.unsubscribe()})}logRemoteEvent(e){this.log({message:`[remoteEvent] ${JSON.stringify(e)}`})}};var Oc=j(Ke(),1);var Ia=require("@vkontakte/videoplayer-shared/es2024");var Nb=require("@vkontakte/videoplayer-shared/es2024"),Fb=(a,e)=>{try{a.pause(),a.playbackRate=0,(0,Nb.clearVideoElement)(a,e),a.remove()}catch(t){console.error(t)}};var Rn=require("@vkontakte/videoplayer-shared/es2024"),wc=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)}},An=(0,Ia.getWindow)(),xc=An.WeakMap?new An.WeakMap:new wc,Pc=An.WeakMap?new An.WeakMap:new Map,oA=(a,e=20)=>{let t=0;return(0,Rn.fromEvent)(a,"ratechange").subscribe(i=>{t++,t>=e&&(a.currentTime=a.currentTime,t=0)})},Xe=(a,{audioVideoSyncRate:e,disableYandexPiP:t,clearVideoElementInnerHTML:i})=>{let r=a.querySelector("video"),s=!!r;r?(0,Ia.clearVideoElement)(r,i):(r=document.createElement("video"),a.appendChild(r)),xc.set(r,s);let n=new Rn.Subscription;return n.add(oA(r,e)),Pc.set(r,n),r.setAttribute("crossorigin","anonymous"),r.setAttribute("playsinline","playsinline"),t&&r.setAttribute("x-yandex-pip","false"),r.controls=!1,r.setAttribute("poster","data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII="),r},Je=(a,e=!1,t=!1)=>{Pc.get(a)?.unsubscribe(),Pc.delete(a);let r=xc.get(a);xc.delete(a),r||e?(0,Ia.clearVideoElement)(a,t):Fb(a,t)};var kc=j(Di(),1),H=require("@vkontakte/videoplayer-shared/es2024");var pi=require("@vkontakte/videoplayer-shared/es2024"),Mn=(a,e,t,{equal:i=(n,o)=>n===o,changed$:r,onError:s}={})=>{let n=a.getState(),o=e(),u=(0,pi.isNullable)(r),c=new pi.Subscription;return r&&c.add(r.subscribe(d=>{let l=a.getState();i(d,l)&&a.setState(d)},s)),i(o,n)||(t(n),u&&a.setState(n)),c.add(a.stateChangeStarted$.subscribe(d=>{t(d.to),u&&a.setState(d.to)},s)),c},Nt=(a,e,t)=>Mn(e,()=>a.loop,i=>{(0,pi.isNonNullable)(i)&&(a.loop=i)},{onError:t}),Ze=(a,e,t,i)=>Mn(e,()=>({muted:a.muted,volume:a.volume}),r=>{(0,pi.isNonNullable)(r)&&(a.muted=r.muted,a.volume=r.volume)},{equal:(r,s)=>r===s||r?.muted===s?.muted&&r?.volume===s?.volume,changed$:t,onError:i}),ft=(a,e,t,i)=>Mn(e,()=>a.playbackRate,r=>{(0,pi.isNonNullable)(r)&&(a.playbackRate=r)},{changed$:t,onError:i}),Ea=Mn;var uA=a=>["__",a.language,a.label].join("|"),cA=(a,e)=>{if(a.id===e)return!0;let[t,i,r]=e.split("|");return a.language===i&&a.label===r},Ac=class a{constructor(e){this.available$=new H.Subject;this.current$=new H.ValueSubject(void 0);this.error$=new H.Subject;this.subscription=new H.Subscription;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=s=>{this.error$.next({id:"TextTracksManager",category:H.ErrorCategory.WTF,message:"Generic HtmlVideoTextTrackManager error",thrown:s})};this.subscription.add(this.available$.subscribe(i.availableTextTracks$)),this.subscription.add(this.current$.subscribe(i.currentTextTrack$)),this.subscription.add(this.error$.subscribe(i.error$)),this.subscription.add(Ea(t.internalTextTracks,()=>(0,kc.default)(this.internalTracks),s=>{(0,H.isNonNullable)(s)&&this.setInternal(s)},{equal:(s,n)=>(0,H.isNonNullable)(s)&&(0,H.isNonNullable)(n)&&s.length===n.length&&s.every(({id:o},u)=>o===n[u].id),changed$:this.available$.pipe((0,H.map)(s=>s.filter(({type:n})=>n==="internal"))),onError:r})),this.subscription.add(Ea(t.externalTextTracks,()=>(0,kc.default)(this.externalTracks),s=>{(0,H.isNonNullable)(s)&&this.setExternal(s)},{equal:(s,n)=>(0,H.isNonNullable)(s)&&(0,H.isNonNullable)(n)&&s.length===n.length&&s.every(({id:o},u)=>o===n[u].id),changed$:this.available$.pipe((0,H.map)(s=>s.filter(({type:n})=>n==="external"))),onError:r})),this.subscription.add(Ea(t.currentTextTrack,()=>{if(this.video)return;let s=this.htmlTextTracksAsArray().find(({mode:n})=>n==="showing");return s&&this.htmlTextTrackToITextTrack(s).id},s=>this.select(s),{changed$:this.current$,onError:r})),this.subscription.add(Ea(t.textTrackCuesSettings,()=>({}),()=>{if(this.video)for(let s of this.htmlTextTracksAsArray())this.applyCueSettings(s.cues),this.applyCueSettings(s.activeCues)}))}subscribe(){(0,H.assertNonNullable)(this.video);let{textTracks:e}=this.video;this.subscription.add((0,H.fromEvent)(e,"addtrack").subscribe(()=>{let i=this.current$.getValue();i&&this.select(i)})),this.subscription.add((0,H.merge)((0,H.fromEvent)(e,"addtrack"),(0,H.fromEvent)(e,"removetrack"),(0,H.observableFrom)(["init"])).pipe((0,H.map)(()=>this.htmlTextTracksAsArray().map(i=>this.htmlTextTrackToITextTrack(i))),(0,H.filterChanged)((i,r)=>i.length===r.length&&i.every(({id:s},n)=>s===r[n].id))).subscribe(this.available$)),this.subscription.add((0,H.merge)((0,H.fromEvent)(e,"change"),(0,H.observableFrom)(["init"])).pipe((0,H.map)(()=>this.htmlTextTracksAsArray().find(({mode:i})=>i==="showing")),(0,H.map)(i=>i&&this.htmlTextTrackToITextTrack(i).id),(0,H.filterChanged)()).subscribe(this.current$));let t=i=>this.applyCueSettings(i.target?.activeCues??null);this.subscription.add((0,H.fromEvent)(e,"addtrack").subscribe(i=>{i.track?.addEventListener("cuechange",t);let r=s=>{let n=s.target?.cues??null;n&&n.length&&(this.applyCueSettings(s.target?.cues??null),s.target?.removeEventListener("cuechange",r))};i.track?.addEventListener("cuechange",r)})),this.subscription.add((0,H.fromEvent)(e,"removetrack").subscribe(i=>{i.track?.removeEventListener("cuechange",t)}))}applyCueSettings(e){if(!e||!e.length)return;let t=this.cueSettings.getState();for(let i of Array.from(e)){let r=i;(0,H.isNonNullable)(t.align)&&(r.align=t.align),(0,H.isNonNullable)(t.position)&&(r.position=t.position),(0,H.isNonNullable)(t.size)&&(r.size=t.size),(0,H.isNonNullable)(t.line)&&(r.line=t.line)}}htmlTextTracksAsArray(e=!1){(0,H.assertNonNullable)(this.video);let t=[...this.video.textTracks];return e?t:t.filter(a.isHealthyTrack)}htmlTextTrackToITextTrack(e){let{language:t,label:i}=e,r=e.id?e.id:uA(e),s=this.externalTracks.has(r),n=(s?this.externalTracks.get(r)?.isAuto:this.internalTracks.get(r)?.isAuto)??r.includes("auto");return s?{id:r,type:"external",isAuto:n,language:t,label:i,url:this.externalTracks.get(r)?.url}:{id:r,type:"internal",isAuto:n,language:t,label:i,url:this.internalTracks.get(r)?.url}}static isHealthyTrack(e){return!(e.kind==="metadata"||e.groupId||e.id===""&&e.label===""&&e.language==="")}setExternal(e){this.internalTracks.size>0&&Array.from(this.internalTracks).forEach(([,t])=>this.detach(t)),e.filter(({id:t})=>!this.externalTracks.has(t)).forEach(t=>this.attach(t)),Array.from(this.externalTracks).filter(([t])=>!e.find(i=>i.id===t)).forEach(([,t])=>this.detach(t))}setInternal(e){let t=[...this.externalTracks];e.filter(({id:i,language:r,isAuto:s})=>!this.internalTracks.has(i)&&!t.some(([,n])=>n.language===r&&n.isAuto===s)).forEach(i=>this.attach(i)),Array.from(this.internalTracks).filter(([i])=>!e.find(r=>r.id===i)).forEach(([,i])=>this.detach(i))}select(e){(0,H.assertNonNullable)(this.video);for(let t of this.htmlTextTracksAsArray(!0))t.mode="showing";for(let t of this.htmlTextTracksAsArray(!0))((0,H.isNullable)(e)||!cA(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){(0,H.assertNonNullable)(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){(0,H.assertNonNullable)(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)}},bt=Ac;var Ui=class{constructor(){this.pausedTime=0;this.streamOffset=0;this.pauseTimestamp=0}getTotalPausedTime(){return this.pausedTime+this.getCurrentPausedTime()}getCurrentPausedTime(){return this.pauseTimestamp>0?Date.now()-this.pauseTimestamp:0}getStreamOffset(){return this.streamOffset}getTotalOffset(){return this.getTotalPausedTime()+this.streamOffset}pause(){this.pauseTimestamp===0&&(this.pauseTimestamp=Date.now())}resume(){this.pauseTimestamp>0&&(this.pausedTime+=this.getCurrentPausedTime(),this.pauseTimestamp=0)}resetTo(e,t=!1){this.streamOffset=e,this.pauseTimestamp=0,this.pausedTime=0,t&&this.pause()}};var Ub=a=>{let e=a;for(;!(e instanceof Document)&&!(e instanceof ShadowRoot)&&e!==null;)e=e?.parentNode;return e??void 0},Rc=a=>{let e=Ub(a);return!!(e&&e.fullscreenElement&&e.fullscreenElement===a)},qb=a=>{let e=Ub(a);return!!(e&&e.pictureInPictureElement&&e.pictureInPictureElement===a)};var R=require("@vkontakte/videoplayer-shared/es2024");var lA=3,Hb=(a,e,t=lA)=>{let i=0,r=0;for(let s=0;s<a.length;s++){let n=a.start(s),o=a.end(s);if(n<=e&&e<=o){if(i=n,r=o,!t)return{from:i,to:r};for(let u=s-1;u>=0;u--)a.end(u)+t>=i&&(i=a.start(u));for(let u=s+1;u<a.length;u++)a.start(u)-t<=r&&(r=a.end(u))}}return{from:i,to:r}};var et=a=>{let e=L=>(0,R.fromEvent)(a,L).pipe((0,R.mapTo)(void 0),(0,R.shareReplay)(1)),t=new R.Subscription,i=()=>t.unsubscribe(),r=(0,R.merge)((0,R.fromEvent)(a,"progress"),(0,R.fromEvent)(a,"timeupdate")).pipe((0,R.map)(()=>Hb(a.buffered,a.currentTime)),(0,R.shareReplay)(1)),s=F.browser.isSafari?(0,R.combine)({play:e("play").pipe((0,R.once)()),playing:e("playing")}).pipe((0,R.mapTo)(void 0),(0,R.shareReplay)(1)):e("playing"),n=(0,R.fromEvent)(a,"volumechange").pipe((0,R.map)(()=>({muted:a.muted,volume:a.volume})),(0,R.shareReplay)(1)),o=(0,R.fromEvent)(a,"ratechange").pipe((0,R.map)(()=>a.playbackRate),(0,R.shareReplay)(1)),u=(0,R.fromEvent)(a,"error").pipe((0,R.filter)(()=>!!(a.error||a.played.length)),(0,R.map)(()=>{let L=a.error;return{id:L?`MediaError#${L.code}`:"HtmlVideoError",category:R.ErrorCategory.VIDEO_PIPELINE,message:L?L.message:"Error event from HTML video element",thrown:a.error??void 0}}),(0,R.shareReplay)(1)),c=(0,R.fromEvent)(a,"timeupdate").pipe((0,R.map)(()=>a.currentTime),(0,R.shareReplay)(1)),d=["waiting","seeking","seeked","timeupdate"],l=new R.Subject,p=.3,m;t.add((0,R.merge)(...d.map(L=>(0,R.fromEvent)(a,L))).subscribe(L=>{let ae=a.currentTime;a.loop&&(0,R.isNonNullable)(m)&&(0,R.isNonNullable)(ae)&&m>=a.duration-p&&ae<=p&&l.next(m),m=ae}));let f=e("pause").pipe((0,R.filter)(()=>!a.error&&m!==a.duration),(0,R.shareReplay)(1)),g=(0,R.fromEvent)(a,"enterpictureinpicture").pipe((0,R.shareReplay)(1)),v=(0,R.fromEvent)(a,"leavepictureinpicture").pipe((0,R.shareReplay)(1)),S=new R.ValueSubject(qb(a));t.add(g.subscribe(()=>S.next(!0))),t.add(v.subscribe(()=>S.next(!1)));let E=new R.ValueSubject(Rc(a)),A=(0,R.fromEvent)(a,"fullscreenchange").pipe((0,R.shareReplay)(1));t.add(A.pipe((0,R.map)(()=>Rc(a))).subscribe(E));let x=.1,D=1e3,N=(0,R.fromEvent)(a,"timeupdate").pipe((0,R.map)(L=>a.duration-a.currentTime<x),(0,R.filterChanged)(),(0,R.shareReplay)(1)),q=(0,R.merge)(N.pipe((0,R.filter)(L=>!a.loop&&L)),(0,R.fromEvent)(a,"ended")).pipe((0,R.throttle)(D),(0,R.mapTo)(void 0),(0,R.shareReplay)(1)),W=(0,R.merge)(...["waiting","pause","canplay","play","canplaythrough","playing","seeking","seeked","ended"].map(L=>(0,R.fromEvent)(a,L)),N.pipe((0,R.map)(L=>({type:L?"ended":"unknown"})))).pipe((0,R.map)(L=>F.browser.isFirefox&&L.type==="ended"?a.readyState<2:a.readyState<3),(0,R.filterChanged)(),(0,R.shareReplay)(1));return{playing$:s,pause$:f,canplay$:e("canplay"),ended$:q,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$:(0,R.fromEvent)(a,"durationchange").pipe((0,R.map)(()=>a.duration),(0,R.shareReplay)(1)),isBuffering$:W,currentBuffer$:r,volumeState$:n,playbackRateState$:o,inPiP$:S,inFullscreen$:E,enterPip$:g,leavePip$:v,destroy:i}};var Qt=require("@vkontakte/videoplayer-shared/es2024"),hi=a=>{switch(a){case"mobile":return Qt.VideoQuality.Q_144P;case"lowest":return Qt.VideoQuality.Q_240P;case"low":return Qt.VideoQuality.Q_360P;case"sd":case"medium":return Qt.VideoQuality.Q_480P;case"hd":case"high":return Qt.VideoQuality.Q_720P;case"fullhd":case"full":return Qt.VideoQuality.Q_1080P;case"quadhd":case"quad":return Qt.VideoQuality.Q_1440P;case"ultrahd":case"ultra":return Qt.VideoQuality.Q_2160P}};var Qe=j(gt(),1),$c=j(Ke(),1),qi=j(li(),1),$=require("@vkontakte/videoplayer-shared/es2024");var Mc=!1,Gt={},Kb=a=>{Mc=a},Xb=()=>{Gt={}},Jb=a=>{a(Gt)},wa=(a,e)=>{Mc&&(Gt.meta=Gt.meta??{},Gt.meta[a]=e)},We=class{constructor(e){this.name=e}next(e){if(!Mc)return;Gt.series=Gt.series??{};let t=Gt.series[this.name]??[];t.push([Date.now(),e]),Gt.series[this.name]=t}};var ke=require("@vkontakte/videoplayer-shared/es2024");function Zb(a,e,t){return!a.max&&a.min===e?"high_quality":!a.min&&a.max===t?"traffic_saving":"unknown"}function wr(a,e,t){return(0,ke.isNullable)(a)||(0,ke.isNonNullable)(a.min)&&(0,ke.isNonNullable)(a.max)&&(0,ke.isLower)(a.max,a.min)||(0,ke.isNonNullable)(a.min)&&e&&(0,ke.isHigher)(a.min,e)||(0,ke.isNonNullable)(a.max)&&t&&(0,ke.isLower)(a.max,t)}function eg({limits:a,highestAvailableHeight:e,lowestAvailableHeight:t}){return wr({max:a?.max?(0,ke.videoHeightToQuality)(a.max):void 0,min:a?.min?(0,ke.videoHeightToQuality)(a.min):void 0},e?(0,ke.videoHeightToQuality)(e):void 0,t?(0,ke.videoHeightToQuality)(t):void 0)}var sg=new We("best_bitrate"),Ln=(a,e,t)=>(e-t)*Math.pow(2,-10*a)+t;var xr=a=>(e,t)=>a*(Number(e.bitrate)-Number(t.bitrate)),mi=class{constructor(){this.history={}}recordSelection(e){this.history[e.id]=(0,$.now)()}recordSwitch(e){this.last=e}clear(){this.last=void 0,this.history={}}},Cn='Assertion "ABR Tracks is empty array" failed',$n=new WeakMap,tg=new WeakMap,ig=new WeakMap,xa=(a,e,t,i)=>{let r=[...e].sort(xr(1)),s=[...t].sort(xr(1)),n=s.filter(u=>(0,$.isNonNullable)(u.bitrate)&&(0,$.isNonNullable)(a.bitrate)?a.bitrate/u.bitrate>i:!0),o=(0,Qe.default)(s,Math.round(s.length*r.indexOf(a)/(r.length+1)))??(0,Qe.default)(s,-1);return o&&(0,$c.default)(n,o)?o:n.length?(0,Qe.default)(n,-1):(0,Qe.default)(s,0)},Pa=(a,e,t,i)=>{let r=$n.get(e);r||(r=[...e].sort(xr(1)),$n.set(e,r));let s=$n.get(t);s||(s=[...t].sort(xr(1)),$n.set(t,s));let n=ig.get(a);n||(n=s.filter(u=>(0,$.isNonNullable)(u.bitrate)&&(0,$.isNonNullable)(a.bitrate)?a.bitrate/u.bitrate>i:!0),ig.set(a,n));let o=(0,Qe.default)(s,Math.round(s.length*r.indexOf(a)/(r.length+1)))??(0,Qe.default)(s,-1);return o&&(0,$c.default)(n,o)?o:n.length?(0,Qe.default)(n,-1):(0,Qe.default)(s,0)},rg=a=>"quality"in a,Dn=(a,e,t,i)=>{let r=(0,$.isNonNullable)(i?.last?.bitrate)&&(0,$.isNonNullable)(t?.bitrate)&&i.last.bitrate<t.bitrate?a.trackCooldownIncreaseQuality:a.trackCooldownDecreaseQuality,s=t&&i&&i.history[t.id]&&(0,$.now)()-i.history[t.id]<=r&&(!i.last||t.id!==i.last.id);if(t?.id&&i&&!s&&i.recordSelection(t),s&&i?.last){let n=i.last;i?.recordSwitch(n);let o=rg(n)?"video":"audio",u=rg(n)?n.quality:n.bitrate;return e({message:`
8
- [last ${o} selected] ${u}
9
- `}),n}return i?.recordSwitch(t),t},SA=(a,e)=>Math.log(e)/Math.log(a),ng=({tuning:a,container:e,limits:t,panelSize:i})=>{let r=a.containerSizeFactor;if(i)return{containerSizeLimit:i,containerSizeFactor:r};if(a.usePixelRatio&&F.display.pixelRatio){let s=F.display.pixelRatio;if(a.pixelRatioMultiplier)r*=a.pixelRatioMultiplier*(s-1)+1;else{let n=a.pixelRatioLogBase,[o=0,u=0,c=0]=a.pixelRatioLogCoefficients,d=SA(n,o*s+u)+c;Number.isFinite(d)&&(r*=d)}}return(0,$.isNonNullable)(t?.min)&&(0,$.isHigherOrEqual)(t.min,a.highQualityLimit)&&(r*=2),{containerSizeLimit:a.limitByContainer&&e&&e.width>0&&e.height>0?{width:e.width*r,height:e.height*r}:void 0,containerSizeFactor:r}},ag=new WeakMap,Ft=(a,{container:e,estimatedThroughput:t,tuning:i,limits:r,reserve:s=0,forwardBufferHealth:n,playbackRate:o,current:u,history:c,visible:d,droppedVideoMaxQualityLimit:l,stallsVideoMaxQualityLimit:p,stallsPredictedThroughput:m,abrLogger:f,panelSize:g})=>{(0,$.assertNotEmptyArray)(a,Cn);let{containerSizeFactor:v,containerSizeLimit:S}=ng({container:e,tuning:i,limits:r,panelSize:g}),E=i.considerPlaybackRate&&(0,$.isNonNullable)(o)?o:1,A=ag.get(a);A||(A=a.filter(k=>!(0,$.isInvariantQuality)(k.quality)).sort((k,P)=>(0,$.isHigher)(k.quality,P.quality)?-1:1),ag.set(a,A));let x=(0,Qe.default)(A,-1)?.quality,D=(0,Qe.default)(A,0)?.quality,N=wr(r,D,x),q=E*Ln(n??.5,i.bitrateFactorAtEmptyBuffer,i.bitrateFactorAtFullBuffer),B={},W=null;for(let k of A){if(k.tvDisabled){B[k.quality]="TvDisabled";continue}let P=!0;if(S)if(k.size)P=k.size.width<=S.width&&k.size.height<=S.height;else{let oe=S&&(0,$.videoSizeToQuality)(S);P=oe?(0,$.isLowerOrEqual)(k.quality,oe):!0}if(!P){B[k.quality]="FitsContainer";continue}let J=m||t,O=(0,$.isNonNullable)(J)&&isFinite(J)&&(0,$.isNonNullable)(k.bitrate)?J-s>=k.bitrate*q:!0,se=r?.min===k.quality;if(!O&&!se){B[k.quality]="FitsThroughput";continue}if(i.lazyQualitySwitch&&(0,$.isNonNullable)(i.minBufferToSwitchUp)&&u&&!(0,$.isInvariantQuality)(u.quality)&&(n??0)<i.minBufferToSwitchUp&&(0,$.isHigher)(k.quality,u.quality)){B[k.quality]="Buffer";continue}if(!!l&&(0,$.isHigherOrEqual)(k.quality,l)&&!se){B[k.quality]="DroppedFramesLimit";continue}if(!!p&&(0,$.isHigherOrEqual)(k.quality,p)&&!se){B[k.quality]="StallsLimit";continue}let _e=N||((0,$.isNullable)(r?.max)||(0,$.isLowerOrEqual)(k.quality,r.max))&&((0,$.isNullable)(r?.min)||(0,$.isHigherOrEqual)(k.quality,r.min)),Oe=(0,$.isNonNullable)(d)&&!d?(0,$.isLowerOrEqual)(k.quality,i.backgroundVideoQualityLimit):!0;if(!_e||!Oe){B[k.quality]="FitsQualityLimits";continue}W||(W=k)}W&&W.bitrate&&sg.next(W.bitrate);let L=W??(0,Qe.default)(A,-1)??a[0],ae=c?.last,X=Dn(i,f,L,c);return(0,$.isNonNullable)(c)&&X.quality!==ae?.quality&&f({message:`
6
+ var e=Object.create,t=Object.getPrototypeOf,n=Object.defineProperty,r=Object.getOwnPropertyNames,i=Object.getOwnPropertyDescriptor,a=Object.prototype.hasOwnProperty;function o(e){return this[e]}var s,c,l=(i,l,u)=>{var d=typeof i==`object`&&!!i;if(d){var f=l?s??=new WeakMap:c??=new WeakMap,p=f.get(i);if(p)return p}u=i==null?{}:e(t(i));let m=l||!i||!i.__esModule?n(u,`default`,{value:i,enumerable:!0}):u;for(let e of r(i))a.call(m,e)||n(m,e,{get:o.bind(i,e),enumerable:!0});return d&&f.set(i,m),m},u=e=>{var t=(d??=new WeakMap).get(e),s;if(t)return t;if(t=n({},`__esModule`,{value:!0}),e&&typeof e==`object`||typeof e==`function`)for(var c of r(e))a.call(t,c)||n(t,c,{get:o.bind(e,c),enumerable:!(s=i(e,c))||s.enumerable});return d.set(e,t),t},d,f=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports),p=e=>e;function m(e,t){this[e]=p.bind(null,t)}var h=(e,t)=>{for(var r in t)n(e,r,{get:t[r],enumerable:!0,configurable:!0,set:m.bind(t,r)})},g=f((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((e,t)=>{t.exports=function(e){try{return!!e()}catch{return!0}}}),v=f((e,t)=>{t.exports=!_()(function(){var e=function(){}.bind();return typeof e!=`function`||e.hasOwnProperty(`prototype`)})}),y=f((e,t)=>{var n=v(),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)})}),b=f((e,t)=>{var n=v(),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)}}}),x=f((e,t)=>{var n=b(),r=n({}.toString),i=n(``.slice);t.exports=function(e){return i(r(e),8,-1)}}),S=f((e,t)=>{var n=x(),r=b();t.exports=function(e){if(n(e)===`Function`)return r(e)}}),C=f((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`}}),w=f((e,t)=>{t.exports=!_()(function(){return Object.defineProperty({},1,{get:function(){return 7}})[1]!==7})}),T=f((e,t)=>{var n=v(),r=Function.prototype.call;t.exports=n?r.bind(r):function(){return r.apply(r,arguments)}}),E=f(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}),D=f((e,t)=>{t.exports=function(e,t){return{enumerable:!(e&1),configurable:!(e&2),writable:!(e&4),value:t}}}),ee=f((e,t)=>{var n=b(),r=_(),i=x(),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}),te=f((e,t)=>{t.exports=function(e){return e==null}}),O=f((e,t)=>{var n=te(),r=TypeError;t.exports=function(e){if(n(e))throw new r(`Can't call method on `+e);return e}}),ne=f((e,t)=>{var n=ee(),r=O();t.exports=function(e){return n(r(e))}}),re=f((e,t)=>{var n=C();t.exports=function(e){return typeof e==`object`?e!==null:n(e)}}),ie=f((e,t)=>{t.exports={}}),ae=f((e,t)=>{var n=ie(),r=g(),i=C(),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]}}),oe=f((e,t)=>{t.exports=b()({}.isPrototypeOf)}),se=f((e,t)=>{var n=g().navigator,r=n&&n.userAgent;t.exports=r?String(r):``}),ce=f((e,t)=>{var n=g(),r=se(),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}),le=f((e,t)=>{var n=ce(),r=_(),i=g().String;t.exports=!!Object.getOwnPropertySymbols&&!r(function(){var e=Symbol(`symbol detection`);return!i(e)||!(Object(e)instanceof Symbol)||!Symbol.sham&&n&&n<41})}),ue=f((e,t)=>{t.exports=le()&&!Symbol.sham&&typeof Symbol.iterator==`symbol`}),de=f((e,t)=>{var n=ae(),r=C(),i=oe(),a=ue(),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))}}),fe=f((e,t)=>{var n=String;t.exports=function(e){try{return n(e)}catch{return`Object`}}}),pe=f((e,t)=>{var n=C(),r=fe(),i=TypeError;t.exports=function(e){if(n(e))return e;throw new i(r(e)+` is not a function`)}}),me=f((e,t)=>{var n=pe(),r=te();t.exports=function(e,t){var i=e[t];return r(i)?void 0:n(i)}}),he=f((e,t)=>{var n=T(),r=C(),i=re(),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`)}}),ge=f((e,t)=>{t.exports=!0}),_e=f((e,t)=>{var n=g(),r=Object.defineProperty;t.exports=function(e,t){try{r(n,e,{value:t,configurable:!0,writable:!0})}catch{n[e]=t}return t}}),ve=f((e,t)=>{var n=ge(),r=g(),i=_e(),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`})}),ye=f((e,t)=>{var n=ve();t.exports=function(e,t){return n[e]||(n[e]=t||{})}}),be=f((e,t)=>{var n=O(),r=Object;t.exports=function(e){return r(n(e))}}),xe=f((e,t)=>{var n=b(),r=be(),i=n({}.hasOwnProperty);t.exports=Object.hasOwn||function(e,t){return i(r(e),t)}}),Se=f((e,t)=>{var n=b(),r=0,i=Math.random(),a=n(1.1.toString);t.exports=function(e){return`Symbol(`+(e===void 0?``:e)+`)_`+a(++r+i,36)}}),Ce=f((e,t)=>{var n=g(),r=ye(),i=xe(),a=Se(),o=le(),s=ue(),c=n.Symbol,l=r(`wks`),u=s?c.for||c:c&&c.withoutSetter||a;t.exports=function(e){return i(l,e)||(l[e]=o&&i(c,e)?c[e]:u(`Symbol.`+e)),l[e]}}),we=f((e,t)=>{var n=T(),r=re(),i=de(),a=me(),o=he(),s=Ce(),c=TypeError,l=s(`toPrimitive`);t.exports=function(e,t){if(!r(e)||i(e))return e;var s=a(e,l),u;if(s){if(t===void 0&&(t=`default`),u=n(s,e,t),!r(u)||i(u))return u;throw new c(`Can't convert object to primitive value`)}return t===void 0&&(t=`number`),o(e,t)}}),Te=f((e,t)=>{var n=we(),r=de();t.exports=function(e){var t=n(e,`string`);return r(t)?t:t+``}}),Ee=f((e,t)=>{var n=g(),r=re(),i=n.document,a=r(i)&&r(i.createElement);t.exports=function(e){return a?i.createElement(e):{}}}),De=f((e,t)=>{var n=w(),r=_(),i=Ee();t.exports=!n&&!r(function(){return Object.defineProperty(i(`div`),`a`,{get:function(){return 7}}).a!==7})}),Oe=f(e=>{var t=w(),n=T(),r=E(),i=D(),a=ne(),o=Te(),s=xe(),c=De(),l=Object.getOwnPropertyDescriptor;e.f=t?l:function(e,t){if(e=a(e),t=o(t),c)try{return l(e,t)}catch{}if(s(e,t))return i(!n(r.f,e,t),e[t])}}),ke=f((e,t)=>{var n=_(),r=C(),i=/#|\.prototype\./,a=function(e,t){var i=s[o(e)];return i===l?!0:i===c?!1:r(t)?n(t):!!t},o=a.normalize=function(e){return String(e).replace(i,`.`).toLowerCase()},s=a.data={},c=a.NATIVE=`N`,l=a.POLYFILL=`P`;t.exports=a}),Ae=f((e,t)=>{var n=S(),r=pe(),i=v(),a=n(n.bind);t.exports=function(e,t){return r(e),t===void 0?e:i?a(e,t):function(){return e.apply(t,arguments)}}}),je=f((e,t)=>{var n=w(),r=_();t.exports=n&&r(function(){return Object.defineProperty(function(){},`prototype`,{value:42,writable:!1}).prototype!==42})}),Me=f((e,t)=>{var n=re(),r=String,i=TypeError;t.exports=function(e){if(n(e))return e;throw new i(r(e)+` is not an object`)}}),Ne=f(e=>{var t=w(),n=De(),r=je(),i=Me(),a=Te(),o=TypeError,s=Object.defineProperty,c=Object.getOwnPropertyDescriptor,l=`enumerable`,u=`configurable`,d=`writable`;e.f=t?r?function(e,t,n){if(i(e),t=a(t),i(n),typeof e==`function`&&t===`prototype`&&`value`in n&&d in n&&!n[d]){var r=c(e,t);r&&r[d]&&(e[t]=n.value,n={configurable:u in n?n[u]:r[u],enumerable:l in n?n[l]:r[l],writable:!1})}return s(e,t,n)}:s:function(e,t,r){if(i(e),t=a(t),i(r),n)try{return s(e,t,r)}catch{}if(`get`in r||`set`in r)throw new o(`Accessors not supported`);return`value`in r&&(e[t]=r.value),e}}),Pe=f((e,t)=>{var n=w(),r=Ne(),i=D();t.exports=n?function(e,t,n){return r.f(e,t,i(1,n))}:function(e,t,n){return e[t]=n,e}}),Fe=f((e,t)=>{var n=g(),r=y(),i=S(),a=C(),o=Oe().f,s=ke(),c=ie(),l=Ae(),u=Pe(),d=xe();ve();var f=function(e){var t=function(n,i,a){if(this instanceof t){switch(arguments.length){case 0:return new e;case 1:return new e(n);case 2:return new e(n,i)}return new e(n,i,a)}return r(e,this,arguments)};return t.prototype=e.prototype,t};t.exports=function(e,t){var r=e.target,p=e.global,m=e.stat,h=e.proto,g=p?n:m?n[r]:n[r]&&n[r].prototype,_=p?c:c[r]||u(c,r,{})[r],v=_.prototype,y,b,x,S,C,w,T,E,D;for(S in t)y=s(p?S:r+(m?`.`:`#`)+S,e.forced),b=!y&&g&&d(g,S),w=_[S],b&&(e.dontCallGetSet?(D=o(g,S),T=D&&D.value):T=g[S]),C=b&&T?T:t[S],!(!y&&!h&&typeof w==typeof C)&&(E=e.bind&&b?l(C,n):e.wrap&&b?f(C):h&&a(C)?i(C):C,(e.sham||C&&C.sham||w&&w.sham)&&u(E,`sham`,!0),u(_,S,E),h&&(x=r+`Prototype`,d(c,x)||u(c,x,{}),u(c[x],S,C),e.real&&v&&(y||!v[S])&&u(v,S,C)))}}),Ie=f((e,t)=>{var n=ye(),r=Se(),i=n(`keys`);t.exports=function(e){return i[e]||(i[e]=r(e))}}),Le=f((e,t)=>{t.exports=!_()(function(){function e(){}return e.prototype.constructor=null,Object.getPrototypeOf(new e)!==e.prototype})}),Re=f((e,t)=>{var n=xe(),r=C(),i=be(),a=Ie(),o=Le(),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}}),ze=f((e,t)=>{var n=Math.ceil,r=Math.floor;t.exports=Math.trunc||function(e){var t=+e;return(t>0?r:n)(t)}}),Be=f((e,t)=>{var n=ze();t.exports=function(e){var t=+e;return t!==t||t===0?0:n(t)}}),Ve=f((e,t)=>{var n=Be(),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)}}),He=f((e,t)=>{var n=Be(),r=Math.min;t.exports=function(e){var t=n(e);return t>0?r(t,9007199254740991):0}}),Ue=f((e,t)=>{var n=He();t.exports=function(e){return n(e.length)}}),We=f((e,t)=>{var n=ne(),r=Ve(),i=Ue(),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)}}),Ge=f((e,t)=>{t.exports={}}),Ke=f((e,t)=>{var n=b(),r=xe(),i=ne(),a=We().indexOf,o=Ge(),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}}),qe=f((e,t)=>{t.exports=[`constructor`,`hasOwnProperty`,`isPrototypeOf`,`propertyIsEnumerable`,`toLocaleString`,`toString`,`valueOf`]}),Je=f((e,t)=>{var n=Ke(),r=qe();t.exports=Object.keys||function(e){return n(e,r)}}),Ye=f((e,t)=>{var n=w(),r=_(),i=b(),a=Re(),o=Je(),s=ne(),c=E().f,l=i(c),u=i([].push),d=n&&r(function(){var e=Object.create(null);return e[2]=2,!l(e,2)}),f=function(e){return function(t){for(var r=s(t),i=o(r),c=d&&a(r)===null,f=i.length,p=0,m=[],h;f>p;)h=i[p++],(!n||(c?h in r:l(r,h)))&&u(m,e?[h,r[h]]:r[h]);return m}};t.exports={entries:f(!0),values:f(!1)}}),Xe=f(()=>{var e=Fe(),t=Ye().values;e({target:`Object`,stat:!0},{values:function(e){return t(e)}})}),Ze=f((e,t)=>{Xe(),t.exports=ie().Object.values}),Qe=f((e,t)=>{t.exports=Ze()}),$e=f((e,t)=>{t.exports=Qe()}),et=f((e,t)=>{t.exports=function(){}}),tt=f(()=>{var e=Fe(),t=We().includes,n=_(),r=et();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`)}),nt=f((e,t)=>{t.exports=ae()}),rt=f((e,t)=>{tt(),t.exports=nt()(`Array`,`includes`)}),it=f((e,t)=>{t.exports=rt()}),at=f((e,t)=>{t.exports=it()}),ot=f(()=>{var e=Fe(),t=Ye().entries;e({target:`Object`,stat:!0},{entries:function(e){return t(e)}})}),st=f((e,t)=>{ot(),t.exports=ie().Object.entries}),ct=f((e,t)=>{t.exports=st()}),lt=f((e,t)=>{t.exports=ct()}),ut=f((e,t)=>{t.exports={}}),dt=f((e,t)=>{var n=g(),r=C(),i=n.WeakMap;t.exports=r(i)&&/native code/.test(String(i))}),ft=f((e,t)=>{var n=dt(),r=g(),i=re(),a=Pe(),o=xe(),s=ve(),c=Ie(),l=Ge(),u=`Object already initialized`,d=r.TypeError,f=r.WeakMap,p,m,h,_=function(e){return h(e)?m(e):p(e,{})},v=function(e){return function(t){var n;if(!i(t)||(n=m(t)).type!==e)throw new d(`Incompatible receiver, `+e+` required`);return n}};n||s.state?(y=s.state||=new f,y.get=y.get,y.has=y.has,y.set=y.set,p=function(e,t){if(y.has(e))throw new d(u);return t.facade=e,y.set(e,t),t},m=function(e){return y.get(e)||{}},h=function(e){return y.has(e)}):(b=c(`state`),l[b]=!0,p=function(e,t){if(o(e,b))throw new d(u);return t.facade=e,a(e,b,t),t},m=function(e){return o(e,b)?e[b]:{}},h=function(e){return o(e,b)});var y,b;t.exports={set:p,get:m,has:h,enforce:_,getterFor:v}}),pt=f((e,t)=>{var n=w(),r=xe(),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)}}),mt=f(e=>{var t=w(),n=je(),r=Ne(),i=Me(),a=ne(),o=Je();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}}),ht=f((e,t)=>{t.exports=ae()(`document`,`documentElement`)}),gt=f((e,t)=>{var n=Me(),r=mt(),i=qe(),a=Ge(),o=ht(),s=Ee(),c=Ie(),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)}}),_t=f((e,t)=>{var n=Pe();t.exports=function(e,t,r,i){return i&&i.enumerable?e[t]=r:n(e,t,r),e}}),vt=f((e,t)=>{var n=_(),r=C(),i=re(),a=gt(),o=Re(),s=_t(),c=Ce(),l=ge(),u=c(`iterator`),d=!1,f,p,m;[].keys&&(m=[].keys(),`next`in m?(p=o(o(m)),p!==Object.prototype&&(f=p)):d=!0),!i(f)||n(function(){var e={};return f[u].call(e)!==e})?f={}:l&&(f=a(f)),r(f[u])||s(f,u,function(){return this}),t.exports={IteratorPrototype:f,BUGGY_SAFARI_ITERATORS:d}}),yt=f((e,t)=>{var n=Ce()(`toStringTag`),r={};r[n]=`z`,t.exports=String(r)===`[object z]`}),bt=f((e,t)=>{var n=yt(),r=C(),i=x(),a=Ce()(`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}}),xt=f((e,t)=>{var n=yt(),r=bt();t.exports=n?{}.toString:function(){return`[object `+r(this)+`]`}}),St=f((e,t)=>{var n=yt(),r=Ne().f,i=Pe(),a=xe(),o=xt(),s=Ce()(`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))}}),Ct=f((e,t)=>{var n=vt().IteratorPrototype,r=gt(),i=D(),a=St(),o=ut(),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}}),wt=f((e,t)=>{var n=b(),r=pe();t.exports=function(e,t,i){try{return n(r(Object.getOwnPropertyDescriptor(e,t)[i]))}catch{}}}),Tt=f((e,t)=>{var n=re();t.exports=function(e){return n(e)||e===null}}),Et=f((e,t)=>{var n=Tt(),r=String,i=TypeError;t.exports=function(e){if(n(e))return e;throw new i(`Can't set `+r(e)+` as a prototype`)}}),Dt=f((e,t)=>{var n=wt(),r=re(),i=O(),a=Et();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)}),Ot=f((e,t)=>{var n=Fe(),r=T(),i=ge(),a=pt(),o=C(),s=Ct(),c=Re(),l=Dt(),u=St(),d=Pe(),f=_t(),p=Ce(),m=ut(),h=vt(),g=a.PROPER,_=a.CONFIGURABLE,v=h.IteratorPrototype,y=h.BUGGY_SAFARI_ITERATORS,b=p(`iterator`),x=`keys`,S=`values`,w=`entries`,E=function(){return this};t.exports=function(e,t,a,p,h,C,T){s(a,t,p);var D=function(e){if(e===h&&re)return re;if(!y&&e&&e in O)return O[e];switch(e){case x:return function(){return new a(this,e)};case S:return function(){return new a(this,e)};case w:return function(){return new a(this,e)}}return function(){return new a(this)}},ee=t+` Iterator`,te=!1,O=e.prototype,ne=O[b]||O[`@@iterator`]||h&&O[h],re=!y&&ne||D(h),ie=t===`Array`&&O.entries||ne,ae,oe,se;if(ie&&(ae=c(ie.call(new e)),ae!==Object.prototype&&ae.next&&(!i&&c(ae)!==v&&(l?l(ae,v):o(ae[b])||f(ae,b,E)),u(ae,ee,!0,!0),i&&(m[ee]=E))),g&&h===S&&ne&&ne.name!==S&&(!i&&_?d(O,`name`,S):(te=!0,re=function(){return r(ne,this)})),h)if(oe={values:D(S),keys:C?re:D(x),entries:D(w)},T)for(se in oe)(y||te||!(se in O))&&f(O,se,oe[se]);else n({target:t,proto:!0,forced:y||te},oe);return(!i||T)&&O[b]!==re&&f(O,b,re,{name:h}),m[t]=re,oe}}),kt=f((e,t)=>{t.exports=function(e,t){return{value:e,done:t}}}),At=f((e,t)=>{var n=ne(),r=et(),i=ut(),a=ft(),o=Ne().f,s=Ot(),c=kt(),l=ge(),u=w(),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{}}),jt=f((e,t)=>{var n=Ce(),r=ut(),i=n(`iterator`),a=Array.prototype;t.exports=function(e){return e!==void 0&&(r.Array===e||a[i]===e)}}),Mt=f((e,t)=>{var n=bt(),r=me(),i=te(),a=ut(),o=Ce()(`iterator`);t.exports=function(e){if(!i(e))return r(e,o)||r(e,`@@iterator`)||a[n(e)]}}),Nt=f((e,t)=>{var n=T(),r=pe(),i=Me(),a=fe(),o=Mt(),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`)}}),Pt=f((e,t)=>{var n=T(),r=Me(),i=me();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}}),Ft=f((e,t)=>{var n=Ae(),r=T(),i=Me(),a=fe(),o=jt(),s=Ue(),c=oe(),l=Nt(),u=Mt(),d=Pt(),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,ee,te=function(e){return S&&d(S,`normal`),new p(!0,e)},O=function(e){return _?(i(e),b?x(e[0],e[1],te):x(e[0],e[1])):b?x(e,te):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=O(e[w]),E&&c(m,E))return E;return new p(!1)}S=l(e,C)}for(D=v?e.next:S.next;!(ee=r(D,S)).done;){try{E=O(ee.value)}catch(e){d(S,`throw`,e)}if(typeof E==`object`&&E&&c(m,E))return E}return new p(!1)}}),It=f((e,t)=>{var n=w(),r=Ne(),i=D();t.exports=function(e,t,a){n?r.f(e,t,i(0,a)):e[t]=a}}),Lt=f(()=>{var e=Fe(),t=Ft(),n=It();e({target:`Object`,stat:!0},{fromEntries:function(e){var r={};return t(e,function(e,t){n(r,e,t)},{AS_ENTRIES:!0}),r}})}),Rt=f((e,t)=>{At(),Lt(),t.exports=ie().Object.fromEntries}),zt=f((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}}),Bt=f(()=>{At();var e=zt(),t=g(),n=St(),r=ut();for(i in e)n(t[i],i),r[i]=r.Array;var i}),Vt=f((e,t)=>{var n=Rt();Bt(),t.exports=n}),Ht=f((e,t)=>{t.exports=Vt()}),Ut=f((e,t)=>{var n=g(),r=se(),i=x(),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`}()}),Wt=f((e,t)=>{t.exports=Ut()===`NODE`}),Gt=f((e,t)=>{var n=Ne();t.exports=function(e,t,r){return n.f(e,t,r)}}),Kt=f((e,t)=>{var n=ae(),r=Gt(),i=Ce(),a=w(),o=i(`species`);t.exports=function(e){var t=n(e);a&&t&&!t[o]&&r(t,o,{configurable:!0,get:function(){return this}})}}),qt=f((e,t)=>{var n=oe(),r=TypeError;t.exports=function(e,t){if(n(t,e))return e;throw new r(`Incorrect invocation`)}}),Jt=f((e,t)=>{var n=b(),r=C(),i=ve(),a=n(Function.toString);r(i.inspectSource)||(i.inspectSource=function(e){return a(e)}),t.exports=i.inspectSource}),Yt=f((e,t)=>{var n=b(),r=_(),i=C(),a=bt(),o=ae(),s=Jt(),c=function(){},l=o(`Reflect`,`construct`),u=/^\s*(?:class|function)\b/,d=n(u.exec),f=!u.test(c),p=function(e){if(!i(e))return!1;try{return l(c,[],e),!0}catch{return!1}},m=function(e){if(!i(e))return!1;switch(a(e)){case`AsyncFunction`:case`GeneratorFunction`:case`AsyncGeneratorFunction`:return!1}try{return f||!!d(u,s(e))}catch{return!0}};m.sham=!0,t.exports=!l||r(function(){var e;return p(p.call)||!p(Object)||!p(function(){e=!0})||e})?m:p}),Xt=f((e,t)=>{var n=Yt(),r=fe(),i=TypeError;t.exports=function(e){if(n(e))return e;throw new i(r(e)+` is not a constructor`)}}),Zt=f((e,t)=>{var n=Me(),r=Xt(),i=te(),a=Ce()(`species`);t.exports=function(e,t){var o=n(e).constructor,s;return o===void 0||i(s=n(o)[a])?t:r(s)}}),Qt=f((e,t)=>{t.exports=b()([].slice)}),$t=f((e,t)=>{var n=TypeError;t.exports=function(e,t){if(e<t)throw new n(`Not enough arguments`);return e}}),en=f((e,t)=>{var n=se();t.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(n)}),tn=f((e,t)=>{var n=g(),r=y(),i=Ae(),a=C(),o=xe(),s=_(),c=ht(),l=Qt(),u=Ee(),d=$t(),f=en(),p=Wt(),m=n.setImmediate,h=n.clearImmediate,v=n.process,b=n.Dispatch,x=n.Function,S=n.MessageChannel,w=n.String,T=0,E={},D=`onreadystatechange`,ee,te,O,ne;s(function(){ee=n.location});var re=function(e){if(o(E,e)){var t=E[e];delete E[e],t()}},ie=function(e){return function(){re(e)}},ae=function(e){re(e.data)},oe=function(e){n.postMessage(w(e),ee.protocol+`//`+ee.host)};(!m||!h)&&(m=function(e){d(arguments.length,1);var t=a(e)?e:x(e),n=l(arguments,1);return E[++T]=function(){r(t,void 0,n)},te(T),T},h=function(e){delete E[e]},p?te=function(e){v.nextTick(ie(e))}:b&&b.now?te=function(e){b.now(ie(e))}:S&&!f?(O=new S,ne=O.port2,O.port1.onmessage=ae,te=i(ne.postMessage,ne)):n.addEventListener&&a(n.postMessage)&&!n.importScripts&&ee&&ee.protocol!==`file:`&&!s(oe)?(te=oe,n.addEventListener(`message`,ae,!1)):te=D in u(`script`)?function(e){c.appendChild(u(`script`))[D]=function(){c.removeChild(this),re(e)}}:function(e){setTimeout(ie(e),0)}),t.exports={set:m,clear:h}}),nn=f((e,t)=>{var n=g(),r=w(),i=Object.getOwnPropertyDescriptor;t.exports=function(e){if(!r)return n[e];var t=i(n,e);return t&&t.value}}),rn=f((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}),an=f((e,t)=>{var n=se();t.exports=/ipad|iphone|ipod/i.test(n)&&typeof Pebble<`u`}),on=f((e,t)=>{var n=se();t.exports=/web0s(?!.*chrome)/i.test(n)}),sn=f((e,t)=>{var n=g(),r=nn(),i=Ae(),a=tn().set,o=rn(),s=en(),c=an(),l=on(),u=Wt(),d=n.MutationObserver||n.WebKitMutationObserver,f=n.document,p=n.process,m=n.Promise,h=r(`queueMicrotask`),_,v,y,b,x;h||=(S=new o,C=function(){var e,t;for(u&&(e=p.domain)&&e.exit();t=S.get();)try{t()}catch(e){throw S.head&&_(),e}e&&e.enter()},!s&&!u&&!l&&d&&f?(v=!0,y=f.createTextNode(``),new d(C).observe(y,{characterData:!0}),_=function(){y.data=v=!v}):!c&&m&&m.resolve?(b=m.resolve(void 0),b.constructor=m,x=i(b.then,b),_=function(){x(C)}):u?_=function(){p.nextTick(C)}:(a=i(a,n),_=function(){a(C)}),function(e){S.head||_(),S.add(e)});var S,C;t.exports=h}),cn=f((e,t)=>{t.exports=function(e,t){try{arguments.length===1?console.error(e):console.error(e,t)}catch{}}}),ln=f((e,t)=>{t.exports=function(e){try{return{error:!1,value:e()}}catch(e){return{error:!0,value:e}}}}),un=f((e,t)=>{t.exports=g().Promise}),dn=f((e,t)=>{var n=g(),r=un(),i=C(),a=ke(),o=Jt(),s=Ce(),c=Ut(),l=ge(),u=ce(),d=r&&r.prototype,f=s(`species`),p=!1,m=i(n.PromiseRejectionEvent);t.exports={CONSTRUCTOR:a(`Promise`,function(){var e=o(r),t=e!==String(r);if(!t&&u===66||l&&!(d.catch&&d.finally))return!0;if(!u||u<51||!/native code/.test(e)){var n=new r(function(e){e(1)}),i=function(e){e(function(){},function(){})},a=n.constructor={};if(a[f]=i,p=n.then(function(){})instanceof i,!p)return!0}return!t&&(c===`BROWSER`||c===`DENO`)&&!m}),REJECTION_EVENT:m,SUBCLASSING:p}}),fn=f((e,t)=>{var n=pe(),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)};t.exports.f=function(e){return new i(e)}}),pn=f(()=>{var e=Fe(),t=ge(),n=Wt(),r=g(),i=ie(),a=T(),o=_t(),s=Dt(),c=St(),l=Kt(),u=pe(),d=C(),f=re(),p=qt(),m=Zt(),h=tn().set,_=sn(),v=cn(),y=ln(),b=rn(),x=ft(),S=un(),w=dn(),E=fn(),D=`Promise`,ee=w.CONSTRUCTOR,te=w.REJECTION_EVENT,O=w.SUBCLASSING,ne=x.getterFor(D),ae=x.set,oe=S&&S.prototype,se=S,ce=oe,le=r.TypeError,ue=r.document,de=r.process,fe=E.f,me=fe,he=!!(ue&&ue.createEvent&&r.dispatchEvent),_e=`unhandledrejection`,ve=`rejectionhandled`,ye=0,be=1,xe=2,Se=1,Ce=2,we,Te,Ee,De,Oe=function(e){var t;return f(e)&&d(t=e.then)?t:!1},ke=function(e,t){var n=t.value,r=t.state===be,i=r?e.ok:e.fail,o=e.resolve,s=e.reject,c=e.domain,l,u,d;try{i?(r||(t.rejection===Ce&&Pe(t),t.rejection=Se),i===!0?l=n:(c&&c.enter(),l=i(n),c&&(c.exit(),d=!0)),l===e.promise?s(new le(`Promise-chain cycle`)):(u=Oe(l))?a(u,l,o,s):o(l)):s(n)}catch(e){c&&!d&&c.exit(),s(e)}},Ae=function(e,t){e.notified||(e.notified=!0,_(function(){for(var n=e.reactions,r;r=n.get();)ke(r,e);e.notified=!1,t&&!e.rejection&&Me(e)}))},je=function(e,t,n){var i,a;he?(i=ue.createEvent(`Event`),i.promise=t,i.reason=n,i.initEvent(e,!1,!0),r.dispatchEvent(i)):i={promise:t,reason:n},!te&&(a=r[`on`+e])?a(i):e===_e&&v(`Unhandled promise rejection`,n)},Me=function(e){a(h,r,function(){var t=e.facade,r=e.value,i=Ne(e),a;if(i&&(a=y(function(){n?de.emit(`unhandledRejection`,r,t):je(_e,t,r)}),e.rejection=n||Ne(e)?Ce:Se,a.error))throw a.value})},Ne=function(e){return e.rejection!==Se&&!e.parent},Pe=function(e){a(h,r,function(){var t=e.facade;n?de.emit(`rejectionHandled`,t):je(ve,t,e.value)})},Ie=function(e,t,n){return function(r){e(t,r,n)}},Le=function(e,t,n){e.done||(e.done=!0,n&&(e=n),e.value=t,e.state=xe,Ae(e,!0))},Re=function(e,t,n){if(!e.done){e.done=!0,n&&(e=n);try{if(e.facade===t)throw new le(`Promise can't be resolved itself`);var r=Oe(t);r?_(function(){var n={done:!1};try{a(r,t,Ie(Re,n,e),Ie(Le,n,e))}catch(t){Le(n,t,e)}}):(e.value=t,e.state=be,Ae(e,!1))}catch(t){Le({done:!1},t,e)}}};if(ee&&(se=function(e){p(this,ce),u(e),a(we,this);var t=ne(this);try{e(Ie(Re,t),Ie(Le,t))}catch(e){Le(t,e)}},ce=se.prototype,we=function(e){ae(this,{type:D,done:!1,notified:!1,parent:!1,reactions:new b,rejection:!1,state:ye,value:null})},we.prototype=o(ce,`then`,function(e,t){var r=ne(this),i=fe(m(this,se));return r.parent=!0,i.ok=d(e)?e:!0,i.fail=d(t)&&t,i.domain=n?de.domain:void 0,r.state===ye?r.reactions.add(i):_(function(){ke(i,r)}),i.promise}),Te=function(){var e=new we,t=ne(e);this.promise=e,this.resolve=Ie(Re,t),this.reject=Ie(Le,t)},E.f=fe=function(e){return e===se||e===Ee?new Te(e):me(e)},!t&&d(S)&&oe!==Object.prototype)){De=oe.then,O||o(oe,`then`,function(e,t){var n=this;return new se(function(e,t){a(De,n,e,t)}).then(e,t)},{unsafe:!0});try{delete oe.constructor}catch{}s&&s(oe,ce)}e({global:!0,constructor:!0,wrap:!0,forced:ee},{Promise:se}),Ee=i.Promise,c(se,D,!1,!0),l(D)}),mn=f((e,t)=>{var n=Ce()(`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}}),hn=f((e,t)=>{var n=un(),r=mn();t.exports=dn().CONSTRUCTOR||!r(function(e){n.all(e).then(void 0,function(){})})}),gn=f(()=>{var e=Fe(),t=T(),n=pe(),r=fn(),i=ln(),a=Ft();e({target:`Promise`,stat:!0,forced:hn()},{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}})}),_n=f(()=>{var e=Fe(),t=ge(),n=dn().CONSTRUCTOR,r=un(),i=ae(),a=C(),o=_t(),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}),vn=f(()=>{var e=Fe(),t=T(),n=pe(),r=fn(),i=ln(),a=Ft();e({target:`Promise`,stat:!0,forced:hn()},{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}})}),yn=f(()=>{var e=Fe(),t=fn(),n=dn().CONSTRUCTOR;e({target:`Promise`,stat:!0,forced:n},{reject:function(e){var n=t.f(this),r=n.reject;return r(e),n.promise}})}),bn=f((e,t)=>{var n=Me(),r=re(),i=fn();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}}),xn=f(()=>{var e=Fe(),t=ae(),n=ge(),r=un(),i=dn().CONSTRUCTOR,a=bn(),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)}})}),Sn=f(()=>{pn(),gn(),_n(),vn(),yn(),xn()}),Cn=f(()=>{var e=Fe(),t=ge(),n=un(),r=_(),i=ae(),a=C(),o=Zt(),s=bn(),c=_t(),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}),wn=f((e,t)=>{Sn(),Cn(),t.exports=nt()(`Promise`,`finally`)}),Tn=f((e,t)=>{t.exports=wn()}),En=f((e,t)=>{t.exports=Tn()}),Dn=f(()=>{var e=Fe(),t=be(),n=Ue(),r=Be(),i=et();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`)}),On=f((e,t)=>{Dn(),t.exports=nt()(`Array`,`at`)}),kn=f((e,t)=>{t.exports=On()}),An=f((e,t)=>{t.exports=kn()}),jn=f((e,t)=>{var n=bt(),r=String;t.exports=function(e){if(n(e)===`Symbol`)throw TypeError(`Cannot convert a Symbol value to a string`);return r(e)}}),Mn=f(()=>{var e=Fe(),t=b(),n=O(),r=Be(),i=jn(),a=_(),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)}})}),Nn=f((e,t)=>{Mn(),t.exports=nt()(`String`,`at`)}),Pn=f((e,t)=>{t.exports=Nn()}),Fn=f((e,t)=>{t.exports=Pn()}),In=f((e,t)=>{var n=x();t.exports=Array.isArray||function(e){return n(e)===`Array`}}),Ln=f((e,t)=>{var n=TypeError,r=9007199254740991;t.exports=function(e){if(e>r)throw n(`Maximum allowed index exceeded`);return e}}),Rn=f((e,t)=>{var n=In(),r=Ue(),i=Ln(),a=Ae(),o=function(e,t,s,c,l,u,d,f){for(var p=l,m=0,h=d?a(d,f):!1,g,_;m<c;)m in s&&(g=h?h(s[m],m,t):s[m],u>0&&n(g)?(_=r(g),p=o(e,t,g,_,p,u-1)-1):(i(p+1),e[p]=g),p++),m++;return p};t.exports=o}),zn=f((e,t)=>{var n=In(),r=Yt(),i=re(),a=Ce()(`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}}),Bn=f((e,t)=>{var n=zn();t.exports=function(e,t){return new(n(e))(t===0?0:t)}}),Vn=f(()=>{var e=Fe(),t=Rn(),n=pe(),r=be(),i=Ue(),a=Bn();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}})}),Hn=f(()=>{et()(`flatMap`)}),Un=f((e,t)=>{Vn(),Hn(),t.exports=nt()(`Array`,`flatMap`)}),Wn=f((e,t)=>{t.exports=Un()}),Gn=f((e,t)=>{t.exports=Wn()}),Kn=f((e,t)=>{t.exports=`
7
+ \v\f\r \xA0               \u2028\u2029`}),qn=f((e,t)=>{var n=b(),r=O(),i=jn(),a=Kn(),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)}}),Jn=f((e,t)=>{var n=pt().PROPER,r=_(),i=Kn(),a=`​…᠎`;t.exports=function(e){return r(function(){return!!i[e]()||a[e]()!==a||n&&i[e].name!==e})}}),Yn=f((e,t)=>{var n=qn().start;t.exports=Jn()(`trimStart`)?function(){return n(this)}:``.trimStart}),Xn=f(()=>{var e=Fe(),t=Yn();e({target:`String`,proto:!0,name:`trimStart`,forced:``.trimLeft!==t},{trimLeft:t})}),Zn=f(()=>{Xn();var e=Fe(),t=Yn();e({target:`String`,proto:!0,name:`trimStart`,forced:``.trimStart!==t},{trimStart:t})}),Qn=f((e,t)=>{Zn(),t.exports=nt()(`String`,`trimLeft`)}),$n=f((e,t)=>{t.exports=Qn()}),er=f((e,t)=>{t.exports=$n()}),tr=f((e,t)=>{var n=re(),r=x(),i=Ce()(`match`);t.exports=function(e){var t;return n(e)&&((t=e[i])===void 0?r(e)===`RegExp`:!!t)}}),nr=f((e,t)=>{var n=g(),r=_(),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})}}),rr=f((e,t)=>{var n=Me();t.exports=function(){var e=n(this),t=``;return e.hasIndices&&(t+=`d`),e.global&&(t+=`g`),e.ignoreCase&&(t+=`i`),e.multiline&&(t+=`m`),e.dotAll&&(t+=`s`),e.unicode&&(t+=`u`),e.unicodeSets&&(t+=`v`),e.sticky&&(t+=`y`),t}}),ir=f((e,t)=>{var n=T(),r=xe(),i=oe(),a=nr(),o=rr(),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}}),ar=f((e,t)=>{var n=b(),r=be(),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})}}),or=f(()=>{var e=Fe(),t=T(),n=b(),r=O(),i=C(),a=re(),o=tr(),s=jn(),c=me(),l=ir(),u=ar(),d=Ce(),f=ge(),p=d(`replace`),m=TypeError,h=n(``.indexOf),g=n(``.replace),_=n(``.slice),v=Math.max;e({target:`String`,proto:!0},{replaceAll:function(e,n){var d=r(this),y,b,x,S,C,w,T,E,D,ee,te=0,O=``;if(a(e)){if(y=o(e),y&&(b=s(r(l(e))),!~h(b,`g`)))throw new m("`.replaceAll` does not allow non-global regexes");if(x=c(e,p),x)return t(x,e,d,n);if(f&&y)return g(s(d),e,n)}for(S=s(d),C=s(e),w=i(n),w||(n=s(n)),T=C.length,E=v(1,T),D=h(S,C);D!==-1;)ee=w?s(n(C,D,S)):u(C,S,D,[],void 0,n),O+=_(S,te,D)+ee,te=D+T,D=D+E>S.length?-1:h(S,C,D+E);return te<S.length&&(O+=_(S,te)),O}})}),sr=f((e,t)=>{or(),t.exports=nt()(`String`,`replaceAll`)}),cr=f((e,t)=>{t.exports=sr()}),lr=f((e,t)=>{t.exports=cr()}),ur=f((e,t)=>{var n=Be(),r=jn(),i=O(),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}}),dr=f((e,t)=>{var n=b(),r=He(),i=jn(),a=ur(),o=O(),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)}}),fr=f((e,t)=>{var n=se();t.exports=/Version\/10(?:\.\d+){1,2}(?: [\w./]+)?(?: Mobile\/\w+)? Safari\//.test(n)}),pr=f(()=>{var e=Fe(),t=dr().start;e({target:`String`,proto:!0,forced:fr()},{padStart:function(e){return t(this,e,arguments.length>1?arguments[1]:void 0)}})}),mr=f((e,t)=>{pr(),t.exports=nt()(`String`,`padStart`)}),hr=f((e,t)=>{t.exports=mr()}),gr=f((e,t)=>{t.exports=hr()}),_r={};h(_r,{isMobile:()=>Jr,clientChecker:()=>M,areValidLiveRecordSources:()=>vi,WebmCodecStrategy:()=>ic,VideoQuality:()=>Vd.VideoQuality,VideoFormat:()=>br,VideoCodec:()=>xr,ValueSubject:()=>Vd.ValueSubject,VERSION:()=>vr,Surface:()=>wr,Subscription:()=>Vd.Subscription,Subject:()=>Vd.Subject,SDK_VERSION:()=>Hd,PredefinedQualityLimits:()=>Tr,Player:()=>Bd,PlaybackState:()=>yr,Observable:()=>Vd.Observable,HttpConnectionType:()=>Cr,ChromecastState:()=>Sr}),module.exports=u(_r);var vr=`2.0.156-dev.04ce2cd1.0`,yr;(e=>{e.STOPPED=`stopped`,e.READY=`ready`,e.PLAYING=`playing`,e.PAUSED=`paused`})(yr||={});var br;(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`})(br||={});var xr;(e=>{e.AV1=`av1`,e.VP9=`vp9`,e.AVC1=`avc1`,e.HEV1=`hev1`})(xr||={});var Sr;(e=>{e.NOT_AVAILABLE=`NOT_AVAILABLE`,e.AVAILABLE=`AVAILABLE`,e.CONNECTING=`CONNECTING`,e.CONNECTED=`CONNECTED`})(Sr||={});var Cr;(e=>{e.HTTP1=`http1`,e.HTTP2=`http2`,e.QUIC=`quic`})(Cr||={});var wr;(e=>{e.NONE=`none`,e.INLINE=`inline`,e.FULLSCREEN=`fullscreen`,e.SECOND_SCREEN=`second_screen`,e.PIP=`pip`,e.INVISIBLE=`invisible`})(wr||={});var Tr;(e=>{e.TRAFFIC_SAVING=`traffic_saving`,e.HIGH_QUALITY=`high_quality`,e.UNKNOWN=`unknown`})(Tr||={});var Er=l($e(),1),Dr=l(at(),1),k=require(`@vkontakte/videoplayer-shared/es2024`),Or=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 kr{connection$=new k.ValueSubject(void 0);castState$=new k.ValueSubject(`NOT_AVAILABLE`);errorEvent$=new k.Subject;contentId;realCastState$=new k.ValueSubject(`NOT_AVAILABLE`);subscription=new k.Subscription;log;params;isDestroyed=!1;constructor(e){this.params=e,this.log=this.params.dependencies.logger.createComponentLog(`ChromecastInitializer`);let t=`chrome`in window;if(this.log({message:`[constructor] receiverApplicationId: ${this.params.receiverApplicationId}, isDisabled: ${this.params.isDisabled}, isSupported: ${t}`}),e.isDisabled||!t)return;let n=k.isNonNullable(window.chrome?.cast),r=!!window.__onGCastApiAvailable;n?this.initializeCastApi():(window.__onGCastApiAvailable=e=>{delete window.__onGCastApiAvailable,e&&!this.isDestroyed&&this.initializeCastApi()},r||Or(`https://www.gstatic.com/cv/js/sender/v1/cast_sender.js?loadCastFramework=1`).catch(()=>this.errorEvent$.next({id:`ChromecastLoading`,category:k.ErrorCategory.NETWORK,message:`Script loading failed!`})))}connect(){cast.framework.CastContext.getInstance()?.requestSession()}disconnect(){cast.framework.CastContext.getInstance()?.getCurrentSession()?.endSession(!0)}stopMedia(){return new Promise((e,t)=>{cast.framework.CastContext.getInstance()?.getCurrentSession()?.getMediaSession()?.stop(new chrome.cast.media.StopRequest,e,t)})}toggleConnection(){k.isNonNullable(this.connection$.getValue())?this.disconnect():this.connect()}setVolume(e){let t=this.connection$.getValue();k.isNullable(t)||(t.remotePlayer.volumeLevel=e,t.remotePlayerController.setVolumeLevel())}setMuted(e){let t=this.connection$.getValue();k.isNullable(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(k.fromEvent(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:this.contentId=n.getCurrentSession()?.getMediaSession()?.media?.contentId;break;case cast.framework.SessionState.NO_SESSION:case cast.framework.SessionState.SESSION_ENDING:case cast.framework.SessionState.SESSION_ENDED:case cast.framework.SessionState.SESSION_START_FAILED:this.contentId=void 0;break;default:return k.assertNever(e.sessionState)}})).add(k.merge(k.fromEvent(n,cast.framework.CastContextEventType.CAST_STATE_CHANGED).pipe(k.tap(e=>{this.log({message:`[cast.framework.RemotePlayerEventType.CAST_STATE_CHANGED]: ${JSON.stringify(e)}`})}),k.map(e=>e.castState)),k.observableFrom([n.getCastState()])).pipe(k.filterChanged(),k.map(Ar),k.tap(e=>{this.log({message:`realCastState$: ${e}`})})).subscribe(this.realCastState$)).add(this.realCastState$.subscribe(r=>{let i=r===`CONNECTED`,a=k.isNonNullable(this.connection$.getValue());if(i&&!a){let r=n.getCurrentSession();k.assertNonNullable(r);let i=r.getCastDevice(),a=r.getMediaSession()?.media?.contentId;(k.isNullable(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`?k.isNonNullable(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:k.ErrorCategory.EXTERNAL_API,message:`[initializeCastApi] failed`,thrown:e})}}}var Ar=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 k.assertNever(e)}},A=require(`@vkontakte/videoplayer-shared/es2024`),jr=require(`@vkontakte/videoplayer-shared/es2024`),Mr=require(`@vkontakte/videoplayer-shared/es2024`),Nr=(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:Mr.assertNever(n)}return e},Pr=(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:Mr.assertNever(t)}},Fr=e=>{let{source:t,format:n,meta:r,output:i}=e,a,o,s;switch(n){case`MPEG`:{let e=t[n];jr.assertNonNullable(e);let r=jr.getHighestQuality(Object.keys(e));jr.assertNonNullable(r);let i=e[r];jr.assertNonNullable(i),a=i,o=`video/mp4`,s=Ir();break}case`HLS`:case`HLS_FMP4`:case`HLS_ONDEMAND`:{let e=t[n];jr.assertNonNullable(e),a=e.url,o=`application/x-mpegurl`,s=Ir();break}case`DASH_SEP`:case`DASH_ONDEMAND`:case`DASH_WEBM`:case`DASH_WEBM_AV1`:case`DASH_STREAMS`:{let e=t[n];jr.assertNonNullable(e),a=e.url,o=`application/dash+xml`,s=Ir();break}case`DASH_LIVE_CMAF`:{let e=t[n];jr.assertNonNullable(e),a=e.url,o=`application/dash+xml`,s=Lr();break}case`HLS_LIVE`:case`HLS_LIVE_CMAF`:{let e=t[n];jr.assertNonNullable(e),a=Nr(e.url),o=`application/x-mpegurl`,s=Lr();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.ErrorCategory.VIDEO_PIPELINE,message:e,thrown:t}),t}case`DASH`:case`DASH_LIVE_WEBM`:throw Error(`${n} is no longer supported`);default:return jr.assertNever(n)}let c=Rr(r.videoId??a,o);c.contentUrl=a,c.streamType=s,c.metadata=zr();let{title:l,subtitle:u}=r;return jr.isNonNullable(l)&&(c.metadata.title=l),jr.isNonNullable(u)&&(c.metadata.subtitle=u),c};function Ir(){return chrome.cast?.media?.StreamType?.BUFFERED??`BUFFERED`}function Lr(){return chrome.cast?.media?.StreamType?.LIVE??`LIVE`}function Rr(e,t){return chrome.cast?.media?.MediaInfo?new chrome.cast.media.MediaInfo(e,t):{contentId:e,contentType:t,metadata:{title:``,subtitle:``},streamType:Ir()}}function zr(){return chrome.cast?.media?.GenericMediaMetadata?new chrome.cast.media.GenericMediaMetadata:{images:[],metadataType:0,releaseDate:``,subtitle:``,title:``,releaseYear:1970,type:0}}var j=(e,t,n=!1)=>{let r=e.getTransition();(n||!r||r.to===t)&&e.setState(t)};class Br{params;interval=0;startVideoPosition;startTs;constructor(e){this.params=e}start(e=0){clearInterval(this.interval),this.startVideoPosition=e,this.startTs=Date.now(),this.interval=window.setInterval(()=>{let e=(Date.now()-this.startTs)/1e3,t=this.startVideoPosition+e;this.params.output.position$.next(t)},1e3)}pause(){clearInterval(this.interval)}destroy(){clearInterval(this.interval)}}var Vr=require(`@vkontakte/videoplayer-shared/es2024`),Hr=require(`@vkontakte/videoplayer-shared/es2024`),Ur=l(at(),1),Wr=require(`@vkontakte/videoplayer-shared/es2024`);class Gr{_current;_current_version;_chromeVersion;_firefoxVersion;_safariVersion;_operaVersion;_edgeVersion;_yandexVersion;_isMiuiBrowser=!1;get current(){return this._current}get isChrome(){return this.current===`Chrome`}get isChromiumBased(){return Ur.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}=Wr.getWindow().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 Kr=l(at(),1),qr=require(`@vkontakte/videoplayer-shared/es2024`),Jr=()=>/Mobile|mini|Fennec|Android|iP(ad|od|hone)/.test(navigator.appVersion??navigator.userAgent)||navigator?.userAgentData?.mobile;class Yr{_displayChecker;_isMobile;_current;_iosVersion;_highEntropyValues={};_os={name:`Unknown`,version:`Unknown`,full:`Unknown`};_details={vendor:`Unknown`,model:`Unknown`};constructor(e){this._displayChecker=e}get current(){return this._current}get os(){return this._os}get details(){return this._details}get isIOS(){return this._highEntropyValues.platform===`iOS`||this.os.name.toLowerCase().includes(`ios`)||Kr.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=qr.getWindow();if(!qr.isBrowserWindow(e))return;let{userAgent:t}=e.navigator;try{this._isMobile=Jr()}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=qr.getWindow();if(!qr.isBrowserWindow(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=qr.getWindow();if(!qr.isBrowserWindow(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)}}}var Xr=require(`@vkontakte/videoplayer-shared/es2024`);class Zr{_maxTouchPoints;_height;_width;_isHdr;_pixelRatio;_screenHeight;_screenWidth;_colorDepth;get isTouch(){return typeof this._maxTouchPoints==`number`?this._maxTouchPoints>1:`ontouchstart`in Xr.getWindow()}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=Xr.getWindow();if(!Xr.isBrowserWindow(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)}}}var Qr=require(`@vkontakte/videoplayer-shared/es2024`),$r=()=>window.ManagedMediaSource||window.MediaSource,ei=()=>!!(window.ManagedMediaSource&&window.ManagedSourceBuffer?.prototype?.appendBuffer),ti=()=>!!(window.MediaSource&&window.SourceBuffer?.prototype?.appendBuffer),ni=()=>window.ManagedMediaSource?new ManagedMediaSource:new MediaSource,ri=Qr.getWindow().document?.createElement(`video`),ii=`video/mp4; codecs="avc1.42000a,mp4a.40.2"`,ai=`video/mp4; codecs="hev1.1.6.L93.B0"`,oi=`video/webm; codecs="vp09.00.10.08"`,si=`video/webm; codecs="av01.0.00M.08"`,ci=`audio/mp4; codecs="mp4a.40.2"`,li=`audio/webm; codecs="opus"`,ui;(async()=>{let e=Qr.getWindow();if(!Qr.isBrowserWindow(e)||!(`mediaCapabilities`in e.navigator))return;let t={type:`media-source`,video:{contentType:`video/webm`,width:1280,height:720,bitrate:1e6,framerate:30}},[n,r]=await Promise.all([e.navigator.mediaCapabilities.decodingInfo({...t,video:{...t.video,contentType:si}}),e.navigator.mediaCapabilities.decodingInfo({...t,video:{...t.video,contentType:oi}})]);ui={DASH_WEBM_AV1:n,DASH_WEBM:r}})().catch(e=>{console.log(ri),console.error(e)});class di{_video;_deviceChecker;_browserChecker;_protocols;_containers;_codecs;_nativeHlsSupported;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 ui}get supportedCodecs(){return Object.keys(this._codecs).filter(e=>this._codecs[e])}get nativeHlsSupported(){return this._nativeHlsSupported}detect(){let e=Qr.getWindow();if(Qr.isBrowserWindow(e)){this._video=e.document.createElement(`video`);try{this._protocols={mms:ei(),mse:ti(),hls:!!(this._video.canPlayType?.(`application/x-mpegurl`)||this._video.canPlayType?.(`vnd.apple.mpegURL`)),webrtc:!!e.RTCPeerConnection,ws:!!e.WebSocket},this._containers={mp4:!!this._video.canPlayType?.(`video/mp4`),webm:!!this._video.canPlayType?.(`video/webm`),cmaf:!0};let t=!!$r()?.isTypeSupported?.(ii),n=!!$r()?.isTypeSupported?.(ai),r=!!$r()?.isTypeSupported?.(ci);this._codecs={h264:t,h265:n,vp9:!!$r()?.isTypeSupported?.(oi),av1:!!$r()?.isTypeSupported?.(si),aac:r,opus:!!$r()?.isTypeSupported?.(li),mpeg:(t||n)&&r},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}}var fi=require(`@vkontakte/videoplayer-shared/es2024`),pi=`audio/mpeg`;class mi{_audio;_containers;_codecs;supportMp3(){return this._codecs.mp3&&this._containers.mpeg}detect(){let e=fi.getWindow();if(fi.isBrowserWindow(e)){this._audio=e.document.createElement(`audio`);try{this._containers={mpeg:!!this._audio.canPlayType?.(pi)},this._codecs={mp3:!!$r()?.isTypeSupported?.(pi)}}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 hi{isInited$=new Hr.ValueSubject(!1);_displayChecker;_deviceChecker;_browserChecker;_videoChecker;_audioChecker;constructor(){this._displayChecker=new Zr,this._deviceChecker=new Yr(this._displayChecker),this._browserChecker=new Gr,this._videoChecker=new di(this._deviceChecker,this._browserChecker),this._audioChecker=new mi,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(){Hr.isBrowserWindow()&&(this._displayChecker.detect(),this._deviceChecker.detect(),this._browserChecker.detect(),this._videoChecker.detect(),this._audioChecker.detect(),this.isInited$.next(!0))}}var M=new hi,gi=e=>{let{containers:t,protocols:n,codecs:r,nativeHlsSupported:i}=M.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 Vr.assertNever(e)}})},_i=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 Vr.assertNever(e)}},vi=e=>gi(Object.keys(e).filter(e=>!_i(e))).length>0;class yi{subscription=new A.Subscription;log;params;sessionId$=new A.ValueSubject(null);mediaSessionId$=new A.ValueSubject(null);contentId$=new A.ValueSubject(null);progressTicker;isMobile=Jr();mobileVolumeState={muted:!1,volume:0};media=null;lastRequestedVolume=null;constructor(e){this.params=e,this.progressTicker=new Br(e),this.log=this.params.dependencies.logger.createComponentLog(`ChromecastPresentationApiProvider`),this.log({message:`constructor, format: ${e.format}`}),this.params.output.isLive$.next(_i(e.format)),this.subscribe()}subscribe(){let e=e=>{this.params.output.error$.next({category:A.ErrorCategory.WTF,id:`ChromecastPresentationApiProvider`,message:e?.message??`Unknown error`,thrown:e})};this.subscription.add(this.params.chromecastConnector.message$.pipe(A.filter(e=>!!e)).subscribe(e=>{this.handleMessage(e)},e)),this.subscription.add(this.sessionId$.pipe(A.filter(A.isNonNullable),A.filterChanged(),A.debounce(0)).subscribe(()=>{this.loadMedia()},e));let t=this.contentId$.pipe(A.filterChanged(),A.map(Boolean));this.subscription.add(A.combine({seekState:this.params.desiredState.seekState.stateChangeEnded$,mediaLoaded:t}).pipe(A.filter(({mediaLoaded:e})=>e)).subscribe(()=>{let e=this.params.desiredState.seekState.getState();e.state===`requested`&&this.seek(e.position/1e3)},e));let n=A.combine({playbackState:this.params.desiredState.playbackState.stateChangeStarted$,mediaLoaded:t});this.subscription.add(n.pipe(A.filter(({mediaLoaded:e})=>e),A.debounce(0)).subscribe(()=>{this.syncPlayback()},e)),this.subscription.add(n.pipe(A.filter(({mediaLoaded:e,playbackState:{from:t,to:n}})=>!e&&t===`stopped`&&n===`playing`)).subscribe(()=>{this.loadMedia()},e)),this.subscription.add(A.combine({volumeState:this.params.desiredState.volume.stateChangeStarted$.pipe(A.debounce(30)),mediaLoaded:t}).pipe(A.filter(({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`:{this.sessionId$.next(e.message.sessionId);let t=e.message?.media?.[0];this.syncMediaState(t);let n=e.message?.receiver.volume;this.syncVolumeState(n)}break;case`v2_message`:switch(e.message?.type){case`MEDIA_STATUS`:{let t=e.message?.status?.[0];this.syncMediaState(t);break}}break}}loadMedia(){let e=Fr(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();A.assertNonNullable(e,`play on null mediaSessionId`),this.params.chromecastConnector.sendV2Message({type:`PLAY`,mediaSessionId:e,customData:null})}pause(){let e=this.mediaSessionId$.getValue();A.assertNonNullable(e,`pause on null mediaSessionId`),this.params.chromecastConnector.sendV2Message({type:`PAUSE`,mediaSessionId:e,customData:null})}seek(e){let t=this.mediaSessionId$.getValue();A.assertNonNullable(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`:j(this.params.desiredState.playbackState,`paused`);break;case`PLAYING`:j(this.params.desiredState.playbackState,`playing`);break;case`IDLE`:t===`FINISHED`?(this.params.output.endedEvent$.next(),j(this.params.desiredState.playbackState,`stopped`),this.contentId$.next(null)):j(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}}syncMediaState=e=>{if(A.isNullable(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;A.isNonNullable(n)&&this.params.output.duration$.next(Math.max(0,n));let r=e.currentTime;if(A.isNonNullable(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()}};syncVolumeState(e){if(A.isNullable(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()}}var N=require(`@vkontakte/videoplayer-shared/es2024`),bi=e=>({castDevice:{friendlyName:e},remotePlayer:{},remotePlayerController:{},session:{}}),xi=()=>String(Date.now())+String(Math.floor(Math.random()*1e5));class Si{params;clientId;capabilities=[`WEB`];presentationRequest$=new N.ValueSubject(null);log;sessionId$=new N.ValueSubject(null);broadcastChannel=new BroadcastChannel(`vk_player_chromecast_events`);subscription=new N.Subscription;subscriptionEvents=new N.Subscription;isDestroyed=!1;sequenceNumber=0;presentationAvailable$=new N.ValueSubject(!1);presentationConnection$=new N.ValueSubject(null);message$=new N.ValueSubject(null);friendlyName$=new N.ValueSubject(null);errorEvent$=new N.Subject;constructor(e){this.clientId=this.getClientId(),this.params=e,this.log=e.logger.createComponentLog(`ChromecastPresentationApiConnector`),this.log({message:`constructor`}),this.safeReinitPresentation(),this.subscribe()}destroy(){this.log({message:`destroy`}),this.subscription.unsubscribe(),this.subscriptionEvents.unsubscribe(),this.broadcastChannel.close(),this.isDestroyed=!0}disconnect(e=!0){this.log({message:`disconnect`}),e&&this.stopMedia(),this.presentationRequest$.next(null);let t=this.presentationConnection$.getValue();t&&t.close(),this.presentationConnection$.next(null),this.friendlyName$.next(null),this.resetSequenceNumber(),this.resetSubscriptionEvents()}stopMedia(){this.log({message:`stopMedia`}),this.sendV2Message({type:`STOP`})}reinitPresentation(e=!0){let t=this.createCastUrl(),n=new PresentationRequest(t);this.presentationRequest$.next(n),this.log({message:`PresentationRequest created`}),n.getAvailability().then(e=>{let t=()=>{this.log({message:`PresentationRequest presentation availability: ${e.value}`}),this.presentationAvailable$.next(e.value)};this.subscriptionEvents.add(N.fromEvent(e,`change`).subscribe(()=>{t()})),t()}).catch(()=>{this.presentationAvailable$.next(!0)}),N.getWindow().navigator.presentation.defaultRequest=n,e&&n.reconnect(`auto-join`).then(e=>{this.log({message:`PresentationRequest reconnect success`}),this.handleConnection(e)}).catch(()=>{this.log({message:`PresentationRequest reconnect failed`})})}safeReinitPresentation(e){try{this.reinitPresentation(e)}catch(e){this.errorEvent$.next({category:N.ErrorCategory.WTF,id:`ChromecastPresentationApiConnector`,message:e?.message??`reinitPresentation error`,thrown:e})}}async connect(){this.log({message:`connect`});try{this.presentationRequest$.getValue()||(this.log({message:`reinitPresentation`}),this.reinitPresentation(!1));let e=this.presentationRequest$.getValue();N.assertNonNullable(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:N.ErrorCategory.WTF,id:`ChromecastPresentationApiConnector`,message:e?.message??`connect error`,thrown:e});break}}}subscribe(){this.subscription.add(N.fromEvent(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(N.tap(e=>{this.log({message:`presentationConnection$: ${!!e}`})}),N.filter(e=>!!e)).subscribe(e=>{let t=N.fromEvent(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=N.fromEvent(e,`connect`).subscribe(()=>{this.send(`client_connect`)}),r=N.fromEvent(e,`close`).subscribe(e=>{switch(e.reason){case`error`:this.errorEvent$.next({category:N.ErrorCategory.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:N.ErrorCategory.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 N.getWindow()[e]=N.getWindow()[e]||xi()}resetSubscriptionEvents(){this.subscriptionEvents.unsubscribe(),this.subscriptionEvents=new N.Subscription}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))}}var Ci=require(`@vkontakte/videoplayer-shared/es2024`);class wi{subscription=new Ci.Subscription;log;contentId;connection$=new Ci.ValueSubject(void 0);castState$=new Ci.ValueSubject(`NOT_AVAILABLE`);errorEvent$=new Ci.Subject;chromecastConnector;static isSupported(){return`chrome`in window&&`presentation`in navigator&&`BroadcastChannel`in window}constructor(e){let t=wi.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 Si({appId:e.receiverApplicationId,logger:e.dependencies.logger}),this.subscribe())}subscribe(){Ci.assertNonNullable(this.chromecastConnector,`subscribe with null chromecastConnector`),this.subscription.add(this.chromecastConnector.errorEvent$.subscribe(this.errorEvent$));let e=Ci.combine({connection:this.chromecastConnector.presentationConnection$,available:this.chromecastConnector.presentationAvailable$,friendlyName:this.chromecastConnector.friendlyName$.pipe(Ci.filterChanged())});this.subscription.add(e.pipe(Ci.map(({connection:e,friendlyName:t})=>!!(e&&t)),Ci.filterChanged()).subscribe(e=>{let t=this.chromecastConnector?.friendlyName$.getValue()??``;this.connection$.next(e?bi(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 Ti=l(at(),1),Ei=(e,...t)=>typeof e==`string`?e.includes(...t):Ti.default(e,...t),Di=l(lt(),1),Oi=l(Ht(),1),ki=l(En(),1),Ai=require(`@vkontakte/videoplayer-shared/es2024`);class P{state;prevState;transition;transitionStarted$=new Ai.Subject;transitionEnded$=new Ai.Subject;transitionUpdated$=new Ai.Subject;forceChanged$=new Ai.Subject;stateChangeStarted$=Ai.merge(this.transitionStarted$,this.transitionUpdated$);stateChangeEnded$=Ai.merge(this.transitionEnded$,this.forceChanged$);constructor(e){this.state=e,this.prevState=void 0}setState(e){let t=this.transition,n=this.state;this.transition=void 0,this.prevState=n,this.state=e,t?t.to===e?this.transitionEnded$.next(t):this.forceChanged$.next({from:t.from,to:e,canceledTransition:t}):this.forceChanged$.next({from:n,to:e,canceledTransition:t})}startTransitionTo(e){let t=this.transition,n=this.state;n===e||Ai.isNonNullable(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}}var F=require(`@vkontakte/videoplayer-shared/es2024`),ji=5,Mi=5,Ni=500,Pi=7e3;class Fi{subscription=new F.Subscription;loadMediaTimeoutSubscription=new F.Subscription;videoState=new P(`stopped`);params;log;constructor(e){this.params=e,this.log=this.params.dependencies.logger.createComponentLog(`ChromecastProvider`),this.log({message:`constructor, format: ${e.format}`}),this.params.output.isLive$.next(_i(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 F.Subscription;this.subscription.add(e),this.subscription.add(F.merge(this.videoState.stateChangeStarted$.pipe(F.map(e=>`stateChangeStarted$ ${JSON.stringify(e)}`)),this.videoState.stateChangeEnded$.pipe(F.map(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 F.Subject;e.add(t.pipe(F.debounce(Ni)).subscribe(()=>{this.params.output.seekedEvent$.next()}));let n=NaN;e.add(F.fromEvent(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)>ji)&&t.next(r),n=r})),e.add(F.fromEvent(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.DURATION_CHANGED).subscribe(e=>{this.logRemoteEvent(e),this.params.output.duration$.next(e.value)}))}t(F.fromEvent(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_MEDIA_LOADED_CHANGED),t=>{this.logRemoteEvent(t),t.value?this.handleRemoteReady():(this.handleRemoteStop(),e.unsubscribe())}),t(F.fromEvent(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_PAUSED_CHANGED),e=>{this.logRemoteEvent(e),e.value?this.handleRemotePause():this.handleRemotePlay()}),t(F.fromEvent(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<Mi&&this.params.output.endedEvent$.next(),this.handleRemoteStop(),j(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:F.assertNever(n)}}),t(F.fromEvent(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.VOLUME_LEVEL_CHANGED),e=>{this.logRemoteEvent(e),this.handleRemoteVolumeChange({volume:e.value})}),t(F.fromEvent(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_MUTED_CHANGED),e=>{this.logRemoteEvent(e),this.handleRemoteVolumeChange({muted:e.value})}),t(F.merge(this.params.desiredState.playbackState.stateChangeStarted$,this.params.desiredState.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,F.observableFrom([`init`])).pipe(F.debounce(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`),j(this.params.desiredState.playbackState,`paused`)):(this.videoState.setState(`playing`),j(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=Fr(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`),j(this.params.desiredState.playbackState,`paused`))}handleRemotePlay(){let e=this.videoState.getState();(this.videoState.getTransition()?.to===`playing`||e===`paused`)&&(this.videoState.setState(`playing`),j(this.params.desiredState.playbackState,`playing`))}handleRemoteReady(){this.videoState.getTransition()?.to===`ready`&&this.videoState.setState(`ready`),this.params.desiredState.playbackState.getTransition()?.to===`ready`&&j(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(F.timeout(Pi).subscribe(()=>t(`timeout(${Pi})`)))});ki.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:F.ErrorCategory.VIDEO_PIPELINE,message:t,thrown:e})}),()=>{this.loadMediaTimeoutSubscription.unsubscribe()})}logRemoteEvent(e){this.log({message:`[remoteEvent] ${JSON.stringify(e)}`})}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:F.assertNever(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:F.assertNever(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:F.assertNever(e)}break;default:F.assertNever(n)}}}}var Ii=l(at(),1),Li=require(`@vkontakte/videoplayer-shared/es2024`),Ri=require(`@vkontakte/videoplayer-shared/es2024`),zi=(e,t)=>{try{e.pause(),e.playbackRate=0,Ri.clearVideoElement(e,t),e.remove()}catch(e){console.error(e)}},Bi=require(`@vkontakte/videoplayer-shared/es2024`),Vi=`__spvc`;class Hi{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 Ui=Li.getWindow(),Wi=Ui.WeakMap?new Ui.WeakMap:new Hi,Gi=Ui.WeakMap?new Ui.WeakMap:new Map,Ki=(e,t=20)=>{let n=0;return Bi.fromEvent(e,`ratechange`).subscribe(r=>{n++,n>=t&&(e.currentTime=e.currentTime,n=0)})};function qi(e){e.style.position=`fixed`,e.style.left=`100%`,e.setAttribute(`data-role`,`screen`),Li.getWindow().document.body.appendChild(e)}function Ji(e,t){e.style.position=``,e.style.left=``,t.appendChild(e)}var Yi=(e,{audioVideoSyncRate:t,disableYandexPiP:n,clearVideoElementInnerHTML:r,reuseOwnVideoElement:i})=>{let a,o=e.querySelector(`video`),s=!!o,c=Li.getWindow().document.querySelector(`body > video[data-role=screen]`)||void 0;i?Ui[Vi]=c:(c?.remove(),delete Ui[Vi]),o?(a=o,Li.clearVideoElement(a,r)):c&&c===Ui[Vi]?(a=c,Ji(a,e)):(a=Li.getWindow().document.createElement(`video`),e.appendChild(a),i&&(Ui[Vi]=a)),Wi.set(a,s);let l=new Bi.Subscription;return l.add(Ki(a,t)),Gi.set(a,l),a.setAttribute(`crossorigin`,`anonymous`),a.setAttribute(`playsinline`,`playsinline`),n&&a.setAttribute(`x-yandex-pip`,`false`),a.controls=!1,a.setAttribute(`poster`,`data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=`),a},Xi=(e,{keepVideoElement:t,clearVideoElementInnerHTML:n,reuseOwnVideoElement:r})=>{Gi.get(e)?.unsubscribe(),Gi.delete(e);let i=Wi.get(e);Wi.delete(e),i||t?Li.clearVideoElement(e,n):r?(Li.clearVideoElement(e,n),qi(e)):zi(e,n)},Zi=l($e(),1),I=require(`@vkontakte/videoplayer-shared/es2024`),Qi=require(`@vkontakte/videoplayer-shared/es2024`),$i=(e,t,n,{equal:r=(e,t)=>e===t,changed$:i,onError:a}={})=>{let o=e.getState(),s=t(),c=Qi.isNullable(i),l=new Qi.Subscription;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},ea=(e,t,n)=>$i(t,()=>e.loop,t=>{Qi.isNonNullable(t)&&(e.loop=t)},{onError:n}),ta=(e,t,n,r,i)=>$i(t,()=>({muted:e.muted,volume:e.volume}),t=>{i?.skipVideoElVolumeSync$.getValue()||Qi.isNonNullable(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}),na=(e,t,n,r)=>$i(t,()=>e.playbackRate,t=>{Qi.isNonNullable(t)&&(e.playbackRate=t)},{changed$:n,onError:r}),ra=$i,ia=e=>[`__`,e.language,e.label].join(`|`),aa=(e,t)=>{if(e.id===t)return!0;let[n,r,i]=t.split(`|`);return e.language===r&&e.label===i};class oa{available$=new I.Subject;current$=new I.ValueSubject(void 0);error$=new I.Subject;video;cueSettings;subscription=new I.Subscription;externalTracks=new Map;internalTracks=new Map;baseURL;constructor(e){this.baseURL=e}connect(e,t,n){this.video=e,this.cueSettings=t.textTrackCuesSettings,this.subscribe();let r=e=>{this.error$.next({id:`TextTracksManager`,category:I.ErrorCategory.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(ra(t.internalTextTracks,()=>Zi.default(this.internalTracks),e=>{I.isNonNullable(e)&&this.setInternal(e)},{equal:(e,t)=>I.isNonNullable(e)&&I.isNonNullable(t)&&e.length===t.length&&e.every(({id:e},n)=>e===t[n].id),changed$:this.available$.pipe(I.map(e=>e.filter(({type:e})=>e===`internal`))),onError:r})),this.subscription.add(ra(t.externalTextTracks,()=>Zi.default(this.externalTracks),e=>{I.isNonNullable(e)&&this.setExternal(e)},{equal:(e,t)=>I.isNonNullable(e)&&I.isNonNullable(t)&&e.length===t.length&&e.every(({id:e},n)=>e===t[n].id),changed$:this.available$.pipe(I.map(e=>e.filter(({type:e})=>e===`external`))),onError:r})),this.subscription.add(ra(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(ra(t.textTrackCuesSettings,()=>({}),()=>{if(this.video)for(let e of this.htmlTextTracksAsArray())this.applyCueSettings(e.cues),this.applyCueSettings(e.activeCues)}))}subscribe(){I.assertNonNullable(this.video);let{textTracks:e}=this.video;this.subscription.add(I.fromEvent(e,`addtrack`).subscribe(()=>{let e=this.current$.getValue();e&&this.select(e)})),this.subscription.add(I.merge(I.fromEvent(e,`addtrack`),I.fromEvent(e,`removetrack`),I.observableFrom([`init`])).pipe(I.map(()=>this.htmlTextTracksAsArray().map(e=>this.htmlTextTrackToITextTrack(e))),I.filterChanged((e,t)=>e.length===t.length&&e.every(({id:e},n)=>e===t[n].id))).subscribe(this.available$)),this.subscription.add(I.merge(I.fromEvent(e,`change`),I.observableFrom([`init`])).pipe(I.map(()=>this.htmlTextTracksAsArray().find(({mode:e})=>e===`showing`)),I.map(e=>e&&this.htmlTextTrackToITextTrack(e).id),I.filterChanged()).subscribe(this.current$));let t=e=>this.applyCueSettings(e.target?.activeCues??null);this.subscription.add(I.fromEvent(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(I.fromEvent(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;I.isNonNullable(t.align)&&(e.align=t.align),I.isNonNullable(t.position)&&(e.position=t.position),I.isNonNullable(t.size)&&(e.size=t.size),I.isNonNullable(t.line)&&(e.line=t.line)}}htmlTextTracksAsArray(e=!1){I.assertNonNullable(this.video);let t=[...this.video.textTracks];return e?t:t.filter(oa.isHealthyTrack)}htmlTextTrackToITextTrack(e){let{language:t,label:n}=e,r=e.id?e.id:ia(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){I.assertNonNullable(this.video);for(let e of this.htmlTextTracksAsArray(!0))e.mode=`showing`;for(let t of this.htmlTextTracksAsArray(!0))(I.isNullable(e)||!aa(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){I.assertNonNullable(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){I.assertNonNullable(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 sa=oa;class ca{pausedTime=0;streamOffset=0;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 la=e=>{let t=e;for(;!(t instanceof Document)&&!(t instanceof ShadowRoot)&&t!==null;)t=t?.parentNode;return t??void 0},ua=e=>{let t=la(e);return!!(t&&t.fullscreenElement&&t.fullscreenElement===e)},da=e=>{let t=la(e);return!!(t&&t.pictureInPictureElement&&t.pictureInPictureElement===e)},L=require(`@vkontakte/videoplayer-shared/es2024`),fa=3,pa=(e,t,n=fa)=>{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}},ma=e=>{let t=t=>L.fromEvent(e,t).pipe(L.mapTo(void 0),L.shareReplay(1)),n=new L.Subscription,r=()=>n.unsubscribe(),i=L.merge(L.fromEvent(e,`progress`),L.fromEvent(e,`timeupdate`)).pipe(L.map(()=>pa(e.buffered,e.currentTime)),L.shareReplay(1)),a=M.browser.isSafari?L.combine({play:t(`play`).pipe(L.once()),playing:t(`playing`)}).pipe(L.mapTo(void 0),L.shareReplay(1)):t(`playing`),o=L.fromEvent(e,`volumechange`).pipe(L.map(()=>({muted:e.muted,volume:e.volume})),L.shareReplay(1)),s=L.fromEvent(e,`ratechange`).pipe(L.map(()=>e.playbackRate),L.shareReplay(1)),c=L.fromEvent(e,`error`).pipe(L.filter(()=>!!(e.error||e.played.length)),L.map(()=>{let t=e.error;return{id:t?`MediaError#${t.code}`:`HtmlVideoError`,category:L.ErrorCategory.VIDEO_PIPELINE,message:t?t.message:`Error event from HTML video element`,thrown:e.error??void 0}}),L.shareReplay(1)),l=L.fromEvent(e,`timeupdate`).pipe(L.map(()=>e.currentTime),L.shareReplay(1)),u=[`waiting`,`seeking`,`seeked`,`timeupdate`],d=new L.Subject,f=.3,p;n.add(L.merge(...u.map(t=>L.fromEvent(e,t))).subscribe(t=>{let n=e.currentTime;e.loop&&L.isNonNullable(p)&&L.isNonNullable(n)&&p>=e.duration-f&&n<=f&&d.next(p),p=n}));let m=t(`pause`).pipe(L.filter(()=>!e.error&&p!==e.duration),L.shareReplay(1)),h=L.fromEvent(e,`enterpictureinpicture`).pipe(L.shareReplay(1)),g=L.fromEvent(e,`leavepictureinpicture`).pipe(L.shareReplay(1)),_=new L.ValueSubject(da(e));n.add(h.subscribe(()=>_.next(!0))),n.add(g.subscribe(()=>_.next(!1)));let v=new L.ValueSubject(ua(e)),y=L.fromEvent(e,`fullscreenchange`).pipe(L.shareReplay(1));n.add(y.pipe(L.map(()=>ua(e))).subscribe(v));let b=L.fromEvent(e,`timeupdate`).pipe(L.map(t=>e.duration-e.currentTime<.1),L.filterChanged(),L.shareReplay(1)),x=L.merge(b.pipe(L.filter(t=>!e.loop&&t)),L.fromEvent(e,`ended`)).pipe(L.throttle(1e3),L.mapTo(void 0),L.shareReplay(1)),S=L.merge(...[`waiting`,`pause`,`canplay`,`play`,`canplaythrough`,`playing`,`seeking`,`seeked`,`ended`].map(t=>L.fromEvent(e,t)),b.pipe(L.map(e=>({type:e?`ended`:`unknown`})))).pipe(L.map(t=>M.browser.isFirefox&&t.type===`ended`?e.readyState<2:e.readyState<3),L.filterChanged(),L.shareReplay(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$:L.fromEvent(e,`durationchange`).pipe(L.map(()=>e.duration),L.shareReplay(1)),isBuffering$:S,currentBuffer$:i,volumeState$:o,playbackRateState$:s,inPiP$:_,inFullscreen$:v,enterPip$:h,leavePip$:g,destroy:r}},ha=require(`@vkontakte/videoplayer-shared/es2024`),ga=e=>{switch(e){case`mobile`:return ha.VideoQuality.Q_144P;case`lowest`:return ha.VideoQuality.Q_240P;case`low`:return ha.VideoQuality.Q_360P;case`sd`:case`medium`:return ha.VideoQuality.Q_480P;case`hd`:case`high`:return ha.VideoQuality.Q_720P;case`fullhd`:case`full`:return ha.VideoQuality.Q_1080P;case`quadhd`:case`quad`:return ha.VideoQuality.Q_1440P;case`ultrahd`:case`ultra`:return ha.VideoQuality.Q_2160P}},_a=l(An(),1),va=l(at(),1),ya=l(lt(),1),R=require(`@vkontakte/videoplayer-shared/es2024`),ba=!1,xa={},Sa=e=>{ba=e},Ca=()=>{xa={}},wa=e=>{e(xa)},Ta=(e,t)=>{ba&&(xa.meta=xa.meta??{},xa.meta[e]=t)};class Ea{name;constructor(e){this.name=e}next(e){if(!ba)return;xa.series=xa.series??{};let t=xa.series[this.name]??[];t.push([Date.now(),e]),xa.series[this.name]=t}}var Da=require(`@vkontakte/videoplayer-shared/es2024`);function Oa(e,t,n){return!e.max&&e.min===t?`high_quality`:!e.min&&e.max===n?`traffic_saving`:`unknown`}function ka(e,t,n){return Da.isNullable(e)||Da.isNonNullable(e.min)&&Da.isNonNullable(e.max)&&Da.isLower(e.max,e.min)||Da.isNonNullable(e.min)&&Da.isNonNullable(t)&&Da.isHigher(e.min,t)||Da.isNonNullable(e.max)&&Da.isNonNullable(n)&&Da.isLower(e.max,n)}function Aa({limits:e,highestAvailableHeight:t,lowestAvailableHeight:n}){return ka({max:e?.max?Da.videoHeightToQuality(e.max):void 0,min:e?.min?Da.videoHeightToQuality(e.min):void 0},t?Da.videoHeightToQuality(t):void 0,n?Da.videoHeightToQuality(n):void 0)}var ja=new Ea(`best_bitrate`),Ma=(e,t,n)=>(t-n)*2**(-10*e)+n,Na=e=>(t,n)=>e*(Number(t.bitrate)-Number(n.bitrate));class Pa{last;history={};recordSelection(e){this.history[e.id]=R.now()}recordSwitch(e){this.last=e}clear(){this.last=void 0,this.history={}}}var Fa=`Assertion "ABR Tracks is empty array" failed`,Ia=new WeakMap,La=new WeakMap,Ra=new WeakMap,za=(e,t,n,r)=>{let i=[...t].sort(Na(1)),a=[...n].sort(Na(1)),o=a.filter(t=>R.isNonNullable(t.bitrate)&&R.isNonNullable(e.bitrate)?e.bitrate/t.bitrate>r:!0),s=_a.default(a,Math.round(a.length*i.indexOf(e)/(i.length+1)))??_a.default(a,-1);return s&&va.default(o,s)?s:o.length?_a.default(o,-1):_a.default(a,0)},Ba=(e,t,n,r)=>{let i=Ia.get(t);i||(i=[...t].sort(Na(1)),Ia.set(t,i));let a=Ia.get(n);a||(a=[...n].sort(Na(1)),Ia.set(n,a));let o=Ra.get(e);o||(o=a.filter(t=>R.isNonNullable(t.bitrate)&&R.isNonNullable(e.bitrate)?e.bitrate/t.bitrate>r:!0),Ra.set(e,o));let s=_a.default(a,Math.round(a.length*i.indexOf(e)/(i.length+1)))??_a.default(a,-1);return s&&va.default(o,s)?s:o.length?_a.default(o,-1):_a.default(a,0)},Va=e=>`quality`in e,Ha=(e,t,n,r)=>{let i=R.isNonNullable(r?.last?.bitrate)&&R.isNonNullable(n?.bitrate)&&r.last.bitrate<n.bitrate?e.trackCooldownIncreaseQuality:e.trackCooldownDecreaseQuality,a=n&&r&&r.history[n.id]&&R.now()-r.history[n.id]<=i&&(!r.last||n.id!==r.last.id);if(n?.id&&r&&!a&&r.recordSelection(n),a&&r?.last){let e=r.last;return r?.recordSwitch(e),t({message:`
8
+ [last ${Va(e)?`video`:`audio`} selected] ${Va(e)?e.quality:e.bitrate}
9
+ `}),e}return r?.recordSwitch(n),n},Ua=(e,t)=>Math.log(t)/Math.log(e),Wa=({tuning:e,container:t,limits:n,panelSize:r})=>{let i=e.containerSizeFactor;if(r)return{containerSizeLimit:r,containerSizeFactor:i};if(e.usePixelRatio&&M.display.pixelRatio){let t=M.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=Ua(n,r*t+a)+o;Number.isFinite(s)&&(i*=s)}}return R.isNonNullable(n?.min)&&R.isHigherOrEqual(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}},Ga=new WeakMap,Ka=(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})=>{R.assertNotEmptyArray(e,Fa);let{containerSizeFactor:g,containerSizeLimit:_}=Wa({container:t,tuning:r,limits:i,panelSize:h}),v=r.considerPlaybackRate&&R.isNonNullable(s)?s:1,y=Ga.get(e);y||(y=e.filter(e=>!R.isInvariantQuality(e.quality)).sort((e,t)=>R.isHigher(e.quality,t.quality)?-1:1),Ga.set(e,y));let b=_a.default(y,-1)?.quality,x=_a.default(y,0)?.quality,S=ka(i,x,b),C=v*Ma(o??.5,r.bitrateFactorAtEmptyBuffer,r.bitrateFactorAtFullBuffer),w={},T=null;for(let e of y){if(e.tvDisabled){w[e.quality]=`TvDisabled`;continue}let t=!0;if(_)if(e.size)t=e.size.width<=_.width&&e.size.height<=_.height;else{let n=_&&R.videoSizeToQuality(_);t=n?R.isLowerOrEqual(e.quality,n):!0}if(!t){w[e.quality]=`FitsContainer`;continue}let s=p||n,l=R.isNonNullable(s)&&isFinite(s)&&R.isNonNullable(e.bitrate)?s-a>=e.bitrate*C:!0,m=i?.min===e.quality;if(!l&&!m){w[e.quality]=`FitsThroughput`;continue}if(r.lazyQualitySwitch&&R.isNonNullable(r.minBufferToSwitchUp)&&c&&!R.isInvariantQuality(c.quality)&&(o??0)<r.minBufferToSwitchUp&&R.isHigher(e.quality,c.quality)){w[e.quality]=`Buffer`;continue}if(d&&R.isHigherOrEqual(e.quality,d)&&!m){w[e.quality]=`DroppedFramesLimit`;continue}if(f&&R.isHigherOrEqual(e.quality,f)&&!m){w[e.quality]=`StallsLimit`;continue}let h=S||(R.isNullable(i?.max)||R.isLowerOrEqual(e.quality,i.max))&&(R.isNullable(i?.min)||R.isHigherOrEqual(e.quality,i.min)),g=R.isNonNullable(u)&&!u?R.isLowerOrEqual(e.quality,r.backgroundVideoQualityLimit):!0;if(!h||!g){w[e.quality]=`FitsQualityLimits`;continue}T||=e}T&&T.bitrate&&ja.next(T.bitrate);let E=T??_a.default(y,-1)??e[0],D=l?.last,ee=Ha(r,m,E,l);return R.isNonNullable(l)&&ee.quality!==D?.quality&&m({message:`
10
10
  [VIDEO TRACKS ABR]
11
11
  [available video tracks]
12
- ${a.map(k=>`{ id: ${k.id}, quality: ${k.quality}, bitrate: ${k.bitrate}, size: ${k.size?.width}:${k.size?.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,qi.default)(i??{}).map(([k,P])=>`${k}: ${P}`).join(`
16
+ ${ya.default(r??{}).map(([e,t])=>`${e}: ${t}`).join(`
17
17
  `)}
18
18
 
19
19
  [limit params]
20
- containerSizeFactor: ${v},
21
- containerSizeLimit: ${S?.width??0} x ${S?.height??0},
22
- estimatedThroughput: ${t},
23
- stallsPredictedThroughput: ${m},
24
- reserve: ${s},
25
- playbackRate: ${o},
26
- playbackRateFactor: ${E},
27
- forwardBufferHealth: ${n},
28
- bitrateFactor: ${q},
29
- minBufferToSwitchUp: ${i.minBufferToSwitchUp},
30
- droppedVideoMaxQualityLimit: ${l},
31
- stallsVideoMaxQualityLimit: ${p},
32
- limitsAreInvalid: ${N},
33
- maxQualityLimit: ${r?.max},
34
- minQualityLimit: ${r?.min},
20
+ containerSizeFactor: ${g},
21
+ containerSizeLimit: ${_?.width??0} x ${_?.height??0},
22
+ estimatedThroughput: ${n},
23
+ stallsPredictedThroughput: ${p},
24
+ reserve: ${a},
25
+ playbackRate: ${s},
26
+ playbackRateFactor: ${v},
27
+ forwardBufferHealth: ${o},
28
+ bitrateFactor: ${C},
29
+ minBufferToSwitchUp: ${r.minBufferToSwitchUp},
30
+ droppedVideoMaxQualityLimit: ${d},
31
+ stallsVideoMaxQualityLimit: ${f},
32
+ limitsAreInvalid: ${S},
33
+ maxQualityLimit: ${i?.max},
34
+ minQualityLimit: ${i?.min},
35
35
 
36
36
  [limited video tracks]
37
- ${(0,qi.default)(B).map(([k,P])=>`${k}: ${P}`).join(`
38
- `)||"All tracks are available"}
37
+ ${ya.default(w).map(([e,t])=>`${e}: ${t}`).join(`
38
+ `)||`All tracks are available`}
39
39
 
40
- [best video track] ${W?.quality}
41
- [selected video track] ${X?.quality}
42
- `}),X},Bn=(a,{container:e,estimatedThroughput:t,tuning:i,limits:r,reserve:s=0,forwardBufferHealth:n,playbackRate:o,current:u,history:c,visible:d,droppedVideoMaxQualityLimit:l,stallsVideoMaxQualityLimit:p,stallsPredictedThroughput:m,abrLogger:f,panelSize:g})=>{(0,$.assertNotEmptyArray)(a,Cn);let{containerSizeFactor:v,containerSizeLimit:S}=ng({container:e,tuning:i,limits:r,panelSize:g}),E=i.considerPlaybackRate&&(0,$.isNonNullable)(o)?o:1,A=a.filter(P=>!(0,$.isInvariantQuality)(P.quality)).sort((P,J)=>(0,$.isHigher)(P.quality,J.quality)?-1:1),x=(0,Qe.default)(A,-1)?.quality,D=(0,Qe.default)(A,0)?.quality,N=wr(r,D,x),q=E*Ln(n??.5,i.bitrateFactorAtEmptyBuffer,i.bitrateFactorAtFullBuffer),B={},L=A.filter(P=>{let J=!0;if(S)if(P.size)J=P.size.width<=S.width&&P.size.height<=S.height;else{let ie=S&&(0,$.videoSizeToQuality)(S);J=ie?(0,$.isLowerOrEqual)(P.quality,ie):!0}if(!J)return B[P.quality]="FitsContainer",!1;let O=m||t,se=(0,$.isNonNullable)(O)&&isFinite(O)&&(0,$.isNonNullable)(P.bitrate)?O-s>=P.bitrate*q:!0,pe=r?.min===P.quality;if(!se&&!pe)return B[P.quality]="FitsThroughput",!1;if(i.lazyQualitySwitch&&(0,$.isNonNullable)(i.minBufferToSwitchUp)&&u&&!(0,$.isInvariantQuality)(u.quality)&&(n??0)<i.minBufferToSwitchUp&&(0,$.isHigher)(P.quality,u.quality))return B[P.quality]="Buffer",!1;if(!!l&&(0,$.isHigherOrEqual)(P.quality,l)&&!pe)return B[P.quality]="DroppedFramesLimit",!1;if(!!p&&(0,$.isHigherOrEqual)(P.quality,p)&&!pe)return B[P.quality]="StallsLimit",!1;let Oe=N||((0,$.isNullable)(r?.max)||(0,$.isLowerOrEqual)(P.quality,r.max))&&((0,$.isNullable)(r?.min)||(0,$.isHigherOrEqual)(P.quality,r.min)),oe=(0,$.isNonNullable)(d)&&!d?(0,$.isLowerOrEqual)(P.quality,i.backgroundVideoQualityLimit):!0;return!Oe||!oe?(B[P.quality]="FitsQualityLimits",!1):!0})[0];L&&L.bitrate&&sg.next(L.bitrate);let ae=L??(0,Qe.default)(A,-1)??a[0],X=c?.last,k=Dn(i,f,ae,c);return(0,$.isNonNullable)(c)&&k.quality!==X?.quality&&f({message:`
40
+ [best video track] ${T?.quality}
41
+ [selected video track] ${ee?.quality}
42
+ `}),ee},qa=(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})=>{R.assertNotEmptyArray(e,Fa);let{containerSizeFactor:g,containerSizeLimit:_}=Wa({container:t,tuning:r,limits:i,panelSize:h}),v=r.considerPlaybackRate&&R.isNonNullable(s)?s:1,y=e.filter(e=>!R.isInvariantQuality(e.quality)).sort((e,t)=>R.isHigher(e.quality,t.quality)?-1:1),b=_a.default(y,-1)?.quality,x=_a.default(y,0)?.quality,S=ka(i,x,b),C=v*Ma(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=_&&R.videoSizeToQuality(_);t=n?R.isLowerOrEqual(e.quality,n):!0}if(!t)return w[e.quality]=`FitsContainer`,!1;let s=p||n,l=R.isNonNullable(s)&&isFinite(s)&&R.isNonNullable(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&&R.isNonNullable(r.minBufferToSwitchUp)&&c&&!R.isInvariantQuality(c.quality)&&(o??0)<r.minBufferToSwitchUp&&R.isHigher(e.quality,c.quality))return w[e.quality]=`Buffer`,!1;if(d&&R.isHigherOrEqual(e.quality,d)&&!m)return w[e.quality]=`DroppedFramesLimit`,!1;if(f&&R.isHigherOrEqual(e.quality,f)&&!m)return w[e.quality]=`StallsLimit`,!1;let h=S||(R.isNullable(i?.max)||R.isLowerOrEqual(e.quality,i.max))&&(R.isNullable(i?.min)||R.isHigherOrEqual(e.quality,i.min)),g=R.isNonNullable(u)&&!u?R.isLowerOrEqual(e.quality,r.backgroundVideoQualityLimit):!0;return!h||!g?(w[e.quality]=`FitsQualityLimits`,!1):!0})[0];T&&T.bitrate&&ja.next(T.bitrate);let E=T??_a.default(y,-1)??e[0],D=l?.last,ee=Ha(r,m,E,l);return R.isNonNullable(l)&&ee.quality!==D?.quality&&m({message:`
43
43
  [VIDEO TRACKS ABR]
44
44
  [available video tracks]
45
- ${a.map(P=>`{ id: ${P.id}, quality: ${P.quality}, bitrate: ${P.bitrate}, size: ${P.size?.width}:${P.size?.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,qi.default)(i??{}).map(([P,J])=>`${P}: ${J}`).join(`
49
+ ${ya.default(r??{}).map(([e,t])=>`${e}: ${t}`).join(`
50
50
  `)}
51
51
 
52
52
  [limit params]
53
- containerSizeFactor: ${v},
54
- containerSizeLimit: ${S?.width??0} x ${S?.height??0},
55
- estimatedThroughput: ${t},
56
- stallsPredictedThroughput: ${m},
57
- reserve: ${s},
58
- playbackRate: ${o},
59
- playbackRateFactor: ${E},
60
- forwardBufferHealth: ${n},
61
- bitrateFactor: ${q},
62
- minBufferToSwitchUp: ${i.minBufferToSwitchUp},
63
- droppedVideoMaxQualityLimit: ${l},
64
- stallsVideoMaxQualityLimit: ${p},
65
- limitsAreInvalid: ${N},
66
- maxQualityLimit: ${r?.max},
67
- minQualityLimit: ${r?.min},
53
+ containerSizeFactor: ${g},
54
+ containerSizeLimit: ${_?.width??0} x ${_?.height??0},
55
+ estimatedThroughput: ${n},
56
+ stallsPredictedThroughput: ${p},
57
+ reserve: ${a},
58
+ playbackRate: ${s},
59
+ playbackRateFactor: ${v},
60
+ forwardBufferHealth: ${o},
61
+ bitrateFactor: ${C},
62
+ minBufferToSwitchUp: ${r.minBufferToSwitchUp},
63
+ droppedVideoMaxQualityLimit: ${d},
64
+ stallsVideoMaxQualityLimit: ${f},
65
+ limitsAreInvalid: ${S},
66
+ maxQualityLimit: ${i?.max},
67
+ minQualityLimit: ${i?.min},
68
68
 
69
69
  [limited video tracks]
70
- ${(0,qi.default)(B).map(([P,J])=>`${P}: ${J}`).join(`
71
- `)||"All tracks are available"}
70
+ ${ya.default(w).map(([e,t])=>`${e}: ${t}`).join(`
71
+ `)||`All tracks are available`}
72
72
 
73
- [best video track] ${L?.quality}
74
- [selected video track] ${k?.quality}
75
- `}),k},Vn=(a,e,t,{estimatedThroughput:i,tuning:r,playbackRate:s,forwardBufferHealth:n,history:o,abrLogger:u,stallsPredictedThroughput:c})=>{(0,$.assertNotEmptyArray)(t,Cn);let d=r.considerPlaybackRate&&(0,$.isNonNullable)(s)?s:1,l=[...t].sort(xr(-1)),p=a.bitrate;(0,$.assertNonNullable)(p);let m=d*Ln(n??.5,r.bitrateAudioFactorAtEmptyBuffer,r.bitrateAudioFactorAtFullBuffer),f,g=xa(a,e,t,r.minVideoAudioRatio),v=c||i;(0,$.isNonNullable)(v)&&isFinite(v)&&(f=l.find(A=>(0,$.isNonNullable)(A.bitrate)&&(0,$.isNonNullable)(g?.bitrate)?v-p>=A.bitrate*m&&A.bitrate>=g.bitrate:!1)),f||(f=g);let S=o?.last,E=f&&Dn(r,u,f,o);return(0,$.isNonNullable)(o)&&E?.bitrate!==S?.bitrate&&u({message:`
73
+ [best video track] ${T?.quality}
74
+ [selected video track] ${ee?.quality}
75
+ `}),ee},Ja=(e,t,n,{estimatedThroughput:r,tuning:i,playbackRate:a,forwardBufferHealth:o,history:s,abrLogger:c,stallsPredictedThroughput:l})=>{R.assertNotEmptyArray(n,Fa);let u=i.considerPlaybackRate&&R.isNonNullable(a)?a:1,d=[...n].sort(Na(-1)),f=e.bitrate;R.assertNonNullable(f);let p=u*Ma(o??.5,i.bitrateAudioFactorAtEmptyBuffer,i.bitrateAudioFactorAtFullBuffer),m,h=za(e,t,n,i.minVideoAudioRatio),g=l||r;R.isNonNullable(g)&&isFinite(g)&&(m=d.find(e=>R.isNonNullable(e.bitrate)&&R.isNonNullable(h?.bitrate)?g-f>=e.bitrate*p&&e.bitrate>=h.bitrate:!1)),m||=h;let _=s?.last,v=m&&Ha(i,c,m,s);return R.isNonNullable(s)&&v?.bitrate!==_?.bitrate&&c({message:`
76
76
  [AUDIO TRACKS ABR]
77
77
  [available audio tracks]
78
- ${t.map(A=>`{ id: ${A.id}, bitrate: ${A.bitrate} }`).join(`
78
+ ${n.map(e=>`{ id: ${e.id}, bitrate: ${e.bitrate} }`).join(`
79
79
  `)}
80
80
 
81
81
  [tuning]
82
- ${(0,qi.default)(r??{}).map(([A,x])=>`${A}: ${x}`).join(`
82
+ ${ya.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},
89
- playbackRate: ${s},
90
- playbackRateFactor: ${d},
91
- forwardBufferHealth: ${n},
92
- bitrateFactor: ${m},
93
- minBufferToSwitchUp: ${r.minBufferToSwitchUp},
86
+ estimatedThroughput: ${r},
87
+ stallsPredictedThroughput: ${l},
88
+ reserve: ${f},
89
+ playbackRate: ${a},
90
+ playbackRateFactor: ${u},
91
+ forwardBufferHealth: ${o},
92
+ bitrateFactor: ${p},
93
+ minBufferToSwitchUp: ${i.minBufferToSwitchUp},
94
94
 
95
- [selected audio track] ${E?.id}
96
- `}),E},_n=(a,e,t,{estimatedThroughput:i,tuning:r,playbackRate:s,forwardBufferHealth:n,history:o,abrLogger:u,stallsPredictedThroughput:c})=>{(0,$.assertNotEmptyArray)(t,Cn);let d=r.considerPlaybackRate&&(0,$.isNonNullable)(s)?s:1,l=tg.get(t);l||(l=[...t].sort(xr(-1)),tg.set(t,l));let p=a.bitrate;(0,$.assertNonNullable)(p);let m=d*Ln(n??.5,r.bitrateAudioFactorAtEmptyBuffer,r.bitrateAudioFactorAtFullBuffer),f,g=Pa(a,e,t,r.minVideoAudioRatio),v=c||i;(0,$.isNonNullable)(v)&&isFinite(v)&&(f=l.find(A=>(0,$.isNonNullable)(A.bitrate)&&(0,$.isNonNullable)(g?.bitrate)?v-p>=A.bitrate*m&&A.bitrate>=g.bitrate:!1)),f||(f=g);let S=o?.last,E=f&&Dn(r,u,f,o);return(0,$.isNonNullable)(o)&&E?.bitrate!==S?.bitrate&&u({message:`
95
+ [selected audio track] ${v?.id}
96
+ `}),v},Ya=(e,t,n,{estimatedThroughput:r,tuning:i,playbackRate:a,forwardBufferHealth:o,history:s,abrLogger:c,stallsPredictedThroughput:l})=>{R.assertNotEmptyArray(n,Fa);let u=i.considerPlaybackRate&&R.isNonNullable(a)?a:1,d=La.get(n);d||(d=[...n].sort(Na(-1)),La.set(n,d));let f=e.bitrate;R.assertNonNullable(f);let p=u*Ma(o??.5,i.bitrateAudioFactorAtEmptyBuffer,i.bitrateAudioFactorAtFullBuffer),m,h=Ba(e,t,n,i.minVideoAudioRatio),g=l||r;R.isNonNullable(g)&&isFinite(g)&&(m=d.find(e=>R.isNonNullable(e.bitrate)&&R.isNonNullable(h?.bitrate)?g-f>=e.bitrate*p&&e.bitrate>=h.bitrate:!1)),m||=h;let _=s?.last,v=m&&Ha(i,c,m,s);return R.isNonNullable(s)&&v?.bitrate!==_?.bitrate&&c({message:`
97
97
  [AUDIO TRACKS ABR]
98
98
  [available audio tracks]
99
- ${t.map(A=>`{ id: ${A.id}, bitrate: ${A.bitrate} }`).join(`
99
+ ${n.map(e=>`{ id: ${e.id}, bitrate: ${e.bitrate} }`).join(`
100
100
  `)}
101
101
 
102
102
  [tuning]
103
- ${(0,qi.default)(r??{}).map(([A,x])=>`${A}: ${x}`).join(`
103
+ ${ya.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},
110
- playbackRate: ${s},
111
- playbackRateFactor: ${d},
112
- forwardBufferHealth: ${n},
113
- bitrateFactor: ${m},
114
- minBufferToSwitchUp: ${r.minBufferToSwitchUp},
115
-
116
- [selected audio track] ${E?.id}
117
- `}),E};var He=a=>new URL(a).hostname;var Y=require("@vkontakte/videoplayer-shared/es2024");var mg=j(gt(),1);var ug=j(Ke(),1),og=a=>{if(a instanceof DOMException&&(0,ug.default)(["Failed to load because no supported source was found.","The element has no supported sources."],a.message))throw a;return!(a instanceof DOMException&&(a.code===20||a.name==="AbortError"))},tt=async(a,e)=>{let t=a.muted;try{await a.play()}catch(i){if(!og(i))return!1;if(e&&e(),t)return console.warn(i),!1;a.muted=!0;try{await a.play()}catch(r){return og(r)&&(a.muted=!1,console.warn(r)),!1}}return!0};var ct=require("@vkontakte/videoplayer-shared/es2024");var cg=j(Di(),1),Ut=require("@vkontakte/videoplayer-shared/es2024");function De(){return(0,Ut.now)()}function Lc(a){return De()-a}function Cc(a){let e=a.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 lg(a,e,t){let i=(...r)=>{t.apply(null,r),a.removeEventListener(e,i)};a.addEventListener(e,i)}function Pr(a,e,t,i){let r=window.XMLHttpRequest,s,n,o,u=!1,c=0,d,l,p=!1,m="arraybuffer",f=7e3,g=2e3,v=()=>{if(u)return;(0,Ut.assertNonNullable)(d);let X=Lc(d),k;if(X<g){k=g-X,setTimeout(v,k);return}g*=2,g>f&&(g=f),n&&n.abort(),n=new r,N()},S=X=>(s=X,ae),E=X=>(l=X,ae),A=()=>(m="json",ae),x=()=>{if(!u){if(--c>=0){v(),i&&i();return}u=!0,l&&l(),t&&t()}},D=X=>(p=X,ae),N=()=>{d=De(),n=new r,n.open("get",a);let X=0,k,P=0,J=()=>((0,Ut.assertNonNullable)(d),Math.max(d,Math.max(k||0,P||0)));if(s&&n.addEventListener("progress",O=>{let se=De();s.updateChunk&&O.loaded>X&&(s.updateChunk(J(),O.loaded-X),X=O.loaded,k=se)}),o&&(n.timeout=o,n.addEventListener("timeout",()=>x())),n.addEventListener("load",()=>{if(u)return;(0,Ut.assertNonNullable)(n);let O=n.status;if(O>=200&&O<300){let{response:se,responseType:pe}=n,Ie=se?.byteLength;if(typeof Ie=="number"&&s){let Re=Ie-X;Re&&s.updateChunk&&s.updateChunk(J(),Re)}pe==="json"&&(!se||!(0,cg.default)(se).length)?x():(l&&l(),e(se))}else x()}),n.addEventListener("error",()=>{x()}),p){let O=()=>{(0,Ut.assertNonNullable)(n),n.readyState===XMLHttpRequest.HEADERS_RECEIVED&&(P=De(),n.removeEventListener("readystatechange",O))};n.addEventListener("readystatechange",O)}return n.responseType=m,n.send(),ae},ae={withBitrateReporting:S,withParallel:D,withJSONResponse:A,withRetryCount:X=>(c=X,ae),withRetryInterval:(X,k)=>((0,Ut.isNonNullable)(X)&&(g=X),(0,Ut.isNonNullable)(k)&&(f=k),ae),withTimeout:X=>(o=X,ae),withFinally:E,send:N,abort:()=>{n&&(n.abort(),n=void 0),u=!0,l&&l()}};return ae}var ka=class{constructor(e){this.intervals=[];this.currentRate=0;this.logger=e}_updateRate(e){let t=.2;this.currentRate&&(e<this.currentRate*.1?t=.8:e<this.currentRate*.5?t=.5:e<this.currentRate*.7&&(t=.3)),e=Math.max(1,Math.min(e,100*1024*1024)),this.currentRate=this.currentRate?this.currentRate*(1-t)+e*t:e}_createInterval(e,t,i){return{start:e,end:t,bytes:i}}_doMergeIntervals(e,t){e.start=Math.min(t.start,e.start),e.end=Math.max(t.end,e.end),e.bytes+=t.bytes}_mergeIntervals(e,t){return e.start<=t.end&&t.start<=e.end?(this._doMergeIntervals(e,t),!0):!1}_flushIntervals(){if(!this.intervals.length)return!1;let e=this.intervals[0].start,t=this.intervals[this.intervals.length-1].end-500;if(t-e>2e3){let i=0,r=0;for(;this.intervals.length>0;){let s=this.intervals[0];if(s.end<=t)i+=s.end-s.start,r+=s.bytes,this.intervals.splice(0,1);else{if(s.start>=t)break;{let n=t-s.start,o=s.end-s.start;i+=n;let u=s.bytes*n/o;r+=u,s.start=t,s.bytes-=u}}}if(r>0&&i>0){let s=r*8/(i/1e3);return this._updateRate(s),this.logger(`rate updated, new=${Math.round(s/1024)}K; average=${Math.round(this.currentRate/1024)}K bytes/ms=${Math.round(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 dg=j(Di(),1);var Aa=class{constructor(e,t,i,r,s){this.pendingQueue=[];this.activeRequests={};this.completeRequests={};this.averageSegmentDuration=2e3;this.lastPrefetchStart=0;this.throttleTimeout=null;this.RETRY_COUNT=e,this.TIMEOUT=t,this.BITRATE_ESTIMATOR=i,this.MAX_PARALLEL_REQUESTS=r,this.logger=s}limitCompleteCount(){let e;for(;(e=Object.keys(this.completeRequests)).length>this._getParallelRequestCount()+2;){let t=e[Math.floor(Math.random()*e.length)];this.logger(`Dropping completed request for url ${t}`,{type:"warn"}),delete this.completeRequests[t]}}_sendRequest(e,t){let i=De(),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)},s=u=>{e._complete=1,e._responseData=u,e._downloadTime=De()-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=Pr(t,s,()=>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=De()}_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=De();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,dg.default)(this.activeRequests).forEach(e=>{e&&e._request&&e._request.abort()}),this.activeRequests={},this.pendingQueue=[],this.completeRequests={}}requestData(e,t,i,r){let s={};return s.send=()=>{let n=this.activeRequests[e]||this.completeRequests[e];if(n)n._cb=t,n._errorCB=i,n._retryCB=r,n._finallyCB=s._finallyCB,n._error||n._complete?(this._removeFromActive(e),setTimeout(()=>{n._complete?(this.logger(`Requested url already prefetched, url=${e}`),t(n._responseData,n._downloadTime)):(this.logger(`Requested url already prefetched with error, url=${e}`),i(n._errorMsg)),s._finallyCB&&s._finallyCB()},0)):this.logger(`Attached to active request, url=${e}`);else{let o=this.pendingQueue.indexOf(e);o!==-1&&this.pendingQueue.splice(o,1),this.logger(`Request not prefetched, starting new request, url=${e}${o===-1?"":"; removed pending"}`),this._sendRequest(s,e)}},s._cb=t,s._errorCB=i,s._retryCB=r,s.abort=function(){s.request&&s.request.abort()},s.withFinally=n=>(s._finallyCB=n,s),s}prefetch(e){this.activeRequests[e]||this.completeRequests[e]?this.logger(`Request already active for url=${e}`):(this.logger(`Added to pending queue; url=${e}`),this.pendingQueue.unshift(e),this._sendPending())}optimizeForSegDuration(e){this.averageSegmentDuration=e}};var fg=require("@vkontakte/videoplayer-shared/es2024");var Dc=require("@vkontakte/videoplayer-shared/es2024"),fe=(a,e)=>(0,Dc.isNonNullable)(a)&&(0,Dc.isNonNullable)(e)&&a.readyState==="open"&&yA(a,e);function yA(a,e){for(let t=0;t<a.activeSourceBuffers.length;++t)if(a.activeSourceBuffers[t]===e)return!0;return!1}var pg=j(li(),1),hg=require("@vkontakte/videoplayer-shared/es2024"),Bc=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(){let e=(0,pg.default)(this.data).map(([t,i])=>`${t}:${i}`).join(",");return{key:this.tag,strings:[e,this.stack??""],numbers:[this.time]}}},TA=(a,e="warn")=>{let t=(0,hg.getWindow)(),i=[];function r(s,n=!1){let o=t.performance?.timing?.navigationStart??0,u=new Bc(a,Math.round((Date.now()-o)/1e3),s,n?new Error().stack:void 0);i.push(u),e&&t.console[e](u.toString())}return r.reset=()=>{i=[]},r.drain=()=>{let s=i;return i=[],s},r},Q=TA("vp_dash_live_debug",!1);var On=1e4,Vc=3;var EA=6e4,wA=10,xA=1,PA=500,Ra=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 fg.Subject,this.chunkRateEstimator=new ka(this.params.logger),this._initVideo()}attachSource(e){this.manifestUrl=e,this.urlResolver=Cc(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&&(Q({m:"ldp.catchUp.1"}),this.rep.stop()),this.currentManifestEntry){let e=this.params.playbackState.getState();this.paused=e==="paused",Q({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()?(Q({m:"ldp.play.1"}),this._playVideoElement()):(Q({m:"ldp.play.2"}),this._notifyBuffering(!0))):(Q({m:"ldp.play.3"}),this.catchUp())}startPlay(e,t){this.autoQuality=t,Q({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=Cc(e),Q({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;Q({m:"iv"}),e.addEventListener("error",()=>{!!e.error&&!this.destroyed&&(Q({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 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"),Q({m:"ldp.fs",t:r}),t.currentTime=r))}_selectQuality(e){let{videoElement:t}=this.params,i,r,s,n=t&&1.62*(F.display.pixelRatio||1)*t.offsetHeight||520;for(let o=0;o<this.manifest.length;++o){s=this.manifest[o];let{max:u,min:c}=this.autoQualityLimits||{};!eg({limits:this.autoQualityLimits,highestAvailableHeight:this.manifest[0].video.height,lowestAvailableHeight:(0,mg.default)(this.manifest,-1).video.height})&&(u&&s.video.height>u||c&&s.video.height<c)||(s.bitrate<e&&n>Math.min(s.video.height,s.video.width)?(!r||s.bitrate>r.bitrate)&&(r=s):(!i||i.bitrate>s.bitrate)&&(i=s))}return r||i}shouldPlay(){if(this.paused)return!1;let t=this._getBufferSizeSec()-Math.max(1,this.sourceJitter);return t>3||(0,ct.isNonNullable)(this.downloadRate)&&(this.downloadRate>1.5&&t>2||this.downloadRate>2&&t>1)}_setVideoSrc(e,t){let{logger:i,videoElement:r,playerCallback:s}=this.params;this.mediaSource=new window.MediaSource,i("setting video src"),r.src=URL.createObjectURL(this.mediaSource),this.mediaSource.addEventListener("sourceopen",()=>{if(this.mediaSource?.readyState!=="open"){Q({m:"sourceopen",err:`not open: ${this.mediaSource?.readyState}`});return}Q({m:"sourceopen",c:e.codecs}),this.sourceBuffer=this.mediaSource.addSourceBuffer(e.codecs),this.bufferStates=[],t()}),this.mediaSource?.addEventListener("sourceclose",o=>{Q({m:"sourceclose"})}),this.videoPlayStarted=!1,r.addEventListener("canplay",()=>{Q({m:"canplay"}),this.shouldPlay()&&(this.videoPlayStarted=!0,this._playVideoElement())});let n=()=>{lg(r,"progress",()=>{r.buffered.length?(r.currentTime=r.buffered.start(0),this.waitingForFirstBufferAfterSrcChange=!1,s({name:"playing"})):n()})};this.waitingForFirstBufferAfterSrcChange=!0,n()}_initPlayerWith(e){this.bitrate=0,this.rep=0,this.sourceBuffer=0,this.bufferStates=[],this.filesFetcher&&this.filesFetcher.abortAll(),this.filesFetcher=new Aa(Vc,On,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,s=!1,n=null,o=null,u=null,c=null,d=!1,l=()=>{let x=s&&(!d||d===this.rep);return x||t("Not running!"),x},p=(x,D,N)=>{u&&u.abort(),u=Pr(this.urlResolver.resolve(x,!1),D,N,()=>this._retryCallback()).withTimeout(On).withBitrateReporting(this.bitrateSwitcher).withRetryCount(Vc).withFinally(()=>{u=null}).send()},m=(x,D,N)=>{(0,ct.assertNonNullable)(this.filesFetcher),o?.abort(),o=this.filesFetcher.requestData(this.urlResolver.resolve(x,!1),D,N,()=>this._retryCallback()).withFinally(()=>{o=null}).send()},f=x=>{let D=i.playbackRate;i.playbackRate!==x&&(t(`Playback rate switch: ${D}=>${x}`),i.playbackRate=x)},g=x=>{this.lowLatency=x,t(`lowLatency changed to ${x}`),v()},v=()=>{if(!this.lowLatency&&!this.params.config.isLiveCatchUpMode)f(1);else{let x=this._getBufferSizeSec();if(this.bufferStates.length<5){f(1);return}let N=De()-1e4,q=0;for(let W=0;W<this.bufferStates.length;W++){let L=this.bufferStates[W];x=Math.min(x,L.buf),L.ts<N&&q++}this.bufferStates.splice(0,q),t(`update playback rate; minBuffer=${x} drop=${q} jitter=${this.sourceJitter}`);let B=x-xA;this.sourceJitter>=0?B-=this.sourceJitter/2:this.sourceJitter-=1,B>3?f(1.15):B>1?f(1.1):B>.3?f(1.05):f(1)}},S=x=>{let D,N=()=>D&&D.start?D.start.length:0,q=O=>D.start[O]/1e3,B=O=>D.dur[O]/1e3,W=O=>D.fragIndex+O,L=(O,se)=>({chunkIdx:W(O),startTS:q(O),dur:B(O),discontinuity:se}),ae=()=>{let O=0;if(D&&D.dur){let se=this.lowLatency?this.params.config.lowLatencyMinBuffer:this.params.config.minBuffer,pe=this.lowLatency?this.params.config.lowLatencyMinBufferSegments:this.params.config.minBufferSegments,Ie=se;this.sourceJitter>1&&(Ie+=this.sourceJitter-1);let Re=D.dur.length-1;for(;Re>=0&&(Ie-=D.dur[Re],!(Ie<=0));--Re);O=Math.min(Re,D.dur.length-1-pe),O=Math.max(O,0)}return L(O,!0)},X=O=>{let se=N();if(!(se<=0)){if((0,ct.isNonNullable)(O)){for(let pe=0;pe<se;pe++)if(q(pe)>O)return L(pe)}return ae()}},k=O=>{let se=N(),pe=O?O.chunkIdx+1:0,Ie=pe-D.fragIndex;if(!(se<=0)){if(!O||Ie<0||Ie-se>wA)return t(`Resync: offset=${Ie} bChunks=${se} chunk=`+JSON.stringify(O)),ae();if(!(Ie>=se))return L(pe-D.fragIndex,!1)}},P=(O,se,pe)=>{c&&c.abort(),c=Pr(this.urlResolver.resolve(O,!0,this.lowLatency),se,pe,()=>this._retryCallback()).withTimeout(On).withRetryCount(Vc).withFinally(()=>{c=null}).withJSONResponse().send()};return{seek:(O,se)=>{P(x,pe=>{if(!l())return;D=pe;let Ie=!!D.lowLatency;Ie!==this.lowLatency&&g(Ie);let Re=0;for(let _e=0;_e<D.dur.length;++_e)Re+=D.dur[_e];Re>0&&((0,ct.assertNonNullable)(this.filesFetcher),this.filesFetcher.optimizeForSegDuration(Re/D.dur.length)),r({name:"index",zeroTime:D.zeroTime,shiftDuration:D.shiftDuration}),this.sourceJitter=D.hasOwnProperty("jitter")?Math.min(10,Math.max(.01,D.jitter/1e3)):1,O(X(se))},()=>this._handleNetworkError())},nextChunk:k}},E=()=>{s=!1,o&&o.abort(),u&&u.abort(),c&&c.abort(),(0,ct.assertNonNullable)(this.filesFetcher),this.filesFetcher.abortAll()};return d={start:x=>{let{videoElement:D,logger:N}=this.params,q=S(e.jidxUrl),B,W,L,ae,X=0,k,P,J,O=()=>{k&&(clearTimeout(k),k=void 0);let ie=Math.max(PA,1e3*(this._getBufferSizeSec()-this.sourceJitter-5)),Ne=X+ie,je=De(),Me=Math.min(1e4,Ne-je);X=je;let pt=()=>{c||l()&&q.seek(()=>{l()&&(X=De(),se(),O())})};Me>0?k=window.setTimeout(()=>{this.paused?O():pt()},Me):pt()},se=()=>{let ie;for(;ie=q.nextChunk(ae);)ae=ie,Oe(ie);let Ne=q.nextChunk(L);if(Ne){if(L&&Ne.discontinuity){N("Detected discontinuity; restarting playback"),this.paused?O():(E(),Q({m:"ldp.fetchChunkIdx.0"}),this._initPlayerWith(e));return}_e(Ne)}else O()},pe=(ie,Ne)=>{if(!l()||!this.sourceBuffer){Q({m:"ab.0",c:[!l(),!this.sourceBuffer]});return}let je,Me,pt,ti=It=>{Q({m:"ldp.postpone",t:It}),window.setTimeout(()=>{l()&&pe(ie,Ne)},It)};if(this.sourceBuffer.updating)N("Source buffer is updating; delaying appendBuffer"),Q({m:"ldp.ab.1"}),ti(100);else{let It=De(),at=D.currentTime;!this.paused&&D.buffered.length>1&&P===at&&It-J>500&&(N("Stall suspected; trying to fix"),this._fixupStall()),P!==at&&(P=at,J=It);let ii=this._getBufferSizeSec();if(ii>30)Q({m:"ldp.ab.3"}),N(`Buffered ${ii} seconds; delaying appendBuffer`),ti(2e3);else try{if(this.params.config.useInvalidBufferFix&&fe(this.mediaSource,this.sourceBuffer))return;this.sourceBuffer.appendBuffer(ie),this.videoPlayStarted?(Q({m:"ldp.ab.5"}),this.bufferStates.push({ts:It,buf:ii}),v(),this.bufferStates.length>200&&this.bufferStates.shift()):this.shouldPlay()&&(Q({m:"ldp.ab.4"}),this.videoPlayStarted=!0,this._playVideoElement()),Ne&&Ne()}catch(ht){Q({m:"ldp.ab.err",e:ht.name}),ht.name==="QuotaExceededError"?(N("QuotaExceededError; delaying appendBuffer"),pt=this.sourceBuffer.buffered.length,pt!==0&&(je=this.sourceBuffer.buffered.start(0),Me=at,Me-je>4&&this.sourceBuffer.remove(je,Me-3)),ti(1e3)):(N(ht.name),r({name:"error",type:"buffer",message:`appendBuffer failed due to ${ht.name}`}))}}},Ie=()=>{W&&B&&(N([`Appending chunk, sz=${W.byteLength}:`,JSON.stringify(L)]),pe(W,function(){W=null,se()}))},Re=ie=>e.fragUrlTemplate.replace("%%id%%",ie.chunkIdx),_e=ie=>{l()&&m(Re(ie),(Ne,je)=>{if(l()){if(je/=1e3,W=Ne,L=ie,n=ie.startTS,je){let Me=Math.min(10,ie.dur/je);this.downloadRate=this.downloadRate?(1-.3)*this.downloadRate+.3*Me:Me}Ie()}},()=>this._handleNetworkError())},Oe=ie=>{l()&&((0,ct.assertNonNullable)(this.filesFetcher),this.filesFetcher.prefetch(this.urlResolver.resolve(Re(ie),!1)))},oe=ie=>{l()&&(e.cachedHeader=ie,pe(ie,()=>{B=!0,Ie()}))};s=!0,q.seek(ie=>{if(l()){if(X=De(),!ie){O();return}ae=ie,!(0,ct.isNullable)(x)||ie.startTS>x?_e(ie):(L=ie,se())}},x),e.cachedHeader?oe(e.cachedHeader):p(e.headerUrl,oe,()=>this._handleNetworkError())},stop:E,getTimestampSec:()=>n},d}_switchToQuality(e){let{logger:t,playerCallback:i}=this.params,r;e.bitrate!==this.bitrate&&(this.rep&&(r=this.rep.getTimestampSec(),(0,ct.isNonNullable)(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,(0,ct.assertNonNullable)(this.bitrateSwitcher),this.bitrateSwitcher.notifySwitch(this.bitrate),this.rep.start(r),i({name:"qualitySwitch",quality:e}))}_qualityAvailable(e){return(0,ct.isNonNullable)(this.manifest.find(t=>t.name===e))}_initBitrateSwitcher(){let{logger:e,playerCallback:t}=this.params,i=l=>{if(!this.autoQuality)return;let p,m,f;if(this.currentManifestEntry&&this._qualityAvailable(this.currentManifestEntry.name)&&l<this.bitrate&&(m=this._getBufferSizeSec(),f=l/this.bitrate,m>10&&f>.8||m>15&&f>.5||m>20&&f>.3)){e(`Not switching: buffer=${Math.floor(m)}; bitrate=${this.bitrate}; newRate=${Math.floor(l)}`);return}p=this._selectQuality(l),p?this._switchToQuality(p):e(`Could not find quality by bitrate ${l}`)},s={updateChunk:(p,m)=>{let f=De();if(this.chunkRateEstimator.addInterval(p,f,m)){let v=this.chunkRateEstimator.getBitRate();return t({name:"bandwidth",size:m,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=s.get();if(l&&o&&this.autoQuality){if(u&&l>o&&Lc(n)<3e4)return;i(l)}u=this.autoQuality};return{updateChunk:(l,p)=>{let m=s.updateChunk(l,p);return m&&c(),m},notifySwitch:l=>{let p=De();l<o&&(n=p),o=l}}}_fetchManifest(e,t,i){this.manifestRequest=Pr(this.urlResolver.resolve(e,!0),t,i,()=>this._retryCallback()).withJSONResponse().withTimeout(On).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;tt(e,()=>{this.soundProhibitedEvent$.next()}).then(t=>{Q({m:"ldp.pve.1"}),t||(Q({m:"ldp.pve.2"}),this.params.liveOffset.pause(),this.params.videoState.setState("paused"))})}_handleManifestUpdate(e){let{logger:t,playerCallback:i,videoElement:r}=this.params,s=n=>{let o=[];return n?.length?(n.forEach((u,c)=>{u.video&&r.canPlayType(u.codecs).replace(/no/,"")&&window.MediaSource?.isTypeSupported?.(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=s(e),t(`Valid manifest entries: ${this.manifest.length}/${e.length}`),i({name:"manifest",manifest:this.manifest})}_refetchManifest(e){this.destroyed||(this.manifestRefetchTimer&&clearTimeout(this.manifestRefetchTimer),this.manifestRefetchTimer=window.setTimeout(()=>{this._fetchManifest(e,t=>{this.destroyed||(this._handleManifestUpdate(t),this._refetchManifest(e))},()=>this._refetchManifest(e))},EA))}_initManifest(){this._fetchManifest(this.manifestUrl,e=>{this.destroyed||(this._handleManifestUpdate(e),this._refetchManifest(this.manifestUrl))},()=>this._handleNetworkError())}};var bg=j(li(),1),Te=require("@vkontakte/videoplayer-shared/es2024"),_c=class{constructor(){this.onDroopedVideoFramesLimit$=new Te.Subject;this.subscription=new Te.Subscription;this.playing=!1;this.tracks=[];this.forceChecker$=new Te.Subject;this.isForceCheckCounter=0;this.prevTotalVideoFrames=0;this.prevDroppedVideoFrames=0;this.limitCounts={};this.handleChangeVideoQuality=()=>{let e=this.tracks.find(({size:t})=>t?.height===this.video.videoHeight&&t?.width===this.video.videoWidth);e&&!(0,Te.isInvariantQuality)(e.quality)&&this.onChangeQuality(e.quality)};this.checkDroppedFrames=()=>{let{totalVideoFrames:e,droppedVideoFrames:t}=this.video.getVideoPlaybackQuality(),i=e-this.prevTotalVideoFrames,r=t-this.prevDroppedVideoFrames,s=1-(i-r)/i;!isNaN(s)&&s>0&&this.log({message:`[dropped]. current dropped percent: ${s}, limit: ${this.droppedFramesChecker.percentLimit}`}),!isNaN(s)&&s>=this.droppedFramesChecker.percentLimit&&(0,Te.isHigher)(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((0,Te.fromEvent)(this.video,"resize").subscribe(this.handleChangeVideoQuality));let e=(0,Te.interval)(this.droppedFramesChecker.checkTime).pipe((0,Te.filter)(()=>this.playing),(0,Te.filter)(()=>{let r=!!this.isForceCheckCounter;return r&&(this.isForceCheckCounter-=1),!r})),t=this.forceChecker$.pipe((0,Te.debounce)(this.droppedFramesChecker.checkTime)),i=(0,Te.merge)(e,t);this.subscription.add(i.subscribe(this.checkDroppedFrames))}onChangeQuality(e){this.currentQuality=e;let{totalVideoFrames:t,droppedVideoFrames:i}=this.video.getVideoPlaybackQuality();this.savePrevFrameCounts(t,i),this.isForceCheckCounter=this.droppedFramesChecker.tickCountAfterQualityChange,this.forceChecker$.next()}onDroopedVideoFramesLimitTrigger(){this.isAuto.getState()&&(this.log({message:`[onDroopedVideoFramesLimit]. maxQualityLimit: ${this.maxQualityLimit}`}),this.onDroopedVideoFramesLimit$.next())}getMaxQualityLimit(e){let t=(0,bg.default)(this.limitCounts).filter(([,i])=>i>=this.droppedFramesChecker.countLimit).sort(([i],[r])=>(0,Te.isLower)(i,r)?-1:1)?.[0]?.[0];return e??t}get isEnabled(){return this.droppedFramesChecker.enabled&&this.isDroppedFramesCheckerSupport}get isDroppedFramesCheckerSupport(){return!!this.video&&typeof this.video.getVideoPlaybackQuality=="function"}savePrevFrameCounts(e,t){this.prevTotalVideoFrames=e,this.prevDroppedVideoFrames=t}},kr=_c;var Nn=require("@vkontakte/videoplayer-shared/es2024"),gg=require("@vkontakte/videoplayer-shared/es2024");var Ma=()=>!!window.documentPictureInPicture?.window||!!document.pictureInPictureElement;var kA=(a,e)=>new Nn.Observable(t=>{if(!window.IntersectionObserver)return;let i={root:null},r=new IntersectionObserver((n,o)=>{n.forEach(u=>t.next(u.isIntersecting||Ma()))},{...i,...e});r.observe(a);let s=(0,gg.fromEvent)(document,"visibilitychange").pipe((0,Nn.map)(n=>!document.hidden||Ma())).subscribe(n=>t.next(n));return()=>{r.unobserve(a),s.unsubscribe()}}),vt=kA;var AA=["paused","playing","ready"],RA=["paused","playing","ready"],$a=class{constructor(e){this.subscription=new Y.Subscription;this.videoState=new ee("stopped");this.representations$=new Y.ValueSubject([]);this.droppedFramesManager=new kr;this.maxSeekBackTime$=new Y.ValueSubject(1/0);this.zeroTime$=new Y.ValueSubject(void 0);this.liveOffset=new Ui;this._dashCb=e=>{switch(e.name){case"buffering":{let t=e.isBuffering;this.params.output.isBuffering$.next(t);break}case"error":{this.params.output.error$.next({id:`DashLiveProviderInternal:${e.type}`,category:Y.ErrorCategory.WTF,message:`LiveDashPlayer reported error${e.message?`: ${e.message}`:""}`});break}case"manifest":{let t=e.manifest,i=[];for(let r of t){let s=r.name??r.index.toString(10),n=hi(r.name)??(0,Y.videoSizeToQuality)(r.video),o=r.bitrate/1e3,u={...r.video};if(!n)continue;let c={id:s,quality:n,bitrate:o,size:u};i.push({track:c,representation:r})}this.representations$.next(i),this.params.output.availableVideoTracks$.next(i.map(({track:r})=>r)),this.videoState.getTransition()?.to==="manifest_ready"&&this.videoState.setState("manifest_ready");break}case"qualitySwitch":{let t=e.quality,i=this.representations$.getValue().find(({representation:r})=>r===t)?.track;this.params.output.hostname$.next(new URL(t.headerUrl,this.params.source.url).hostname),(0,Y.isNonNullable)(i)&&this.params.output.currentVideoTrack$.next(i);break}case"bandwidth":{let{size:t,duration:i}=e;this.params.dependencies.throughputEstimator.addRawSpeed(t,i);break}case"index":{this.maxSeekBackTime$.next(e.shiftDuration||0),this.zeroTime$.next(e.zeroTime);break}}};this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.videoState.getTransition(),i=this.params.desiredState.playbackState.getState(),r=this.params.desiredState.playbackState.getTransition(),s=this.params.desiredState.seekState.getState();if(this.log({message:`[syncPlayback] videoState: ${e}; videoTransition: ${JSON.stringify(t)}; desiredPlaybackState: ${i}; seekState: ${JSON.stringify(s)};`}),i==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.dash.destroy(),this.video.removeAttribute("src"),this.video.load(),this.videoState.setState("stopped"));return}if(t)return;let n=this.params.desiredState.videoTrack.getTransition(),o=this.params.desiredState.autoVideoTrackSwitching.getTransition();if((0,Oc.default)(RA,e)&&(n||o)){this.prepare();return}if(r?.to!=="paused"&&s.state==="requested"&&(0,Oc.default)(AA,e)){this.seek(s.position-this.liveOffset.getTotalPausedTime());return}switch(e){case"stopped":this.videoState.startTransitionTo("manifest_ready"),this.dash.attachSource(xe(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"){Q({m:"dlp.sync.1"}),this.videoState.startTransitionTo("playing");let u=r?.from;u&&u==="ready"&&(Q({m:"dlp.sync.2"}),this.dash.catchUp()),Q({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(xe(this.params.source.url,u))}return;default:return(0,Y.assertNever)(e)}};this.textTracksManager=new bt(e.source.url),this.params=e,this.log=this.params.dependencies.logger.createComponentLog("DashLiveProvider");let t=r=>{e.output.error$.next({id:"DashLiveProvider",category:Y.ErrorCategory.WTF,message:"DashLiveProvider internal logic error",thrown:r})};this.subscription.add((0,Y.merge)(this.videoState.stateChangeStarted$.pipe((0,Y.map)(r=>({transition:r,type:"start"}))),this.videoState.stateChangeEnded$.pipe((0,Y.map)(r=>({transition:r,type:"end"})))).subscribe(({transition:r,type:s})=>{Q({m:"dlp.s.1",t:s+`:${r.from}-${r.to}`}),this.log({message:`[videoState change] ${s}: ${JSON.stringify(r)}`})})),this.video=Xe(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(He(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=et(this.video);this.subscription.add(()=>i.destroy()),this.subscription.add(this.representations$.pipe((0,Y.map)(r=>r.map(({track:s})=>s)),(0,Y.filter)(r=>!!r.length),(0,Y.once)()).subscribe(r=>this.droppedFramesManager.connect({logger:this.params.dependencies.logger,video:this.video,droppedFramesChecker:this.params.tuning.droppedFramesChecker,isAuto:this.params.desiredState.autoVideoTrackSwitching,playing$:i.playing$,pause$:i.pause$,tracks:r}))),this.subscription.add(i.canplay$.subscribe(()=>{this.videoState.getTransition()?.to==="ready"&&this.videoState.setState("ready")},t)).add(i.pause$.subscribe(()=>{this.videoState.setState("paused")},t)).add(i.playing$.subscribe(()=>{this.params.desiredState.seekState.getState().state==="applying"&&this.params.output.seekedEvent$.next(),this.videoState.setState("playing")},t)).add(i.error$.subscribe(this.params.output.error$)).add(this.maxSeekBackTime$.pipe((0,Y.filterChanged)(),(0,Y.map)(r=>-r/1e3)).subscribe(this.params.output.duration$)).add((0,Y.combine)({zeroTime:this.zeroTime$.pipe((0,Y.filter)(Y.isNonNullable)),position:i.timeUpdate$}).subscribe(({zeroTime:r,position:s})=>{s===0&&this.videoState.getTransition()||this.params.output.liveTime$.next(r+s*1e3)},t)).add(Nt(this.video,this.params.desiredState.isLooped,t)).add(Ze(this.video,this.params.desiredState.volume,i.volumeState$,t)).add(i.volumeState$.subscribe(this.params.output.volume$,t)).add(ft(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(vt(this.video).subscribe(this.params.output.elementVisible$)).add(this.params.desiredState.autoVideoTrackLimits.stateChangeStarted$.subscribe(({to:{max:r,min:s}})=>{this.dash.setAutoQualityLimits({max:r&&(0,Y.videoQualityToHeight)(r),min:s&&(0,Y.videoQualityToHeight)(s)}),this.params.output.autoVideoTrackLimits$.next({max:r,min:s})})).add(this.videoState.stateChangeEnded$.subscribe(r=>{switch(r.to){case"stopped":this.params.output.position$.next(0),this.params.output.duration$.next(1/0),Q({m:"dlp.vse.s"}),this.params.desiredState.playbackState.setState("stopped");break;case"manifest_ready":case"ready":this.params.desiredState.playbackState.getTransition()?.to==="ready"&&(Q({m:"dlp.vse.r"}),this.params.desiredState.playbackState.setState("ready"));break;case"paused":Q({m:"dlp.vse.pa"}),this.params.desiredState.playbackState.setState("paused");break;case"playing":Q({m:"dlp.vse.pl"}),this.params.desiredState.playbackState.setState("playing");break;default:return(0,Y.assertNever)(r.to)}},t)).add((0,Y.merge)(e.desiredState.playbackState.stateChangeStarted$,e.desiredState.seekState.stateChangeEnded$,e.desiredState.videoTrack.stateChangeStarted$,e.desiredState.autoVideoTrackSwitching.stateChangeStarted$,this.videoState.stateChangeEnded$,this.droppedFramesManager.onDroopedVideoFramesLimit$,(0,Y.observableFrom)(["init"])).pipe((0,Y.debounce)(0)).subscribe(this.syncPlayback,t))}destroy(){Q({m:"dlp.destroy"}),this.subscription.unsubscribe(),this.textTracksManager.destroy(),this.droppedFramesManager.destroy(),this.dash.destroy(),this.params.output.element$.next(void 0),Je(this.video,this.params.tuning.keepVideoElement,this.params.tuning.clearVideoElementInnerHTML)}createLiveDashPlayer(){let e=new Ra({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(){let e=this.representations$.getValue(),t=this.params.desiredState.videoTrack.getTransition()?.to??this.params.desiredState.videoTrack.getState(),i=this.params.desiredState.autoVideoTrackSwitching.getTransition()?.to??this.params.desiredState.autoVideoTrackSwitching.getState(),r=!i&&(0,Y.isNonNullable)(t)?t:Ft(e.map(({track:c})=>c),{container:this.video.getBoundingClientRect(),panelSize:this.params.panelSize,estimatedThroughput:this.params.dependencies.throughputEstimator.throughput$.getValue(),tuning:this.params.tuning.autoTrackSelection,limits:this.params.desiredState.autoVideoTrackLimits.getState(),droppedVideoMaxQualityLimit:this.droppedFramesManager.droppedVideoMaxQualityLimit,abrLogger:this.params.dependencies.abrLogger}),s=r?.id,n=this.params.desiredState.videoTrack.getTransition(),o=this.params.desiredState.videoTrack.getState()?.id,u=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(r&&(n||s!==o)&&this.setVideoTrack(r),u&&this.setAutoQuality(i),n||u||s!==o){let c=e.find(({track:d})=>d.id===s)?.representation;(0,Y.assertNonNullable)(c,"Representations missing"),this.dash.startPlay(c,i)}}setVideoTrack(e){let t=this.representations$.getValue().find(({track:i})=>i.id===e.id)?.representation;(0,Y.assertNonNullable)(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",s=-e,n=s<=this.maxSeekBackTime$.getValue()?s:0;this.params.output.position$.next(e/1e3),Q({m:"dlp.seek",p:e,no:n,url:this.params.source.url}),this.dash.reinit(xe(this.params.source.url,n)),r&&this.dash.pause(),this.liveOffset.resetTo(n,r)}};var vg=$a;var Vr=require("@vkontakte/videoplayer-shared/es2024");var K=require("@vkontakte/videoplayer-shared/es2024");var Nc=j(gt(),1);var Sg=require("@vkontakte/videoplayer-shared/es2024"),yg=({id:a,width:e,height:t,bitrate:i,fps:r,quality:s,streamId:n})=>{let o=(s?hi(s):void 0)??(0,Sg.videoSizeToQuality)({width:e,height:t});return o&&{id:a,quality:o,bitrate:i,size:{width:e,height:t},fps:r,streamId:n}},Tg=({id:a,bitrate:e})=>({id:a,bitrate:e}),Ig=({language:a,label:e},{id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:a,label:e}),Eg=({language:a,label:e,id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:a,label:e}),Fc=({id:a,language:e,label:t,codecs:i,isDefault:r})=>({id:a,language:e,label:t,codec:(0,Nc.default)(i.split("."),0),isDefault:r}),Uc=({id:a,language:e,label:t,hdr:i,codecs:r})=>({id:a,language:e,hdr:i,label:t,codec:(0,Nc.default)(r.split("."),0)});var Be=a=>a.type==="template";var Fn=class{constructor(e,t){this.fov=e,this.orientation=t}};var Un=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,s=t-this.camera.orientation.y,n=i-this.camera.orientation.z;this.camera.orientation.x=e,this.camera.orientation.y=t,this.camera.orientation.z=i,this.lastCameraTurn={x:r,y:s,z:n},this.lastCameraTurnTS=Date.now()}setRotationSpeed(e,t,i){this.rotationSpeed.x=e??this.rotationSpeed.x,this.rotationSpeed.y=t??this.rotationSpeed.y,this.rotationSpeed.z=i??this.rotationSpeed.z}startRotation(){this.rotating=!0}stopRotation(e=!1){e?(this.setRotationSpeed(0,0,0),this.fadeStartSpeed=null):this.startFading(this.rotationSpeed.x,this.rotationSpeed.y,this.rotationSpeed.z),this.rotating=!1}onCameraRelease(){if(this.lastCameraTurn&&this.lastCameraTurnTS){let e=Date.now()-this.lastCameraTurnTS;if(e<this.options.speedFadeThreshold){let t=(1-e/this.options.speedFadeThreshold)*this.options.rotationSpeedCorrection;this.startFading(this.lastCameraTurn.x*t,this.lastCameraTurn.y*t,this.lastCameraTurn.z*t)}}}startFading(e,t,i){this.setRotationSpeed(e,t,i),this.fadeStartSpeed={...this.rotationSpeed},this.fading=!0}stopFading(){this.fadeStartSpeed=null,this.fading=!0,this.fadeTime=0}limitCameraRotationY(e){return Math.max(-this.options.maxYawAngle,Math.min(e,this.options.maxYawAngle))}tick(e){if(!this.lastTickTS){this.lastTickTS=e,this.lastCameraTurnTS=Date.now();return}let t=e-this.lastTickTS,i=t/1e3;if(this.rotating)this.turnCamera(this.rotationSpeed.x*this.options.rotationSpeedCorrection*i,this.rotationSpeed.y*this.options.rotationSpeedCorrection*i,this.rotationSpeed.z*this.options.rotationSpeedCorrection*i);else if(this.fading&&this.fadeStartSpeed){let 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 wg=`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 xg=`#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
- );
107
+ estimatedThroughput: ${r},
108
+ stallsPredictedThroughput: ${l},
109
+ reserve: ${f},
110
+ playbackRate: ${a},
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 Ar=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 Fn(this.params.fov,this.params.orientation),this.cameraRotationManager=new Un(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"),s=this.gl.getUniformLocation(this.program,"u_focus");this.gl.enableVertexAttribArray(t),this.gl.enableVertexAttribArray(i),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,this.vertexBuffer),this.gl.vertexAttribPointer(t,2,this.gl.FLOAT,!1,0,0),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,this.textureMappingBuffer),this.gl.vertexAttribPointer(i,2,this.gl.FLOAT,!1,0,0),this.gl.activeTexture(this.gl.TEXTURE0),this.gl.bindTexture(this.gl.TEXTURE_2D,this.videoTexture),this.gl.uniform1i(r,0),this.gl.uniform2f(s,-this.camera.orientation.x,-this.camera.orientation.y),this.gl.drawArrays(this.gl.TRIANGLE_FAN,0,4),this.gl.bindTexture(this.gl.TEXTURE_2D,null),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,null),this.gl.disableVertexAttribArray(t),this.gl.disableVertexAttribArray(i),this.active&&requestAnimationFrame(this.renderFn)}createShader(e,t){let i=this.gl.createShader(t);if(!i)throw this.destroy(),new Error(`Could not create shader (${t})`);if(this.gl.shaderSource(i,e),this.gl.compileShader(i),!this.gl.getShaderParameter(i,this.gl.COMPILE_STATUS))throw this.destroy(),new Error("An error occurred while compiling the shader: "+this.gl.getShaderInfoLog(i));return i}createProgram(){let e=this.gl.createProgram();if(!e)throw this.destroy(),new Error("Could not create shader program");let t=this.createShader(wg,this.gl.VERTEX_SHADER),i=this.createShader(xg,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,s=e-i,n=t-r,o=e+i,u=t-r,c=e+i,d=t+r,l=e-i,p=t+r;return[s,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}};var ge=require("@vkontakte/videoplayer-shared/es2024");var Yt=(a,e,t)=>t*e+(1-t)*a,qc=(a,e)=>a.reduce((t,i)=>t+i,0)/e,Pg=(a,e,t,i)=>{let r=0,s=t,n=qc(a,e),o=e<i?e:i;for(let u=0;u<o;u++)a[s]>n?r++:r--,s=(a.length+s-1)%a.length;return Math.abs(r)===o};var qn="stalls_manager_metrics",Hc="stalls_manager_abr_params",kg="stalls_manager_default_tuning_abr_params",jc=class{constructor(){this.isSeeked$=new ge.ValueSubject(!1);this.isBuffering$=new ge.ValueSubject(!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 ge.Subscription;this.severeStallOccurred$=new ge.ValueSubject(!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(Hc):{};return{...this.abrParams,...t}}set lastVideoTrackSelected(e){this.lastUniqueVideoTrackSelected?.id!==e.id&&(this.lastUniqueVideoTrackSelected=e,this.lastUniqueVideoTrackSelectedTimestamp=(0,ge.now)(),this.currentStallsCount=0)}destroy(){window.clearTimeout(this.qualityRestrictionTimer),this.subscription.unsubscribe(),this.currentStallDuration$.getValue()!==0&&this.updateStallData();let e=((0,ge.now)()-this.providerStartWatchingTimestamp-this.sumStallsDuration)/1e3,t=this.sumStallsDuration;this.addStallInfoToHistory(e,t),this.updateStoredAbrParams()}resetStoredAbrParamsIfNeeded(){let{bitrateFactorAtEmptyBuffer:e,bitrateFactorAtFullBuffer:t,containerSizeFactor:i}={...this.getStoredData(kg)},{bitrateFactorAtEmptyBuffer:r,bitrateFactorAtFullBuffer:s,containerSizeFactor:n}={...this.abrParams};this.tuning.enabled&&e===r&&t===s&&i===n||(this.removeStoredData(Hc),this.setStoredData(kg,{bitrateFactorAtEmptyBuffer:r,bitrateFactorAtFullBuffer:s,containerSizeFactor:n}))}updateStoredAbrParams(){let e=[],t=this.getStoredData(qn,"[]");if(!this.tuning.enabled||t.length<this.tuning.stallsMetricsHistoryLength)return;let i=t.reduce((s,n)=>s+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 s=t.reduce((n,o)=>n+o.stallsDurationPerTvt,0)/t.length;e.push(this.calculateOptimalAbrParams(s,i))}this.tuning.useEmaStallsDurationPerTvt&&e.push(this.calculateOptimalAbrParams(t[t.length-1].stallsDurationPerTvtSmoothed,i));let r={bitrateFactorAtEmptyBuffer:Math.max(...e.map(s=>s.bitrateFactorAtEmptyBuffer)),bitrateFactorAtFullBuffer:Math.max(...e.map(s=>s.bitrateFactorAtFullBuffer)),containerSizeFactor:Math.min(...e.map(s=>s.containerSizeFactor))};this.setStoredData(qn,[]),this.setStoredData(Hc,r)}calculateOptimalAbrParams(e,t){let{targetStallsDurationPerTvt:i,deviationStallsDurationPerTvt:r,criticalStallsDurationPerTvt:s,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>s&&(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(ge.safeStorage.get(e)??t)}setStoredData(e,t){ge.safeStorage.set(e,JSON.stringify(t))}removeStoredData(e){ge.safeStorage.remove(e)}addStallInfoToHistory(e,t){if(e<this.tuning.minTvtToBeCounted||e>this.tuning.maxTvtToBeCounted||e*1e3<t)return;let i=this.getStoredData(qn,"[]"),r=t/e,s=i.length?Yt(i[i.length-1].stallsDurationPerTvtSmoothed,t/e,this.tuning.emaAlpha):r,n={tvt:e,stallsDuration:t,stallsDurationPerTvt:r,stallsDurationPerTvtSmoothed:s};i.push(n),i.length>this.tuning.stallsMetricsHistoryLength&&i.shift(),this.setStoredData(qn,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((0,ge.once)()).subscribe(t=>this.providerStartWatchingTimestamp=(0,ge.now)())),this.subscription.add(this.currentStallDuration$.pipe((0,ge.filterChanged)()).subscribe(t=>{let{stallDurationNoDataBeforeQualityDecrease:i,stallCountBeforeQualityDecrease:r,resetQualityRestrictionTimeout:s,ignoreStallsOnSeek:n}=this.tuning;if((0,ge.isNullable)(this.lastUniqueVideoTrackSelected)||n&&this.isSeeked$.getValue())return;let o=this.rtt$.getValue(),u=this.throughput$.getValue(),c=this.videoLastDataObtainedTimestamp$.getValue(),d=(0,ge.now)(),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,(0,ge.isNonNullable)(this.lastUniqueVideoTrackSelected.bitrate)&&u>this.lastUniqueVideoTrackSelected.bitrate&&(this.predictedThroughputWithoutData=this.lastUniqueVideoTrackSelected.bitrate)),!t&&(0,ge.now)()-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},s)),this.lastStallDuration=t}))}},Hn=jc;var it=require("@vkontakte/videoplayer-shared/es2024"),jn=class{constructor(){this.subscription=new it.Subscription;this.pipSize$=new it.ValueSubject(void 0);this.videoSize$=new it.ValueSubject(void 0);this.elementSize$=new it.ValueSubject(void 0);this.pictureInPictureWindowRemoveEventListener=it.noop}connect({observableVideo:e,video:t}){let i=r=>{let s=r.target;this.pipSize$.next({width:s.width,height:s.height})};this.subscription.add((0,it.observeElementSize)(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((0,it.combine)({videoSize:this.videoSize$,pipSize:this.pipSize$,inPip:e.inPiP$}).pipe((0,it.map)(({videoSize:r,inPip:s,pipSize:n})=>s?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 fi=require("@vkontakte/videoplayer-shared/es2024");var bi=({subscription:a,desiredState:e,videoElement$:t,observableVideo:i})=>{if(!F.browser.isSafari)return;let r=0,s=!1;a.add(e.volume.stateChangeStarted$.pipe((0,fi.map)(()=>{let n=e.volume.getTransition(),o=t.getValue();return!o||!n?!1:!n.to.muted&&o.muted}),(0,fi.filter)(n=>!!n),(0,fi.once)()).subscribe(()=>{r=performance.now(),s=!0})),a.add(i.playbackRateState$.pipe((0,fi.filter)(()=>s),(0,fi.once)()).subscribe(()=>{let n=t.getValue(),o=e.playbackRate.getState();n&&o!==n.playbackRate&&performance.now()-r<1e3&&(n.playbackRate=o)}))};var Hi=class{constructor(e){this.subscription=new K.Subscription;this.videoState=new ee("stopped");this.observableVideo=null;this.droppedFramesManager=new kr;this.stallsManager=new Hn;this.elementSizeManager=new jn;this.videoTracksMap=new Map;this.audioTracksMap=new Map;this.textTracksMap=new Map;this.videoStreamsMap=new Map;this.audioStreamsMap=new Map;this.videoTrackSwitchHistory=new mi;this.audioTrackSwitchHistory=new mi;this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),i=this.params.desiredState.playbackState.getTransition(),r=this.params.desiredState.seekState.getState();if(!this.videoState.getTransition()){if(r.state==="requested"&&i?.to!=="paused"&&e!=="stopped"&&t!=="stopped"&&this.seek(r.position,r.forcePrecise),t==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.player.stop(),this.video.load(),this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.currentNativeBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),C(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"),C(this.params.desiredState.playbackState,"paused")):t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):i?.to==="ready"&&C(this.params.desiredState.playbackState,"ready");return;case"playing":t==="paused"?(this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()):t==="playing"&&this.video.paused?this.playIfAllowed():i?.to==="playing"&&C(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):i?.to==="paused"&&C(this.params.desiredState.playbackState,"paused");return;default:return(0,K.assertNever)(e)}}};this.init3DScene=e=>{if(this.scene3D)return;this.scene3D=new Ar(this.params.container,this.video,{fov:this.params.tuning.spherical.fov,orientation:this.params.tuning.spherical.orientation||{x:e.projectionData?.pose.yaw||0,y:e.projectionData?.pose.pitch||0,z:e.projectionData?.pose.roll||0},rotationSpeed:this.params.tuning.spherical.rotationSpeed,maxYawAngle:this.params.tuning.spherical.maxYawAngle,rotationSpeedCorrection:this.params.tuning.spherical.rotationSpeedCorrection,degreeToPixelCorrection:this.params.tuning.spherical.degreeToPixelCorrection,speedFadeTime:this.params.tuning.spherical.speedFadeTime,speedFadeThreshold:this.params.tuning.spherical.speedFadeThreshold});let t=this.elementSizeManager.getValue();t&&this.scene3D.setViewportSize(t.width,t.height)};this.destroy3DScene=()=>{this.scene3D&&(this.scene3D.destroy(),this.scene3D=void 0)};this.textTracksManager=new bt(e.source.url),this.params=e,this.video=Xe(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(He(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;(0,K.isNullable)(this.observableVideo)&&(this.observableVideo=et(this.video),this.subscription.add(()=>this.observableVideo?.destroy()));let i=this.constructor.name,r=n=>{e.error$.next({id:i,category:K.ErrorCategory.WTF,message:`${i} internal logic error`,thrown:n})},s=(n,o)=>this.subscription.add(n.subscribe(o,r));return{output:e,desiredState:t,observableVideo:this.observableVideo,genericErrorListener:r,connect:s}}subscribe(){let{output:e,desiredState:t,observableVideo:i,genericErrorListener:r,connect:s}=this.getProviderSubscriptionInfo();this.subscription.add(this.params.output.availableVideoTracks$.pipe((0,K.filter)(l=>!!l.length),(0,K.once)()).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((0,K.map)(l=>l.to.state!=="none"),(0,K.filterChanged)());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}),s(i.ended$,e.endedEvent$),s(i.looped$,e.loopedEvent$),s(i.error$,e.error$),s(i.isBuffering$,e.isBuffering$),s(i.currentBuffer$,e.currentNativeBuffer$),s(i.playing$,e.firstFrameEvent$),s(i.canplay$,e.canplay$),s(i.inPiP$,e.inPiP$),s(i.inFullscreen$,e.inFullscreen$),s(i.loadedMetadata$,e.loadedMetadataEvent$),s(this.player.error$,e.error$),s(this.player.fetcherRecoverableError$,e.fetcherRecoverableError$),s(this.player.fetcherError$,e.fetcherError$),s(this.player.lastConnectionType$,e.httpConnectionType$),s(this.player.lastConnectionReused$,e.httpConnectionReused$),s(this.player.lastConnectionMetrics$,e.httpConnectionMetrics$),s(this.player.lastDownloadMetrics$,e.httpDownloadMetrics$),s(this.player.isLive$,e.isLive$),s(this.player.currentBuffer$,e.currentBuffer$),s(this.player.lastRequestFirstBytes$.pipe((0,K.filter)(K.isNonNullable),(0,K.once)()),e.firstBytesEvent$),s(this.stallsManager.severeStallOccurred$,e.severeStallOccurred$),s(this.videoState.stateChangeEnded$.pipe((0,K.map)(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(Nt(this.video,t.isLooped,r)),this.subscription.add(i.volumeState$.subscribe(this.params.output.volume$,r)),bi({subscription:this.subscription,desiredState:t,videoElement$:this.params.output.element$,observableVideo:i}),this.subscription.add(Ze(this.video,t.volume,i.volumeState$,r)),this.subscription.add(ft(this.video,t.playbackRate,i.playbackRateState$,r)),this.elementSizeManager.connect({video:this.video,observableVideo:i}),s(vt(this.video,{threshold:this.params.tuning.autoTrackSelection.activeVideoAreaThreshold}),e.elementVisible$),this.subscription.add(i.playing$.subscribe(()=>{this.videoState.setState("playing"),C(t.playbackState,"playing"),this.scene3D&&this.scene3D.play()},r)).add(i.pause$.subscribe(()=>{this.videoState.setState("paused"),C(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"),C(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(),m=this.player.getCodecs();if((0,K.assertNonNullable)(p,"Manifest not loaded or empty"),!this.params.tuning.isAudioDisabled){let g=[];for(let v of p.audio){g.push(Fc(v));let S=[];for(let E of v.representations){let A=Tg(E);S.push(A),this.audioTracksMap.set(A,{stream:v,representation:E})}this.audioStreamsMap.set(v,S)}this.params.output.availableAudioStreams$.next(g)}let f=[];for(let g of p.video){f.push(Uc(g));let v=[];for(let S of g.representations){let E=yg({...S,streamId:g.id});E&&(v.push(E),this.videoTracksMap.set(E,{stream:g,representation:S}))}this.videoStreamsMap.set(g,v)}this.params.output.availableVideoStreams$.next(f);for(let g of p.text)for(let v of g.representations){let S=Ig(g,v);this.textTracksMap.set(S,{stream:g,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),m?.video&&this.params.output.availableVideoCodecs$.next(m.video),m?.audio&&this.params.output.availableAudioCodecs$.next(m.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=(0,K.merge)(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$,(0,K.fromEvent)(this.video,"progress")).pipe((0,K.filter)(()=>this.videoTracksMap.size>0)),{abrThrottle:u}=this.params.tuning.dash;u&&(o=o.pipe((0,K.throttle)(u))),this.subscription.add(o.subscribe(async()=>{let l=this.player.state$.getState(),p=this.player.state$.getTransition(),m=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[g,v]=f,S=[...this.videoTracksMap.keys()].find(A=>this.videoTracksMap.get(A)?.representation.id===g.id);(0,K.isNonNullable)(S)&&(this.stallsManager.lastVideoTrackSelected=S);let E=this.params.desiredState.autoVideoTrackLimits.getTransition();E&&this.params.output.autoVideoTrackLimits$.next(E.to),l==="manifest_ready"?await this.player.initRepresentations(g.id,v?.id,this.params.sourceHls):(await this.player.switchRepresentation("video",g.id,m),v&&await this.player.switchRepresentation("audio",v.id,m))},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((0,K.filterChanged)()).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[m,{stream:f}]=p,g=this.params.desiredState.videoStream.getTransition();g&&g.to&&g.to.id===f.id&&this.params.desiredState.videoStream.setState(g.to),e.currentVideoTrack$.next(m),e.currentVideoStream$.next(Uc(f))},r)),this.subscription.add(this.player.currentAudioRepresentation$.pipe((0,K.filterChanged)()).subscribe(l=>{let p=[...this.audioTracksMap.entries()].find(([,{representation:v}])=>v.id===l);if(!p){e.currentAudioStream$.next(void 0);return}let[m,{stream:f}]=p,g=this.params.desiredState.audioStream.getTransition();g&&g.to&&g.to.id===f.id&&this.params.desiredState.audioStream.setState(g.to),e.currentAudioStream$.next(Fc(f))},r)),this.subscription.add(this.player.currentVideoRepresentationInit$.subscribe(l=>{if(l?.is3dVideo&&this.params.tuning.spherical?.enabled)try{this.init3DScene(l),e.is3DVideo$.next(!0)}catch(p){e.warning$.next({id:"DashProvider",message:`DashProvider could not initialize 3D-scene: ${p}`})}else this.destroy3DScene(),this.params.tuning.spherical?.enabled&&e.is3DVideo$.next(!1)},r)),this.subscription.add(this.player.currentVideoSegmentLength$.subscribe(e.currentVideoSegmentLength$,r)),this.subscription.add(this.player.currentAudioSegmentLength$.subscribe(e.currentAudioSegmentLength$,r)),this.textTracksManager.connect(this.video,t,e);let c=t.playbackState.stateChangeStarted$.pipe((0,K.map)(({to:l})=>l==="ready"),(0,K.filterChanged)());this.subscription.add((0,K.merge)(c,t.autoVideoTrackSwitching.stateChangeStarted$,this.player.state$.stateChangeEnded$,(0,K.observableFrom)(["init"])).subscribe(()=>{let l=t.autoVideoTrackSwitching.getState(),m=t.playbackState.getState()==="ready"?this.params.tuning.dash.forwardBufferTargetPreload:l?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;this.player.setBufferTarget(m)})),this.subscription.add((0,K.merge)(c,this.player.state$.stateChangeEnded$,(0,K.observableFrom)(["init"])).subscribe(()=>this.player.setPreloadOnly(t.playbackState.getState()==="ready")));let d=(0,K.merge)(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,(0,K.observableFrom)(["init"])).pipe((0,K.debounce)(0));this.subscription.add(d.subscribe(this.syncPlayback,r))}selectVideoAudioRepresentations(){if(this.player.isStreamEnded)return;let e=this.params.tuning.useNewAutoSelectVideoTrack?Pa:xa,t=this.params.tuning.useNewAutoSelectVideoTrack?_n:Vn,i=this.params.tuning.useNewAutoSelectVideoTrack?Ft:Bn,{desiredState:r,output:s}=this.params,n=r.autoVideoTrackSwitching.getState(),o=r.videoTrack.getState()?.id,u=[...this.videoTracksMap.keys()].find(({id:B})=>B===o),c=s.currentVideoTrack$.getValue(),d=r.videoStream.getState()??(u&&this.videoTracksMap.get(u)?.stream)??this.videoStreamsMap.size===1?this.videoStreamsMap.keys().next().value:void 0;if(!d)return;let l=[...this.videoStreamsMap.keys()].find(({id:B})=>B===d.id),p=l&&this.videoStreamsMap.get(l);if(!p)return;let m=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 g=(this.video.duration*1e3||1/0)-this.video.currentTime*1e3,v=Math.min(m/Math.min(f,g||1/0),1),S=r.audioStream.getState()??(this.audioStreamsMap.size===1?this.audioStreamsMap.keys().next().value:void 0),E=[...this.audioStreamsMap.keys()].find(({id:B})=>B===S?.id)??this.audioStreamsMap.keys().next().value,A=0;if(E){if(u&&!n){let B=e(u,p,this.audioStreamsMap.get(E)??[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);A=Math.max(A,B?.bitrate??-1/0)}if(c){let B=e(c,p,this.audioStreamsMap.get(E)??[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);A=Math.max(A,B?.bitrate??-1/0)}}let x=u;(n||!x)&&(x=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:A,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 D=E&&t(x,p,this.audioStreamsMap.get(E)??[],{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}),N=this.videoTracksMap.get(x)?.representation,q=D&&this.audioTracksMap.get(D)?.representation;if(N&&q)return[N,q];if(N&&!q&&this.audioTracksMap.size===0)return[N,void 0]}prepare(e=0){this.player.initManifest(this.video,this.params.source.url,e)}playIfAllowed(){tt(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),C(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:K.ErrorCategory.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),Je(this.video,this.params.tuning.keepVideoElement,this.params.tuning.clearVideoElementInnerHTML),this.tracer.end()}};var ml=j(Ca(),1);var{NativeAbortSignal:GO,NativeAbortController:YO}=function(a){return{NativeAbortSignal:a.AbortSignal,NativeAbortController:a.AbortController}}(typeof self<"u"?self:global);function Qg(a){let e;try{e=new Event("abort")}catch{typeof document<"u"?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=a,e}function Gg(a){if(a===void 0)if(typeof document>"u")a=new Error("This operation was aborted"),a.name="AbortError";else try{a=new DOMException("signal is aborted without reason"),Object.defineProperty(a,"name",{value:"AbortError"})}catch{a=new Error("This operation was aborted"),a.name="AbortError"}return a}var zn=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,s=i.length;r<s;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,s=i.length;r<s;r++){let n=i[r];try{n.callback.call(this,e)}catch(o){Promise.resolve().then(()=>{throw o})}n.options&&n.options.once&&this.removeEventListener(e.type,n.callback)}return!e.defaultPrevented}},Rr=class extends zn{constructor(){super(),this.listeners||zn.call(this),Object.defineProperty(this,"aborted",{value:!1,writable:!0,configurable:!0}),Object.defineProperty(this,"onabort",{value:null,writable:!0,configurable:!0}),Object.defineProperty(this,"reason",{value:void 0,writable:!0,configurable:!0})}toString(){return"[object AbortSignal]"}dispatchEvent(e){e.type==="abort"&&(this.aborted=!0,typeof this.onabort=="function"&&this.onabort.call(this,e)),super.dispatchEvent(e)}throwIfAborted(){let{aborted:e,reason:t="Aborted"}=this;if(e)throw t}static timeout(e){let t=new zi;return setTimeout(()=>t.abort(new DOMException(`This signal is timeout in ${e}ms`,"TimeoutError")),e),t.signal}static any(e){let t=new zi;function i(){t.abort(this.reason),r()}function r(){for(let s of e)s.removeEventListener("abort",i)}for(let s of e)if(s.aborted){t.abort(s.reason);break}else s.addEventListener("abort",i);return t.signal}},zi=class{constructor(){Object.defineProperty(this,"signal",{value:new Rr,writable:!0,configurable:!0})}abort(e){let t=Gg(e),i=Qg(t);this.signal.reason=t,this.signal.dispatchEvent(i)}toString(){return"[object AbortController]"}};typeof Symbol<"u"&&Symbol.toStringTag&&(zi.prototype[Symbol.toStringTag]="AbortController",Rr.prototype[Symbol.toStringTag]="AbortSignal");function Wn(a){return a.__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL?(console.log("__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL=true is set, will force install polyfill"),!0):typeof a.Request=="function"&&!a.Request.prototype.hasOwnProperty("signal")||!a.AbortController}function Wc(a){typeof a=="function"&&(a={fetch:a});let{fetch:e,Request:t=e.Request,AbortController:i,__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL:r=!1}=a;if(!Wn({fetch:e,Request:t,AbortController:i,__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL:r}))return{fetch:e,Request:s};let s=t;(s&&!s.prototype.hasOwnProperty("signal")||r)&&(s=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},s.prototype=t.prototype);let n=e;return{fetch:(u,c)=>{let d=s&&s.prototype.isPrototypeOf(u)?u.signal:c?c.signal:void 0;if(d){let l;try{l=new DOMException("Aborted","AbortError")}catch{l=new Error("Aborted"),l.name="AbortError"}if(d.aborted)return Promise.reject(l);let p=new Promise((m,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:s}}var Ae=typeof globalThis=="object"&&globalThis||typeof window=="object"&&window;var tR=()=>"fetch"in Ae,Da=tR()&&Wn({fetch:Ae.fetch,Request:Ae.Request,AbortController:Ae.AbortController}),Yg=Da?Wc({fetch:Ae.fetch,Request:Ae.Request,AbortController:Ae.AbortController}):void 0,St=Da?Yg.fetch:Ae.fetch,oN=Da?Yg.Request:Ae.Request,be=Da?zi:Ae.AbortController,uN=Da?Rr:Ae.AbortSignal;var $S=j(Ke(),1);var bv=j(fv(),1),Mr=require("@vkontakte/videoplayer-shared/es2024"),Qn=a=>{if(!a)return{id:"EmptyResponse",category:Mr.ErrorCategory.PARSER,message:"Empty response"};if(a.length<=2&&a.match(/^\d+$/))return{id:`UVError#${a}`,category:Mr.ErrorCategory.NETWORK,message:`UV Error ${a}`};let e=(0,bv.default)(a).substring(0,100).toLowerCase();if(e.startsWith("<!doctype")||e.startsWith("<html>")||e.startsWith("<body>")||e.startsWith("<head>"))return{id:"UnexpectedHTML",category:Mr.ErrorCategory.NETWORK,message:"Received unexpected HTML, possibly a ISP block"};if(e.startsWith("<?xml"))return new DOMParser().parseFromString(a,"text/xml").querySelector("parsererror")?{id:"InvalidXML",category:Mr.ErrorCategory.PARSER,message:"XML parsing error"}:{id:"XMLParserLogicError",category:Mr.ErrorCategory.PARSER,message:"Response is valid XML, but parser failed"}};var T=require("@vkontakte/videoplayer-shared/es2024");var gi=a=>{let e=new URL(a);return e.searchParams.set("quic","1"),e.toString()};var Gn=a=>{let e=a.get("X-Delivery-Type"),t=a.get("X-Reused"),i=e===null?"http1":e??void 0,r=t===null?void 0:{1:!0,0:!1}[t]??void 0;return{type:i,reused:r}};var V=require("@vkontakte/videoplayer-shared/es2024");var Yn=a=>{let e=new URL(a);return e.searchParams.set("enable-subtitles","yes"),e.toString()};var Kn=class{constructor({throughputEstimator:e,requestQuic:t,tracer:i,compatibilityMode:r=!1,useEnableSubtitlesParam:s=!1}){this.manifestRequested=new V.Subject;this.manifestReceived=new V.Subject;this.firstBytesRequested=new V.Subject;this.firstBytesReceived=new V.Subject;this.lastConnectionType$=new V.ValueSubject(void 0);this.lastConnectionReused$=new V.ValueSubject(void 0);this.lastRequestFirstBytes$=new V.ValueSubject(void 0);this.lastConnectionMetrics$=new V.ValueSubject(void 0);this.lastDownloadMetrics$=new V.ValueSubject(void 0);this.recoverableError$=new V.Subject;this.error$=new V.Subject;this.abortAllController=new be;this.subscription=new V.Subscription;this.performanceObserver=null;this.pendingConnectionMetrics=new Map;this.fetchManifest=(0,V.abortable)(this.abortAllController.signal,async function*(e){let t=this.tracer.createComponentTracer("FetchManifest"),i=e;this.requestQuic&&(i=gi(i)),!this.compatibilityMode&&this.useEnableSubtitlesParam&&(i=Yn(i)),this.trackRequestStart(i,performance.now());let r=(0,V.now)();this.manifestRequested.next();let s=yield this.doFetch(i,{signal:this.abortAllController.signal}).catch(V.suppressAbort);if(s){let n=(0,V.now)();t.log("success",(0,V.flattenObject)({url:i,message:"Request successfully executed"})),t.end(),this.manifestReceived.next(),this.onHeadersReceived(s.headers);let o=s.headers.get("content-length"),u=0;o&&(u=parseInt(o,10));let c=await s.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,m={bytes:u,speed:p,url:e};this.lastDownloadMetrics$.next(m)}return c}else return t.error("error",(0,V.flattenObject)({url:i,message:"No data in request manifest"})),t.end(),null}.bind(this));this.fetch=(0,V.abortable)(this.abortAllController.signal,async function*(e,{rangeMethod:t=this.compatibilityMode?0:1,range:i,onProgress:r,priority:s="auto",signal:n,measureThroughput:o=!0,isLowLatency:u=!1,bufferOptimisation:c=!1}={}){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 k=new URL(d,(0,V.getWindow)().location.href);k.searchParams.append("bytes",`${i.from}-${i.to}`),d=k.toString();break}default:(0,V.assertNever)(t)}this.requestQuic&&(d=gi(d));let m=this.abortAllController.signal,f;if(n){let k=new be;if(f=(0,V.merge)((0,V.fromEvent)(this.abortAllController.signal,"abort"),(0,V.fromEvent)(n,"abort")).subscribe(()=>{try{k.abort()}catch(P){(0,V.suppressAbort)(P)}}),this.subscription.add(f),this.abortAllController.signal.aborted||n.aborted)try{k.abort()}catch(P){(0,V.suppressAbort)(P)}m=k.signal}let g=0,v=(0,V.now)();p.log("startRequest",(0,V.flattenObject)({url:d,priority:s,rangeMethod:t,range:i,isLowLatency:u,requestStartedAt:v})),this.trackRequestStart(d,performance.now()),this.firstBytesRequested.next();let S=yield this.doFetch(d,{priority:s,headers:l,signal:m}),E=(0,V.now)();if(!S)return p.error("error",{message:"No response in request"}),p.end(),f?.unsubscribe(),null;if(this.throughputEstimator?.addRawRtt(E-v),!S.ok||!S.body){f?.unsubscribe();let k=`Fetch error ${S.status}: ${S.statusText}`;return p.error("error",{message:k}),p.end(),Promise.reject(new Error(`Fetch error ${S.status}: ${S.statusText}`))}if(this.onHeadersReceived(S.headers),!r&&!o){f?.unsubscribe();let k=(0,V.now)(),P={requestStartedAt:v,requestEndedAt:k,duration:k-v};return p.log("endRequest",(0,V.flattenObject)(P)),p.end(),S.arrayBuffer()}let A=S.body;if(o){let k;[A,k]=S.body.tee(),this.throughputEstimator?.trackStream(k,u)}let x=A.getReader(),D,N=parseInt(S.headers.get("content-length")??"",10);Number.isFinite(N)&&(D=N),!D&&i&&(D=i.to-i.from+1);let q=D?new Uint8Array(D):new Uint8Array(0),B=!1,W=k=>{f?.unsubscribe(),B=!0,(0,V.suppressAbort)(k)},L=(0,V.abortable)(m,async function*({done:k,value:P}){if(g===0&&(this.lastRequestFirstBytes$.next((0,V.now)()-v),this.firstBytesReceived.next()),m.aborted){f?.unsubscribe();return}if(!k&&P){if(c&&D)q.set(P,g),g+=P.byteLength;else{let J=new Uint8Array(q.length+P.length);J.set(q),J.set(P,q.length),q=J,g+=P.byteLength}r?.(new DataView(q.buffer),g),yield x?.read().then(L,W)}}.bind(this));yield x?.read().then(L,W),f?.unsubscribe();let ae=(0,V.now)(),X={failed:B,requestStartedAt:v,requestEndedAt:ae,duration:ae-v};if(B)return p.error("endRequest",(0,V.flattenObject)(X)),p.end(),null;if(g>0){let k=ae-v,J=g/(k/1e3)*8/1024,O={bytes:g,speed:J,url:e};this.lastDownloadMetrics$.next(O)}return p.log("endRequest",(0,V.flattenObject)(X)),p.end(),q.buffer}.bind(this));this.fetchByteRangeRepresentation=(0,V.abortable)(this.abortAllController.signal,async function*(e,t,i){if(e.type!=="byteRange")return null;let{from:r,to:s}=e.initRange,n=r,o=s,u=!1,c,d;e.indexRange&&(c=e.indexRange.from,d=e.indexRange.to,u=s+1===c,u&&(n=Math.min(c,r),o=Math.max(d,s))),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,s-n+1);if(!t.validateData(p))throw new Error("Invalid media file");let m=t.parseInit(p),f=e.indexRange??t.getIndexRange(m);if(!f)throw new ReferenceError("No way to load representation index");let g;if(u)g=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;g=new DataView(S)}let v=t.parseSegments(g,m,f).map(S=>({networkStatus:"none",bufferStatus:"none",status:"none",time:S.time,byte:S.byte}));return{initMetadata:m,initDataView:new DataView(l),segments:v}}.bind(this));this.fetchTemplateRepresentation=(0,V.abortable)(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 s=e.segments.map(n=>({...n,networkStatus:"none",bufferStatus:"none",status:"none",size:void 0}));return{initMetadata:null,initDataView:new DataView(r),segments:s}}.bind(this));this.throughputEstimator=e,this.requestQuic=t,this.compatibilityMode=r,this.tracer=i.createComponentTracer("Fetcher"),this.useEnableSubtitlesParam=s,(0,V.getWindow)().PerformanceObserver&&this.setupPerformanceObserver()}onHeadersReceived(e){let{type:t,reused:i}=Gn(e);this.lastConnectionType$.next(t),this.lastConnectionReused$.next(i)}setupPerformanceObserver(){this.performanceObserver=new((0,V.getWindow)()).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(0,V.getWindow)().navigator))return"unknown";let e=(0,V.getWindow)().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,s=0;return e.domainLookupStart>0&&e.domainLookupEnd>0&&(t=e.domainLookupEnd-e.domainLookupStart),e.connectStart>0&&e.connectEnd>0&&(s=e.connectEnd-e.connectStart,e.secureConnectionStart>0?(r=e.connectEnd-e.secureConnectionStart,i=e.secureConnectionStart-e.connectStart):i=s),{dnsResolveTime:Math.max(0,t),tcpHandshakeTime:Math.max(0,i),tlsHandshakeTime:Math.max(0,r),totalConnectTime:Math.max(0,s),networkType:this.estimateNetworkType(),url:e.name}}findMatchingRequest(e){try{for(let[t,i]of this.pendingConnectionMetrics.entries()){let r=new URL(e.name),s=r.origin+r.pathname,n=new URL(i.url),o=n.origin+n.pathname;if(s===o&&e.startTime>=i.startTime-10&&e.startTime<=i.startTime+1e3)return t}}catch{this.recoverableError$.next({id:"VideoDataFetchError",message:"Video data fetch error with getting download metrics",category:V.ErrorCategory.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"){let{type:r}=e;switch(r){case"byteRange":return this.fetchByteRangeRepresentation(e,t,i)??null;case"template":return this.fetchTemplateRepresentation(e,i)??null;default:(0,V.assertNever)(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 St(e,t);if(i.ok)return i;let r=await i.text(),s=parseInt(r);if(!isNaN(s))switch(s){case 1:this.recoverableError$.next({id:"VideoDataLinkExpiredError",message:"Video data links have expired",category:V.ErrorCategory.FATAL,httpCode:i.status,UVBackendErrorCode:r});break;case 8:this.recoverableError$.next({id:"VideoDataLinkBlockedForFloodError",message:"Url blocked for flood",category:V.ErrorCategory.FATAL,httpCode:i.status,UVBackendErrorCode:r});break;case 18:this.recoverableError$.next({id:"VideoDataLinkIllegalIpChangeError",message:"Client IP has changed",category:V.ErrorCategory.FATAL,httpCode:i.status,UVBackendErrorCode:r});break;case 21:this.recoverableError$.next({id:"VideoDataLinkIllegalHostChangeError",message:"Request HOST has changed",category:V.ErrorCategory.FATAL,httpCode:i.status,UVBackendErrorCode:r});break;default:this.error$.next({id:"GeneralVideoDataFetchError",message:`Generic video data fetch error (${s})`,category:V.ErrorCategory.FATAL,httpCode:i.status,UVBackendErrorCode:r})}}};var al=j(Nv(),1),nS=j(li(),1),oS=j(tS(),1),uS=j(gt(),1),sl=j(Di(),1);var iS=j(Ke(),1),rl=a=>{let e=a.split("."),[t,...i]=e;if(!t)return!1;switch(t){case"av01":{let[r,s,n]=i;return!!(n&&parseInt(n,10)>8)}case"vp09":{let[r,s,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[s,n]=r.toUpperCase(),o=s+n;return(0,iS.default)(["6E","7A","F4"],o)}}return!1};var Va=require("@vkontakte/videoplayer-shared/es2024");var rS=a=>{if(a.includes("/")){let e=a.split("/");return parseInt(e[0])/parseInt(e[1])}else return parseFloat(a)};var aS=a=>{try{let e=bM(),t=a.match(e),{groups:i}=t??{};if(i){let r={};if(i.extensions){let o=i.extensions.toLowerCase().match(/(?:[0-9a-wy-z](?:-[a-z0-9]{2,8})+)/g);Array.from(o||[]).forEach(u=>{r[u[0]]=u.slice(2)})}let s=i.variants?.split(/-/).filter(o=>o!==""),n={extlang:i.extlang,langtag:i.langtag,language:i.language,privateuse:i.privateuse||i.privateuse2,region:i.region,script:i.script,extensions:r,variants:s};return Object.keys(n).forEach(o=>{let u=n[o];(typeof u>"u"||u==="")&&delete n[o]}),n}return null}catch{return null}};function bM(){let a="(?<extlang>(?:[a-z]{3}(?:-[a-z]{3}){0,2}))",e="x(?:-[a-z0-9]{1,8})+",d=`^(?:(?<langtag>${`
172
- (?<language>${`(?:[a-z]{2,3}(?:-${a})?|[a-z]{4}|[a-z]{5,8})`})
116
+ [selected audio track] ${v?.id}
117
+ `}),v},Xa=e=>new URL(e).hostname,z=require(`@vkontakte/videoplayer-shared/es2024`),Za=l(An(),1),Qa=l(Fn(),1),$a=(e,t)=>typeof e==`string`?Qa.default(e,t):Za.default(e,t),eo=l(at(),1),to=e=>{if(e instanceof DOMException&&eo.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`))},no=async(e,t)=>{let n=e.muted;try{await e.play()}catch(r){if(!to(r))return!1;if(t&&t(),n)return console.warn(r),!1;e.muted=!0;try{await e.play()}catch(t){return to(t)?(e.muted=!1,console.warn(t),!1):!1}}return!0},ro=require(`@vkontakte/videoplayer-shared/es2024`),io=l($e(),1),ao=require(`@vkontakte/videoplayer-shared/es2024`);function oo(){return ao.now()}function so(e){return oo()-e}function co(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 lo(e,t,n){let r=(...i)=>{n.apply(null,i),e.removeEventListener(t,r)};e.addEventListener(t,r)}function uo(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;ao.assertNonNullable(u);let e=so(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=oo(),o=new i,o.open(`get`,e);let n=0,r,l=0,m=()=>(ao.assertNonNullable(u),Math.max(u,Math.max(r||0,l||0)));if(a&&o.addEventListener(`progress`,e=>{let t=oo();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;ao.assertNonNullable(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||!io.default(e).length)?b():(d&&d(),t(e))}else b()}),o.addEventListener(`error`,()=>{b()}),f){let e=()=>{ao.assertNonNullable(o),o.readyState===XMLHttpRequest.HEADERS_RECEIVED&&(l=oo(),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)=>(ao.isNonNullable(e)&&(h=e),ao.isNonNullable(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 fo=100,po=2e3,mo=500;class ho{intervals=[];currentRate=0;logger;constructor(e){this.logger=e}_updateRate(e){let t=.2;this.currentRate&&(e<this.currentRate*.1?t=.8:e<this.currentRate*.5?t=.5:e<this.currentRate*.7&&(t=.3)),e=Math.max(1,Math.min(e,100*1024*1024)),this.currentRate=this.currentRate?this.currentRate*(1-t)+e*t:e}_createInterval(e,t,n){return{start:e,end:t,bytes:n}}_doMergeIntervals(e,t){e.start=Math.min(t.start,e.start),e.end=Math.max(t.end,e.end),e.bytes+=t.bytes}_mergeIntervals(e,t){return e.start<=t.end&&t.start<=e.end?(this._doMergeIntervals(e,t),!0):!1}_flushIntervals(){if(!this.intervals.length)return!1;let e=this.intervals[0].start,t=this.intervals[this.intervals.length-1].end-mo;if(t-e>po){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>fo&&(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 go=l($e(),1);class _o{pendingQueue=[];activeRequests={};completeRequests={};averageSegmentDuration=2e3;lastPrefetchStart=0;throttleTimeout=null;RETRY_COUNT;TIMEOUT;BITRATE_ESTIMATOR;MAX_PARALLEL_REQUESTS;logger;constructor(e,t,n,r,i){this.RETRY_COUNT=e,this.TIMEOUT=t,this.BITRATE_ESTIMATOR=n,this.MAX_PARALLEL_REQUESTS=r,this.logger=i}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=oo(),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=uo(t,r=>{e._complete=1,e._responseData=r,e._downloadTime=oo()-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=oo()}_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=oo();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(){go.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}}var vo=require(`@vkontakte/videoplayer-shared/es2024`),yo=require(`@vkontakte/videoplayer-shared/es2024`),bo=(e,t)=>yo.isNonNullable(e)&&yo.isNonNullable(t)&&e.readyState===`open`&&xo(e,t);function xo(e,t){for(let n=0;n<e.activeSourceBuffers.length;++n)if(e.activeSourceBuffers[n]===t)return!0;return!1}var So=l(lt(),1),Co=require(`@vkontakte/videoplayer-shared/es2024`);class wo{tag;time;data;stack;constructor(e,t,n,r){this.tag=e,this.time=t,this.data=n,this.stack=r}toString(){return`${this.tag}: ${this.time}: ${JSON.stringify(this.data)}${this.stack?`, stack: ${this.stack}`:``}`}toDevNullEntry(){let e=So.default(this.data).map(([e,t])=>`${e}:${t}`).join(`,`);return{key:this.tag,strings:[e,this.stack??``],numbers:[this.time]}}}var B=((e,t=`warn`)=>{let n=Co.getWindow(),r=[];function i(i,a=!1){let o=n.performance?.timing?.navigationStart??0,s=new wo(e,Math.round((Date.now()-o)/1e3),i,a?Error().stack:void 0);r.push(s),t&&n.console[t](s.toString())}return i.reset=()=>{r=[]},i.drain=()=>{let e=r;return r=[],e},i})(`vp_dash_live_debug`,!1),To=1e4,Eo=3,Do=6e4,Oo=10,ko=1,Ao=500;class jo{paused=!1;autoQuality=!0;autoQualityLimits=void 0;buffering=!0;destroyed=!1;videoPlayStarted=!1;lowLatency=!1;rep;bitrate=0;manifest=[];bitrateSwitcher;filesFetcher;sourceBuffer=0;mediaSource;currentManifestEntry;manifestRequest;manifestRefetchTimer;bufferStates=[];downloadRate;sourceJitter=-1;chunkRateEstimator;manifestUrl;urlResolver;waitingForFirstBufferAfterSrcChange=!1;params;soundProhibitedEvent$;constructor(e){this.params=e,this.soundProhibitedEvent$=new vo.Subject,this.chunkRateEstimator=new ho(this.params.logger),this._initVideo()}attachSource(e){this.manifestUrl=e,this.urlResolver=co(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&&(B({m:`ldp.catchUp.1`}),this.rep.stop()),this.currentManifestEntry&&(this.paused=this.params.playbackState.getState()===`paused`,B({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()?(B({m:`ldp.play.1`}),this._playVideoElement()):(B({m:`ldp.play.2`}),this._notifyBuffering(!0))):(B({m:`ldp.play.3`}),this.catchUp())}startPlay(e,t){this.autoQuality=t,B({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=co(e),B({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;B({m:`iv`}),e.addEventListener(`error`,()=>{e.error&&!this.destroyed&&(B({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`),B({m:`ldp.fs`,t:r}),t.currentTime=r))}_selectQuality(e){let{videoElement:t}=this.params,n,r,i,a=t&&1.62*(M.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||{};!Aa({limits:this.autoQualityLimits,highestAvailableHeight:this.manifest[0].video.height,lowestAvailableHeight:$a(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||ro.isNonNullable(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`){B({m:`sourceopen`,err:`not open: ${this.mediaSource?.readyState}`});return}B({m:`sourceopen`,c:e.codecs}),this.sourceBuffer=this.mediaSource.addSourceBuffer(e.codecs),this.bufferStates=[],t()}),this.mediaSource?.addEventListener(`sourceclose`,e=>{B({m:`sourceclose`})}),this.videoPlayStarted=!1,r.addEventListener(`canplay`,()=>{B({m:`canplay`}),this.shouldPlay()&&(this.videoPlayStarted=!0,this._playVideoElement())});let a=()=>{lo(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 _o(Eo,To,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=uo(this.urlResolver.resolve(e,!1),t,n,()=>this._retryCallback()).withTimeout(To).withBitrateReporting(this.bitrateSwitcher).withRetryCount(Eo).withFinally(()=>{s=null}).send()},f=(e,t,n)=>{ro.assertNonNullable(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=oo()-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-ko;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(ro.isNonNullable(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>Oo)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=uo(this.urlResolver.resolve(e,!0,this.lowLatency),t,n,()=>this._retryCallback()).withTimeout(To).withRetryCount(Eo).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&&(ro.assertNonNullable(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(),ro.assertNonNullable(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(Ao,1e3*(this._getBufferSizeSec()-this.sourceJitter-5)),t=y+e,n=oo(),r=Math.min(1e4,t-n);y=n;let i=()=>{c||u()&&s.seek(()=>{u()&&(y=oo(),w(),C())})};r>0?b=window.setTimeout(()=>{this.paused?C():i()},r):i()},w=()=>{let t;for(;t=s.nextChunk(v);)v=t,te(t);let n=s.nextChunk(m);if(n){if(m&&n.discontinuity){o(`Detected discontinuity; restarting playback`),this.paused?C():(_(),B({m:`ldp.fetchChunkIdx.0`}),this._initPlayerWith(e));return}ee(n)}else C()},T=(e,t)=>{if(!u()||!this.sourceBuffer){B({m:`ab.0`,c:[!u(),!this.sourceBuffer]});return}let i,a,s,c=n=>{B({m:`ldp.postpone`,t:n}),window.setTimeout(()=>{u()&&T(e,t)},n)};if(this.sourceBuffer.updating)o(`Source buffer is updating; delaying appendBuffer`),B({m:`ldp.ab.1`}),c(100);else{let l=oo(),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)B({m:`ldp.ab.3`}),o(`Buffered ${d} seconds; delaying appendBuffer`),c(2e3);else try{if(this.params.config.useInvalidBufferFix&&bo(this.mediaSource,this.sourceBuffer))return;this.sourceBuffer.appendBuffer(e),this.videoPlayStarted?(B({m:`ldp.ab.5`}),this.bufferStates.push({ts:l,buf:d}),h(),this.bufferStates.length>200&&this.bufferStates.shift()):this.shouldPlay()&&(B({m:`ldp.ab.4`}),this.videoPlayStarted=!0,this._playVideoElement()),t&&t()}catch(e){B({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),ee=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())},te=e=>{u()&&(ro.assertNonNullable(this.filesFetcher),this.filesFetcher.prefetch(this.urlResolver.resolve(D(e),!1)))},O=t=>{u()&&(e.cachedHeader=t,T(t,()=>{l=!0,E()}))};i=!0,s.seek(e=>{if(u()){if(y=oo(),!e){C();return}v=e,!ro.isNullable(t)||e.startTS>t?ee(e):(m=e,w())}},t),e.cachedHeader?O(e.cachedHeader):d(e.headerUrl,O,()=>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(),ro.isNonNullable(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,ro.assertNonNullable(this.bitrateSwitcher),this.bitrateSwitcher.notifySwitch(this.bitrate),this.rep.start(r),n({name:`qualitySwitch`,quality:e}))}_qualityAvailable(e){return ro.isNonNullable(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=oo();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&&so(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=oo();e<a&&(i=t),a=e}}}_fetchManifest(e,t,n){this.manifestRequest=uo(this.urlResolver.resolve(e,!0),t,n,()=>this._retryCallback()).withJSONResponse().withTimeout(To).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;no(e,()=>{this.soundProhibitedEvent$.next()}).then(e=>{B({m:`ldp.pve.1`}),e||(B({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)=>{e.video&&r.canPlayType(e.codecs).replace(/no/,``)&&window.MediaSource?.isTypeSupported?.(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))},Do))}_initManifest(){this._fetchManifest(this.manifestUrl,e=>{this.destroyed||(this._handleManifestUpdate(e),this._refetchManifest(this.manifestUrl))},()=>this._handleNetworkError())}}var Mo=l(lt(),1),No=require(`@vkontakte/videoplayer-shared/es2024`);class Po{onDroopedVideoFramesLimit$=new No.Subject;subscription=new No.Subscription;log;video;droppedFramesChecker;isAuto;playing=!1;tracks=[];forceChecker$=new No.Subject;isForceCheckCounter=0;prevTotalVideoFrames=0;prevDroppedVideoFrames=0;currentTimer;limitCounts={};currentQuality;maxQualityLimit;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(No.fromEvent(this.video,`resize`).subscribe(this.handleChangeVideoQuality));let e=No.interval(this.droppedFramesChecker.checkTime).pipe(No.filter(()=>this.playing),No.filter(()=>{let e=!!this.isForceCheckCounter;return e&&--this.isForceCheckCounter,!e})),t=this.forceChecker$.pipe(No.debounce(this.droppedFramesChecker.checkTime)),n=No.merge(e,t);this.subscription.add(n.subscribe(this.checkDroppedFrames))}handleChangeVideoQuality=()=>{let e=this.tracks.find(({size:e})=>e?.height===this.video.videoHeight&&e?.width===this.video.videoWidth);e&&!No.isInvariantQuality(e.quality)&&this.onChangeQuality(e.quality)};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()}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&&No.isHigher(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)};onDroopedVideoFramesLimitTrigger(){this.isAuto.getState()&&(this.log({message:`[onDroopedVideoFramesLimit]. maxQualityLimit: ${this.maxQualityLimit}`}),this.onDroopedVideoFramesLimit$.next())}getMaxQualityLimit(e){let t=Mo.default(this.limitCounts).filter(([,e])=>e>=this.droppedFramesChecker.countLimit).sort(([e],[t])=>No.isLower(e,t)?-1:1)?.[0]?.[0];return e??t}get isEnabled(){return this.droppedFramesChecker.enabled&&this.isDroppedFramesCheckerSupport}get isDroppedFramesCheckerSupport(){return!!this.video&&typeof this.video.getVideoPlaybackQuality==`function`}savePrevFrameCounts(e,t){this.prevTotalVideoFrames=e,this.prevDroppedVideoFrames=t}}var Fo=Po,Io=require(`@vkontakte/videoplayer-shared/es2024`),Lo=require(`@vkontakte/videoplayer-shared/es2024`),Ro=()=>!!window.documentPictureInPicture?.window||!!document.pictureInPictureElement,zo=(e,t)=>new Io.Observable(n=>{if(!window.IntersectionObserver)return;let r=new IntersectionObserver((e,t)=>{e.forEach(e=>n.next(e.isIntersecting||Ro()))},{root:null,...t});r.observe(e);let i=Lo.fromEvent(document,`visibilitychange`).pipe(Io.map(e=>!document.hidden||Ro())).subscribe(e=>n.next(e));return()=>{r.unobserve(e),i.unsubscribe()}}),Bo=[`paused`,`playing`,`ready`],Vo=[`paused`,`playing`,`ready`];class Ho{subscription=new z.Subscription;volumeSubscription=new z.Subscription;video;videoState=new P(`stopped`);dash;representations$=new z.ValueSubject([]);textTracksManager;droppedFramesManager=new Fo;maxSeekBackTime$=new z.ValueSubject(1/0);zeroTime$=new z.ValueSubject(void 0);liveOffset=new ca;log;params;constructor(e){this.textTracksManager=new sa(e.source.url),this.params=e,this.log=this.params.dependencies.logger.createComponentLog(`DashLiveProvider`);let t=t=>{e.output.error$.next({id:`DashLiveProvider`,category:z.ErrorCategory.WTF,message:`DashLiveProvider internal logic error`,thrown:t})};this.subscription.add(z.merge(this.videoState.stateChangeStarted$.pipe(z.map(e=>({transition:e,type:`start`}))),this.videoState.stateChangeEnded$.pipe(z.map(e=>({transition:e,type:`end`})))).subscribe(({transition:e,type:t})=>{B({m:`dlp.s.1`,t:t+`:${e.from}-${e.to}`}),this.log({message:`[videoState change] ${t}: ${JSON.stringify(e)}`})})),this.video=Yi(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(Xa(this.params.source.url)),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.textTracksManager.connect(this.video,this.params.desiredState,this.params.output);let n=ma(this.video);this.subscription.add(()=>n.destroy()),this.subscription.add(this.representations$.pipe(z.map(e=>e.map(({track:e})=>e)),z.filter(e=>!!e.length),z.once()).subscribe(e=>this.droppedFramesManager.connect({logger:this.params.dependencies.logger,video:this.video,droppedFramesChecker:this.params.tuning.droppedFramesChecker,isAuto:this.params.desiredState.autoVideoTrackSwitching,playing$:n.playing$,pause$:n.pause$,tracks:e}))),this.subscription.add(n.canplay$.subscribe(()=>{this.videoState.getTransition()?.to===`ready`&&this.videoState.setState(`ready`)},t)).add(n.pause$.subscribe(()=>{this.videoState.setState(`paused`)},t)).add(n.playing$.subscribe(()=>{this.params.desiredState.seekState.getState().state===`applying`&&this.params.output.seekedEvent$.next(),this.videoState.setState(`playing`)},t)).add(n.error$.subscribe(this.params.output.error$)).add(this.maxSeekBackTime$.pipe(z.filterChanged(),z.map(e=>-e/1e3)).subscribe(this.params.output.duration$)).add(z.combine({zeroTime:this.zeroTime$.pipe(z.filter(z.isNonNullable)),position:n.timeUpdate$}).subscribe(({zeroTime:e,position:t})=>{t===0&&this.videoState.getTransition()||this.params.output.liveTime$.next(e+t*1e3)},t)).add(ea(this.video,this.params.desiredState.isLooped,t)).add(ta(this.video,this.params.desiredState.volume,n.volumeState$,t,{skipVideoElVolumeSync$:this.params.skipVideoElVolumeSync$})),this.subscription.add(this.params.skipVideoElVolumeSync$.subscribe(e=>{this.volumeSubscription.unsubscribe(),e?this.volumeSubscription.add(this.params.desiredState.volume.stateChangeStarted$.subscribe(({to:e})=>this.params.output.volume$.next(e),t)):this.volumeSubscription.add(n.volumeState$.subscribe(this.params.output.volume$,t))})),this.subscription.add(na(this.video,this.params.desiredState.playbackRate,n.playbackRateState$,t)).add(n.loadStart$.subscribe(this.params.output.firstBytesEvent$)).add(n.loadedMetadata$.subscribe(this.params.output.loadedMetadataEvent$)).add(n.playing$.subscribe(this.params.output.firstFrameEvent$)).add(n.canplay$.subscribe(this.params.output.canplay$)).add(n.inPiP$.subscribe(this.params.output.inPiP$)).add(n.inFullscreen$.subscribe(this.params.output.inFullscreen$)).add(zo(this.video).subscribe(this.params.output.elementVisible$)).add(this.params.desiredState.autoVideoTrackLimits.stateChangeStarted$.subscribe(({to:{max:e,min:t}})=>{this.dash.setAutoQualityLimits({max:e&&z.videoQualityToHeight(e),min:t&&z.videoQualityToHeight(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),B({m:`dlp.vse.s`}),this.params.desiredState.playbackState.setState(`stopped`);break;case`manifest_ready`:case`ready`:this.params.desiredState.playbackState.getTransition()?.to===`ready`&&(B({m:`dlp.vse.r`}),this.params.desiredState.playbackState.setState(`ready`));break;case`paused`:B({m:`dlp.vse.pa`}),this.params.desiredState.playbackState.setState(`paused`);break;case`playing`:B({m:`dlp.vse.pl`}),this.params.desiredState.playbackState.setState(`playing`);break;default:return z.assertNever(e.to)}},t)).add(z.merge(e.desiredState.playbackState.stateChangeStarted$,e.desiredState.seekState.stateChangeEnded$,e.desiredState.videoTrack.stateChangeStarted$,e.desiredState.autoVideoTrackSwitching.stateChangeStarted$,this.videoState.stateChangeEnded$,this.droppedFramesManager.onDroopedVideoFramesLimit$,z.observableFrom([`init`])).pipe(z.debounce(0)).subscribe(this.syncPlayback,t));let r=!1,{output:i}=this.params;this.params.tuning.live.catchupLiveForMutedInactiveTab&&this.subscription.add(i.elementVisible$.pipe(z.filterChanged()).subscribe(e=>{let t=i.position$.getValue(),n=i.volume$.getValue(),a=!n.volume||n.muted;!e&&!t&&a?r=!0:e&&r&&(this.seek(0),r=!1)}))}destroy(){B({m:`dlp.destroy`}),this.subscription.unsubscribe(),this.volumeSubscription.unsubscribe(),this.textTracksManager.destroy(),this.droppedFramesManager.destroy(),this.dash.destroy(),this.params.output.element$.next(void 0),Xi(this.video,this.params.tuning)}createLiveDashPlayer(){let e=new jo({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&&z.isNonNullable(t)?t:Ka(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;z.assertNonNullable(t,`Representations missing`),this.dash.startPlay(t,n)}}setVideoTrack(e){let t=this.representations$.getValue().find(({track:t})=>t.id===e.id)?.representation;z.assertNonNullable(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),B({m:`dlp.seek`,p:e,no:a,url:this.params.source.url}),this.dash.reinit(Nr(this.params.source.url,a)),r&&this.dash.pause(),this.liveOffset.resetTo(a,r)}_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:z.ErrorCategory.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=ga(e.name)??z.videoSizeToQuality(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),z.isNonNullable(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}};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(Ii.default(Vo,e)&&(a||o)){this.prepare();return}if(r?.to!==`paused`&&i.state===`requested`&&Ii.default(Bo,e)){this.seek(i.position-this.liveOffset.getTotalPausedTime());return}switch(e){case`stopped`:this.videoState.startTransitionTo(`manifest_ready`),this.dash.attachSource(Nr(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`){B({m:`dlp.sync.1`}),this.videoState.startTransitionTo(`playing`);let e=r?.from;e&&e===`ready`&&(B({m:`dlp.sync.2`}),this.dash.catchUp()),B({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(Nr(this.params.source.url,e))}return;default:return z.assertNever(e)}}}var Uo=Ho,Wo=require(`@vkontakte/videoplayer-shared/es2024`),V=require(`@vkontakte/videoplayer-shared/es2024`),Go=l(Fn(),1),Ko=require(`@vkontakte/videoplayer-shared/es2024`),qo=({id:e,width:t,height:n,bitrate:r,fps:i,quality:a,streamId:o})=>{let s=(a?ga(a):void 0)??Ko.videoSizeToQuality({width:t,height:n});return s&&{id:e,quality:s,bitrate:r,size:{width:t,height:n},fps:i,streamId:o}},Jo=({id:e,bitrate:t})=>({id:e,bitrate:t}),Yo=({language:e,label:t},{id:n,url:r,isAuto:i})=>({id:n,url:r,isAuto:i,type:`internal`,language:e,label:t}),Xo=({language:e,label:t,id:n,url:r,isAuto:i})=>({id:n,url:r,isAuto:i,type:`internal`,language:e,label:t}),Zo=({id:e,language:t,label:n,codecs:r,isDefault:i})=>({id:e,language:t,label:n,codec:Go.default(r.split(`.`),0),isDefault:i}),Qo=({id:e,language:t,label:n,hdr:r,codecs:i})=>({id:e,language:t,hdr:r,label:n,codec:Go.default(i.split(`.`),0)}),$o=e=>e.type===`template`;class es{fov;orientation;constructor(e,t){this.fov=e,this.orientation=t}}class ts{options;camera;rotating=!1;fading=!1;lastTickTS=0;lastCameraTurn;lastCameraTurnTS=0;fadeStartSpeed=null;fadeCorrection;fadeTime=0;rotationSpeed;constructor(e,t){this.camera=e,this.options=t,this.rotationSpeed={x:0,y:0,z:0},this.fadeCorrection=1/(this.options.speedFadeTime/1e3)**2}turnCamera(e=0,t=0,n=0){this.pointCameraTo(this.camera.orientation.x+e,this.camera.orientation.y+t,this.camera.orientation.z+n)}pointCameraTo(e=0,t=0,n=0){t=this.limitCameraRotationY(t);let r=e-this.camera.orientation.x,i=t-this.camera.orientation.y,a=n-this.camera.orientation.z;this.camera.orientation.x=e,this.camera.orientation.y=t,this.camera.orientation.z=n,this.lastCameraTurn={x:r,y:i,z:a},this.lastCameraTurnTS=Date.now()}setRotationSpeed(e,t,n){this.rotationSpeed.x=e??this.rotationSpeed.x,this.rotationSpeed.y=t??this.rotationSpeed.y,this.rotationSpeed.z=n??this.rotationSpeed.z}startRotation(){this.rotating=!0}stopRotation(e=!1){e?(this.setRotationSpeed(0,0,0),this.fadeStartSpeed=null):this.startFading(this.rotationSpeed.x,this.rotationSpeed.y,this.rotationSpeed.z),this.rotating=!1}onCameraRelease(){if(this.lastCameraTurn&&this.lastCameraTurnTS){let e=Date.now()-this.lastCameraTurnTS;if(e<this.options.speedFadeThreshold){let t=(1-e/this.options.speedFadeThreshold)*this.options.rotationSpeedCorrection;this.startFading(this.lastCameraTurn.x*t,this.lastCameraTurn.y*t,this.lastCameraTurn.z*t)}}}startFading(e,t,n){this.setRotationSpeed(e,t,n),this.fadeStartSpeed={...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 ns=`./vertex_shader-xzkp5kyx.glsl`,rs=`./fragment_shader-66qz233h.glsl`;class is{container;sourceVideoElement;canvas;gl;params;frameWidth;frameHeight;viewportWidth;viewportHeight;videoInitialized=!1;program;videoTexture;vertexBuffer;textureMappingBuffer;camera;cameraRotationManager;videoElementDataLoadedFn;renderFn;active=!1;constructor(e,t,n){this.container=e,this.sourceVideoElement=t,this.params=n,this.canvas=this.createCanvas();let r=this.canvas.getContext(`webgl`);if(!r)throw Error(`Could not initialize WebGL context`);this.gl=r,this.container.appendChild(this.canvas),this.camera=new es(this.params.fov,this.params.orientation),this.cameraRotationManager=new ts(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(ns,this.gl.VERTEX_SHADER),n=this.createShader(rs,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}}var as=require(`@vkontakte/videoplayer-shared/es2024`),os=(e,t,n)=>n*t+(1-n)*e,ss=(e,t)=>e.reduce((e,t)=>e+t,0)/t,cs=(e,t,n,r)=>{let i=0,a=n,o=ss(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},ls=`stalls_manager_metrics`,us=`stalls_manager_abr_params`,ds=`stalls_manager_default_tuning_abr_params`;class fs{currentStallDuration$;videoLastDataObtainedTimestamp$;throughput$;rtt$;tuning;abrParams;duration;isSeeked$=new as.ValueSubject(!1);isBuffering$=new as.ValueSubject(!1);maxQualityLimit=void 0;lastUniqueVideoTrackSelected;currentStallsCount=0;sumStallsDuration=0;lastStallDuration=0;providerStartWatchingTimestamp=0;lastUniqueVideoTrackSelectedTimestamp=0;predictedThroughputWithoutData=0;qualityRestrictionTimer;subscription=new as.Subscription;severeStallOccurred$=new as.ValueSubject(!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(us):{};return{...this.abrParams,...e}}set lastVideoTrackSelected(e){this.lastUniqueVideoTrackSelected?.id!==e.id&&(this.lastUniqueVideoTrackSelected=e,this.lastUniqueVideoTrackSelectedTimestamp=as.now(),this.currentStallsCount=0)}destroy(){window.clearTimeout(this.qualityRestrictionTimer),this.subscription.unsubscribe(),this.currentStallDuration$.getValue()!==0&&this.updateStallData();let e=(as.now()-this.providerStartWatchingTimestamp-this.sumStallsDuration)/1e3,t=this.sumStallsDuration;this.addStallInfoToHistory(e,t),this.updateStoredAbrParams()}resetStoredAbrParamsIfNeeded(){let{bitrateFactorAtEmptyBuffer:e,bitrateFactorAtFullBuffer:t,containerSizeFactor:n}={...this.getStoredData(ds)},{bitrateFactorAtEmptyBuffer:r,bitrateFactorAtFullBuffer:i,containerSizeFactor:a}={...this.abrParams};this.tuning.enabled&&e===r&&t===i&&n===a||(this.removeStoredData(us),this.setStoredData(ds,{bitrateFactorAtEmptyBuffer:r,bitrateFactorAtFullBuffer:i,containerSizeFactor:a}))}updateStoredAbrParams(){let e=[],t=this.getStoredData(ls,`[]`);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(ls,[]),this.setStoredData(us,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(as.safeStorage.get(e)??t)}setStoredData(e,t){as.safeStorage.set(e,JSON.stringify(t))}removeStoredData(e){as.safeStorage.remove(e)}addStallInfoToHistory(e,t){if(e<this.tuning.minTvtToBeCounted||e>this.tuning.maxTvtToBeCounted||e*1e3<t)return;let n=this.getStoredData(ls,`[]`),r=t/e,i={tvt:e,stallsDuration:t,stallsDurationPerTvt:r,stallsDurationPerTvtSmoothed:n.length?os(n[n.length-1].stallsDurationPerTvtSmoothed,t/e,this.tuning.emaAlpha):r};n.push(i),n.length>this.tuning.stallsMetricsHistoryLength&&n.shift(),this.setStoredData(ls,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(as.once()).subscribe(e=>this.providerStartWatchingTimestamp=as.now())),this.subscription.add(this.currentStallDuration$.pipe(as.filterChanged()).subscribe(e=>{let{stallDurationNoDataBeforeQualityDecrease:t,stallCountBeforeQualityDecrease:n,resetQualityRestrictionTimeout:r,ignoreStallsOnSeek:i}=this.tuning;if(as.isNullable(this.lastUniqueVideoTrackSelected)||i&&this.isSeeked$.getValue())return;let a=this.rtt$.getValue(),o=this.throughput$.getValue(),s=this.videoLastDataObtainedTimestamp$.getValue(),c=as.now(),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,as.isNonNullable(this.lastUniqueVideoTrackSelected.bitrate)&&o>this.lastUniqueVideoTrackSelected.bitrate&&(this.predictedThroughputWithoutData=this.lastUniqueVideoTrackSelected.bitrate)),!e&&as.now()-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 ps=fs,ms=require(`@vkontakte/videoplayer-shared/es2024`);class hs{subscription=new ms.Subscription;pipSize$=new ms.ValueSubject(void 0);videoSize$=new ms.ValueSubject(void 0);elementSize$=new ms.ValueSubject(void 0);pictureInPictureWindowRemoveEventListener=ms.noop;connect({observableVideo:e,video:t}){let n=e=>{let t=e.target;this.pipSize$.next({width:t.width,height:t.height})};this.subscription.add(ms.observeElementSize(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(ms.combine({videoSize:this.videoSize$,pipSize:this.pipSize$,inPip:e.inPiP$}).pipe(ms.map(({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()}}var gs=require(`@vkontakte/videoplayer-shared/es2024`),_s=({subscription:e,desiredState:t,videoElement$:n,observableVideo:r})=>{if(!M.browser.isSafari)return;let i=0,a=!1;e.add(t.volume.stateChangeStarted$.pipe(gs.map(()=>{let e=t.volume.getTransition(),r=n.getValue();return!r||!e?!1:!e.to.muted&&r.muted}),gs.filter(e=>!!e),gs.once()).subscribe(()=>{i=performance.now(),a=!0})),e.add(r.playbackRateState$.pipe(gs.filter(()=>a),gs.once()).subscribe(()=>{let e=n.getValue(),r=t.playbackRate.getState();e&&r!==e.playbackRate&&performance.now()-i<1e3&&(e.playbackRate=r)}))};class vs{scene3D;subscription=new V.Subscription;volumeSubscription=new V.Subscription;videoState=new P(`stopped`);video;observableVideo=null;player;params;tracer;textTracksManager;droppedFramesManager=new Fo;stallsManager=new ps;elementSizeManager=new hs;videoTracksMap=new Map;audioTracksMap=new Map;textTracksMap=new Map;videoStreamsMap=new Map;audioStreamsMap=new Map;videoTrackSwitchHistory=new Pa;audioTrackSwitchHistory=new Pa;constructor(e){this.textTracksManager=new sa(e.source.url),this.params=e,this.video=Yi(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(Xa(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;V.isNullable(this.observableVideo)&&(this.observableVideo=ma(this.video),this.subscription.add(()=>this.observableVideo?.destroy()));let n=this.constructor.name,r=t=>{e.error$.next({id:n,category:V.ErrorCategory.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(V.filter(e=>!!e.length),V.once()).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(V.map(e=>e.to.state!==`none`),V.filterChanged());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(V.filter(V.isNonNullable),V.once()),e.firstBytesEvent$),i(this.stallsManager.severeStallOccurred$,e.severeStallOccurred$),i(this.videoState.stateChangeEnded$.pipe(V.map(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(ea(this.video,t.isLooped,r)),this.subscription.add(this.params.skipVideoElVolumeSync$.subscribe(e=>{this.volumeSubscription.unsubscribe(),e?this.volumeSubscription.add(t.volume.stateChangeStarted$.subscribe(({to:e})=>this.params.output.volume$.next(e),r)):this.volumeSubscription.add(n.volumeState$.subscribe(this.params.output.volume$,r))})),_s({subscription:this.subscription,desiredState:t,videoElement$:this.params.output.element$,observableVideo:n}),this.subscription.add(ta(this.video,t.volume,n.volumeState$,r,{skipVideoElVolumeSync$:this.params.skipVideoElVolumeSync$})),this.subscription.add(na(this.video,t.playbackRate,n.playbackRateState$,r)),this.elementSizeManager.connect({video:this.video,observableVideo:n}),i(zo(this.video,{threshold:this.params.tuning.autoTrackSelection.activeVideoAreaThreshold}),e.elementVisible$),this.subscription.add(n.playing$.subscribe(()=>{this.videoState.setState(`playing`),j(t.playbackState,`playing`),this.scene3D&&this.scene3D.play()},r)).add(n.pause$.subscribe(()=>{this.videoState.setState(`paused`),j(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`),j(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(V.assertNonNullable(e,`Manifest not loaded or empty`),!this.params.tuning.isAudioDisabled){let t=[];for(let n of e.audio){t.push(Zo(n));let e=[];for(let t of n.representations){let r=Jo(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(Qo(t));let e=[];for(let n of t.representations){let r=qo({...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=Yo(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=V.merge(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$,V.fromEvent(this.video,`progress`)).pipe(V.filter(()=>this.videoTracksMap.size>0)),{abrThrottle:s}=this.params.tuning.dash;s&&(o=o.pipe(V.throttle(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);V.isNonNullable(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(V.filterChanged()).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(Qo(i))},r)),this.subscription.add(this.player.currentAudioRepresentation$.pipe(V.filterChanged()).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(Zo(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(V.map(({to:e})=>e===`ready`),V.filterChanged());this.subscription.add(V.merge(c,t.autoVideoTrackSwitching.stateChangeStarted$,this.player.state$.stateChangeEnded$,V.observableFrom([`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(V.merge(c,this.player.state$.stateChangeEnded$,V.observableFrom([`init`])).subscribe(()=>this.player.setPreloadOnly(t.playbackState.getState()===`ready`)));let l=V.merge(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,V.observableFrom([`init`])).pipe(V.debounce(0));this.subscription.add(l.subscribe(this.syncPlayback,r))}selectVideoAudioRepresentations(){if(this.player.isStreamEnded)return;let e=this.params.tuning.useNewAutoSelectVideoTrack?Ba:za,t=this.params.tuning.useNewAutoSelectVideoTrack?Ya:Ja,n=this.params.tuning.useNewAutoSelectVideoTrack?Ka:qa,{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)}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`),j(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`),j(this.params.desiredState.playbackState,`paused`)):t===`playing`?(this.videoState.startTransitionTo(`playing`),this.playIfAllowed()):n?.to===`ready`&&j(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`&&j(this.params.desiredState.playbackState,`playing`);return;case`paused`:t===`playing`?(this.videoState.startTransitionTo(`playing`),this.playIfAllowed()):n?.to===`paused`&&j(this.params.desiredState.playbackState,`paused`);return;default:return V.assertNever(e)}}};init3DScene=e=>{if(this.scene3D)return;this.scene3D=new is(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)};destroy3DScene=()=>{this.scene3D&&=(this.scene3D.destroy(),void 0)};playIfAllowed(){no(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState(`paused`),j(this.params.desiredState.playbackState,`paused`,!0))},e=>this.params.output.error$.next({id:`ForcePlay`,message:`play() failed even with workarounds`,category:V.ErrorCategory.DOM,thrown:e}))}destroy(){this.subscription.unsubscribe(),this.volumeSubscription.unsubscribe(),this.droppedFramesManager.destroy(),this.stallsManager.destroy(),this.elementSizeManager.destroy(),this.destroy3DScene(),this.textTracksManager.destroy(),this.player.destroy(),this.params.output.element$.next(void 0),this.params.output.currentVideoStream$.next(void 0),Xi(this.video,this.params.tuning),this.tracer.end()}}var ys=l(Gn(),1),{NativeAbortSignal:bs,NativeAbortController:xs}=function(e){return{NativeAbortSignal:e.AbortSignal,NativeAbortController:e.AbortController}}(typeof self<`u`?self:global);function Ss(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 Cs(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 ws{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 Ts extends ws{constructor(){super(),this.listeners||ws.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 Es;return setTimeout(()=>t.abort(new DOMException(`This signal is timeout in ${e}ms`,`TimeoutError`)),e),t.signal}static any(e){let t=new Es;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 Es{constructor(){Object.defineProperty(this,`signal`,{value:new Ts,writable:!0,configurable:!0})}abort(e){let t=Cs(e),n=Ss(t);this.signal.reason=t,this.signal.dispatchEvent(n)}toString(){return`[object AbortController]`}}typeof Symbol<`u`&&Symbol.toStringTag&&(Es.prototype[Symbol.toStringTag]=`AbortController`,Ts.prototype[Symbol.toStringTag]=`AbortSignal`);function Ds(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 Os(e){typeof e==`function`&&(e={fetch:e});let{fetch:t,Request:n=t.Request,AbortController:r,__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL:i=!1}=e;if(!Ds({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 ks=typeof globalThis==`object`&&globalThis||typeof window==`object`&&window,As=`fetch`in ks&&Ds({fetch:ks.fetch,Request:ks.Request,AbortController:ks.AbortController}),js=As?Os({fetch:ks.fetch,Request:ks.Request,AbortController:ks.AbortController}):void 0,Ms=As?js.fetch:ks.fetch;As?js.Request:ks.Request;var Ns=As?Es:ks.AbortController;As||ks.AbortSignal;var Ps=l(er(),1),Fs=require(`@vkontakte/videoplayer-shared/es2024`),Is=e=>{if(!e)return{id:`EmptyResponse`,category:Fs.ErrorCategory.PARSER,message:`Empty response`};if(e.length<=2&&e.match(/^\d+$/))return{id:`UVError#${e}`,category:Fs.ErrorCategory.NETWORK,message:`UV Error ${e}`};let t=Ps.default(e).substring(0,100).toLowerCase();if(t.startsWith(`<!doctype`)||t.startsWith(`<html>`)||t.startsWith(`<body>`)||t.startsWith(`<head>`))return{id:`UnexpectedHTML`,category:Fs.ErrorCategory.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:Fs.ErrorCategory.PARSER,message:`XML parsing error`}:{id:`XMLParserLogicError`,category:Fs.ErrorCategory.PARSER,message:`Response is valid XML, but parser failed`}},H=require(`@vkontakte/videoplayer-shared/es2024`),Ls=e=>{let t=new URL(e);return t.searchParams.set(`quic`,`1`),t.toString()},Rs=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}},U=require(`@vkontakte/videoplayer-shared/es2024`),zs=e=>{let t=new URL(e);return t.searchParams.set(`enable-subtitles`,`yes`),t.toString()};class Bs{throughputEstimator;requestQuic;tracer;manifestRequested=new U.Subject;manifestReceived=new U.Subject;firstBytesRequested=new U.Subject;firstBytesReceived=new U.Subject;lastConnectionType$=new U.ValueSubject(void 0);lastConnectionReused$=new U.ValueSubject(void 0);lastRequestFirstBytes$=new U.ValueSubject(void 0);lastConnectionMetrics$=new U.ValueSubject(void 0);lastDownloadMetrics$=new U.ValueSubject(void 0);recoverableError$=new U.Subject;error$=new U.Subject;abortAllController=new Ns;subscription=new U.Subscription;compatibilityMode;useEnableSubtitlesParam;performanceObserver=null;pendingConnectionMetrics=new Map;constructor({throughputEstimator:e,requestQuic:t,tracer:n,compatibilityMode:r=!1,useEnableSubtitlesParam:i=!1}){this.throughputEstimator=e,this.requestQuic=t,this.compatibilityMode=r,this.tracer=n.createComponentTracer(`Fetcher`),this.useEnableSubtitlesParam=i,U.getWindow().PerformanceObserver&&this.setupPerformanceObserver()}onHeadersReceived(e){let{type:t,reused:n}=Rs(e);this.lastConnectionType$.next(t),this.lastConnectionReused$.next(n)}setupPerformanceObserver(){this.performanceObserver=new(U.getWindow()).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 U.getWindow().navigator))return`unknown`;let e=U.getWindow().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:U.ErrorCategory.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})}fetchManifest=U.abortable(this.abortAllController.signal,async function*(e){let t=this.tracer.createComponentTracer(`FetchManifest`),n=e;this.requestQuic&&(n=Ls(n)),!this.compatibilityMode&&this.useEnableSubtitlesParam&&(n=zs(n)),this.trackRequestStart(n,performance.now());let r=U.now();this.manifestRequested.next();let i=yield this.doFetch(n,{signal:this.abortAllController.signal}).catch(U.suppressAbort);if(i){let a=U.now();t.log(`success`,U.flattenObject({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`,U.flattenObject({url:n,message:`No data in request manifest`})),t.end(),null}.bind(this));fetch=U.abortable(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,U.getWindow().location.href);e.searchParams.append(`bytes`,`${n.from}-${n.to}`),l=e.toString();break}default:U.assertNever(t)}this.requestQuic&&(l=Ls(l));let f=this.abortAllController.signal,p;if(a){let e=new Ns;if(p=U.merge(U.fromEvent(this.abortAllController.signal,`abort`),U.fromEvent(a,`abort`)).subscribe(()=>{try{e.abort()}catch(e){U.suppressAbort(e)}}),this.subscription.add(p),this.abortAllController.signal.aborted||a.aborted)try{e.abort()}catch(e){U.suppressAbort(e)}f=e.signal}let m=0,h=U.now();d.log(`startRequest`,U.flattenObject({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}),_=U.now();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=U.now(),t={requestStartedAt:h,requestEndedAt:e,duration:e-h};return d.log(`endRequest`,U.flattenObject(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,U.suppressAbort(e)},T=U.abortable(f,async function*({done:e,value:t}){if(m===0&&(this.lastRequestFirstBytes$.next(U.now()-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=U.now(),D={failed:C,requestStartedAt:h,requestEndedAt:E,duration:E-h};if(C)return d.error(`endRequest`,U.flattenObject(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`,U.flattenObject(D)),d.end(),S.buffer}.bind(this));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:U.assertNever(r)}}destroy(){this.abortAllController.abort(),this.subscription.unsubscribe(),this.performanceObserver&&=(this.performanceObserver.disconnect(),null),this.pendingConnectionMetrics.clear(),this.tracer.end()}fetchByteRangeRepresentation=U.abortable(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));fetchTemplateRepresentation=U.abortable(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));async doFetch(e,t){let n=await Ms(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:U.ErrorCategory.FATAL,httpCode:n.status,UVBackendErrorCode:r});break;case 8:this.recoverableError$.next({id:`VideoDataLinkBlockedForFloodError`,message:`Url blocked for flood`,category:U.ErrorCategory.FATAL,httpCode:n.status,UVBackendErrorCode:r});break;case 18:this.recoverableError$.next({id:`VideoDataLinkIllegalIpChangeError`,message:`Client IP has changed`,category:U.ErrorCategory.FATAL,httpCode:n.status,UVBackendErrorCode:r});break;case 21:this.recoverableError$.next({id:`VideoDataLinkIllegalHostChangeError`,message:`Request HOST has changed`,category:U.ErrorCategory.FATAL,httpCode:n.status,UVBackendErrorCode:r});break;default:this.error$.next({id:`GeneralVideoDataFetchError`,message:`Generic video data fetch error (${i})`,category:U.ErrorCategory.FATAL,httpCode:n.status,UVBackendErrorCode:r})}}}var Vs=l(lr(),1),Hs=l(lt(),1),Us=l(gr(),1),Ws=l(An(),1),Gs=l($e(),1),Ks=l(at(),1),qs=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 Ks.default([`6E`,`7A`,`F4`],i)}}return!1},Js=require(`@vkontakte/videoplayer-shared/es2024`),Ys=e=>{if(e.includes(`/`)){let t=e.split(`/`);return parseInt(t[0])/parseInt(t[1])}else return parseFloat(e)},Xs=e=>{try{let t=Zs(),{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 Zs(){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 sS=a=>{if(!a?.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(a),r=i?.[1]==="-"?-1:1,s={days:e(i?.[5],r),hours:e(i?.[6],r),minutes:e(i?.[7],r),seconds:e(i?.[8],r)};return s.days*24*60*60*1e3+s.hours*60*60*1e3+s.minutes*60*1e3+s.seconds*1e3},Rt=(a,e)=>{let t=a;t=(0,al.default)(t,"$$","$");let i={RepresentationID:e.representationId,Number:e.segmentNumber,Bandwidth:e.bandwidth,Time:e.segmentTime};for(let[r,s]of(0,nS.default)(i)){let n=new RegExp(`\\$${r}(?:%0(\\d+)d)?\\$`,"g");t=(0,al.default)(t,n,(o,u)=>(0,Va.isNullable)(s)?o:(0,Va.isNullable)(u)?s:(0,oS.default)(s,parseInt(u,10),"0"))}return t},Zn=(a,e)=>{let i=new DOMParser().parseFromString(a,"application/xml"),r={video:[],audio:[],text:[]},s=i.children[0],n=Array.from(s.querySelectorAll("MPD > BaseURL").values()).map(W=>W.textContent?.trim()??""),o=(0,uS.default)(n,0)??"",u=s.getAttribute("type")==="dynamic",c=s.getAttribute("availabilityStartTime"),d=s.getAttribute("publishTime"),l=s.getElementsByTagName("vk:Attrs")[0],p=l?.getElementsByTagName("vk:XLatestSegmentPublishTime")[0].textContent,m=l?.getElementsByTagName("vk:XStreamIsLive")[0].textContent,f=l?.getElementsByTagName("vk:XStreamIsUnpublished")[0].textContent,g=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:m==="yes",streamIsUnpublished:f==="yes"});let S,E=s.getAttribute("mediaPresentationDuration"),A=[...s.getElementsByTagName("Period")],x=A.reduce((W,L)=>({...W,[L.id]:L.children}),{}),D=A.reduce((W,L)=>({...W,[L.id]:L.getAttribute("duration")}),{});E?S=sS(E):(0,sl.default)(D).filter(W=>W).length&&!u?S=(0,sl.default)(D).reduce((W,L)=>W+(sS(L)??0),0):g&&(S=parseInt(g,10));let N=0,q=s.getAttribute("profiles")?.split(",")??[];for(let W of A.map(L=>L.id))for(let L of x[W]){let ae=L.getAttribute("id")??"id"+(N++).toString(10),X=L.getAttribute("mimeType")??"",k=L.getAttribute("codecs")??"",P=L.getAttribute("contentType")??X?.split("/")[0],J=L.getAttribute("profiles")?.split(",")??[],O=aS(L.getAttribute("lang")??"")??{},se=L.querySelector("Label")?.textContent?.trim()??void 0,pe=L.querySelectorAll("Representation"),Ie=L.querySelector("SegmentTemplate"),Re=L.querySelector("Role")?.getAttribute("value")??void 0,_e=P,Oe={id:ae,language:O.language,isDefault:Re==="main",label:se,codecs:k,hdr:_e==="video"&&rl(k),mime:X,representations:[]};for(let oe of pe){let ie=oe.getAttribute("lang")??void 0,Ne=se??L.getAttribute("label")??oe.getAttribute("label")??void 0,je=oe.querySelector("BaseURL")?.textContent?.trim()??"",Me=new URL(je||o,e).toString(),pt=oe.getAttribute("mimeType")??X,ti=oe.getAttribute("codecs")??k??"",It;if(P==="text"){let at=oe.getAttribute("id")||"",ii=O.privateuse?.includes("x-auto")||at.includes("_auto"),ht=oe.querySelector("SegmentTemplate");if(ht){let qr={representationId:oe.getAttribute("id")??void 0,bandwidth:oe.getAttribute("bandwidth")??void 0},Ps=parseInt(oe.getAttribute("bandwidth")??"",10)/1e3,ks=parseInt(ht.getAttribute("startNumber")??"",10)??1,er=parseInt(ht.getAttribute("timescale")??"",10),ko=ht.querySelectorAll("SegmentTimeline S")??[],tr=ht.getAttribute("media");if(!tr)continue;let As=[],Rs=0,Ms="",ir=0,Hr=ks,ze=0;for(let Et of ko){let Pi=parseInt(Et.getAttribute("d")??"",10),mt=parseInt(Et.getAttribute("r")??"",10)||0,ri=parseInt(Et.getAttribute("t")??"",10);ze=Number.isFinite(ri)?ri:ze;let ki=Pi/er*1e3,rr=ze/er*1e3;for(let Lt=0;Lt<mt+1;Lt++){let ai=Rt(tr,{...qr,segmentNumber:Hr.toString(10),segmentTime:(ze+Lt*Pi).toString(10)}),ar=(rr??0)+Lt*ki,zr=ar+ki;Hr++,As.push({time:{from:ar,to:zr},url:ai})}ze+=(mt+1)*Pi,Rs+=(mt+1)*ki}ir=ze/er*1e3,Ms=Rt(tr,{...qr,segmentNumber:Hr.toString(10),segmentTime:ze.toString(10)});let jr={time:{from:ir,to:1/0},url:Ms},Ht={type:"template",baseUrl:Me,segmentTemplateUrl:tr,initUrl:"",totalSegmentsDurationMs:Rs,segments:As,nextSegmentBeyondManifest:jr,timescale:er};It={id:at,kind:"text",segmentReference:Ht,profiles:[],duration:S,bitrate:Ps,mime:"",codecs:"",width:0,height:0,isAuto:ii}}else It={id:at,isAuto:ii,kind:"text",url:Me}}else{let at=oe.getAttribute("contentType")??pt?.split("/")[0]??P,ii=L.getAttribute("profiles")?.split(",")??[],ht=parseInt(oe.getAttribute("width")??"",10),qr=parseInt(oe.getAttribute("height")??"",10),Ps=parseInt(oe.getAttribute("bandwidth")??"",10)/1e3,ks=oe.getAttribute("frameRate")??"",er=oe.getAttribute("quality")??void 0,ko=ks?rS(ks):void 0,tr=oe.getAttribute("id")??"id"+(N++).toString(10),As=at==="video"?`${qr}p`:at==="audio"?`${Ps}Kbps`:ti,Rs=`${tr}@${As}`,Ms=[...q,...J,...ii],ir,Hr=oe.querySelector("SegmentBase"),ze=oe.querySelector("SegmentTemplate")??Ie;if(Hr){let Ht=oe.querySelector("SegmentBase Initialization")?.getAttribute("range")??"",[Et,Pi]=Ht.split("-").map(ai=>parseInt(ai,10)),mt={from:Et,to:Pi},ri=oe.querySelector("SegmentBase")?.getAttribute("indexRange"),[ki,rr]=ri?ri.split("-").map(ai=>parseInt(ai,10)):[],Lt=ri?{from:ki,to:rr}:void 0;ir={type:"byteRange",url:Me,initRange:mt,indexRange:Lt}}else if(ze){let Ht={representationId:oe.getAttribute("id")??void 0,bandwidth:oe.getAttribute("bandwidth")??void 0},Et=parseInt(ze.getAttribute("timescale")??"",10),Pi=ze.getAttribute("initialization")??"",mt=ze.getAttribute("media"),ri=parseInt(ze.getAttribute("startNumber")??"",10)??1,ki=Rt(Pi,Ht);if(!mt)throw new ReferenceError("No media attribute in SegmentTemplate");let rr=ze.querySelectorAll("SegmentTimeline S")??[],Lt=[],ai=0,ar="",zr=0;if(rr.length){let $s=ri,wt=0;for(let sr of rr){let Ct=parseInt(sr.getAttribute("d")??"",10),Ai=parseInt(sr.getAttribute("r")??"",10)||0,Ls=parseInt(sr.getAttribute("t")??"",10);wt=Number.isFinite(Ls)?Ls:wt;let Ao=Ct/Et*1e3,ny=wt/Et*1e3;for(let Cs=0;Cs<Ai+1;Cs++){let oy=Rt(mt,{...Ht,segmentNumber:$s.toString(10),segmentTime:(wt+Cs*Ct).toString(10)}),Rl=(ny??0)+Cs*Ao,uy=Rl+Ao;$s++,Lt.push({time:{from:Rl,to:uy},url:oy})}wt+=(Ai+1)*Ct,ai+=(Ai+1)*Ao}zr=wt/Et*1e3,ar=Rt(mt,{...Ht,segmentNumber:$s.toString(10),segmentTime:wt.toString(10)})}else if((0,Va.isNonNullable)(S)){let wt=parseInt(ze.getAttribute("duration")??"",10)/Et*1e3,sr=Math.ceil(S/wt),Ct=0;for(let Ai=1;Ai<sr;Ai++){let Ls=Rt(mt,{...Ht,segmentNumber:Ai.toString(10),segmentTime:Ct.toString(10)});Lt.push({time:{from:Ct,to:Ct+wt},url:Ls}),Ct+=wt}zr=Ct,ar=Rt(mt,{...Ht,segmentNumber:sr.toString(10),segmentTime:Ct.toString(10)})}let sy={time:{from:zr,to:1/0},url:ar};ir={type:"template",baseUrl:Me,segmentTemplateUrl:mt,initUrl:ki,totalSegmentsDurationMs:ai,segments:Lt,nextSegmentBeyondManifest:sy,timescale:Et}}else throw new ReferenceError("Unknown MPD segment referencing type");if(!at||!pt)continue;let jr={video:"video",audio:"audio",text:"text"}[at];if(!jr)continue;_e||=jr,It={id:Rs,kind:jr,segmentReference:ir,profiles:Ms,duration:S,bitrate:Ps,mime:pt,codecs:ti,width:ht,height:qr,fps:ko,quality:er}}Oe.language||=ie,Oe.label||=Ne,Oe.mime||=pt,Oe.codecs||=ti,Oe.hdr||=_e==="video"&&rl(ti),Oe.representations.push(It)}if(_e){let oe=r[_e].find(ie=>ie.id===Oe.id);if(oe&&Oe.representations.every(ie=>ie.segmentReference.type==="template"))for(let ie of oe.representations){let Ne=Oe.representations.find(pt=>pt.id===ie.id);if(!Ne)continue;let je=Ne.segmentReference,Me=ie.segmentReference;Me.segments.push(...je.segments),Me.nextSegmentBeyondManifest=je.nextSegmentBeyondManifest}else r[_e].push(Oe)}}return{duration:S,streams:r,baseUrls:n,live:v}};var to=j(gt(),1),nl=j(Ke(),1),Oa=require("@vkontakte/videoplayer-shared/es2024");var _a=(s=>(s.VP9="vp9",s.AV1="av1",s.NONE="none",s.SMOOTH="smooth",s.POWER_EFFICIENT="power_efficient",s))(_a||{});var eo=a=>{let{webmDecodingInfo:e}=F.video,t="DASH_WEBM",i="DASH_WEBM_AV1";switch(a){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:(0,Oa.assertNever)(a)}},cS=({webmCodec:a,androidPreferredFormat:e,iosPreferredFormat:t,preferMultiStream:i})=>{let r=[...i?["DASH_STREAMS"]:[],...eo(a),"DASH_SEP","DASH_ONDEMAND",...i?[]:["DASH_STREAMS"]],s=[...i?["DASH_STREAMS"]:[],"DASH_SEP","DASH_ONDEMAND",...i?[]:["DASH_STREAMS"]];if(F.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[...s,"MPEG",...eo(a),"HLS","HLS_ONDEMAND"];case"dash_any_webm":return[...eo(a),"MPEG",...s,"HLS","HLS_ONDEMAND"];case"dash_sep":return["DASH_SEP","MPEG",...eo(a),...s,"HLS","HLS_ONDEMAND"];default:(0,Oa.assertNever)(e)}if(F.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:(0,Oa.assertNever)(t)}return[...r,"HLS","HLS_ONDEMAND","MPEG"]},lS=({androidPreferredFormat:a,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"],s=[...i,...r],n=[...r,...i],o,u=F.device.isMac&&F.browser.isSafari;if(F.device.isAndroid)switch(a){case"dash":case"dash_any_mpeg":case"dash_any_webm":case"dash_sep":{o=s;break}case"hls":case"mpeg":{o=n;break}default:(0,Oa.assertNever)(a)}else F.video.nativeHlsSupported&&!u&&!F.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=s;return t?["WEB_RTC_LIVE",...o]:[...o,"WEB_RTC_LIVE"]},ol=a=>a?["HLS_LIVE","HLS_LIVE_CMAF","DASH_LIVE_CMAF"]:["DASH_WEBM","DASH_WEBM_AV1","DASH_SEP","DASH_ONDEMAND","HLS","HLS_ONDEMAND","MPEG"],io=a=>{if(a.size===0)return;if(a.size===1){let t=a.values().next();return(0,to.default)(t.value.split("."),0)}for(let t of a){let i=(0,to.default)(t.split("."),0);if(i==="opus"||i==="vp09"||i==="av01")return i}let e=a.values().next();return(0,to.default)(e.value.split("."),0)},ro=a=>{let e=a.map(i=>vi(i)),{codecs:t}=F.video;return SM().filter(i=>{if((0,nl.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})},ao=a=>{let e=a.map(i=>vi(i)),{codecs:t}=F.video;return yM().filter(i=>{if((0,nl.default)(e,i))switch(i){case"opus":return t.opus;case"mp4a":return t.aac;default:return!1}else return!1})},vi=a=>a.split(".")[0].replace("0",""),SM=()=>["av1","vp9","hev1","avc1"],yM=()=>["opus","mp4a"];var xS=j(gt(),1);var TM=(a,e={})=>{let i=e.timeout||1,r=performance.now();return Ae.setTimeout(()=>{a({get didTimeout(){return e.timeout?!1:performance.now()-r-1>i},timeRemaining(){return Math.max(0,1+(performance.now()-r))}})},1)},IM=a=>Ae.clearTimeout(a),dS=a=>typeof a=="function"&&a?.toString().endsWith("{ [native code] }"),pS=!dS(Ae.requestIdleCallback)||!dS(Ae.cancelIdleCallback),Wi=pS?TM:Ae.requestIdleCallback,Qi=pS?IM:Ae.cancelIdleCallback;var M=require("@vkontakte/videoplayer-shared/es2024");var mS=j(gt(),1);var so=a=>a.valid,ue=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,s;i===0?(this.size=void 0,this.valid=!1,s=void 0):i===1?(this.size=void 0,this.valid=!1,s=void 0):i>e.byteLength?(this.size=i,this.valid=!1,s=Math.min(i-this.cursor,e.byteLength-this.cursor)):(this.size=i,this.valid=!0,s=i-this.cursor),this.content=new DataView(e.buffer,r,s)}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 Lr=class extends ue{};var hS=require("@vkontakte/videoplayer-shared/es2024");var Na=class extends ue{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:(0,hS.assertNever)(e)}}};var Fa=class extends ue{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 s=this.readString(4);this.compatibleBrands.push(s)}}};var Ua=class extends ue{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var ve=class extends ue{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 qa=class extends ve{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 Ha=class extends ue{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var ja=class extends ue{constructor(e,t){super(e,t),this.data=this.content}};var Gi=class extends ve{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(),s=r>>>31,n=r<<1>>>1,o=this.readUint32();r=this.readUint32();let u=r>>>28,c=r<<3>>>3;this.segments.push({referenceType:s,referencedSize:n,subsegmentDuration:o,SAPType:u,SAPDeltaTime:c})}}}};var za=class extends ue{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Wa=class extends ue{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Qa=class extends ve{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 Ga=class extends ve{constructor(e,t){super(e,t),this.valid&&(this.poseYawDegrees=this.readUint32(),this.posePitchDegrees=this.readUint32(),this.poseRollDegrees=this.readUint32())}};var Ya=class extends ve{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 Ka=class extends ue{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Xa=class extends ve{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 Ja=class extends ue{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Za=class extends ue{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var es=class extends ve{constructor(e,t){super(e,t),this.valid&&(this.sequenceNumber=this.readUint32())}};var ts=class extends ue{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var is=class extends ve{constructor(e,t){super(e,t),this.trackId=this.readUint32(),this.flags&1&&(this.baseDataOffset=this.readUint64()),this.flags&2&&(this.sampleDescriptionIndex=this.readUint32()),this.flags&8&&(this.defaultSampleDuration=this.readUint32()),this.flags&16&&(this.defaultSampleSize=this.readUint32()),this.flags&32&&(this.defaultSampleFlags=this.readUint32())}};var rs=class extends ve{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 as=class extends ve{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 ss=class extends ue{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var ns=class extends ve{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 os=class extends ue{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 wM={ftyp:Fa,moov:Ua,mvhd:qa,moof:Ha,mdat:ja,sidx:Gi,trak:za,mdia:Ka,mfhd:es,tkhd:Xa,traf:ts,tfhd:is,tfdt:rs,trun:as,minf:Ja,sv3d:Wa,st3d:Qa,prhd:Ga,proj:Za,equi:Ya,uuid:Na,stbl:ss,stsd:ns,avc1:os,unknown:Lr},Kt=class a{constructor(e={}){this.options={offset:0,...e}}parse(e){let t=[],i=this.options.offset;for(;i<e.byteLength;){let s=new TextDecoder("ascii").decode(new DataView(e.buffer,e.byteOffset+i+4,4)),n;try{n=this.createBox(s,new DataView(e.buffer,e.byteOffset+i,e.byteLength-i))}catch(o){if(!(o instanceof RangeError))throw o}if(!n||!so(n))break;t.push(n),i+=n.size}return t}createBox(e,t){let i=wM[e];return i?new i(t,new a):new Lr(t,new a)}};var Si=class{constructor(e){this.index={},this.indexBoxLevel(e)}indexBoxLevel(e){e.forEach(t=>{so(t)&&(this.index[t.type]??=[],this.index[t.type].push(t),t.children.length>0&&this.indexBoxLevel(t.children))})}find(e){return this.index[e]&&this.index[e][0]?this.index[e][0]:null}findAll(e){return this.index[e]||[]}};var PM=new TextDecoder("ascii"),kM=a=>PM.decode(new DataView(a.buffer,a.byteOffset+4,4))==="ftyp",AM=a=>{let e=new Gi(a,new Kt),t=e.earliestPresentationTime/e.timescale*1e3,i=a.byteOffset+a.byteLength+e.firstOffset;return e.segments.map(s=>{if(s.referenceType!==0)throw new Error("Unsupported multilevel sidx");let n=s.subsegmentDuration/e.timescale*1e3,o={status:"none",time:{from:t,to:t+n},byte:{from:i,to:i+s.referencedSize-1}};return t+=n,i+=s.referencedSize,o})},RM=(a,e)=>{let i=new Kt().parse(a),r=new Si(i),s=r.findAll("moof"),n=e?r.findAll("uuid"):r.findAll("mdat");if(!(n.length&&s.length))return null;let o=s[0],u=n[n.length-1],c=o.source.byteOffset,l=u.source.byteOffset-o.source.byteOffset+u.size;return new DataView(a.buffer,c,l)},MM=a=>{let t=new Kt().parse(a),i=new Si(t),r={},s=i.findAll("uuid"),n=(0,mS.default)(s,-1);return n?{serverDataReceivedTimestamp:n.userData.received,serverDataPreparedTime:n.userData.received}:r},$M=a=>{let t=new Kt().parse(a);return new Si(t).find("sidx")?.timescale},LM=(a,e)=>{let i=new Kt().parse(a),s=new Si(i).findAll("traf"),n=s[s.length-1].children.find(l=>l.type==="tfhd"),o=s[s.length-1].children.find(l=>l.type==="tfdt"),u=s[s.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},CM=a=>{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 Kt().parse(a),r=new Si(i);if(r.find("sv3d")){e.is3dVideo=!0;let n=r.find("st3d");n&&(e.stereoMode=n.stereoMode);let o=r.find("prhd");o&&(e.projectionData.pose.yaw=o.poseYawDegrees,e.projectionData.pose.pitch=o.posePitchDegrees,e.projectionData.pose.roll=o.poseRollDegrees);let u=r.find("equi");u&&(e.projectionData.bounds.top=u.projectionBoundsTop,e.projectionData.bounds.right=u.projectionBoundsRight,e.projectionData.bounds.bottom=u.projectionBoundsBottom,e.projectionData.bounds.left=u.projectionBoundsLeft)}return e},fS={validateData:kM,parseInit:CM,getIndexRange:()=>{},parseSegments:AM,parseFeedableSegmentChunk:RM,getChunkEndTime:LM,getServerLatencyTimestamps:MM,getTimescaleFromIndex:$M};var cs=j(Ke(),1),Xt=require("@vkontakte/videoplayer-shared/es2024");var gS=require("@vkontakte/videoplayer-shared/es2024");var bS={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"}},vS=a=>{let e=a.getUint8(0),t=0;e&128?t=1:e&64?t=2:e&32?t=3:e&16&&(t=4);let i=us(a,t),r=i in bS,s=r?bS[i].type:"binary",n=a.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(a.buffer,a.byteOffset+t+1,o-1),c=n&255>>o,d=us(u),l=c*2**((o-1)*8)+d,p=t+o,m;return p+l>a.byteLength?m=new DataView(a.buffer,a.byteOffset+p):m=new DataView(a.buffer,a.byteOffset+p,l),{tag:r?i:"0x"+i.toString(16).toUpperCase(),type:s,tagHeaderSize:p,tagSize:p+l,value:m,valueSize:l}},us=(a,e=a.byteLength)=>{switch(e){case 1:return a.getUint8(0);case 2:return a.getUint16(0);case 3:return a.getUint8(0)*2**16+a.getUint16(1);case 4:return a.getUint32(0);case 5:return a.getUint8(0)*2**32+a.getUint32(1);case 6:return a.getUint16(0)*2**32+a.getUint32(2);case 7:{let t=a.getUint8(0)*281474976710656+a.getUint16(1)*4294967296+a.getUint32(3);if(Number.isSafeInteger(t))return t}case 8:throw new ReferenceError("Int64 is not supported")}return 0},Mt=(a,e)=>{switch(e){case"int":return a.getInt8(0);case"uint":return us(a);case"float":return a.byteLength===4?a.getFloat32(0):a.getFloat64(0);case"string":return new TextDecoder("ascii").decode(a);case"utf8":return new TextDecoder("utf-8").decode(a);case"date":return new Date(Date.UTC(2001,0)+a.getInt8(0)).getTime();case"master":return a;case"binary":return a;default:(0,gS.assertNever)(e)}},Yi=(a,e)=>{let t=0;for(;t<a.byteLength;){let i=new DataView(a.buffer,a.byteOffset+t),r=vS(i);if(!e(r))return;r.type==="master"&&Yi(r.value,e),t=r.value.byteOffset-a.byteOffset+r.valueSize}},SS=a=>{if(a.getUint32(0)!==440786851)return!1;let e,t,i,r=vS(a);return Yi(r.value,({tag:s,type:n,value:o})=>(s===17143?e=Mt(o,n):s===17026?t=Mt(o,n):s===17029&&(i=Mt(o,n)),!0)),(e===void 0||e<=1)&&t!==void 0&&t==="webm"&&(i===void 0||i<=2)};var yS=[357149030,290298740,374648427,174,224,30320,30321,30322,272869232,524531317,475249515,423732329,307544935],DM=[231,22612,22743,167,171,163,160,175],BM=a=>{let e,t,i,r,s=!1,n=!1,o=!1,u,c,d=!1,l=0;return Yi(a,({tag:p,type:m,value:f,valueSize:g})=>{if(p===21419){let v=Mt(f,m);c=us(v)}else p!==21420&&(c=void 0);return p===408125543?(e=f.byteOffset,t=f.byteOffset+g):p===357149030?s=!0:p===290298740?n=!0:p===2807729?i=Mt(f,m):p===17545?r=Mt(f,m):p===21420&&c===475249515?u=Mt(f,m):p===374648427?Yi(f,({tag:v,type:S,value:E})=>v===30321?(d=Mt(E,S)===1,!1):!0):s&&n&&(0,cs.default)(yS,p)&&(o=!0),!o}),(0,Xt.assertNonNullable)(e,"Failed to parse webm Segment start"),(0,Xt.assertNonNullable)(t,"Failed to parse webm Segment end"),(0,Xt.assertNonNullable)(r,"Failed to parse webm Segment duration"),i=i??1e6,{segmentStart:Math.round(e/1e9*i*1e3),segmentEnd:Math.round(t/1e9*i*1e3),timeScale:i,segmentDuration:Math.round(r/1e9*i*1e3),cuesSeekPosition:u,is3dVideo:d,stereoMode:l,projectionType:1,projectionData:{pose:{yaw:0,pitch:0,roll:0},bounds:{top:0,bottom:0,left:0,right:0}}}},VM=a=>{if((0,Xt.isNullable)(a.cuesSeekPosition))return;let e=a.segmentStart+a.cuesSeekPosition,t=1024*1024;return{from:e,to:e+t}},_M=(a,e)=>{let t=!1,i=!1,r=o=>(0,Xt.isNonNullable)(o.time)&&(0,Xt.isNonNullable)(o.position),s=[],n;return Yi(a,({tag:o,type:u,value:c})=>{switch(o){case 475249515:t=!0;break;case 187:n&&r(n)&&s.push(n),n={};break;case 179:n&&(n.time=Mt(c,u));break;case 183:break;case 241:n&&(n.position=Mt(c,u));break;default:t&&(0,cs.default)(yS,o)&&(i=!0)}return!(t&&i)}),n&&r(n)&&s.push(n),s.map((o,u)=>{let{time:c,position:d}=o,l=s[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}}})},OM=a=>{let e=0,t=!1;try{Yi(a,i=>i.tag===524531317?i.tagSize<=a.byteLength?(e=i.tagSize,!1):(e+=i.tagHeaderSize,!0):(0,cs.default)(DM,i.tag)?(e+i.tagSize<=a.byteLength&&(e+=i.tagSize,t||=(0,cs.default)([163,160,175],i.tag)),!0):!1)}catch{}return e>0&&e<=a.byteLength&&t?new DataView(a.buffer,a.byteOffset,e):null},TS={validateData:SS,parseInit:BM,getIndexRange:VM,parseSegments:_M,parseFeedableSegmentChunk:OM};var Ki=a=>{let e=/^(.+)\/([^;]+)(?:;.*)?$/.exec(a);if(e){let[,t,i]=e;if(t==="audio"||t==="video")switch(i){case"webm":return TS;case"mp4":return fS}}throw new ReferenceError(`Unsupported mime type ${a}`)};var ul=j(gt(),1);var IS=require("@vkontakte/videoplayer-shared/es2024"),yi=({id:a,width:e,height:t,bitrate:i,fps:r,quality:s,streamId:n,tvDisabled:o})=>{let u=(s?hi(s):void 0)??(0,IS.videoSizeToQuality)({width:e,height:t});return u&&{id:a,quality:u,bitrate:i,size:{width:e,height:t},fps:r,streamId:n,tvDisabled:o}},ls=({id:a,bitrate:e})=>({id:a,bitrate:e}),ES=({language:a,label:e},{id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:a,label:e}),wS=({language:a,label:e,id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:a,label:e}),cl=({id:a,language:e,label:t,codecs:i,isDefault:r})=>({id:a,language:e,label:t,codec:(0,ul.default)(i.split("."),0),isDefault:r}),ll=({id:a,language:e,label:t,hdr:i,codecs:r})=>({id:a,language:e,hdr:i,label:t,codec:(0,ul.default)(r.split("."),0)}),dl=a=>"url"in a,lt=a=>a.type==="template";var Cr=class{constructor(e,t,i,{fetcher:r,tuning:s,getCurrentPosition:n,getCurrentStallDuration:o,manifest:u}){this.error$=new M.Subject;this.playingRepresentation$=new M.ValueSubject(void 0);this.playingRepresentationInit$=new M.ValueSubject(void 0);this.currentSegmentLength$=new M.ValueSubject(0);this.onLastSegment$=new M.ValueSubject(!1);this.fullyBuffered$=new M.ValueSubject(!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 be;this.downloadAbortController=new be;this.subscription=new M.Subscription;this.startWith=(0,M.abortable)(this.destroyAbortController.signal,async function*(e){let t=this.representations.get(e);(0,M.assertNonNullable)(t,`Cannot find representation ${e}`),this.playingRepresentationId=e,this.downloadingRepresentationId=e,this.containerParser=Ki(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),s=this.parsedInitData.get(t.id);(0,M.assertNonNullable)(i,"No init buffer for starting representation"),(0,M.assertNonNullable)(r,"No segments for starting representation"),await this.nativeBufferManager.addInitSegment(i),this.playingRepresentation$.next(this.playingRepresentationId),this.playingRepresentationInit$.next(s)}.bind(this));this.switchTo=(0,M.abortable)(this.destroyAbortController.signal,async function*(e,t=!0){if((0,M.isNullable)(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);(0,M.assertNonNullable)(r,`No such representation ${e}`),(0,M.assertNonNullable)(i,`No such representation ${this.downloadingRepresentationId}`),yield this.loadInitIfNeeded(r,"high");let s=this.initData.get(r.id),n=this.segments.get(r.id);(0,M.assertNonNullable)(s,"No init buffer for switching representation"),(0,M.assertNonNullable)(n,"No segments for switching representation");let o=this.getCurrentPosition()??0,u=l=>l.segment.bufferStatus!=="fed",c=l=>{let p=this.representations.get(l.representationId);return(0,M.assertNonNullable)(p,"No itemRepresentation for previous track before switch"),l.segment.networkStatus!=="downloaded"||this.forceSwitchCondition(p,r)},d=l=>t?u(l)&&c(l):u(l);this.bufferPlaybackQueue.filter(d).forEach(l=>l.segment.bufferStatus="none"),this.bufferPlaybackQueue=this.bufferPlaybackQueue.filter(l=>!d(l)),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=(0,M.abortable)(this.downloadAbortController.signal,async function*(){let e=(0,M.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(t=>{let i=(0,M.getWindow)();this.loadByteRangeSegmentsTimeoutId=i.setTimeout(t,e),this.subscription.add((0,M.fromEvent)(i,"online").pipe((0,M.once)()).subscribe(()=>{t(),i.clearTimeout(this.loadByteRangeSegmentsTimeoutId)}))})}.bind(this));this.kind=e,this.nativeBufferManager=t,this.fetcher=r,this.tuning=s,this.getCurrentPosition=n,this.getCurrentStallDuration=o,this.forwardBufferTarget=s.dash.forwardBufferTargetAuto,this.baseUrls=u?.baseUrls??[],this.representations=new Map(i.map(c=>[c.id,c]))}async seek(e){await this.abort(),await this.clearBuffer(),await this.maintain(e)}async maintain(e=this.getCurrentPosition()){(0,M.isNullable)(e)||(await this.maintainPlaybackBuffer(e),await this.maintainNativeBuffer(),this.actualizeLastSegmentInfo(e))}getForwardPlaybackBufferDuration(e=this.getCurrentPosition()){let t=this.bufferPlaybackQueue.filter(s=>s.segment.networkStatus==="downloaded"),i=t[t.length-1],r=(0,M.isNonNullable)(e)&&(0,M.isNonNullable)(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){let t=this.downloadingRepresentationId??this.playingRepresentationId??"";return this.segments.get(t)?.find(s=>s.time.from<=e&&s.time.to>=e)?.time.from}getRepresentationInitialTime(){return(0,M.isNullable)(this.playingRepresentationId)?0:(this.segments.get(this.playingRepresentationId)?.[0].time.from??0)/1e3}calculateDurationFromSegments(e){let t=this.segments.get(e);return(t?(0,xS.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=(0,M.getWindow)();if(this.initData.clear(),this.initDataPromises.clear(),this.segments.clear(),this.parsedInitData.clear(),this.representations.clear(),this.downloadAbortController.abort(),this.destroyAbortController.abort(),this.subscription.unsubscribe(),e.__polyfill_cancelIdleCallback_e6f3enkn2id4)for(let t of this.idleCallbacks.values())e.__polyfill_cancelIdleCallback_e6f3enkn2id4(t);this.idleCallbacks.clear(),e.clearTimeout(this.loadByteRangeSegmentsTimeoutId)}forceSwitchCondition(e,t){let i=!0;if(this.kind==="video"){let r=yi(e),s=yi(t);i=(0,M.isNonNullable)(r)&&(0,M.isNonNullable)(s)&&(0,M.isHigher)(s.quality,r.quality)}else if(this.kind==="audio"){let r=ls(e),s=ls(t);i=(0,M.isNonNullable)(r?.bitrate)&&(0,M.isNonNullable)(s?.bitrate)&&s.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 be,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,Wi(async r=>await this.loadInitIfNeeded(i,"low",!1)))}async loadInitIfNeeded(e,t="auto",i=!1){let r=this.initDataPromises.get(e.id),s;this.initData.has(e.id)&&this.segments.has(e.id)?s=Promise.resolve():(0,M.isNonNullable)(r)?s=r:s=this.loadInit(e,t,i),await s}async loadInit(e,t="auto",i=!1){try{let r=this.tuning.dash.useFetchPriorityHints?t:"auto",s=this.fetcher.fetchRepresentation(e.segmentReference,this.containerParser,r);this.initDataPromises.set(e.id,s);let{initMetadata:n,initDataView:o,segments:u}=await s??{};if(this.initDataPromises.delete(e.id),(0,M.isNullable)(o)||(0,M.isNullable)(u))return;n&&this.parsedInitData.set(e.id,n);let c=o.buffer.slice(o.byteOffset,o.byteOffset+o.byteLength);this.initData.set(e.id,c),this.segments.set(e.id,u),this.failedDownloads=0}catch(r){i&&this.error$.next({id:"LoadInits",category:M.ErrorCategory.WTF,message:"loadInit threw",thrown:r})}}async maintainNativeBuffer(){let e=this.getCurrentPosition(),t=this.segments.get(this.downloadingRepresentationId??""),i=t?.[t?.length-1];if((0,M.isNullable)(e)||(0,M.isNullable)(i)||this.maintainNativeBufferMutex||this.abortNativeBufferMutex||this.bufferClearingMutex||this.switchMutex||this.preloadOnly)return;this.maintainNativeBufferMutex=!0;let r=this.bufferPlaybackQueue.find(m=>this.withinInterval(e,m.segment.time)),s=this.bufferPlaybackQueue.find(m=>m.segment.bufferStatus!=="fed"),n=this.initData.get(s?.representationId??""),o=this.bufferPlaybackQueue[0],u=this.downloadAbortController.signal,d=(this.getCurrentStallDuration()??0)>0;this.tuning.dash.useBufferHoldingOnlyOnStall&&(d&&=e>0);let l=Math.min(this.tuning.dash.minSafeBufferToPlay,i.time.to-e),p=d?this.getForwardPlaybackBufferDuration()>=l:!0;(0,M.isNonNullable)(n)&&(0,M.isNonNullable)(s)&&(0,M.isNonNullable)(r)&&this.playingRepresentationId!==s.representationId&&this.withinAppendInterval(e,s.segment.time)&&(s===r||r.segment.bufferStatus==="fed")&&(await this.abortNativeBuffer(),await this.nativeBufferManager.addInitSegment(n,this.downloadAbortController.signal),this.playingRepresentationId=s.representationId,this.playingRepresentation$.next(this.playingRepresentationId)),(0,M.isNonNullable)(s)&&this.withinAppendInterval(e,s.segment.time)&&p&&(s.segment.loadedBytes===s.segment.size&&s.segment.bufferStatus==="none"?await this.appendSegmentFully(s,u):await this.appendSegmentPartially(s,u)),(0,M.isNonNullable)(o)&&this.withinRemoveInterval(e,o.segment.time)&&await this.removeSegment(o,u),this.pruneVirtualBuffer(e),this.maintainNativeBufferMutex=!1}async maintainPlaybackBuffer(e){(0,M.assertNonNullable)(this.downloadingRepresentationId);let t=this.segments.get(this.downloadingRepresentationId),i=this.representations.get(this.downloadingRepresentationId);if((0,M.isNullable)(t)||(0,M.isNullable)(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);(0,M.isNonNullable)(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 s=this.selectItemsToLoad();await this.loadItems(s,i),this.maintainPlaybackBufferMutex=!1}actualizeLastSegmentInfo(e){let t=this.segments.get(this.downloadingRepresentationId??"");if((0,M.isNullable)(t)||t.length===0)return;let i=t[t?.length-1];(0,M.isNullable)(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){(0,M.assertNonNullable)(this.downloadingRepresentationId);let i=this.getPlaybackBufferState(),r,s;(0,M.isNonNullable)(i)&&this.withinInterval(e,i)?(s=this.forwardBufferTarget-this.getForwardPlaybackBufferDuration(e),r=this.bufferPlaybackQueue[this.bufferPlaybackQueue.length-1].segmentIndex+1):(s=this.forwardBufferTarget,r=t.findIndex(o=>this.withinInterval(e,o.time))),r=r===-1?0:r;let n=[];for(;r<t.length&&s>0;){n.push({representationId:this.downloadingRepresentationId,segmentIndex:r,segment:t[r]});let{from:o,to:u}=t[r].time;s-=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(0,M.isNonNullable)(e)?e+r>=t&&e<i:!1}withinAppendInterval(e,{from:t,to:i}){let{actionTimeShiftFromSegment:r}=this.tuning.dash;return(0,M.isNonNullable)(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(0,M.isNonNullable)(e)?e-i>t:!1}async appendSegmentFully(e,t){if((0,M.isNullable)(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((0,M.isNullable)(e.segment.data)||(0,M.isNullable)(e.segment.loadedBytes)||(0,M.isNullable)(e.segment.feedingBytes)||(0,M.isNullable)(e.segment.fedBytes)||(0,M.isNullable)(e.segment.size))return;let i=e.segment.data,r=new DataView(i.buffer,i.byteOffset+e.segment.feedingBytes,i.byteLength-e.segment.feedingBytes),s=e.segment.loadedBytes!==e.segment.size?this.parseFeedableSegmentChunk(r):r;s?.byteLength&&(e.segment.bufferStatus="partially_fed",e.segment.feedingBytes+=s.byteLength,await this.nativeBufferManager.append(s,t)&&(e.segment.fedBytes+=s.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,s=(r-i)/4;await this.nativeBufferManager.remove(0,r-s,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||(0,M.isNonNullable)(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 s=this.currentVirtualBufferSize-t+i;for(let n of this.segments.values())for(let o of n)(0,M.isNonNullable)(o.size)&&s>0&&o.time.to<=e-r&&o.bufferStatus==="none"&&o.networkStatus==="downloaded"&&(o.data=null,o.networkStatus="none",this.currentVirtualBufferSize-=o.size,s-=o.size);for(let n of this.segments.values())for(let o of[...n].reverse())(0,M.isNonNullable)(o.size)&&s>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,s-=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)}};var yt=require("@vkontakte/videoplayer-shared/es2024"),no=class extends Cr{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:s,...n}=this.prepareFetchParams(e,t);if(this.failedDownloads&&await this.waitExponentialDownloadDelay(),!r.aborted)try{await this.fetcher.fetch(s,{...n,priority:i}),this.lastDataObtainedTimestampMs=(0,yt.now)(),this.failedDownloads=0}catch(o){this.abortDownloadingItems(),(0,yt.isAbortError)(o)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}}selectItemsToLoad(){let e=0,t=0,i=[],r=this.preloadOnly?0:this.tuning.dash.segmentRequestSize,s=this.preloadOnly?this.forwardBufferTarget:0,n=0;for(;n<this.downloadingBufferItems.length&&this.downloadingBufferItems[n].segment.networkStatus==="none"&&(e<=r||t<=s);){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(Be(t.segmentReference))throw new Error("Representation is not byte range type");let{signal:i}=this.downloadAbortController,r=t.segmentReference.url,s={from:e[0].segment.byte.from,to:e[e.length-1].segment.byte.to};return{url:r,range:s,onProgress:async(o,u)=>{if(!i.aborted)try{this.lastDataObtainedTimestampMs=(0,yt.now)(),await this.onSomeDataLoaded({downloadingItems:e,dataView:o,loaded:u,signal:i,globalFrom:s?s.from:0,representationId:t.id})}catch(c){this.error$.next({id:"SegmentFeeding",category:yt.ErrorCategory.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:s,signal:n}){let o=this.representations.get(i);if(!(!this.downloadingBufferItems.length||(0,yt.isNullable)(o)||(0,yt.isNullable)(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,m=d<s,f=l<=s;c.size=p,m&&(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,s-d),await this.onDownloadItem(u)):(0,yt.isNonNullable)(c.feedingBytes)&&this.tuning.dash.enableSubSegmentBufferFeeding&&c.networkStatus==="downloading"&&(c.loadedBytes=Math.min(p,s-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(Be(e.segmentReference))throw new Error("Representation is not byte range type");e.segmentReference.url=t}};var $t=require("@vkontakte/videoplayer-shared/es2024"),Dr=class extends Cr{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:s,...n}=this.prepareFetchParams(e,t);if(this.failedDownloads&&await this.waitExponentialDownloadDelay(),!r.aborted)try{let o=await this.fetcher.fetch(s,{...n,priority:i});if(this.lastDataObtainedTimestampMs=(0,$t.now)(),(0,$t.isNullable)(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(),(0,$t.isAbortError)(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=(0,$t.now)(),await this.onSomeDataLoaded({downloadingItems:e,dataView:n,loaded:o,signal:r,representationId:t.id})}catch(u){this.error$.next({id:"SegmentFeeding",category:$t.ErrorCategory.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:u})}},signal:r,bufferOptimisation:this.tuning.dash.fetcherBufferOptimisation}}getFetchUrl(e,t){if(!Be(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:s}){let n=e[0],{segment:o}=n,u=this.representations.get(i);!this.downloadingBufferItems.length||(0,$t.isNullable)(u)||(0,$t.isNullable)(o.feedingBytes)||o.networkStatus!=="downloading"||s.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(!Be(e.segmentReference))throw new Error("Representation is not template type");e.segmentReference.baseUrl=t}};var pl=j(Ca(),1),PS=j(gt(),1);var Ve=require("@vkontakte/videoplayer-shared/es2024");var oo=class extends Dr{constructor(t,i,r,s){super(t,i,r,s);this.currentLiveSegmentServerLatency$=new Ve.ValueSubject(0);this.currentLowLatencySegmentLength$=new Ve.ValueSubject(0);this.liveInitialAdditionalOffset=0;this.isSeekingLive=!1;this.isActiveLowLatency=s.isActiveLowLatency}updateManifest(t){if(!t||[...this.segments.values()].every(r=>!r.length))return;let i=(0,pl.default)(t.streams[this.kind],r=>r.representations);for(let r of i){if((0,Ve.isNullable)(r)||!Be(r.segmentReference))return;let s=r.segmentReference.segments.map(d=>({...d,networkStatus:"none",bufferStatus:"none",size:void 0})),n=100,o=this.segments.get(r.id)??[],u=(0,PS.default)(o,-1)?.time.to??0,c=s?.findIndex(d=>u>=d.time.from+n&&u<=d.time.to+n);if(c===-1){let d=this.getActualLiveStartingSegments(r.segmentReference);this.segments.set(r.id,d)}else{let d=s.slice(c+1);this.segments.set(r.id,[...o,...d])}this.representations.set(r.id,r)}}proceedLowLatencyLive(){let t=this.downloadingRepresentationId;(0,Ve.assertNonNullable)(t);let i=this.segments.get(t);if(i?.length){let r={representationId:t,segmentIndex:i.length-1,segment:i[i.length-1]};this.updateLowLatencyLive(r)}}getLiveSegmentsToLoadState(t){let i=t?.streams[this.kind],r=(0,pl.default)(i,n=>n.representations).find(n=>n.id===this.downloadingRepresentationId);if((0,Ve.isNullable)(r))return;let s=this.segments.get(r.id);if(s?.length)return{from:s[0].time.from,to:s[s.length-1].time.to}}getRepresentationInitialTime(){if((0,Ve.isNullable)(this.playingRepresentationId))return 0;let t=this.representations.get(this.playingRepresentationId)?.segmentReference;return(0,Ve.isNullable)(t)||!Be(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),(0,Ve.isNullable)(t.segment.data)||!this.isActiveLowLatency())return;let i=t.segment.data,r=this.containerParser,{serverDataReceivedTimestamp:s,serverDataPreparedTime:n}=r.getServerLatencyTimestamps(i);s&&n&&this.currentLiveSegmentServerLatency$.next(n-s),this.updateLowLatencyItemTime(t),this.updateLowLatencyLive(t)}updateLowLatencyItemTime(t){let i=t.segment.data,r=this.representations.get(t.representationId)?.segmentReference;if((0,Ve.isNullable)(t.segment.data)||(0,Ve.isNullable)(r)||!Be(r))return;let s=this.containerParser;if(t.segment.isCurrentLowLatency){let{timescale:n}=r;t.segment.time.to=s.getChunkEndTime(i,n)}}updateLowLatencyLive(t){let i=0;for(let r of this.representations.values()){let s=r.segmentReference;if(!Be(s))return;let n=this.segments.get(r.id)??[],o=n.find(c=>Math.floor(c.time.from)===Math.floor(t.segment.time.from));if(o?.isCurrentLowLatency&&(o.time.to=t.segment.time.to,i=o.time.to-o.time.from,o.isCurrentLowLatency=!1),!!!n.find(c=>Math.floor(c.time.from)===Math.floor(t.segment.time.to))&&this.isActiveLowLatency()){let c=Math.round(t.segment.time.to*s.timescale/1e3).toString(10),d=Rt(s.segmentTemplateUrl,{segmentTime:c});n.push({networkStatus:"none",bufferStatus:"none",time:{from:t.segment.time.to,to:t.segment.time.to+this.tuning.dash.bufferTolerance},url:d,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){try{let s=this.tuning.dash.useFetchPriorityHints?i:"auto",n=this.fetcher.fetchRepresentation(t.segmentReference,this.containerParser,s);this.initDataPromises.set(t.id,n);let{initMetadata:o,initDataView:u,segments:c}=await n??{};if(this.initDataPromises.delete(t.id),(0,Ve.isNullable)(u)||(0,Ve.isNullable)(c))return;o&&this.parsedInitData.set(t.id,o);let d=this.getActualLiveStartingSegments(t.segmentReference);this.segments.has(t.id)||this.segments.set(t.id,d);let l=u.buffer.slice(u.byteOffset,u.byteOffset+u.byteLength);this.initData.set(t.id,l),this.failedDownloads=0}catch(s){r&&this.error$.next({id:"LoadInits",category:Ve.ErrorCategory.WTF,message:"loadInit threw",thrown:s})}}getActualLiveStartingSegments(t){let i=t.segments,r=this.isActiveLowLatency()?this.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.tuning.dashCmafLive.maxActiveLiveOffset,s=[],n=0,o=i.length-1;do s.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()?[s[0]]:s}};var ds=class{static getBufferManager(e,t,i,r){return r.manifest?.live?new oo(e,t,i,r):Be(i[0].segmentReference)?new Dr(e,t,i,r):new no(e,t,i,r)}};var Ge=require("@vkontakte/videoplayer-shared/es2024");var Ti=require("@vkontakte/videoplayer-shared/es2024");var NM=18,kS=!1;try{kS=F.browser.isSafari&&!!F.browser.safariVersion&&F.browser.safariVersion<=NM}catch(a){console.error(a)}var hl=class{constructor(e,t=!1){this.bufferFull$=new Ti.Subject;this.error$=new Ti.Subject;this.queue=[];this.currentTask=null;this.destroyed=!1;this.abortRequested=!1;this.isAbortFixEnabled=!1;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:Ti.ErrorCategory.VIDEO_PIPELINE,message:"Buffer appending or removal failed",thrown:e})}};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 s={operation:"remove",from:e,to:t,signal:i,callback:r};this.queue.unshift(s),this.pull()})}async abort(e){return new Promise(t=>{let i,r=s=>{this.abortRequested=!1,t(s)};kS&&e?i={operation:"safariAbort",init:e,callback:r}:i={operation:"abort",callback:r};for(let{callback:s}of this.queue)s(!1);this.abortRequested=!0,i&&(this.queue=[i]),this.pull()})}destroy(){this.destroyed=!0,this.buffer.removeEventListener("updateend",this.completeTask),this.queue=[],this.currentTask=null;try{this.buffer.abort()}catch(e){if(!(e instanceof DOMException&&e.name==="InvalidStateError"))throw e}}pull(){if((this.buffer.updating||this.currentTask||this.destroyed)&&!this.abortRequested)return;let e=this.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(r){r instanceof DOMException&&r.name==="QuotaExceededError"&&t==="append"?this.bufferFull$.next(this.currentTask.data.byteLength):r instanceof DOMException&&r.name==="InvalidStateError"||this.error$.next({id:`BufferTaskQueue:${t}`,category:Ti.ErrorCategory.VIDEO_PIPELINE,message:"Buffer operation failed",thrown:r}),this.currentTask.callback(!1),this.currentTask=null}this.currentTask&&this.currentTask.operation==="abort"&&this.completeTask()}execute(e){let{operation:t}=e;switch(t){case"append":this.buffer.appendBuffer(e.data);break;case"remove":this.buffer.remove(e.from/1e3,e.to/1e3);break;case"abort":this.buffer.abort();break;case"safariAbort":{this.buffer.abort(),this.buffer.appendBuffer(e.init);break}default:(0,Ti.assertNever)(t)}}},AS=hl;var Ii=(a,e)=>{let t=0;for(let i=0;i<a.length;i++){let r=a.start(i)*1e3,s=a.end(i)*1e3;r<=e&&e<=s&&(t=s)}return Math.max(t-e,0)};var ps=class{constructor(e){this.error$=new Ge.Subject;this.subscription=new Ge.Subscription;this.mediaSource=e}init(e,t,i=!1){this.sourceBuffer=this.mediaSource.addSourceBuffer(`${e}; codecs="${t}"`),this.sourceBufferTaskQueue=new AS(this.sourceBuffer,i),this.subscription.add(this.sourceBufferTaskQueue.error$.subscribe(r=>this.error$.next(r))),this.subscription.add((0,Ge.fromEvent)(this.sourceBuffer,"error").subscribe(()=>this.error$.next({id:"SourceBuffer",category:Ge.ErrorCategory.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((0,Ge.isNullable)(t))return Promise.resolve(!1);let i=!0;await this.sourceBufferTaskQueue.abort();for(let r of t)i&&=await this.sourceBufferTaskQueue.remove(r.from,r.to,e);return i}warmUpMediaSource(){!(0,Ge.isNullable)(this.sourceBuffer)&&!this.sourceBuffer.updating&&(this.sourceBuffer.mode="segments")}getBufferState(){if((0,Ge.isNullable)(this.sourceBuffer)||!fe(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(0,Ge.isNullable)(this.sourceBuffer)||!fe(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length||(0,Ge.isNullable)(e)?0:Ii(this.sourceBuffer.buffered,e)}async abortBuffer(e){return(0,Ge.isNullable)(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 uo=(a,e)=>{a.video.forEach(t=>{t.representations.forEach(i=>{let{height:r,codecs:s,fps:n}=i,o=e.find(([c,d,l])=>c===`${r}p`&&vi(s)===l)?.[1],u=RS(o)&&RS(n)&&n>o;i.tvDisabled=u})})};function RS(a){return typeof a=="number"&&Number.isInteger(a)}var FM=["timeupdate","progress","play","seeked","stalled","waiting"],MS=["timeupdate","progress","loadeddata","playing","seeked"],Br=class{constructor(e){this.element=null;this.manifestUrlString="";this.source=null;this.manifest=null;this.bufferManagers=[];this.nativeBufferManagers=[];this.subscription=new T.Subscription;this.subscriptionRemovable=new T.SubscriptionRemovable;this.representationSubscription=new T.Subscription;this.forceEnded$=new T.Subject;this.destroyController=new be;this.state$=new ee("none");this.currentVideoRepresentation$=new T.ValueSubject(void 0);this.currentVideoRepresentationInit$=new T.ValueSubject(void 0);this.currentAudioRepresentation$=new T.ValueSubject(void 0);this.currentVideoSegmentLength$=new T.ValueSubject(0);this.currentAudioSegmentLength$=new T.ValueSubject(0);this.error$=new T.Subject;this.manifestRequested=new T.Subject;this.manifestReceived=new T.Subject;this.firstBytesRequested=new T.Subject;this.firstBytesReceived=new T.Subject;this.lastConnectionType$=new T.ValueSubject(void 0);this.lastConnectionReused$=new T.ValueSubject(void 0);this.lastRequestFirstBytes$=new T.ValueSubject(void 0);this.lastConnectionMetrics$=new T.ValueSubject(void 0);this.lastDownloadMetrics$=new T.ValueSubject(void 0);this.currentLiveTextRepresentation$=new T.ValueSubject(null);this.isLive$=new T.ValueSubject(!1);this.isActiveLive$=new T.ValueSubject(!1);this.isLowLatency$=new T.ValueSubject(!1);this.liveDuration$=new T.ValueSubject(0);this.liveSeekableDuration$=new T.ValueSubject(0);this.liveAvailabilityStartTime$=new T.ValueSubject(0);this.liveStreamStatus$=new T.ValueSubject(void 0);this.currentBuffer$=new T.ValueSubject({from:0,to:0});this.bufferLength$=new T.ValueSubject(0);this.nativeBufferLength$=new T.ValueSubject(0);this.liveLatency$=new T.ValueSubject(void 0);this.liveLoadBufferLength$=new T.ValueSubject(0);this.livePositionFromPlayer$=new T.ValueSubject(0);this.currentStallDuration$=new T.ValueSubject(0);this.videoLastDataObtainedTimestamp$=new T.ValueSubject(0);this.fetcherRecoverableError$=new T.Subject;this.fetcherError$=new T.Subject;this.initRepresentations=(0,T.abortable)(this.destroyController.signal,async function*(e,t,i){this.tracer.log("initRepresentationsStart",(0,T.flattenObject)({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(),(0,T.assertNonNullable)(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));this.fetchManifest=(0,T.abortable)(this.destroyController.signal,async function*(){try{return yield this.fetcher.fetchManifest(this.manifestUrlString)}catch(e){(0,T.isNullable)(this.manifest)&&!this.bufferLength$.getValue()&&this.error$.next({id:"LoadManifest",category:T.ErrorCategory.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 Kn({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){this.tracer.log("initManifest"),this.state$.startTransitionTo("manifest_ready"),this.element=e,this.manifestUrlString=this.prepareManifestUrlString(t,i),this.manifest=await this.updateManifest(),this.manifest?.streams.video.length?this.state$.setState("manifest_ready"):this.error$.next({id:"NoRepresentations",category:T.ErrorCategory.PARSER,message:"No playable video representations"})}initBuffer(){(0,T.assertNonNullable)(this.element),this.state$.setState("running"),this.subscription.add((0,T.merge)(...FM.map(t=>(0,T.fromEvent)(this.element,t)),(0,T.fromEvent)((0,T.getWindow)(),"online"),(0,T.interval)(this.tuning.dash.tickMaintainInterval)).subscribe(()=>this.tick(),t=>this.error$.next({id:"DashVKPlayer",category:T.ErrorCategory.WTF,message:"Internal logic error",thrown:t})));let e=[...this.source?.activeSourceBuffers??[]];this.subscription.add((0,T.merge)(...e.map(t=>(0,T.fromEvent)(t,"updateend"))).subscribe(t=>this.reinitDecoderIfNeeded())),this.subscription.add((0,T.fromEvent)(this.element,"waiting").subscribe(t=>{this.stallWatchdogSubscription&&(this.stallWatchdogSubscription.unsubscribe(),this.subscriptionRemovable.remove(this.stallWatchdogSubscription)),this.stallWatchdogSubscription=(0,T.interval)(this.tuning.dash.stallWatchdogInterval).subscribe(()=>this.stallWatchdogIntervalCallback(),i=>this.error$.next({id:"StallWatchdogCallback",category:T.ErrorCategory.NETWORK,message:"Can't restore DASH after stall.",thrown:i})),this.subscriptionRemovable.add(this.stallWatchdogSubscription)}))}async switchRepresentation(e,t,i=!1){return{video:this.videoBufferManager,audio:this.audioBufferManager,text:null}[e]?.switchTo(t,i)}async seek(e,t=!1){(0,T.assertNonNullable)(this.element),(0,T.assertNonNullable)(this.videoBufferManager);let i;t||this.element.duration*1e3<=this.tuning.dashSeekInSegmentDurationThreshold||Math.abs(this.element.currentTime*1e3-e)<=this.tuning.dashSeekInSegmentAlwaysSeekDelta?i=e:i=Math.max(this.videoBufferManager.findSegmentStartTime(e)??e,this.audioBufferManager?.findSegmentStartTime(e)??e),this.warmUpMediaSourceIfNeeded(i),this.element.currentTime=i/1e3,F.browser.isSafari?(await this.audioBufferManager?.seek(i),await this.videoBufferManager.seek(i)):(await this.videoBufferManager.seek(i),await this.audioBufferManager?.seek(i)),this.tracer.log("seek",(0,T.flattenObject)({requestedPosition:e,forcePrecise:t,position:i}))}warmUpMediaSourceIfNeeded(e=this.element?.currentTime){(0,T.isNonNullable)(this.element)&&(0,T.isNonNullable)(this.source)&&(0,T.isNonNullable)(e)&&this.isStreamEnded&&this.element.duration*1e3-e>this.tuning.dash.seekBiasInTheEnd&&this.nativeBufferManagers.forEach(t=>t.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&&(0,T.getWindow)().clearTimeout(this.timeoutSourceOpenId),this.destroyController.abort(),this.fetcher.destroy(),this.stop(),(0,T.isNonNullable)(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((0,T.isNullable)(this.element)||!t.length)return;let i=this.element.currentTime*1e3;this.element.readyState<3&&t.some(r=>i>=r.from&&i<=r.to)&&(e?await this.seek(i):this.element.currentTime=this.element.currentTime)}async stallWatchdogIntervalCallback(){(0,T.assertNonNullable)(this.element),(0,T.assertNonNullable)(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",(0,T.flattenObject)(i))}isStallExceeded(e){let{crashOnStallTimeout:t,crashOnStallTWithoutDataTimeout:i}=this.tuning.dash,r=(0,T.now)(),s=100,n=this.videoBufferManager?.lastDataObtainedTimestamp??0;this.videoLastDataObtainedTimestamp$.next(n);let o=this.audioBufferManager?.lastDataObtainedTimestamp??0,u=this.videoBufferManager?.getForwardPlaybackBufferDuration()??0,c=this.audioBufferManager?.getForwardPlaybackBufferDuration()??0,d=(0,T.isNonNullable)(this.videoBufferManager)&&u<s&&r-n>i,l=(0,T.isNonNullable)(this.audioBufferManager)&&c<s&&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((0,T.isNullable)(e))return null;let t=this.parseManifest(e);if(!t)return null;let i=this.getResultManifest(t);return this.tracer.log("updateManifestEnd",(0,T.flattenObject)(i)),i}parseManifest(e){try{return Zn(e??"",this.manifestUrlString)}catch(t){let i=Qn(e)??{id:"ManifestParsing",category:T.ErrorCategory.PARSER,message:"Failed to parse MPD manifest",thrown:t};this.error$.next(i)}}getResultManifest(e){let t={text:e.streams.text,video:[],audio:[]},i=(o,u,c)=>!!(this.element?.canPlayType?.(u)&&ot()?.isTypeSupported?.(`${u}; codecs="${c}"`)||o==="text"),r,s;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"&&(s=ao(l),d=s[0]),o==="video"&&(r=ro(l),this.forceVideoCodec&&(0,$S.default)(r,this.forceVideoCodec)?d=this.forceVideoCodec:d=r[0]),d&&(t[o]=c.filter(({codecs:p})=>vi(p)===d))}else{let l=new Set(c.map(({codecs:p})=>p));d=io(l),d&&(t[o]=c.filter(({codecs:p})=>p.startsWith(d)))}if(o==="video"){let l=this.tuning.preferHDR,p=t.video.some(g=>g.hdr),m=t.video.some(g=>!g.hdr);F.display.isHDR&&l&&p?t.video=t.video.filter(g=>g.hdr):m&&(t.video=t.video.filter(g=>!g.hdr));let{videoStreamRepresentaionsFilter:f}=this.tuning.dash;f.length&&uo(t,f)}}let n={...e,streams:t};return this.tuning.dash.codecsPrioritizeEnabled&&(n.codecs={video:r,audio:s}),n}stopStallWatchdogSubscription(){this.stallWatchdogSubscription?.unsubscribe(),this.currentStallDuration$.next(0)}createBuffers(e,t,i,r){(0,T.assertNonNullable)(this.manifest),(0,T.assertNonNullable)(this.element);let s=c=>{this.representationSubscription.add((0,T.fromEvent)(c,"error").pipe((0,T.filter)(d=>!!this.element?.played.length)).subscribe(d=>{this.error$.next({id:"VideoSource",category:T.ErrorCategory.VIDEO_PIPELINE,message:"Unexpected video source error",thrown:d})}))};this.source=Js();let n=(0,T.getWindow)().document,o=n.createElement("source");if(s(o),o.src=URL.createObjectURL(this.source),this.element.appendChild(o),mr())if(r){let c=n.createElement("source");s(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 ps(this.source),this.videoBufferManager=ds.getBufferManager("video",this.videoNativeBufferManager,u,e),this.bufferManagers=[this.videoBufferManager],this.nativeBufferManagers=[this.videoNativeBufferManager],(0,T.isNonNullable)(i)){this.audioNativeBufferManager=new ps(this.source);let c=this.manifest.streams.audio.reduce((d,l)=>[...d,...l.representations],[]);this.audioBufferManager=ds.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=>{e&&(this.timeoutSourceOpenId=(0,T.getWindow)().setTimeout(()=>{if(this.isStreamNotOpen){t();return}this.error$.next({id:"OpenOfStream",category:T.ErrorCategory.VIDEO_PIPELINE,message:"Failed to open MediaSource",thrown:new Error("Timeout reject when wait sourceopen event"),traceAsLog:!0})},this.tuning.dash.sourceOpenTimeout)),this.source?.addEventListener("sourceopen",()=>{this.timeoutSourceOpenId&&(0,T.getWindow)().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((0,T.merge)(...this.bufferManagers.map(e=>e.error$)).subscribe(this.error$)),(0,T.assertNonNullable)(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((0,T.merge)(...MS.map(e=>(0,T.fromEvent)(this.element,e))).pipe((0,T.map)(e=>this.videoBufferManager?.getPlaybackBufferState()),(0,T.filter)(T.isNonNullable),(0,T.map)(({from:e,to:t})=>({from:e/1e3,to:t/1e3}))).subscribe(this.currentBuffer$)),this.representationSubscription.add((0,T.merge)(...MS.map(e=>(0,T.fromEvent)(this.element,e))).pipe((0,T.map)(e=>Math.min(this.videoBufferManager?.getForwardPlaybackBufferDuration()??0,this.audioBufferManager?.getForwardPlaybackBufferDuration()??0,this.audioBufferManager?.getForwardPlaybackBufferDuration()??0)),(0,T.filterChanged)()).subscribe(this.bufferLength$)),this.representationSubscription.add(this.nativeBufferLength$.pipe((0,T.filter)(e=>e>this.tuning.dash.bufferEmptinessTolerance)).subscribe(e=>this.stopStallWatchdogSubscription()))}initTracerSubscription(){let e=(0,T.getTraceSubscriptionMethod)(this.tracer.error.bind(this.tracer));this.subscription.add(this.error$.subscribe(e("error")))}async tick(){if((0,T.isNullable)(this.element)||(0,T.isNullable)(this.videoBufferManager)||this.isStreamNotOpen)return;let e=this.element.currentTime*1e3,i=(this.videoNativeBufferManager?.getBufferState()??[]).find(r=>e>=r.from&&e<=r.to);this.nativeBufferLength$.next(i?i.to-e:0),await this.videoBufferManager.maintain(e),await this.audioBufferManager?.maintain(e)}};var de=require("@vkontakte/videoplayer-shared/es2024");var co=class extends Br{constructor(e){super(e)}prepareManifestUrlString(e,t){return e}initRepresentationSubscriptions(){super.initRepresentationSubscriptions(),this.initDisableStallWatchdogSubscription(),this.initEndOfVideoSubscription()}setSourceDuration(){(0,de.assertNonNullable)(this.manifest),(0,de.assertNonNullable)(this.source);let e=[this.manifest.duration??0,...(0,ml.default)((0,ml.default)([...this.manifest.streams.audio,...this.manifest.streams.video],t=>t.representations),t=>{let i=[];return t.duration&&i.push(t.duration),Be(t.segmentReference)&&t.segmentReference.totalSegmentsDurationMs&&i.push(t.segmentReference.totalSegmentsDurationMs),i})];this.source.duration=Math.max(...e)/1e3}async restoreAfterDeepStall(e){(0,de.assertNonNullable)(this.element);let t=this.element.currentTime*1e3;await Promise.all([this.videoBufferManager?.maintain(t),this.audioBufferManager?.maintain(t)]),e.position=t}initDisableStallWatchdogSubscription(){(0,de.assertNonNullable)(this.element);let e=(0,de.merge)((0,de.fromEvent)(this.element,"ended"),this.forceEnded$),t=this.nativeBufferLength$.pipe((0,de.filter)(i=>i>this.tuning.dash.bufferEmptinessTolerance));this.representationSubscription.add((0,de.merge)(e,t).subscribe(i=>this.stopStallWatchdogSubscription()))}initEndOfVideoSubscription(){let e=(0,de.merge)(...this.bufferManagers.map(s=>s.fullyBuffered$)).pipe((0,de.map)(()=>this.bufferManagers.every(s=>s.fullyBuffered$.getValue()))),t=(0,de.merge)(...this.bufferManagers.map(s=>s.onLastSegment$)).pipe((0,de.map)(()=>this.bufferManagers.some(s=>s.onLastSegment$.getValue()))),i=(0,de.combine)({allBuffersFull:e,someBufferEnded:t}).pipe((0,de.filterChanged)(),(0,de.map)(({allBuffersFull:s,someBufferEnded:n})=>s&&n),(0,de.filter)(s=>s)),r=()=>{try{this.source?.endOfStream()}catch(s){this.error$.next({id:"EndOfStream",category:de.ErrorCategory.VIDEO_PIPELINE,message:"Failed to end MediaSource stream",thrown:s})}};this.representationSubscription.add((0,de.merge)(this.forceEnded$,i).pipe((0,de.filter)(s=>(0,de.isNonNullable)(this.source)&&this.source.readyState==="open"&&Array.from(this.source.sourceBuffers).every(n=>!n.updating))).subscribe(r))}};var hs=class extends Hi{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((0,Vr.filterChanged)(),(0,Vr.filter)(s=>(0,Vr.isNonNullable)(s))).subscribe(s=>{let n=this.player.calculateDurationFromSegments(s);n&&this.params.output.duration$.next(n/1e3)},r))}getPlayer(){return new co({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)}};var he=require("@vkontakte/videoplayer-shared/es2024");var ms=require("@vkontakte/videoplayer-shared/es2024"),Ei=class{constructor(e){this.prevReported=void 0;this.pastMeasures=[];this.takenMeasures=0;this.measuresCursor=0;this.params=e,this.pastMeasures=Array(e.deviationDepth),this.smoothed=this.prevReported=e.initial,this.smoothed$=new ms.ValueSubject(e.initial),this.debounced$=new ms.ValueSubject(e.initial);let t=e.label??"value"+Math.random().toString(16).substring(2,6);this.rawSeries$=new We(`raw_${t}`),this.smoothedSeries$=new We(`smoothed_${t}`),this.reportedSeries$=new We(`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),s=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>s||this.smoothed<n)&&((0,ms.isNullable)(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 lo=class extends Ei{constructor(e){super(e),this.slow=this.fast=e.initial}updateSmoothedValue(e){this.slow=Yt(this.slow,e,this.params.emaAlphaSlow),this.fast=Yt(this.fast,e,this.params.emaAlphaFast);let t=this.params.fastDirection>0?Math.max:Math.min;this.smoothed=t(this.slow,this.fast)}};var po=class extends Ei{constructor(e){super(e),this.emaSmoothed=e.initial}updateSmoothedValue(e){let t=qc(this.pastMeasures,this.takenMeasures);this.emaSmoothed=Yt(this.emaSmoothed,e,this.params.emaAlpha);let i=Pg(this.pastMeasures,this.takenMeasures,this.measuresCursor-1,this.params.basisTrendChangeCount);this.smoothed=i?this.emaSmoothed:t}};var ho=class extends Ei{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?Yt(this.smoothed,t,this.params.emaAlpha):t}};var Jt=class{static getSmoothedValue(e,t,i){return i.type==="TwoEma"?new lo({initial:e,emaAlphaSlow:i.emaAlphaSlow,emaAlphaFast:i.emaAlphaFast,changeThreshold:i.changeThreshold,fastDirection:t,deviationDepth:i.deviationDepth,deviationFactor:i.deviationFactor,label:"throughput"}):new po({initial:e,emaAlpha:i.emaAlpha,basisTrendChangeCount:i.basisTrendChangeCount,changeThreshold:i.changeThreshold,deviationDepth:i.deviationDepth,deviationFactor:i.deviationFactor,label:"throughput"})}static getLiveBufferSmoothedValue(e,t){return new ho({initial:e,label:"liveEdgeDelay",...t})}};var z=require("@vkontakte/videoplayer-shared/es2024");var _r=(a,e)=>{a&&a.playbackRate!==e&&(a.playbackRate=e)};var mo=require("@vkontakte/videoplayer-shared/es2024");var fs=class a{constructor(e,t){this.currentRepresentation$=new mo.ValueSubject(null);this.maxRepresentations=4;this.representationsCursor=0;this.representations=[];this.currentSegment=null;this.getCurrentPosition=t.getCurrentPosition,this.processStreams(e)}updateLive(e){this.processStreams(e?.streams.text)}seekLive(e){this.processStreams(e)}maintain(e=this.getCurrentPosition()){if(!(0,mo.isNullable)(e))for(let t of this.representations)for(let i of t){let r=i.segmentReference,s=r.segments.length,n=r.segments[0].time.from,o=r.segments[s-1].time.to;if(e<n||e>o)continue;let u=r.segments.find(c=>c.time.from<=e&&c.time.to>=e);!u||this.currentSegment?.time.from===u.time.from&&this.currentSegment.time.to===u.time.to||(this.currentSegment=u,this.currentRepresentation$.next({...i,label:"Live Text",language:"ru",isAuto:!0,url:new URL(u.url,r.baseUrl).toString()}))}}destroy(){this.currentRepresentation$.next(null),this.currentSegment=null,this.representations=[]}processStreams(e){for(let t of e??[]){let i=a.filterRepresentations(t.representations);if(i){this.representations[this.representationsCursor]=i,this.representationsCursor=(this.representationsCursor+1)%this.maxRepresentations;break}}}static isSupported(e){return!!e?.some(t=>a.filterRepresentations(t.representations))}static filterRepresentations(e){return e?.filter(t=>t.kind==="text"&&"segmentReference"in t&&Be(t.segmentReference))}};var fo=class extends Br{constructor(t){super(t);this.liveStreamEndTimestamp=0;this.liveWasInterrupted=!1;this.liveBuffer=Jt.getLiveBufferSmoothedValue(this.tuning.dashCmafLive.lowLatency.maxTargetOffset,{...t.tuning.dashCmafLive.lowLatency.bufferEstimator})}async seek(t){(0,z.assertNonNullable)(this.element),this.updateManifestUrlWithTimeOffset(t),this.manifest=await this.updateManifest(),await this.forcePositionToRepresentationInitialTime()}initBuffer(){super.initBuffer(),this.forcePositionToRepresentationInitialTime()}async forcePositionToRepresentationInitialTime(){let i=this.videoBufferManager?.getRepresentationInitialTime()??0;await super.seek(i,!1)}async tick(){await super.tick();let t=(this.element?.currentTime??0)*1e3;this.liveTextManager?.maintain(t)}setSourceDuration(){(0,z.assertNonNullable)(this.source),this.source.duration=Number.MAX_SAFE_INTEGER}isStallExceeded(t){let{keepSilentStallWatchdogWhenNotActive:i}=this.tuning.dashCmafLive,s=this.liveStreamStatus$.getValue()==="active";return(!i||s)&&super.isStallExceeded(t)}async restoreAfterDeepStall(t){let{liveStallReinitInterval:i}=this.tuning.dash,{keepSilentStallWatchdogWhenNotActive:r}=this.tuning.dashCmafLive,s=this.currentStallDuration$.getValue(),o=this.liveStreamStatus$.getValue()==="active";if(s%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:z.ErrorCategory.VIDEO_PIPELINE,message:"stallIntervalCallback failed",thrown:c})})}}async updateManifest(){let t=await super.updateManifest();if((0,z.isNullable)(t))return null;if((0,z.isNullable)(t.live))return this.error$.next({id:"ManifestParsing",category:z.ErrorCategory.PARSER,message:"MPD doesnt contain live section for live stream"}),null;this.isLive$.next(!0);let{availabilityStartTime:i,latestSegmentPublishTime:r,streamIsUnpublished:s,streamIsAlive:n}=t.live,o=(t.duration??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=s?"unpublished":"unexpectedly_down"),this.liveStreamStatus$.next(u),this.bufferManagers.forEach(d=>d.updateManifest(t)),this.liveTextManager?.updateLive(t),n&&this.liveWasInterrupted){this.liveWasInterrupted=!1,this.stopStallWatchdogSubscription();let d=this.normalizeLiveOffset(-1*this.livePositionFromPlayer$.getValue()*1e3);this.seek(d).catch(l=>{this.error$.next({id:"updateManifest",category:z.ErrorCategory.VIDEO_PIPELINE,message:"seekLive after stream restore failed",thrown:l})})}return t}prepareManifestUrlString(t,i){return xe(t,i,2)}updateManifestUrlWithTimeOffset(t){let i=this.liveStreamStatus$.getValue()!=="active"?(0,z.now)()-this.liveStreamEndTimestamp:0,r=this.normalizeLiveOffset(t+i);this.isActiveLive$.next(r===0),this.manifestUrlString=xe(this.manifestUrlString,r,2)}createBuffers(t,i,r,s){(0,z.assertNonNullable)(this.manifest),super.createBuffers(t,i,r,s),fs.isSupported(this.manifest.streams.text)&&!this.isLowLatency$.getValue()&&(this.liveTextManager=new fs(this.manifest.streams.text,t))}initRepresentationSubscriptions(){(0,z.assertNonNullable)(this.element),(0,z.assertNonNullable)(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),(0,z.isNonNullable)(this.liveTextManager)&&this.representationSubscription.add(this.liveTextManager.currentRepresentation$.subscribe(this.currentLiveTextRepresentation$))}initStreamDurationOnPauseSubscription(){(0,z.assertNonNullable)(this.element);let{liveUpdateInterval:t}=this.tuning.dash,i=()=>(0,z.interval)(t).subscribe(async r=>{let s=oi(this.manifestUrlString,2);this.manifestUrlString=xe(this.manifestUrlString,s+t,2),this.liveStreamStatus$.getValue()==="active"&&(this.manifest=await this.updateManifest())});this.representationSubscription.add((0,z.fromEvent)(this.element,"pause").subscribe(r=>{this.livePauseWatchdogSubscription=i(),this.representationSubscription.add(this.livePauseWatchdogSubscription)})),this.representationSubscription.add((0,z.fromEvent)(this.element,"play").subscribe(r=>this.livePauseWatchdogSubscription?.unsubscribe()))}initLiveDurationSubscriptions(t){this.representationSubscription.add(this.liveDuration$.pipe((0,z.filterChanged)()).subscribe(i=>this.liveStreamEndTimestamp=(0,z.now)())),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((0,z.combine)({isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe((0,z.map)(({isActiveLive:t,isLowLatency:i})=>t&&i),(0,z.filterChanged)(),(0,z.filter)(t=>!this.isManualDecreasePlaybackInLive())).subscribe(t=>_r(this.element,1))),this.representationSubscription.add((0,z.combine)({liveBuffer:this.liveBuffer.smoothed$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe((0,z.filter)(t=>!this.isManualDecreasePlaybackInLive())).subscribe(({liveBuffer:t,isActiveLive:i,isLowLatency:r})=>{if(!r||!i)return;let s=this.tuning.dashCmafLive.lowLatency.maxTargetOffset,n=this.tuning.dashCmafLive.lowLatency.maxTargetOffsetDeviation,o=this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup,u=t-s,c=1;Math.abs(u)>n&&(c=1+Math.sign(u)*o),_r(this.element,c)}))}initLiveBufferInfoSubscriptions(t,i){this.representationSubscription.add((0,z.combine)({bufferLength:this.bufferLength$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe((0,z.filter)(({bufferLength:r,isActiveLive:s,isLowLatency:n})=>s&&n&&!!r),(0,z.map)(({bufferLength:r})=>r)).subscribe(this.liveBuffer)),this.representationSubscription.add(this.bufferLength$.subscribe(r=>{let s=0;if(r){let n=(this.element?.currentTime??0)*1e3;s=Math.min(...i.map(u=>u.getLiveSegmentsToLoadState(this.manifest)?.to??n))-n}this.liveLoadBufferLength$.getValue()!==s&&this.liveLoadBufferLength$.next(s)})),this.representationSubscription.add((0,z.combine)({isLive:this.isLive$,rtt:this.throughputEstimator.rtt$,bufferLength:this.bufferLength$,segmentServerLatency:t.currentLiveSegmentServerLatency$}).pipe((0,z.filter)(({isLive:r})=>r),(0,z.filterChanged)((r,s)=>s.bufferLength<r.bufferLength),(0,z.map)(({rtt:r,bufferLength:s,segmentServerLatency:n})=>{let o=oi(this.manifestUrlString,2);return(r/2+s+n+o)/1e3})).subscribe(this.liveLatency$))}initLiveMaintainSubscription(t){let i=0;this.representationSubscription.add((0,z.combine)({liveLoadBufferLength:this.liveLoadBufferLength$,bufferLength:this.bufferLength$}).pipe((0,z.throttle)(this.tuning.dash.liveUpdateInterval)).subscribe(async({liveLoadBufferLength:r,bufferLength:s})=>{(0,z.assertNonNullable)(this.element);let n=this.element.playbackRate,o=oi(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:s,m=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),f=u<=this.tuning.live.activeLiveDelay;this.isActiveLive$.next(f);let g="none";if(m?g="active_low_latency":this.isLowLatency$.getValue()&&f?(t.forEach(v=>v.proceedLowLatencyLive()),g="active_low_latency"):o!==0&&p<c?g="live_forward_buffering":p<c+l&&(g="live_with_target_offset"),isFinite(r)&&(i=r>i?r:i),g==="live_forward_buffering"||g==="live_with_target_offset"){let v=i-(c+d),S=this.normalizeLiveOffset(Math.trunc(o+v/n)),E=Math.abs(S-o),A=0;!r||E<=this.tuning.dashCmafLive.offsetCalculationError?A=o:S>0&&E>this.tuning.dashCmafLive.offsetCalculationError&&(A=S),this.manifestUrlString=xe(this.manifestUrlString,A,2)}(g==="live_with_target_offset"||g==="live_forward_buffering")&&(i=0,this.manifest=await this.updateManifest())},r=>{this.error$.next({id:"updateLive",category:z.ErrorCategory.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 Or=class extends Hi{constructor(e){super(e),this.textTracksManager.destroy()}getPlayer(){return new fo({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:s,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 he.ValueSubject(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((0,he.filterChanged)()).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(s.isLowLatency.stateChangeEnded$.pipe((0,he.map)(u=>u.to)).subscribe(this.player.isLowLatency$)).add((0,he.combine)({liveBufferTime:i.liveBufferTime$,liveAvailabilityStartTime:this.player.liveAvailabilityStartTime$}).pipe((0,he.map)(({liveBufferTime:u,liveAvailabilityStartTime:c})=>u&&c?u+c:void 0)).subscribe(i.liveTime$)).add((0,he.combine)({liveDuration:this.player.liveDuration$,liveStreamStatus:this.player.liveStreamStatus$,playbackRate:(0,he.merge)(r.playbackRateState$,new he.ValueSubject(1))}).pipe((0,he.filter)(({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||(0,he.isNullable)(d)||(t=u-d)})).add((0,he.combine)({time:i.liveBufferTime$,liveDuration:this.player.liveDuration$,playbackRate:(0,he.merge)(r.playbackRateState$,new he.ValueSubject(1))}).pipe((0,he.filterChanged)((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||(0,he.isNullable)(u)||(0,he.isNullable)(c))return;let m=-1*(c-u-t);i.position$.next(Math.min(m,0))})).add(this.player.currentLiveTextRepresentation$.subscribe(u=>{if(u){let c=Eg(u);this.params.output.availableTextTracks$.next([c])}})),this.params.tuning.dashCmafLive.externalStopControl||this.subscription.add(this.player.liveStreamStatus$.pipe((0,he.filter)(u=>(0,he.isNonNullable)(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)})}};var U=require("@vkontakte/videoplayer-shared/es2024");var VS=j(Ke(),1),gl=j(Ca(),1);var wi=(a,e,t=0)=>{for(let i=0;i<a.length;i++)if(a.start(i)*1e3-t<=e&&a.end(i)*1e3+t>e)return!0;return!1};var y=require("@vkontakte/videoplayer-shared/es2024");var bo=j(Ke(),1),Xi=j(gt(),1),go=j(Ca(),1);var BS=j(Ec(),1);var xi=require("@vkontakte/videoplayer-shared/es2024");var qM=18,CS=!1;try{CS=F.browser.isSafari&&!!F.browser.safariVersion&&F.browser.safariVersion<=qM}catch(a){console.error(a)}var fl=class{constructor(e,t=!1){this.bufferFull$=new xi.Subject;this.error$=new xi.Subject;this.queue=[];this.currentTask=null;this.destroyed=!1;this.abortRequested=!1;this.isAbortFixEnabled=!1;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:xi.ErrorCategory.VIDEO_PIPELINE,message:"Buffer appending or removal failed",thrown:e})}};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 s={operation:"remove",from:e,to:t,signal:i,callback:r};this.queue.unshift(s),this.pull()})}async abort(e){return new Promise(t=>{let i,r=s=>{this.abortRequested=!1,t(s)};CS&&e?i={operation:"safariAbort",init:e,callback:r}:i={operation:"abort",callback:r};for(let{callback:s}of this.queue)s(!1);this.abortRequested=!0,i&&(this.queue=[i]),this.pull()})}destroy(){this.destroyed=!0,this.buffer.removeEventListener("updateend",this.completeTask),this.queue=[],this.currentTask=null;try{this.buffer.abort()}catch(e){if(!(e instanceof DOMException&&e.name==="InvalidStateError"))throw e}}pull(){if((this.buffer.updating||this.currentTask||this.destroyed)&&!this.abortRequested)return;let e=this.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(r){r instanceof DOMException&&r.name==="QuotaExceededError"&&t==="append"?this.bufferFull$.next(this.currentTask.data.byteLength):r instanceof DOMException&&r.name==="InvalidStateError"||this.error$.next({id:`BufferTaskQueue:${t}`,category:xi.ErrorCategory.VIDEO_PIPELINE,message:"Buffer operation failed",thrown:r}),this.currentTask.callback(!1),this.currentTask=null}this.currentTask&&this.currentTask.operation==="abort"&&this.completeTask()}execute(e){let{operation:t}=e;switch(t){case"append":this.buffer.appendBuffer(e.data);break;case"remove":this.buffer.remove(e.from/1e3,e.to/1e3);break;case"abort":this.buffer.abort();break;case"safariAbort":{this.buffer.abort(),this.buffer.appendBuffer(e.init);break}default:(0,xi.assertNever)(t)}}},DS=fl;var bl=a=>{let e=0;for(let t=0;t<a.length;t++)e+=a.end(t)-a.start(t);return e*1e3};var w=require("@vkontakte/videoplayer-shared/es2024");var bs=class{constructor(e,t,i,{fetcher:r,tuning:s,getCurrentPosition:n,isActiveLowLatency:o,compatibilityMode:u=!1,manifest:c}){this.currentLiveSegmentServerLatency$=new w.ValueSubject(0);this.currentLowLatencySegmentLength$=new w.ValueSubject(0);this.currentSegmentLength$=new w.ValueSubject(0);this.onLastSegment$=new w.ValueSubject(!1);this.fullyBuffered$=new w.ValueSubject(!1);this.playingRepresentation$=new w.ValueSubject(void 0);this.playingRepresentationInit$=new w.ValueSubject(void 0);this.error$=new w.Subject;this.gaps=[];this.subscription=new w.Subscription;this.allInitsLoaded=!1;this.activeSegments=new Set;this.downloadAbortController=new be;this.switchAbortController=new be;this.destroyAbortController=new be;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=(0,w.abortable)(this.destroyAbortController.signal,async function*(e){let t=this.representations.get(e);(0,w.assertNonNullable)(t,`Cannot find representation ${e}`),this.playingRepresentationId=e,this.downloadingRepresentationId=e,this.sourceBuffer=this.mediaSource.addSourceBuffer(`${t.mime}; codecs="${t.codecs}"`),this.sourceBufferTaskQueue=new DS(this.sourceBuffer,this.tuning.dash.useAbortMSEFix),this.subscription.add((0,w.fromEvent)(this.sourceBuffer,"updateend").subscribe(()=>{this.checkEjectedSegments(),this.maintain()},n=>{let o,u=this.mediaSource.readyState;u!=="open"&&(o={id:`SegmentEjection_source_${u}`,category:w.ErrorCategory.VIDEO_PIPELINE,message:"Error when trying to clear segments ejected by browser",thrown:n}),o??={id:"SegmentEjection",category:w.ErrorCategory.VIDEO_PIPELINE,message:"Error when trying to clear segments ejected by browser",thrown:n},this.error$.next(o)})),this.subscription.add((0,w.fromEvent)(this.sourceBuffer,"error").subscribe(()=>this.error$.next({id:"SourceBuffer",category:w.ErrorCategory.VIDEO_PIPELINE,message:"SourceBuffer Error event fired"}))),this.subscription.add(this.sourceBufferTaskQueue.bufferFull$.subscribe(n=>{let o=this.getCurrentPosition();if(!this.sourceBuffer||!o||!fe(this.mediaSource,this.sourceBuffer))return;let u=Math.min(this.bufferLimit,bl(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),s=this.parsedInitData.get(t.id);(0,w.assertNonNullable)(i,"No init buffer for starting representation"),(0,w.assertNonNullable)(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(s))}.bind(this));this.switchTo=(0,w.abortable)(this.destroyAbortController.signal,async function*(e,t=!1){if(!fe(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);(0,w.assertNonNullable)(i,`No such representation ${e}`);let r=this.segments.get(e),s=this.initData.get(e);if((0,w.isNullable)(s)||(0,w.isNullable)(r)?yield this.loadInit(i,"high",!1):s instanceof Promise&&(yield s),r=this.segments.get(e),(0,w.assertNonNullable)(r,"No segments for starting representation"),s=this.initData.get(e),!(!s||!(s instanceof ArrayBuffer)||!this.sourceBuffer||!fe(this.mediaSource,this.sourceBuffer))){if(yield this.abort(),yield this.sourceBufferTaskQueue.append(s,this.downloadAbortController.signal),t)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e,yield this.dropBuffer();else{let n=this.getCurrentPosition();(0,w.isNonNullable)(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=(0,w.abortable)(this.destroyAbortController.signal,async function*(e,t=!1){if(!fe(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);(0,w.assertNonNullable)(i,`No such representation ${e}`);let r=this.segments.get(e),s=this.initData.get(e);if((0,w.isNullable)(s)||(0,w.isNullable)(r)?yield this.loadInit(i,"high",!1):s instanceof Promise&&(yield s),r=this.segments.get(e),(0,w.assertNonNullable)(r,"No segments for starting representation"),s=this.initData.get(e),!(!s||!(s instanceof ArrayBuffer)||!this.sourceBuffer||!fe(this.mediaSource,this.sourceBuffer)))if(yield this.abort(),yield this.sourceBufferTaskQueue.append(s,this.downloadAbortController.signal),t)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e,yield this.dropBuffer(),this.maintain();else{let n=this.getCurrentPosition();(0,w.isNonNullable)(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=(0,w.abortable)(this.destroyAbortController.signal,async function*(e){let t=(0,go.default)(e,u=>u.representations);if(!this.downloadingRepresentationId||!t.length)return;this.isSeekingLive=!0;for(let u of this.representations.keys()){let c=t.find(p=>p.id===u);c&&this.representations.set(u,c);let d=this.representations.get(u);if(!d||!lt(d.segmentReference)){this.isSeekingLive=!1;return}let l=this.getActualLiveStartingSegments(d.segmentReference);this.segments.set(d.id,l)}let i=this.switchingToRepresentationId??this.downloadingRepresentationId,r=this.representations.get(i);(0,w.assertNonNullable)(r,`Representation not found by id ${i}`);let s=this.segments.get(i);(0,w.assertNonNullable)(s,"No segments for starting representation");let n=this.initData.get(i);if((0,w.assertNonNullable)(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(s,r),yield this.sourceBufferTaskQueue.append(n,this.destroyAbortController.signal),this.isSeekingLive=!1}.bind(this));this.fetcher=r,this.tuning=s,this.compatibilityMode=u,this.forwardBufferTarget=s.dash.forwardBufferTargetAuto,this.getCurrentPosition=n,this.isActiveLowLatency=o,this.isLive=!!c?.live,this.baseUrls=c?.baseUrls??[],this.initData=new Map(i.map(d=>[d.id,null])),this.segments=new Map,this.parsedInitData=new Map,this.representations=new Map(i.map(d=>[d.id,d])),this.kind=e,this.mediaSource=t,this.sourceBuffer=null}switchToWithPreviousAbort(e,t=!1){!fe(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId||(this.switchAbortController.abort(),this.switchAbortController=new be,(0,w.abortable)(this.switchAbortController.signal,async function*(i,r=!1){this.switchingToRepresentationId=i;let s=this.representations.get(i);(0,w.assertNonNullable)(s,`No such representation ${i}`);let n=this.segments.get(i),o=this.initData.get(i);if((0,w.isNullable)(o)||(0,w.isNullable)(n)?yield this.loadInit(s,"high",!1):o instanceof Promise&&(yield o),n=this.segments.get(i),(0,w.assertNonNullable)(n,"No segments for starting representation"),o=this.initData.get(i),!(!(o instanceof ArrayBuffer)||!this.sourceBuffer||!fe(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();(0,w.isNonNullable)(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(){!(0,w.isNullable)(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 be,this.abortBuffer()}maintain(e=this.getCurrentPosition()){if((0,w.isNullable)(e)||(0,w.isNullable)(this.downloadingRepresentationId)||(0,w.isNullable)(this.playingRepresentationId)||(0,w.isNullable)(this.sourceBuffer)||!fe(this.mediaSource,this.sourceBuffer)||(0,w.isNonNullable)(this.switchingToRepresentationId)||this.isSeekingLive)return;let t=this.representations.get(this.downloadingRepresentationId),i=this.representations.get(this.playingRepresentationId),r=this.segments.get(this.downloadingRepresentationId),s=this.segments.get(this.playingRepresentationId);if((0,w.assertNonNullable)(t,`No such representation ${this.downloadingRepresentationId}`),(0,w.assertNonNullable)(i,`No such representation ${this.playingRepresentationId}`),(0,w.isNullable)(r)||(0,w.isNullable)(s))return;let n=r.find(p=>e>=p.time.from&&e<p.time.to);(0,w.isNonNullable)(n)&&isFinite(n.time.from)&&isFinite(n.time.to)&&this.currentSegmentLength$.next(n?.time.to-n.time.from);let o=e,u=100;if(this.playingRepresentationId!==this.downloadingRepresentationId){let p=this.getForwardBufferDuration(e),m=yi(i),f=yi(t),g=this.useSmartRepresentationSwitch&&this.tuning.dash.useNewRepresentationSwitch&&this.tuning.dash.useSmartRepresentationSwitch&&(0,w.isNonNullable)(m)&&(0,w.isNonNullable)(f)&&(0,w.isHigher)(m.quality,f.quality),v=this.useSmartRepresentationSwitch&&this.tuning.dash.useNewRepresentationSwitch&&this.tuning.dash.useDelayedRepresentationSwitch;if(g||v?o+=Math.min(p,this.tuning.dash.representationSwitchForwardBufferGap):n&&n.time.to-e<this.tuning.dash.maxSegmentDurationLeftToSelectNextSegment&&p>=n.time.to-e+u&&(o=n?n.time.to+u:-1/0),this.tuning.dash.useNewRepresentationSwitch){let E=[...this.segments.entries()].map(([A,x])=>{let D=x.find(N=>e>=N.time.from&&e<N.time.to);return{representationId:A,status:D?.status}}).find(A=>A.status==="fed")?.representationId;E&&(this.playingRepresentationId=E,this.playingRepresentation$.next(this.playingRepresentationId),this.playingRepresentationInit$.next(this.parsedInitData.get(this.playingRepresentationId)))}}if(isFinite(this.bufferLimit)&&bl(this.sourceBuffer.buffered)>=this.bufferLimit){let p=this.getForwardBufferDuration(e),m=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(e,1/0,p<m).catch(f=>{this.handleAsyncError(f,"pruneBuffer")});return}let d=[];if(!this.activeSegments.size&&(d=this.selectForwardBufferSegments(r,t.segmentReference.type,o),d.length)){let p="auto";if(this.tuning.dash.useFetchPriorityHints&&n)if((0,bo.default)(d,n))p="high";else{let m=(0,Xi.default)(d,0);m&&m.time.from-n.time.to>=this.forwardBufferTarget/2&&(p="low")}this.loadSegments(d,t,p).catch(m=>{this.handleAsyncError(m,"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 s of e)Math.trunc(s.time.from-i)>0&&this.gaps.push({representation:t.id,from:i,to:s.time.from+r,persistent:!0}),i=s.time.to;(0,w.isNonNullable)(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=[],s=0,n=t.length-1;do r.unshift(t[n]),s+=t[n].time.to-t[n].time.from,n--;while(s<i&&n>=0);return this.liveInitialAdditionalOffset=s-i,this.isActiveLowLatency()?[r[0]]:r}getLiveSegmentsToLoadState(e){let t=e?.streams[this.kind];if(!t)return;let i=(0,go.default)(t,s=>s.representations).find(s=>s.id===this.downloadingRepresentationId);if(!i)return;let r=this.segments.get(i.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(i=>!i.length))return;let t=(0,go.default)(e.streams[this.kind],i=>i.representations);for(let i of t){if(!i||!lt(i.segmentReference))return;let r=i.segmentReference.segments.map(c=>({...c,status:"none",size:void 0})),s=100,n=this.segments.get(i.id)??[],o=(0,Xi.default)(n,-1)?.time.to??0,u=r?.findIndex(c=>o>=c.time.from+s&&o<=c.time.to+s);if(u===-1){this.liveUpdateSegmentIndex=0;let c=this.getActualLiveStartingSegments(i.segmentReference);this.segments.set(i.id,c)}else{let c=r.slice(u+1);this.segments.set(i.id,[...n,...c])}}}proceedLowLatencyLive(){let e=this.downloadingRepresentationId;(0,w.assertNonNullable)(e);let t=this.segments.get(e);if(t?.length){let i=t[t.length-1];this.updateLowLatencyLiveIfNeeded(i)}}calculateDurationFromSegments(){if(!this.playingRepresentationId)return 0;let e=this.segments.get(this.playingRepresentationId);return(e?(0,Xi.default)(e,-1)?.time.to:0)||0}setSmartRepresentationSwitch(e){this.useSmartRepresentationSwitch=e}updateLowLatencyLiveIfNeeded(e){let t=0;for(let i of this.representations.values()){let r=i.segmentReference;if(!lt(r))return;let s=this.segments.get(i.id)??[],n=s.find(u=>Math.floor(u.time.from)===Math.floor(e.time.from));if(n&&!isFinite(n.time.to)&&(n.time.to=e.time.to,t=n.time.to-n.time.from),!!!s.find(u=>Math.floor(u.time.from)===Math.floor(e.time.to))&&this.isActiveLowLatency()){let u=Math.round(e.time.to*r.timescale/1e3).toString(10),c=Rt(r.segmentTemplateUrl,{segmentTime:u});s.push({status:"none",time:{from:e.time.to,to:1/0},url:c})}}this.currentLowLatencySegmentLength$.next(t)}findSegmentStartTime(e){let t=this.switchingToRepresentationId??this.downloadingRepresentationId??this.playingRepresentationId;if(!t)return;let i=this.segments.get(t);return i?i.find(s=>s.time.from<=e&&s.time.to>=e)?.time.from??void 0:void 0}setTarget(e){this.forwardBufferTarget=e}setPreloadOnly(e){this.preloadOnly=e}destroy(){if(this.initData.clear(),this.segments.clear(),this.parsedInitData.clear(),this.representations.clear(),this.sourceBufferTaskQueue?.destroy(),this.gapDetectionIdleCallback&&Qi&&Qi(this.gapDetectionIdleCallback),this.initLoadIdleCallback&&Qi&&Qi(this.initLoadIdleCallback),this.subscription.unsubscribe(),this.sourceBuffer)try{this.mediaSource.removeSourceBuffer(this.sourceBuffer)}catch(e){if(!(e instanceof DOMException&&e.name==="NotFoundError"))throw e}this.sourceBuffer=null,this.downloadAbortController.abort(),this.switchAbortController.abort(),this.destroyAbortController.abort(),window.clearTimeout(this.loadByteRangeSegmentsTimeoutId)}selectForwardBufferSegments(e,t,i){return this.isLive?this.selectForwardBufferSegmentsLive(e,i):this.selectForwardBufferSegmentsRecord(e,t,i)}selectForwardBufferSegmentsLive(e,t){let i=e.findIndex(r=>t>=r.time.from&&t<r.time.to);return this.playingRepresentationId!==this.downloadingRepresentationId&&(this.liveUpdateSegmentIndex=i),this.liveUpdateSegmentIndex<e.length?e.slice(this.liveUpdateSegmentIndex++):[]}selectForwardBufferSegmentsRecord(e,t,i){let r=this.getForwardBufferDuration(i),s=e.findIndex(({status:p,time:{from:m,to:f}},g)=>{let v=m<=i&&f>=i,S=m>i||v||g===0&&i===0,E=Math.min(this.forwardBufferTarget,this.bufferLimit),A=this.preloadOnly&&m<=i+E||r<E&&f-m>=E||f<=i+E;return(p==="none"||p==="partially_ejected"&&S&&A&&this.sourceBuffer&&fe(this.mediaSource,this.sourceBuffer)&&!(wi(this.sourceBuffer.buffered,m)&&wi(this.sourceBuffer.buffered,f)))&&S&&A});if(s===-1)return[];if(t!=="byteRange")return e.slice(s,s+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=s;p<n.length&&(o<=d||u<=l);p++){let m=n[p];if(o+=m.byte.to+1-m.byte.from,u+=m.time.to+1-m.time.from,m.status==="none"||m.status==="partially_ejected")c.push(m);else break}return c}async loadSegments(e,t,i="auto"){lt(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:s,url:n,signal:o,onProgress:u,onProgressTasks:c}=this.prepareTemplateFetchSegmentParams(e,t);this.failedDownloads&&o&&(await(0,w.abortable)(o,async function*(){let d=(0,w.getExponentialDelay)(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:s,signal:o,onProgress:u,priority:i,isLowLatency:this.isActiveLowLatency(),bufferOptimisation:this.tuning.dash.fetcherBufferOptimisation});if(this.lastDataObtainedTimestampMs=(0,w.now)(),!d)return;let l=new DataView(d),p=Ki(t.mime);if(!isFinite(r.segment.time.to)){let g=t.segmentReference.timescale;r.segment.time.to=p.getChunkEndTime(l,g)}u&&r.feedingBytes&&c?await Promise.all(c):await this.sourceBufferTaskQueue.append(l,o);let{serverDataReceivedTimestamp:m,serverDataPreparedTime:f}=p.getServerLatencyTimestamps(l);m&&f&&this.currentLiveSegmentServerLatency$.next(f-m),r.segment.status="downloaded",this.onSegmentFullyAppended(r,t.id),this.failedDownloads=0}catch(d){this.abortActiveSegments([e]),(0,w.isAbortError)(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())lt(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:s,signal:n,onProgress:o}=this.prepareByteRangeFetchSegmentParams(e,t);this.failedDownloads&&n&&(await(0,w.abortable)(n,async function*(){let u=(0,w.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(c=>{this.loadByteRangeSegmentsTimeoutId=window.setTimeout(c,u),(0,w.fromEvent)(window,"online").pipe((0,w.once)()).subscribe(()=>{c(),window.clearTimeout(this.loadByteRangeSegmentsTimeoutId)})})}.bind(this))(),n.aborted&&this.abortActiveSegments(e));try{await this.fetcher.fetch(s,{range:r,onProgress:o,signal:n,priority:i,bufferOptimisation:this.tuning.dash.fetcherBufferOptimisation}),this.lastDataObtainedTimestampMs=(0,w.now)(),this.failedDownloads=0}catch(u){this.abortActiveSegments(e),(0,w.isAbortError)(u)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}}prepareByteRangeFetchSegmentParams(e,t){if(lt(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:s}=this.downloadAbortController;return{url:i,range:r,signal:s,onProgress:async(o,u)=>{if(!s.aborted)try{this.lastDataObtainedTimestampMs=(0,w.now)(),await this.onSomeByteRangesDataLoaded({dataView:o,loaded:u,signal:s,onSegmentAppendFailed:()=>this.abort(),globalFrom:r?r.from:0,representationId:t.id})}catch(c){this.error$.next({id:"SegmentFeeding",category:w.ErrorCategory.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:c})}}}}prepareTemplateFetchSegmentParams(e,t){if(!lt(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:s}=this.downloadAbortController,n=[],u=this.isActiveLowLatency()||this.tuning.dash.enableSubSegmentBufferFeeding&&this.liveUpdateSegmentIndex<3?(c,d)=>{if(!s.aborted)try{this.lastDataObtainedTimestampMs=(0,w.now)();let l=this.onSomeTemplateDataLoaded({dataView:c,loaded:d,signal:s,onSegmentAppendFailed:()=>this.abort(),representationId:t.id});n.push(l)}catch(l){this.error$.next({id:"SegmentFeeding",category:w.ErrorCategory.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:l})}}:void 0;return{url:r,signal:s,onProgress:u,onProgressTasks:n}}abortActiveSegments(e){for(let t of this.activeSegments)(0,bo.default)(e,t.segment)&&this.abortSegment(t.segment)}async onSomeTemplateDataLoaded({dataView:e,representationId:t,loaded:i,onSegmentAppendFailed:r,signal:s}){if(!this.activeSegments.size||!fe(this.mediaSource,this.sourceBuffer))return;let n=this.representations.get(t);if(n)for(let o of this.activeSegments){let{segment:u}=o;if(o.representationId===t){if(s.aborted){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=Ki(n.mime).parseFeedableSegmentChunk(c,this.isLive);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:s,onSegmentAppendFailed:n}){if(!this.activeSegments.size||!fe(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(s.aborted){await n();continue}let d=c.byte.from-i,l=c.byte.to-i,p=l-d+1,m=d<r,f=l<=r;if(!m)continue;let g=Ki(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,s)&&!s.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),S=u.loadedBytes===p?v:g.parseFeedableSegmentChunk(v);S?.byteLength&&(c.status="partially_fed",u.feedingBytes+=S.byteLength,await this.sourceBufferTaskQueue.append(S,s)&&!s.aborted?(u.fedBytes+=S.byteLength,u.fedBytes===p&&this.onSegmentFullyAppended(u,t)):await n())}}}onSegmentFullyAppended(e,t){if(!((0,w.isNullable)(this.sourceBuffer)||!fe(this.mediaSource,this.sourceBuffer))){!this.isLive&&F.browser.isSafari&&this.tuning.useSafariEndlessRequestBugfix&&(wi(this.sourceBuffer.buffered,e.segment.time.from,100)&&wi(this.sourceBuffer.buffered,e.segment.time.to,100)||this.error$.next({id:"EmptyAppendBuffer",category:w.ErrorCategory.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",dl(e.segment)&&(e.segment.size=e.fedBytes);for(let i of this.representations.values())if(i.id!==t)for(let r of this.segments.get(i.id)??[])r.status==="fed"&&Math.round(r.time.from)===Math.round(e.segment.time.from)&&Math.round(r.time.to)===Math.round(e.segment.time.to)&&(r.status="none");this.updateLowLatencyLiveIfNeeded(e.segment),this.activeSegments.delete(e),this.detectGapsWhenIdle(t,[e.segment])}}abortSegment(e){e.status==="partially_fed"?e.status="partially_ejected":e.status!=="partially_ejected"&&(e.status="none");for(let t of this.activeSegments.values())if(t.segment===e){this.activeSegments.delete(t);break}}loadNextInit(){if(this.allInitsLoaded||this.initLoadIdleCallback)return;let e=null,t=!1;for(let[r,s]of this.initData.entries()){let n=s instanceof Promise;t||=n,s===null&&(e=r)}if(!e){this.allInitsLoaded=!0;return}if(t)return;let i=this.representations.get(e);i&&(this.initLoadIdleCallback=Wi(()=>(0,BS.default)(this.loadInit(i,"low",!1),()=>this.initLoadIdleCallback=null)))}async loadInit(e,t="auto",i=!1){let r=this.tuning.dash.useFetchPriorityHints?t:"auto",s=!i&&this.tuning.dash.ignoreNetworkErrorsOnLoadInit,o=(!i&&this.failedDownloads>0?(0,w.abortable)(this.destroyAbortController.signal,async function*(){let u=(0,w.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(c=>setTimeout(c,u))}.bind(this))():Promise.resolve()).then(()=>this.fetcher.fetchRepresentation(e.segmentReference,Ki(e.mime),{priority:r,ignoreNetworkErrors:s})).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 m=l;this.isLive&&lt(e.segmentReference)&&(m=this.getActualLiveStartingSegments(e.segmentReference)),(!this.isLive||!this.segments.has(e.id))&&this.segments.set(e.id,m),c&&this.parsedInitData.set(e.id,c)}).then(()=>this.failedDownloads=0,u=>{s||this.initData.set(e.id,null),i&&this.error$.next({id:"LoadInits",category:w.ErrorCategory.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||!fe(this.mediaSource,this.sourceBuffer)||!this.playingRepresentationId||(0,w.isNullable)(e))return!1;let r=[],s=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],m=c[c.length-1];m.to>=l?m.to=Math.max(m.to,p):c.push(u[d])}return c},o=u=>{if(s>=t)return r;r.push({...u.time}),r=n(r);let c=dl(u)?u.size??0:u.byte.to-u.byte.from;s+=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 m of p)(0,bo.default)(["none","partially_ejected"],m.status)&&Math.round(m.time.from)<=Math.round(c)&&Math.round(m.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||!fe(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||!fe(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||!fe(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length||(0,w.isNullable)(e)?0:Ii(this.sourceBuffer.buffered,e)}detectGaps(e,t){if(!(!this.sourceBuffer||!fe(this.mediaSource,this.sourceBuffer)))for(let i of t){let r={representation:e,from:i.time.from,to:i.time.to,persistent:!1},{buffered:s}=this.sourceBuffer;for(let n=0;n<s.length;n++){let o=s.start(n)*1e3,u=s.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||!fe(this.mediaSource,this.sourceBuffer))return;let{buffered:i}=this.sourceBuffer,{usePersistentGaps:r}=this.tuning.dash;this.gaps=this.gaps.filter(s=>{if(r&&s.persistent)return!0;let n=Math.round(s.from),o=Math.round(s.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=Wi(()=>{try{this.detectGaps(e,t)}catch(s){this.error$.next({id:"GapDetection",category:w.ErrorCategory.WTF,message:"detectGaps threw",thrown:s})}finally{this.gapDetectionIdleCallback=null}})}checkEjectedSegments(){if((0,w.isNullable)(this.sourceBuffer)||!fe(this.mediaSource,this.sourceBuffer)||(0,w.isNullable)(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),s=Math.ceil(this.sourceBuffer.buffered.end(i)*1e3);e.push({from:r,to:s})}let t=100;for(let i of this.segments.values())for(let r of i){let{status:s}=r;if(s!=="fed"&&s!=="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:w.ErrorCategory.VIDEO_PIPELINE,thrown:e,message:"Something went wrong"})}};var _=require("@vkontakte/videoplayer-shared/es2024");var vo=class{constructor({throughputEstimator:e,requestQuic:t,tracer:i,compatibilityMode:r=!1,useEnableSubtitlesParam:s=!1}){this.manifestRequested$=new _.Subject;this.firstBytesManifest$=new _.Subject;this.firstBytesRequested$=new _.Subject;this.firstBytesReceived$=new _.Subject;this.lastConnectionType$=new _.ValueSubject(void 0);this.lastConnectionReused$=new _.ValueSubject(void 0);this.lastRequestFirstBytes$=new _.ValueSubject(void 0);this.lastConnectionMetrics$=new _.ValueSubject(void 0);this.lastDownloadMetrics$=new _.ValueSubject(void 0);this.recoverableError$=new _.Subject;this.error$=new _.Subject;this.abortAllController=new be;this.subscription=new _.SubscriptionRemovable;this.performanceObserver=null;this.pendingConnectionMetrics=new Map;this.fetchManifest=(0,_.abortable)(this.abortAllController.signal,async function*(e){let t=this.tracer.createComponentTracer("FetchManifest"),i=e;this.requestQuic&&(i=gi(i)),!this.compatibilityMode&&this.useEnableSubtitlesParam&&(i=Yn(i)),this.trackRequestStart(i,performance.now());let r=(0,_.now)();this.manifestRequested$.next();let s=yield this.doFetch(i,{signal:this.abortAllController.signal}).catch(_.suppressAbort);if(s){let n=(0,_.now)();t.log("success",(0,_.flattenObject)({url:i,message:"Request successfully executed"})),t.end(),this.onHeadersReceived(s.headers),this.firstBytesManifest$.next();let o=s.headers.get("content-length"),u=0;o&&(u=parseInt(o,10));let c=await s.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,m={bytes:u,speed:p,url:e};this.lastDownloadMetrics$.next(m)}return c}else return t.error("error",(0,_.flattenObject)({url:i,message:"No data in request manifest"})),t.end(),null}.bind(this));this.fetch=(0,_.abortable)(this.abortAllController.signal,async function*(e,{rangeMethod:t=this.compatibilityMode?0:1,range:i,onProgress:r,priority:s="auto",signal:n,measureThroughput:o=!0,isLowLatency:u=!1,bufferOptimisation:c=!1,ignoreNetworkErrors:d=!1}={}){let l=e,p=new Headers,m=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,(0,_.getWindow)().location.href);P.searchParams.append("bytes",`${i.from}-${i.to}`),l=P.toString();break}default:(0,_.assertNever)(t)}this.requestQuic&&(l=gi(l));let f=this.abortAllController.signal,g;if(n){let P=new be;if(g=(0,_.merge)((0,_.fromEvent)(this.abortAllController.signal,"abort"),(0,_.fromEvent)(n,"abort")).subscribe(()=>{try{P.abort()}catch(J){(0,_.suppressAbort)(J)}}),this.subscription.add(g),this.abortAllController.signal.aborted||n.aborted)try{P.abort()}catch(J){(0,_.suppressAbort)(J)}f=P.signal}let v=0,S=(0,_.now)();m.log("startRequest",(0,_.flattenObject)({url:l,priority:s,rangeMethod:t,range:i,isLowLatency:u,requestStartedAt:S})),this.trackRequestStart(l,performance.now()),this.firstBytesRequested$.next();let E=yield this.doFetch(l,{priority:s,headers:p,signal:f},{ignoreNetworkErrors:d}),A=(0,_.now)();if(!E)return m.error("error",{message:"No response in request"}),m.end(),this.unsubscribeAbortSubscription(g),null;if(this.throughputEstimator?.addRawRtt(A-S),!E.ok||!E.body){this.unsubscribeAbortSubscription(g);let P=`Fetch error ${E.status}: ${E.statusText}`;return m.error("error",{message:P}),m.end(),Promise.reject(new Error(`Fetch error ${E.status}: ${E.statusText}`))}if(this.onHeadersReceived(E.headers),!r&&!o){this.unsubscribeAbortSubscription(g);let P=(0,_.now)(),J={requestStartedAt:S,requestEndedAt:P,duration:P-S};return m.log("endRequest",(0,_.flattenObject)(J)),m.end(),E.arrayBuffer()}let x=E.body;if(o){let P;[x,P]=E.body.tee(),this.throughputEstimator?.trackStream(P,u)}let D=x.getReader(),N,q=parseInt(E.headers.get("content-length")??"",10);Number.isFinite(q)&&(N=q),!N&&i&&(N=i.to-i.from+1);let B=N?new Uint8Array(N):new Uint8Array(0),W=!1,L=P=>{this.unsubscribeAbortSubscription(g),W=!0,(0,_.suppressAbort)(P)},ae=(0,_.abortable)(f,async function*({done:P,value:J}){if(v===0&&(this.lastRequestFirstBytes$.next((0,_.now)()-S),this.firstBytesReceived$.next()),f.aborted){this.unsubscribeAbortSubscription(g);return}if(!P&&J){if(c&&N)B.set(J,v),v+=J.byteLength;else{let O=new Uint8Array(B.length+J.length);O.set(B),O.set(J,B.length),B=O,v+=J.byteLength}r?.(new DataView(B.buffer),v),yield D?.read().then(ae,L)}}.bind(this));yield D?.read().then(ae,L),this.unsubscribeAbortSubscription(g);let X=(0,_.now)(),k={failed:W,requestStartedAt:S,requestEndedAt:X,duration:X-S};if(W)return m.error("endRequest",(0,_.flattenObject)(k)),m.end(),null;if(v>0){let P=X-S,O=v/(P/1e3)*8/1024,se={bytes:v,speed:O,url:e};this.lastDownloadMetrics$.next(se)}return m.log("endRequest",(0,_.flattenObject)(k)),m.end(),B.buffer}.bind(this));this.fetchByteRangeRepresentation=(0,_.abortable)(this.abortAllController.signal,async function*(e,t,i){if(e.type!=="byteRange")return null;let{from:r,to:s}=e.initRange,n=r,o=s,u=!1,c,d;e.indexRange&&(c=e.indexRange.from,d=e.indexRange.to,u=s+1===c,u&&(n=Math.min(c,r),o=Math.max(d,s))),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,s-n+1);if(!t.validateData(p))throw new Error("Invalid media file");let m=t.parseInit(p),f=e.indexRange??t.getIndexRange(m);if(!f)throw new ReferenceError("No way to load representation index");let g;if(u)g=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;g=new DataView(S)}let v=t.parseSegments(g,m,f);return{init:m,dataView:new DataView(l),segments:v}}.bind(this));this.fetchTemplateRepresentation=(0,_.abortable)(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=s,(0,_.getWindow)().PerformanceObserver&&this.setupPerformanceObserver()}onHeadersReceived(e){let{type:t,reused:i}=Gn(e);this.lastConnectionType$.next(t),this.lastConnectionReused$.next(i)}setupPerformanceObserver(){this.performanceObserver=new((0,_.getWindow)()).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(0,_.getWindow)().navigator))return"unknown";let e=(0,_.getWindow)().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,s=0;return e.domainLookupStart>0&&e.domainLookupEnd>0&&(t=e.domainLookupEnd-e.domainLookupStart),e.connectStart>0&&e.connectEnd>0&&(s=e.connectEnd-e.connectStart,e.secureConnectionStart>0?(r=e.connectEnd-e.secureConnectionStart,i=e.secureConnectionStart-e.connectStart):i=s),{dnsResolveTime:Math.max(0,t),tcpHandshakeTime:Math.max(0,i),tlsHandshakeTime:Math.max(0,r),totalConnectTime:Math.max(0,s),networkType:this.estimateNetworkType(),url:e.name}}findMatchingRequest(e){try{for(let[t,i]of this.pendingConnectionMetrics.entries()){let r=new URL(e.name),s=r.origin+r.pathname,n=new URL(i.url),o=n.origin+n.pathname;if(s===o&&e.startTime>=i.startTime-10&&e.startTime<=i.startTime+1e3)return t}}catch{this.recoverableError$.next({id:"VideoDataFetchError",message:"Video data fetch error with getting download metrics",category:_.ErrorCategory.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){let{type:r}=e;switch(r){case"byteRange":return await this.fetchByteRangeRepresentation(e,t,i)??null;case"template":return await this.fetchTemplateRepresentation(e,i)??null;default:(0,_.assertNever)(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 St(e,t);if(r.ok)return r;if(i?.ignoreNetworkErrors)return;let s=await r.text(),n=parseInt(s);if(!isNaN(n))switch(n){case 1:this.recoverableError$.next({id:"VideoDataLinkExpiredError",message:"Video data links have expired",category:_.ErrorCategory.FATAL,httpCode:r.status,UVBackendErrorCode:s});break;case 8:this.recoverableError$.next({id:"VideoDataLinkBlockedForFloodError",message:"Url blocked for flood",category:_.ErrorCategory.FATAL,httpCode:r.status,UVBackendErrorCode:s});break;case 18:this.recoverableError$.next({id:"VideoDataLinkIllegalIpChangeError",message:"Client IP has changed",category:_.ErrorCategory.FATAL,httpCode:r.status,UVBackendErrorCode:s});break;case 21:this.recoverableError$.next({id:"VideoDataLinkIllegalHostChangeError",message:"Request HOST has changed",category:_.ErrorCategory.FATAL,httpCode:r.status,UVBackendErrorCode:s});break;default:this.error$.next({id:"GeneralVideoDataFetchError",message:`Generic video data fetch error (${n})`,category:_.ErrorCategory.FATAL,httpCode:r.status,UVBackendErrorCode:s})}}unsubscribeAbortSubscription(e){e&&(e.unsubscribe(),this.subscription.remove(e))}};var So=require("@vkontakte/videoplayer-shared/es2024");var gs=class a{constructor(e,t){this.currentRepresentation$=new So.ValueSubject(null);this.maxRepresentations=4;this.representationsCursor=0;this.representations=[];this.currentSegment=null;this.getCurrentPosition=t.getCurrentPosition,this.processStreams(e)}updateLive(e){this.processStreams(e?.streams.text)}seekLive(e){this.processStreams(e)}maintain(e=this.getCurrentPosition()){if(!(0,So.isNullable)(e))for(let t of this.representations)for(let i of t){let r=i.segmentReference,s=r.segments.length,n=r.segments[0].time.from,o=r.segments[s-1].time.to;if(e<n||e>o)continue;let u=r.segments.find(c=>c.time.from<=e&&c.time.to>=e);!u||this.currentSegment?.time.from===u.time.from&&this.currentSegment.time.to===u.time.to||(this.currentSegment=u,this.currentRepresentation$.next({...i,label:"Live Text",language:"ru",isAuto:!0,url:new URL(u.url,r.baseUrl).toString()}))}}destroy(){this.currentRepresentation$.next(null),this.currentSegment=null,this.representations=[]}processStreams(e){for(let t of e??[]){let i=a.filterRepresentations(t.representations);if(i){this.representations[this.representationsCursor]=i,this.representationsCursor=(this.representationsCursor+1)%this.maxRepresentations;break}}}static isSupported(e){return!!e?.some(t=>a.filterRepresentations(t.representations))}static filterRepresentations(e){return e?.filter(t=>t.kind==="text"&&"segmentReference"in t&&lt(t.segmentReference))}};var jM=["timeupdate","progress","play","seeked","stalled","waiting"],zM=["timeupdate","progress","loadeddata","playing","seeked"];var yo=class{constructor(e){this.element=null;this.manifestUrlString="";this.source=null;this.manifest=null;this.bufferManagers=[];this.subscription=new y.Subscription;this.subscriptionRemovable=new y.SubscriptionRemovable;this.representationSubscription=new y.Subscription;this.state$=new ee("none");this.currentVideoRepresentation$=new y.ValueSubject(void 0);this.currentVideoRepresentationInit$=new y.ValueSubject(void 0);this.currentAudioRepresentation$=new y.ValueSubject(void 0);this.currentVideoSegmentLength$=new y.ValueSubject(0);this.currentAudioSegmentLength$=new y.ValueSubject(0);this.error$=new y.Subject;this.manifestRequested$=new y.Subject;this.firstBytesManifest$=new y.Subject;this.manifestReceived$=new y.Subject;this.firstBytesRequested$=new y.Subject;this.firstBytesReceived$=new y.Subject;this.lastConnectionType$=new y.ValueSubject(void 0);this.lastConnectionReused$=new y.ValueSubject(void 0);this.lastRequestFirstBytes$=new y.ValueSubject(void 0);this.lastConnectionMetrics$=new y.ValueSubject(void 0);this.lastDownloadMetrics$=new y.ValueSubject(void 0);this.currentLiveTextRepresentation$=new y.ValueSubject(null);this.isLive$=new y.ValueSubject(!1);this.isActiveLive$=new y.ValueSubject(!1);this.isLowLatency$=new y.ValueSubject(!1);this.liveDuration$=new y.ValueSubject(0);this.liveSeekableDuration$=new y.ValueSubject(0);this.liveAvailabilityStartTime$=new y.ValueSubject(0);this.liveStreamStatus$=new y.ValueSubject(void 0);this.bufferLength$=new y.ValueSubject(0);this.liveLatency$=new y.ValueSubject(void 0);this.liveLoadBufferLength$=new y.ValueSubject(0);this.livePositionFromPlayer$=new y.ValueSubject(0);this.currentStallDuration$=new y.ValueSubject(0);this.videoLastDataObtainedTimestamp$=new y.ValueSubject(0);this.fetcherRecoverableError$=new y.Subject;this.fetcherError$=new y.Subject;this.liveStreamEndTimestamp=0;this.isUpdatingLive=!1;this.isJumpGapAfterSeekLive=!1;this.forceEnded$=new y.Subject;this.gapWatchdogActive=!1;this.liveWasInterrupted=!1;this.destroyController=new be;this.initManifest=(0,y.abortable)(this.destroyController.signal,async function*(e,t,i){this.tracer.log("initManifest"),this.element=e,this.manifestUrlString=xe(t,i,2),this.state$.startTransitionTo("manifest_ready"),this.manifest=yield this.updateManifest(),this.manifest?.streams.video.length?this.state$.setState("manifest_ready"):this.error$.next({id:"NoRepresentations",category:y.ErrorCategory.PARSER,message:"No playable video representations"})}.bind(this));this.updateManifest=(0,y.abortable)(this.destroyController.signal,async function*(){this.tracer.log("updateManifestStart",{manifestUrl:this.manifestUrlString});let e=yield this.fetcher.fetchManifest(this.manifestUrlString).catch(u=>{!this.manifest&&!this.bufferLength$.getValue()&&this.error$.next({id:"LoadManifest",category:y.ErrorCategory.NETWORK,message:"Failed to load manifest",thrown:u})});if(!e)return null;let t=null;try{t=Zn(e??"",this.manifestUrlString),this.manifestReceived$.next()}catch(u){let c=Qn(e)??{id:"ManifestParsing",category:y.ErrorCategory.PARSER,message:"Failed to parse MPD manifest",thrown:u};this.error$.next(c)}if(!t)return null;let i=(u,c,d)=>!!(this.element?.canPlayType?.(c)&&ot()?.isTypeSupported?.(`${c}; codecs="${d}"`)||u==="text");if(t.live){this.isLive$.next(!0);let{availabilityStartTime:u,latestSegmentPublishTime:c,streamIsUnpublished:d,streamIsAlive:l}=t.live,p=(t.duration??0)/1e3;this.liveSeekableDuration$.next(-1*p),this.liveDuration$.next((c-u)/1e3),this.liveAvailabilityStartTime$.next(t.live.availabilityStartTime);let m="active";if(l||(m=d?"unpublished":"unexpectedly_down"),this.liveStreamStatus$.next(m),l&&this.liveWasInterrupted){this.liveWasInterrupted=!1,this.stopStallWatchdogSubscription();let f=this.normalizeLiveOffset(-1*this.livePositionFromPlayer$.getValue()*1e3);this.seekLive(f).catch(g=>{this.error$.next({id:"updateManifest",category:y.ErrorCategory.VIDEO_PIPELINE,message:"seekLive after stream restore failed",thrown:g})})}}let r={text:t.streams.text,video:[],audio:[]},s,n;for(let u of["video","audio"]){let d=t.streams[u].filter(({mime:p,codecs:m})=>i(u,p,m));r[u]=d;let l;if(this.tuning.dash.codecsPrioritizeEnabled){let p=d.map(({codecs:m})=>m);u==="audio"&&(n=ao(p),l=n[0]),u==="video"&&(s=ro(p),this.forceVideoCodec&&(0,VS.default)(s,this.forceVideoCodec)?l=this.forceVideoCodec:l=s[0]),l&&(r[u]=d.filter(({codecs:m})=>vi(m)===l))}else{let p=new Set(d.map(({codecs:m})=>m));l=io(p),l&&(r[u]=d.filter(({codecs:m})=>m.startsWith(l)))}if(u==="video"){let p=this.tuning.preferHDR,m=r.video.some(v=>v.hdr),f=r.video.some(v=>!v.hdr);F.display.isHDR&&p&&m?r.video=r.video.filter(v=>v.hdr):f&&(r.video=r.video.filter(v=>!v.hdr));let{videoStreamRepresentaionsFilter:g}=this.tuning.dash;g.length&&uo(r,g)}}let o={...t,streams:r};return this.tuning.dash.codecsPrioritizeEnabled&&(o.codecs={video:s,audio:n}),this.tracer.log("updateManifestEnd",(0,y.flattenObject)(o)),o}.bind(this));this.initRepresentations=(0,y.abortable)(this.destroyController.signal,async function*(e,t,i){this.tracer.log("initRepresentationsStart",(0,y.flattenObject)({initialVideo:e,initialAudio:t,sourceHls:i})),(0,y.assertNonNullable)(this.manifest),(0,y.assertNonNullable)(this.element),this.representationSubscription.unsubscribe(),this.state$.startTransitionTo("representations_ready");let r=l=>{this.representationSubscription.add((0,y.fromEvent)(l,"error").pipe((0,y.filter)(p=>!!this.element?.played.length)).subscribe(p=>{this.error$.next({id:"VideoSource",category:y.ErrorCategory.VIDEO_PIPELINE,message:"Unexpected video source error",thrown:p})}))};this.source=Js();let s=document.createElement("source");if(r(s),s.src=URL.createObjectURL(this.source),this.element.appendChild(s),mr())if(i){let l=document.createElement("source");r(l),l.type="application/x-mpegurl",l.src=i.url,this.element.appendChild(l)}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((l,p)=>[...l,...p.representations],[]);if(this.videoBufferManager=new bs("video",this.source,o,n),this.bufferManagers=[this.videoBufferManager],(0,y.isNonNullable)(t)){let l=this.manifest.streams.audio.reduce((p,m)=>[...p,...m.representations],[]);this.audioBufferManager=new bs("audio",this.source,l,n),this.bufferManagers.push(this.audioBufferManager)}if(gs.isSupported(this.manifest.streams.text)&&!this.isLowLatency$.getValue()&&(this.liveTextManager=new gs(this.manifest.streams.text,n)),this.representationSubscription.add(this.fetcher.lastRequestFirstBytes$.subscribe(this.lastRequestFirstBytes$)),this.representationSubscription.add((0,y.merge)(...zM.map(l=>(0,y.fromEvent)(this.element,l))).pipe((0,y.map)(l=>this.element?Ii(this.element.buffered,this.element.currentTime*1e3):0),(0,y.filterChanged)(),(0,y.tap)(l=>{l>this.tuning.dash.bufferEmptinessTolerance&&this.stopStallWatchdogSubscription()})).subscribe(this.bufferLength$)),this.representationSubscription.add((0,y.merge)((0,y.fromEvent)(this.element,"ended"),this.forceEnded$).subscribe(()=>{this.stopStallWatchdogSubscription()})),this.isLive$.getValue()){this.subscription.add(this.liveDuration$.pipe((0,y.filterChanged)()).subscribe(p=>this.liveStreamEndTimestamp=(0,y.now)())),this.subscription.add((0,y.fromEvent)(this.element,"pause").subscribe(()=>{let{liveUpdateInterval:p}=this.tuning.dash;this.livePauseWatchdogSubscription=(0,y.interval)(p).subscribe(m=>{let f=oi(this.manifestUrlString,2);this.manifestUrlString=xe(this.manifestUrlString,f+p,2),this.liveStreamStatus$.getValue()==="active"&&this.updateManifest()}),this.subscription.add(this.livePauseWatchdogSubscription)})).add((0,y.fromEvent)(this.element,"play").subscribe(p=>this.livePauseWatchdogSubscription?.unsubscribe())),this.representationSubscription.add((0,y.combine)({isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe((0,y.map)(({isActiveLive:p,isLowLatency:m})=>p&&m),(0,y.filterChanged)()).subscribe(p=>{this.isManualDecreasePlaybackInLive()||_r(this.element,1)})),this.representationSubscription.add((0,y.combine)({bufferLength:this.bufferLength$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe((0,y.filter)(({bufferLength:p,isActiveLive:m,isLowLatency:f})=>m&&f&&!!p)).subscribe(({bufferLength:p})=>this.liveBuffer.next(p))),this.representationSubscription.add(this.videoBufferManager.currentLowLatencySegmentLength$.subscribe(p=>{if(!this.isActiveLive$.getValue()&&!this.isLowLatency$.getValue()&&!p)return;let m=this.liveSeekableDuration$.getValue()-p/1e3;this.liveSeekableDuration$.next(Math.max(m,-1*this.tuning.dashCmafLive.maxLiveDuration)),this.liveDuration$.next(this.liveDuration$.getValue()+p/1e3)})),this.representationSubscription.add((0,y.combine)({isLive:this.isLive$,rtt:this.throughputEstimator.rtt$,bufferLength:this.bufferLength$,segmentServerLatency:this.videoBufferManager.currentLiveSegmentServerLatency$}).pipe((0,y.filter)(({isLive:p})=>p),(0,y.filterChanged)((p,m)=>m.bufferLength<p.bufferLength),(0,y.map)(({rtt:p,bufferLength:m,segmentServerLatency:f})=>{let g=oi(this.manifestUrlString,2);return(p/2+m+f+g)/1e3})).subscribe(this.liveLatency$)),this.representationSubscription.add((0,y.combine)({liveBuffer:this.liveBuffer.smoothed$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).subscribe(({liveBuffer:p,isActiveLive:m,isLowLatency:f})=>{if(!f||!m)return;let g=this.tuning.dashCmafLive.lowLatency.maxTargetOffset,v=this.tuning.dashCmafLive.lowLatency.maxTargetOffsetDeviation,S=this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup,E=p-g;if(this.isManualDecreasePlaybackInLive())return;let A=1;Math.abs(E)>v&&(A=1+Math.sign(E)*S),_r(this.element,A)})),this.representationSubscription.add(this.bufferLength$.subscribe(p=>{let m=0;if(p){let f=(this.element?.currentTime??0)*1e3;m=Math.min(...this.bufferManagers.map(v=>v.getLiveSegmentsToLoadState(this.manifest)?.to??f))-f}this.liveLoadBufferLength$.getValue()!==m&&this.liveLoadBufferLength$.next(m)}));let l=0;this.representationSubscription.add((0,y.combine)({liveLoadBufferLength:this.liveLoadBufferLength$,bufferLength:this.bufferLength$}).pipe((0,y.throttle)(this.tuning.dash.liveUpdateInterval)).subscribe(async({liveLoadBufferLength:p,bufferLength:m})=>{if(!this.element||this.isUpdatingLive)return;let f=this.element.playbackRate,g=oi(this.manifestUrlString,2),v=Math.abs(this.livePositionFromPlayer$.getValue())*1e3,S=Math.min(v,this.tuning.dashCmafLive.normalizedTargetMinBufferSize*f),E=this.tuning.dashCmafLive.normalizedActualBufferOffset*f,A=this.tuning.dashCmafLive.normalizedLiveMinBufferSize*f,x=isFinite(p)?p:m,D=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),N=v<=this.tuning.live.activeLiveDelay;this.isActiveLive$.next(N);let q="none";if(D?q="active_low_latency":this.isLowLatency$.getValue()&&N?(this.bufferManagers.forEach(B=>B.proceedLowLatencyLive()),q="active_low_latency"):g!==0&&x<S?q="live_forward_buffering":x<S+A&&(q="live_with_target_offset"),isFinite(p)&&(l=p>l?p:l),q==="live_forward_buffering"||q==="live_with_target_offset"){let B=l-(S+E),W=this.normalizeLiveOffset(Math.trunc(g+B/f)),L=Math.abs(W-g),ae=0;!p||L<=this.tuning.dashCmafLive.offsetCalculationError?ae=g:W>0&&L>this.tuning.dashCmafLive.offsetCalculationError&&(ae=W),this.manifestUrlString=xe(this.manifestUrlString,ae,2)}(q==="live_with_target_offset"||q==="live_forward_buffering")&&(l=0,await this.updateLive())},p=>{this.error$.next({id:"updateLive",category:y.ErrorCategory.VIDEO_PIPELINE,thrown:p,message:"Failed to update live with subscription"})}))}let u=(0,y.merge)(...this.bufferManagers.map(l=>l.fullyBuffered$)).pipe((0,y.map)(()=>this.bufferManagers.every(l=>l.fullyBuffered$.getValue()))),c=(0,y.merge)(...this.bufferManagers.map(l=>l.onLastSegment$)).pipe((0,y.map)(()=>this.bufferManagers.some(l=>l.onLastSegment$.getValue()))),d=(0,y.combine)({allBuffersFull:u,someBufferEnded:c}).pipe((0,y.filterChanged)(),(0,y.map)(({allBuffersFull:l,someBufferEnded:p})=>l&&p),(0,y.filter)(l=>l));if(this.representationSubscription.add((0,y.merge)(this.forceEnded$,d).subscribe(()=>{if(this.source&&this.source.readyState==="open"&&Array.from(this.source.sourceBuffers).every(l=>!l.updating))try{this.source?.endOfStream()}catch(l){this.error$.next({id:"EndOfStream",category:y.ErrorCategory.VIDEO_PIPELINE,message:"Failed to end MediaSource stream",thrown:l})}})),this.representationSubscription.add((0,y.merge)(...this.bufferManagers.map(l=>l.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 l=this.tuning.dash.sourceOpenTimeout>=0;yield new Promise(p=>{l&&(this.timeoutSourceOpenId=setTimeout(()=>{if(this.source?.readyState==="open"){p();return}this.error$.next({id:"OpenOfStream",category:y.ErrorCategory.VIDEO_PIPELINE,message:"Failed to open MediaSource",thrown:new Error("Timeout reject when wait sourceopen event"),traceAsLog:!0})},this.tuning.dash.sourceOpenTimeout)),this.source?.addEventListener("sourceopen",()=>{this.timeoutSourceOpenId&&clearTimeout(this.timeoutSourceOpenId),p()},{once:!0})})}if(!this.isLive$.getValue()){let l=[this.manifest.duration??0,...(0,gl.default)((0,gl.default)([...this.manifest.streams.audio,...this.manifest.streams.video],p=>p.representations),p=>{let m=[];return p.duration&&m.push(p.duration),lt(p.segmentReference)&&p.segmentReference.totalSegmentsDurationMs&&m.push(p.segmentReference.totalSegmentsDurationMs),m})];this.source.duration=Math.max(...l)/1e3}this.audioBufferManager&&(0,y.isNonNullable)(t)?yield Promise.all([this.videoBufferManager.startWith(e),this.audioBufferManager.startWith(t)]):yield this.videoBufferManager.startWith(e),this.state$.setState("representations_ready"),this.tracer.log("initRepresentationsEnd")}.bind(this));this.tick=()=>{if(!this.element||!this.videoBufferManager||this.source?.readyState!=="open")return;let e=this.element.currentTime*1e3;this.videoBufferManager.maintain(e),this.audioBufferManager?.maintain(e),this.liveTextManager?.maintain(e),(this.videoBufferManager.gaps.length||this.audioBufferManager?.gaps.length)&&!this.gapWatchdogActive&&(this.gapWatchdogActive=!0,this.gapWatchdogSubscription=(0,y.interval)(this.tuning.gapWatchdogInterval).subscribe(()=>this.jumpGap(),t=>{this.error$.next({id:"GapWatchdog",category:y.ErrorCategory.WTF,message:"Error handling gaps",thrown:t})}),this.subscription.add(this.gapWatchdogSubscription))};this.throughputEstimator=e.throughputEstimator,this.tuning=e.tuning,this.tracer=e.tracer.createComponentTracer(this.constructor.name),this.forceVideoCodec=e.forceVideoCodec,this.fetcher=new vo({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=Jt.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){(0,y.assertNonNullable)(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,y.now)()-this.liveStreamEndTimestamp:0,i=this.normalizeLiveOffset(e+t);this.isActiveLive$.next(i===0),this.manifestUrlString=xe(this.manifestUrlString,i,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(){(0,y.assertNonNullable)(this.element),this.state$.setState("running"),this.subscription.add((0,y.merge)(...jM.map(e=>(0,y.fromEvent)(this.element,e)),(0,y.fromEvent)(window,"online")).subscribe(()=>this.tick(),e=>{this.error$.next({id:"DashVKPlayer",category:y.ErrorCategory.WTF,message:"Internal logic error",thrown:e})})),this.subscription.add((0,y.fromEvent)(this.element,"progress").subscribe(()=>{this.element&&this.element.readyState===2&&!this.element.seeking&&(this.element.currentTime=this.element.currentTime)})),this.subscription.add((0,y.fromEvent)(this.element,"waiting").subscribe(()=>{this.tuning.dash.useVideoElementWaitingCurrentTimeReassign&&this.element&&this.element.readyState===2&&!this.element.seeking&&wi(this.element.buffered,this.element.currentTime*1e3)&&(this.element.currentTime=this.element.currentTime);let e=()=>{let{keepSilentStallWatchdogWhenNotActive:t}=this.tuning.dashCmafLive,{crashOnStallTimeout:i,crashOnStallTWithoutDataTimeout:r,liveStallReinitInterval:s,stallWatchdogInterval:n}=this.tuning.dash,o=this.isLive$.getValue(),c=this.liveStreamStatus$.getValue()==="active";if(!this.element||this.source?.readyState!=="open")return;let d=this.currentStallDuration$.getValue();d+=n,this.currentStallDuration$.next(d);let l={timeInWaiting:d},p=(0,y.now)(),m=100,f=this.videoBufferManager?.lastDataObtainedTimestamp??0;this.videoLastDataObtainedTimestamp$.next(f);let g=this.audioBufferManager?.lastDataObtainedTimestamp??0,v=this.videoBufferManager?.getForwardBufferDuration()??0,S=this.audioBufferManager?.getForwardBufferDuration()??0,E=v<m&&p-f>r,A=this.audioBufferManager&&S<m&&p-g>r;if((!t||c)&&((E||A)&&d>r||d>=i))throw new Error(`Stall timeout exceeded: ${d} ms`);if(o&&d%s===0){let x=this.normalizeLiveOffset(-1*this.livePositionFromPlayer$.getValue()*1e3);!c&&t?(this.liveWasInterrupted=!0,this.updateManifestUrlWithTimeOffset(x),this.updateManifest()):this.seekLive(x).catch(D=>{this.error$.next({id:"stallIntervalCallback",category:y.ErrorCategory.VIDEO_PIPELINE,message:"stallIntervalCallback failed",thrown:D})}),l.liveLastOffset=x}else{let x=this.element.currentTime*1e3;this.videoBufferManager?.maintain(x),this.audioBufferManager?.maintain(x),l.position=x}this.tracer.log("stallIntervalCallback",(0,y.flattenObject)(l))};this.stallWatchdogSubscription&&(this.stallWatchdogSubscription.unsubscribe(),this.subscriptionRemovable.remove(this.stallWatchdogSubscription)),this.stallWatchdogSubscription=(0,y.interval)(this.tuning.dash.stallWatchdogInterval).subscribe(e,t=>{this.error$.next({id:"StallWatchdogCallback",category:y.ErrorCategory.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?.switchToWithPreviousAbort(t,i):r?.switchTo(t,i):r?.switchToOld(t,i)}async seek(e,t){(0,y.assertNonNullable)(this.element),(0,y.assertNonNullable)(this.videoBufferManager);let i;t||this.element.duration*1e3<=this.tuning.dashSeekInSegmentDurationThreshold||Math.abs(this.element.currentTime*1e3-e)<=this.tuning.dashSeekInSegmentAlwaysSeekDelta?i=e:i=Math.max(this.videoBufferManager.findSegmentStartTime(e)??e,this.audioBufferManager?.findSegmentStartTime(e)??e),this.warmUpMediaSourceIfNeeded(i),wi(this.element.buffered,i)||await Promise.all([this.videoBufferManager.abort(),this.audioBufferManager?.abort()]),!((0,y.isNullable)(this.element)||(0,y.isNullable)(this.videoBufferManager))&&(this.videoBufferManager.maintain(i),this.audioBufferManager?.maintain(i),this.element.currentTime=i/1e3,this.tracer.log("seek",(0,y.flattenObject)({requestedPosition:e,forcePrecise:t,position:i})))}warmUpMediaSourceIfNeeded(e=this.element?.currentTime){(0,y.isNonNullable)(this.element)&&(0,y.isNonNullable)(this.source)&&(0,y.isNonNullable)(e)&&this.source?.readyState==="ended"&&this.element.duration*1e3-e>this.tuning.dash.seekBiasInTheEnd&&this.bufferManagers.forEach(t=>t.warmUpMediaSource())}get isStreamEnded(){return this.source?.readyState==="ended"}stop(){this.tracer.log("stop"),this.element?.querySelectorAll("source").forEach(e=>{URL.revokeObjectURL(e.src),e.remove()}),this.element=null,this.source=null,this.manifest=null,this.currentVideoRepresentation$.next(void 0),this.videoBufferManager?.destroy(),this.videoBufferManager=null,this.audioBufferManager?.destroy(),this.audioBufferManager=null,this.bufferManagers=[],this.state$.setState("none")}setBufferTarget(e){for(let t of this.bufferManagers)t.setTarget(e)}getStreams(){return this.manifest?.streams}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=(0,y.getTraceSubscriptionMethod)(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(),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 s=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<=s&&c.to+o>s&&(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",(0,y.flattenObject)(i)))}}calculateDurationFromSegments(){return Math.max(this.videoBufferManager?.calculateDurationFromSegments()||0,this.audioBufferManager?.calculateDurationFromSegments()||0)}};var rt=require("@vkontakte/videoplayer-shared/es2024"),To=class{constructor(){this.subscription=new rt.Subscription;this.pipSize$=new rt.ValueSubject(void 0);this.videoSize$=new rt.ValueSubject(void 0);this.elementSize$=new rt.ValueSubject(void 0);this.pictureInPictureWindowRemoveEventListener=rt.noop}connect({observableVideo:e,video:t}){let i=r=>{let s=r.target;this.pipSize$.next({width:s.width,height:s.height})};this.subscription.add((0,rt.observeElementSize)(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((0,rt.combine)({videoSize:this.videoSize$,pipSize:this.pipSize$,inPip:e.inPiP$}).pipe((0,rt.map)(({videoSize:r,inPip:s,pipSize:n})=>s?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 Ji=class{constructor(e){this.subscription=new U.Subscription;this.videoState=new ee("stopped");this.observableVideo=null;this.droppedFramesManager=new kr;this.stallsManager=new Hn;this.elementSizeManager=new To;this.videoTracksMap=new Map;this.audioTracksMap=new Map;this.textTracksMap=new Map;this.videoStreamsMap=new Map;this.audioStreamsMap=new Map;this.videoTrackSwitchHistory=new mi;this.audioTrackSwitchHistory=new mi;this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),i=this.params.desiredState.playbackState.getTransition(),r=this.params.desiredState.seekState.getState();if(!this.videoState.getTransition()){if(r.state==="requested"&&i?.to!=="paused"&&e!=="stopped"&&t!=="stopped"&&this.seek(r.position,r.forcePrecise),t==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.player.stop(),this.video.load(),this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.currentNativeBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),C(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"),C(this.params.desiredState.playbackState,"paused")):t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):i?.to==="ready"&&C(this.params.desiredState.playbackState,"ready");return;case"playing":t==="paused"?(this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()):t==="playing"&&this.video.paused?this.playIfAllowed():i?.to==="playing"&&C(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):i?.to==="paused"&&C(this.params.desiredState.playbackState,"paused");return;default:return(0,U.assertNever)(e)}}};this.init3DScene=e=>{if(this.scene3D)return;this.scene3D=new Ar(this.params.container,this.video,{fov:this.params.tuning.spherical.fov,orientation:this.params.tuning.spherical.orientation||{x:e.projectionData?.pose.yaw||0,y:e.projectionData?.pose.pitch||0,z:e.projectionData?.pose.roll||0},rotationSpeed:this.params.tuning.spherical.rotationSpeed,maxYawAngle:this.params.tuning.spherical.maxYawAngle,rotationSpeedCorrection:this.params.tuning.spherical.rotationSpeedCorrection,degreeToPixelCorrection:this.params.tuning.spherical.degreeToPixelCorrection,speedFadeTime:this.params.tuning.spherical.speedFadeTime,speedFadeThreshold:this.params.tuning.spherical.speedFadeThreshold});let t=this.elementSizeManager.getValue();t&&this.scene3D.setViewportSize(t.width,t.height)};this.destroy3DScene=()=>{this.scene3D&&(this.scene3D.destroy(),this.scene3D=void 0)};this.textTracksManager=new bt(e.source.url),this.params=e,this.video=Xe(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(He(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 yo({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;(0,U.isNullable)(this.observableVideo)&&(this.observableVideo=et(this.video),this.subscription.add(()=>this.observableVideo?.destroy()));let i=this.constructor.name,r=n=>{e.error$.next({id:i,category:U.ErrorCategory.WTF,message:`${i} internal logic error`,thrown:n})},s=(n,o)=>this.subscription.add(n.subscribe(o,r));return{output:e,desiredState:t,observableVideo:this.observableVideo,genericErrorListener:r,connect:s}}subscribe(){let{output:e,desiredState:t,observableVideo:i,genericErrorListener:r,connect:s}=this.getProviderSubscriptionInfo();this.subscription.add(this.params.output.availableVideoTracks$.pipe((0,U.filter)(l=>!!l.length),(0,U.once)()).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((0,U.map)(l=>l.to.state!=="none"),(0,U.filterChanged)());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}),s(i.ended$,e.endedEvent$),s(i.looped$,e.loopedEvent$),s(i.error$,e.error$),s(i.isBuffering$,e.isBuffering$),s(i.currentBuffer$,e.currentBuffer$),s(i.currentBuffer$,e.currentNativeBuffer$),s(i.playing$,e.firstFrameEvent$),s(i.canplay$,e.canplay$),s(i.inPiP$,e.inPiP$),s(i.inFullscreen$,e.inFullscreen$),s(i.loadedMetadata$,e.loadedMetadataEvent$),s(this.player.error$,e.error$),s(this.player.fetcherRecoverableError$,e.fetcherRecoverableError$),s(this.player.fetcherError$,e.fetcherError$),s(this.player.manifestRequested$,e.manifestRequested$),s(this.player.firstBytesManifest$,e.firstBytesManifest$),s(this.player.manifestReceived$,e.manifestReceived$),s(this.player.firstBytesRequested$,e.firstBytesRequested$),s(this.player.firstBytesReceived$,e.firstBytesReceived$),s(this.player.lastConnectionType$,e.httpConnectionType$),s(this.player.lastConnectionReused$,e.httpConnectionReused$),s(this.player.lastConnectionMetrics$,e.httpConnectionMetrics$),s(this.player.lastDownloadMetrics$,e.httpDownloadMetrics$),s(this.player.isLive$,e.isLive$),s(this.player.lastRequestFirstBytes$.pipe((0,U.filter)(U.isNonNullable),(0,U.once)()),e.firstBytesEvent$),s(this.stallsManager.severeStallOccurred$,e.severeStallOccurred$),s(this.videoState.stateChangeEnded$.pipe((0,U.map)(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(Nt(this.video,t.isLooped,r)),this.subscription.add(i.volumeState$.subscribe(this.params.output.volume$,r)),bi({subscription:this.subscription,desiredState:t,videoElement$:this.params.output.element$,observableVideo:i}),this.subscription.add(Ze(this.video,t.volume,i.volumeState$,r)),this.subscription.add(ft(this.video,t.playbackRate,i.playbackRateState$,r)),this.elementSizeManager.connect({video:this.video,observableVideo:i}),s(vt(this.video,{threshold:this.params.tuning.autoTrackSelection.activeVideoAreaThreshold}),e.elementVisible$),this.subscription.add(i.playing$.subscribe(()=>{this.videoState.setState("playing"),C(t.playbackState,"playing"),this.scene3D&&this.scene3D.play()},r)).add(i.pause$.subscribe(()=>{this.videoState.setState("paused"),C(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"),C(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(),m=this.player.getCodecs();if((0,U.assertNonNullable)(p,"Manifest not loaded or empty"),!this.params.tuning.isAudioDisabled){let g=[];for(let v of p.audio){g.push(cl(v));let S=[];for(let E of v.representations){let A=ls(E);S.push(A),this.audioTracksMap.set(A,{stream:v,representation:E})}this.audioStreamsMap.set(v,S)}this.params.output.availableAudioStreams$.next(g)}let f=[];for(let g of p.video){f.push(ll(g));let v=[];for(let S of g.representations){let E=yi({...S,streamId:g.id});E&&(v.push(E),this.videoTracksMap.set(E,{stream:g,representation:S}))}this.videoStreamsMap.set(g,v)}this.params.output.availableVideoStreams$.next(f);for(let g of p.text)for(let v of g.representations){let S=ES(g,v);this.textTracksMap.set(S,{stream:g,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),m?.video&&this.params.output.availableVideoCodecs$.next(m.video),m?.audio&&this.params.output.availableAudioCodecs$.next(m.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=(0,U.merge)(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$,(0,U.fromEvent)(this.video,"progress")).pipe((0,U.filter)(()=>this.videoTracksMap.size>0)),{abrThrottle:u}=this.params.tuning.dash;u&&(o=o.pipe((0,U.throttle)(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 m=this.selectVideoAudioRepresentations();if(!m)return;let[f,g]=m,v=[...this.videoTracksMap.keys()].find(E=>this.videoTracksMap.get(E)?.representation.id===f.id);(0,U.isNonNullable)(v)&&(this.stallsManager.lastVideoTrackSelected=v);let S=this.params.desiredState.autoVideoTrackLimits.getTransition();if(S&&this.params.output.autoVideoTrackLimits$.next(S.to),l==="manifest_ready")await this.player.initRepresentations(f.id,g?.id,this.params.sourceHls);else if(await this.player.switchRepresentation("video",f.id),g){let E=!!t.audioStream.getTransition();await this.player.switchRepresentation("audio",g.id,E)}},r)),this.subscription.add((0,U.combine)({videoState:this.videoState.stateChangeEnded$,autoVideoTrackState:(0,U.merge)((0,U.observableFrom)([t.autoVideoTrackSwitching.getState()]),t.autoVideoTrackSwitching.stateChangeEnded$.pipe((0,U.map)(l=>l.to)))}).pipe((0,U.map)(({videoState:l,autoVideoTrackState:p})=>l.to!=="stopped"&&p),(0,U.filterChanged)()).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((0,U.filterChanged)()).subscribe(l=>{let p=[...this.videoTracksMap.entries()].find(([,{representation:S}])=>S.id===l);if(!p){e.currentVideoTrack$.next(void 0),e.currentVideoStream$.next(void 0);return}let[m,{stream:f}]=p,g=this.params.desiredState.videoStream.getTransition();g&&g.to&&g.to.id===f.id&&this.params.desiredState.videoStream.setState(g.to),e.currentVideoTrack$.next(m),e.currentVideoStream$.next(ll(f));let v=this.player.calculateDurationFromSegments();v&&this.params.output.duration$.next(v/1e3)},r)),this.subscription.add(this.player.currentAudioRepresentation$.pipe((0,U.filterChanged)()).subscribe(l=>{let p=[...this.audioTracksMap.entries()].find(([,{representation:v}])=>v.id===l);if(!p){e.currentAudioStream$.next(void 0);return}let[m,{stream:f}]=p,g=this.params.desiredState.audioStream.getTransition();g&&g.to&&g.to.id===f.id&&this.params.desiredState.audioStream.setState(g.to),e.currentAudioStream$.next(cl(f))},r)),this.subscription.add(this.player.currentVideoRepresentationInit$.subscribe(l=>{if(l?.is3dVideo&&this.params.tuning.spherical?.enabled)try{this.init3DScene(l),e.is3DVideo$.next(!0)}catch(p){e.warning$.next({id:"DashProvider",message:`DashProvider could not initialize 3D-scene: ${p}`})}else this.destroy3DScene(),this.params.tuning.spherical?.enabled&&e.is3DVideo$.next(!1)},r)),this.subscription.add(this.player.currentVideoSegmentLength$.subscribe(e.currentVideoSegmentLength$,r)),this.subscription.add(this.player.currentAudioSegmentLength$.subscribe(e.currentAudioSegmentLength$,r)),this.textTracksManager.connect(this.video,t,e);let c=t.playbackState.stateChangeStarted$.pipe((0,U.map)(({to:l})=>l==="ready"),(0,U.filterChanged)());this.subscription.add((0,U.merge)(c,t.autoVideoTrackSwitching.stateChangeStarted$,this.player.state$.stateChangeEnded$,(0,U.observableFrom)(["init"])).subscribe(()=>{let l=t.autoVideoTrackSwitching.getState(),m=t.playbackState.getState()==="ready"?this.params.tuning.dash.forwardBufferTargetPreload:l?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;this.player.setBufferTarget(m)})),this.subscription.add((0,U.merge)(c,this.player.state$.stateChangeEnded$,(0,U.observableFrom)(["init"])).subscribe(()=>this.player.setPreloadOnly(t.playbackState.getState()==="ready")));let d=(0,U.merge)(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,(0,U.observableFrom)(["init"])).pipe((0,U.debounce)(0));this.subscription.add(d.subscribe(this.syncPlayback,r))}selectVideoAudioRepresentations(){if(this.player.isStreamEnded)return;let e=this.params.tuning.useNewAutoSelectVideoTrack?Pa:xa,t=this.params.tuning.useNewAutoSelectVideoTrack?_n:Vn,i=this.params.tuning.useNewAutoSelectVideoTrack?Ft:Bn,{desiredState:r,output:s}=this.params,n=r.autoVideoTrackSwitching.getState(),o=r.videoTrack.getState()?.id,u=[...this.videoTracksMap.keys()].find(({id:B})=>B===o),c=s.currentVideoTrack$.getValue(),d=r.videoStream.getState()??(u&&this.videoTracksMap.get(u)?.stream)??this.videoStreamsMap.size===1?this.videoStreamsMap.keys().next().value:void 0;if(!d)return;let l=[...this.videoStreamsMap.keys()].find(({id:B})=>B===d.id),p=l&&this.videoStreamsMap.get(l);if(!p)return;let m=Ii(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 g=(this.video.duration*1e3||1/0)-this.video.currentTime*1e3,v=Math.min(m/Math.min(f,g||1/0),1),S=r.audioStream.getState()??(this.audioStreamsMap.size===1?this.audioStreamsMap.keys().next().value:void 0),E=[...this.audioStreamsMap.keys()].find(({id:B})=>B===S?.id)??this.audioStreamsMap.keys().next().value,A=0;if(E){if(u&&!n){let B=e(u,p,this.audioStreamsMap.get(E)??[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);A=Math.max(A,B?.bitrate??-1/0)}if(c){let B=e(c,p,this.audioStreamsMap.get(E)??[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);A=Math.max(A,B?.bitrate??-1/0)}}let x=u;(n||!x)&&(x=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:A,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 D=E&&t(x,p,this.audioStreamsMap.get(E)??[],{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}),N=this.videoTracksMap.get(x)?.representation,q=D&&this.audioTracksMap.get(D)?.representation;if(N&&q)return[N,q];if(N&&!q&&this.audioTracksMap.size===0)return[N,void 0]}prepare(e=0){this.player.initManifest(this.video,this.params.source.url,e)}playIfAllowed(){tt(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),C(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:U.ErrorCategory.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),Je(this.video,this.params.tuning.keepVideoElement,this.params.tuning.clearVideoElementInnerHTML),this.tracer.end()}};var vs=class extends Ji{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)}};var me=require("@vkontakte/videoplayer-shared/es2024");var Ss=class extends Ji{constructor(e){super(e),this.textTracksManager.destroy()}subscribe(){super.subscribe();let e=!1,t=-1,{output:i,observableVideo:r,desiredState:s,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 me.ValueSubject(1);n(r.playbackRateState$,o),this.params.tuning.dashCmafLive.catchupLiveForMutedInactiveTab&&this.subscription.add(i.elementVisible$.pipe((0,me.filterChanged)()).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(s.isLowLatency.stateChangeEnded$.pipe((0,me.map)(u=>u.to)).subscribe(this.player.isLowLatency$)).add((0,me.combine)({liveBufferTime:i.liveBufferTime$,liveAvailabilityStartTime:this.player.liveAvailabilityStartTime$}).pipe((0,me.map)(({liveBufferTime:u,liveAvailabilityStartTime:c})=>u&&c?u*1e3+c+t:void 0)).subscribe(i.liveTime$)).add((0,me.combine)({liveDuration:this.player.liveDuration$,liveStreamStatus:this.player.liveStreamStatus$,playbackRate:(0,me.merge)(r.playbackRateState$,new me.ValueSubject(1))}).pipe((0,me.filter)(({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||(0,me.isNullable)(d)||(t=u-d)})).add((0,me.combine)({time:i.liveBufferTime$,liveDuration:this.player.liveDuration$,playbackRate:(0,me.merge)(r.playbackRateState$,new me.ValueSubject(1))}).pipe((0,me.filterChanged)((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||(0,me.isNullable)(u)||(0,me.isNullable)(c))return;let m=-1*(c-u-t);i.position$.next(Math.min(m,0))})).add(this.player.currentLiveTextRepresentation$.subscribe(u=>{if(u){let c=wS(u);this.params.output.availableTextTracks$.next([c])}})),this.params.tuning.dashCmafLive.externalStopControl||this.subscription.add(this.player.liveStreamStatus$.pipe((0,me.filter)(u=>(0,me.isNonNullable)(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 _S="X-Playback-Duration",vl=async a=>{let e=await St(a),t=await e.text(),i=/#EXT-X-VK-PLAYBACK-DURATION:(\d+)/m.exec(t)?.[1];return i?parseInt(i,10):e.headers.has(_S)?parseInt(e.headers.get(_S),10):void 0};var re=require("@vkontakte/videoplayer-shared/es2024");var yl=j(_u(),1);var Io=require("@vkontakte/videoplayer-shared/es2024");var QM=a=>{let e=null;if(a.QUALITY&&(e=hi(a.QUALITY)),!e&&a.RESOLUTION){let[t,i]=a.RESOLUTION.split("x").map(r=>parseInt(r,10));e=(0,Io.videoSizeToQuality)({width:t,height:i})}return e??null},GM=(a,e)=>{let t=a.split(`
179
- `),i=[],r=[];for(let s=0;s<t.length;s++){let n=t[s],o=n.match(/^#EXT-X-STREAM-INF:(.+)/),u=n.match(/^#EXT-X-MEDIA:TYPE=SUBTITLES,(.+)/);if(!(!o&&!u)){if(o){let c=(0,yl.default)(o[1].split(",").map(v=>v.split("="))),d=c.QUALITY??`stream-${c.BANDWIDTH}`,l=QM(c),p;c.BANDWIDTH&&(p=parseInt(c.BANDWIDTH,10)/1e3||void 0),!p&&c["AVERAGE-BANDWIDTH"]&&(p=parseInt(c["AVERAGE-BANDWIDTH"],10)/1e3||void 0);let m=c["FRAME-RATE"]?parseFloat(c["FRAME-RATE"]):void 0,f;if(c.RESOLUTION){let[v,S]=c.RESOLUTION.split("x").map(E=>parseInt(E,10));v&&S&&(f={width:v,height:S})}let g=new URL(t[++s],e).toString();l&&i.push({id:d,quality:l,url:g,bandwidth:p,size:f,fps:m})}if(u){let c=(0,yl.default)(u[1].split(",").map(m=>{let f=m.indexOf("=");return[m.substring(0,f),m.substring(f+1)]}).map(([m,f])=>[m,f.replace(/^"|"$/g,"")])),d=c.URI?.replace(/playlist$/,"subtitles.vtt"),l=c.LANGUAGE,p=c.NAME;d&&l&&r.push({type:"internal",id:l,label:p,language:l,url:d,isAuto:!1})}}}if(!i.length)throw new Error("Empty manifest");return{qualityManifests:i,textTracks:r}},YM=a=>new Promise(e=>{setTimeout(()=>{e()},a)}),Sl=0,OS=async(a,e=a,t,i)=>{let s=await(await St(a,i)).text();Sl+=1;try{let{qualityManifests:n,textTracks:o}=GM(s,e);return{qualityManifests:n,textTracks:o}}catch{if(Sl<=t.manifestRetryMaxCount)return await YM((0,Io.getExponentialDelay)(Sl-1,{start:t.manifestRetryInterval,max:t.manifestRetryMaxInterval})),OS(a,e,t)}return{qualityManifests:[],textTracks:[]}},Eo=OS;var dt=require("@vkontakte/videoplayer-shared/es2024");var wo=class{constructor(e,t,i,r,s){this.subscription=new dt.Subscription;this.abortControllers={destroy:new be,nextManifest:null};this.prepareUrl=void 0;this.currentTextTrackData=null;this.availableTextTracks$=new dt.ValueSubject(null);this.getCurrentTime$=new dt.ValueSubject(null);this.error$=new dt.Subject;this.params={fetchManifestData:i,sourceUrl:r,downloadThreshold:s},this.subscription.add(e.pipe((0,dt.throttle)(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 St(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
- `),s=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:s,to:s+d},url:c}),s=s+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),s=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((0,dt.isNonNullable)(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 be;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:dt.ErrorCategory.WTF,thrown:t,message:e})}};var ys=class{constructor(e){this.subscription=new re.Subscription;this.videoState=new ee("stopped");this.textTracksManager=null;this.liveTextManager=null;this.manifests$=new re.ValueSubject([]);this.liveOffset=new Ui;this.manifestStartTime$=new re.ValueSubject(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(),s=this.params.desiredState.videoTrack.getTransition(),n=this.params.desiredState.autoVideoTrackSwitching.getTransition(),o=this.params.desiredState.autoVideoTrackLimits.getTransition();if(i==="stopped"){t!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.video.removeAttribute("src"),this.video.load(),this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.currentNativeBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),C(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(s||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?.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"?C(this.params.desiredState.playbackState,"ready"):i==="paused"?(this.videoState.setState("paused"),this.liveOffset.pause(),C(this.params.desiredState.playbackState,"paused")):i==="playing"&&(this.videoState.startTransitionTo("playing"),this.playIfAllowed());return;case"playing":i==="paused"?(this.videoState.startTransitionTo("paused"),this.liveOffset.pause(),this.video.paused?this.videoState.setState("paused"):this.video.pause()):r?.to==="playing"&&C(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?.to==="paused"&&(C(this.params.desiredState.playbackState,"paused"),this.liveOffset.pause());return;case"changing_manifest":break;default:return(0,re.assertNever)(t)}};this.params=e,this.video=Xe(e.container,e.tuning),this.params.output.element$.next(this.video),this.masterManifest={id:"master",quality:re.VideoQuality.INVARIANT,url:this.params.source.url};let t=(i,r)=>Eo(i,this.params.source.url,{manifestRetryInterval:this.params.tuning.manifestRetryInterval,manifestRetryMaxInterval:this.params.tuning.manifestRetryMaxInterval,manifestRetryMaxCount:this.params.tuning.manifestRetryMaxCount},r);this.params.tuning.useHlsLiveNewTextManager?this.liveTextManager=new wo(this.params.output.liveTime$,this.video,t,this.params.source.url,this.params.tuning.hlsLiveNewTextManagerDownloadThreshold):this.textTracksManager=new bt(e.source.url),t(this.generateLiveUrl()).then(({qualityManifests:i,textTracks:r})=>{i.length===0&&this.params.output.error$.next({id:"HlsLiveProviderInternal:empty_manifest",category:re.ErrorCategory.WTF,message:"HlsLiveProvider: there are no qualities in manifest"}),this.liveTextManager?.processTextTracks(r,this.params.source.url),this.manifests$.next([this.masterManifest,...i])}).catch(i=>{this.params.output.error$.next({id:"ExtractHlsQualities",category:re.ErrorCategory.NETWORK,message:"Error fetching manifest and extracting qualities",thrown:i})}),this.params.output.isLive$.next(!0),this.params.output.canChangePlaybackSpeed$.next(!1),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(He(this.params.source.url)),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.maxSeekBackTime$=new re.ValueSubject(e.source.maxSeekBackTime??1/0),this.subscribe()}selectManifest(){let{autoVideoTrackSwitching:e,videoTrack:t}=this.params.desiredState,i=e.getState(),r=t.getTransition(),s=r?.to?.id??t.getState()?.id??"master",n=this.manifests$.getValue();if(!n.length)return;let o=i?"master":s;return i&&!r&&t.startTransitionTo(this.masterManifest),n.find(u=>u.id===o)}subscribe(){let{output:e,desiredState:t}=this.params,i=o=>{e.error$.next({id:"HlsLiveProvider",category:re.ErrorCategory.WTF,message:"HlsLiveProvider internal logic error",thrown:o})},r=et(this.video);this.subscription.add(()=>r.destroy());let s=(o,u)=>this.subscription.add(o.subscribe(u,i));s(r.ended$,e.endedEvent$),s(r.error$,e.error$),s(r.isBuffering$,e.isBuffering$),s(r.currentBuffer$,e.currentBuffer$),s(r.currentBuffer$,e.currentNativeBuffer$),s(r.loadedMetadata$,e.firstBytesEvent$),s(r.loadedMetadata$,e.loadedMetadataEvent$),s(r.playing$,e.firstFrameEvent$),s(r.canplay$,e.canplay$),s(r.inPiP$,e.inPiP$),s(r.inFullscreen$,e.inFullscreen$),this.subscription.add(t.isLooped.stateChangeStarted$.subscribe(()=>t.isLooped.setState(!1),i)),this.subscription.add(Ze(this.video,t.volume,r.volumeState$,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(ft(this.video,t.playbackRate,r.playbackRateState$,i)),s(vt(this.video),e.elementVisible$),this.liveTextManager?(s(this.liveTextManager.getCurrentTime$,this.params.output.getCurrentTime$),s(this.liveTextManager.error$,this.params.output.error$)):this.textTracksManager&&this.textTracksManager.connect(this.video,t,e),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState("playing"),C(t.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),C(t.playbackState,"paused")},i)).add(r.canplay$.subscribe(()=>{this.videoState.getTransition()?.to==="ready"&&this.videoState.setState("ready"),this.videoState.getState()==="playing"&&this.playIfAllowed()},i)),this.liveTextManager&&this.subscription.add(this.liveTextManager.availableTextTracks$.subscribe(o=>{o&&this.params.output.availableTextTracks$.next(o)})),this.subscription.add(this.maxSeekBackTime$.pipe((0,re.filterChanged)(),(0,re.map)(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&&(0,re.isNonNullable)(c.to)){let l=c.to.id;this.params.desiredState.videoTrack.setState(c.to);let p=this.manifests$.getValue().find(m=>m.id===l);p&&(this.params.output.currentVideoTrack$.next(p),this.params.output.hostname$.next(He(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(()=>{let o=this.video?.getStartDate?.()?.getTime();this.manifestStartTime$.next(o||void 0)},i)),this.subscription.add((0,re.combine)({startTime:this.manifestStartTime$.pipe((0,re.filter)(re.isNonNullable)),currentTime:r.timeUpdate$}).subscribe(({startTime:o,currentTime:u})=>this.params.output.liveTime$.next(o+u*1e3),i)),this.subscription.add(this.manifests$.pipe((0,re.map)(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=(0,re.merge)(t.playbackState.stateChangeStarted$,t.seekState.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.stateChangeStarted$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,this.manifests$,(0,re.observableFrom)(["init"])).pipe((0,re.debounce)(0));this.subscription.add(n.subscribe(this.syncPlayback,i))}destroy(){this.subscription.unsubscribe(),this.textTracksManager?.destroy(),this.liveTextManager?.destroy(),this.params.output.element$.next(void 0),Je(this.video,this.params.tuning.keepVideoElement,this.params.tuning.clearVideoElementInnerHTML)}prepare(){let e=this.selectManifest();if((0,re.isNullable)(e))return;let t=this.params.desiredState.autoVideoTrackLimits.getTransition(),i=this.params.desiredState.autoVideoTrackLimits.getState(),r=new URL(e.url);if((t||i)&&e.id===this.masterManifest.id){let{max:o,min:u}=t?.to??i??{};for(let[c,d]of[[o,"mq"],[u,"lq"]]){let l=String(parseFloat(c||""));d&&c&&r.searchParams.set(d,l)}}let s=this.params.format==="HLS_LIVE_CMAF"?2:0,n=xe(r.toString(),this.liveOffset.getTotalOffset(),s);this.liveTextManager?.prepare(n),this.video.setAttribute("src",n),this.video.load(),vl(n).then(o=>{if(!(0,re.isNullable)(o))this.maxSeekBackTime$.next(o);else{let u=this.params.source.maxSeekBackTime??this.maxSeekBackTime$.getValue();((0,re.isNullable)(u)||!isFinite(u))&&St(n).then(c=>c.text()).then(c=>{let d=/#EXT-X-STREAM-INF[^\n]+\n(.+)/m.exec(c)?.[1];if(d){let l=new URL(d,n).toString();vl(l).then(p=>{(0,re.isNullable)(p)||this.maxSeekBackTime$.next(p)})}}).catch(()=>{})}})}playIfAllowed(){tt(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),this.liveOffset.pause(),C(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:re.ErrorCategory.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=xe(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}};var ce=require("@vkontakte/videoplayer-shared/es2024");var Ts=class{constructor(e){this.subscription=new ce.Subscription;this.videoState=new ee("stopped");this.manifests$=new ce.ValueSubject([]);this.unmuteAfterBrowserResetsHappened=new ce.ValueSubject(!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(),s=this.params.desiredState.videoTrack.getTransition(),n=this.params.desiredState.autoVideoTrackSwitching.getTransition(),o=this.params.desiredState.autoVideoTrackLimits.getTransition();if(i==="stopped"){t!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.video.removeAttribute("src"),this.video.load(),this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.currentNativeBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),C(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(s||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?.to!=="paused"&&c.state==="requested"&&this.seek(c.position),t){case"ready":i==="ready"?C(this.params.desiredState.playbackState,"ready"):i==="paused"?(this.videoState.setState("paused"),C(this.params.desiredState.playbackState,"paused")):i==="playing"&&(this.videoState.startTransitionTo("playing"),this.playIfAllowed());return;case"playing":i==="paused"?(this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()):r?.to==="playing"&&C(this.params.desiredState.playbackState,"playing");return;case"paused":i==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):r?.to==="paused"&&C(this.params.desiredState.playbackState,"paused");return;case"changing_manifest":break;default:return(0,ce.assertNever)(t)}};this.textTracksManager=new bt(e.source.url),this.params=e,this.video=Xe(e.container,e.tuning),this.params.output.element$.next(this.video),this.masterManifest={id:"master",quality:ce.VideoQuality.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(He(this.params.source.url)),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),this.params.output.manifestRequested$.next(),Eo(xe(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:ce.ErrorCategory.NETWORK,message:"Error fetching manifest and extracting qualities",thrown:t})),this.subscribe()}selectManifest(){let{autoVideoTrackSwitching:e,videoTrack:t}=this.params.desiredState,i=e.getState(),r=t.getTransition(),s=r?.to?.id??t.getState()?.id??"master",n=this.manifests$.getValue();if(!n.length)return;let o=i?"master":s;return i&&(!r||!r.from)&&t.startTransitionTo(this.masterManifest),n.find(u=>u.id===o)}subscribe(){let{output:e,desiredState:t}=this.params,i=o=>{e.error$.next({id:"HlsProvider",category:ce.ErrorCategory.WTF,message:"HlsProvider internal logic error",thrown:o})},r=et(this.video);this.subscription.add(()=>r.destroy());let s=(o,u)=>this.subscription.add(o.subscribe(u));if(s(r.timeUpdate$,e.position$),s(r.durationChange$,e.duration$),s(r.ended$,e.endedEvent$),s(r.looped$,e.loopedEvent$),s(r.error$,e.error$),s(r.isBuffering$,e.isBuffering$),s(r.currentBuffer$,e.currentBuffer$),s(r.currentBuffer$,e.currentNativeBuffer$),s(r.loadedMetadata$,e.firstBytesEvent$),s(r.loadedMetadata$,e.loadedMetadataEvent$),s(r.playing$,e.firstFrameEvent$),s(r.canplay$,e.canplay$),s(r.seeked$,e.seekedEvent$),s(r.inPiP$,e.inPiP$),s(r.inFullscreen$,e.inFullscreen$),s(this.videoState.stateChangeEnded$.pipe((0,ce.map)(o=>o.to)),this.params.output.playbackState$),this.subscription.add(Nt(this.video,t.isLooped,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(ft(this.video,t.playbackRate,r.playbackRateState$,i)),bi({subscription:this.subscription,desiredState:t,videoElement$:this.params.output.element$,observableVideo:r}),this.subscription.add(Ze(this.video,t.volume,r.volumeState$,i)),this.textTracksManager.connect(this.video,t,e),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState("playing"),C(t.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),C(t.playbackState,"paused")},i)).add(r.canplay$.subscribe(()=>{this.videoState.getTransition()?.to==="ready"&&this.videoState.setState("ready"),this.videoState.getState()==="playing"&&this.playIfAllowed()},i).add(r.loadedMetadata$.subscribe(()=>{let o=this.params.desiredState.seekState.getState(),u=this.videoState.getTransition(),c=this.params.desiredState.videoTrack.getTransition(),d=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(c&&(0,ce.isNonNullable)(c.to)){let m=c.to.id;this.params.desiredState.videoTrack.setState(c.to);let f=this.manifests$.getValue().find(g=>g.id===m);f&&(this.params.output.currentVideoTrack$.next(f),this.params.output.hostname$.next(He(f.url)))}let l=this.params.desiredState.playbackRate.getState(),p=this.params.output.element$.getValue()?.playbackRate;if(l!==p){let m=this.params.output.element$.getValue();m&&(this.params.desiredState.playbackRate.setState(l),m.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"),C(t.playbackState,"paused")})),this.subscription.add(this.manifests$.pipe((0,ce.map)(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)),!F.device.isIOS||!this.params.tuning.useNativeHLSTextTracks){let{textTracks:o}=this.video;this.subscription.add((0,ce.merge)((0,ce.fromEvent)(o,"addtrack"),(0,ce.fromEvent)(o,"removetrack"),(0,ce.fromEvent)(o,"change"),(0,ce.observableFrom)(["init"])).subscribe(()=>{for(let u=0;u<o.length;u++)o[u].mode="hidden"},i))}let n=(0,ce.merge)(t.playbackState.stateChangeStarted$,t.seekState.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.stateChangeStarted$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,this.manifests$,(0,ce.observableFrom)(["init"])).pipe((0,ce.debounce)(0));this.subscription.add(n.subscribe(this.syncPlayback,i))}destroy(){this.subscription.unsubscribe(),this.textTracksManager.destroy(),this.params.output.element$.next(void 0),Je(this.video,this.params.tuning.keepVideoElement,this.params.tuning.clearVideoElementInnerHTML)}prepare(){let e=this.selectManifest();if((0,ce.isNullable)(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:s,min:n}=t?.to??i??{};for(let[o,u]of[[s,"mq"],[n,"lq"]]){let c=String(parseFloat(o||""));u&&o&&r.searchParams.set(u,c)}}this.video.setAttribute("src",r.toString()),this.video.load()}playIfAllowed(){tt(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),C(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:ce.ErrorCategory.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next(),this.video.currentTime=e/1e3}};var NS=j(li(),1),Tl=j(Di(),1),FS=j(gt(),1);var Se=require("@vkontakte/videoplayer-shared/es2024");var Is=class{constructor(e){this.subscription=new Se.Subscription;this.videoState=new ee("stopped");this.trackUrls={};this.textTracksManager=new bt;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"),C(this.params.desiredState.playbackState,"stopped",!0));return}if(this.videoState.getTransition())return;let s=this.params.desiredState.autoVideoTrackLimits.getTransition(),n=this.params.desiredState.videoTrack.getTransition(),o=this.params.desiredState.seekState.getState();if(s&&e!=="ready"&&!n){this.handleQualityLimitTransition(s.to);return}if(e==="stopped"){this.videoState.startTransitionTo("ready"),this.prepare();return}if(n){let{currentTime:u}=this.video;this.prepare(),o.state==="none"&&this.params.desiredState.seekState.setState({state:"requested",position:u*1e3,forcePrecise:!0});return}switch(i?.to!=="paused"&&o.state==="requested"&&this.seek(o.position),e){case"ready":t==="ready"?C(this.params.desiredState.playbackState,"ready"):t==="paused"?(this.videoState.setState("paused"),C(this.params.desiredState.playbackState,"paused")):t==="playing"&&(this.videoState.startTransitionTo("playing"),this.playIfAllowed());return;case"playing":t==="paused"?(this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()):i?.to==="playing"&&C(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):i?.to==="paused"&&C(this.params.desiredState.playbackState,"paused");return;default:return(0,Se.assertNever)(e)}};this.params=e,this.video=Xe(e.container,e.tuning),this.params.output.element$.next(this.video),(0,NS.default)(this.params.source).reverse().forEach(([t,i],r)=>{let s=r.toString(10);this.trackUrls[s]={track:{quality:t,id:s},url:i}}),this.params.output.isLive$.next(!1),this.params.output.availableVideoTracks$.next((0,Tl.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:Se.ErrorCategory.WTF,message:"MpegProvider internal logic error",thrown:o})},r=et(this.video);this.subscription.add(()=>r.destroy());let s=(o,u)=>this.subscription.add(o.subscribe(u,i));s(r.timeUpdate$,e.position$),s(r.durationChange$,e.duration$),s(r.ended$,e.endedEvent$),s(r.looped$,e.loopedEvent$),s(r.error$,e.error$),s(r.isBuffering$,e.isBuffering$),s(r.currentBuffer$,e.currentNativeBuffer$),s(r.currentBuffer$,e.currentBuffer$),s(r.loadedMetadata$,e.firstBytesEvent$),s(r.loadedMetadata$,e.loadedMetadataEvent$),s(r.playing$,e.firstFrameEvent$),s(r.canplay$,e.canplay$),s(r.seeked$,e.seekedEvent$),s(r.inPiP$,e.inPiP$),s(r.inFullscreen$,e.inFullscreen$),s(this.videoState.stateChangeEnded$.pipe((0,Se.map)(o=>o.to)),this.params.output.playbackState$),this.subscription.add(Nt(this.video,t.isLooped,i)),bi({subscription:this.subscription,desiredState:t,videoElement$:this.params.output.element$,observableVideo:r}),this.subscription.add(Ze(this.video,t.volume,r.volumeState$,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(ft(this.video,t.playbackRate,r.playbackRateState$,i)),s(vt(this.video),e.elementVisible$),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState("playing"),C(t.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),C(t.playbackState,"paused")},i)).add(r.canplay$.subscribe(()=>{this.videoState.getTransition()?.to==="ready"&&this.videoState.setState("ready");let o=this.params.desiredState.videoTrack.getTransition();if(o&&(0,Se.isNonNullable)(o.to)){this.params.desiredState.videoTrack.setState(o.to),this.params.output.currentVideoTrack$.next(this.trackUrls[o.to.id].track);let u=this.params.desiredState.playbackRate.getState(),c=this.params.output.element$.getValue()?.playbackRate;if(u!==c){let d=this.params.output.element$.getValue();d&&(this.params.desiredState.playbackRate.setState(u),d.playbackRate=u)}}this.videoState.getState()==="playing"&&!this.video.ended&&this.playIfAllowed()},i)),this.params.tuning.changePlaybackStateToPausedWhenEnded&&this.subscription.add(r.ended$.subscribe(()=>{this.videoState.setState("paused"),C(t.playbackState,"paused")})),this.textTracksManager.connect(this.video,t,e);let n=(0,Se.merge)(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,(0,Se.observableFrom)(["init"])).pipe((0,Se.debounce)(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),Je(this.video,this.params.tuning.keepVideoElement,this.params.tuning.clearVideoElementInnerHTML)}prepare(){let e=this.params.desiredState.videoTrack.getState()?.id;(0,Se.assertNonNullable)(e,"MpegProvider: track is not selected");let{url:t}=this.trackUrls[e];(0,Se.assertNonNullable)(t,`MpegProvider: No url for ${e}`),this.params.tuning.requestQuick&&(t=gi(t)),this.video.setAttribute("src",t),this.video.load(),this.params.output.hostname$.next(He(t))}playIfAllowed(){tt(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),C(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:Se.ErrorCategory.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=c=>{this.params.output.currentVideoTrack$.next(c),this.params.desiredState.videoTrack.startTransitionTo(c)},i=c=>{let d=Ft(n,{container:this.video.getBoundingClientRect(),panelSize:this.params.panelSize,estimatedThroughput:this.params.dependencies.throughputEstimator.throughput$.getValue(),tuning:this.params.tuning.autoTrackSelection,forwardBufferHealth:0,limits:c,abrLogger:this.params.dependencies.abrLogger});t(d)},r=this.params.output.currentVideoTrack$.getValue()?.quality,s=!!(e.max||e.min),n=(0,Tl.default)(this.trackUrls).map(c=>c.track);if(!r||!s||wr(e,n[0].quality,(0,FS.default)(n,-1)?.quality)){i();return}let o=e.max?(0,Se.isLowerOrEqual)(r,e.max):!0,u=e.min?(0,Se.isHigherOrEqual)(r,e.min):!0;o&&u||i(e)}};var ye=require("@vkontakte/videoplayer-shared/es2024");var qS=require("@vkontakte/videoplayer-shared/es2024"),US=["stun:videostun.mycdn.me:80"],KM=1e3,XM=3,Il=()=>null,xo=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=Il;this.externalStopCallback=Il;this.externalErrorCallback=Il;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:US}]};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:qS.ErrorCategory.WTF,message:e.message})}async onPeerConnectionStream(e){let t=e.streams[0];this.stream&&this.stream.id===t.id||(this.stream=t,this.externalStartCallback(this.stream))}onPeerConnectionIceCandidate(e){e.candidate&&this.send({type:this.signalingType,inviteType:"CANDIDATE",candidate:e.candidate})}onPeerConnectionIceConnectionStateChange(){if(this.peerConnection){let e=this.peerConnection.iceConnectionState;["failed","closed"].indexOf(e)>-1&&(this.retryCount++,this.retryCount>this.options.maxRetryNumber?this.handleNetworkError():(this.closeConnections(),this.scheduleRetry()))}}async createOffer(){let e={offerToReceiveAudio:!0,offerToReceiveVideo:!0,voiceActivityDetection:!1};if(!this.peerConnection)throw new Error("Can not create offer - no peer connection instance ");let t=await this.peerConnection.createOffer(e),i=t.sdp||"";if(!/^a=rtpmap:\d+ H264\/\d+$/m.test(i))throw new Error("No h264 codec support error");return t}handleRTCError(e){try{this.externalErrorCallback(e||new Error("RTC connection error"))}catch(t){this.handleSystemError(t)}}handleNetworkError(){try{this.externalErrorCallback(new Error("Network error"))}catch(e){this.handleSystemError(e)}}send(e){this.ws&&this.ws.send(JSON.stringify(e))}parseMessage(e){try{return JSON.parse(e)}catch{throw new Error("Can not parse socket message")}}closeConnections(){let e=this.ws;e&&(this.ws=null,e.close(1e3)),this.removePeerConnection()}removePeerConnection(){let e=this.peerConnection;e&&(this.peerConnection=null,e.close(),e.ontrack=null,e.onicecandidate=null,e.oniceconnectionstatechange=null,e=null)}scheduleRetry(){this.retryTimeout=setTimeout(this.connectWS.bind(this),KM)}normalizeOptions(e={}){let t={stunServerList:US,maxRetryNumber:XM,errorChanel:null};return e.stunServerList&&(t.stunServerList=e.stunServerList),e.maxRetryNumber&&e.maxRetryNumber>0&&(t.maxRetryNumber=e.maxRetryNumber),t}};var Es=class{constructor(e){this.videoState=new ee("stopped");this.maxSeekBackTime$=new ye.ValueSubject(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"),C(this.params.desiredState.playbackState,"stopped",!0));return}if(this.videoState.getTransition())return;let s=this.params.desiredState.videoTrack.getTransition();if(e==="stopped"){this.videoState.startTransitionTo("ready"),this.prepare();return}if(s){this.prepare();return}switch(e){case"ready":t==="paused"?(this.videoState.setState("paused"),C(this.params.desiredState.playbackState,"paused")):t==="playing"&&(this.videoState.startTransitionTo("playing"),this.playIfAllowed());return;case"playing":t==="paused"?(this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()):i?.to==="playing"&&C(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):i?.to==="paused"&&C(this.params.desiredState.playbackState,"paused");return;default:return(0,ye.assertNever)(e)}};this.subscription=new ye.Subscription,this.params=e,this.log=this.params.dependencies.logger.createComponentLog("WebRTCLiveProvider"),this.video=Xe(e.container,e.tuning),this.liveStreamClient=new xo(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),Je(this.video,this.params.tuning.keepVideoElement,this.params.tuning.clearVideoElementInnerHTML)}subscribe(){let{output:e,desiredState:t}=this.params,i=n=>{e.error$.next({id:"WebRTCLiveProvider",category:ye.ErrorCategory.WTF,message:"WebRTCLiveProvider internal logic error",thrown:n})};this.subscription.add((0,ye.merge)(this.videoState.stateChangeStarted$.pipe((0,ye.map)(n=>({transition:n,type:"start"}))),this.videoState.stateChangeEnded$.pipe((0,ye.map)(n=>({transition:n,type:"end"})))).subscribe(({transition:n,type:o})=>{this.log({message:`[videoState change] ${o}: ${JSON.stringify(n)}`})}));let r=et(this.video);this.subscription.add(()=>r.destroy());let s=(n,o)=>this.subscription.add(n.subscribe(o,i));s(r.timeUpdate$,e.liveTime$),s(r.ended$,e.endedEvent$),s(r.looped$,e.loopedEvent$),s(r.error$,e.error$),s(r.isBuffering$,e.isBuffering$),s(r.currentBuffer$,e.currentBuffer$),s(r.currentBuffer$,e.currentNativeBuffer$),s(vt(this.video),this.params.output.elementVisible$),this.subscription.add(r.durationChange$.subscribe(n=>{e.duration$.next(n===1/0?0:n)})).add(r.canplay$.subscribe(()=>{this.videoState.getTransition()?.to==="ready"&&this.videoState.setState("ready")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused")},i)).add(r.playing$.subscribe(()=>{this.videoState.setState("playing")},i)).add(r.error$.subscribe(e.error$)).add(this.maxSeekBackTime$.subscribe(this.params.output.duration$)).add(Ze(this.video,t.volume,r.volumeState$,i)).add(r.volumeState$.subscribe(e.volume$,i)).add(this.videoState.stateChangeEnded$.subscribe(n=>{switch(n.to){case"stopped":e.position$.next(0),e.duration$.next(0),t.playbackState.setState("stopped");break;case"ready":break;case"paused":t.playbackState.setState("paused");break;case"playing":t.playbackState.setState("playing");break;default:return(0,ye.assertNever)(n.to)}},i)).add((0,ye.merge)(t.playbackState.stateChangeStarted$,this.videoState.stateChangeEnded$,(0,ye.observableFrom)(["init"])).pipe((0,ye.debounce)(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(He(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:ye.VideoQuality.INVARIANT}),this.video.srcObject=e,C(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:ye.ErrorCategory.EXTERNAL_API,message:e.message,thrown:e})}playIfAllowed(){tt(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),C(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:ye.ErrorCategory.DOM,thrown:e}))}prepare(){this.liveStreamClient.connect()}};var Nr=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}};var I=require("@vkontakte/videoplayer-shared/es2024");var Zt=require("@vkontakte/videoplayer-shared/es2024");var HS=a=>new Zt.Observable(e=>{let t=new Zt.Subscription,i=a.desiredPlaybackState$.stateChangeStarted$.pipe((0,Zt.map)(({from:c,to:d})=>`${c}-${d}`)),r=a.desiredPlaybackState$.stateChangeEnded$,s=a.providerChanged$.pipe((0,Zt.map)(({type:c})=>c!==void 0)),n=new Zt.Subject,o=0,u="unknown";return t.add(i.subscribe(c=>{o&&window.clearTimeout(o),u=c,o=window.setTimeout(()=>n.next(c),a.maxTransitionInterval),Q({m:"hangup.set",l:c,id:o})})),t.add(r.subscribe(()=>{Q({m:"hangup.cl",id:o}),window.clearTimeout(o),u="unknown",o=0})),t.add(s.subscribe(c=>{o&&(Q({m:"hangup.rs.0",id:o}),window.clearTimeout(o),o=0,c&&(o=window.setTimeout(()=>n.next(u),a.maxTransitionInterval),Q({m:"hangup.rs.1",id:o})))})),t.add(n.subscribe(e)),()=>{window.clearTimeout(o),t.unsubscribe()}});var Tt=require("@vkontakte/videoplayer-shared/es2024");function jS(){return new(window.AudioContext||window.webkitAudioContext)}var Fr=class a{constructor(e,t,i,r){this.providerOutput=e;this.provider$=t;this.volumeMultiplierError$=i;this.volumeMultiplier=r;this.destroyController=new be;this.subscriptions=new Tt.Subscription;this.audioContext=null;this.gainNode=null;this.mediaElementSource=null;this.subscriptions.add(this.provider$.pipe((0,Tt.filter)(s=>!!s.type),(0,Tt.once)()).subscribe(({type:s})=>this.subscribe(s)))}static{this.errorId="VolumeMultiplierManager"}subscribe(e){F.browser.isSafari&&e!=="MPEG"||this.subscriptions.add((0,Tt.combine)({video:this.providerOutput.element$,playbackState:this.providerOutput.playbackState$,volume:this.providerOutput.volume$}).pipe((0,Tt.filter)(({playbackState:t,video:i,volume:{muted:r,volume:s}})=>t==="playing"&&!!i&&!r&&!!s),(0,Tt.once)()).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=jS();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 s=i.createMediaElementSource(e);return this.mediaElementSource=s,s.connect(r),!0}cleanup(){this.mediaElementSource&&(this.mediaElementSource.disconnect(),this.mediaElementSource=null),this.gainNode&&(this.gainNode.disconnect(),this.gainNode=null),this.audioContext&&(this.audioContext.state!=="closed"&&this.audioContext.close(),this.audioContext=null)}destroy(){this.destroyController.abort(),this.subscriptions.unsubscribe(),this.cleanup()}handleError(e){this.volumeMultiplierError$.next({id:a.errorId,category:Tt.ErrorCategory.VIDEO_PIPELINE,message:e?.message??`${a.errorId} exception`,thrown:e})}};var JM={chunkDuration:5e3,maxParallelRequests:5},ws=class{constructor(e){this.current$=new I.ValueSubject({type:void 0});this.providerError$=new I.Subject;this.noAvailableProvidersError$=new I.Subject;this.volumeMultiplierError$=new I.Subject;this.providerOutput={position$:new I.ValueSubject(0),duration$:new I.ValueSubject(1/0),volume$:new I.ValueSubject({muted:!1,volume:1}),availableVideoStreams$:new I.ValueSubject([]),currentVideoStream$:new I.ValueSubject(void 0),availableVideoTracks$:new I.ValueSubject([]),currentVideoTrack$:new I.ValueSubject(void 0),availableVideoCodecs$:new I.ValueSubject([]),availableAudioStreams$:new I.ValueSubject([]),currentAudioStream$:new I.ValueSubject(void 0),availableAudioTracks$:new I.ValueSubject([]),availableAudioCodecs$:new I.ValueSubject([]),currentVideoSegmentLength$:new I.ValueSubject(0),currentAudioSegmentLength$:new I.ValueSubject(0),isAudioAvailable$:new I.ValueSubject(!0),autoVideoTrackLimitingAvailable$:new I.ValueSubject(!1),autoVideoTrackLimits$:new I.ValueSubject(void 0),currentBuffer$:new I.ValueSubject(void 0),currentNativeBuffer$:new I.ValueSubject(void 0),isBuffering$:new I.ValueSubject(!0),error$:new I.Subject,fetcherError$:new I.Subject,fetcherRecoverableError$:new I.Subject,warning$:new I.Subject,willSeekEvent$:new I.Subject,soundProhibitedEvent$:new I.Subject,seekedEvent$:new I.Subject,loopedEvent$:new I.Subject,endedEvent$:new I.Subject,manifestRequested$:new I.Subject,firstBytesManifest$:new I.Subject,manifestReceived$:new I.Subject,firstBytesRequested$:new I.Subject,firstBytesReceived$:new I.Subject,firstBytesEvent$:new I.Subject,loadedMetadataEvent$:new I.Subject,firstFrameEvent$:new I.Subject,canplay$:new I.Subject,isLive$:new I.ValueSubject(void 0),isLiveEnded$:new I.ValueSubject(null),canPlayLiveTailBuffer$:new I.ValueSubject(!1),isLowLatency$:new I.ValueSubject(!1),canChangePlaybackSpeed$:new I.ValueSubject(!0),liveTime$:new I.ValueSubject(void 0),liveBufferTime$:new I.ValueSubject(void 0),liveLatency$:new I.ValueSubject(void 0),severeStallOccurred$:new I.Subject,availableTextTracks$:new I.ValueSubject([]),currentTextTrack$:new I.ValueSubject(void 0),hostname$:new I.ValueSubject(void 0),httpConnectionType$:new I.ValueSubject(void 0),httpConnectionReused$:new I.ValueSubject(void 0),httpConnectionMetrics$:new I.ValueSubject(void 0),httpDownloadMetrics$:new I.ValueSubject(void 0),inPiP$:new I.ValueSubject(!1),inFullscreen$:new I.ValueSubject(!1),element$:new I.ValueSubject(void 0),elementVisible$:new I.ValueSubject(!0),availableSources$:new I.ValueSubject(void 0),is3DVideo$:new I.ValueSubject(!1),playbackState$:new I.ValueSubject(""),getCurrentTime$:new I.ValueSubject(null)};this.subscription=new I.Subscription;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=fu([...lS(this.params.tuning),...cS(this.params.tuning)]).filter(c=>(0,I.isNonNullable)(e.sources[c])),{forceFormat:i,formatsToAvoid:r}=this.params.tuning,s=[];i?s=[i]:r.length?s=[...t.filter(c=>!(0,El.default)(r,c)),...t.filter(c=>(0,El.default)(r,c))]:s=t,this.log({message:`Selected formats: ${s.join(" > ")}`}),this.tracer.log("Selected formats",(0,I.flattenObject)(s)),this.screenFormatsIterator=new Nr(s);let n=[...ol(!0),...ol(!1)];this.chromecastFormatsIterator=new Nr(n.filter(c=>(0,I.isNonNullable)(e.sources[c]))),this.providerOutput.availableSources$.next(e.sources);let{volumeMultiplier:o=1,tuning:{useVolumeMultiplier:u}}=this.params;u&&o!==1&&Fr.isSupported()&&(this.volumeMultiplierManager=new Fr(this.providerOutput,this.current$,this.volumeMultiplierError$,o))}init(){Q.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 Nr(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((0,I.isNullable)(t)){this.handleNoFormatsError(e);return}let i;try{i=this.createProvider(e,t)}catch(r){this.providerError$.next({id:"ProviderNotConstructed",category:I.ErrorCategory.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 s=this.providerOutput.isBuffering$;s.getValue()||s.next(!0)}createProvider(e,t){switch(this.log({message:`createProvider: ${e}:${t}`}),this.tracer.log("createProvider",{destination:e,format:t}),e){case"SCREEN":return this.createScreenProvider(t);case"CHROMECAST":return this.createChromecastProvider(t);default:return(0,I.assertNever)(e)}}createScreenProvider(e){let{sources:t,container:i,desiredState:r,panelSize:s}=this.params,n=this.providerOutput,o={container:i,source:null,desiredState:r,output:n,dependencies:this.params.dependencies,tuning:this.params.tuning,panelSize:s};switch(e){case"DASH_SEP":case"DASH_WEBM":case"DASH_WEBM_AV1":case"DASH_ONDEMAND":case"DASH_STREAMS":{let u=this.applyFailoverHost(t[e]),c=this.applyFailoverHost(t.HLS_ONDEMAND||t.HLS);(0,I.assertNonNullable)(u);let{useDashProviderVirtual:d,useDashProviderVirtualMobile:l}=this.params.tuning,{isMobile:p}=F.device;return!p&&d||p&&l?new hs({...o,source:u,sourceHls:c,forceVideoCodec:this.videoCodecsIterator?.getValue()}):new vs({...o,source:u,sourceHls:c,forceVideoCodec:this.videoCodecsIterator?.getValue()})}case"DASH_LIVE_CMAF":{let u=this.applyFailoverHost(t[e]);return(0,I.assertNonNullable)(u),this.params.tuning.useDashProviderVirtual&&!F.device.isMobile?new Or({...o,source:u}):this.params.tuning.useDashProviderVirtualMobile&&F.device.isMobile?new Or({...o,source:u}):new Ss({...o,source:u})}case"HLS":case"HLS_ONDEMAND":case"HLS_FMP4":{let u=this.applyFailoverHost(t[e]);return(0,I.assertNonNullable)(u),new Ts({...o,source:u})}case"HLS_LIVE":case"HLS_LIVE_CMAF":{let u=this.applyFailoverHost(t[e]);return(0,I.assertNonNullable)(u),new ys({...o,source:u,config:{maxPausedTime:this.params.tuning.live.maxPausedTime},format:e})}case"MPEG":{let u=this.applyFailoverHost(t[e]);return(0,I.assertNonNullable)(u),new Is({...o,source:u})}case"DASH_LIVE":{let u=this.applyFailoverHost(t[e]);return(0,I.assertNonNullable)(u),new vg({...o,source:u,config:{...JM,maxPausedTime:this.params.tuning.live.maxPausedTime}})}case"WEB_RTC_LIVE":{let u=this.applyFailoverHost(t[e]);return(0,I.assertNonNullable)(u),new Es({container:i,source:u,desiredState:r,output:n,dependencies:this.params.dependencies,tuning:this.params.tuning})}case"DASH":case"DASH_LIVE_WEBM":throw new Error(`${e} is no longer supported`);default:return(0,I.assertNever)(e)}}createChromecastProvider(e){let{sources:t,container:i,desiredState:r,meta:s}=this.params,n=this.providerOutput,o={meta:s,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 zt){let{chromecastConnector:c}=this.params.dependencies.chromecastInitializer;return(0,I.assertNonNullable)(c),new oa({...o,chromecastConnector:c})}let u=this.params.dependencies.chromecastInitializer.connection$.getValue();return(0,I.assertNonNullable)(u),new Ta({...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(0,I.assertNever)(e)}}skipFormat(e){switch(e){case"SCREEN":return this.screenFormatsIterator.next();case"CHROMECAST":return this.chromecastFormatsIterator.next();default:return(0,I.assertNever)(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(0,I.assertNever)(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 s=new URL(r);return s.host=t,s.toString()};if(e===void 0)return e;if("type"in e){if(e.type==="raw")return e;if(e.type==="url")return{...e,url:i(e.url)}}return(0,zS.default)((0,wl.default)(e).map(([r,s])=>[r,i(s)]))}initProviderErrorHandling(){let e=new I.Subscription,t=!1,i=0;e.add((0,I.merge)(this.providerOutput.error$.pipe((0,I.filter)(s=>!this.params.tuning.ignoreAudioRendererError||!s.message||!/AUDIO_RENDERER_ERROR/ig.test(s.message))),HS({desiredPlaybackState$:this.params.desiredState.playbackState,maxTransitionInterval:this.params.tuning.maxPlaybackTransitionInterval,position$:this.providerOutput.position$,providerChanged$:this.current$}).pipe((0,I.map)(s=>({id:`ProviderHangup:${s}`,category:I.ErrorCategory.WTF,message:`A ${s} 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 s=this.params.desiredState.playbackState.transitionEnded$.pipe((0,I.filter)(({to:n})=>n==="playing"),(0,I.once)()).subscribe(()=>t=!0);e.add(s)}));let r=()=>{let s=Q.drain(),{logDashLiveDebug:n,sendDashLiveDebug:o}=this.params.tuning;if(n&&(0,I.getWindow)().console.log(`===== DASH_LIVE DEBUG START ====
181
- `,s.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 Qs=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},$s=(e,t)=>{let n=e;n=Vs.default(n,`$$`,`$`);let r={RepresentationID:t.representationId,Number:t.segmentNumber,Bandwidth:t.bandwidth,Time:t.segmentTime};for(let[e,t]of Hs.default(r)){let r=RegExp(`\\$${e}(?:%0(\\d+)d)?\\$`,`g`);n=Vs.default(n,r,(e,n)=>Js.isNullable(t)?e:Js.isNullable(n)?t:Us.default(t,parseInt(n,10),`0`))}return n},ec=(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=Ws.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=Qs(_):Gs.default(b).filter(e=>e).length&&!s?g=Gs.default(b).reduce((e,t)=>e+(Qs(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]){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=Xs(n.getAttribute(`lang`)??``)??{},u=n.querySelector(`Label`)?.textContent?.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`&&qs(a),mime:i,representations:[]};for(let e of d){let r=e.getAttribute(`lang`)??void 0,d=u??n.getAttribute(`label`)??e.getAttribute(`label`)??void 0,p=e.querySelector(`BaseURL`)?.textContent?.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=(l.privateuse==null?void 0:Ei(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=$s(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=$s(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?Ys(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=$s(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=$s(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=$s(i,{...t,segmentNumber:e.toString(10),segmentTime:r.toString(10)})}else if(Js.isNonNullable(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=$s(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=$s(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`&&qs(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}},tc=l(Fn(),1),nc=l(at(),1),rc=require(`@vkontakte/videoplayer-shared/es2024`),ic;(e=>{e.VP9=`vp9`,e.AV1=`av1`,e.NONE=`none`,e.SMOOTH=`smooth`,e.POWER_EFFICIENT=`power_efficient`})(ic||={});var ac=e=>{let{webmDecodingInfo:t}=M.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:rc.assertNever(e)}},oc=({webmCodec:e,androidPreferredFormat:t,iosPreferredFormat:n,preferMultiStream:r})=>{let i=[...r?[`DASH_STREAMS`]:[],...ac(e),`DASH_SEP`,`DASH_ONDEMAND`,...r?[]:[`DASH_STREAMS`]],a=[...r?[`DASH_STREAMS`]:[],`DASH_SEP`,`DASH_ONDEMAND`,...r?[]:[`DASH_STREAMS`]];if(M.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`,...ac(e),`HLS`,`HLS_ONDEMAND`];case`dash_any_webm`:return[...ac(e),`MPEG`,...a,`HLS`,`HLS_ONDEMAND`];case`dash_sep`:return[`DASH_SEP`,`MPEG`,...ac(e),...a,`HLS`,`HLS_ONDEMAND`];default:rc.assertNever(t)}if(M.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:rc.assertNever(n)}return[...i,`HLS`,`HLS_ONDEMAND`,`MPEG`]},sc=({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=M.device.isMac&&M.browser.isSafari;if(M.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:rc.assertNever(e)}else s=M.video.nativeHlsSupported&&!c&&!M.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`]},cc=e=>e?[`HLS_LIVE`,`HLS_LIVE_CMAF`,`DASH_LIVE_CMAF`]:[`DASH_WEBM`,`DASH_WEBM_AV1`,`DASH_SEP`,`DASH_ONDEMAND`,`HLS`,`HLS_ONDEMAND`,`MPEG`],lc=e=>{if(e.size===0)return;if(e.size===1){let t=e.values().next();return tc.default(t.value.split(`.`),0)}for(let t of e){let e=tc.default(t.split(`.`),0);if(e===`opus`||e===`vp09`||e===`av01`)return e}let t=e.values().next();return tc.default(t.value.split(`.`),0)},uc=e=>{let t=e.map(e=>fc(e)),{codecs:n}=M.video;return pc().filter(e=>{if(nc.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})},dc=e=>{let t=e.map(e=>fc(e)),{codecs:n}=M.video;return mc().filter(e=>{if(nc.default(t,e))switch(e){case`opus`:return n.opus;case`mp4a`:return n.aac;default:return!1}else return!1})},fc=e=>e.split(`.`)[0].replace(`0`,``),pc=()=>[`av1`,`vp9`,`hev1`,`avc1`],mc=()=>[`opus`,`mp4a`],hc=l(An(),1),gc=(e,t={})=>{let n=t.timeout||1,r=performance.now();return ks.setTimeout(()=>{e({get didTimeout(){return t.timeout?!1:performance.now()-r-1>n},timeRemaining(){return Math.max(0,1+(performance.now()-r))}})},1)},_c=e=>ks.clearTimeout(e),vc=e=>typeof e==`function`&&e?.toString().endsWith(`{ [native code] }`),yc=!vc(ks.requestIdleCallback)||!vc(ks.cancelIdleCallback),bc=yc?gc:ks.requestIdleCallback,xc=yc?_c:ks.cancelIdleCallback,W=require(`@vkontakte/videoplayer-shared/es2024`),Sc=l(An(),1),Cc=e=>e.valid;class wc{source;boxParser;type;size;content;valid;children;cursor=0;get id(){return this.type}constructor(e,t){this.source=e,this.boxParser=t,this.children=[];let n=this.readUint32();this.type=this.readString(4),n===1&&(this.cursor+=8);let r=e.byteOffset+this.cursor,i;n===0||n===1?(this.size=void 0,this.valid=!1,i=void 0):n>e.byteLength?(this.size=n,this.valid=!1,i=Math.min(n-this.cursor,e.byteLength-this.cursor)):(this.size=n,this.valid=!0,i=n-this.cursor),this.content=new DataView(e.buffer,r,i)}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 Tc extends wc{}var Ec=require(`@vkontakte/videoplayer-shared/es2024`);class Dc extends wc{userData;constructor(e,t){if(super(e,t),!this.valid)return;let n=this.readString(16),r=new DataView(this.content.buffer,this.content.byteOffset+16,this.content.byteLength-16);this.userData=this.parseData(n,r)}parseData(e,t){switch(e){case`ondemandlivejson`:{let e=new TextDecoder(`ascii`).decode(t),n=JSON.parse(e);return{received:n[`t-in`],prepared:n[`t-out`]}}default:Ec.assertNever(e)}}}class Oc extends wc{majorBrand;minorVersion;compatibleBrands;constructor(e,t){if(super(e,t),!this.valid)return;this.compatibleBrands=[],this.majorBrand=this.readString(4),this.minorVersion=this.readUint32();let n=new DataView(this.content.buffer,this.content.byteOffset+8,this.content.byteLength-8);for(let e=0;e<n.byteLength;e+=4){let e=this.readString(4);this.compatibleBrands.push(e)}}}class kc extends wc{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}}class Ac extends wc{version;flags;constructor(e,t){if(super(e,t),!this.valid)return;let n=this.readUint32();this.version=n>>>24,this.flags=n&16777215,this.content=new DataView(this.content.buffer,this.content.byteOffset+4,this.content.byteLength-4)}}class jc extends Ac{creationTime;modificationTime;timescale;duration;rate;volume;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())}}class Mc extends wc{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}}class Nc extends wc{data;constructor(e,t){super(e,t),this.data=this.content}}class Pc extends Ac{referenceId;timescale;earliestPresentationTime32;firstOffset32;earliestPresentationTime64;firstOffset64;reserved;referenceCount;segments;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 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 Fc extends wc{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}}class Ic extends wc{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}}class Lc extends Ac{stereoMode;constructor(e,t){if(super(e,t),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 Rc extends Ac{poseYawDegrees;posePitchDegrees;poseRollDegrees;constructor(e,t){super(e,t),this.valid&&(this.poseYawDegrees=this.readUint32(),this.posePitchDegrees=this.readUint32(),this.poseRollDegrees=this.readUint32())}}class zc extends Ac{projectionBoundsTop;projectionBoundsBottom;projectionBoundsLeft;projectionBoundsRight;constructor(e,t){super(e,t),this.valid&&(this.projectionBoundsTop=this.readUint32(),this.projectionBoundsBottom=this.readUint32(),this.projectionBoundsLeft=this.readUint32(),this.projectionBoundsRight=this.readUint32())}}class Bc extends wc{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}}class Vc extends Ac{creationTime;modificationTime;trackId;duration;layer;alternateGroup;volume;matrix;width;height;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()}}class Hc extends wc{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}}class Uc extends wc{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}}class Wc extends Ac{sequenceNumber;constructor(e,t){super(e,t),this.valid&&(this.sequenceNumber=this.readUint32())}}class Gc extends wc{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}}class Kc extends Ac{trackId;baseDataOffset;sampleDescriptionIndex;defaultSampleDuration;defaultSampleSize;defaultSampleFlags;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())}}class qc extends Ac{baseMediaDecodeTime32=0;baseMediaDecodeTime64=BigInt(0);get baseMediaDecodeTime(){return this.version===1?this.baseMediaDecodeTime64:this.baseMediaDecodeTime32}constructor(e,t){super(e,t),this.version===1?this.baseMediaDecodeTime64=this.readUint64():this.baseMediaDecodeTime32=this.readUint32()}}class Jc extends Ac{sampleCount;dataOffset;firstSampleFlags;sampleDuration=[];sampleSize=[];sampleFlags=[];sampleCompositionTimeOffset=[];optionalFields=0;constructor(e,t){super(e,t),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 Yc extends wc{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}}class Xc extends Ac{entryCount;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)))}}class Zc extends wc{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 Qc={ftyp:Oc,moov:kc,mvhd:jc,moof:Mc,mdat:Nc,sidx:Pc,trak:Fc,mdia:Bc,mfhd:Wc,tkhd:Vc,traf:Gc,tfhd:Kc,tfdt:qc,trun:Jc,minf:Hc,sv3d:Ic,st3d:Lc,prhd:Rc,proj:Uc,equi:zc,uuid:Dc,stbl:Yc,stsd:Xc,avc1:Zc,unknown:Tc};class $c{options;constructor(e={}){this.options={offset:0,...e}}parse(e){let t=[],n=this.options.offset;for(;n<e.byteLength;){let r=new TextDecoder(`ascii`).decode(new DataView(e.buffer,e.byteOffset+n+4,4)),i;try{i=this.createBox(r,new DataView(e.buffer,e.byteOffset+n,e.byteLength-n))}catch(e){if(!(e instanceof RangeError))throw e}if(!i||!Cc(i))break;t.push(i),n+=i.size}return t}createBox(e,t){let n=Qc[e];return n?new n(t,new $c):new Tc(t,new $c)}}class el{index;constructor(e){this.index={},this.indexBoxLevel(e)}indexBoxLevel(e){e.forEach(e=>{Cc(e)&&(this.index[e.type]??=[],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 tl=new TextDecoder(`ascii`),nl={validateData:e=>tl.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 el(new $c().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 Pc(e,new $c),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 el(new $c().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 el(new $c().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 el(new $c().parse(e)),n={},r=t.findAll(`uuid`),i=Sc.default(r,-1);return i?{serverDataReceivedTimestamp:i.userData.received,serverDataPreparedTime:i.userData.received}:n},getTimescaleFromIndex:e=>new el(new $c().parse(e)).find(`sidx`)?.timescale},rl=l(at(),1),il=require(`@vkontakte/videoplayer-shared/es2024`),al=require(`@vkontakte/videoplayer-shared/es2024`),ol={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`}},sl=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=cl(e,n),i=r in ol,a=i?ol[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=cl(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}},cl=(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},ll=(e,t)=>{switch(t){case`int`:return e.getInt8(0);case`uint`:return cl(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:al.assertNever(t)}},ul=(e,t)=>{let n=0;for(;n<e.byteLength;){let r=sl(new DataView(e.buffer,e.byteOffset+n));if(!t(r))return;r.type===`master`&&ul(r.value,t),n=r.value.byteOffset-e.byteOffset+r.valueSize}},dl=e=>{if(e.getUint32(0)!==440786851)return!1;let t,n,r;return ul(sl(e).value,({tag:e,type:i,value:a})=>(e===17143?t=ll(a,i):e===17026?n=ll(a,i):e===17029&&(r=ll(a,i)),!0)),(t===void 0||t<=1)&&n!==void 0&&n===`webm`&&(r===void 0||r<=2)},fl=[357149030,290298740,374648427,174,224,30320,30321,30322,272869232,524531317,475249515,423732329,307544935],pl=[231,22612,22743,167,171,163,160,175],ml={validateData:dl,parseInit:e=>{let t,n,r,i,a=!1,o=!1,s=!1,c,l,u=!1;return ul(e,({tag:e,type:d,value:f,valueSize:p})=>(e===21419?l=cl(ll(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=ll(f,d):e===17545?i=ll(f,d):e===21420&&l===475249515?c=ll(f,d):e===374648427?ul(f,({tag:e,type:t,value:n})=>e===30321?(u=ll(n,t)===1,!1):!0):a&&o&&Ei(fl,e)&&(s=!0),!s)),il.assertNonNullable(t,`Failed to parse webm Segment start`),il.assertNonNullable(n,`Failed to parse webm Segment end`),il.assertNonNullable(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(il.isNullable(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=>il.isNonNullable(e.time)&&il.isNonNullable(e.position),a=[],o;return ul(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=ll(s,t));break;case 183:break;case 241:o&&(o.position=ll(s,t));break;default:n&&Ei(fl,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{ul(e,r=>r.tag===524531317?r.tagSize<=e.byteLength?(t=r.tagSize,!1):(t+=r.tagHeaderSize,!0):Ei(pl,r.tag)?(t+r.tagSize<=e.byteLength&&(t+=r.tagSize,n||=rl.default([163,160,175],r.tag)),!0):!1)}catch{}return t>0&&t<=e.byteLength&&n?new DataView(e.buffer,e.byteOffset,t):null}},hl=e=>{let t=/^(.+)\/([^;]+)(?:;.*)?$/.exec(e);if(t){let[,e,n]=t;if(e===`audio`||e===`video`)switch(n){case`webm`:return ml;case`mp4`:return nl}}throw ReferenceError(`Unsupported mime type ${e}`)},gl=l(Fn(),1),_l=require(`@vkontakte/videoplayer-shared/es2024`),vl=({id:e,width:t,height:n,bitrate:r,fps:i,quality:a,streamId:o,tvDisabled:s})=>{let c=(a?ga(a):void 0)??_l.videoSizeToQuality({width:t,height:n});return c&&{id:e,quality:c,bitrate:r,size:{width:t,height:n},fps:i,streamId:o,tvDisabled:s}},yl=({id:e,bitrate:t})=>({id:e,bitrate:t}),bl=({language:e,label:t},{id:n,url:r,isAuto:i})=>({id:n,url:r,isAuto:i,type:`internal`,language:e,label:t}),xl=({language:e,label:t,id:n,url:r,isAuto:i})=>({id:n,url:r,isAuto:i,type:`internal`,language:e,label:t}),Sl=({id:e,language:t,label:n,codecs:r,isDefault:i})=>({id:e,language:t,label:n,codec:gl.default(r.split(`.`),0),isDefault:i}),Cl=({id:e,language:t,label:n,hdr:r,codecs:i})=>({id:e,language:t,hdr:r,label:n,codec:gl.default(i.split(`.`),0)}),wl=e=>`url`in e,Tl=e=>e.type===`template`;class El{error$=new W.Subject;playingRepresentation$=new W.ValueSubject(void 0);playingRepresentationInit$=new W.ValueSubject(void 0);currentSegmentLength$=new W.ValueSubject(0);onLastSegment$=new W.ValueSubject(!1);fullyBuffered$=new W.ValueSubject(!1);kind;nativeBufferManager;fetcher;tuning;representations;playingRepresentationId;downloadingRepresentationId;switchingRepresentationId;initData=new Map;initDataPromises=new Map;idleCallbacks=new Map;parsedInitData=new Map;segments=new Map;containerParser;bufferPlaybackQueue=[];downloadingBufferItems=[];preloadOnly=!1;forwardBufferTarget;failedDownloads=0;lastDataObtainedTimestampMs=0;loadByteRangeSegmentsTimeoutId=0;currentVirtualBufferSize=0;baseUrls=[];baseUrlsIndex=0;maintainPlaybackBufferMutex=!1;maintainNativeBufferMutex=!1;bufferClearingMutex=!1;abortNativeBufferMutex=!1;switchMutex=!1;destroyAbortController=new Ns;downloadAbortController=new Ns;subscription=new W.Subscription;getCurrentPosition;getCurrentStallDuration;constructor(e,t,n,{fetcher:r,tuning:i,getCurrentPosition:a,getCurrentStallDuration:o,manifest:s}){this.kind=e,this.nativeBufferManager=t,this.fetcher=r,this.tuning=i,this.getCurrentPosition=a,this.getCurrentStallDuration=o,this.forwardBufferTarget=i.dash.forwardBufferTargetAuto,this.baseUrls=s?.baseUrls??[],this.representations=new Map(n.map(e=>[e.id,e]))}startWith=W.abortable(this.destroyAbortController.signal,async function*(e){let t=this.representations.get(e);W.assertNonNullable(t,`Cannot find representation ${e}`),this.playingRepresentationId=e,this.downloadingRepresentationId=e,this.containerParser=hl(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);W.assertNonNullable(n,`No init buffer for starting representation`),W.assertNonNullable(r,`No segments for starting representation`),await this.nativeBufferManager.addInitSegment(n),this.playingRepresentation$.next(this.playingRepresentationId),this.playingRepresentationInit$.next(i)}.bind(this));switchTo=W.abortable(this.destroyAbortController.signal,async function*(e,t=!0){if(W.isNullable(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);W.assertNonNullable(r,`No such representation ${e}`),W.assertNonNullable(n,`No such representation ${this.downloadingRepresentationId}`),yield this.loadInitIfNeeded(r,`high`);let i=this.initData.get(r.id),a=this.segments.get(r.id);W.assertNonNullable(i,`No init buffer for switching representation`),W.assertNonNullable(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 W.assertNonNullable(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));async seek(e){await this.abort(),await this.clearBuffer(),await this.maintain(e)}async maintain(e=this.getCurrentPosition()){W.isNullable(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=W.isNonNullable(e)&&W.isNonNullable(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 W.isNullable(this.playingRepresentationId)?0:(this.segments.get(this.playingRepresentationId)?.[0].time.from??0)/1e3}calculateDurationFromSegments(e){let t=this.segments.get(e);return(t?hc.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=W.getWindow();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=vl(e),i=vl(t);n=W.isNonNullable(r)&&W.isNonNullable(i)&&W.isHigher(i.quality,r.quality)}else if(this.kind===`audio`){let r=yl(e),i=yl(t);n=W.isNonNullable(r?.bitrate)&&W.isNonNullable(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 Ns,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,bc(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():W.isNonNullable(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),W.isNullable(a)||W.isNullable(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:W.ErrorCategory.WTF,message:`loadInit threw`,thrown:e})}}async maintainNativeBuffer(){let e=this.getCurrentPosition(),t=this.segments.get(this.downloadingRepresentationId??``),n=t?.[t?.length-1];if(W.isNullable(e)||W.isNullable(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;W.isNonNullable(a)&&W.isNonNullable(i)&&W.isNonNullable(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)),W.isNonNullable(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)),W.isNonNullable(o)&&this.withinRemoveInterval(e,o.segment.time)&&await this.removeSegment(o,s),this.pruneVirtualBuffer(e),this.maintainNativeBufferMutex=!1}async maintainPlaybackBuffer(e){W.assertNonNullable(this.downloadingRepresentationId);let t=this.segments.get(this.downloadingRepresentationId),n=this.representations.get(this.downloadingRepresentationId);if(W.isNullable(t)||W.isNullable(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);W.isNonNullable(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(W.isNullable(t)||t.length===0)return;let n=t[t?.length-1];W.isNullable(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){W.assertNonNullable(this.downloadingRepresentationId);let n=this.getPlaybackBufferState(),r,i;W.isNonNullable(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 W.isNonNullable(e)?e+r>=t&&e<n:!1}withinAppendInterval(e,{from:t,to:n}){let{actionTimeShiftFromSegment:r}=this.tuning.dash;return W.isNonNullable(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 W.isNonNullable(e)?e-n>t:!1}waitExponentialDownloadDelay=W.abortable(this.downloadAbortController.signal,async function*(){let e=W.getExponentialDelay(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(t=>{let n=W.getWindow();this.loadByteRangeSegmentsTimeoutId=n.setTimeout(t,e),this.subscription.add(W.fromEvent(n,`online`).pipe(W.once()).subscribe(()=>{t(),n.clearTimeout(this.loadByteRangeSegmentsTimeoutId)}))})}.bind(this));async appendSegmentFully(e,t){W.isNullable(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(W.isNullable(e.segment.data)||W.isNullable(e.segment.loadedBytes)||W.isNullable(e.segment.feedingBytes)||W.isNullable(e.segment.fedBytes)||W.isNullable(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||W.isNonNullable(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)W.isNonNullable(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())W.isNonNullable(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)}}var Dl=require(`@vkontakte/videoplayer-shared/es2024`);class Ol extends El{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=Dl.now(),this.failedDownloads=0}catch(e){this.abortDownloadingItems(),Dl.isAbortError(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($o(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=Dl.now(),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:Dl.ErrorCategory.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||Dl.isNullable(o)||Dl.isNullable(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)):Dl.isNonNullable(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($o(e.segmentReference))throw Error(`Representation is not byte range type`);e.segmentReference.url=t}}var kl=require(`@vkontakte/videoplayer-shared/es2024`);class Al extends El{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=kl.now(),kl.isNullable(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(),kl.isAbortError(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=kl.now(),await this.onSomeDataLoaded({downloadingItems:e,dataView:n,loaded:i,signal:r,representationId:t.id})}catch(e){this.error$.next({id:`SegmentFeeding`,category:kl.ErrorCategory.VIDEO_PIPELINE,message:`Error when feeding segments`,thrown:e})}},signal:r,bufferOptimisation:this.tuning.dash.fetcherBufferOptimisation}}getFetchUrl(e,t){if(!$o(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||kl.isNullable(s)||kl.isNullable(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(!$o(e.segmentReference))throw Error(`Representation is not template type`);e.segmentReference.baseUrl=t}}var jl=l(Gn(),1),Ml=require(`@vkontakte/videoplayer-shared/es2024`);class Nl extends Al{currentLiveSegmentServerLatency$=new Ml.ValueSubject(0);currentLowLatencySegmentLength$=new Ml.ValueSubject(0);liveInitialAdditionalOffset=0;isSeekingLive=!1;isActiveLowLatency;constructor(e,t,n,r){super(e,t,n,r),this.isActiveLowLatency=r.isActiveLowLatency}updateManifest(e){if(!e||[...this.segments.values()].every(e=>!e.length))return;let t=jl.default(e.streams[this.kind],e=>e.representations);for(let e of t){if(Ml.isNullable(e)||!$o(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=$a(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;Ml.assertNonNullable(e);let t=this.segments.get(e);if(t?.length){let n={representationId:e,segmentIndex:t.length-1,segment:t[t.length-1]};this.updateLowLatencyLive(n)}}getLiveSegmentsToLoadState(e){let t=e?.streams[this.kind],n=(t==null?void 0:jl.default(t,e=>e.representations)).find(e=>e.id===this.downloadingRepresentationId);if(Ml.isNullable(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(Ml.isNullable(this.playingRepresentationId))return 0;let e=this.representations.get(this.playingRepresentationId)?.segmentReference;return Ml.isNullable(e)||!$o(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),Ml.isNullable(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(Ml.isNullable(e.segment.data)||Ml.isNullable(n)||!$o(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(!$o(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=$s(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),Ml.isNullable(a)||Ml.isNullable(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:Ml.ErrorCategory.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 Pl{static getBufferManager(e,t,n,r){return r.manifest?.live?new Nl(e,t,n,r):$o(n[0].segmentReference)?new Al(e,t,n,r):new Ol(e,t,n,r)}}var Fl=require(`@vkontakte/videoplayer-shared/es2024`),Il=require(`@vkontakte/videoplayer-shared/es2024`),Ll=18,Rl=!1;try{Rl=M.browser.isSafari&&!!M.browser.safariVersion&&M.browser.safariVersion<=Ll}catch(e){console.error(e)}class zl{bufferFull$=new Il.Subject;error$=new Il.Subject;buffer;queue=[];currentTask=null;destroyed=!1;abortRequested=!1;isAbortFixEnabled=!1;constructor(e,t=!1){this.buffer=e,this.isAbortFixEnabled=t,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=Rl&&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}}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:Il.ErrorCategory.VIDEO_PIPELINE,message:`Buffer appending or removal failed`,thrown: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:Il.ErrorCategory.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:Il.assertNever(t)}}}var Bl=zl,Vl=(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 Hl{error$=new Fl.Subject;mediaSource;sourceBuffer;sourceBufferTaskQueue;subscription=new Fl.Subscription;constructor(e){this.mediaSource=e}init(e,t,n=!1){this.sourceBuffer=this.mediaSource.addSourceBuffer(`${e}; codecs="${t}"`),this.sourceBufferTaskQueue=new Bl(this.sourceBuffer,n),this.subscription.add(this.sourceBufferTaskQueue.error$.subscribe(e=>this.error$.next(e))),this.subscription.add(Fl.fromEvent(this.sourceBuffer,`error`).subscribe(()=>this.error$.next({id:`SourceBuffer`,category:Fl.ErrorCategory.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(Fl.isNullable(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(){!Fl.isNullable(this.sourceBuffer)&&!this.sourceBuffer.updating&&(this.sourceBuffer.mode=`segments`)}getBufferState(){if(Fl.isNullable(this.sourceBuffer)||!bo(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 Fl.isNullable(this.sourceBuffer)||!bo(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length||Fl.isNullable(e)?0:Vl(this.sourceBuffer.buffered,e)}async abortBuffer(e){return Fl.isNullable(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 Ul=(e,t)=>{e.video.forEach(e=>{e.representations.forEach(e=>{let{height:n,codecs:r,fps:i}=e,a=t.find(([e,t,i])=>e===`${n}p`&&fc(r)===i)?.[1];e.tvDisabled=Wl(a)&&Wl(i)&&i>a})})};function Wl(e){return typeof e==`number`&&Number.isInteger(e)}var Gl=[`timeupdate`,`progress`,`play`,`seeked`,`stalled`,`waiting`],Kl=[`timeupdate`,`progress`,`loadeddata`,`playing`,`seeked`];class ql{element=null;manifestUrlString=``;source=null;manifest=null;tuning;tracer;forceVideoCodec;videoBufferManager;audioBufferManager;bufferManagers=[];videoNativeBufferManager;audioNativeBufferManager;nativeBufferManagers=[];throughputEstimator;subscription=new H.Subscription;subscriptionRemovable=new H.SubscriptionRemovable;representationSubscription=new H.Subscription;fetcher;forceEnded$=new H.Subject;stallWatchdogSubscription;destroyController=new Ns;state$=new P(`none`);currentVideoRepresentation$=new H.ValueSubject(void 0);currentVideoRepresentationInit$=new H.ValueSubject(void 0);currentAudioRepresentation$=new H.ValueSubject(void 0);currentVideoSegmentLength$=new H.ValueSubject(0);currentAudioSegmentLength$=new H.ValueSubject(0);error$=new H.Subject;manifestRequested=new H.Subject;manifestReceived=new H.Subject;firstBytesRequested=new H.Subject;firstBytesReceived=new H.Subject;lastConnectionType$=new H.ValueSubject(void 0);lastConnectionReused$=new H.ValueSubject(void 0);lastRequestFirstBytes$=new H.ValueSubject(void 0);lastConnectionMetrics$=new H.ValueSubject(void 0);lastDownloadMetrics$=new H.ValueSubject(void 0);currentLiveTextRepresentation$=new H.ValueSubject(null);timeoutSourceOpenId;isLive$=new H.ValueSubject(!1);isActiveLive$=new H.ValueSubject(!1);isLowLatency$=new H.ValueSubject(!1);liveDuration$=new H.ValueSubject(0);liveSeekableDuration$=new H.ValueSubject(0);liveAvailabilityStartTime$=new H.ValueSubject(0);liveStreamStatus$=new H.ValueSubject(void 0);currentBuffer$=new H.ValueSubject({from:0,to:0});bufferLength$=new H.ValueSubject(0);nativeBufferLength$=new H.ValueSubject(0);liveLatency$=new H.ValueSubject(void 0);liveLoadBufferLength$=new H.ValueSubject(0);livePositionFromPlayer$=new H.ValueSubject(0);currentStallDuration$=new H.ValueSubject(0);videoLastDataObtainedTimestamp$=new H.ValueSubject(0);fetcherRecoverableError$=new H.Subject;fetcherError$=new H.Subject;constructor(e){this.throughputEstimator=e.throughputEstimator,this.tuning=e.tuning,this.tracer=e.tracer.createComponentTracer(this.constructor.name),this.forceVideoCodec=e.forceVideoCodec,this.fetcher=new Bs({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()}initRepresentations=H.abortable(this.destroyController.signal,async function*(e,t,n){this.tracer.log(`initRepresentationsStart`,H.flattenObject({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(),H.assertNonNullable(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));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:H.ErrorCategory.PARSER,message:`No playable video representations`})}initBuffer(){H.assertNonNullable(this.element),this.state$.setState(`running`),this.subscription.add(H.merge(...Gl.map(e=>H.fromEvent(this.element,e)),H.fromEvent(H.getWindow(),`online`),H.interval(this.tuning.dash.tickMaintainInterval)).subscribe(()=>this.tick(),e=>this.error$.next({id:`DashVKPlayer`,category:H.ErrorCategory.WTF,message:`Internal logic error`,thrown:e})));let e=[...this.source?.activeSourceBuffers??[]];this.subscription.add(H.merge(...e.map(e=>H.fromEvent(e,`updateend`))).subscribe(e=>this.reinitDecoderIfNeeded())),this.subscription.add(H.fromEvent(this.element,`waiting`).subscribe(e=>{this.stallWatchdogSubscription&&(this.stallWatchdogSubscription.unsubscribe(),this.subscriptionRemovable.remove(this.stallWatchdogSubscription)),this.stallWatchdogSubscription=H.interval(this.tuning.dash.stallWatchdogInterval).subscribe(()=>this.stallWatchdogIntervalCallback(),e=>this.error$.next({id:`StallWatchdogCallback`,category:H.ErrorCategory.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){H.assertNonNullable(this.element),H.assertNonNullable(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,M.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`,H.flattenObject({requestedPosition:e,forcePrecise:t,position:n}))}warmUpMediaSourceIfNeeded(e=this.element?.currentTime){H.isNonNullable(this.element)&&H.isNonNullable(this.source)&&H.isNonNullable(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&&H.getWindow().clearTimeout(this.timeoutSourceOpenId),this.destroyController.abort(),this.fetcher.destroy(),this.stop(),H.isNonNullable(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(H.isNullable(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(){H.assertNonNullable(this.element),H.assertNonNullable(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`,H.flattenObject(n))}isStallExceeded(e){let{crashOnStallTimeout:t,crashOnStallTWithoutDataTimeout:n}=this.tuning.dash,r=H.now(),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=H.isNonNullable(this.videoBufferManager)&&o<100&&r-i>n,l=H.isNonNullable(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(H.isNullable(e))return null;let t=this.parseManifest(e);if(!t)return null;let n=this.getResultManifest(t);return this.tracer.log(`updateManifestEnd`,H.flattenObject(n)),n}fetchManifest=H.abortable(this.destroyController.signal,async function*(){try{return yield this.fetcher.fetchManifest(this.manifestUrlString)}catch(e){H.isNullable(this.manifest)&&!this.bufferLength$.getValue()&&this.error$.next({id:`LoadManifest`,category:H.ErrorCategory.NETWORK,message:`Failed to load manifest`,thrown:e})}}.bind(this));parseManifest(e){try{return ec(e??``,this.manifestUrlString)}catch(t){let n=Is(e)??{id:`ManifestParsing`,category:H.ErrorCategory.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)=>!!(this.element?.canPlayType?.(t)&&$r()?.isTypeSupported?.(`${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=dc(e),s=i[0]),a===`video`&&(r=uc(e),s=this.forceVideoCodec&&Ei(r,this.forceVideoCodec)?this.forceVideoCodec:r[0]),s&&(t[a]=o.filter(({codecs:e})=>fc(e)===s))}else s=lc(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);M.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&&Ul(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){H.assertNonNullable(this.manifest),H.assertNonNullable(this.element);let i=e=>{this.representationSubscription.add(H.fromEvent(e,`error`).pipe(H.filter(e=>!!this.element?.played.length)).subscribe(e=>{this.error$.next({id:`VideoSource`,category:H.ErrorCategory.VIDEO_PIPELINE,message:`Unexpected video source error`,thrown:e})}))};this.source=ni();let a=H.getWindow().document,o=a.createElement(`source`);if(i(o),o.src=URL.createObjectURL(this.source),this.element.appendChild(o),ei())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 Hl(this.source),this.videoBufferManager=Pl.getBufferManager(`video`,this.videoNativeBufferManager,s,e),this.bufferManagers=[this.videoBufferManager],this.nativeBufferManagers=[this.videoNativeBufferManager],H.isNonNullable(n)){this.audioNativeBufferManager=new Hl(this.source);let t=this.manifest.streams.audio.reduce((e,t)=>[...e,...t.representations],[]);this.audioBufferManager=Pl.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=H.getWindow().setTimeout(()=>{if(this.isStreamNotOpen){t();return}this.error$.next({id:`OpenOfStream`,category:H.ErrorCategory.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&&H.getWindow().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(H.merge(...this.bufferManagers.map(e=>e.error$)).subscribe(this.error$)),H.assertNonNullable(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(H.merge(...Kl.map(e=>H.fromEvent(this.element,e))).pipe(H.map(e=>this.videoBufferManager?.getPlaybackBufferState()),H.filter(H.isNonNullable),H.map(({from:e,to:t})=>({from:e/1e3,to:t/1e3}))).subscribe(this.currentBuffer$)),this.representationSubscription.add(H.merge(...Kl.map(e=>H.fromEvent(this.element,e))).pipe(H.map(e=>Math.min(this.videoBufferManager?.getForwardPlaybackBufferDuration()??0,this.audioBufferManager?.getForwardPlaybackBufferDuration()??0,this.audioBufferManager?.getForwardPlaybackBufferDuration()??0)),H.filterChanged()).subscribe(this.bufferLength$)),this.representationSubscription.add(this.nativeBufferLength$.pipe(H.filter(e=>e>this.tuning.dash.bufferEmptinessTolerance)).subscribe(e=>this.stopStallWatchdogSubscription()))}initTracerSubscription(){let e=H.getTraceSubscriptionMethod(this.tracer.error.bind(this.tracer));this.subscription.add(this.error$.subscribe(e(`error`)))}async tick(){if(H.isNullable(this.element)||H.isNullable(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)}}var Jl=require(`@vkontakte/videoplayer-shared/es2024`);class Yl extends ql{constructor(e){super(e)}prepareManifestUrlString(e,t){return e}initRepresentationSubscriptions(){super.initRepresentationSubscriptions(),this.initDisableStallWatchdogSubscription(),this.initEndOfVideoSubscription()}setSourceDuration(){Jl.assertNonNullable(this.manifest),Jl.assertNonNullable(this.source);let e=[this.manifest.duration??0,...ys.default(ys.default([...this.manifest.streams.audio,...this.manifest.streams.video],e=>e.representations),e=>{let t=[];return e.duration&&t.push(e.duration),$o(e.segmentReference)&&e.segmentReference.totalSegmentsDurationMs&&t.push(e.segmentReference.totalSegmentsDurationMs),t})];this.source.duration=Math.max(...e)/1e3}async restoreAfterDeepStall(e){Jl.assertNonNullable(this.element);let t=this.element.currentTime*1e3;await Promise.all([this.videoBufferManager?.maintain(t),this.audioBufferManager?.maintain(t)]),e.position=t}initDisableStallWatchdogSubscription(){Jl.assertNonNullable(this.element);let e=Jl.merge(Jl.fromEvent(this.element,`ended`),this.forceEnded$),t=this.nativeBufferLength$.pipe(Jl.filter(e=>e>this.tuning.dash.bufferEmptinessTolerance));this.representationSubscription.add(Jl.merge(e,t).subscribe(e=>this.stopStallWatchdogSubscription()))}initEndOfVideoSubscription(){let e=Jl.merge(...this.bufferManagers.map(e=>e.fullyBuffered$)).pipe(Jl.map(()=>this.bufferManagers.every(e=>e.fullyBuffered$.getValue()))),t=Jl.merge(...this.bufferManagers.map(e=>e.onLastSegment$)).pipe(Jl.map(()=>this.bufferManagers.some(e=>e.onLastSegment$.getValue()))),n=Jl.combine({allBuffersFull:e,someBufferEnded:t}).pipe(Jl.filterChanged(),Jl.map(({allBuffersFull:e,someBufferEnded:t})=>e&&t),Jl.filter(e=>e));this.representationSubscription.add(Jl.merge(this.forceEnded$,n).pipe(Jl.filter(e=>Jl.isNonNullable(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:Jl.ErrorCategory.VIDEO_PIPELINE,message:`Failed to end MediaSource stream`,thrown:e})}}))}}class Xl extends vs{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(Wo.filterChanged(),Wo.filter(e=>Wo.isNonNullable(e))).subscribe(e=>{let t=this.player.calculateDurationFromSegments(e);t&&this.params.output.duration$.next(t/1e3)},r))}getPlayer(){return new Yl({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)}}var Zl=require(`@vkontakte/videoplayer-shared/es2024`),Ql=require(`@vkontakte/videoplayer-shared/es2024`);class $l{prevReported=void 0;rawSeries$;smoothedSeries$;reportedSeries$;smoothed;pastMeasures=[];takenMeasures=0;measuresCursor=0;params;smoothed$;debounced$;constructor(e){this.params=e,this.pastMeasures=Array(e.deviationDepth),this.smoothed=this.prevReported=e.initial,this.smoothed$=new Ql.ValueSubject(e.initial),this.debounced$=new Ql.ValueSubject(e.initial);let t=e.label??`value`+Math.random().toString(16).substring(2,6);this.rawSeries$=new Ea(`raw_${t}`),this.smoothedSeries$=new Ea(`smoothed_${t}`),this.reportedSeries$=new Ea(`reported_${t}`),this.rawSeries$.next(e.initial),this.smoothedSeries$.next(e.initial),this.reportedSeries$.next(e.initial)}next(e){let t=0,n=0;for(let e=0;e<this.pastMeasures.length;e++)this.pastMeasures[e]!==void 0&&(t+=(this.pastMeasures[e]-this.smoothed)**2,n++);this.takenMeasures=n,t/=n;let r=Math.sqrt(t),i=this.smoothed+this.params.deviationFactor*r,a=this.smoothed-this.params.deviationFactor*r;this.pastMeasures[this.measuresCursor]=e,this.measuresCursor=(this.measuresCursor+1)%this.pastMeasures.length,this.rawSeries$.next(e),this.updateSmoothedValue(e),this.smoothed$.next(this.smoothed),this.smoothedSeries$.next(this.smoothed),!(this.smoothed>i||this.smoothed<a)&&(Ql.isNullable(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 eu extends $l{slow;fast;constructor(e){super(e),this.slow=this.fast=e.initial}updateSmoothedValue(e){this.slow=os(this.slow,e,this.params.emaAlphaSlow),this.fast=os(this.fast,e,this.params.emaAlphaFast),this.smoothed=(this.params.fastDirection>0?Math.max:Math.min)(this.slow,this.fast)}}class tu extends $l{emaSmoothed;constructor(e){super(e),this.emaSmoothed=e.initial}updateSmoothedValue(e){let t=ss(this.pastMeasures,this.takenMeasures);this.emaSmoothed=os(this.emaSmoothed,e,this.params.emaAlpha),this.smoothed=cs(this.pastMeasures,this.takenMeasures,this.measuresCursor-1,this.params.basisTrendChangeCount)?this.emaSmoothed:t}}class nu extends $l{extremumInterval;furtherValues=[];currentTopExtremumValue=0;constructor(e){super(e),this.extremumInterval=e.extremumInterval}next(e){this.currentTopExtremumValue<=e?(this.currentTopExtremumValue=e,this.furtherValues=[]):this.furtherValues.length===this.extremumInterval?(super.next(this.currentTopExtremumValue),this.currentTopExtremumValue=e,this.furtherValues=[]):this.furtherValues.push(e)}updateSmoothedValue(e){this.smoothed=this.smoothed?os(this.smoothed,e,this.params.emaAlpha):e}}class ru{static getSmoothedValue(e,t,n){return n.type===`TwoEma`?new eu({initial:e,emaAlphaSlow:n.emaAlphaSlow,emaAlphaFast:n.emaAlphaFast,changeThreshold:n.changeThreshold,fastDirection:t,deviationDepth:n.deviationDepth,deviationFactor:n.deviationFactor,label:`throughput`}):new tu({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 nu({initial:e,label:`liveEdgeDelay`,...t})}}var G=require(`@vkontakte/videoplayer-shared/es2024`),iu=(e,t)=>{e&&e.playbackRate!==t&&(e.playbackRate=t)},au=require(`@vkontakte/videoplayer-shared/es2024`);class ou{currentRepresentation$=new au.ValueSubject(null);maxRepresentations=4;representationsCursor=0;representations=[];getCurrentPosition;currentSegment=null;constructor(e,t){this.getCurrentPosition=t.getCurrentPosition,this.processStreams(e)}updateLive(e){this.processStreams(e?.streams.text)}seekLive(e){this.processStreams(e)}maintain(e=this.getCurrentPosition()){if(!au.isNullable(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=ou.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=>ou.filterRepresentations(e.representations))}static filterRepresentations(e){return e?.filter(e=>e.kind===`text`&&`segmentReference`in e&&$o(e.segmentReference))}}class su extends ql{liveTextManager;liveStreamEndTimestamp=0;liveBuffer;livePauseWatchdogSubscription;liveWasInterrupted=!1;constructor(e){super(e),this.liveBuffer=ru.getLiveBufferSmoothedValue(this.tuning.dashCmafLive.lowLatency.maxTargetOffset,{...e.tuning.dashCmafLive.lowLatency.bufferEstimator})}async seek(e){G.assertNonNullable(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(){G.assertNonNullable(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:G.ErrorCategory.VIDEO_PIPELINE,message:`stallIntervalCallback failed`,thrown:e})})}}async updateManifest(){let e=await super.updateManifest();if(G.isNullable(e))return null;if(G.isNullable(e.live))return this.error$.next({id:`ManifestParsing`,category:G.ErrorCategory.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:G.ErrorCategory.VIDEO_PIPELINE,message:`seekLive after stream restore failed`,thrown:e})})}return e}prepareManifestUrlString(e,t){return Nr(e,t,2)}updateManifestUrlWithTimeOffset(e){let t=this.liveStreamStatus$.getValue()===`active`?0:G.now()-this.liveStreamEndTimestamp,n=this.normalizeLiveOffset(e+t);this.isActiveLive$.next(n===0),this.manifestUrlString=Nr(this.manifestUrlString,n,2)}createBuffers(e,t,n,r){G.assertNonNullable(this.manifest),super.createBuffers(e,t,n,r),ou.isSupported(this.manifest.streams.text)&&!this.isLowLatency$.getValue()&&(this.liveTextManager=new ou(this.manifest.streams.text,e))}initRepresentationSubscriptions(){G.assertNonNullable(this.element),G.assertNonNullable(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),G.isNonNullable(this.liveTextManager)&&this.representationSubscription.add(this.liveTextManager.currentRepresentation$.subscribe(this.currentLiveTextRepresentation$))}initStreamDurationOnPauseSubscription(){G.assertNonNullable(this.element);let{liveUpdateInterval:e}=this.tuning.dash,t=()=>G.interval(e).subscribe(async t=>{let n=Pr(this.manifestUrlString,2);this.manifestUrlString=Nr(this.manifestUrlString,n+e,2),this.liveStreamStatus$.getValue()===`active`&&(this.manifest=await this.updateManifest())});this.representationSubscription.add(G.fromEvent(this.element,`pause`).subscribe(e=>{this.livePauseWatchdogSubscription=t(),this.representationSubscription.add(this.livePauseWatchdogSubscription)})),this.representationSubscription.add(G.fromEvent(this.element,`play`).subscribe(e=>this.livePauseWatchdogSubscription?.unsubscribe()))}initLiveDurationSubscriptions(e){this.representationSubscription.add(this.liveDuration$.pipe(G.filterChanged()).subscribe(e=>this.liveStreamEndTimestamp=G.now())),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(G.combine({isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe(G.map(({isActiveLive:e,isLowLatency:t})=>e&&t),G.filterChanged(),G.filter(e=>!this.isManualDecreasePlaybackInLive())).subscribe(e=>iu(this.element,1))),this.representationSubscription.add(G.combine({liveBuffer:this.liveBuffer.smoothed$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe(G.filter(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),iu(this.element,s)}))}initLiveBufferInfoSubscriptions(e,t){this.representationSubscription.add(G.combine({bufferLength:this.bufferLength$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe(G.filter(({bufferLength:e,isActiveLive:t,isLowLatency:n})=>t&&n&&!!e),G.map(({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(G.combine({isLive:this.isLive$,rtt:this.throughputEstimator.rtt$,bufferLength:this.bufferLength$,segmentServerLatency:e.currentLiveSegmentServerLatency$}).pipe(G.filter(({isLive:e})=>e),G.filterChanged((e,t)=>t.bufferLength<e.bufferLength),G.map(({rtt:e,bufferLength:t,segmentServerLatency:n})=>{let r=Pr(this.manifestUrlString,2);return(e/2+t+n+r)/1e3})).subscribe(this.liveLatency$))}initLiveMaintainSubscription(e){let t=0;this.representationSubscription.add(G.combine({liveLoadBufferLength:this.liveLoadBufferLength$,bufferLength:this.bufferLength$}).pipe(G.throttle(this.tuning.dash.liveUpdateInterval)).subscribe(async({liveLoadBufferLength:n,bufferLength:r})=>{G.assertNonNullable(this.element);let i=this.element.playbackRate,a=Pr(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=Nr(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:G.ErrorCategory.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 cu extends vs{constructor(e){super(e),this.textTracksManager.destroy()}getPlayer(){return new su({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 Zl.ValueSubject(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(Zl.filterChanged()).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(Zl.map(e=>e.to)).subscribe(this.player.isLowLatency$)).add(Zl.combine({liveBufferTime:n.liveBufferTime$,liveAvailabilityStartTime:this.player.liveAvailabilityStartTime$}).pipe(Zl.map(({liveBufferTime:e,liveAvailabilityStartTime:t})=>e&&t?e+t:void 0)).subscribe(n.liveTime$)).add(Zl.combine({liveDuration:this.player.liveDuration$,liveStreamStatus:this.player.liveStreamStatus$,playbackRate:Zl.merge(r.playbackRateState$,new Zl.ValueSubject(1))}).pipe(Zl.filter(({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||Zl.isNullable(i)||(t=e-i)})).add(Zl.combine({time:n.liveBufferTime$,liveDuration:this.player.liveDuration$,playbackRate:Zl.merge(r.playbackRateState$,new Zl.ValueSubject(1))}).pipe(Zl.filterChanged((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||Zl.isNullable(e)||Zl.isNullable(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=Xo(e);this.params.output.availableTextTracks$.next([t])}})),this.params.tuning.dashCmafLive.externalStopControl||this.subscription.add(this.player.liveStreamStatus$.pipe(Zl.filter(e=>Zl.isNonNullable(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)})}}var K=require(`@vkontakte/videoplayer-shared/es2024`),lu=l(Gn(),1),uu=(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},q=require(`@vkontakte/videoplayer-shared/es2024`),du=l(at(),1),fu=l(An(),1),pu=l(Gn(),1),mu=l(En(),1),hu=require(`@vkontakte/videoplayer-shared/es2024`),gu=18,_u=!1;try{_u=M.browser.isSafari&&!!M.browser.safariVersion&&M.browser.safariVersion<=gu}catch(e){console.error(e)}class vu{bufferFull$=new hu.Subject;error$=new hu.Subject;buffer;queue=[];currentTask=null;destroyed=!1;abortRequested=!1;isAbortFixEnabled=!1;constructor(e,t=!1){this.buffer=e,this.isAbortFixEnabled=t,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=_u&&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}}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:hu.ErrorCategory.VIDEO_PIPELINE,message:`Buffer appending or removal failed`,thrown: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:hu.ErrorCategory.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:hu.assertNever(t)}}}var yu=vu,bu=e=>{let t=0;for(let n=0;n<e.length;n++)t+=e.end(n)-e.start(n);return t*1e3},J=require(`@vkontakte/videoplayer-shared/es2024`);class xu{currentLiveSegmentServerLatency$=new J.ValueSubject(0);currentLowLatencySegmentLength$=new J.ValueSubject(0);currentSegmentLength$=new J.ValueSubject(0);onLastSegment$=new J.ValueSubject(!1);fullyBuffered$=new J.ValueSubject(!1);playingRepresentation$=new J.ValueSubject(void 0);playingRepresentationInit$=new J.ValueSubject(void 0);error$=new J.Subject;gaps=[];subscription=new J.Subscription;kind;initData;parsedInitData;representations;segments;allInitsLoaded=!1;activeSegments=new Set;mediaSource;playingRepresentationId;downloadingRepresentationId;switchingToRepresentationId;sourceBuffer;downloadAbortController=new Ns;switchAbortController=new Ns;destroyAbortController=new Ns;useSmartRepresentationSwitch=!1;getCurrentPosition;isActiveLowLatency;tuning;forwardBufferTarget;fetcher;bufferLimit=1/0;sourceBufferTaskQueue;gapDetectionIdleCallback;initLoadIdleCallback;failedDownloads=0;baseUrls=[];baseUrlsIndex=0;compatibilityMode;preloadOnly;isLive=!1;liveUpdateSegmentIndex=0;liveInitialAdditionalOffset=0;isSeekingLive=!1;index=0;lastDataObtainedTimestampMs=0;loadByteRangeSegmentsTimeoutId=0;constructor(e,t,n,{fetcher:r,tuning:i,getCurrentPosition:a,isActiveLowLatency:o,compatibilityMode:s=!1,manifest:c}){this.fetcher=r,this.tuning=i,this.compatibilityMode=s,this.forwardBufferTarget=i.dash.forwardBufferTargetAuto,this.getCurrentPosition=a,this.isActiveLowLatency=o,this.isLive=!!c?.live,this.baseUrls=c?.baseUrls??[],this.initData=new Map(n.map(e=>[e.id,null])),this.segments=new Map,this.parsedInitData=new Map,this.representations=new Map(n.map(e=>[e.id,e])),this.kind=e,this.mediaSource=t,this.sourceBuffer=null}startWith=J.abortable(this.destroyAbortController.signal,async function*(e){let t=this.representations.get(e);J.assertNonNullable(t,`Cannot find representation ${e}`),this.playingRepresentationId=e,this.downloadingRepresentationId=e,this.sourceBuffer=this.mediaSource.addSourceBuffer(`${t.mime}; codecs="${t.codecs}"`),this.sourceBufferTaskQueue=new yu(this.sourceBuffer,this.tuning.dash.useAbortMSEFix),this.subscription.add(J.fromEvent(this.sourceBuffer,`updateend`).subscribe(()=>{this.checkEjectedSegments(),this.maintain()},e=>{let t,n=this.mediaSource.readyState;n!==`open`&&(t={id:`SegmentEjection_source_${n}`,category:J.ErrorCategory.VIDEO_PIPELINE,message:`Error when trying to clear segments ejected by browser`,thrown:e}),t??={id:`SegmentEjection`,category:J.ErrorCategory.VIDEO_PIPELINE,message:`Error when trying to clear segments ejected by browser`,thrown:e},this.error$.next(t)})),this.subscription.add(J.fromEvent(this.sourceBuffer,`error`).subscribe(()=>this.error$.next({id:`SourceBuffer`,category:J.ErrorCategory.VIDEO_PIPELINE,message:`SourceBuffer Error event fired`}))),this.subscription.add(this.sourceBufferTaskQueue.bufferFull$.subscribe(e=>{let t=this.getCurrentPosition();if(!this.sourceBuffer||!t||!bo(this.mediaSource,this.sourceBuffer))return;this.bufferLimit=Math.min(this.bufferLimit,bu(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);J.assertNonNullable(n,`No init buffer for starting representation`),J.assertNonNullable(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));switchToWithPreviousAbort(e,t=!1){!bo(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId||(this.switchAbortController.abort(),this.switchAbortController=new Ns,J.abortable(this.switchAbortController.signal,async function*(e,t=!1){this.switchingToRepresentationId=e;let n=this.representations.get(e);J.assertNonNullable(n,`No such representation ${e}`);let r=this.segments.get(e),i=this.initData.get(e);if(J.isNullable(i)||J.isNullable(r)?yield this.loadInit(n,`high`,!1):i instanceof Promise&&(yield i),r=this.segments.get(e),J.assertNonNullable(r,`No segments for starting representation`),i=this.initData.get(e),!(!(i instanceof ArrayBuffer)||!this.sourceBuffer||!bo(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();J.isNonNullable(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))}switchTo=J.abortable(this.destroyAbortController.signal,async function*(e,t=!1){if(!bo(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let n=this.representations.get(e);J.assertNonNullable(n,`No such representation ${e}`);let r=this.segments.get(e),i=this.initData.get(e);if(J.isNullable(i)||J.isNullable(r)?yield this.loadInit(n,`high`,!1):i instanceof Promise&&(yield i),r=this.segments.get(e),J.assertNonNullable(r,`No segments for starting representation`),i=this.initData.get(e),!(!i||!(i instanceof ArrayBuffer)||!this.sourceBuffer||!bo(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();J.isNonNullable(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));switchToOld=J.abortable(this.destroyAbortController.signal,async function*(e,t=!1){if(!bo(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let n=this.representations.get(e);J.assertNonNullable(n,`No such representation ${e}`);let r=this.segments.get(e),i=this.initData.get(e);if(J.isNullable(i)||J.isNullable(r)?yield this.loadInit(n,`high`,!1):i instanceof Promise&&(yield i),r=this.segments.get(e),J.assertNonNullable(r,`No segments for starting representation`),i=this.initData.get(e),!(!i||!(i instanceof ArrayBuffer)||!this.sourceBuffer||!bo(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();J.isNonNullable(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));warmUpMediaSource(){!J.isNullable(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 Ns,this.abortBuffer()}maintain(e=this.getCurrentPosition()){if(J.isNullable(e)||J.isNullable(this.downloadingRepresentationId)||J.isNullable(this.playingRepresentationId)||J.isNullable(this.sourceBuffer)||!bo(this.mediaSource,this.sourceBuffer)||J.isNonNullable(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(J.assertNonNullable(t,`No such representation ${this.downloadingRepresentationId}`),J.assertNonNullable(n,`No such representation ${this.playingRepresentationId}`),J.isNullable(r)||J.isNullable(i))return;let a=r.find(t=>e>=t.time.from&&e<t.time.to);J.isNonNullable(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=vl(n),s=vl(t),c=this.useSmartRepresentationSwitch&&this.tuning.dash.useNewRepresentationSwitch&&this.tuning.dash.useSmartRepresentationSwitch&&J.isNonNullable(i)&&J.isNonNullable(s)&&J.isHigher(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)&&bu(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(du.default(s,a))e=`high`;else{let t=fu.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=fu.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;J.isNonNullable(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=pu.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}}seekLive=J.abortable(this.destroyAbortController.signal,async function*(e){let t=pu.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||!Tl(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);J.assertNonNullable(r,`Representation not found by id ${n}`);let i=this.segments.get(n);J.assertNonNullable(i,`No segments for starting representation`);let a=this.initData.get(n);if(J.assertNonNullable(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));updateLive(e){if(!e||[...this.segments.values()].every(e=>!e.length))return;let t=pu.default(e.streams[this.kind],e=>e.representations);for(let e of t){if(!e||!Tl(e.segmentReference))return;let t=e.segmentReference.segments.map(e=>({...e,status:`none`,size:void 0})),n=this.segments.get(e.id)??[],r=$a(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;J.assertNonNullable(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?fu.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(!Tl(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=$s(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&&xc&&xc(this.gapDetectionIdleCallback),this.initLoadIdleCallback&&xc&&xc(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&&bo(this.mediaSource,this.sourceBuffer)&&!(uu(this.sourceBuffer.buffered,t)&&uu(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`){Tl(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 J.abortable(o,async function*(){let e=J.getExponentialDelay(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=J.now(),!e)return;let l=new DataView(e),u=hl(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]),J.isAbortError(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())Tl(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 J.abortable(a,async function*(){let e=J.getExponentialDelay(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(t=>{this.loadByteRangeSegmentsTimeoutId=window.setTimeout(t,e),J.fromEvent(window,`online`).pipe(J.once()).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=J.now(),this.failedDownloads=0}catch(t){this.abortActiveSegments(e),J.isAbortError(t)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}}prepareByteRangeFetchSegmentParams(e,t){if(Tl(t.segmentReference))throw Error(`Representation is not byte range type`);let n=t.segmentReference.url,r={from:fu.default(e,0).byte.from,to:fu.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=J.now(),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:J.ErrorCategory.VIDEO_PIPELINE,message:`Error when feeding segments`,thrown:e})}}}}prepareTemplateFetchSegmentParams(e,t){if(!Tl(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=J.now();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:J.ErrorCategory.VIDEO_PIPELINE,message:`Error when feeding segments`,thrown:e})}}:void 0,onProgressTasks:a}}abortActiveSegments(e){for(let t of this.activeSegments)du.default(e,t.segment)&&this.abortSegment(t.segment)}async onSomeTemplateDataLoaded({dataView:e,representationId:t,loaded:n,onSegmentAppendFailed:r,signal:i}){if(!this.activeSegments.size||!bo(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=hl(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||!bo(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=hl(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(!(J.isNullable(this.sourceBuffer)||!bo(this.mediaSource,this.sourceBuffer))){!this.isLive&&M.browser.isSafari&&this.tuning.useSafariEndlessRequestBugfix&&(uu(this.sourceBuffer.buffered,e.segment.time.from,100)&&uu(this.sourceBuffer.buffered,e.segment.time.to,100)||this.error$.next({id:`EmptyAppendBuffer`,category:J.ErrorCategory.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`,wl(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=bc(()=>mu.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?J.abortable(this.destroyAbortController.signal,async function*(){let e=J.getExponentialDelay(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(t=>setTimeout(t,e))}.bind(this))():Promise.resolve()).then(()=>this.fetcher.fetchRepresentation(e.segmentReference,hl(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&&Tl(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:J.ErrorCategory.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||!bo(this.mediaSource,this.sourceBuffer)||!this.playingRepresentationId||J.isNullable(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=wl(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)du.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||!bo(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||!bo(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||!bo(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length||J.isNullable(e)?0:Vl(this.sourceBuffer.buffered,e)}detectGaps(e,t){if(!(!this.sourceBuffer||!bo(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||!bo(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=bc(()=>{try{this.detectGaps(e,t)}catch(e){this.error$.next({id:`GapDetection`,category:J.ErrorCategory.WTF,message:`detectGaps threw`,thrown:e})}finally{this.gapDetectionIdleCallback=null}})}checkEjectedSegments(){if(J.isNullable(this.sourceBuffer)||!bo(this.mediaSource,this.sourceBuffer)||J.isNullable(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:J.ErrorCategory.VIDEO_PIPELINE,thrown:e,message:`Something went wrong`})}}var Y=require(`@vkontakte/videoplayer-shared/es2024`);class Su{throughputEstimator;requestQuic;tracer;manifestRequested$=new Y.Subject;firstBytesManifest$=new Y.Subject;firstBytesRequested$=new Y.Subject;firstBytesReceived$=new Y.Subject;lastConnectionType$=new Y.ValueSubject(void 0);lastConnectionReused$=new Y.ValueSubject(void 0);lastRequestFirstBytes$=new Y.ValueSubject(void 0);lastConnectionMetrics$=new Y.ValueSubject(void 0);lastDownloadMetrics$=new Y.ValueSubject(void 0);recoverableError$=new Y.Subject;error$=new Y.Subject;abortAllController=new Ns;subscription=new Y.SubscriptionRemovable;compatibilityMode;useEnableSubtitlesParam;performanceObserver=null;pendingConnectionMetrics=new Map;constructor({throughputEstimator:e,requestQuic:t,tracer:n,compatibilityMode:r=!1,useEnableSubtitlesParam:i=!1}){this.throughputEstimator=e,this.requestQuic=t,this.compatibilityMode=r,this.tracer=n.createComponentTracer(`Fetcher`),this.useEnableSubtitlesParam=i,Y.getWindow().PerformanceObserver&&this.setupPerformanceObserver()}onHeadersReceived(e){let{type:t,reused:n}=Rs(e);this.lastConnectionType$.next(t),this.lastConnectionReused$.next(n)}setupPerformanceObserver(){this.performanceObserver=new(Y.getWindow()).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 Y.getWindow().navigator))return`unknown`;let e=Y.getWindow().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:Y.ErrorCategory.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})}fetchManifest=Y.abortable(this.abortAllController.signal,async function*(e){let t=this.tracer.createComponentTracer(`FetchManifest`),n=e;this.requestQuic&&(n=Ls(n)),!this.compatibilityMode&&this.useEnableSubtitlesParam&&(n=zs(n)),this.trackRequestStart(n,performance.now());let r=Y.now();this.manifestRequested$.next();let i=yield this.doFetch(n,{signal:this.abortAllController.signal}).catch(Y.suppressAbort);if(i){let a=Y.now();t.log(`success`,Y.flattenObject({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`,Y.flattenObject({url:n,message:`No data in request manifest`})),t.end(),null}.bind(this));fetch=Y.abortable(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,Y.getWindow().location.href);e.searchParams.append(`bytes`,`${n.from}-${n.to}`),u=e.toString();break}default:Y.assertNever(t)}this.requestQuic&&(u=Ls(u));let p=this.abortAllController.signal,m;if(a){let e=new Ns;if(m=Y.merge(Y.fromEvent(this.abortAllController.signal,`abort`),Y.fromEvent(a,`abort`)).subscribe(()=>{try{e.abort()}catch(e){Y.suppressAbort(e)}}),this.subscription.add(m),this.abortAllController.signal.aborted||a.aborted)try{e.abort()}catch(e){Y.suppressAbort(e)}p=e.signal}let h=0,g=Y.now();f.log(`startRequest`,Y.flattenObject({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=Y.now();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=Y.now(),t={requestStartedAt:g,requestEndedAt:e,duration:e-g};return f.log(`endRequest`,Y.flattenObject(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,Y.suppressAbort(e)},E=Y.abortable(p,async function*({done:e,value:t}){if(h===0&&(this.lastRequestFirstBytes$.next(Y.now()-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=Y.now(),ee={failed:w,requestStartedAt:g,requestEndedAt:D,duration:D-g};if(w)return f.error(`endRequest`,Y.flattenObject(ee)),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`,Y.flattenObject(ee)),f.end(),C.buffer}.bind(this));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:Y.assertNever(r)}}destroy(){this.abortAllController.abort(),this.subscription.unsubscribe(),this.performanceObserver&&=(this.performanceObserver.disconnect(),null),this.pendingConnectionMetrics.clear(),this.tracer.end()}fetchByteRangeRepresentation=Y.abortable(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));fetchTemplateRepresentation=Y.abortable(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));async doFetch(e,t,n){let r=await Ms(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:Y.ErrorCategory.FATAL,httpCode:r.status,UVBackendErrorCode:i});break;case 8:this.recoverableError$.next({id:`VideoDataLinkBlockedForFloodError`,message:`Url blocked for flood`,category:Y.ErrorCategory.FATAL,httpCode:r.status,UVBackendErrorCode:i});break;case 18:this.recoverableError$.next({id:`VideoDataLinkIllegalIpChangeError`,message:`Client IP has changed`,category:Y.ErrorCategory.FATAL,httpCode:r.status,UVBackendErrorCode:i});break;case 21:this.recoverableError$.next({id:`VideoDataLinkIllegalHostChangeError`,message:`Request HOST has changed`,category:Y.ErrorCategory.FATAL,httpCode:r.status,UVBackendErrorCode:i});break;default:this.error$.next({id:`GeneralVideoDataFetchError`,message:`Generic video data fetch error (${a})`,category:Y.ErrorCategory.FATAL,httpCode:r.status,UVBackendErrorCode:i})}}unsubscribeAbortSubscription(e){e&&(e.unsubscribe(),this.subscription.remove(e))}}var Cu=require(`@vkontakte/videoplayer-shared/es2024`);class wu{currentRepresentation$=new Cu.ValueSubject(null);maxRepresentations=4;representationsCursor=0;representations=[];getCurrentPosition;currentSegment=null;constructor(e,t){this.getCurrentPosition=t.getCurrentPosition,this.processStreams(e)}updateLive(e){this.processStreams(e?.streams.text)}seekLive(e){this.processStreams(e)}maintain(e=this.getCurrentPosition()){if(!Cu.isNullable(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=wu.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=>wu.filterRepresentations(e.representations))}static filterRepresentations(e){return e?.filter(e=>e.kind===`text`&&`segmentReference`in e&&Tl(e.segmentReference))}}var Tu=[`timeupdate`,`progress`,`play`,`seeked`,`stalled`,`waiting`],Eu=[`timeupdate`,`progress`,`loadeddata`,`playing`,`seeked`];class Du{element=null;manifestUrlString=``;source=null;manifest=null;tuning;tracer;forceVideoCodec;videoBufferManager;audioBufferManager;bufferManagers=[];liveTextManager;throughputEstimator;subscription=new q.Subscription;subscriptionRemovable=new q.SubscriptionRemovable;representationSubscription=new q.Subscription;fetcher;state$=new P(`none`);currentVideoRepresentation$=new q.ValueSubject(void 0);currentVideoRepresentationInit$=new q.ValueSubject(void 0);currentAudioRepresentation$=new q.ValueSubject(void 0);currentVideoSegmentLength$=new q.ValueSubject(0);currentAudioSegmentLength$=new q.ValueSubject(0);error$=new q.Subject;manifestRequested$=new q.Subject;firstBytesManifest$=new q.Subject;manifestReceived$=new q.Subject;firstBytesRequested$=new q.Subject;firstBytesReceived$=new q.Subject;lastConnectionType$=new q.ValueSubject(void 0);lastConnectionReused$=new q.ValueSubject(void 0);lastRequestFirstBytes$=new q.ValueSubject(void 0);lastConnectionMetrics$=new q.ValueSubject(void 0);lastDownloadMetrics$=new q.ValueSubject(void 0);currentLiveTextRepresentation$=new q.ValueSubject(null);timeoutSourceOpenId;isLive$=new q.ValueSubject(!1);isActiveLive$=new q.ValueSubject(!1);isLowLatency$=new q.ValueSubject(!1);liveDuration$=new q.ValueSubject(0);liveSeekableDuration$=new q.ValueSubject(0);liveAvailabilityStartTime$=new q.ValueSubject(0);liveStreamStatus$=new q.ValueSubject(void 0);bufferLength$=new q.ValueSubject(0);liveLatency$=new q.ValueSubject(void 0);liveLoadBufferLength$=new q.ValueSubject(0);livePositionFromPlayer$=new q.ValueSubject(0);currentStallDuration$=new q.ValueSubject(0);videoLastDataObtainedTimestamp$=new q.ValueSubject(0);fetcherRecoverableError$=new q.Subject;fetcherError$=new q.Subject;liveStreamEndTimestamp=0;liveBuffer;isUpdatingLive=!1;isJumpGapAfterSeekLive=!1;forceEnded$=new q.Subject;gapWatchdogActive=!1;gapWatchdogSubscription;stallWatchdogSubscription;livePauseWatchdogSubscription;liveWasInterrupted=!1;destroyController=new Ns;constructor(e){this.throughputEstimator=e.throughputEstimator,this.tuning=e.tuning,this.tracer=e.tracer.createComponentTracer(this.constructor.name),this.forceVideoCodec=e.forceVideoCodec,this.fetcher=new Su({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=ru.getLiveBufferSmoothedValue(this.tuning.dashCmafLive.lowLatency.maxTargetOffset,{...e.tuning.dashCmafLive.lowLatency.bufferEstimator}),this.initTracerSubscription()}initManifest=q.abortable(this.destroyController.signal,async function*(e,t,n){this.tracer.log(`initManifest`),this.element=e,this.manifestUrlString=Nr(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:q.ErrorCategory.PARSER,message:`No playable video representations`})}.bind(this));updateManifest=q.abortable(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:q.ErrorCategory.NETWORK,message:`Failed to load manifest`,thrown:e})});if(!e)return null;let t=null;try{t=ec(e??``,this.manifestUrlString),this.manifestReceived$.next()}catch(t){let n=Is(e)??{id:`ManifestParsing`,category:q.ErrorCategory.PARSER,message:`Failed to parse MPD manifest`,thrown:t};this.error$.next(n)}if(!t)return null;let n=(e,t,n)=>!!(this.element?.canPlayType?.(t)&&$r()?.isTypeSupported?.(`${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:q.ErrorCategory.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=dc(t),s=a[0]),e===`video`&&(i=uc(t),s=this.forceVideoCodec&&Ei(i,this.forceVideoCodec)?this.forceVideoCodec:i[0]),s&&(r[e]=o.filter(({codecs:e})=>fc(e)===s))}else s=lc(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);M.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&&Ul(r,i)}}let o={...t,streams:r};return this.tuning.dash.codecsPrioritizeEnabled&&(o.codecs={video:i,audio:a}),this.tracer.log(`updateManifestEnd`,q.flattenObject(o)),o}.bind(this));setSmartRepresentationSwitch(e){this.bufferManagers.forEach(t=>t.setSmartRepresentationSwitch(e))}async seekLive(e){q.assertNonNullable(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:q.now()-this.liveStreamEndTimestamp,n=this.normalizeLiveOffset(e+t);this.isActiveLive$.next(n===0),this.manifestUrlString=Nr(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)}initRepresentations=q.abortable(this.destroyController.signal,async function*(e,t,n){this.tracer.log(`initRepresentationsStart`,q.flattenObject({initialVideo:e,initialAudio:t,sourceHls:n})),q.assertNonNullable(this.manifest),q.assertNonNullable(this.element),this.representationSubscription.unsubscribe(),this.state$.startTransitionTo(`representations_ready`);let r=e=>{this.representationSubscription.add(q.fromEvent(e,`error`).pipe(q.filter(e=>!!this.element?.played.length)).subscribe(e=>{this.error$.next({id:`VideoSource`,category:q.ErrorCategory.VIDEO_PIPELINE,message:`Unexpected video source error`,thrown:e})}))};this.source=ni();let i=document.createElement(`source`);if(r(i),i.src=URL.createObjectURL(this.source),this.element.appendChild(i),ei())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 xu(`video`,this.source,o,a),this.bufferManagers=[this.videoBufferManager],q.isNonNullable(t)){let e=this.manifest.streams.audio.reduce((e,t)=>[...e,...t.representations],[]);this.audioBufferManager=new xu(`audio`,this.source,e,a),this.bufferManagers.push(this.audioBufferManager)}if(wu.isSupported(this.manifest.streams.text)&&!this.isLowLatency$.getValue()&&(this.liveTextManager=new wu(this.manifest.streams.text,a)),this.representationSubscription.add(this.fetcher.lastRequestFirstBytes$.subscribe(this.lastRequestFirstBytes$)),this.representationSubscription.add(q.merge(...Eu.map(e=>q.fromEvent(this.element,e))).pipe(q.map(e=>this.element?Vl(this.element.buffered,this.element.currentTime*1e3):0),q.filterChanged(),q.tap(e=>{e>this.tuning.dash.bufferEmptinessTolerance&&this.stopStallWatchdogSubscription()})).subscribe(this.bufferLength$)),this.representationSubscription.add(q.merge(q.fromEvent(this.element,`ended`),this.forceEnded$).subscribe(()=>{this.stopStallWatchdogSubscription()})),this.isLive$.getValue()){this.subscription.add(this.liveDuration$.pipe(q.filterChanged()).subscribe(e=>this.liveStreamEndTimestamp=q.now())),this.subscription.add(q.fromEvent(this.element,`pause`).subscribe(()=>{let{liveUpdateInterval:e}=this.tuning.dash;this.livePauseWatchdogSubscription=q.interval(e).subscribe(t=>{let n=Pr(this.manifestUrlString,2);this.manifestUrlString=Nr(this.manifestUrlString,n+e,2),this.liveStreamStatus$.getValue()===`active`&&this.updateManifest()}),this.subscription.add(this.livePauseWatchdogSubscription)})).add(q.fromEvent(this.element,`play`).subscribe(e=>this.livePauseWatchdogSubscription?.unsubscribe())),this.representationSubscription.add(q.combine({isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe(q.map(({isActiveLive:e,isLowLatency:t})=>e&&t),q.filterChanged()).subscribe(e=>{this.isManualDecreasePlaybackInLive()||iu(this.element,1)})),this.representationSubscription.add(q.combine({bufferLength:this.bufferLength$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe(q.filter(({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(q.combine({isLive:this.isLive$,rtt:this.throughputEstimator.rtt$,bufferLength:this.bufferLength$,segmentServerLatency:this.videoBufferManager.currentLiveSegmentServerLatency$}).pipe(q.filter(({isLive:e})=>e),q.filterChanged((e,t)=>t.bufferLength<e.bufferLength),q.map(({rtt:e,bufferLength:t,segmentServerLatency:n})=>{let r=Pr(this.manifestUrlString,2);return(e/2+t+n+r)/1e3})).subscribe(this.liveLatency$)),this.representationSubscription.add(q.combine({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),iu(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(q.combine({liveLoadBufferLength:this.liveLoadBufferLength$,bufferLength:this.bufferLength$}).pipe(q.throttle(this.tuning.dash.liveUpdateInterval)).subscribe(async({liveLoadBufferLength:t,bufferLength:n})=>{if(!this.element||this.isUpdatingLive)return;let r=this.element.playbackRate,i=Pr(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=Nr(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:q.ErrorCategory.VIDEO_PIPELINE,thrown:e,message:`Failed to update live with subscription`})}))}let s=q.merge(...this.bufferManagers.map(e=>e.fullyBuffered$)).pipe(q.map(()=>this.bufferManagers.every(e=>e.fullyBuffered$.getValue()))),c=q.merge(...this.bufferManagers.map(e=>e.onLastSegment$)).pipe(q.map(()=>this.bufferManagers.some(e=>e.onLastSegment$.getValue()))),l=q.combine({allBuffersFull:s,someBufferEnded:c}).pipe(q.filterChanged(),q.map(({allBuffersFull:e,someBufferEnded:t})=>e&&t),q.filter(e=>e));if(this.representationSubscription.add(q.merge(this.forceEnded$,l).subscribe(()=>{if(this.source&&this.source.readyState===`open`&&Array.from(this.source.sourceBuffers).every(e=>!e.updating))try{this.source?.endOfStream()}catch(e){this.error$.next({id:`EndOfStream`,category:q.ErrorCategory.VIDEO_PIPELINE,message:`Failed to end MediaSource stream`,thrown:e})}})),this.representationSubscription.add(q.merge(...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:q.ErrorCategory.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,...lu.default(lu.default([...this.manifest.streams.audio,...this.manifest.streams.video],e=>e.representations),e=>{let t=[];return e.duration&&t.push(e.duration),Tl(e.segmentReference)&&e.segmentReference.totalSegmentsDurationMs&&t.push(e.segmentReference.totalSegmentsDurationMs),t})];this.source.duration=Math.max(...e)/1e3}this.audioBufferManager&&q.isNonNullable(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));initBuffer(){q.assertNonNullable(this.element),this.state$.setState(`running`),this.subscription.add(q.merge(...Tu.map(e=>q.fromEvent(this.element,e)),q.fromEvent(window,`online`)).subscribe(()=>this.tick(),e=>{this.error$.next({id:`DashVKPlayer`,category:q.ErrorCategory.WTF,message:`Internal logic error`,thrown:e})})),this.subscription.add(q.fromEvent(this.element,`progress`).subscribe(()=>{this.element&&this.element.readyState===2&&!this.element.seeking&&(this.element.currentTime=this.element.currentTime)})),this.subscription.add(q.fromEvent(this.element,`waiting`).subscribe(()=>{this.tuning.dash.useVideoElementWaitingCurrentTimeReassign&&this.element&&this.element.readyState===2&&!this.element.seeking&&uu(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=q.interval(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=q.now(),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:q.ErrorCategory.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`,q.flattenObject(c))},e=>{this.error$.next({id:`StallWatchdogCallback`,category:q.ErrorCategory.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){q.assertNonNullable(this.element),q.assertNonNullable(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),uu(this.element.buffered,n)||await Promise.all([this.videoBufferManager.abort(),this.audioBufferManager?.abort()]),!(q.isNullable(this.element)||q.isNullable(this.videoBufferManager))&&(this.videoBufferManager.maintain(n),this.audioBufferManager?.maintain(n),this.element.currentTime=n/1e3,this.tracer.log(`seek`,q.flattenObject({requestedPosition:e,forcePrecise:t,position:n})))}warmUpMediaSourceIfNeeded(e=this.element?.currentTime){q.isNonNullable(this.element)&&q.isNonNullable(this.source)&&q.isNonNullable(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=q.getTraceSubscriptionMethod(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}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=q.interval(this.tuning.gapWatchdogInterval).subscribe(()=>this.jumpGap(),e=>{this.error$.next({id:`GapWatchdog`,category:q.ErrorCategory.WTF,message:`Error handling gaps`,thrown:e})}),this.subscription.add(this.gapWatchdogSubscription))};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`,q.flattenObject(n)))}}calculateDurationFromSegments(){return Math.max(this.videoBufferManager?.calculateDurationFromSegments()||0,this.audioBufferManager?.calculateDurationFromSegments()||0)}}var Ou=require(`@vkontakte/videoplayer-shared/es2024`);class ku{subscription=new Ou.Subscription;pipSize$=new Ou.ValueSubject(void 0);videoSize$=new Ou.ValueSubject(void 0);elementSize$=new Ou.ValueSubject(void 0);pictureInPictureWindowRemoveEventListener=Ou.noop;connect({observableVideo:e,video:t}){let n=e=>{let t=e.target;this.pipSize$.next({width:t.width,height:t.height})};this.subscription.add(Ou.observeElementSize(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(Ou.combine({videoSize:this.videoSize$,pipSize:this.pipSize$,inPip:e.inPiP$}).pipe(Ou.map(({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 Au{scene3D;subscription=new K.Subscription;volumeSubscription=new K.Subscription;videoState=new P(`stopped`);video;observableVideo=null;player;params;tracer;textTracksManager;droppedFramesManager=new Fo;stallsManager=new ps;elementSizeManager=new ku;videoTracksMap=new Map;audioTracksMap=new Map;textTracksMap=new Map;videoStreamsMap=new Map;audioStreamsMap=new Map;videoTrackSwitchHistory=new Pa;audioTrackSwitchHistory=new Pa;constructor(e){this.textTracksManager=new sa(e.source.url),this.params=e,this.video=Yi(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(Xa(this.params.source.url)),this.params.output.isLive$.next(!1),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.player=new Du({throughputEstimator:this.params.dependencies.throughputEstimator,tuning:this.params.tuning,compatibilityMode:this.params.source.compatibilityMode,tracer:this.tracer,forceVideoCodec:this.params.forceVideoCodec}),this.subscribe()}getProviderSubscriptionInfo(){let{output:e,desiredState:t}=this.params;K.isNullable(this.observableVideo)&&(this.observableVideo=ma(this.video),this.subscription.add(()=>this.observableVideo?.destroy()));let n=this.constructor.name,r=t=>{e.error$.next({id:n,category:K.ErrorCategory.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(K.filter(e=>!!e.length),K.once()).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(K.map(e=>e.to.state!==`none`),K.filterChanged());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(K.filter(K.isNonNullable),K.once()),e.firstBytesEvent$),i(this.stallsManager.severeStallOccurred$,e.severeStallOccurred$),i(this.videoState.stateChangeEnded$.pipe(K.map(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(ea(this.video,t.isLooped,r)),this.subscription.add(this.params.skipVideoElVolumeSync$.subscribe(e=>{this.volumeSubscription.unsubscribe(),e?this.volumeSubscription.add(t.volume.stateChangeStarted$.subscribe(({to:e})=>this.params.output.volume$.next(e),r)):this.volumeSubscription.add(n.volumeState$.subscribe(this.params.output.volume$,r))})),_s({subscription:this.subscription,desiredState:t,videoElement$:this.params.output.element$,observableVideo:n}),this.subscription.add(ta(this.video,t.volume,n.volumeState$,r,{skipVideoElVolumeSync$:this.params.skipVideoElVolumeSync$})),this.subscription.add(na(this.video,t.playbackRate,n.playbackRateState$,r)),this.elementSizeManager.connect({video:this.video,observableVideo:n}),i(zo(this.video,{threshold:this.params.tuning.autoTrackSelection.activeVideoAreaThreshold}),e.elementVisible$),this.subscription.add(n.playing$.subscribe(()=>{this.videoState.setState(`playing`),j(t.playbackState,`playing`),this.scene3D&&this.scene3D.play()},r)).add(n.pause$.subscribe(()=>{this.videoState.setState(`paused`),j(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`),j(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(K.assertNonNullable(e,`Manifest not loaded or empty`),!this.params.tuning.isAudioDisabled){let t=[];for(let n of e.audio){t.push(Sl(n));let e=[];for(let t of n.representations){let r=yl(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(Cl(t));let e=[];for(let n of t.representations){let r=vl({...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=bl(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=K.merge(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$,K.fromEvent(this.video,`progress`)).pipe(K.filter(()=>this.videoTracksMap.size>0)),{abrThrottle:s}=this.params.tuning.dash;s&&(o=o.pipe(K.throttle(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);K.isNonNullable(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(K.combine({videoState:this.videoState.stateChangeEnded$,autoVideoTrackState:K.merge(K.observableFrom([t.autoVideoTrackSwitching.getState()]),t.autoVideoTrackSwitching.stateChangeEnded$.pipe(K.map(e=>e.to)))}).pipe(K.map(({videoState:e,autoVideoTrackState:t})=>e.to!==`stopped`&&t),K.filterChanged()).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(K.filterChanged()).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(Cl(i));let o=this.player.calculateDurationFromSegments();o&&this.params.output.duration$.next(o/1e3)},r)),this.subscription.add(this.player.currentAudioRepresentation$.pipe(K.filterChanged()).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(Sl(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(K.map(({to:e})=>e===`ready`),K.filterChanged());this.subscription.add(K.merge(c,t.autoVideoTrackSwitching.stateChangeStarted$,this.player.state$.stateChangeEnded$,K.observableFrom([`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(K.merge(c,this.player.state$.stateChangeEnded$,K.observableFrom([`init`])).subscribe(()=>this.player.setPreloadOnly(t.playbackState.getState()===`ready`)));let l=K.merge(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,K.observableFrom([`init`])).pipe(K.debounce(0));this.subscription.add(l.subscribe(this.syncPlayback,r))}selectVideoAudioRepresentations(){if(this.player.isStreamEnded)return;let e=this.params.tuning.useNewAutoSelectVideoTrack?Ba:za,t=this.params.tuning.useNewAutoSelectVideoTrack?Ya:Ja,n=this.params.tuning.useNewAutoSelectVideoTrack?Ka:qa,{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=Vl(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)}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`),j(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`),j(this.params.desiredState.playbackState,`paused`)):t===`playing`?(this.videoState.startTransitionTo(`playing`),this.playIfAllowed()):n?.to===`ready`&&j(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`&&j(this.params.desiredState.playbackState,`playing`);return;case`paused`:t===`playing`?(this.videoState.startTransitionTo(`playing`),this.playIfAllowed()):n?.to===`paused`&&j(this.params.desiredState.playbackState,`paused`);return;default:return K.assertNever(e)}}};init3DScene=e=>{if(this.scene3D)return;this.scene3D=new is(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)};destroy3DScene=()=>{this.scene3D&&=(this.scene3D.destroy(),void 0)};playIfAllowed(){no(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState(`paused`),j(this.params.desiredState.playbackState,`paused`,!0))},e=>this.params.output.error$.next({id:`ForcePlay`,message:`play() failed even with workarounds`,category:K.ErrorCategory.DOM,thrown:e}))}destroy(){this.subscription.unsubscribe(),this.volumeSubscription.unsubscribe(),this.droppedFramesManager.destroy(),this.stallsManager.destroy(),this.elementSizeManager.destroy(),this.destroy3DScene(),this.textTracksManager.destroy(),this.player.destroy(),this.params.output.element$.next(void 0),this.params.output.currentVideoStream$.next(void 0),Xi(this.video,this.params.tuning),this.tracer.end()}}class ju extends Au{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)}}var Mu=require(`@vkontakte/videoplayer-shared/es2024`);class Nu extends Au{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 Mu.ValueSubject(1);a(r.playbackRateState$,o),(this.params.tuning.dashCmafLive.catchupLiveForMutedInactiveTab||this.params.tuning.live.catchupLiveForMutedInactiveTab)&&this.subscription.add(n.elementVisible$.pipe(Mu.filterChanged()).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(Mu.map(e=>e.to)).subscribe(this.player.isLowLatency$)).add(Mu.combine({liveBufferTime:n.liveBufferTime$,liveAvailabilityStartTime:this.player.liveAvailabilityStartTime$}).pipe(Mu.map(({liveBufferTime:e,liveAvailabilityStartTime:n})=>e&&n?e*1e3+n+t:void 0)).subscribe(n.liveTime$)).add(Mu.combine({liveDuration:this.player.liveDuration$,liveStreamStatus:this.player.liveStreamStatus$,playbackRate:Mu.merge(r.playbackRateState$,new Mu.ValueSubject(1))}).pipe(Mu.filter(({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||Mu.isNullable(i)||(t=e-i)})).add(Mu.combine({time:n.liveBufferTime$,liveDuration:this.player.liveDuration$,playbackRate:Mu.merge(r.playbackRateState$,new Mu.ValueSubject(1))}).pipe(Mu.filterChanged((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||Mu.isNullable(e)||Mu.isNullable(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=xl(e);this.params.output.availableTextTracks$.next([t])}})),this.params.tuning.dashCmafLive.externalStopControl||this.subscription.add(this.player.liveStreamStatus$.pipe(Mu.filter(e=>Mu.isNonNullable(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 Pu=`X-Playback-Duration`,Fu=async e=>{let t=await Ms(e),n=await t.text(),r=/#EXT-X-VK-PLAYBACK-DURATION:(\d+)/m.exec(n)?.[1];return r?parseInt(r,10):t.headers.has(Pu)?parseInt(t.headers.get(Pu),10):void 0},X=require(`@vkontakte/videoplayer-shared/es2024`),Iu=l(Ht(),1),Lu=require(`@vkontakte/videoplayer-shared/es2024`),Ru=e=>{let t=null;if(e.QUALITY&&(t=ga(e.QUALITY)),!t&&e.RESOLUTION){let[n,r]=e.RESOLUTION.split(`x`).map(e=>parseInt(e,10));t=Lu.videoSizeToQuality({width:n,height:r})}return t??null},zu=(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=Iu.default(o[1].split(`,`).map(e=>e.split(`=`))),a=i.QUALITY??`stream-${i.BANDWIDTH}`,s=Ru(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=Iu.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}},Bu=e=>new Promise(t=>{setTimeout(()=>{t()},e)}),Vu=0,Hu=async(e,t=e,n,r)=>{let i=await(await Ms(e,r)).text();Vu+=1;try{let{qualityManifests:e,textTracks:n}=zu(i,t);return{qualityManifests:e,textTracks:n}}catch{if(Vu<=n.manifestRetryMaxCount)return await Bu(Lu.getExponentialDelay(Vu-1,{start:n.manifestRetryInterval,max:n.manifestRetryMaxInterval})),Hu(e,t,n)}return{qualityManifests:[],textTracks:[]}},Uu=Hu,Wu=require(`@vkontakte/videoplayer-shared/es2024`);class Gu{params;subscription=new Wu.Subscription;abortControllers={destroy:new Ns,nextManifest:null};prepareUrl=void 0;currentTextTrackData=null;availableTextTracks$=new Wu.ValueSubject(null);getCurrentTime$=new Wu.ValueSubject(null);error$=new Wu.Subject;constructor(e,t,n,r,i){this.params={fetchManifestData:n,sourceUrl:r,downloadThreshold:i},this.subscription.add(e.pipe(Wu.throttle(1e3)).subscribe(e=>{this.processLiveTime(e)})),this.getCurrentTime$.next(()=>this.currentTextTrackData?this.currentTextTrackData.playlist.segmentStartTime/1e3+t.currentTime:0)}destroy(){this.subscription.unsubscribe(),this.abortControllers.destroy.abort()}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 Ms(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(Wu.isNonNullable(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 Ns;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:Wu.ErrorCategory.WTF,thrown:t,message:e})}}class Ku{subscription=new X.Subscription;volumeSubscription=new X.Subscription;videoState=new P(`stopped`);video;params;textTracksManager=null;liveTextManager=null;masterManifest;manifests$=new X.ValueSubject([]);maxSeekBackTime$;liveOffset=new ca;manifestStartTime$=new X.ValueSubject(void 0);constructor(e){this.params=e,this.video=Yi(e.container,e.tuning),this.params.output.element$.next(this.video),this.masterManifest={id:`master`,quality:X.VideoQuality.INVARIANT,url:this.params.source.url};let t=(e,t)=>Uu(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 Gu(this.params.output.liveTime$,this.video,t,this.params.source.url,this.params.tuning.hlsLiveNewTextManagerDownloadThreshold):this.textTracksManager=new sa(e.source.url),t(this.generateLiveUrl()).then(({qualityManifests:e,textTracks:t})=>{e.length===0&&this.params.output.error$.next({id:`HlsLiveProviderInternal:empty_manifest`,category:X.ErrorCategory.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:X.ErrorCategory.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(Xa(this.params.source.url)),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.maxSeekBackTime$=new X.ValueSubject(e.source.maxSeekBackTime??1/0),this.subscribe()}selectManifest(){let{autoVideoTrackSwitching:e,videoTrack:t}=this.params.desiredState,n=e.getState(),r=t.getTransition(),i=r?.to?.id??t.getState()?.id??`master`,a=this.manifests$.getValue();if(!a.length)return;let o=n?`master`:i;return n&&!r&&t.startTransitionTo(this.masterManifest),a.find(e=>e.id===o)}subscribe(){let{output:e,desiredState:t}=this.params,n=t=>{e.error$.next({id:`HlsLiveProvider`,category:X.ErrorCategory.WTF,message:`HlsLiveProvider internal logic error`,thrown:t})},r=ma(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(ta(this.video,t.volume,r.volumeState$,n,{skipVideoElVolumeSync$:this.params.skipVideoElVolumeSync$})),this.subscription.add(this.params.skipVideoElVolumeSync$.subscribe(e=>{this.volumeSubscription.unsubscribe(),e?this.volumeSubscription.add(t.volume.stateChangeStarted$.subscribe(({to:e})=>this.params.output.volume$.next(e),n)):this.volumeSubscription.add(r.volumeState$.subscribe(this.params.output.volume$,n))})),this.subscription.add(na(this.video,t.playbackRate,r.playbackRateState$,n)),i(zo(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`),j(t.playbackState,`playing`)},n)).add(r.pause$.subscribe(()=>{this.videoState.setState(`paused`),j(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(X.filterChanged(),X.map(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&&X.isNonNullable(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(Xa(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(()=>{let e=this.video?.getStartDate?.()?.getTime();this.manifestStartTime$.next(e||void 0)},n)),this.subscription.add(X.combine({startTime:this.manifestStartTime$.pipe(X.filter(X.isNonNullable)),currentTime:r.timeUpdate$}).subscribe(({startTime:e,currentTime:t})=>this.params.output.liveTime$.next(e+t*1e3),n)),this.subscription.add(this.manifests$.pipe(X.map(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=X.merge(t.playbackState.stateChangeStarted$,t.seekState.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.stateChangeStarted$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,this.manifests$,X.observableFrom([`init`])).pipe(X.debounce(0));this.subscription.add(a.subscribe(this.syncPlayback,n));let o=!1;this.params.tuning.live.catchupLiveForMutedInactiveTab&&this.subscription.add(e.elementVisible$.pipe(X.filterChanged()).subscribe(t=>{let n=e.position$.getValue(),r=e.volume$.getValue(),i=!r.volume||r.muted;!t&&!n&&i?o=!0:t&&o&&(this.seek(0),o=!1)}))}destroy(){this.subscription.unsubscribe(),this.volumeSubscription.unsubscribe(),this.textTracksManager?.destroy(),this.liveTextManager?.destroy(),this.params.output.element$.next(void 0),Xi(this.video,this.params.tuning)}prepare(){let e=this.selectManifest();if(X.isNullable(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=Nr(r.toString(),this.liveOffset.getTotalOffset(),i);this.liveTextManager?.prepare(a),this.video.setAttribute(`src`,a),this.video.load(),Fu(a).then(e=>{if(!X.isNullable(e))this.maxSeekBackTime$.next(e);else{let e=this.params.source.maxSeekBackTime??this.maxSeekBackTime$.getValue();(X.isNullable(e)||!isFinite(e))&&Ms(a).then(e=>e.text()).then(e=>{let t=/#EXT-X-STREAM-INF[^\n]+\n(.+)/m.exec(e)?.[1];t&&Fu(new URL(t,a).toString()).then(e=>{X.isNullable(e)||this.maxSeekBackTime$.next(e)})}).catch(()=>{})}})}playIfAllowed(){no(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState(`paused`),this.liveOffset.pause(),j(this.params.desiredState.playbackState,`paused`,!0))},e=>this.params.output.error$.next({id:`ForcePlay`,message:`play() failed even with workarounds`,category:X.ErrorCategory.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()}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`),j(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`?j(this.params.desiredState.playbackState,`ready`):t===`paused`?(this.videoState.setState(`paused`),this.liveOffset.pause(),j(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`&&j(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`&&(j(this.params.desiredState.playbackState,`paused`),this.liveOffset.pause());return;case`changing_manifest`:break;default:return X.assertNever(e)}};generateLiveUrl(){let e=Nr(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}}var qu=require(`@vkontakte/videoplayer-shared/es2024`);class Ju{subscription=new qu.Subscription;volumeSubscription=new qu.Subscription;videoState=new P(`stopped`);video;params;textTracksManager;masterManifest;manifests$=new qu.ValueSubject([]);unmuteAfterBrowserResetsHappened=new qu.ValueSubject(!1);constructor(e){this.textTracksManager=new sa(e.source.url),this.params=e,this.video=Yi(e.container,e.tuning),this.params.output.element$.next(this.video),this.masterManifest={id:`master`,quality:qu.VideoQuality.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(Xa(this.params.source.url)),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),this.params.output.manifestRequested$.next(),Uu(Nr(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:qu.ErrorCategory.NETWORK,message:`Error fetching manifest and extracting qualities`,thrown:e})),this.subscribe()}selectManifest(){let{autoVideoTrackSwitching:e,videoTrack:t}=this.params.desiredState,n=e.getState(),r=t.getTransition(),i=r?.to?.id??t.getState()?.id??`master`,a=this.manifests$.getValue();if(!a.length)return;let o=n?`master`:i;return n&&(!r||!r.from)&&t.startTransitionTo(this.masterManifest),a.find(e=>e.id===o)}subscribe(){let{output:e,desiredState:t}=this.params,n=t=>{e.error$.next({id:`HlsProvider`,category:qu.ErrorCategory.WTF,message:`HlsProvider internal logic error`,thrown:t})},r=ma(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(qu.map(e=>e.to)),this.params.output.playbackState$),this.subscription.add(ea(this.video,t.isLooped,n)),this.subscription.add(this.params.skipVideoElVolumeSync$.subscribe(e=>{this.volumeSubscription.unsubscribe(),e?this.volumeSubscription.add(t.volume.stateChangeStarted$.subscribe(({to:e})=>this.params.output.volume$.next(e),n)):this.volumeSubscription.add(r.volumeState$.subscribe(this.params.output.volume$,n))})),this.subscription.add(na(this.video,t.playbackRate,r.playbackRateState$,n)),_s({subscription:this.subscription,desiredState:t,videoElement$:this.params.output.element$,observableVideo:r}),this.subscription.add(ta(this.video,t.volume,r.volumeState$,n,{skipVideoElVolumeSync$:this.params.skipVideoElVolumeSync$})),this.textTracksManager.connect(this.video,t,e),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState(`playing`),j(t.playbackState,`playing`)},n)).add(r.pause$.subscribe(()=>{this.videoState.setState(`paused`),j(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&&qu.isNonNullable(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(Xa(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`),j(t.playbackState,`paused`)})),this.subscription.add(this.manifests$.pipe(qu.map(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)),!M.device.isIOS||!this.params.tuning.useNativeHLSTextTracks){let{textTracks:e}=this.video;this.subscription.add(qu.merge(qu.fromEvent(e,`addtrack`),qu.fromEvent(e,`removetrack`),qu.fromEvent(e,`change`),qu.observableFrom([`init`])).subscribe(()=>{for(let t=0;t<e.length;t++)e[t].mode=`hidden`},n))}let a=qu.merge(t.playbackState.stateChangeStarted$,t.seekState.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.stateChangeStarted$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,this.manifests$,qu.observableFrom([`init`])).pipe(qu.debounce(0));this.subscription.add(a.subscribe(this.syncPlayback,n))}destroy(){this.subscription.unsubscribe(),this.volumeSubscription.unsubscribe(),this.textTracksManager.destroy(),this.params.output.element$.next(void 0),Xi(this.video,this.params.tuning)}prepare(){let e=this.selectManifest();if(qu.isNullable(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(){no(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState(`paused`),j(this.params.desiredState.playbackState,`paused`,!0))},e=>this.params.output.error$.next({id:`ForcePlay`,message:`play() failed even with workarounds`,category:qu.ErrorCategory.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next(),this.video.currentTime=e/1e3}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`),j(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`?j(this.params.desiredState.playbackState,`ready`):t===`paused`?(this.videoState.setState(`paused`),j(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`&&j(this.params.desiredState.playbackState,`playing`);return;case`paused`:t===`playing`?(this.videoState.startTransitionTo(`playing`),this.playIfAllowed()):n?.to===`paused`&&j(this.params.desiredState.playbackState,`paused`);return;case`changing_manifest`:break;default:return qu.assertNever(e)}}}var Yu=l(lt(),1),Xu=l($e(),1),Zu=l(An(),1),Qu=require(`@vkontakte/videoplayer-shared/es2024`);class $u{subscription=new Qu.Subscription;volumeSubscription=new Qu.Subscription;videoState=new P(`stopped`);video;trackUrls={};params;textTracksManager=new sa;constructor(e){this.params=e,this.video=Yi(e.container,e.tuning),this.params.output.element$.next(this.video),Yu.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(Xu.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:Qu.ErrorCategory.WTF,message:`MpegProvider internal logic error`,thrown:t})},r=ma(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(Qu.map(e=>e.to)),this.params.output.playbackState$),this.subscription.add(ea(this.video,t.isLooped,n)),_s({subscription:this.subscription,desiredState:t,videoElement$:this.params.output.element$,observableVideo:r}),this.subscription.add(ta(this.video,t.volume,r.volumeState$,n,{skipVideoElVolumeSync$:this.params.skipVideoElVolumeSync$})),this.subscription.add(this.params.skipVideoElVolumeSync$.subscribe(e=>{this.volumeSubscription.unsubscribe(),e?this.volumeSubscription.add(t.volume.stateChangeStarted$.subscribe(({to:e})=>this.params.output.volume$.next(e),n)):this.volumeSubscription.add(r.volumeState$.subscribe(this.params.output.volume$,n))})),this.subscription.add(na(this.video,t.playbackRate,r.playbackRateState$,n)),i(zo(this.video),e.elementVisible$),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState(`playing`),j(t.playbackState,`playing`)},n)).add(r.pause$.subscribe(()=>{this.videoState.setState(`paused`),j(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&&Qu.isNonNullable(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`),j(t.playbackState,`paused`)})),this.textTracksManager.connect(this.video,t,e);let a=Qu.merge(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,Qu.observableFrom([`init`])).pipe(Qu.debounce(0));this.subscription.add(a.subscribe(this.syncPlayback,n))}destroy(){this.subscription.unsubscribe(),this.volumeSubscription.unsubscribe(),this.textTracksManager.destroy(),this.trackUrls={},this.params.output.element$.next(void 0),Xi(this.video,this.params.tuning)}prepare(){let e=this.params.desiredState.videoTrack.getState()?.id;Qu.assertNonNullable(e,`MpegProvider: track is not selected`);let{url:t}=this.trackUrls[e];Qu.assertNonNullable(t,`MpegProvider: No url for ${e}`),this.params.tuning.requestQuick&&(t=Ls(t)),this.video.setAttribute(`src`,t),this.video.load(),this.params.output.hostname$.next(Xa(t))}playIfAllowed(){no(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState(`paused`),j(this.params.desiredState.playbackState,`paused`,!0))},e=>this.params.output.error$.next({id:`ForcePlay`,message:`play() failed even with workarounds`,category:Qu.ErrorCategory.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next(),this.video.currentTime=e/1e3}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`),j(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`?j(this.params.desiredState.playbackState,`ready`):t===`paused`?(this.videoState.setState(`paused`),j(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`&&j(this.params.desiredState.playbackState,`playing`);return;case`paused`:t===`playing`?(this.videoState.startTransitionTo(`playing`),this.playIfAllowed()):n?.to===`paused`&&j(this.params.desiredState.playbackState,`paused`);return;default:return Qu.assertNever(e)}};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(Ka(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=Xu.default(this.trackUrls).map(e=>e.track);if(!r||!i||ka(e,a[0].quality,Zu.default(a,-1)?.quality)){n();return}let o=e.max?Qu.isLowerOrEqual(r,e.max):!0,s=e.min?Qu.isHigherOrEqual(r,e.min):!0;o&&s||n(e)}}var ed=require(`@vkontakte/videoplayer-shared/es2024`),td=require(`@vkontakte/videoplayer-shared/es2024`),nd=[`stun:videostun.mycdn.me:80`],rd=1e3,id=3,ad=()=>null;class od{options;ws=null;peerConnection=null;serverUrl=``;streamKey=``;stream=null;signalingType=`JOIN`;retryTimeout;retryCount=0;externalStartCallback=ad;externalStopCallback=ad;externalErrorCallback=ad;constructor(e,t){this.options=this.normalizeOptions(t);let n=e.split(`/`);this.serverUrl=n.slice(0,n.length-1).join(`/`),this.streamKey=n[n.length-1]}onStart(e){try{this.externalStartCallback=e}catch(e){this.handleSystemError(e)}}onStop(e){try{this.externalStopCallback=e}catch(e){this.handleSystemError(e)}}onError(e){try{this.externalErrorCallback=e}catch(e){this.handleSystemError(e)}}connect(){this.connectWS()}disconnect(){try{this.externalStopCallback(),this.closeConnections()}catch(e){this.handleSystemError(e)}}connectWS(){this.ws||(this.ws=new WebSocket(this.serverUrl),this.ws.onopen=this.onSocketOpen.bind(this),this.ws.onmessage=this.onSocketMessage.bind(this),this.ws.onclose=this.onSocketClose.bind(this),this.ws.onerror=this.onSocketError.bind(this))}onSocketOpen(){this.handleLogin()}onSocketClose(e){try{if(!this.ws)return;this.ws=null,e.code>1e3?(this.retryCount++,this.retryCount>this.options.maxRetryNumber?this.handleNetworkError():this.scheduleRetry()):this.externalStopCallback()}catch(e){this.handleRTCError(e)}}onSocketError(e){try{this.externalErrorCallback(Error(e.toString()))}catch(e){this.handleRTCError(e)}}onSocketMessage(e){try{let t=this.parseMessage(e.data);switch(t.type){case`JOIN`:case`CALL_JOIN`:this.handleJoinMessage(t);break;case`UPDATE`:this.handleUpdateMessage(t);break;case`STATUS`:this.handleStatusMessage(t);break}}catch(e){this.handleRTCError(e)}}handleJoinMessage(e){switch(e.inviteType){case`ANSWER`:this.handleAnswer(e.sdp);break;case`CANDIDATE`:this.handleCandidate(e.candidate);break}}handleStatusMessage(e){switch(e.status){case`UNPUBLISHED`:this.handleUnpublished();break}}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:nd}]};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:td.ErrorCategory.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),rd)}normalizeOptions(e={}){let t={stunServerList:nd,maxRetryNumber:id,errorChanel:null};return e.stunServerList&&(t.stunServerList=e.stunServerList),e.maxRetryNumber&&e.maxRetryNumber>0&&(t.maxRetryNumber=e.maxRetryNumber),t}}class sd{subscription;volumeSubscription;params;log;video;videoState=new P(`stopped`);liveStreamClient;maxSeekBackTime$=new ed.ValueSubject(0);constructor(e){this.subscription=new ed.Subscription,this.volumeSubscription=new ed.Subscription,this.params=e,this.log=this.params.dependencies.logger.createComponentLog(`WebRTCLiveProvider`),this.video=Yi(e.container,e.tuning),this.liveStreamClient=new od(this.params.source.url,{maxRetryNumber:this.params.tuning.webrtc.connectionRetryMaxNumber,errorChanel:this.params.output.error$}),this.liveStreamClient.onStart(this.onLiveStreamStart.bind(this)),this.liveStreamClient.onStop(this.onLiveStreamStop.bind(this)),this.liveStreamClient.onError(this.onLiveStreamError.bind(this)),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.subscribe()}destroy(){this.subscription.unsubscribe(),this.volumeSubscription.unsubscribe(),this.liveStreamClient.disconnect(),this.params.output.element$.next(void 0),Xi(this.video,this.params.tuning)}subscribe(){let{output:e,desiredState:t}=this.params,n=t=>{e.error$.next({id:`WebRTCLiveProvider`,category:ed.ErrorCategory.WTF,message:`WebRTCLiveProvider internal logic error`,thrown:t})};this.subscription.add(ed.merge(this.videoState.stateChangeStarted$.pipe(ed.map(e=>({transition:e,type:`start`}))),this.videoState.stateChangeEnded$.pipe(ed.map(e=>({transition:e,type:`end`})))).subscribe(({transition:e,type:t})=>{this.log({message:`[videoState change] ${t}: ${JSON.stringify(e)}`})}));let r=ma(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(zo(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(ta(this.video,t.volume,r.volumeState$,n,{skipVideoElVolumeSync$:this.params.skipVideoElVolumeSync$})),this.subscription.add(this.params.skipVideoElVolumeSync$.subscribe(i=>{this.volumeSubscription.unsubscribe(),i?this.volumeSubscription.add(t.volume.stateChangeStarted$.subscribe(({to:t})=>e.volume$.next(t),n)):this.volumeSubscription.add(r.volumeState$.subscribe(e.volume$,n))})),this.subscription.add(this.videoState.stateChangeEnded$.subscribe(n=>{switch(n.to){case`stopped`:e.position$.next(0),e.duration$.next(0),t.playbackState.setState(`stopped`);break;case`ready`:break;case`paused`:t.playbackState.setState(`paused`);break;case`playing`:t.playbackState.setState(`playing`);break;default:return ed.assertNever(n.to)}},n)).add(ed.merge(t.playbackState.stateChangeStarted$,this.videoState.stateChangeEnded$,ed.observableFrom([`init`])).pipe(ed.debounce(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(Xa(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:ed.VideoQuality.INVARIANT}),this.video.srcObject=e,j(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:ed.ErrorCategory.EXTERNAL_API,message:e.message,thrown:e})}playIfAllowed(){no(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState(`paused`),j(this.params.desiredState.playbackState,`paused`,!0))},e=>this.params.output.error$.next({id:`ForcePlay`,message:`play() failed even with workarounds`,category:ed.ErrorCategory.DOM,thrown:e}))}prepare(){this.liveStreamClient.connect()}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`),j(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`),j(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`&&j(this.params.desiredState.playbackState,`playing`);return;case`paused`:t===`playing`?(this.videoState.startTransitionTo(`playing`),this.playIfAllowed()):n?.to===`paused`&&j(this.params.desiredState.playbackState,`paused`);return;default:return ed.assertNever(e)}}}class cd{length;index;iterator;current;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 Error(`Iterable is completed`);return this.current.value}isCompleted(){return!!this.current.done}isLast(){return this.index===this.length-1}}var Z=require(`@vkontakte/videoplayer-shared/es2024`),ld=require(`@vkontakte/videoplayer-shared/es2024`),ud=e=>new ld.Observable(t=>{let n=new ld.Subscription,r=e.desiredPlaybackState$.stateChangeStarted$.pipe(ld.map(({from:e,to:t})=>`${e}-${t}`)),i=e.desiredPlaybackState$.stateChangeEnded$,a=e.providerChanged$.pipe(ld.map(({type:e})=>e!==void 0)),o=new ld.Subject,s=0,c=`unknown`;return n.add(r.subscribe(t=>{s&&window.clearTimeout(s),c=t,s=window.setTimeout(()=>o.next(t),e.maxTransitionInterval),B({m:`hangup.set`,l:t,id:s})})),n.add(i.subscribe(()=>{B({m:`hangup.cl`,id:s}),window.clearTimeout(s),c=`unknown`,s=0})),n.add(a.subscribe(t=>{s&&(B({m:`hangup.rs.0`,id:s}),window.clearTimeout(s),s=0,t&&(s=window.setTimeout(()=>o.next(c),e.maxTransitionInterval),B({m:`hangup.rs.1`,id:s})))})),n.add(o.subscribe(t)),()=>{window.clearTimeout(s),n.unsubscribe()}}),dd=require(`@vkontakte/videoplayer-shared/es2024`);function fd(){return new(window.AudioContext||window.webkitAudioContext)}class pd{providerOutput;provider$;volumeMultiplierError$;volumeMultiplier;static errorId=`VolumeMultiplierManager`;destroyController=new Ns;subscriptions=new dd.Subscription;audioContext=null;gainNode=null;mediaElementSource=null;constructor(e,t,n,r){this.providerOutput=e,this.provider$=t,this.volumeMultiplierError$=n,this.volumeMultiplier=r,this.subscriptions.add(this.provider$.pipe(dd.filter(e=>!!e.type),dd.once()).subscribe(({type:e})=>this.subscribe(e)))}subscribe(e){M.browser.isSafari&&e!==`MPEG`||this.subscriptions.add(dd.combine({video:this.providerOutput.element$,playbackState:this.providerOutput.playbackState$,volume:this.providerOutput.volume$}).pipe(dd.filter(({playbackState:e,video:t,volume:{muted:n,volume:r}})=>e===`playing`&&!!t&&!n&&!!r),dd.once()).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=fd();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:pd.errorId,category:dd.ErrorCategory.VIDEO_PIPELINE,message:e?.message??`${pd.errorId} exception`,thrown:e})}}var md={chunkDuration:5e3,maxParallelRequests:5};class hd{current$=new Z.ValueSubject({type:void 0});providerError$=new Z.Subject;noAvailableProvidersError$=new Z.Subject;volumeMultiplierError$=new Z.Subject;providerOutput={position$:new Z.ValueSubject(0),duration$:new Z.ValueSubject(1/0),volume$:new Z.ValueSubject({muted:!1,volume:1}),availableVideoStreams$:new Z.ValueSubject([]),currentVideoStream$:new Z.ValueSubject(void 0),availableVideoTracks$:new Z.ValueSubject([]),currentVideoTrack$:new Z.ValueSubject(void 0),availableVideoCodecs$:new Z.ValueSubject([]),availableAudioStreams$:new Z.ValueSubject([]),currentAudioStream$:new Z.ValueSubject(void 0),availableAudioTracks$:new Z.ValueSubject([]),availableAudioCodecs$:new Z.ValueSubject([]),currentVideoSegmentLength$:new Z.ValueSubject(0),currentAudioSegmentLength$:new Z.ValueSubject(0),isAudioAvailable$:new Z.ValueSubject(!0),autoVideoTrackLimitingAvailable$:new Z.ValueSubject(!1),autoVideoTrackLimits$:new Z.ValueSubject(void 0),currentBuffer$:new Z.ValueSubject(void 0),currentNativeBuffer$:new Z.ValueSubject(void 0),isBuffering$:new Z.ValueSubject(!0),error$:new Z.Subject,fetcherError$:new Z.Subject,fetcherRecoverableError$:new Z.Subject,warning$:new Z.Subject,willSeekEvent$:new Z.Subject,soundProhibitedEvent$:new Z.Subject,seekedEvent$:new Z.Subject,loopedEvent$:new Z.Subject,endedEvent$:new Z.Subject,manifestRequested$:new Z.Subject,firstBytesManifest$:new Z.Subject,manifestReceived$:new Z.Subject,firstBytesRequested$:new Z.Subject,firstBytesReceived$:new Z.Subject,firstBytesEvent$:new Z.Subject,loadedMetadataEvent$:new Z.Subject,firstFrameEvent$:new Z.Subject,canplay$:new Z.Subject,isLive$:new Z.ValueSubject(void 0),isLiveEnded$:new Z.ValueSubject(null),canPlayLiveTailBuffer$:new Z.ValueSubject(!1),isLowLatency$:new Z.ValueSubject(!1),canChangePlaybackSpeed$:new Z.ValueSubject(!0),liveTime$:new Z.ValueSubject(void 0),liveBufferTime$:new Z.ValueSubject(void 0),liveLatency$:new Z.ValueSubject(void 0),severeStallOccurred$:new Z.Subject,availableTextTracks$:new Z.ValueSubject([]),currentTextTrack$:new Z.ValueSubject(void 0),hostname$:new Z.ValueSubject(void 0),httpConnectionType$:new Z.ValueSubject(void 0),httpConnectionReused$:new Z.ValueSubject(void 0),httpConnectionMetrics$:new Z.ValueSubject(void 0),httpDownloadMetrics$:new Z.ValueSubject(void 0),inPiP$:new Z.ValueSubject(!1),inFullscreen$:new Z.ValueSubject(!1),element$:new Z.ValueSubject(void 0),elementVisible$:new Z.ValueSubject(!0),availableSources$:new Z.ValueSubject(void 0),is3DVideo$:new Z.ValueSubject(!1),playbackState$:new Z.ValueSubject(``),getCurrentTime$:new Z.ValueSubject(null)};subscription=new Z.Subscription;screenFormatsIterator;chromecastFormatsIterator;videoCodecsIterator;log;tracer;params;failoverIndex;volumeMultiplierManager=null;constructor(e){this.params=e,this.log=this.params.dependencies.logger.createComponentLog(`ProviderContainer`),this.tracer=e.dependencies.tracer.createComponentTracer(this.constructor.name);let t=gi([...sc(this.params.tuning),...oc(this.params.tuning)]).filter(t=>Z.isNonNullable(e.sources[t])),{forceFormat:n,formatsToAvoid:r}=this.params.tuning,i=[];i=n?[n]:r.length?[...t.filter(e=>!Ei(r,e)),...t.filter(e=>Ei(r,e))]:t,this.log({message:`Selected formats: ${i.join(` > `)}`}),this.tracer.log(`Selected formats`,Z.flattenObject(i)),this.screenFormatsIterator=new cd(i),this.chromecastFormatsIterator=new cd([...cc(!0),...cc(!1)].filter(t=>Z.isNonNullable(e.sources[t]))),this.providerOutput.availableSources$.next(e.sources);let{volumeMultiplier:a=1,tuning:{useVolumeMultiplier:o}}=this.params;o&&a!==1&&pd.isSupported()&&(this.volumeMultiplierManager=new pd(this.providerOutput,this.current$,this.volumeMultiplierError$,a))}init(){B.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 cd(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(Z.isNullable(t)){this.handleNoFormatsError(e);return}let n;try{n=this.createProvider(e,t)}catch(e){this.providerError$.next({id:`ProviderNotConstructed`,category:Z.ErrorCategory.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 Z.assertNever(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,skipVideoElVolumeSync$:this.params.skipVideoElVolumeSync$};switch(e){case`DASH_SEP`:case`DASH_WEBM`:case`DASH_WEBM_AV1`:case`DASH_ONDEMAND`:case`DASH_STREAMS`:{let n=this.applyFailoverHost(t[e]),r=this.applyFailoverHost(t.HLS_ONDEMAND||t.HLS);Z.assertNonNullable(n);let{useDashProviderVirtual:i,useDashProviderVirtualMobile:a}=this.params.tuning,{isMobile:s}=M.device;return!s&&i||s&&a?new Xl({...o,source:n,sourceHls:r,forceVideoCodec:this.videoCodecsIterator?.getValue()}):new ju({...o,source:n,sourceHls:r,forceVideoCodec:this.videoCodecsIterator?.getValue()})}case`DASH_LIVE_CMAF`:{let n=this.applyFailoverHost(t[e]);return Z.assertNonNullable(n),this.params.tuning.useDashProviderVirtual&&!M.device.isMobile||this.params.tuning.useDashProviderVirtualMobile&&M.device.isMobile?new cu({...o,source:n}):new Nu({...o,source:n})}case`HLS`:case`HLS_ONDEMAND`:case`HLS_FMP4`:{let n=this.applyFailoverHost(t[e]);return Z.assertNonNullable(n),new Ju({...o,source:n})}case`HLS_LIVE`:case`HLS_LIVE_CMAF`:{let n=this.applyFailoverHost(t[e]);return Z.assertNonNullable(n),new Ku({...o,source:n,config:{maxPausedTime:this.params.tuning.live.maxPausedTime},format:e})}case`MPEG`:{let n=this.applyFailoverHost(t[e]);return Z.assertNonNullable(n),new $u({...o,source:n})}case`DASH_LIVE`:{let n=this.applyFailoverHost(t[e]);return Z.assertNonNullable(n),new Uo({...o,source:n,config:{...md,maxPausedTime:this.params.tuning.live.maxPausedTime}})}case`WEB_RTC_LIVE`:{let i=this.applyFailoverHost(t[e]);return Z.assertNonNullable(i),new sd({container:n,source:i,desiredState:r,output:a,dependencies:this.params.dependencies,tuning:this.params.tuning,skipVideoElVolumeSync$:this.params.skipVideoElVolumeSync$})}case`DASH`:case`DASH_LIVE_WEBM`:throw Error(`${e} is no longer supported`);default:return Z.assertNever(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 wi){let{chromecastConnector:e}=this.params.dependencies.chromecastInitializer;return Z.assertNonNullable(e),new yi({...a,chromecastConnector:e})}let o=this.params.dependencies.chromecastInitializer.connection$.getValue();return Z.assertNonNullable(o),new Fi({...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 Z.assertNever(e)}}skipFormat(e){switch(e){case`SCREEN`:return this.screenFormatsIterator.next();case`CHROMECAST`:return this.chromecastFormatsIterator.next();default:return Z.assertNever(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 Z.assertNever(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 Oi.default(Di.default(e).map(([e,t])=>[e,n(t)]))}initProviderErrorHandling(){let e=new Z.Subscription,t=!1,n=0;e.add(Z.merge(this.providerOutput.error$.pipe(Z.filter(e=>!this.params.tuning.ignoreAudioRendererError||!e.message||!/AUDIO_RENDERER_ERROR/gi.test(e.message))),ud({desiredPlaybackState$:this.params.desiredState.playbackState,maxTransitionInterval:this.params.tuning.maxPlaybackTransitionInterval,position$:this.providerOutput.position$,providerChanged$:this.current$}).pipe(Z.map(e=>({id:`ProviderHangup:${e}`,category:Z.ErrorCategory.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.filter(({to:e})=>e===`playing`),Z.once()).subscribe(()=>t=!0);e.add(n)}));let r=()=>{let e=B.drain(),{logDashLiveDebug:t,sendDashLiveDebug:n}=this.params.tuning;if(t&&Z.getWindow().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=s.reduce((c,{time:d,data:l,stack:p})=>{let m=(0,wl.default)(l).map(([f,g])=>`${f}:${g}`).join(",");return c+=`${d}: ${m}${p?`: ${p}`:""};`,c},"");I.devNull.push("core",{key:"vp_dash_live_debug",strings:[u]})}};return e.add(this.providerError$.subscribe(s=>{s.id.startsWith("ProviderHangup")&&(Q({m:"final.0",e:s.id}),r())})).add(this.noAvailableProvidersError$.subscribe(()=>{Q({m:"final.1"}),r()})),e.add(this.providerError$.subscribe(s=>{let n=this.current$.getValue().destination,o={error:s,currentDestination:n};if(n==="CHROMECAST")this.destroyProvider(),this.params.dependencies.chromecastInitializer.stopMedia().then(()=>this.switchToNextProvider("CHROMECAST"),()=>this.params.dependencies.chromecastInitializer.disconnect());else{let u=s.category===I.ErrorCategory.NETWORK,c=s.category===I.ErrorCategory.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,m=d&&!c&&(u&&t||!l);o={...o,isNetworkError:u,isFatalError:c,haveFailoverHost:d,tryFailover:m,canReinitProvider:l},l?(i++,this.reinitProvider()):m?(this.failoverIndex=this.failoverIndex===void 0?0:this.failoverIndex+1,this.reinitProvider()):p?this.switchToNextVideoCodec():(i=0,this.switchToNextProvider(n??"SCREEN"))}s.traceAsLog?this.tracer.log("providerInfo",(0,I.flattenObject)(o)):this.tracer.error("providerError",(0,I.flattenObject)(o))})),e}};var G=require("@vkontakte/videoplayer-shared/es2024");var ZM=5e3,WS="one_video_throughput",QS="one_video_rtt",Pl=()=>{let{navigator:a}=(0,G.getWindow)();if(a)return a.connection},GS=()=>{let a=Pl()?.downlink;if((0,G.isNonNullable)(a)&&a!==10)return a*1e3},YS=()=>{let a=Pl()?.rtt;if((0,G.isNonNullable)(a)&&a!==3e3)return a},KS=(a,e,t)=>{let i=t*8,r=i/a;return i/(r+e)},xl=class a{constructor(e){this.subscription=new G.Subscription;this.concurrentDownloads=new Set;this.tuningConfig=e;let t=a.load(WS)||(e.useBrowserEstimation?GS():void 0)||ZM,i=a.load(QS)??(e.useBrowserEstimation?YS():void 0)??0;if(this.throughput$=new G.ValueSubject(t),this.rtt$=new G.ValueSubject(i),this.rttAdjustedThroughput$=new G.ValueSubject(KS(t,i,e.rttPenaltyRequestSize)),this.throughput=Jt.getSmoothedValue(t,-1,e),this.rtt=Jt.getSmoothedValue(i,1,e),e.useBrowserEstimation){let r=()=>{let o=GS();o&&this.throughput.next(o);let u=YS();(0,G.isNonNullable)(u)&&this.rtt.next(u)},s=Pl();s&&"onchange"in s&&this.subscription.add((0,G.fromEvent)(s,"change").subscribe(r)),r()}this.subscription.add(this.throughput.smoothed$.subscribe(r=>{G.safeStorage.set(WS,r.toFixed(0))})),this.subscription.add(this.rtt.smoothed$.subscribe(r=>{G.safeStorage.set(QS,r.toFixed(0))})),this.subscription.add(this.throughput.debounced$.pipe((0,G.map)(r=>Math.round(r))).subscribe(this.throughput$)),this.subscription.add(this.rtt.debounced$.subscribe(this.rtt$)),this.subscription.add((0,G.combine)({throughput:this.throughput.smoothed$,rtt:this.rtt.smoothed$}).pipe((0,G.map)(({throughput:r,rtt:s})=>KS(r,s,e.rttPenaltyRequestSize)),(0,G.filter)(r=>{let s=this.rttAdjustedThroughput$.getValue()||0;return Math.abs(r-s)/s>=e.changeThreshold})).subscribe(this.rttAdjustedThroughput$))}destroy(){this.concurrentDownloads.clear(),this.subscription.unsubscribe()}trackXHR(e){let t=0,i=(0,G.now)(),r=new G.Subscription;switch(this.subscription.add(r),this.concurrentDownloads.add(e),e.readyState){case 4:break;case 3:case 2:r.add((0,G.fromEvent)(e,"progress").pipe((0,G.once)()).subscribe(s=>{t=s.loaded,i=(0,G.now)()}));break;case 1:case 0:r.add((0,G.fromEvent)(e,"loadstart").subscribe(()=>{t=0,i=(0,G.now)()}));break}r.add((0,G.fromEvent)(e,"loadend").subscribe(s=>{if(e.status===200){let n=s.loaded,o=(0,G.now)(),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,s=(0,G.now)(),n=0,o=(0,G.now)(),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,(0,G.now)()-s,1),this.concurrentDownloads.delete(e);else if(l){if(t){let p=(0,G.now)();if(p-o>this.tuningConfig.lowLatency.continuesByteSequenceInterval||p-s>this.tuningConfig.lowLatency.maxLastEvaluationTimeout){let f=o-s;f&&this.addRawSpeed(n,f,1,t),n=l.byteLength,s=(0,G.now)()}else n+=l.byteLength;o=(0,G.now)()}else r+=l.byteLength,n+=l.byteLength,n>=this.tuningConfig.streamMinSampleSize&&(0,G.now)()-o>=this.tuningConfig.streamMinSampleTime&&(this.addRawSpeed(n,(0,G.now)()-o,this.concurrentDownloads.size),n=0,o=(0,G.now)());await i?.read().then(c,u)}};this.concurrentDownloads.add(e),i?.read().then(c,u)}addRawSpeed(e,t,i=1,r=!1){if(a.sanityCheck(e,t,r)){let s=e*8/t;this.throughput.next(s*i)}}addRawThroughput(e){this.throughput.next(e)}addRawRtt(e){this.rtt.next(e)}static sanityCheck(e,t,i=!1){let r=e*8/t;return!(!r||!isFinite(r)||r>1e6||r<30||i&&e<1e4||!i&&e<10*1024||!i&&t<=20)}static load(e){let t=G.safeStorage.get(e);if((0,G.isNonNullable)(t))return parseInt(t,10)??void 0}},XS=xl;var Zi=require("@vkontakte/videoplayer-shared/es2024"),e$={keepVideoElement:!1,clearVideoElementInnerHTML:!1,throughputEstimator:{type:"EmaAndMa",emaAlphaSlow:.2,emaAlphaFast:.7,emaAlpha:.45,basisTrendChangeCount:10,changeThreshold:.05,useBrowserEstimation:!0,rttPenaltyRequestSize:1*1024*1024,streamMinSampleSize:10*1024,streamMinSampleTime:300,deviationDepth:20,deviationFactor:.5,lowLatency:{continuesByteSequenceInterval:50,maxLastEvaluationTimeout:300}},autoTrackSelection:{maxBitrateFactorAtEmptyBuffer:4,bitrateFactorAtEmptyBuffer:2.8,minBitrateFactorAtEmptyBuffer:1.5,bitrateAudioFactorAtEmptyBuffer:10,maxBitrateFactorAtFullBuffer:3,bitrateFactorAtFullBuffer:2,minBitrateFactorAtFullBuffer:1,bitrateAudioFactorAtFullBuffer:7,minVideoAudioRatio:5,minAvailableThroughputAudioRatio:5,usePixelRatio:!0,pixelRatioMultiplier:void 0,pixelRatioLogBase:3,pixelRatioLogCoefficients:[1,0,1],limitByContainer:!0,maxContainerSizeFactor:2,containerSizeFactor:1.3,minContainerSizeFactor:1,lazyQualitySwitch:!0,minBufferToSwitchUp:.4,considerPlaybackRate:!1,trackCooldownIncreaseQuality:15e3,trackCooldownDecreaseQuality:3e3,backgroundVideoQualityLimit:Zi.VideoQuality.Q_4320P,activeVideoAreaThreshold:.1,highQualityLimit:Zi.VideoQuality.Q_720P,trafficSavingLimit:Zi.VideoQuality.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:Zi.VideoQuality.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},JS=a=>(0,Zi.fillWithDefault)(a,e$);var h=require("@vkontakte/videoplayer-shared/es2024");var ei=require("@vkontakte/videoplayer-shared/es2024"),kl=({seekState:a,position$:e})=>(0,ei.merge)(a.stateChangeEnded$.pipe((0,ei.map)(({to:t})=>t.state==="none"?void 0:(t.position??NaN)/1e3),(0,ei.filter)(ei.isNonNullable)),e.pipe((0,ei.filter)(()=>a.getState().state==="none")));var ZS=require("@vkontakte/videoplayer-shared/es2024"),ey=a=>{let e=typeof a.container=="string"?document.getElementById(a.container):a.container;return(0,ZS.assertNonNullable)(e,`Wrong container or containerId {${a.container}}`),e};var Po=require("@vkontakte/videoplayer-shared/es2024"),ty=(a,e,t,i)=>{a!==void 0&&e.getState()===void 0&&e.getPrevState()===void 0&&t?.getValue().length===0?t.pipe((0,Po.filter)(r=>r.length>0),(0,Po.once)()).subscribe(r=>{r.find(i)&&e.startTransitionTo(a)}):(a===void 0||t?.getValue().find(i))&&e.startTransitionTo(a)};var iy=j(li(),1);var Ur=require("@vkontakte/videoplayer-shared/es2024");var ry=()=>{let a="mediaCapabilities"in(0,Ur.getWindow)().navigator?t$:i$,e=Wi(async()=>{let t=await Promise.all((0,iy.default)(r$).map(async([r,s])=>({codec:r,supported:await a(s)}))),i=[F.browser.current,...t.map(r=>JSON.stringify(r))].slice(0,16);return Ur.devNull.push("core",{key:"videoplayer_decoding_info",strings:i}),t});return()=>Qi(e)},t$=async a=>{if(!a)return Promise.resolve({supported:!1});let e={["channels"in a?"audio":"video"]:a};return await(0,Ur.getWindow)().navigator.mediaCapabilities.decodingInfo({type:"media-source",...e})},i$=a=>{if(!a)return Promise.resolve({supported:!1});let e=(0,Ur.getWindow)().document,t="channels"in a?e.createElement("audio"):e.createElement("video");return Promise.resolve({supported:t.canPlayType(a?.contentType??"")==="probably"})},r$={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 xs=class{constructor(e={},t=h.TracerFactory.createRootTracer(!1),i){this.subscription=new h.Subscription;this.logger=new h.Logger;this.abrLogger=this.logger.createComponentLog("ABR");this.internalsExposure=null;this.isPlaybackStarted=!1;this.hasLiveOffsetByPaused=new h.ValueSubject(!1);this.hasLiveOffsetByPausedTimer=0;this.playerInitRequest=0;this.playerInited=new h.ValueSubject(!1);this.wasSetStartedQuality=!1;this.desiredState={playbackState:new ee("stopped"),seekState:new ee({state:"none"}),volume:new ee({volume:1,muted:!1}),videoTrack:new ee(void 0),videoStream:new ee(void 0),audioStream:new ee(void 0),autoVideoTrackSwitching:new ee(!0),autoVideoTrackLimits:new ee({}),isLooped:new ee(!1),isLowLatency:new ee(!1),playbackRate:new ee(1),externalTextTracks:new ee([]),internalTextTracks:new ee([]),currentTextTrack:new ee(void 0),textTrackCuesSettings:new ee({}),cameraOrientation:new ee({x:0,y:0})};this.info={playbackState$:new h.ValueSubject(void 0),position$:new h.ValueSubject(0),duration$:new h.ValueSubject(1/0),muted$:new h.ValueSubject(!1),volume$:new h.ValueSubject(1),availableVideoStreams$:new h.ValueSubject([]),currentVideoStream$:new h.ValueSubject(void 0),availableVideoTracks$:new h.ValueSubject([]),availableQualities$:new h.ValueSubject([]),availableQualitiesFps$:new h.ValueSubject({}),currentQuality$:new h.ValueSubject(void 0),isAutoQualityEnabled$:new h.ValueSubject(!0),autoQualityLimitingAvailable$:new h.ValueSubject(!1),autoQualityLimits$:new h.ValueSubject({}),predefinedQualityLimitType$:new h.ValueSubject("unknown"),availableAudioStreams$:new h.ValueSubject([]),currentAudioStream$:new h.ValueSubject(void 0),availableAudioTracks$:new h.ValueSubject([]),isAudioAvailable$:new h.ValueSubject(!0),currentPlaybackRate$:new h.ValueSubject(1),currentBuffer$:new h.ValueSubject({start:0,end:0}),currentNativeBuffer$:new h.ValueSubject({start:0,end:0}),isBuffering$:new h.ValueSubject(!0),isStalled$:new h.ValueSubject(!1),isEnded$:new h.ValueSubject(!1),isLooped$:new h.ValueSubject(!1),isLive$:new h.ValueSubject(void 0),isLiveEnded$:new h.ValueSubject(null),canPlayLiveTailBuffer$:new h.ValueSubject(!1),canChangePlaybackSpeed$:new h.ValueSubject(void 0),atLiveEdge$:new h.ValueSubject(void 0),atLiveDurationEdge$:new h.ValueSubject(void 0),liveTime$:new h.ValueSubject(void 0),liveBufferTime$:new h.ValueSubject(void 0),liveLatency$:new h.ValueSubject(void 0),currentFormat$:new h.ValueSubject(void 0),availableTextTracks$:new h.ValueSubject([]),currentTextTrack$:new h.ValueSubject(void 0),throughputEstimation$:new h.ValueSubject(void 0),rttEstimation$:new h.ValueSubject(void 0),videoBitrate$:new h.ValueSubject(void 0),hostname$:new h.ValueSubject(void 0),httpConnectionType$:new h.ValueSubject(void 0),httpConnectionReused$:new h.ValueSubject(void 0),httpConnectionMetrics$:new h.ValueSubject(void 0),httpDownloadMetrics$:new h.ValueSubject(void 0),surface$:new h.ValueSubject("none"),chromecastState$:new h.ValueSubject("NOT_AVAILABLE"),chromecastDeviceName$:new h.ValueSubject(void 0),intrinsicVideoSize$:new h.ValueSubject(void 0),availableSources$:new h.ValueSubject(void 0),is3DVideo$:new h.ValueSubject(!1),currentVideoSegmentLength$:new h.ValueSubject(0),currentAudioSegmentLength$:new h.ValueSubject(0)};this.events={inited$:new h.Subject,ready$:new h.Subject,started$:new h.Subject,playing$:new h.Subject,paused$:new h.Subject,stopped$:new h.Subject,willReady$:new h.Subject,willStart$:new h.Subject,willResume$:new h.Subject,willPause$:new h.Subject,willStop$:new h.Subject,willDestruct$:new h.Subject,watchCoverageRecord$:new h.Subject,watchCoverageLive$:new h.Subject,managedError$:new h.Subject,fatalError$:new h.Subject,fetcherRecoverableError$:new h.Subject,ended$:new h.Subject,looped$:new h.Subject,seeked$:new h.Subject,willSeek$:new h.Subject,autoplaySoundProhibited$:new h.Subject,manifestRequested$:new h.Subject,firstBytesManifest$:new h.Subject,manifestReceived$:new h.Subject,firstBytesRequested$:new h.Subject,firstBytesReceived$:new h.Subject,firstBytes$:new h.Subject,loadedMetadata$:new h.Subject,firstFrame$:new h.Subject,canplay$:new h.Subject,log$:new h.Subject,fetcherError$:new h.Subject,severeStallOccured$:new h.Subject};this.experimental={element$:new h.ValueSubject(void 0),enableDebugTelemetry$:new h.ValueSubject(!1),dumpTelemetry:Jb,getCurrentTime$:new h.ValueSubject(null)};this.initLogs(),this.tuning=JS(e),this.tracer=t,this.tuning.suppressExceptionsInObservables&&((0,Al.default)(this.info).forEach(s=>s.setSuppressErrors(!0)),(0,Al.default)(this.events).forEach(s=>s.setSuppressErrors(!0)));let r={receiverApplicationId:this.tuning.chromecastReceiverId,isDisabled:this.tuning.disableChromecast,dependencies:{logger:this.logger}};if(this.chromecastInitializer=this.tuning.chromecastPresentationApi?new zt(r):new zs(r),this.throughputEstimator=new XS(this.tuning.throughputEstimator),e.exposeInternalsToGlobal&&(this.internalsExposure=new h.InternalsExposure("core",(0,h.getPlayerId)(i?.playerId)),this.internalsExposure.expose({player:this})),this.initChromecastSubscription(),this.initDesiredStateSubscriptions(),this.devNullLog=i?.onDevNullLog,h.devNull.create("core"),Proxy&&Reflect)return new Proxy(this,{get:(s,n,o)=>{let u=Reflect.get(s,n,o);return typeof u!="function"?u:(...c)=>{try{return u.apply(s,c)}catch(d){let l=c.map(f=>JSON.stringify(f,(g,v)=>{let S=typeof v;return(0,ay.default)(["number","string","boolean"],S)?v:v===null?null:`<${S}>`})),p=`Player.${String(n)}`,m=`Exception calling ${p} (${l.join(", ")})`;throw this.events.fatalError$.next({id:p,category:h.ErrorCategory.WTF,message:m,thrown:d}),d}}}})}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:s,...n}=e;this.tracer.log("initVideo",(0,h.flattenObject)(n)),this.domContainer=ey(e),this.chromecastInitializer.contentId=e.meta?.videoId,this.providerContainer=new ws({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?(h.devNull.subscribe("core",this.devNullLog),this.tuning.collectingDecodingInfoEnabled&&(this.collectDecodingInfoDestroyCb=ry())):h.devNull.destroy("core")},i=()=>{this.tuning.autostartOnlyIfVisible&&window.requestAnimationFrame?this.playerInitRequest=window.requestAnimationFrame(()=>t()):t()},r=()=>{this.tuning.asyncResolveClientChecker?F.isInited$.pipe((0,h.filter)(s=>!!s),(0,h.once)()).subscribe(()=>{console.log("Core SDK async start"),i()}):i()};return this.isNotActiveTabCase()?(this.tracer.log("request play from hidden tab"),(0,h.fromEvent)(document,"visibilitychange").pipe((0,h.once)()).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(),h.devNull.destroy("core"),this.collectDecodingInfoDestroyCb?.()}waitInit(e){this.playerInited.getValue()?e():this.subscription.add(this.playerInited.pipe((0,h.filter)(t=>!!t),(0,h.once)()).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(),s=e;e>=i&&!r&&(s=i-this.tuning.seekNearDurationBias),this.tracer.log("seekTime",{duration:i,isLive:r,time:e,calculatedTime:s,forcePrecise:t}),Number.isFinite(s)&&(this.events.willSeek$.next({from:this.getExactTime(),to:s}),this.desiredState.seekState.setState({state:"requested",position:s*1e3,forcePrecise:t}))}),this}seekPercent(e){return this.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 i=this.desiredState.volume,s=i.getTransition()?.to.muted??this.info.muted$.getValue(),n=t??(this.tuning.isAudioDisabled||s);this.tracer.log("setVolume",{volume:e,isAudioDisabled:this.tuning.isAudioDisabled,chromecastState:this.chromecastInitializer.castState$.getValue(),muted:n}),this.chromecastInitializer.castState$.getValue()==="CONNECTED"&&!(this.chromecastInitializer instanceof zt)?this.chromecastInitializer.setVolume(e):i.startTransitionTo({volume:e,muted:n})}),this}setMuted(e,t=!1){return this.waitInit(()=>{let i=this.desiredState.volume,r=this.tuning.isAudioDisabled&&!t||e,n=i.getTransition()?.to.volume??this.info.volume$.getValue();this.tracer.log("setMuted",{isMuted:e,nextMuted:r,volume:n,isAudioDisabled:this.tuning.isAudioDisabled,chromecastState:this.chromecastInitializer.castState$.getValue()}),this.chromecastInitializer.castState$.getValue()==="CONNECTED"&&!(this.chromecastInitializer instanceof zt)?this.chromecastInitializer.setMuted(r):i.startTransitionTo({volume:n,muted:r})}),this}setVideoStream(e){return this.waitInit(()=>{this.desiredState.videoStream.startTransitionTo(e)}),this}setAudioStream(e){return this.waitInit(()=>{this.desiredState.audioStream.startTransitionTo(e)}),this}setQuality(e){return this.waitInit(()=>{(0,h.assertNonNullable)(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((0,h.filter)(i=>i.length>0),(0,h.once)()).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",(0,h.flattenObject)(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",(0,h.flattenObject)(e)),this.desiredState.externalTextTracks.startTransitionTo(e.map(t=>({type:"external",...t})))}),this}selectTextTrack(e){return this.waitInit(()=>{ty(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(),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(),s=i.pixelToDegree({x:e,y:t});this.desiredState.cameraOrientation.setState({x:r.x+s.x,y:r.y+s.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((0,h.isNullable)(e))return this.info.position$.getValue();let t=this.desiredState.seekState.getState(),i=t.state==="none"?void 0:t.position;return(0,h.isNonNullable)(i)?i/1e3:e.currentTime}getAllLogs(){return this.logger.getAllLogs()}getScene3D(){let e=this.providerContainer?.current$.getValue();if(e?.provider?.scene3D)return e.provider.scene3D}setIntrinsicVideoSize(...e){let t={width:e.reduce((i,{width:r})=>i||r||0,0),height:e.reduce((i,{height:r})=>i||r||0,0)};t.width&&t.height&&this.info.intrinsicVideoSize$.next({width:t.width,height:t.height})}initDesiredStateSubscriptions(){this.subscription.add((0,h.merge)(this.desiredState.playbackState.stateChangeStarted$,this.desiredState.playbackState.forceChanged$).pipe((0,h.map)(e=>e.to)).subscribe(this.info.playbackState$)).add(this.desiredState.isLooped.stateChangeEnded$.pipe((0,h.map)(e=>e.to)).subscribe(this.info.isLooped$)).add(this.desiredState.playbackRate.stateChangeEnded$.pipe((0,h.map)(e=>e.to)).subscribe(this.info.currentPlaybackRate$)).add(this.desiredState.autoVideoTrackSwitching.stateChangeEnded$.pipe((0,h.map)(e=>e.to)).subscribe(this.info.isAutoQualityEnabled$)).add(this.desiredState.autoVideoTrackLimits.stateChangeEnded$.pipe((0,h.map)(e=>e.to)).subscribe(e=>{this.info.autoQualityLimits$.next(e);let{highQualityLimit:t,trafficSavingLimit:i}=this.tuning.autoTrackSelection;this.info.predefinedQualityLimitType$.next(Zb(e,t,i))})),this.subscription.add(this.desiredState.playbackState.stateChangeStarted$.pipe((0,h.filter)(({from:e})=>e==="stopped"),(0,h.once)()).subscribe(()=>{this.initedAt=(0,h.now)(),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",(0,h.flattenObject)(n)),n.state==="requested"?this.desiredState.seekState.setState({...n,state:"applying"}):this.events.managedError$.next({id:`WillSeekIn${n.state}`,category:h.ErrorCategory.WTF,message:"Received unexpeceted willSeek$"})})).add(e.providerOutput.soundProhibitedEvent$.pipe((0,h.once)()).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",(0,h.flattenObject)(n)),n.state==="applying"&&(this.desiredState.seekState.setState({state:"none"}),this.events.seeked$.next())})).add(e.current$.pipe((0,h.map)(n=>n.type)).subscribe(this.info.currentFormat$)).add(e.current$.pipe((0,h.map)(n=>n.destination),(0,h.filterChanged)()).subscribe(()=>this.isPlaybackStarted=!1)).add(e.providerOutput.availableVideoStreams$.subscribe(this.info.availableVideoStreams$)).add(e.providerOutput.availableVideoTracks$.subscribe(this.info.availableVideoTracks$)).add((0,h.combine)({availableVideoTracks:e.providerOutput.availableVideoTracks$,currentVideoStream:e.providerOutput.currentVideoStream$}).pipe((0,h.map)(({availableVideoTracks:n,currentVideoStream:o})=>n.filter(u=>o?o.id===u.streamId:!0).map(({quality:u})=>u).sort((u,c)=>(0,h.isInvariantQuality)(u)?1:(0,h.isInvariantQuality)(c)?-1:(0,h.isHigher)(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((0,h.filterChanged)()).subscribe(this.info.isAudioAvailable$)).add(e.providerOutput.currentVideoTrack$.pipe((0,h.filter)(n=>(0,h.isNonNullable)(n))).subscribe(n=>{this.info.currentQuality$.next(n?.quality),this.info.videoBitrate$.next(n?.bitrate)})).add(e.providerOutput.currentVideoSegmentLength$.pipe((0,h.filterChanged)((n,o)=>Math.round(n)===Math.round(o))).subscribe(this.info.currentVideoSegmentLength$)).add(e.providerOutput.currentAudioSegmentLength$.pipe((0,h.filterChanged)((n,o)=>Math.round(n)===Math.round(o))).subscribe(this.info.currentAudioSegmentLength$)).add(e.providerOutput.hostname$.pipe((0,h.filterChanged)()).subscribe(this.info.hostname$)).add(e.providerOutput.httpConnectionType$.pipe((0,h.filterChanged)()).subscribe(this.info.httpConnectionType$)).add(e.providerOutput.httpConnectionReused$.pipe((0,h.filterChanged)()).subscribe(this.info.httpConnectionReused$)).add(e.providerOutput.httpConnectionMetrics$.pipe((0,h.filterChanged)()).subscribe(this.info.httpConnectionMetrics$)).add(e.providerOutput.httpDownloadMetrics$.pipe((0,h.filterChanged)()).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??{})})).add(e.providerOutput.currentBuffer$.pipe((0,h.map)(n=>n?{start:n.from,end:n.to}:{start:0,end:0})).subscribe(this.info.currentBuffer$)).add(e.providerOutput.currentNativeBuffer$.pipe((0,h.map)(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((0,h.tap)(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((0,h.filterChanged)()).subscribe(this.info.liveTime$)).add(e.providerOutput.liveBufferTime$.subscribe(this.info.liveBufferTime$)).add(e.providerOutput.liveLatency$.subscribe(this.info.liveLatency$)).add((0,h.combine)({hasLiveOffsetByPaused:(0,h.merge)(this.desiredState.playbackState.stateChangeStarted$,this.desiredState.playbackState.forceChanged$).pipe((0,h.map)(n=>n.to),(0,h.filterChanged)(),(0,h.map)(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((0,h.combine)({atLiveEdge:(0,h.combine)({isLive:e.providerOutput.isLive$,isLowLatency:e.providerOutput.isLowLatency$,position:kl({seekState:this.desiredState.seekState,position$:e.providerOutput.position$})}).pipe((0,h.map)(({isLive:n,position:o,isLowLatency:u})=>{let c=this.getActiveLiveDelay(u);return n&&Math.abs(o)<c/1e3}),(0,h.filterChanged)(),(0,h.tap)(n=>n&&this.setPlaybackRate(1))),hasPausedTimeoutCase:this.hasLiveOffsetByPaused}).pipe((0,h.map)(({atLiveEdge:n,hasPausedTimeoutCase:o})=>n&&!o)).subscribe(this.info.atLiveEdge$)).add((0,h.combine)({isLive:e.providerOutput.isLive$,position:e.providerOutput.position$,duration:e.providerOutput.duration$}).pipe((0,h.map)(({isLive:n,position:o,duration:u})=>n&&(Math.abs(u)-Math.abs(o))*1e3<this.tuning.live.activeLiveDelay),(0,h.filterChanged)(),(0,h.tap)(n=>n&&this.setPlaybackRate(1))).subscribe(this.info.atLiveDurationEdge$)).add(e.providerOutput.volume$.pipe((0,h.map)(n=>n.muted),(0,h.filterChanged)()).subscribe(this.info.muted$)).add(e.providerOutput.volume$.pipe((0,h.map)(n=>n.volume),(0,h.filterChanged)()).subscribe(this.info.volume$)).add(kl({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((0,h.merge)(e.providerOutput.endedEvent$.pipe((0,h.mapTo)(!0)),e.providerOutput.seekedEvent$.pipe((0,h.mapTo)(!1))).pipe((0,h.filterChanged)()).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((0,h.map)(n=>({id:n?`No${n}`:"NoProviders",category:h.ErrorCategory.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((0,h.once)()).subscribe(this.events.manifestRequested$)).add(e.providerOutput.firstBytesManifest$.pipe((0,h.once)()).subscribe(this.events.firstBytesManifest$)).add(e.providerOutput.manifestReceived$.pipe((0,h.once)()).subscribe(this.events.manifestReceived$)).add(e.providerOutput.firstBytesRequested$.pipe((0,h.once)()).subscribe(this.events.firstBytesRequested$)).add(e.providerOutput.firstBytesReceived$.pipe((0,h.once)()).subscribe(this.events.firstBytesReceived$)).add(e.providerOutput.firstBytesEvent$.pipe((0,h.once)(),(0,h.map)(n=>n??(0,h.now)()-this.initedAt)).subscribe(this.events.firstBytes$)).add(e.providerOutput.loadedMetadataEvent$.subscribe(this.events.loadedMetadata$)).add(e.providerOutput.firstFrameEvent$.pipe((0,h.once)(),(0,h.map)(()=>(0,h.now)()-this.initedAt)).subscribe(this.events.firstFrame$)).add(e.providerOutput.canplay$.pipe((0,h.once)(),(0,h.map)(()=>(0,h.now)()-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 h.ValueSubject(!1);this.subscription.add(e.providerOutput.seekedEvent$.subscribe(()=>t.next(!1))).add(e.providerOutput.willSeekEvent$.subscribe(()=>t.next(!0)));let i=new h.ValueSubject(!0);this.subscription.add(e.current$.subscribe(()=>i.next(!0))).add(this.desiredState.playbackState.stateChangeEnded$.pipe((0,h.filter)(({to:n})=>n==="playing"),(0,h.once)()).subscribe(()=>i.next(!1)));let r=0,s=(0,h.merge)(e.providerOutput.isBuffering$,t,i).pipe((0,h.map)(()=>{let n=e.providerOutput.isBuffering$.getValue(),o=t.getValue()||i.getValue();return n&&!o}),(0,h.filterChanged)());this.subscription.add(s.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((0,h.merge)(e.providerOutput.canplay$,e.providerOutput.firstFrameEvent$,e.providerOutput.firstBytesEvent$).subscribe(()=>{let n=e.providerOutput.element$.getValue();this.setIntrinsicVideoSize({width:n?.videoWidth,height:n?.videoHeight})})).add(e.providerOutput.currentVideoTrack$.subscribe(n=>{let o=e.providerOutput.element$.getValue();this.setIntrinsicVideoSize({width:n?.size?.width,height:n?.size?.height},{width:o?.videoWidth,height:o?.videoHeight})})).add(e.providerOutput.is3DVideo$.subscribe(this.info.is3DVideo$)),this.subscription.add((0,h.merge)(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((0,h.map)(e=>e?.castDevice.friendlyName)).subscribe(this.info.chromecastDeviceName$)),this.subscription.add(this.chromecastInitializer.errorEvent$.subscribe(this.events.managedError$))}initStartingVideoTrack(e){let t=new h.Subscription;this.subscription.add(t),this.subscription.add(e.current$.pipe((0,h.filterChanged)((i,r)=>i.provider===r.provider)).subscribe(()=>{t.unsubscribe(),t.add(e.providerOutput.availableVideoTracks$.pipe((0,h.filter)(i=>i.length>0),(0,h.once)()).subscribe(i=>{this.setStartingVideoTrack(i)}))}))}setStartingVideoTrack(e){let t;this.wasSetStartedQuality=!0;let i=this.explicitInitialQuality??this.info.currentQuality$.getValue();i&&(t=e.find(({quality:r})=>r===i),t||this.setAutoQuality(!0)),t||(t=Ft(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((0,h.merge)(this.desiredState.videoTrack.stateChangeStarted$.pipe((0,h.map)(e=>({transition:e,entity:"quality",type:"start"}))),this.desiredState.videoTrack.stateChangeEnded$.pipe((0,h.map)(e=>({transition:e,entity:"quality",type:"end"}))),this.desiredState.autoVideoTrackSwitching.stateChangeStarted$.pipe((0,h.map)(e=>({transition:e,entity:"autoQualityEnabled",type:"start"}))),this.desiredState.autoVideoTrackSwitching.stateChangeEnded$.pipe((0,h.map)(e=>({transition:e,entity:"autoQualityEnabled",type:"end"}))),this.desiredState.seekState.stateChangeStarted$.pipe((0,h.map)(e=>({transition:e,entity:"seekState",type:"start"}))),this.desiredState.seekState.stateChangeEnded$.pipe((0,h.map)(e=>({transition:e,entity:"seekState",type:"end"}))),this.desiredState.playbackState.stateChangeStarted$.pipe((0,h.map)(e=>({transition:e,entity:"playbackState",type:"start"}))),this.desiredState.playbackState.stateChangeEnded$.pipe((0,h.map)(e=>({transition:e,entity:"playbackState",type:"end"})))).pipe((0,h.map)(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;(0,h.assertNonNullable)(this.providerContainer),(0,h.assertNonNullable)(e),Xb(),this.experimental.enableDebugTelemetry$.next(this.tuning.enableTelemetryAtStart),[this.experimental.enableDebugTelemetry$.subscribe(t=>Kb(t)),this.providerContainer.current$.subscribe(({type:t})=>wa("provider",t)),e.duration$.subscribe(t=>wa("duration",t)),e.availableVideoTracks$.pipe((0,h.filter)(t=>!!t.length),(0,h.once)()).subscribe(t=>wa("tracks",t)),this.events.fatalError$.subscribe(new We("fatalError")),this.events.managedError$.subscribe(new We("managedError")),e.position$.subscribe(new We("position")),e.currentVideoTrack$.pipe((0,h.map)(t=>t?.quality)).subscribe(new We("quality")),this.info.currentBuffer$.subscribe(new We("buffer")),e.isBuffering$.subscribe(new We("isBuffering"))].forEach(t=>this.subscription.add(t)),wa("codecs",F.video.supportedCodecs)}initTracerSubscription(){let e=(0,h.getTraceSubscriptionMethod)(this.tracer.log.bind(this.tracer)),t=(0,h.getTraceSubscriptionMethod)(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((0,h.filterChanged)()).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((0,h.combine)({currentQuality:this.info.currentQuality$,videoBitrate:this.info.videoBitrate$}).pipe((0,h.filter)(({currentQuality:i,videoBitrate:r})=>!!i&&!!r),(0,h.filterChanged)((i,r)=>i.currentQuality===r.currentQuality)).subscribe(e("currentVideoTrack"))).add(this.info.currentVideoSegmentLength$.pipe((0,h.filter)(i=>i>0),(0,h.filterChanged)()).subscribe(e("currentVideoSegmentLength"))).add(this.info.currentAudioSegmentLength$.pipe((0,h.filter)(i=>i>0),(0,h.filterChanged)()).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((0,h.combine)({currentBuffer:this.info.currentBuffer$.pipe((0,h.filter)(i=>i.end>0),(0,h.filterChanged)((i,r)=>i.end===r.end&&i.start===r.start)),position:this.info.position$.pipe((0,h.filterChanged)())}).pipe((0,h.throttle)(1e3)).subscribe(e("currentBufferAndPosition"))).add(this.info.duration$.pipe((0,h.filterChanged)()).subscribe(e("duration"))).add(this.info.isBuffering$.subscribe(e("isBuffering"))).add(this.info.isLive$.pipe((0,h.filterChanged)()).subscribe(e("isLive"))).add(this.info.canChangePlaybackSpeed$.pipe((0,h.filterChanged)()).subscribe(e("canChangePlaybackSpeed"))).add((0,h.combine)({liveTime:this.info.liveTime$,liveBufferTime:this.info.liveBufferTime$,position:this.info.position$}).pipe((0,h.filter)(({liveTime:i,liveBufferTime:r})=>!!i&&!!r),(0,h.throttle)(1e3)).subscribe(e("liveBufferAndPosition"))).add(this.info.atLiveEdge$.pipe((0,h.filterChanged)(),(0,h.filter)(i=>i===!0)).subscribe(e("atLiveEdge"))).add(this.info.atLiveDurationEdge$.pipe((0,h.filterChanged)(),(0,h.filter)(i=>i===!0)).subscribe(e("atLiveDurationEdge"))).add(this.info.muted$.pipe((0,h.filterChanged)()).subscribe(e("muted"))).add(this.info.volume$.pipe((0,h.filterChanged)()).subscribe(e("volume"))).add(this.info.isEnded$.pipe((0,h.filterChanged)(),(0,h.filter)(i=>i===!0)).subscribe(e("isEnded"))).add(this.info.availableSources$.subscribe(e("availableSources"))).add((0,h.combine)({throughputEstimation:this.info.throughputEstimation$,rtt:this.info.rttEstimation$}).pipe((0,h.filter)(({throughputEstimation:i,rtt:r})=>!!i&&!!r),(0,h.throttle)(3e3)).subscribe(e("throughputEstimation"))).add(this.info.isStalled$.subscribe(e("isStalled"))).add(this.info.is3DVideo$.pipe((0,h.filterChanged)(),(0,h.filter)(i=>i===!0)).subscribe(e("is3DVideo"))).add(this.info.surface$.subscribe(e("surface"))).add(this.events.ended$.subscribe(e("ended"))).add(this.events.looped$.subscribe(e("looped"))).add(this.events.managedError$.subscribe(t("managedError"))).add(this.events.fatalError$.subscribe(t("fatalError"))).add(this.events.firstBytes$.subscribe(e("firstBytes"))).add(this.events.firstFrame$.subscribe(e("firstFrame"))).add(this.events.canplay$.subscribe(e("canplay")))}initWakeLock(){if(!window.navigator.wakeLock||!this.tuning.enableWakeLock)return;let e,t=()=>{e?.release(),e=void 0},i=async()=>{t(),e=await window.navigator.wakeLock.request("screen").catch(r=>{r instanceof DOMException&&r.name==="NotAllowedError"||this.events.managedError$.next({id:"WakeLock",category:h.ErrorCategory.DOM,message:String(r)})})};this.subscription.add((0,h.merge)((0,h.fromEvent)(document,"visibilitychange"),(0,h.fromEvent)(document,"fullscreenchange"),this.desiredState.playbackState.stateChangeEnded$).subscribe(()=>{let r=document.visibilityState==="visible",s=this.desiredState.playbackState.getState()==="playing",n=!!e&&!e?.released;r&&s?n||i():t()})).add(this.events.willDestruct$.subscribe(t))}setVideoTrackIdByQuality(e,t){let i=e.find(r=>r.quality===t);this.tracer.log("setVideoTrackIdByQuality",(0,h.flattenObject)({quality:t,availableTracks:(0,h.flattenObject)(e),track:(0,h.flattenObject)(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&&!Ma()}};var qt=require("@vkontakte/videoplayer-shared/es2024"),a$=`@vkontakte/videoplayer-core@${Ro}`;
130
+ ===== DASH_LIVE DEBUG END ====`),n){let t=e.reduce((e,{time:t,data:n,stack:r})=>{let i=Di.default(n).map(([e,t])=>`${e}:${t}`).join(`,`);return e+=`${t}: ${i}${r?`: ${r}`:``};`,e},``);Z.devNull.push(`core`,{key:`vp_dash_live_debug`,strings:[t]})}};return e.add(this.providerError$.subscribe(e=>{e.id.startsWith(`ProviderHangup`)&&(B({m:`final.0`,e:e.id}),r())})).add(this.noAvailableProvidersError$.subscribe(()=>{B({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===Z.ErrorCategory.NETWORK,o=e.category===Z.ErrorCategory.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`,Z.flattenObject(i)):this.tracer.error(`providerError`,Z.flattenObject(i))})),e}}var Q=require(`@vkontakte/videoplayer-shared/es2024`),gd=5e3,_d=`one_video_throughput`,vd=`one_video_rtt`,yd=()=>{let{navigator:e}=Q.getWindow();if(e)return e.connection},bd=()=>{let e=yd()?.downlink;if(Q.isNonNullable(e)&&e!==10)return e*1e3},xd=()=>{let e=yd()?.rtt;if(Q.isNonNullable(e)&&e!==3e3)return e},Sd=(e,t,n)=>{let r=n*8;return r/(r/e+t)};class Cd{throughput;rtt;subscription=new Q.Subscription;tuningConfig;concurrentDownloads=new Set;throughput$;rtt$;rttAdjustedThroughput$;constructor(e){this.tuningConfig=e;let t=Cd.load(_d)||(e.useBrowserEstimation?bd():void 0)||gd,n=Cd.load(vd)??(e.useBrowserEstimation?xd():void 0)??0;if(this.throughput$=new Q.ValueSubject(t),this.rtt$=new Q.ValueSubject(n),this.rttAdjustedThroughput$=new Q.ValueSubject(Sd(t,n,e.rttPenaltyRequestSize)),this.throughput=ru.getSmoothedValue(t,-1,e),this.rtt=ru.getSmoothedValue(n,1,e),e.useBrowserEstimation){let e=()=>{let e=bd();e&&this.throughput.next(e);let t=xd();Q.isNonNullable(t)&&this.rtt.next(t)},t=yd();t&&`onchange`in t&&this.subscription.add(Q.fromEvent(t,`change`).subscribe(e)),e()}this.subscription.add(this.throughput.smoothed$.subscribe(e=>{Q.safeStorage.set(_d,e.toFixed(0))})),this.subscription.add(this.rtt.smoothed$.subscribe(e=>{Q.safeStorage.set(vd,e.toFixed(0))})),this.subscription.add(this.throughput.debounced$.pipe(Q.map(e=>Math.round(e))).subscribe(this.throughput$)),this.subscription.add(this.rtt.debounced$.subscribe(this.rtt$)),this.subscription.add(Q.combine({throughput:this.throughput.smoothed$,rtt:this.rtt.smoothed$}).pipe(Q.map(({throughput:t,rtt:n})=>Sd(t,n,e.rttPenaltyRequestSize)),Q.filter(t=>{let n=this.rttAdjustedThroughput$.getValue()||0;return Math.abs(t-n)/n>=e.changeThreshold})).subscribe(this.rttAdjustedThroughput$))}destroy(){this.concurrentDownloads.clear(),this.subscription.unsubscribe()}trackXHR(e){let t=0,n=Q.now(),r=new Q.Subscription;switch(this.subscription.add(r),this.concurrentDownloads.add(e),e.readyState){case 4:break;case 3:case 2:r.add(Q.fromEvent(e,`progress`).pipe(Q.once()).subscribe(e=>{t=e.loaded,n=Q.now()}));break;case 1:case 0:r.add(Q.fromEvent(e,`loadstart`).subscribe(()=>{t=0,n=Q.now()}));break}r.add(Q.fromEvent(e,`loadend`).subscribe(i=>{if(e.status===200){let e=i.loaded,r=Q.now(),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=Q.now(),a=0,o=Q.now(),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,Q.now()-i,1),this.concurrentDownloads.delete(e);else if(u){if(t){let e=Q.now();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=Q.now()}else a+=u.byteLength;o=Q.now()}else r+=u.byteLength,a+=u.byteLength,a>=this.tuningConfig.streamMinSampleSize&&Q.now()-o>=this.tuningConfig.streamMinSampleTime&&(this.addRawSpeed(a,Q.now()-o,this.concurrentDownloads.size),a=0,o=Q.now());await n?.read().then(c,s)}};this.concurrentDownloads.add(e),n?.read().then(c,s)}addRawSpeed(e,t,n=1,r=!1){if(Cd.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=Q.safeStorage.get(e);if(Q.isNonNullable(t))return parseInt(t,10)??void 0}}var wd=Cd,Td=require(`@vkontakte/videoplayer-shared/es2024`),Ed={keepVideoElement:!1,clearVideoElementInnerHTML:!1,throughputEstimator:{type:`EmaAndMa`,emaAlphaSlow:.2,emaAlphaFast:.7,emaAlpha:.45,basisTrendChangeCount:10,changeThreshold:.05,useBrowserEstimation:!0,rttPenaltyRequestSize:1*1024*1024,streamMinSampleSize:10*1024,streamMinSampleTime:300,deviationDepth:20,deviationFactor:.5,lowLatency:{continuesByteSequenceInterval:50,maxLastEvaluationTimeout:300}},autoTrackSelection:{maxBitrateFactorAtEmptyBuffer:4,bitrateFactorAtEmptyBuffer:2.8,minBitrateFactorAtEmptyBuffer:1.5,bitrateAudioFactorAtEmptyBuffer:10,maxBitrateFactorAtFullBuffer:3,bitrateFactorAtFullBuffer:2,minBitrateFactorAtFullBuffer:1,bitrateAudioFactorAtFullBuffer:7,minVideoAudioRatio:5,minAvailableThroughputAudioRatio:5,usePixelRatio:!0,pixelRatioMultiplier:void 0,pixelRatioLogBase:3,pixelRatioLogCoefficients:[1,0,1],limitByContainer:!0,maxContainerSizeFactor:2,containerSizeFactor:1.3,minContainerSizeFactor:1,lazyQualitySwitch:!0,minBufferToSwitchUp:.4,considerPlaybackRate:!1,trackCooldownIncreaseQuality:15e3,trackCooldownDecreaseQuality:3e3,backgroundVideoQualityLimit:Td.VideoQuality.Q_4320P,activeVideoAreaThreshold:.1,highQualityLimit:Td.VideoQuality.Q_720P,trafficSavingLimit:Td.VideoQuality.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:Td.VideoQuality.Q_480P},dash:{forwardBufferTarget:6e4,forwardBufferTargetAuto:6e4,forwardBufferTargetManual:5*6e4,forwardBufferTargetPreload:5e3,seekBiasInTheEnd:2e3,maxSegmentDurationLeftToSelectNextSegment:3e3,minSafeBufferThreshold:.5,bufferPruningSafeZone:1e3,segmentRequestSize:1*1024*1024,maxVirtualBufferSize:250*1024*1024,virtualBufferPruneSize:100*1024*1024,representationSwitchForwardBufferGap:15e3,crashOnStallTimeout:25e3,crashOnStallTWithoutDataTimeout:5e3,enableSubSegmentBufferFeeding:!0,bufferEmptinessTolerance:100,useNewRepresentationSwitch:!1,useDelayedRepresentationSwitch:!1,useSmartRepresentationSwitch:!1,useFetchPriorityHints:!0,useAbortMSEFix:!1,enableBaseUrlSupport:!0,maxSegmentRetryCount:5,sourceOpenTimeout:1e3,vktvAbrThrottle:0,timeupdateEventTickThrottle:300,fetcherBufferOptimisation:!0,codecsPrioritizeEnabled:!1,usePersistentGaps:!1,abrThrottle:0,useVideoElementWaitingCurrentTimeReassign:!0,stallWatchdogInterval:100,liveUpdateInterval:1e3,liveStallReinitInterval:3e3,ignoreNetworkErrorsOnLoadInit:!1,bufferTolerance:100,actionTimeShiftFromSegment:500,tickMaintainInterval:1e3,minSafeBufferToPlay:1e4,useBufferHoldingOnlyOnStall:!0,useNewStallExitPolicy:!1,videoStreamRepresentaionsFilter:[]},dashCmafLive:{externalStopControl:!1,keepSilentStallWatchdogWhenNotActive:!1,maxActiveLiveOffset:1e4,normalizedTargetMinBufferSize:6e4,normalizedLiveMinBufferSize:5e3,normalizedActualBufferOffset:1e4,offsetCalculationError:3e3,maxLiveDuration:7200,catchupLiveForMutedInactiveTab:!0,lowLatency:{maxTargetOffset:3e3,maxTargetOffsetDeviation:250,playbackCatchupSpeedup:.05,isActiveOnDefault:!1,bufferEstimator:{emaAlpha:.45,changeThreshold:.05,deviationDepth:20,deviationFactor:.5,extremumInterval:5}}},live:{minBuffer:3e3,minBufferSegments:3,lowLatencyMinBuffer:1e3,lowLatencyMinBufferSegments:1,isLiveCatchUpMode:!1,lowLatencyActiveLiveDelay:3e3,activeLiveDelay:5e3,maxPausedTime:5e3,catchupLiveForMutedInactiveTab:!1},downloadBackoff:{bufferThreshold:100,start:100,factor:2,max:3*1e3,random:.1},enableWakeLock:!0,enableTelemetryAtStart:!1,forceFormat:void 0,formatsToAvoid:[],disableChromecast:!1,chromecastReceiverId:`07A4434E`,chromecastPresentationApi:!1,useWebmBigRequest:!1,webmCodec:`vp9`,androidPreferredFormat:`dash`,iosPreferredFormat:`hls`,preferCMAF:!1,preferWebRTC:!1,preferMultiStream:!1,preferHDR:!1,bigRequestMinInitSize:50*1024,bigRequestMinDataSize:1*1024*1024,stripRangeHeader:!0,flushShortLoopedBuffers:!0,insufficientBufferRuleMargin:1e4,seekNearDurationBias:1,dashSeekInSegmentDurationThreshold:180*1e3,dashSeekInSegmentAlwaysSeekDelta:1e4,endGapTolerance:300,stallIgnoreThreshold:33,gapWatchdogInterval:50,requestQuick:!1,useHlsJs:!1,useNativeHLSTextTracks:!1,useNewSwitchTo:!1,useDashProviderVirtual:!1,useDashProviderVirtualMobile:!1,useNewAutoSelectVideoTrack:!1,useSafariEndlessRequestBugfix:!0,isAudioDisabled:!1,autoplayOnlyInActiveTab:!0,autoplayOnlyIfVisible:!0,dynamicImportTimeout:5e3,maxPlaybackTransitionInterval:2e4,providerErrorLimit:3,manifestRetryInterval:300,manifestRetryMaxInterval:1e4,manifestRetryMaxCount:10,audioVideoSyncRate:20,webrtc:{connectionRetryMaxNumber:3},spherical:{enabled:!1,fov:{x:135,y:76},rotationSpeed:45,maxYawAngle:175,rotationSpeedCorrection:10,degreeToPixelCorrection:5,speedFadeTime:2e3,speedFadeThreshold:50},useVolumeMultiplier:!1,ignoreAudioRendererError:!1,useEnableSubtitlesParam:!1,useHlsLiveNewTextManager:!1,exposeInternalsToGlobal:!1,hlsLiveNewTextManagerDownloadThreshold:4e3,disableYandexPiP:!1,asyncResolveClientChecker:!1,changePlaybackStateToPausedWhenEnded:!1,suppressExceptionsInObservables:!0,devNullLogEnabled:!1,collectingDecodingInfoEnabled:!1,sendDashLiveDebug:!1,logDashLiveDebug:!1,reuseOwnVideoElement:!1},Dd=e=>Td.fillWithDefault(e,Ed),$=require(`@vkontakte/videoplayer-shared/es2024`),Od=require(`@vkontakte/videoplayer-shared/es2024`),kd=({seekState:e,position$:t})=>Od.merge(e.stateChangeEnded$.pipe(Od.map(({to:e})=>e.state===`none`?void 0:(e.position??NaN)/1e3),Od.filter(Od.isNonNullable)),t.pipe(Od.filter(()=>e.getState().state===`none`))),Ad=require(`@vkontakte/videoplayer-shared/es2024`),jd=e=>{let t=typeof e.container==`string`?document.getElementById(e.container):e.container;return Ad.assertNonNullable(t,`Wrong container or containerId {${e.container}}`),t},Md=require(`@vkontakte/videoplayer-shared/es2024`),Nd=(e,t,n,r)=>{e!==void 0&&t.getState()===void 0&&t.getPrevState()===void 0&&n?.getValue().length===0?n.pipe(Md.filter(e=>e.length>0),Md.once()).subscribe(n=>{n.find(r)&&t.startTransitionTo(e)}):(e===void 0||n?.getValue().find(r))&&t.startTransitionTo(e)},Pd=l(lt(),1),Fd=require(`@vkontakte/videoplayer-shared/es2024`),Id=()=>{let e=`mediaCapabilities`in Fd.getWindow().navigator?Ld:Rd,t=bc(async()=>{let t=await Promise.all(Pd.default(zd).map(async([t,n])=>({codec:t,supported:await e(n)}))),n=[M.browser.current,...t.map(e=>JSON.stringify(e))].slice(0,16);return Fd.devNull.push(`core`,{key:`videoplayer_decoding_info`,strings:n}),t});return()=>xc(t)},Ld=async e=>{if(!e)return Promise.resolve({supported:!1});let t={[`channels`in e?`audio`:`video`]:e};return await Fd.getWindow().navigator.mediaCapabilities.decodingInfo({type:`media-source`,...t})},Rd=e=>{if(!e)return Promise.resolve({supported:!1});let t=Fd.getWindow().document,n=`channels`in e?t.createElement(`audio`):t.createElement(`video`);return Promise.resolve({supported:n.canPlayType(e?.contentType??``)===`probably`})},zd={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 Bd{subscription=new $.Subscription;domContainer;providerContainer;chromecastInitializer;logger=new $.Logger;tracer;abrLogger=this.logger.createComponentLog(`ABR`);config;tuning;throughputEstimator;internalsExposure=null;isPlaybackStarted=!1;initedAt;hasLiveOffsetByPaused=new $.ValueSubject(!1);hasLiveOffsetByPausedTimer=0;playerInitRequest=0;playerInited=new $.ValueSubject(!1);explicitInitialQuality;wasSetStartedQuality=!1;desiredState={playbackState:new P(`stopped`),seekState:new P({state:`none`}),volume:new P({volume:1,muted:!1}),videoTrack:new P(void 0),videoStream:new P(void 0),audioStream:new P(void 0),autoVideoTrackSwitching:new P(!0),autoVideoTrackLimits:new P({}),isLooped:new P(!1),isLowLatency:new P(!1),playbackRate:new P(1),externalTextTracks:new P([]),internalTextTracks:new P([]),currentTextTrack:new P(void 0),textTrackCuesSettings:new P({}),cameraOrientation:new P({x:0,y:0})};info={playbackState$:new $.ValueSubject(void 0),position$:new $.ValueSubject(0),duration$:new $.ValueSubject(1/0),muted$:new $.ValueSubject(!1),volume$:new $.ValueSubject(1),availableVideoStreams$:new $.ValueSubject([]),currentVideoStream$:new $.ValueSubject(void 0),availableVideoTracks$:new $.ValueSubject([]),availableQualities$:new $.ValueSubject([]),availableQualitiesFps$:new $.ValueSubject({}),currentQuality$:new $.ValueSubject(void 0),isAutoQualityEnabled$:new $.ValueSubject(!0),autoQualityLimitingAvailable$:new $.ValueSubject(!1),autoQualityLimits$:new $.ValueSubject({}),predefinedQualityLimitType$:new $.ValueSubject(`unknown`),availableAudioStreams$:new $.ValueSubject([]),currentAudioStream$:new $.ValueSubject(void 0),availableAudioTracks$:new $.ValueSubject([]),isAudioAvailable$:new $.ValueSubject(!0),currentPlaybackRate$:new $.ValueSubject(1),currentBuffer$:new $.ValueSubject({start:0,end:0}),currentNativeBuffer$:new $.ValueSubject({start:0,end:0}),isBuffering$:new $.ValueSubject(!0),isStalled$:new $.ValueSubject(!1),isEnded$:new $.ValueSubject(!1),isLooped$:new $.ValueSubject(!1),isLive$:new $.ValueSubject(void 0),isLiveEnded$:new $.ValueSubject(null),canPlayLiveTailBuffer$:new $.ValueSubject(!1),canChangePlaybackSpeed$:new $.ValueSubject(void 0),atLiveEdge$:new $.ValueSubject(void 0),atLiveDurationEdge$:new $.ValueSubject(void 0),liveTime$:new $.ValueSubject(void 0),liveBufferTime$:new $.ValueSubject(void 0),liveLatency$:new $.ValueSubject(void 0),currentFormat$:new $.ValueSubject(void 0),availableTextTracks$:new $.ValueSubject([]),currentTextTrack$:new $.ValueSubject(void 0),throughputEstimation$:new $.ValueSubject(void 0),rttEstimation$:new $.ValueSubject(void 0),videoBitrate$:new $.ValueSubject(void 0),hostname$:new $.ValueSubject(void 0),httpConnectionType$:new $.ValueSubject(void 0),httpConnectionReused$:new $.ValueSubject(void 0),httpConnectionMetrics$:new $.ValueSubject(void 0),httpDownloadMetrics$:new $.ValueSubject(void 0),surface$:new $.ValueSubject(`none`),chromecastState$:new $.ValueSubject(`NOT_AVAILABLE`),chromecastDeviceName$:new $.ValueSubject(void 0),intrinsicVideoSize$:new $.ValueSubject(void 0),availableSources$:new $.ValueSubject(void 0),is3DVideo$:new $.ValueSubject(!1),currentVideoSegmentLength$:new $.ValueSubject(0),currentAudioSegmentLength$:new $.ValueSubject(0)};events={inited$:new $.Subject,ready$:new $.Subject,started$:new $.Subject,playing$:new $.Subject,paused$:new $.Subject,stopped$:new $.Subject,willReady$:new $.Subject,willStart$:new $.Subject,willResume$:new $.Subject,willPause$:new $.Subject,willStop$:new $.Subject,willDestruct$:new $.Subject,watchCoverageRecord$:new $.Subject,watchCoverageLive$:new $.Subject,managedError$:new $.Subject,fatalError$:new $.Subject,fetcherRecoverableError$:new $.Subject,ended$:new $.Subject,looped$:new $.Subject,seeked$:new $.Subject,willSeek$:new $.Subject,autoplaySoundProhibited$:new $.Subject,manifestRequested$:new $.Subject,firstBytesManifest$:new $.Subject,manifestReceived$:new $.Subject,firstBytesRequested$:new $.Subject,firstBytesReceived$:new $.Subject,firstBytes$:new $.Subject,loadedMetadata$:new $.Subject,firstFrame$:new $.Subject,canplay$:new $.Subject,log$:new $.Subject,fetcherError$:new $.Subject,severeStallOccured$:new $.Subject};experimental={element$:new $.ValueSubject(void 0),enableDebugTelemetry$:new $.ValueSubject(!1),dumpTelemetry:wa,getCurrentTime$:new $.ValueSubject(null),skipVideoElVolumeSync$:new $.ValueSubject(!1)};devNullLog;collectDecodingInfoDestroyCb;constructor(e={},t=$.TracerFactory.createRootTracer(!1),n){this.initLogs(),this.tuning=Dd(e),this.tracer=t,this.tuning.suppressExceptionsInObservables&&(Er.default(this.info).forEach(e=>e.setSuppressErrors(!0)),Er.default(this.events).forEach(e=>e.setSuppressErrors(!0)));let r={receiverApplicationId:this.tuning.chromecastReceiverId,isDisabled:this.tuning.disableChromecast,dependencies:{logger:this.logger}};if(this.chromecastInitializer=this.tuning.chromecastPresentationApi?new wi(r):new kr(r),this.throughputEstimator=new wd(this.tuning.throughputEstimator),e.exposeInternalsToGlobal&&(this.internalsExposure=new $.InternalsExposure(`core`,$.getPlayerId(n?.playerId)),this.internalsExposure.expose({player:this})),this.initChromecastSubscription(),this.initDesiredStateSubscriptions(),this.devNullLog=n?.onDevNullLog,$.devNull.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 Dr.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:$.ErrorCategory.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`,$.flattenObject(n)),this.domContainer=jd(e),this.chromecastInitializer.contentId=e.meta?.videoId,this.providerContainer=new hd({sources:e.sources,meta:e.meta??{},failoverHosts:e.failoverHosts??[],container:this.domContainer,desiredState:this.desiredState,dependencies:{throughputEstimator:this.throughputEstimator,chromecastInitializer:this.chromecastInitializer,tracer:this.tracer,logger:this.logger,abrLogger:this.abrLogger},tuning:this.tuning,volumeMultiplier:e.volumeMultiplier,panelSize:e.panelSize,skipVideoElVolumeSync$:this.experimental.skipVideoElVolumeSync$}),this.initProviderContainerSubscription(this.providerContainer),this.initStartingVideoTrack(this.providerContainer),this.initTracerSubscription(),this.providerContainer.init(),this.setLiveLowLatency(this.tuning.dashCmafLive.lowLatency.isActiveOnDefault),this.initDebugTelemetry(),this.initWakeLock(),this.playerInited.next(!0),this.devNullLog&&this.tuning.devNullLogEnabled?($.devNull.subscribe(`core`,this.devNullLog),this.tuning.collectingDecodingInfoEnabled&&(this.collectDecodingInfoDestroyCb=Id())):$.devNull.destroy(`core`)},n=()=>{this.tuning.autoplayOnlyIfVisible&&window.requestAnimationFrame?this.playerInitRequest=window.requestAnimationFrame(()=>t()):t()},r=()=>{this.tuning.asyncResolveClientChecker?M.isInited$.pipe($.filter(e=>!!e),$.once()).subscribe(()=>{console.log(`Core SDK async start`),n()}):n()};return this.isNotActiveTabCase()?(this.tracer.log(`request play from hidden tab`),$.fromEvent(document,`visibilitychange`).pipe($.once()).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(),$.devNull.destroy(`core`),this.collectDecodingInfoDestroyCb?.()}waitInit(e){this.playerInited.getValue()?e():this.subscription.add(this.playerInited.pipe($.filter(e=>!!e),$.once()).subscribe(e))}prepare(){return this.waitInit(()=>{let e=this.desiredState.playbackState;this.tracer.log(`prepare`,{currentPlayBackState:e.getState()}),e.getState()===`stopped`&&e.startTransitionTo(`ready`)}),this}play(){return this.waitInit(()=>{let e=this.desiredState.playbackState;this.tracer.log(`play`,{currentPlayBackState:e.getState()}),e.getState()!==`playing`&&e.startTransitionTo(`playing`)}),this}pause(){return this.waitInit(()=>{let e=this.desiredState.playbackState;this.tracer.log(`pause`,{currentPlayBackState:e.getState()}),e.getState()!==`paused`&&e.startTransitionTo(`paused`)}),this}stop(){return this.waitInit(()=>{let e=this.desiredState.playbackState;this.tracer.log(`stop`,{currentPlayBackState:e.getState()}),e.getState()!==`stopped`&&e.startTransitionTo(`stopped`)}),this}seekTime(e,t=!0){return this.waitInit(()=>{let n=this.info.duration$.getValue(),r=this.info.isLive$.getValue(),i=e;e>=n&&!r&&(i=n-this.tuning.seekNearDurationBias),this.tracer.log(`seekTime`,{duration:n,isLive:r,time:e,calculatedTime:i,forcePrecise:t}),Number.isFinite(i)&&(this.events.willSeek$.next({from:this.getExactTime(),to:i}),this.desiredState.seekState.setState({state:`requested`,position:i*1e3,forcePrecise:t}))}),this}seekPercent(e){return this.waitInit(()=>{let t=this.info.duration$.getValue();this.tracer.log(`seekPercent`,{percent:e,duration:t}),isFinite(t)&&this.seekTime(Math.abs(t)*e,!1)}),this}setVolume(e,t,n=!1){return this.waitInit(()=>{this.experimental.skipVideoElVolumeSync$.next(n);let r=this.desiredState.volume,i=r.getTransition()?.to.muted??this.info.muted$.getValue(),a=t??(this.tuning.isAudioDisabled||i);this.tracer.log(`setVolume`,{volume:e,isAudioDisabled:this.tuning.isAudioDisabled,chromecastState:this.chromecastInitializer.castState$.getValue(),muted:a}),this.chromecastInitializer.castState$.getValue()===`CONNECTED`&&!(this.chromecastInitializer instanceof wi)?this.chromecastInitializer.setVolume(e):r.startTransitionTo({volume:e,muted:a})}),this}setMuted(e,t=!1,n=!1){return this.waitInit(()=>{this.experimental.skipVideoElVolumeSync$.next(n);let r=this.desiredState.volume,i=this.tuning.isAudioDisabled&&!t||e,a=r.getTransition()?.to.volume??this.info.volume$.getValue();this.tracer.log(`setMuted`,{isMuted:e,nextMuted:i,volume:a,isAudioDisabled:this.tuning.isAudioDisabled,chromecastState:this.chromecastInitializer.castState$.getValue()}),this.chromecastInitializer.castState$.getValue()===`CONNECTED`&&!(this.chromecastInitializer instanceof wi)?this.chromecastInitializer.setMuted(i):r.startTransitionTo({volume:a,muted:i})}),this}setVideoStream(e){return this.waitInit(()=>{this.desiredState.videoStream.startTransitionTo(e)}),this}setAudioStream(e){return this.waitInit(()=>{this.desiredState.audioStream.startTransitionTo(e)}),this}setQuality(e){return this.waitInit(()=>{$.assertNonNullable(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($.filter(e=>e.length>0),$.once()).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`,$.flattenObject(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`,$.flattenObject(e)),this.desiredState.externalTextTracks.startTransitionTo(e.map(e=>({type:`external`,...e})))}),this}selectTextTrack(e){return this.waitInit(()=>{Nd(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($.isNullable(e))return this.info.position$.getValue();let t=this.desiredState.seekState.getState(),n=t.state===`none`?void 0:t.position;return $.isNonNullable(n)?n/1e3:e.currentTime}getAllLogs(){return this.logger.getAllLogs()}getScene3D(){let e=this.providerContainer?.current$.getValue();if(e?.provider?.scene3D)return e.provider.scene3D}setIntrinsicVideoSize(...e){let t={width:e.reduce((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($.merge(this.desiredState.playbackState.stateChangeStarted$,this.desiredState.playbackState.forceChanged$).pipe($.map(e=>e.to)).subscribe(this.info.playbackState$)).add(this.desiredState.isLooped.stateChangeEnded$.pipe($.map(e=>e.to)).subscribe(this.info.isLooped$)).add(this.desiredState.playbackRate.stateChangeEnded$.pipe($.map(e=>e.to)).subscribe(this.info.currentPlaybackRate$)).add(this.desiredState.autoVideoTrackSwitching.stateChangeEnded$.pipe($.map(e=>e.to)).subscribe(this.info.isAutoQualityEnabled$)).add(this.desiredState.autoVideoTrackLimits.stateChangeEnded$.pipe($.map(e=>e.to)).subscribe(e=>{this.info.autoQualityLimits$.next(e);let{highQualityLimit:t,trafficSavingLimit:n}=this.tuning.autoTrackSelection;this.info.predefinedQualityLimitType$.next(Oa(e,t,n))})),this.subscription.add(this.desiredState.playbackState.stateChangeStarted$.pipe($.filter(({from:e})=>e===`stopped`),$.once()).subscribe(()=>{this.initedAt=$.now(),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`,$.flattenObject(e)),e.state===`requested`?this.desiredState.seekState.setState({...e,state:`applying`}):this.events.managedError$.next({id:`WillSeekIn${e.state}`,category:$.ErrorCategory.WTF,message:`Received unexpeceted willSeek$`})})).add(e.providerOutput.soundProhibitedEvent$.pipe($.once()).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`,$.flattenObject(e)),e.state===`applying`&&(this.desiredState.seekState.setState({state:`none`}),this.events.seeked$.next())})).add(e.current$.pipe($.map(e=>e.type)).subscribe(this.info.currentFormat$)).add(e.current$.pipe($.map(e=>e.destination),$.filterChanged()).subscribe(()=>this.isPlaybackStarted=!1)).add(e.providerOutput.availableVideoStreams$.subscribe(this.info.availableVideoStreams$)).add(e.providerOutput.availableVideoTracks$.subscribe(this.info.availableVideoTracks$)).add($.combine({availableVideoTracks:e.providerOutput.availableVideoTracks$,currentVideoStream:e.providerOutput.currentVideoStream$}).pipe($.map(({availableVideoTracks:e,currentVideoStream:t})=>e.filter(e=>t?t.id===e.streamId:!0).map(({quality:e})=>e).sort((e,t)=>$.isInvariantQuality(e)?1:$.isInvariantQuality(t)?-1:$.isHigher(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($.filterChanged()).subscribe(this.info.isAudioAvailable$)).add(e.providerOutput.currentVideoTrack$.pipe($.filter(e=>$.isNonNullable(e))).subscribe(e=>{this.info.currentQuality$.next(e?.quality),this.info.videoBitrate$.next(e?.bitrate)})).add(e.providerOutput.currentVideoSegmentLength$.pipe($.filterChanged((e,t)=>Math.round(e)===Math.round(t))).subscribe(this.info.currentVideoSegmentLength$)).add(e.providerOutput.currentAudioSegmentLength$.pipe($.filterChanged((e,t)=>Math.round(e)===Math.round(t))).subscribe(this.info.currentAudioSegmentLength$)).add(e.providerOutput.hostname$.pipe($.filterChanged()).subscribe(this.info.hostname$)).add(e.providerOutput.httpConnectionType$.pipe($.filterChanged()).subscribe(this.info.httpConnectionType$)).add(e.providerOutput.httpConnectionReused$.pipe($.filterChanged()).subscribe(this.info.httpConnectionReused$)).add(e.providerOutput.httpConnectionMetrics$.pipe($.filterChanged()).subscribe(this.info.httpConnectionMetrics$)).add(e.providerOutput.httpDownloadMetrics$.pipe($.filterChanged()).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($.map(e=>e?{start:e.from,end:e.to}:{start:0,end:0})).subscribe(this.info.currentBuffer$)).add(e.providerOutput.currentNativeBuffer$.pipe($.map(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($.tap(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($.filterChanged()).subscribe(this.info.liveTime$)).add(e.providerOutput.liveBufferTime$.subscribe(this.info.liveBufferTime$)).add(e.providerOutput.liveLatency$.subscribe(this.info.liveLatency$)).add($.combine({hasLiveOffsetByPaused:$.merge(this.desiredState.playbackState.stateChangeStarted$,this.desiredState.playbackState.forceChanged$).pipe($.map(e=>e.to),$.filterChanged(),$.map(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($.combine({atLiveEdge:$.combine({isLive:e.providerOutput.isLive$,isLowLatency:e.providerOutput.isLowLatency$,position:kd({seekState:this.desiredState.seekState,position$:e.providerOutput.position$})}).pipe($.map(({isLive:e,position:t,isLowLatency:n})=>{let r=this.getActiveLiveDelay(n);return e&&Math.abs(t)<r/1e3}),$.filterChanged(),$.tap(e=>e&&this.setPlaybackRate(1))),hasPausedTimeoutCase:this.hasLiveOffsetByPaused}).pipe($.map(({atLiveEdge:e,hasPausedTimeoutCase:t})=>e&&!t)).subscribe(this.info.atLiveEdge$)).add($.combine({isLive:e.providerOutput.isLive$,position:e.providerOutput.position$,duration:e.providerOutput.duration$}).pipe($.map(({isLive:e,position:t,duration:n})=>e&&(Math.abs(n)-Math.abs(t))*1e3<this.tuning.live.activeLiveDelay),$.filterChanged(),$.tap(e=>e&&this.setPlaybackRate(1))).subscribe(this.info.atLiveDurationEdge$)).add(e.providerOutput.volume$.pipe($.map(e=>e.muted),$.filterChanged()).subscribe(this.info.muted$)).add(e.providerOutput.volume$.pipe($.map(e=>e.volume),$.filterChanged()).subscribe(this.info.volume$)).add(kd({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($.merge(e.providerOutput.endedEvent$.pipe($.mapTo(!0)),e.providerOutput.seekedEvent$.pipe($.mapTo(!1))).pipe($.filterChanged()).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($.map(e=>({id:e?`No${e}`:`NoProviders`,category:$.ErrorCategory.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($.once()).subscribe(this.events.manifestRequested$)).add(e.providerOutput.firstBytesManifest$.pipe($.once()).subscribe(this.events.firstBytesManifest$)).add(e.providerOutput.manifestReceived$.pipe($.once()).subscribe(this.events.manifestReceived$)).add(e.providerOutput.firstBytesRequested$.pipe($.once()).subscribe(this.events.firstBytesRequested$)).add(e.providerOutput.firstBytesReceived$.pipe($.once()).subscribe(this.events.firstBytesReceived$)).add(e.providerOutput.firstBytesEvent$.pipe($.once(),$.map(e=>e??$.now()-this.initedAt)).subscribe(this.events.firstBytes$)).add(e.providerOutput.loadedMetadataEvent$.subscribe(this.events.loadedMetadata$)).add(e.providerOutput.firstFrameEvent$.pipe($.once(),$.map(()=>$.now()-this.initedAt)).subscribe(this.events.firstFrame$)).add(e.providerOutput.canplay$.pipe($.once(),$.map(()=>$.now()-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 $.ValueSubject(!1);this.subscription.add(e.providerOutput.seekedEvent$.subscribe(()=>t.next(!1))).add(e.providerOutput.willSeekEvent$.subscribe(()=>t.next(!0)));let n=new $.ValueSubject(!0);this.subscription.add(e.current$.subscribe(()=>n.next(!0))).add(this.desiredState.playbackState.stateChangeEnded$.pipe($.filter(({to:e})=>e===`playing`),$.once()).subscribe(()=>n.next(!1)));let r=0,i=$.merge(e.providerOutput.isBuffering$,t,n).pipe($.map(()=>{let r=e.providerOutput.isBuffering$.getValue(),i=t.getValue()||n.getValue();return r&&!i}),$.filterChanged());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($.merge(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=>{let n=e.providerOutput.element$.getValue();this.setIntrinsicVideoSize({width:t?.size?.width,height:t?.size?.height},{width:n?.videoWidth,height:n?.videoHeight})})).add(e.providerOutput.is3DVideo$.subscribe(this.info.is3DVideo$)),this.subscription.add($.merge(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($.map(e=>e?.castDevice.friendlyName)).subscribe(this.info.chromecastDeviceName$)),this.subscription.add(this.chromecastInitializer.errorEvent$.subscribe(this.events.managedError$))}initStartingVideoTrack(e){let t=new $.Subscription;this.subscription.add(t),this.subscription.add(e.current$.pipe($.filterChanged((e,t)=>e.provider===t.provider)).subscribe(()=>{t.unsubscribe(),t.add(e.providerOutput.availableVideoTracks$.pipe($.filter(e=>e.length>0),$.once()).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||=Ka(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($.merge(this.desiredState.videoTrack.stateChangeStarted$.pipe($.map(e=>({transition:e,entity:`quality`,type:`start`}))),this.desiredState.videoTrack.stateChangeEnded$.pipe($.map(e=>({transition:e,entity:`quality`,type:`end`}))),this.desiredState.autoVideoTrackSwitching.stateChangeStarted$.pipe($.map(e=>({transition:e,entity:`autoQualityEnabled`,type:`start`}))),this.desiredState.autoVideoTrackSwitching.stateChangeEnded$.pipe($.map(e=>({transition:e,entity:`autoQualityEnabled`,type:`end`}))),this.desiredState.seekState.stateChangeStarted$.pipe($.map(e=>({transition:e,entity:`seekState`,type:`start`}))),this.desiredState.seekState.stateChangeEnded$.pipe($.map(e=>({transition:e,entity:`seekState`,type:`end`}))),this.desiredState.playbackState.stateChangeStarted$.pipe($.map(e=>({transition:e,entity:`playbackState`,type:`start`}))),this.desiredState.playbackState.stateChangeEnded$.pipe($.map(e=>({transition:e,entity:`playbackState`,type:`end`})))).pipe($.map(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;$.assertNonNullable(this.providerContainer),$.assertNonNullable(e),Ca(),this.experimental.enableDebugTelemetry$.next(this.tuning.enableTelemetryAtStart),[this.experimental.enableDebugTelemetry$.subscribe(e=>Sa(e)),this.providerContainer.current$.subscribe(({type:e})=>Ta(`provider`,e)),e.duration$.subscribe(e=>Ta(`duration`,e)),e.availableVideoTracks$.pipe($.filter(e=>!!e.length),$.once()).subscribe(e=>Ta(`tracks`,e)),this.events.fatalError$.subscribe(new Ea(`fatalError`)),this.events.managedError$.subscribe(new Ea(`managedError`)),e.position$.subscribe(new Ea(`position`)),e.currentVideoTrack$.pipe($.map(e=>e?.quality)).subscribe(new Ea(`quality`)),this.info.currentBuffer$.subscribe(new Ea(`buffer`)),e.isBuffering$.subscribe(new Ea(`isBuffering`))].forEach(e=>this.subscription.add(e)),Ta(`codecs`,M.video.supportedCodecs)}initTracerSubscription(){let e=$.getTraceSubscriptionMethod(this.tracer.log.bind(this.tracer)),t=$.getTraceSubscriptionMethod(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($.filterChanged()).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($.combine({currentQuality:this.info.currentQuality$,videoBitrate:this.info.videoBitrate$}).pipe($.filter(({currentQuality:e,videoBitrate:t})=>!!e&&!!t),$.filterChanged((e,t)=>e.currentQuality===t.currentQuality)).subscribe(e(`currentVideoTrack`))).add(this.info.currentVideoSegmentLength$.pipe($.filter(e=>e>0),$.filterChanged()).subscribe(e(`currentVideoSegmentLength`))).add(this.info.currentAudioSegmentLength$.pipe($.filter(e=>e>0),$.filterChanged()).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($.combine({currentBuffer:this.info.currentBuffer$.pipe($.filter(e=>e.end>0),$.filterChanged((e,t)=>e.end===t.end&&e.start===t.start)),position:this.info.position$.pipe($.filterChanged())}).pipe($.throttle(1e3)).subscribe(e(`currentBufferAndPosition`))).add(this.info.duration$.pipe($.filterChanged()).subscribe(e(`duration`))).add(this.info.isBuffering$.subscribe(e(`isBuffering`))).add(this.info.isLive$.pipe($.filterChanged()).subscribe(e(`isLive`))).add(this.info.canChangePlaybackSpeed$.pipe($.filterChanged()).subscribe(e(`canChangePlaybackSpeed`))).add($.combine({liveTime:this.info.liveTime$,liveBufferTime:this.info.liveBufferTime$,position:this.info.position$}).pipe($.filter(({liveTime:e,liveBufferTime:t})=>!!e&&!!t),$.throttle(1e3)).subscribe(e(`liveBufferAndPosition`))).add(this.info.atLiveEdge$.pipe($.filterChanged(),$.filter(e=>e===!0)).subscribe(e(`atLiveEdge`))).add(this.info.atLiveDurationEdge$.pipe($.filterChanged(),$.filter(e=>e===!0)).subscribe(e(`atLiveDurationEdge`))).add(this.info.muted$.pipe($.filterChanged()).subscribe(e(`muted`))).add(this.info.volume$.pipe($.filterChanged()).subscribe(e(`volume`))).add(this.info.isEnded$.pipe($.filterChanged(),$.filter(e=>e===!0)).subscribe(e(`isEnded`))).add(this.info.availableSources$.subscribe(e(`availableSources`))).add($.combine({throughputEstimation:this.info.throughputEstimation$,rtt:this.info.rttEstimation$}).pipe($.filter(({throughputEstimation:e,rtt:t})=>!!e&&!!t),$.throttle(3e3)).subscribe(e(`throughputEstimation`))).add(this.info.isStalled$.subscribe(e(`isStalled`))).add(this.info.is3DVideo$.pipe($.filterChanged(),$.filter(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:$.ErrorCategory.DOM,message:String(e)})})};this.subscription.add($.merge($.fromEvent(document,`visibilitychange`),$.fromEvent(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`,$.flattenObject({quality:t,availableTracks:$.flattenObject(e),track:$.flattenObject(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&&!Ro()}}var Vd=require(`@vkontakte/videoplayer-shared/es2024`),Hd=`@vkontakte/videoplayer-core@${vr}`;
131
+ //# sourceMappingURL=es2024.cjs.map