rx-player 4.4.1 → 4.5.0-dev.2026012301
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.
- package/CHANGELOG.md +16 -0
- package/README.md +50 -111
- package/VERSION +1 -1
- package/package.json +23 -9
- package/src/README.md +183 -293
- package/src/compat/disable_remote_playback_on_managed_media_source.ts +39 -0
- package/src/compat/eme/close_session.ts +3 -3
- package/src/compat/eme/custom_media_keys/ie11_media_keys.ts +2 -2
- package/src/compat/reset_media_element.ts +50 -0
- package/src/core/adaptive/adaptive_representation_selector.ts +3 -3
- package/src/core/cmcd/cmcd_data_builder.ts +3 -3
- package/src/core/{main/common → entry}/FreezeResolver.ts +7 -7
- package/src/core/{main → entry}/README.md +1 -1
- package/src/core/{main/worker → entry}/content_preparer.ts +181 -94
- package/src/core/{main/common → entry}/content_time_boundaries_observer.ts +16 -13
- package/src/core/{main/worker/worker_main.ts → entry/core_entry.ts} +258 -156
- package/src/core/{main/worker/worker_text_displayer_interface.ts → entry/core_text_displayer_interface.ts} +34 -31
- package/src/core/{main/common → entry}/create_content_time_boundaries_observer.ts +11 -11
- package/src/core/{main/common → entry}/get_buffered_data_per_media_buffer.ts +6 -6
- package/src/core/{main/common → entry}/get_thumbnail_data.ts +6 -6
- package/src/core/entry/index.ts +5 -0
- package/src/core/{main/common → entry}/synchronize_sinks_on_observation.ts +2 -2
- package/src/core/{main/worker → entry}/track_choice_setter.ts +7 -7
- package/src/core/entry/utils.ts +11 -0
- package/src/core/fetchers/manifest/manifest_fetcher.ts +11 -8
- package/src/core/fetchers/segment/__tests__/task_prioritizer.test.ts +10 -10
- package/src/core/fetchers/segment/segment_queue.ts +51 -15
- package/src/core/fetchers/segment/task_prioritizer.ts +2 -2
- package/src/core/fetchers/thumbnails/thumbnail_fetcher.ts +2 -2
- package/src/core/fetchers/utils/schedule_request.ts +2 -2
- package/src/core/segment_sinks/implementations/audio_video/audio_video_segment_sink.ts +2 -2
- package/src/core/segment_sinks/implementations/text/text_segment_sink.ts +1 -1
- package/src/core/segment_sinks/implementations/types.ts +4 -1
- package/src/core/segment_sinks/segment_sinks_store.ts +10 -4
- package/src/core/stream/adaptation/adaptation_stream.ts +63 -29
- package/src/core/stream/orchestrator/stream_orchestrator.ts +25 -15
- package/src/core/stream/period/period_stream.ts +7 -5
- package/src/core/stream/representation/representation_stream.ts +22 -14
- package/src/core/stream/representation/types.ts +5 -0
- package/src/core/types.ts +644 -3
- package/src/experimental/features/__tests__/local.test.ts +11 -2
- package/src/experimental/features/__tests__/metaplaylist.test.ts +11 -2
- package/src/experimental/features/__tests__/multi_thread.test.ts +8 -3
- package/src/experimental/features/local.ts +7 -1
- package/src/experimental/features/metaplaylist.ts +7 -1
- package/src/experimental/features/multi_thread.ts +6 -2
- package/src/experimental/features/worker/index.ts +5 -0
- package/src/experimental/tools/DummyMediaElement/html5.ts +4 -4
- package/src/experimental/tools/DummyMediaElement/mse.ts +5 -5
- package/src/experimental/tools/VideoThumbnailLoader/prepare_source_buffer.ts +2 -4
- package/src/experimental/tools/VideoThumbnailLoader/video_thumbnail_loader.ts +13 -11
- package/src/experimental/tools/createMetaplaylist/get_duration_from_manifest.ts +2 -2
- package/src/features/README.md +5 -0
- package/src/features/features_object.ts +1 -1
- package/src/features/list/__tests__/dash.test.ts +12 -3
- package/src/features/list/__tests__/smooth.test.ts +11 -2
- package/src/features/list/dash.ts +7 -1
- package/src/features/list/dash_wasm.ts +7 -1
- package/src/features/list/media_source_main.ts +7 -1
- package/src/features/list/smooth.ts +7 -1
- package/src/features/types.ts +23 -4
- package/src/importable_worker.ts +175 -0
- package/src/initialize_worker.ts +86 -0
- package/src/main_thread/README.md +8 -0
- package/src/main_thread/api/__tests__/option_utils.test.ts +154 -4
- package/src/main_thread/api/__tests__/public_api.test.ts +2 -2
- package/src/main_thread/api/option_utils.ts +45 -6
- package/src/main_thread/api/public_api.ts +372 -113
- package/src/main_thread/core_interface/README.md +22 -0
- package/src/main_thread/core_interface/base.ts +36 -0
- package/src/main_thread/core_interface/monothread.ts +46 -0
- package/src/main_thread/core_interface/multithread.ts +49 -0
- package/src/main_thread/core_interface/types.ts +5 -0
- package/src/main_thread/decrypt/__tests__/__global__/get_license.test.ts +1 -1
- package/src/main_thread/decrypt/__tests__/__global__/media_key_system_access.test.ts +1 -1
- package/src/main_thread/decrypt/__tests__/__global__/media_keys.test.ts +7 -7
- package/src/main_thread/decrypt/__tests__/__global__/server_certificate.test.ts +5 -5
- package/src/main_thread/decrypt/__tests__/find_key_system.test.ts +3 -3
- package/src/main_thread/decrypt/content_decryptor.ts +7 -4
- package/src/main_thread/decrypt/session_events_listener.ts +7 -7
- package/src/main_thread/init/directfile_content_initializer.ts +9 -6
- package/src/main_thread/init/media_source_content_initializer.ts +2071 -1153
- package/src/main_thread/init/types.ts +4 -1
- package/src/main_thread/init/utils/create_core_playback_observer.ts +3 -2
- package/src/main_thread/init/utils/get_loaded_reference.ts +3 -3
- package/src/main_thread/init/utils/initialize_content_decryption.ts +4 -4
- package/src/main_thread/init/utils/main_thread_text_displayer_interface.ts +2 -2
- package/src/main_thread/init/utils/rebuffering_controller.ts +16 -10
- package/src/main_thread/init/utils/stream_events_emitter/stream_events_emitter.ts +11 -6
- package/src/main_thread/init/utils/update_manifest_codec_support.ts +1 -1
- package/src/main_thread/render_thumbnail.ts +3 -3
- package/src/main_thread/text_displayer/html/html_text_displayer.ts +27 -17
- package/src/main_thread/text_displayer/types.ts +3 -1
- package/src/main_thread/tracks_store/track_dispatcher.ts +10 -7
- package/src/main_thread/tracks_store/tracks_store.ts +5 -5
- package/src/main_thread/types.ts +650 -0
- package/src/manifest/classes/__tests__/adaptation.test.ts +2 -2
- package/src/manifest/classes/__tests__/manifest.test.ts +6 -6
- package/src/manifest/classes/__tests__/period.test.ts +160 -173
- package/src/manifest/utils.ts +31 -4
- package/src/mse/main_media_source_interface.ts +37 -16
- package/src/mse/types.ts +19 -5
- package/src/mse/utils/end_of_stream.ts +6 -6
- package/src/mse/utils/media_source_duration_updater.ts +19 -10
- package/src/mse/worker_media_source_interface.ts +66 -46
- package/src/parsers/manifest/smooth/create_parser.ts +40 -34
- package/src/parsers/manifest/smooth/parse_C_nodes.ts +19 -8
- package/src/parsers/manifest/smooth/parse_protection_node.ts +17 -9
- package/src/parsers/manifest/smooth/utils/parseBoolean.ts +1 -1
- package/src/parsers/manifest/smooth/utils/reduceChildren.ts +10 -7
- package/src/playback_observer/{worker_playback_observer.ts → core_playback_observer.ts} +13 -13
- package/src/playback_observer/media_element_playback_observer.ts +6 -3
- package/src/public_types.ts +25 -5
- package/src/tools/TextTrackRenderer/text_track_renderer.ts +5 -2
- package/src/transports/dash/integrity_checks.ts +2 -2
- package/src/transports/smooth/pipelines.ts +25 -5
- package/src/utils/event_emitter.ts +35 -17
- package/src/utils/task_canceller.ts +64 -18
- package/src/worker_entry_point.ts +8 -6
- package/vitest.config.mjs +36 -29
- package/dist/commonjs/__GENERATED_CODE/embedded_dash_wasm.d.ts +0 -4
- package/dist/commonjs/__GENERATED_CODE/embedded_dash_wasm.d.ts.map +0 -1
- package/dist/commonjs/__GENERATED_CODE/embedded_dash_wasm.js +0 -6
- package/dist/commonjs/__GENERATED_CODE/embedded_worker.d.ts +0 -4
- package/dist/commonjs/__GENERATED_CODE/embedded_worker.d.ts.map +0 -1
- package/dist/commonjs/__GENERATED_CODE/embedded_worker.js +0 -6
- package/dist/commonjs/__GENERATED_CODE/index.d.ts +0 -3
- package/dist/commonjs/__GENERATED_CODE/index.d.ts.map +0 -1
- package/dist/commonjs/__GENERATED_CODE/index.js +0 -7
- package/dist/commonjs/compat/add_class_name.d.ts +0 -23
- package/dist/commonjs/compat/add_class_name.d.ts.map +0 -1
- package/dist/commonjs/compat/add_class_name.js +0 -39
- package/dist/commonjs/compat/add_text_track.d.ts +0 -32
- package/dist/commonjs/compat/add_text_track.d.ts.map +0 -1
- package/dist/commonjs/compat/add_text_track.js +0 -52
- package/dist/commonjs/compat/browser_compatibility_types.d.ts +0 -384
- package/dist/commonjs/compat/browser_compatibility_types.d.ts.map +0 -1
- package/dist/commonjs/compat/browser_compatibility_types.js +0 -47
- package/dist/commonjs/compat/browser_version.d.ts +0 -25
- package/dist/commonjs/compat/browser_version.d.ts.map +0 -1
- package/dist/commonjs/compat/browser_version.js +0 -43
- package/dist/commonjs/compat/can_patch_isobmff.d.ts +0 -26
- package/dist/commonjs/compat/can_patch_isobmff.d.ts.map +0 -1
- package/dist/commonjs/compat/can_patch_isobmff.js +0 -32
- package/dist/commonjs/compat/can_preload_before_play.d.ts +0 -11
- package/dist/commonjs/compat/can_preload_before_play.d.ts.map +0 -1
- package/dist/commonjs/compat/can_preload_before_play.js +0 -23
- package/dist/commonjs/compat/can_rely_on_request_media_key_system_access.d.ts +0 -41
- package/dist/commonjs/compat/can_rely_on_request_media_key_system_access.d.ts.map +0 -1
- package/dist/commonjs/compat/can_rely_on_request_media_key_system_access.js +0 -56
- package/dist/commonjs/compat/can_rely_on_video_visibility_and_size.d.ts +0 -38
- package/dist/commonjs/compat/can_rely_on_video_visibility_and_size.d.ts.map +0 -1
- package/dist/commonjs/compat/can_rely_on_video_visibility_and_size.js +0 -52
- package/dist/commonjs/compat/can_reuse_media_keys.d.ts +0 -20
- package/dist/commonjs/compat/can_reuse_media_keys.d.ts.map +0 -1
- package/dist/commonjs/compat/can_reuse_media_keys.js +0 -33
- package/dist/commonjs/compat/change_source_buffer_type.d.ts +0 -49
- package/dist/commonjs/compat/change_source_buffer_type.d.ts.map +0 -1
- package/dist/commonjs/compat/change_source_buffer_type.js +0 -40
- package/dist/commonjs/compat/clear_element_src.d.ts +0 -22
- package/dist/commonjs/compat/clear_element_src.d.ts.map +0 -1
- package/dist/commonjs/compat/clear_element_src.js +0 -56
- package/dist/commonjs/compat/eme/close_session.d.ts +0 -31
- package/dist/commonjs/compat/eme/close_session.d.ts.map +0 -1
- package/dist/commonjs/compat/eme/close_session.js +0 -169
- package/dist/commonjs/compat/eme/constants.d.ts +0 -17
- package/dist/commonjs/compat/eme/constants.d.ts.map +0 -1
- package/dist/commonjs/compat/eme/constants.js +0 -22
- package/dist/commonjs/compat/eme/custom_key_system_access.d.ts +0 -50
- package/dist/commonjs/compat/eme/custom_key_system_access.d.ts.map +0 -1
- package/dist/commonjs/compat/eme/custom_key_system_access.js +0 -49
- package/dist/commonjs/compat/eme/custom_media_keys/ie11_media_keys.d.ts +0 -32
- package/dist/commonjs/compat/eme/custom_media_keys/ie11_media_keys.d.ts.map +0 -1
- package/dist/commonjs/compat/eme/custom_media_keys/ie11_media_keys.js +0 -181
- package/dist/commonjs/compat/eme/custom_media_keys/index.d.ts +0 -7
- package/dist/commonjs/compat/eme/custom_media_keys/index.d.ts.map +0 -1
- package/dist/commonjs/compat/eme/custom_media_keys/index.js +0 -16
- package/dist/commonjs/compat/eme/custom_media_keys/moz_media_keys_constructor.d.ts +0 -28
- package/dist/commonjs/compat/eme/custom_media_keys/moz_media_keys_constructor.d.ts.map +0 -1
- package/dist/commonjs/compat/eme/custom_media_keys/moz_media_keys_constructor.js +0 -61
- package/dist/commonjs/compat/eme/custom_media_keys/ms_media_keys_constructor.d.ts +0 -44
- package/dist/commonjs/compat/eme/custom_media_keys/ms_media_keys_constructor.d.ts.map +0 -1
- package/dist/commonjs/compat/eme/custom_media_keys/ms_media_keys_constructor.js +0 -28
- package/dist/commonjs/compat/eme/custom_media_keys/old_webkit_media_keys.d.ts +0 -42
- package/dist/commonjs/compat/eme/custom_media_keys/old_webkit_media_keys.d.ts.map +0 -1
- package/dist/commonjs/compat/eme/custom_media_keys/old_webkit_media_keys.js +0 -195
- package/dist/commonjs/compat/eme/custom_media_keys/webkit_media_keys.d.ts +0 -33
- package/dist/commonjs/compat/eme/custom_media_keys/webkit_media_keys.d.ts.map +0 -1
- package/dist/commonjs/compat/eme/custom_media_keys/webkit_media_keys.js +0 -233
- package/dist/commonjs/compat/eme/custom_media_keys/webkit_media_keys_constructor.d.ts +0 -23
- package/dist/commonjs/compat/eme/custom_media_keys/webkit_media_keys_constructor.d.ts.map +0 -1
- package/dist/commonjs/compat/eme/custom_media_keys/webkit_media_keys_constructor.js +0 -30
- package/dist/commonjs/compat/eme/eme-api-implementation.d.ts +0 -78
- package/dist/commonjs/compat/eme/eme-api-implementation.d.ts.map +0 -1
- package/dist/commonjs/compat/eme/eme-api-implementation.js +0 -241
- package/dist/commonjs/compat/eme/generate_key_request.d.ts +0 -55
- package/dist/commonjs/compat/eme/generate_key_request.d.ts.map +0 -1
- package/dist/commonjs/compat/eme/generate_key_request.js +0 -148
- package/dist/commonjs/compat/eme/get_init_data.d.ts +0 -60
- package/dist/commonjs/compat/eme/get_init_data.d.ts.map +0 -1
- package/dist/commonjs/compat/eme/get_init_data.js +0 -113
- package/dist/commonjs/compat/eme/get_uuid_kid_from_keystatus_kid.d.ts +0 -24
- package/dist/commonjs/compat/eme/get_uuid_kid_from_keystatus_kid.d.ts.map +0 -1
- package/dist/commonjs/compat/eme/get_uuid_kid_from_keystatus_kid.js +0 -36
- package/dist/commonjs/compat/eme/get_webkit_fairplay_initdata.d.ts +0 -26
- package/dist/commonjs/compat/eme/get_webkit_fairplay_initdata.d.ts.map +0 -1
- package/dist/commonjs/compat/eme/get_webkit_fairplay_initdata.js +0 -57
- package/dist/commonjs/compat/eme/index.d.ts +0 -26
- package/dist/commonjs/compat/eme/index.d.ts.map +0 -1
- package/dist/commonjs/compat/eme/index.js +0 -28
- package/dist/commonjs/compat/eme/load_session.d.ts +0 -31
- package/dist/commonjs/compat/eme/load_session.d.ts.map +0 -1
- package/dist/commonjs/compat/eme/load_session.js +0 -102
- package/dist/commonjs/compat/eme/set_media_keys.d.ts +0 -10
- package/dist/commonjs/compat/eme/set_media_keys.d.ts.map +0 -1
- package/dist/commonjs/compat/eme/set_media_keys.js +0 -36
- package/dist/commonjs/compat/enable_audio_track.d.ts +0 -12
- package/dist/commonjs/compat/enable_audio_track.d.ts.map +0 -1
- package/dist/commonjs/compat/enable_audio_track.js +0 -29
- package/dist/commonjs/compat/env_detector.d.ts +0 -100
- package/dist/commonjs/compat/env_detector.d.ts.map +0 -1
- package/dist/commonjs/compat/env_detector.js +0 -189
- package/dist/commonjs/compat/event_listeners.d.ts +0 -175
- package/dist/commonjs/compat/event_listeners.d.ts.map +0 -1
- package/dist/commonjs/compat/event_listeners.js +0 -437
- package/dist/commonjs/compat/generate_init_data.d.ts +0 -14
- package/dist/commonjs/compat/generate_init_data.d.ts.map +0 -1
- package/dist/commonjs/compat/generate_init_data.js +0 -60
- package/dist/commonjs/compat/get_start_date.d.ts +0 -32
- package/dist/commonjs/compat/get_start_date.d.ts.map +0 -1
- package/dist/commonjs/compat/get_start_date.js +0 -47
- package/dist/commonjs/compat/has_issues_with_high_media_source_duration.d.ts +0 -22
- package/dist/commonjs/compat/has_issues_with_high_media_source_duration.d.ts.map +0 -1
- package/dist/commonjs/compat/has_issues_with_high_media_source_duration.js +0 -32
- package/dist/commonjs/compat/has_mse_in_worker.d.ts +0 -3
- package/dist/commonjs/compat/has_mse_in_worker.d.ts.map +0 -1
- package/dist/commonjs/compat/has_mse_in_worker.js +0 -6
- package/dist/commonjs/compat/has_webassembly.d.ts +0 -7
- package/dist/commonjs/compat/has_webassembly.d.ts.map +0 -1
- package/dist/commonjs/compat/has_webassembly.js +0 -8
- package/dist/commonjs/compat/has_worker_api.d.ts +0 -10
- package/dist/commonjs/compat/has_worker_api.d.ts.map +0 -1
- package/dist/commonjs/compat/has_worker_api.js +0 -17
- package/dist/commonjs/compat/is_codec_supported.d.ts +0 -28
- package/dist/commonjs/compat/is_codec_supported.d.ts.map +0 -1
- package/dist/commonjs/compat/is_codec_supported.js +0 -70
- package/dist/commonjs/compat/is_seeking_approximate.d.ts +0 -29
- package/dist/commonjs/compat/is_seeking_approximate.d.ts.map +0 -1
- package/dist/commonjs/compat/is_seeking_approximate.js +0 -36
- package/dist/commonjs/compat/is_vtt_cue.d.ts +0 -23
- package/dist/commonjs/compat/is_vtt_cue.d.ts.map +0 -1
- package/dist/commonjs/compat/is_vtt_cue.js +0 -27
- package/dist/commonjs/compat/make_vtt_cue.d.ts +0 -27
- package/dist/commonjs/compat/make_vtt_cue.d.ts.map +0 -1
- package/dist/commonjs/compat/make_vtt_cue.js +0 -47
- package/dist/commonjs/compat/may_media_element_fail_on_undecipherable_data.d.ts +0 -17
- package/dist/commonjs/compat/may_media_element_fail_on_undecipherable_data.d.ts.map +0 -1
- package/dist/commonjs/compat/may_media_element_fail_on_undecipherable_data.js +0 -25
- package/dist/commonjs/compat/on_height_width_change.d.ts +0 -34
- package/dist/commonjs/compat/on_height_width_change.d.ts.map +0 -1
- package/dist/commonjs/compat/on_height_width_change.js +0 -75
- package/dist/commonjs/compat/patch_webkit_source_buffer.d.ts +0 -17
- package/dist/commonjs/compat/patch_webkit_source_buffer.d.ts.map +0 -1
- package/dist/commonjs/compat/patch_webkit_source_buffer.js +0 -65
- package/dist/commonjs/compat/remove_cue.d.ts +0 -23
- package/dist/commonjs/compat/remove_cue.d.ts.map +0 -1
- package/dist/commonjs/compat/remove_cue.js +0 -66
- package/dist/commonjs/compat/should_await_set_media_keys.d.ts +0 -17
- package/dist/commonjs/compat/should_await_set_media_keys.d.ts.map +0 -1
- package/dist/commonjs/compat/should_await_set_media_keys.js +0 -27
- package/dist/commonjs/compat/should_favour_custom_safari_EME.d.ts +0 -24
- package/dist/commonjs/compat/should_favour_custom_safari_EME.d.ts.map +0 -1
- package/dist/commonjs/compat/should_favour_custom_safari_EME.js +0 -37
- package/dist/commonjs/compat/should_reload_media_source_on_decipherability_update.d.ts +0 -27
- package/dist/commonjs/compat/should_reload_media_source_on_decipherability_update.d.ts.map +0 -1
- package/dist/commonjs/compat/should_reload_media_source_on_decipherability_update.js +0 -35
- package/dist/commonjs/compat/should_renew_media_key_system_access.d.ts +0 -22
- package/dist/commonjs/compat/should_renew_media_key_system_access.d.ts.map +0 -1
- package/dist/commonjs/compat/should_renew_media_key_system_access.js +0 -35
- package/dist/commonjs/compat/should_unset_media_keys.d.ts +0 -23
- package/dist/commonjs/compat/should_unset_media_keys.d.ts.map +0 -1
- package/dist/commonjs/compat/should_unset_media_keys.js +0 -30
- package/dist/commonjs/compat/should_validate_metadata.d.ts +0 -23
- package/dist/commonjs/compat/should_validate_metadata.d.ts.map +0 -1
- package/dist/commonjs/compat/should_validate_metadata.js +0 -30
- package/dist/commonjs/compat/should_wait_for_data_before_loaded.d.ts +0 -25
- package/dist/commonjs/compat/should_wait_for_data_before_loaded.d.ts.map +0 -1
- package/dist/commonjs/compat/should_wait_for_data_before_loaded.js +0 -42
- package/dist/commonjs/compat/should_wait_for_have_enough_data.d.ts +0 -14
- package/dist/commonjs/compat/should_wait_for_have_enough_data.d.ts.map +0 -1
- package/dist/commonjs/compat/should_wait_for_have_enough_data.js +0 -22
- package/dist/commonjs/config.d.ts +0 -21
- package/dist/commonjs/config.d.ts.map +0 -1
- package/dist/commonjs/config.js +0 -73
- package/dist/commonjs/core/adaptive/adaptive_representation_selector.d.ts +0 -294
- package/dist/commonjs/core/adaptive/adaptive_representation_selector.d.ts.map +0 -1
- package/dist/commonjs/core/adaptive/adaptive_representation_selector.js +0 -411
- package/dist/commonjs/core/adaptive/buffer_based_chooser.d.ts +0 -90
- package/dist/commonjs/core/adaptive/buffer_based_chooser.d.ts.map +0 -1
- package/dist/commonjs/core/adaptive/buffer_based_chooser.js +0 -202
- package/dist/commonjs/core/adaptive/guess_based_chooser.d.ts +0 -96
- package/dist/commonjs/core/adaptive/guess_based_chooser.d.ts.map +0 -1
- package/dist/commonjs/core/adaptive/guess_based_chooser.js +0 -272
- package/dist/commonjs/core/adaptive/index.d.ts +0 -20
- package/dist/commonjs/core/adaptive/index.d.ts.map +0 -1
- package/dist/commonjs/core/adaptive/index.js +0 -19
- package/dist/commonjs/core/adaptive/network_analyzer.d.ts +0 -74
- package/dist/commonjs/core/adaptive/network_analyzer.d.ts.map +0 -1
- package/dist/commonjs/core/adaptive/network_analyzer.js +0 -355
- package/dist/commonjs/core/adaptive/utils/bandwidth_estimator.d.ts +0 -48
- package/dist/commonjs/core/adaptive/utils/bandwidth_estimator.d.ts.map +0 -1
- package/dist/commonjs/core/adaptive/utils/bandwidth_estimator.js +0 -72
- package/dist/commonjs/core/adaptive/utils/ewma.d.ts +0 -40
- package/dist/commonjs/core/adaptive/utils/ewma.d.ts.map +0 -1
- package/dist/commonjs/core/adaptive/utils/ewma.js +0 -53
- package/dist/commonjs/core/adaptive/utils/filter_by_bitrate.d.ts +0 -26
- package/dist/commonjs/core/adaptive/utils/filter_by_bitrate.d.ts.map +0 -1
- package/dist/commonjs/core/adaptive/utils/filter_by_bitrate.js +0 -40
- package/dist/commonjs/core/adaptive/utils/filter_by_resolution.d.ts +0 -32
- package/dist/commonjs/core/adaptive/utils/filter_by_resolution.d.ts.map +0 -1
- package/dist/commonjs/core/adaptive/utils/filter_by_resolution.js +0 -51
- package/dist/commonjs/core/adaptive/utils/get_buffer_levels.d.ts +0 -25
- package/dist/commonjs/core/adaptive/utils/get_buffer_levels.d.ts.map +0 -1
- package/dist/commonjs/core/adaptive/utils/get_buffer_levels.js +0 -53
- package/dist/commonjs/core/adaptive/utils/last_estimate_storage.d.ts +0 -62
- package/dist/commonjs/core/adaptive/utils/last_estimate_storage.d.ts.map +0 -1
- package/dist/commonjs/core/adaptive/utils/last_estimate_storage.js +0 -39
- package/dist/commonjs/core/adaptive/utils/pending_requests_store.d.ts +0 -111
- package/dist/commonjs/core/adaptive/utils/pending_requests_store.d.ts.map +0 -1
- package/dist/commonjs/core/adaptive/utils/pending_requests_store.js +0 -79
- package/dist/commonjs/core/adaptive/utils/representation_score_calculator.d.ts +0 -105
- package/dist/commonjs/core/adaptive/utils/representation_score_calculator.d.ts.map +0 -1
- package/dist/commonjs/core/adaptive/utils/representation_score_calculator.js +0 -121
- package/dist/commonjs/core/adaptive/utils/select_optimal_representation.d.ts +0 -28
- package/dist/commonjs/core/adaptive/utils/select_optimal_representation.d.ts.map +0 -1
- package/dist/commonjs/core/adaptive/utils/select_optimal_representation.js +0 -39
- package/dist/commonjs/core/cmcd/cmcd_data_builder.d.ts +0 -133
- package/dist/commonjs/core/cmcd/cmcd_data_builder.d.ts.map +0 -1
- package/dist/commonjs/core/cmcd/cmcd_data_builder.js +0 -368
- package/dist/commonjs/core/cmcd/index.d.ts +0 -4
- package/dist/commonjs/core/cmcd/index.d.ts.map +0 -1
- package/dist/commonjs/core/cmcd/index.js +0 -4
- package/dist/commonjs/core/fetchers/cdn_prioritizer.d.ts +0 -108
- package/dist/commonjs/core/fetchers/cdn_prioritizer.d.ts.map +0 -1
- package/dist/commonjs/core/fetchers/cdn_prioritizer.js +0 -215
- package/dist/commonjs/core/fetchers/index.d.ts +0 -25
- package/dist/commonjs/core/fetchers/index.d.ts.map +0 -1
- package/dist/commonjs/core/fetchers/index.js +0 -26
- package/dist/commonjs/core/fetchers/manifest/index.d.ts +0 -20
- package/dist/commonjs/core/fetchers/manifest/index.d.ts.map +0 -1
- package/dist/commonjs/core/fetchers/manifest/index.js +0 -19
- package/dist/commonjs/core/fetchers/manifest/manifest_fetcher.d.ts +0 -236
- package/dist/commonjs/core/fetchers/manifest/manifest_fetcher.d.ts.map +0 -1
- package/dist/commonjs/core/fetchers/manifest/manifest_fetcher.js +0 -657
- package/dist/commonjs/core/fetchers/segment/index.d.ts +0 -22
- package/dist/commonjs/core/fetchers/segment/index.d.ts.map +0 -1
- package/dist/commonjs/core/fetchers/segment/index.js +0 -19
- package/dist/commonjs/core/fetchers/segment/initialization_segment_cache.d.ts +0 -43
- package/dist/commonjs/core/fetchers/segment/initialization_segment_cache.d.ts.map +0 -1
- package/dist/commonjs/core/fetchers/segment/initialization_segment_cache.js +0 -53
- package/dist/commonjs/core/fetchers/segment/prioritized_segment_fetcher.d.ts +0 -40
- package/dist/commonjs/core/fetchers/segment/prioritized_segment_fetcher.d.ts.map +0 -1
- package/dist/commonjs/core/fetchers/segment/prioritized_segment_fetcher.js +0 -70
- package/dist/commonjs/core/fetchers/segment/segment_fetcher.d.ts +0 -200
- package/dist/commonjs/core/fetchers/segment/segment_fetcher.d.ts.map +0 -1
- package/dist/commonjs/core/fetchers/segment/segment_fetcher.js +0 -330
- package/dist/commonjs/core/fetchers/segment/segment_queue.d.ts +0 -230
- package/dist/commonjs/core/fetchers/segment/segment_queue.d.ts.map +0 -1
- package/dist/commonjs/core/fetchers/segment/segment_queue.js +0 -445
- package/dist/commonjs/core/fetchers/segment/segment_queue_creator.d.ts +0 -98
- package/dist/commonjs/core/fetchers/segment/segment_queue_creator.d.ts.map +0 -1
- package/dist/commonjs/core/fetchers/segment/segment_queue_creator.js +0 -77
- package/dist/commonjs/core/fetchers/segment/task_prioritizer.d.ts +0 -155
- package/dist/commonjs/core/fetchers/segment/task_prioritizer.d.ts.map +0 -1
- package/dist/commonjs/core/fetchers/segment/task_prioritizer.js +0 -381
- package/dist/commonjs/core/fetchers/thumbnails/index.d.ts +0 -5
- package/dist/commonjs/core/fetchers/thumbnails/index.d.ts.map +0 -1
- package/dist/commonjs/core/fetchers/thumbnails/index.js +0 -4
- package/dist/commonjs/core/fetchers/thumbnails/thumbnail_fetcher.d.ts +0 -79
- package/dist/commonjs/core/fetchers/thumbnails/thumbnail_fetcher.d.ts.map +0 -1
- package/dist/commonjs/core/fetchers/thumbnails/thumbnail_fetcher.js +0 -259
- package/dist/commonjs/core/fetchers/utils/error_selector.d.ts +0 -23
- package/dist/commonjs/core/fetchers/utils/error_selector.d.ts.map +0 -1
- package/dist/commonjs/core/fetchers/utils/error_selector.js +0 -34
- package/dist/commonjs/core/fetchers/utils/schedule_request.d.ts +0 -99
- package/dist/commonjs/core/fetchers/utils/schedule_request.d.ts.map +0 -1
- package/dist/commonjs/core/fetchers/utils/schedule_request.js +0 -391
- package/dist/commonjs/core/main/common/FreezeResolver.d.ts +0 -176
- package/dist/commonjs/core/main/common/FreezeResolver.d.ts.map +0 -1
- package/dist/commonjs/core/main/common/FreezeResolver.js +0 -455
- package/dist/commonjs/core/main/common/content_time_boundaries_observer.d.ts +0 -192
- package/dist/commonjs/core/main/common/content_time_boundaries_observer.d.ts.map +0 -1
- package/dist/commonjs/core/main/common/content_time_boundaries_observer.js +0 -558
- package/dist/commonjs/core/main/common/create_content_time_boundaries_observer.d.ts +0 -28
- package/dist/commonjs/core/main/common/create_content_time_boundaries_observer.d.ts.map +0 -1
- package/dist/commonjs/core/main/common/create_content_time_boundaries_observer.js +0 -48
- package/dist/commonjs/core/main/common/get_buffered_data_per_media_buffer.d.ts +0 -15
- package/dist/commonjs/core/main/common/get_buffered_data_per_media_buffer.d.ts.map +0 -1
- package/dist/commonjs/core/main/common/get_buffered_data_per_media_buffer.js +0 -37
- package/dist/commonjs/core/main/common/get_thumbnail_data.d.ts +0 -13
- package/dist/commonjs/core/main/common/get_thumbnail_data.d.ts.map +0 -1
- package/dist/commonjs/core/main/common/get_thumbnail_data.js +0 -71
- package/dist/commonjs/core/main/common/synchronize_sinks_on_observation.d.ts +0 -11
- package/dist/commonjs/core/main/common/synchronize_sinks_on_observation.d.ts.map +0 -1
- package/dist/commonjs/core/main/common/synchronize_sinks_on_observation.js +0 -20
- package/dist/commonjs/core/main/worker/content_preparer.d.ts +0 -176
- package/dist/commonjs/core/main/worker/content_preparer.d.ts.map +0 -1
- package/dist/commonjs/core/main/worker/content_preparer.js +0 -416
- package/dist/commonjs/core/main/worker/globals.d.ts +0 -14
- package/dist/commonjs/core/main/worker/globals.d.ts.map +0 -1
- package/dist/commonjs/core/main/worker/globals.js +0 -26
- package/dist/commonjs/core/main/worker/index.d.ts +0 -3
- package/dist/commonjs/core/main/worker/index.d.ts.map +0 -1
- package/dist/commonjs/core/main/worker/index.js +0 -4
- package/dist/commonjs/core/main/worker/send_message.d.ts +0 -4
- package/dist/commonjs/core/main/worker/send_message.d.ts.map +0 -1
- package/dist/commonjs/core/main/worker/send_message.js +0 -23
- package/dist/commonjs/core/main/worker/track_choice_setter.d.ts +0 -20
- package/dist/commonjs/core/main/worker/track_choice_setter.d.ts.map +0 -1
- package/dist/commonjs/core/main/worker/track_choice_setter.js +0 -152
- package/dist/commonjs/core/main/worker/worker_main.d.ts +0 -2
- package/dist/commonjs/core/main/worker/worker_main.d.ts.map +0 -1
- package/dist/commonjs/core/main/worker/worker_main.js +0 -946
- package/dist/commonjs/core/main/worker/worker_text_displayer_interface.d.ts +0 -65
- package/dist/commonjs/core/main/worker/worker_text_displayer_interface.d.ts.map +0 -1
- package/dist/commonjs/core/main/worker/worker_text_displayer_interface.js +0 -126
- package/dist/commonjs/core/segment_sinks/garbage_collector.d.ts +0 -44
- package/dist/commonjs/core/segment_sinks/garbage_collector.d.ts.map +0 -1
- package/dist/commonjs/core/segment_sinks/garbage_collector.js +0 -253
- package/dist/commonjs/core/segment_sinks/implementations/audio_video/audio_video_segment_sink.d.ts +0 -136
- package/dist/commonjs/core/segment_sinks/implementations/audio_video/audio_video_segment_sink.d.ts.map +0 -1
- package/dist/commonjs/core/segment_sinks/implementations/audio_video/audio_video_segment_sink.js +0 -362
- package/dist/commonjs/core/segment_sinks/implementations/audio_video/index.d.ts +0 -18
- package/dist/commonjs/core/segment_sinks/implementations/audio_video/index.d.ts.map +0 -1
- package/dist/commonjs/core/segment_sinks/implementations/audio_video/index.js +0 -19
- package/dist/commonjs/core/segment_sinks/implementations/index.d.ts +0 -21
- package/dist/commonjs/core/segment_sinks/implementations/index.d.ts.map +0 -1
- package/dist/commonjs/core/segment_sinks/implementations/index.js +0 -35
- package/dist/commonjs/core/segment_sinks/implementations/text/index.d.ts +0 -5
- package/dist/commonjs/core/segment_sinks/implementations/text/index.d.ts.map +0 -1
- package/dist/commonjs/core/segment_sinks/implementations/text/index.js +0 -4
- package/dist/commonjs/core/segment_sinks/implementations/text/text_segment_sink.d.ts +0 -101
- package/dist/commonjs/core/segment_sinks/implementations/text/text_segment_sink.d.ts.map +0 -1
- package/dist/commonjs/core/segment_sinks/implementations/text/text_segment_sink.js +0 -291
- package/dist/commonjs/core/segment_sinks/implementations/types.d.ts +0 -308
- package/dist/commonjs/core/segment_sinks/implementations/types.d.ts.map +0 -1
- package/dist/commonjs/core/segment_sinks/implementations/types.js +0 -117
- package/dist/commonjs/core/segment_sinks/implementations/utils/manual_time_ranges.d.ts +0 -30
- package/dist/commonjs/core/segment_sinks/implementations/utils/manual_time_ranges.d.ts.map +0 -1
- package/dist/commonjs/core/segment_sinks/implementations/utils/manual_time_ranges.js +0 -67
- package/dist/commonjs/core/segment_sinks/index.d.ts +0 -25
- package/dist/commonjs/core/segment_sinks/index.d.ts.map +0 -1
- package/dist/commonjs/core/segment_sinks/index.js +0 -28
- package/dist/commonjs/core/segment_sinks/inventory/buffered_history.d.ts +0 -90
- package/dist/commonjs/core/segment_sinks/inventory/buffered_history.d.ts.map +0 -1
- package/dist/commonjs/core/segment_sinks/inventory/buffered_history.js +0 -114
- package/dist/commonjs/core/segment_sinks/inventory/index.d.ts +0 -24
- package/dist/commonjs/core/segment_sinks/inventory/index.d.ts.map +0 -1
- package/dist/commonjs/core/segment_sinks/inventory/index.js +0 -23
- package/dist/commonjs/core/segment_sinks/inventory/segment_inventory.d.ts +0 -240
- package/dist/commonjs/core/segment_sinks/inventory/segment_inventory.d.ts.map +0 -1
- package/dist/commonjs/core/segment_sinks/inventory/segment_inventory.js +0 -1124
- package/dist/commonjs/core/segment_sinks/inventory/types.d.ts +0 -33
- package/dist/commonjs/core/segment_sinks/inventory/types.d.ts.map +0 -1
- package/dist/commonjs/core/segment_sinks/inventory/types.js +0 -17
- package/dist/commonjs/core/segment_sinks/inventory/utils.d.ts +0 -34
- package/dist/commonjs/core/segment_sinks/inventory/utils.d.ts.map +0 -1
- package/dist/commonjs/core/segment_sinks/inventory/utils.js +0 -74
- package/dist/commonjs/core/segment_sinks/segment_sinks_store.d.ts +0 -198
- package/dist/commonjs/core/segment_sinks/segment_sinks_store.d.ts.map +0 -1
- package/dist/commonjs/core/segment_sinks/segment_sinks_store.js +0 -363
- package/dist/commonjs/core/stream/adaptation/adaptation_stream.d.ts +0 -34
- package/dist/commonjs/core/stream/adaptation/adaptation_stream.d.ts.map +0 -1
- package/dist/commonjs/core/stream/adaptation/adaptation_stream.js +0 -563
- package/dist/commonjs/core/stream/adaptation/get_representations_switch_strategy.d.ts +0 -54
- package/dist/commonjs/core/stream/adaptation/get_representations_switch_strategy.d.ts.map +0 -1
- package/dist/commonjs/core/stream/adaptation/get_representations_switch_strategy.js +0 -147
- package/dist/commonjs/core/stream/adaptation/index.d.ts +0 -19
- package/dist/commonjs/core/stream/adaptation/index.d.ts.map +0 -1
- package/dist/commonjs/core/stream/adaptation/index.js +0 -19
- package/dist/commonjs/core/stream/adaptation/types.d.ts +0 -200
- package/dist/commonjs/core/stream/adaptation/types.d.ts.map +0 -1
- package/dist/commonjs/core/stream/adaptation/types.js +0 -2
- package/dist/commonjs/core/stream/index.d.ts +0 -23
- package/dist/commonjs/core/stream/index.d.ts.map +0 -1
- package/dist/commonjs/core/stream/index.js +0 -19
- package/dist/commonjs/core/stream/orchestrator/get_time_ranges_for_content.d.ts +0 -31
- package/dist/commonjs/core/stream/orchestrator/get_time_ranges_for_content.d.ts.map +0 -1
- package/dist/commonjs/core/stream/orchestrator/get_time_ranges_for_content.js +0 -119
- package/dist/commonjs/core/stream/orchestrator/index.d.ts +0 -20
- package/dist/commonjs/core/stream/orchestrator/index.d.ts.map +0 -1
- package/dist/commonjs/core/stream/orchestrator/index.js +0 -19
- package/dist/commonjs/core/stream/orchestrator/stream_orchestrator.d.ts +0 -176
- package/dist/commonjs/core/stream/orchestrator/stream_orchestrator.d.ts.map +0 -1
- package/dist/commonjs/core/stream/orchestrator/stream_orchestrator.js +0 -676
- package/dist/commonjs/core/stream/period/index.d.ts +0 -19
- package/dist/commonjs/core/stream/period/index.d.ts.map +0 -1
- package/dist/commonjs/core/stream/period/index.js +0 -19
- package/dist/commonjs/core/stream/period/period_stream.d.ts +0 -50
- package/dist/commonjs/core/stream/period/period_stream.d.ts.map +0 -1
- package/dist/commonjs/core/stream/period/period_stream.js +0 -545
- package/dist/commonjs/core/stream/period/types.d.ts +0 -120
- package/dist/commonjs/core/stream/period/types.d.ts.map +0 -1
- package/dist/commonjs/core/stream/period/types.js +0 -2
- package/dist/commonjs/core/stream/period/utils/get_adaptation_switch_strategy.d.ts +0 -68
- package/dist/commonjs/core/stream/period/utils/get_adaptation_switch_strategy.d.ts.map +0 -1
- package/dist/commonjs/core/stream/period/utils/get_adaptation_switch_strategy.js +0 -167
- package/dist/commonjs/core/stream/representation/index.d.ts +0 -19
- package/dist/commonjs/core/stream/representation/index.d.ts.map +0 -1
- package/dist/commonjs/core/stream/representation/index.js +0 -19
- package/dist/commonjs/core/stream/representation/representation_stream.d.ts +0 -54
- package/dist/commonjs/core/stream/representation/representation_stream.d.ts.map +0 -1
- package/dist/commonjs/core/stream/representation/representation_stream.js +0 -421
- package/dist/commonjs/core/stream/representation/types.d.ts +0 -314
- package/dist/commonjs/core/stream/representation/types.d.ts.map +0 -1
- package/dist/commonjs/core/stream/representation/types.js +0 -2
- package/dist/commonjs/core/stream/representation/utils/append_segment_to_buffer.d.ts +0 -36
- package/dist/commonjs/core/stream/representation/utils/append_segment_to_buffer.d.ts.map +0 -1
- package/dist/commonjs/core/stream/representation/utils/append_segment_to_buffer.js +0 -137
- package/dist/commonjs/core/stream/representation/utils/check_for_discontinuity.d.ts +0 -54
- package/dist/commonjs/core/stream/representation/utils/check_for_discontinuity.d.ts.map +0 -1
- package/dist/commonjs/core/stream/representation/utils/check_for_discontinuity.js +0 -248
- package/dist/commonjs/core/stream/representation/utils/get_buffer_status.d.ts +0 -73
- package/dist/commonjs/core/stream/representation/utils/get_buffer_status.d.ts.map +0 -1
- package/dist/commonjs/core/stream/representation/utils/get_buffer_status.js +0 -228
- package/dist/commonjs/core/stream/representation/utils/get_needed_segments.d.ts +0 -92
- package/dist/commonjs/core/stream/representation/utils/get_needed_segments.d.ts.map +0 -1
- package/dist/commonjs/core/stream/representation/utils/get_needed_segments.js +0 -480
- package/dist/commonjs/core/stream/representation/utils/get_segment_priority.d.ts +0 -29
- package/dist/commonjs/core/stream/representation/utils/get_segment_priority.d.ts.map +0 -1
- package/dist/commonjs/core/stream/representation/utils/get_segment_priority.js +0 -41
- package/dist/commonjs/core/stream/representation/utils/push_init_segment.d.ts +0 -42
- package/dist/commonjs/core/stream/representation/utils/push_init_segment.d.ts.map +0 -1
- package/dist/commonjs/core/stream/representation/utils/push_init_segment.js +0 -86
- package/dist/commonjs/core/stream/representation/utils/push_media_segment.d.ts +0 -43
- package/dist/commonjs/core/stream/representation/utils/push_media_segment.d.ts.map +0 -1
- package/dist/commonjs/core/stream/representation/utils/push_media_segment.js +0 -110
- package/dist/commonjs/core/types.d.ts +0 -9
- package/dist/commonjs/core/types.d.ts.map +0 -1
- package/dist/commonjs/core/types.js +0 -2
- package/dist/commonjs/default_config.d.ts +0 -1200
- package/dist/commonjs/default_config.d.ts.map +0 -1
- package/dist/commonjs/default_config.js +0 -1236
- package/dist/commonjs/errors/custom_loader_error.d.ts +0 -36
- package/dist/commonjs/errors/custom_loader_error.d.ts.map +0 -1
- package/dist/commonjs/errors/custom_loader_error.js +0 -60
- package/dist/commonjs/errors/encrypted_media_error.d.ts +0 -72
- package/dist/commonjs/errors/encrypted_media_error.d.ts.map +0 -1
- package/dist/commonjs/errors/encrypted_media_error.js +0 -76
- package/dist/commonjs/errors/error_codes.d.ts +0 -33
- package/dist/commonjs/errors/error_codes.d.ts.map +0 -1
- package/dist/commonjs/errors/error_codes.js +0 -72
- package/dist/commonjs/errors/error_message.d.ts +0 -23
- package/dist/commonjs/errors/error_message.d.ts.map +0 -1
- package/dist/commonjs/errors/error_message.js +0 -27
- package/dist/commonjs/errors/format_error.d.ts +0 -21
- package/dist/commonjs/errors/format_error.d.ts.map +0 -1
- package/dist/commonjs/errors/format_error.js +0 -33
- package/dist/commonjs/errors/index.d.ts +0 -32
- package/dist/commonjs/errors/index.d.ts.map +0 -1
- package/dist/commonjs/errors/index.js +0 -38
- package/dist/commonjs/errors/is_known_error.d.ts +0 -23
- package/dist/commonjs/errors/is_known_error.d.ts.map +0 -1
- package/dist/commonjs/errors/is_known_error.js +0 -35
- package/dist/commonjs/errors/media_error.d.ts +0 -60
- package/dist/commonjs/errors/media_error.d.ts.map +0 -1
- package/dist/commonjs/errors/media_error.js +0 -74
- package/dist/commonjs/errors/network_error.d.ts +0 -59
- package/dist/commonjs/errors/network_error.d.ts.map +0 -1
- package/dist/commonjs/errors/network_error.js +0 -86
- package/dist/commonjs/errors/other_error.d.ts +0 -47
- package/dist/commonjs/errors/other_error.d.ts.map +0 -1
- package/dist/commonjs/errors/other_error.js +0 -72
- package/dist/commonjs/errors/source_buffer_error.d.ts +0 -40
- package/dist/commonjs/errors/source_buffer_error.d.ts.map +0 -1
- package/dist/commonjs/errors/source_buffer_error.js +0 -63
- package/dist/commonjs/errors/worker_initialization_error.d.ts +0 -19
- package/dist/commonjs/errors/worker_initialization_error.d.ts.map +0 -1
- package/dist/commonjs/errors/worker_initialization_error.js +0 -42
- package/dist/commonjs/experimental/features/index.d.ts +0 -19
- package/dist/commonjs/experimental/features/index.d.ts.map +0 -1
- package/dist/commonjs/experimental/features/index.js +0 -24
- package/dist/commonjs/experimental/features/local.d.ts +0 -20
- package/dist/commonjs/experimental/features/local.d.ts.map +0 -1
- package/dist/commonjs/experimental/features/local.js +0 -25
- package/dist/commonjs/experimental/features/metaplaylist.d.ts +0 -20
- package/dist/commonjs/experimental/features/metaplaylist.d.ts.map +0 -1
- package/dist/commonjs/experimental/features/metaplaylist.js +0 -25
- package/dist/commonjs/experimental/features/multi_thread.d.ts +0 -9
- package/dist/commonjs/experimental/features/multi_thread.d.ts.map +0 -1
- package/dist/commonjs/experimental/features/multi_thread.js +0 -12
- package/dist/commonjs/experimental/index.d.ts +0 -3
- package/dist/commonjs/experimental/index.d.ts.map +0 -1
- package/dist/commonjs/experimental/index.js +0 -5
- package/dist/commonjs/experimental/tools/DummyMediaElement/eme.d.ts +0 -225
- package/dist/commonjs/experimental/tools/DummyMediaElement/eme.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/DummyMediaElement/eme.js +0 -879
- package/dist/commonjs/experimental/tools/DummyMediaElement/html5.d.ts +0 -376
- package/dist/commonjs/experimental/tools/DummyMediaElement/html5.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/DummyMediaElement/html5.js +0 -970
- package/dist/commonjs/experimental/tools/DummyMediaElement/index.d.ts +0 -3
- package/dist/commonjs/experimental/tools/DummyMediaElement/index.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/DummyMediaElement/index.js +0 -4
- package/dist/commonjs/experimental/tools/DummyMediaElement/mse.d.ts +0 -217
- package/dist/commonjs/experimental/tools/DummyMediaElement/mse.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/DummyMediaElement/mse.js +0 -702
- package/dist/commonjs/experimental/tools/DummyMediaElement/utils.d.ts +0 -33
- package/dist/commonjs/experimental/tools/DummyMediaElement/utils.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/DummyMediaElement/utils.js +0 -510
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/features/dash.d.ts +0 -18
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/features/dash.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/features/dash.js +0 -23
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/features/metaplaylist.d.ts +0 -18
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/features/metaplaylist.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/features/metaplaylist.js +0 -23
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/index.d.ts +0 -19
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/index.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/index.js +0 -22
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/load_and_push_segment.d.ts +0 -27
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/load_and_push_segment.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/load_and_push_segment.js +0 -63
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/prepare_source_buffer.d.ts +0 -27
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/prepare_source_buffer.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/prepare_source_buffer.js +0 -74
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/remove_buffer_around_time.d.ts +0 -30
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/remove_buffer_around_time.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/remove_buffer_around_time.js +0 -43
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/types.d.ts +0 -26
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/types.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/types.js +0 -17
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/video_thumbnail_loader.d.ts +0 -55
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/video_thumbnail_loader.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/video_thumbnail_loader.js +0 -385
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/video_thumbnail_loader_error.d.ts +0 -25
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/video_thumbnail_loader_error.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/VideoThumbnailLoader/video_thumbnail_loader_error.js +0 -50
- package/dist/commonjs/experimental/tools/createMetaplaylist/get_duration_from_manifest.d.ts +0 -24
- package/dist/commonjs/experimental/tools/createMetaplaylist/get_duration_from_manifest.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/createMetaplaylist/get_duration_from_manifest.js +0 -163
- package/dist/commonjs/experimental/tools/createMetaplaylist/index.d.ts +0 -31
- package/dist/commonjs/experimental/tools/createMetaplaylist/index.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/createMetaplaylist/index.js +0 -53
- package/dist/commonjs/experimental/tools/index.d.ts +0 -20
- package/dist/commonjs/experimental/tools/index.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/index.js +0 -24
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/api.d.ts +0 -73
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/api.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/api.js +0 -286
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/index.d.ts +0 -19
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/index.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/index.js +0 -19
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/log.d.ts +0 -19
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/log.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/log.js +0 -20
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/probers/HDCPPolicy.d.ts +0 -21
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/probers/HDCPPolicy.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/probers/HDCPPolicy.js +0 -112
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/probers/decodingInfo.d.ts +0 -22
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/probers/decodingInfo.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/probers/decodingInfo.js +0 -117
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/probers/defaultCodecsFinder.d.ts +0 -30
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/probers/defaultCodecsFinder.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/probers/defaultCodecsFinder.js +0 -97
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/probers/isTypeSupportedWithFeatures.d.ts +0 -24
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/probers/isTypeSupportedWithFeatures.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/probers/isTypeSupportedWithFeatures.js +0 -184
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/probers/mediaContentType.d.ts +0 -22
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/probers/mediaContentType.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/probers/mediaContentType.js +0 -52
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/probers/mediaDisplayInfos.d.ts +0 -22
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/probers/mediaDisplayInfos.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/probers/mediaDisplayInfos.js +0 -39
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/types.d.ts +0 -56
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/types.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/types.js +0 -17
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/utils.d.ts +0 -35
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/utils.d.ts.map +0 -1
- package/dist/commonjs/experimental/tools/mediaCapabilitiesProber/utils.js +0 -104
- package/dist/commonjs/features/add_features.d.ts +0 -21
- package/dist/commonjs/features/add_features.d.ts.map +0 -1
- package/dist/commonjs/features/add_features.js +0 -59
- package/dist/commonjs/features/features_object.d.ts +0 -23
- package/dist/commonjs/features/features_object.d.ts.map +0 -1
- package/dist/commonjs/features/features_object.js +0 -35
- package/dist/commonjs/features/index.d.ts +0 -36
- package/dist/commonjs/features/index.d.ts.map +0 -1
- package/dist/commonjs/features/index.js +0 -36
- package/dist/commonjs/features/list/dash.d.ts +0 -24
- package/dist/commonjs/features/list/dash.d.ts.map +0 -1
- package/dist/commonjs/features/list/dash.js +0 -33
- package/dist/commonjs/features/list/dash_wasm.d.ts +0 -24
- package/dist/commonjs/features/list/dash_wasm.d.ts.map +0 -1
- package/dist/commonjs/features/list/dash_wasm.js +0 -36
- package/dist/commonjs/features/list/debug_element.d.ts +0 -9
- package/dist/commonjs/features/list/debug_element.d.ts.map +0 -1
- package/dist/commonjs/features/list/debug_element.js +0 -12
- package/dist/commonjs/features/list/directfile.d.ts +0 -25
- package/dist/commonjs/features/list/directfile.d.ts.map +0 -1
- package/dist/commonjs/features/list/directfile.js +0 -29
- package/dist/commonjs/features/list/eme.d.ts +0 -24
- package/dist/commonjs/features/list/eme.d.ts.map +0 -1
- package/dist/commonjs/features/list/eme.js +0 -27
- package/dist/commonjs/features/list/html_sami_parser.d.ts +0 -24
- package/dist/commonjs/features/list/html_sami_parser.d.ts.map +0 -1
- package/dist/commonjs/features/list/html_sami_parser.js +0 -29
- package/dist/commonjs/features/list/html_srt_parser.d.ts +0 -24
- package/dist/commonjs/features/list/html_srt_parser.d.ts.map +0 -1
- package/dist/commonjs/features/list/html_srt_parser.js +0 -29
- package/dist/commonjs/features/list/html_text_buffer.d.ts +0 -24
- package/dist/commonjs/features/list/html_text_buffer.d.ts.map +0 -1
- package/dist/commonjs/features/list/html_text_buffer.js +0 -27
- package/dist/commonjs/features/list/html_ttml_parser.d.ts +0 -24
- package/dist/commonjs/features/list/html_ttml_parser.d.ts.map +0 -1
- package/dist/commonjs/features/list/html_ttml_parser.js +0 -29
- package/dist/commonjs/features/list/html_vtt_parser.d.ts +0 -24
- package/dist/commonjs/features/list/html_vtt_parser.d.ts.map +0 -1
- package/dist/commonjs/features/list/html_vtt_parser.js +0 -30
- package/dist/commonjs/features/list/index.d.ts +0 -33
- package/dist/commonjs/features/list/index.d.ts.map +0 -1
- package/dist/commonjs/features/list/index.js +0 -52
- package/dist/commonjs/features/list/media_source_main.d.ts +0 -9
- package/dist/commonjs/features/list/media_source_main.d.ts.map +0 -1
- package/dist/commonjs/features/list/media_source_main.js +0 -12
- package/dist/commonjs/features/list/native_sami_parser.d.ts +0 -24
- package/dist/commonjs/features/list/native_sami_parser.d.ts.map +0 -1
- package/dist/commonjs/features/list/native_sami_parser.js +0 -29
- package/dist/commonjs/features/list/native_srt_parser.d.ts +0 -24
- package/dist/commonjs/features/list/native_srt_parser.d.ts.map +0 -1
- package/dist/commonjs/features/list/native_srt_parser.js +0 -29
- package/dist/commonjs/features/list/native_text_buffer.d.ts +0 -24
- package/dist/commonjs/features/list/native_text_buffer.d.ts.map +0 -1
- package/dist/commonjs/features/list/native_text_buffer.js +0 -27
- package/dist/commonjs/features/list/native_ttml_parser.d.ts +0 -24
- package/dist/commonjs/features/list/native_ttml_parser.d.ts.map +0 -1
- package/dist/commonjs/features/list/native_ttml_parser.js +0 -29
- package/dist/commonjs/features/list/native_vtt_parser.d.ts +0 -24
- package/dist/commonjs/features/list/native_vtt_parser.d.ts.map +0 -1
- package/dist/commonjs/features/list/native_vtt_parser.js +0 -30
- package/dist/commonjs/features/list/smooth.d.ts +0 -24
- package/dist/commonjs/features/list/smooth.d.ts.map +0 -1
- package/dist/commonjs/features/list/smooth.js +0 -31
- package/dist/commonjs/features/types.d.ts +0 -146
- package/dist/commonjs/features/types.d.ts.map +0 -1
- package/dist/commonjs/features/types.js +0 -17
- package/dist/commonjs/index.d.ts +0 -18
- package/dist/commonjs/index.d.ts.map +0 -1
- package/dist/commonjs/index.js +0 -44
- package/dist/commonjs/log.d.ts +0 -19
- package/dist/commonjs/log.d.ts.map +0 -1
- package/dist/commonjs/log.js +0 -21
- package/dist/commonjs/main_thread/api/debug/buffer_graph.d.ts +0 -29
- package/dist/commonjs/main_thread/api/debug/buffer_graph.d.ts.map +0 -1
- package/dist/commonjs/main_thread/api/debug/buffer_graph.js +0 -213
- package/dist/commonjs/main_thread/api/debug/buffer_size_graph.d.ts +0 -11
- package/dist/commonjs/main_thread/api/debug/buffer_size_graph.d.ts.map +0 -1
- package/dist/commonjs/main_thread/api/debug/buffer_size_graph.js +0 -131
- package/dist/commonjs/main_thread/api/debug/constants.d.ts +0 -3
- package/dist/commonjs/main_thread/api/debug/constants.d.ts.map +0 -1
- package/dist/commonjs/main_thread/api/debug/constants.js +0 -5
- package/dist/commonjs/main_thread/api/debug/index.d.ts +0 -3
- package/dist/commonjs/main_thread/api/debug/index.d.ts.map +0 -1
- package/dist/commonjs/main_thread/api/debug/index.js +0 -4
- package/dist/commonjs/main_thread/api/debug/modules/general_info.d.ts +0 -4
- package/dist/commonjs/main_thread/api/debug/modules/general_info.d.ts.map +0 -1
- package/dist/commonjs/main_thread/api/debug/modules/general_info.js +0 -236
- package/dist/commonjs/main_thread/api/debug/modules/segment_buffer_content.d.ts +0 -5
- package/dist/commonjs/main_thread/api/debug/modules/segment_buffer_content.d.ts.map +0 -1
- package/dist/commonjs/main_thread/api/debug/modules/segment_buffer_content.js +0 -194
- package/dist/commonjs/main_thread/api/debug/modules/segment_buffer_size.d.ts +0 -4
- package/dist/commonjs/main_thread/api/debug/modules/segment_buffer_size.d.ts.map +0 -1
- package/dist/commonjs/main_thread/api/debug/modules/segment_buffer_size.js +0 -38
- package/dist/commonjs/main_thread/api/debug/render.d.ts +0 -4
- package/dist/commonjs/main_thread/api/debug/render.d.ts.map +0 -1
- package/dist/commonjs/main_thread/api/debug/render.js +0 -35
- package/dist/commonjs/main_thread/api/debug/utils.d.ts +0 -40
- package/dist/commonjs/main_thread/api/debug/utils.d.ts.map +0 -1
- package/dist/commonjs/main_thread/api/debug/utils.js +0 -85
- package/dist/commonjs/main_thread/api/index.d.ts +0 -18
- package/dist/commonjs/main_thread/api/index.d.ts.map +0 -1
- package/dist/commonjs/main_thread/api/index.js +0 -19
- package/dist/commonjs/main_thread/api/option_utils.d.ts +0 -162
- package/dist/commonjs/main_thread/api/option_utils.d.ts.map +0 -1
- package/dist/commonjs/main_thread/api/option_utils.js +0 -360
- package/dist/commonjs/main_thread/api/public_api.d.ts +0 -995
- package/dist/commonjs/main_thread/api/public_api.d.ts.map +0 -1
- package/dist/commonjs/main_thread/api/public_api.js +0 -2908
- package/dist/commonjs/main_thread/api/utils.d.ts +0 -67
- package/dist/commonjs/main_thread/api/utils.d.ts.map +0 -1
- package/dist/commonjs/main_thread/api/utils.js +0 -186
- package/dist/commonjs/main_thread/decrypt/clear_on_stop.d.ts +0 -24
- package/dist/commonjs/main_thread/decrypt/clear_on_stop.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/clear_on_stop.js +0 -91
- package/dist/commonjs/main_thread/decrypt/content_decryptor.d.ts +0 -237
- package/dist/commonjs/main_thread/decrypt/content_decryptor.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/content_decryptor.js +0 -1169
- package/dist/commonjs/main_thread/decrypt/create_or_load_session.d.ts +0 -65
- package/dist/commonjs/main_thread/decrypt/create_or_load_session.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/create_or_load_session.js +0 -140
- package/dist/commonjs/main_thread/decrypt/create_session.d.ts +0 -55
- package/dist/commonjs/main_thread/decrypt/create_session.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/create_session.js +0 -217
- package/dist/commonjs/main_thread/decrypt/dispose_decryption_resources.d.ts +0 -23
- package/dist/commonjs/main_thread/decrypt/dispose_decryption_resources.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/dispose_decryption_resources.js +0 -67
- package/dist/commonjs/main_thread/decrypt/find_key_system.d.ts +0 -86
- package/dist/commonjs/main_thread/decrypt/find_key_system.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/find_key_system.js +0 -594
- package/dist/commonjs/main_thread/decrypt/get_key_system_configuration.d.ts +0 -24
- package/dist/commonjs/main_thread/decrypt/get_key_system_configuration.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/get_key_system_configuration.js +0 -35
- package/dist/commonjs/main_thread/decrypt/get_media_keys.d.ts +0 -55
- package/dist/commonjs/main_thread/decrypt/get_media_keys.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/get_media_keys.js +0 -178
- package/dist/commonjs/main_thread/decrypt/index.d.ts +0 -27
- package/dist/commonjs/main_thread/decrypt/index.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/index.js +0 -45
- package/dist/commonjs/main_thread/decrypt/init_media_keys.d.ts +0 -30
- package/dist/commonjs/main_thread/decrypt/init_media_keys.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/init_media_keys.js +0 -88
- package/dist/commonjs/main_thread/decrypt/session_events_listener.d.ts +0 -77
- package/dist/commonjs/main_thread/decrypt/session_events_listener.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/session_events_listener.js +0 -364
- package/dist/commonjs/main_thread/decrypt/set_server_certificate.d.ts +0 -58
- package/dist/commonjs/main_thread/decrypt/set_server_certificate.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/set_server_certificate.js +0 -158
- package/dist/commonjs/main_thread/decrypt/types.d.ts +0 -380
- package/dist/commonjs/main_thread/decrypt/types.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/types.js +0 -58
- package/dist/commonjs/main_thread/decrypt/utils/are_init_values_compatible.d.ts +0 -35
- package/dist/commonjs/main_thread/decrypt/utils/are_init_values_compatible.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/utils/are_init_values_compatible.js +0 -144
- package/dist/commonjs/main_thread/decrypt/utils/check_key_statuses.d.ts +0 -54
- package/dist/commonjs/main_thread/decrypt/utils/check_key_statuses.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/utils/check_key_statuses.js +0 -228
- package/dist/commonjs/main_thread/decrypt/utils/clean_old_loaded_sessions.d.ts +0 -27
- package/dist/commonjs/main_thread/decrypt/utils/clean_old_loaded_sessions.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/utils/clean_old_loaded_sessions.js +0 -92
- package/dist/commonjs/main_thread/decrypt/utils/clean_old_stored_persistent_info.d.ts +0 -33
- package/dist/commonjs/main_thread/decrypt/utils/clean_old_stored_persistent_info.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/utils/clean_old_stored_persistent_info.js +0 -46
- package/dist/commonjs/main_thread/decrypt/utils/get_drm_system_id.d.ts +0 -21
- package/dist/commonjs/main_thread/decrypt/utils/get_drm_system_id.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/utils/get_drm_system_id.js +0 -40
- package/dist/commonjs/main_thread/decrypt/utils/init_data_values_container.d.ts +0 -70
- package/dist/commonjs/main_thread/decrypt/utils/init_data_values_container.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/utils/init_data_values_container.js +0 -137
- package/dist/commonjs/main_thread/decrypt/utils/is_compatible_codec_supported.d.ts +0 -14
- package/dist/commonjs/main_thread/decrypt/utils/is_compatible_codec_supported.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/utils/is_compatible_codec_supported.js +0 -53
- package/dist/commonjs/main_thread/decrypt/utils/is_session_usable.d.ts +0 -25
- package/dist/commonjs/main_thread/decrypt/utils/is_session_usable.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/utils/is_session_usable.js +0 -57
- package/dist/commonjs/main_thread/decrypt/utils/key_id_comparison.d.ts +0 -32
- package/dist/commonjs/main_thread/decrypt/utils/key_id_comparison.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/utils/key_id_comparison.js +0 -95
- package/dist/commonjs/main_thread/decrypt/utils/key_session_record.d.ts +0 -105
- package/dist/commonjs/main_thread/decrypt/utils/key_session_record.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/utils/key_session_record.js +0 -189
- package/dist/commonjs/main_thread/decrypt/utils/loaded_sessions_store.d.ts +0 -214
- package/dist/commonjs/main_thread/decrypt/utils/loaded_sessions_store.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/utils/loaded_sessions_store.js +0 -535
- package/dist/commonjs/main_thread/decrypt/utils/media_keys_attacher.d.ts +0 -85
- package/dist/commonjs/main_thread/decrypt/utils/media_keys_attacher.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/utils/media_keys_attacher.js +0 -286
- package/dist/commonjs/main_thread/decrypt/utils/persistent_sessions_store.d.ts +0 -93
- package/dist/commonjs/main_thread/decrypt/utils/persistent_sessions_store.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/utils/persistent_sessions_store.js +0 -404
- package/dist/commonjs/main_thread/decrypt/utils/serializable_bytes.d.ts +0 -45
- package/dist/commonjs/main_thread/decrypt/utils/serializable_bytes.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/utils/serializable_bytes.js +0 -50
- package/dist/commonjs/main_thread/decrypt/utils/server_certificate_store.d.ts +0 -65
- package/dist/commonjs/main_thread/decrypt/utils/server_certificate_store.d.ts.map +0 -1
- package/dist/commonjs/main_thread/decrypt/utils/server_certificate_store.js +0 -123
- package/dist/commonjs/main_thread/init/directfile_content_initializer.d.ts +0 -113
- package/dist/commonjs/main_thread/init/directfile_content_initializer.d.ts.map +0 -1
- package/dist/commonjs/main_thread/init/directfile_content_initializer.js +0 -298
- package/dist/commonjs/main_thread/init/index.d.ts +0 -18
- package/dist/commonjs/main_thread/init/index.d.ts.map +0 -1
- package/dist/commonjs/main_thread/init/index.js +0 -20
- package/dist/commonjs/main_thread/init/media_source_content_initializer.d.ts +0 -260
- package/dist/commonjs/main_thread/init/media_source_content_initializer.d.ts.map +0 -1
- package/dist/commonjs/main_thread/init/media_source_content_initializer.js +0 -1142
- package/dist/commonjs/main_thread/init/multi_thread_content_initializer.d.ts +0 -308
- package/dist/commonjs/main_thread/init/multi_thread_content_initializer.d.ts.map +0 -1
- package/dist/commonjs/main_thread/init/multi_thread_content_initializer.js +0 -1713
- package/dist/commonjs/main_thread/init/send_message.d.ts +0 -3
- package/dist/commonjs/main_thread/init/send_message.d.ts.map +0 -1
- package/dist/commonjs/main_thread/init/send_message.js +0 -13
- package/dist/commonjs/main_thread/init/types.d.ts +0 -237
- package/dist/commonjs/main_thread/init/types.d.ts.map +0 -1
- package/dist/commonjs/main_thread/init/types.js +0 -53
- package/dist/commonjs/main_thread/init/utils/create_core_playback_observer.d.ts +0 -96
- package/dist/commonjs/main_thread/init/utils/create_core_playback_observer.d.ts.map +0 -1
- package/dist/commonjs/main_thread/init/utils/create_core_playback_observer.js +0 -112
- package/dist/commonjs/main_thread/init/utils/create_media_source.d.ts +0 -54
- package/dist/commonjs/main_thread/init/utils/create_media_source.d.ts.map +0 -1
- package/dist/commonjs/main_thread/init/utils/create_media_source.js +0 -143
- package/dist/commonjs/main_thread/init/utils/get_initial_time.d.ts +0 -77
- package/dist/commonjs/main_thread/init/utils/get_initial_time.d.ts.map +0 -1
- package/dist/commonjs/main_thread/init/utils/get_initial_time.js +0 -152
- package/dist/commonjs/main_thread/init/utils/get_loaded_reference.d.ts +0 -28
- package/dist/commonjs/main_thread/init/utils/get_loaded_reference.d.ts.map +0 -1
- package/dist/commonjs/main_thread/init/utils/get_loaded_reference.js +0 -66
- package/dist/commonjs/main_thread/init/utils/initial_seek_and_play.d.ts +0 -63
- package/dist/commonjs/main_thread/init/utils/initial_seek_and_play.d.ts.map +0 -1
- package/dist/commonjs/main_thread/init/utils/initial_seek_and_play.js +0 -228
- package/dist/commonjs/main_thread/init/utils/initialize_content_decryption.d.ts +0 -99
- package/dist/commonjs/main_thread/init/utils/initialize_content_decryption.d.ts.map +0 -1
- package/dist/commonjs/main_thread/init/utils/initialize_content_decryption.js +0 -121
- package/dist/commonjs/main_thread/init/utils/main_thread_text_displayer_interface.d.ts +0 -36
- package/dist/commonjs/main_thread/init/utils/main_thread_text_displayer_interface.d.ts.map +0 -1
- package/dist/commonjs/main_thread/init/utils/main_thread_text_displayer_interface.js +0 -54
- package/dist/commonjs/main_thread/init/utils/rebuffering_controller.d.ts +0 -115
- package/dist/commonjs/main_thread/init/utils/rebuffering_controller.d.ts.map +0 -1
- package/dist/commonjs/main_thread/init/utils/rebuffering_controller.js +0 -490
- package/dist/commonjs/main_thread/init/utils/stream_events_emitter/are_same_stream_events.d.ts +0 -40
- package/dist/commonjs/main_thread/init/utils/stream_events_emitter/are_same_stream_events.d.ts.map +0 -1
- package/dist/commonjs/main_thread/init/utils/stream_events_emitter/are_same_stream_events.js +0 -35
- package/dist/commonjs/main_thread/init/utils/stream_events_emitter/index.d.ts +0 -19
- package/dist/commonjs/main_thread/init/utils/stream_events_emitter/index.d.ts.map +0 -1
- package/dist/commonjs/main_thread/init/utils/stream_events_emitter/index.js +0 -19
- package/dist/commonjs/main_thread/init/utils/stream_events_emitter/refresh_scheduled_events_list.d.ts +0 -26
- package/dist/commonjs/main_thread/init/utils/stream_events_emitter/refresh_scheduled_events_list.d.ts.map +0 -1
- package/dist/commonjs/main_thread/init/utils/stream_events_emitter/refresh_scheduled_events_list.js +0 -129
- package/dist/commonjs/main_thread/init/utils/stream_events_emitter/stream_events_emitter.d.ts +0 -52
- package/dist/commonjs/main_thread/init/utils/stream_events_emitter/stream_events_emitter.d.ts.map +0 -1
- package/dist/commonjs/main_thread/init/utils/stream_events_emitter/stream_events_emitter.js +0 -228
- package/dist/commonjs/main_thread/init/utils/stream_events_emitter/types.d.ts +0 -42
- package/dist/commonjs/main_thread/init/utils/stream_events_emitter/types.d.ts.map +0 -1
- package/dist/commonjs/main_thread/init/utils/stream_events_emitter/types.js +0 -17
- package/dist/commonjs/main_thread/init/utils/throw_on_media_error.d.ts +0 -25
- package/dist/commonjs/main_thread/init/utils/throw_on_media_error.d.ts.map +0 -1
- package/dist/commonjs/main_thread/init/utils/throw_on_media_error.js +0 -66
- package/dist/commonjs/main_thread/init/utils/update_manifest_codec_support.d.ts +0 -35
- package/dist/commonjs/main_thread/init/utils/update_manifest_codec_support.d.ts.map +0 -1
- package/dist/commonjs/main_thread/init/utils/update_manifest_codec_support.js +0 -222
- package/dist/commonjs/main_thread/render_thumbnail.d.ts +0 -27
- package/dist/commonjs/main_thread/render_thumbnail.d.ts.map +0 -1
- package/dist/commonjs/main_thread/render_thumbnail.js +0 -266
- package/dist/commonjs/main_thread/text_displayer/html/html_parsers.d.ts +0 -20
- package/dist/commonjs/main_thread/text_displayer/html/html_parsers.d.ts.map +0 -1
- package/dist/commonjs/main_thread/text_displayer/html/html_parsers.js +0 -25
- package/dist/commonjs/main_thread/text_displayer/html/html_text_displayer.d.ts +0 -103
- package/dist/commonjs/main_thread/text_displayer/html/html_text_displayer.d.ts.map +0 -1
- package/dist/commonjs/main_thread/text_displayer/html/html_text_displayer.js +0 -368
- package/dist/commonjs/main_thread/text_displayer/html/index.d.ts +0 -3
- package/dist/commonjs/main_thread/text_displayer/html/index.d.ts.map +0 -1
- package/dist/commonjs/main_thread/text_displayer/html/index.js +0 -4
- package/dist/commonjs/main_thread/text_displayer/html/text_track_cues_store.d.ts +0 -66
- package/dist/commonjs/main_thread/text_displayer/html/text_track_cues_store.d.ts.map +0 -1
- package/dist/commonjs/main_thread/text_displayer/html/text_track_cues_store.js +0 -408
- package/dist/commonjs/main_thread/text_displayer/html/update_proportional_elements.d.ts +0 -16
- package/dist/commonjs/main_thread/text_displayer/html/update_proportional_elements.d.ts.map +0 -1
- package/dist/commonjs/main_thread/text_displayer/html/update_proportional_elements.js +0 -64
- package/dist/commonjs/main_thread/text_displayer/html/utils.d.ts +0 -55
- package/dist/commonjs/main_thread/text_displayer/html/utils.d.ts.map +0 -1
- package/dist/commonjs/main_thread/text_displayer/html/utils.js +0 -141
- package/dist/commonjs/main_thread/text_displayer/index.d.ts +0 -3
- package/dist/commonjs/main_thread/text_displayer/index.d.ts.map +0 -1
- package/dist/commonjs/main_thread/text_displayer/index.js +0 -2
- package/dist/commonjs/main_thread/text_displayer/manual_time_ranges.d.ts +0 -15
- package/dist/commonjs/main_thread/text_displayer/manual_time_ranges.d.ts.map +0 -1
- package/dist/commonjs/main_thread/text_displayer/manual_time_ranges.js +0 -48
- package/dist/commonjs/main_thread/text_displayer/native/index.d.ts +0 -3
- package/dist/commonjs/main_thread/text_displayer/native/index.d.ts.map +0 -1
- package/dist/commonjs/main_thread/text_displayer/native/index.js +0 -4
- package/dist/commonjs/main_thread/text_displayer/native/native_parsers.d.ts +0 -16
- package/dist/commonjs/main_thread/text_displayer/native/native_parsers.d.ts.map +0 -1
- package/dist/commonjs/main_thread/text_displayer/native/native_parsers.js +0 -25
- package/dist/commonjs/main_thread/text_displayer/native/native_text_displayer.d.ts +0 -59
- package/dist/commonjs/main_thread/text_displayer/native/native_text_displayer.d.ts.map +0 -1
- package/dist/commonjs/main_thread/text_displayer/native/native_text_displayer.js +0 -226
- package/dist/commonjs/main_thread/text_displayer/types.d.ts +0 -72
- package/dist/commonjs/main_thread/text_displayer/types.d.ts.map +0 -1
- package/dist/commonjs/main_thread/text_displayer/types.js +0 -2
- package/dist/commonjs/main_thread/tracks_store/index.d.ts +0 -21
- package/dist/commonjs/main_thread/tracks_store/index.d.ts.map +0 -1
- package/dist/commonjs/main_thread/tracks_store/index.js +0 -34
- package/dist/commonjs/main_thread/tracks_store/media_element_tracks_store.d.ts +0 -208
- package/dist/commonjs/main_thread/tracks_store/media_element_tracks_store.d.ts.map +0 -1
- package/dist/commonjs/main_thread/tracks_store/media_element_tracks_store.js +0 -709
- package/dist/commonjs/main_thread/tracks_store/track_dispatcher.d.ts +0 -105
- package/dist/commonjs/main_thread/tracks_store/track_dispatcher.d.ts.map +0 -1
- package/dist/commonjs/main_thread/tracks_store/track_dispatcher.js +0 -176
- package/dist/commonjs/main_thread/tracks_store/tracks_store.d.ts +0 -538
- package/dist/commonjs/main_thread/tracks_store/tracks_store.d.ts.map +0 -1
- package/dist/commonjs/main_thread/tracks_store/tracks_store.js +0 -1497
- package/dist/commonjs/main_thread/types.d.ts +0 -6
- package/dist/commonjs/main_thread/types.d.ts.map +0 -1
- package/dist/commonjs/main_thread/types.js +0 -2
- package/dist/commonjs/manifest/classes/adaptation.d.ts +0 -135
- package/dist/commonjs/manifest/classes/adaptation.d.ts.map +0 -1
- package/dist/commonjs/manifest/classes/adaptation.js +0 -260
- package/dist/commonjs/manifest/classes/codec_support_cache.d.ts +0 -45
- package/dist/commonjs/manifest/classes/codec_support_cache.d.ts.map +0 -1
- package/dist/commonjs/manifest/classes/codec_support_cache.js +0 -84
- package/dist/commonjs/manifest/classes/index.d.ts +0 -32
- package/dist/commonjs/manifest/classes/index.d.ts.map +0 -1
- package/dist/commonjs/manifest/classes/index.js +0 -46
- package/dist/commonjs/manifest/classes/manifest.d.ts +0 -425
- package/dist/commonjs/manifest/classes/manifest.d.ts.map +0 -1
- package/dist/commonjs/manifest/classes/manifest.js +0 -561
- package/dist/commonjs/manifest/classes/period.d.ts +0 -157
- package/dist/commonjs/manifest/classes/period.d.ts.map +0 -1
- package/dist/commonjs/manifest/classes/period.js +0 -283
- package/dist/commonjs/manifest/classes/representation.d.ts +0 -271
- package/dist/commonjs/manifest/classes/representation.d.ts.map +0 -1
- package/dist/commonjs/manifest/classes/representation.js +0 -402
- package/dist/commonjs/manifest/classes/representation_index/index.d.ts +0 -20
- package/dist/commonjs/manifest/classes/representation_index/index.d.ts.map +0 -1
- package/dist/commonjs/manifest/classes/representation_index/index.js +0 -20
- package/dist/commonjs/manifest/classes/representation_index/static.d.ts +0 -117
- package/dist/commonjs/manifest/classes/representation_index/static.d.ts.map +0 -1
- package/dist/commonjs/manifest/classes/representation_index/static.js +0 -164
- package/dist/commonjs/manifest/classes/representation_index/types.d.ts +0 -441
- package/dist/commonjs/manifest/classes/representation_index/types.d.ts.map +0 -1
- package/dist/commonjs/manifest/classes/representation_index/types.js +0 -17
- package/dist/commonjs/manifest/classes/types.d.ts +0 -30
- package/dist/commonjs/manifest/classes/types.d.ts.map +0 -1
- package/dist/commonjs/manifest/classes/types.js +0 -33
- package/dist/commonjs/manifest/classes/update_period_in_place.d.ts +0 -63
- package/dist/commonjs/manifest/classes/update_period_in_place.d.ts.map +0 -1
- package/dist/commonjs/manifest/classes/update_period_in_place.js +0 -237
- package/dist/commonjs/manifest/classes/update_periods.d.ts +0 -51
- package/dist/commonjs/manifest/classes/update_periods.d.ts.map +0 -1
- package/dist/commonjs/manifest/classes/update_periods.js +0 -228
- package/dist/commonjs/manifest/classes/utils.d.ts +0 -47
- package/dist/commonjs/manifest/classes/utils.d.ts.map +0 -1
- package/dist/commonjs/manifest/classes/utils.js +0 -49
- package/dist/commonjs/manifest/index.d.ts +0 -17
- package/dist/commonjs/manifest/index.d.ts.map +0 -1
- package/dist/commonjs/manifest/index.js +0 -21
- package/dist/commonjs/manifest/types.d.ts +0 -466
- package/dist/commonjs/manifest/types.d.ts.map +0 -1
- package/dist/commonjs/manifest/types.js +0 -2
- package/dist/commonjs/manifest/utils.d.ts +0 -184
- package/dist/commonjs/manifest/utils.d.ts.map +0 -1
- package/dist/commonjs/manifest/utils.js +0 -822
- package/dist/commonjs/minimal.d.ts +0 -21
- package/dist/commonjs/minimal.d.ts.map +0 -1
- package/dist/commonjs/minimal.js +0 -30
- package/dist/commonjs/mse/index.d.ts +0 -3
- package/dist/commonjs/mse/index.d.ts.map +0 -1
- package/dist/commonjs/mse/index.js +0 -2
- package/dist/commonjs/mse/main_media_source_interface.d.ts +0 -128
- package/dist/commonjs/mse/main_media_source_interface.d.ts.map +0 -1
- package/dist/commonjs/mse/main_media_source_interface.js +0 -594
- package/dist/commonjs/mse/types.d.ts +0 -289
- package/dist/commonjs/mse/types.d.ts.map +0 -1
- package/dist/commonjs/mse/types.js +0 -2
- package/dist/commonjs/mse/utils/end_of_stream.d.ts +0 -35
- package/dist/commonjs/mse/utils/end_of_stream.d.ts.map +0 -1
- package/dist/commonjs/mse/utils/end_of_stream.js +0 -118
- package/dist/commonjs/mse/utils/media_source_duration_updater.d.ts +0 -60
- package/dist/commonjs/mse/utils/media_source_duration_updater.d.ts.map +0 -1
- package/dist/commonjs/mse/utils/media_source_duration_updater.js +0 -274
- package/dist/commonjs/mse/worker_media_source_interface.d.ts +0 -106
- package/dist/commonjs/mse/worker_media_source_interface.d.ts.map +0 -1
- package/dist/commonjs/mse/worker_media_source_interface.js +0 -370
- package/dist/commonjs/multithread_types.d.ts +0 -915
- package/dist/commonjs/multithread_types.d.ts.map +0 -1
- package/dist/commonjs/multithread_types.js +0 -7
- package/dist/commonjs/parsers/containers/isobmff/constants.d.ts +0 -24
- package/dist/commonjs/parsers/containers/isobmff/constants.d.ts.map +0 -1
- package/dist/commonjs/parsers/containers/isobmff/constants.js +0 -26
- package/dist/commonjs/parsers/containers/isobmff/create_box.d.ts +0 -31
- package/dist/commonjs/parsers/containers/isobmff/create_box.d.ts.map +0 -1
- package/dist/commonjs/parsers/containers/isobmff/create_box.js +0 -93
- package/dist/commonjs/parsers/containers/isobmff/drm/index.d.ts +0 -17
- package/dist/commonjs/parsers/containers/isobmff/drm/index.d.ts.map +0 -1
- package/dist/commonjs/parsers/containers/isobmff/drm/index.js +0 -20
- package/dist/commonjs/parsers/containers/isobmff/drm/playready.d.ts +0 -22
- package/dist/commonjs/parsers/containers/isobmff/drm/playready.d.ts.map +0 -1
- package/dist/commonjs/parsers/containers/isobmff/drm/playready.js +0 -38
- package/dist/commonjs/parsers/containers/isobmff/extract_complete_chunks.d.ts +0 -30
- package/dist/commonjs/parsers/containers/isobmff/extract_complete_chunks.d.ts.map +0 -1
- package/dist/commonjs/parsers/containers/isobmff/extract_complete_chunks.js +0 -89
- package/dist/commonjs/parsers/containers/isobmff/find_complete_box.d.ts +0 -26
- package/dist/commonjs/parsers/containers/isobmff/find_complete_box.d.ts.map +0 -1
- package/dist/commonjs/parsers/containers/isobmff/find_complete_box.js +0 -57
- package/dist/commonjs/parsers/containers/isobmff/get_box.d.ts +0 -107
- package/dist/commonjs/parsers/containers/isobmff/get_box.d.ts.map +0 -1
- package/dist/commonjs/parsers/containers/isobmff/get_box.js +0 -254
- package/dist/commonjs/parsers/containers/isobmff/index.d.ts +0 -26
- package/dist/commonjs/parsers/containers/isobmff/index.d.ts.map +0 -1
- package/dist/commonjs/parsers/containers/isobmff/index.js +0 -47
- package/dist/commonjs/parsers/containers/isobmff/read.d.ts +0 -58
- package/dist/commonjs/parsers/containers/isobmff/read.d.ts.map +0 -1
- package/dist/commonjs/parsers/containers/isobmff/read.js +0 -94
- package/dist/commonjs/parsers/containers/isobmff/take_pssh_out.d.ts +0 -42
- package/dist/commonjs/parsers/containers/isobmff/take_pssh_out.d.ts.map +0 -1
- package/dist/commonjs/parsers/containers/isobmff/take_pssh_out.js +0 -86
- package/dist/commonjs/parsers/containers/isobmff/utils.d.ts +0 -143
- package/dist/commonjs/parsers/containers/isobmff/utils.d.ts.map +0 -1
- package/dist/commonjs/parsers/containers/isobmff/utils.js +0 -608
- package/dist/commonjs/parsers/containers/matroska/index.d.ts +0 -18
- package/dist/commonjs/parsers/containers/matroska/index.d.ts.map +0 -1
- package/dist/commonjs/parsers/containers/matroska/index.js +0 -21
- package/dist/commonjs/parsers/containers/matroska/utils.d.ts +0 -35
- package/dist/commonjs/parsers/containers/matroska/utils.d.ts.map +0 -1
- package/dist/commonjs/parsers/containers/matroska/utils.js +0 -277
- package/dist/commonjs/parsers/images/bif.d.ts +0 -40
- package/dist/commonjs/parsers/images/bif.d.ts.map +0 -1
- package/dist/commonjs/parsers/images/bif.js +0 -103
- package/dist/commonjs/parsers/manifest/dash/common/attach_trickmode_track.d.ts +0 -29
- package/dist/commonjs/parsers/manifest/dash/common/attach_trickmode_track.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/attach_trickmode_track.js +0 -98
- package/dist/commonjs/parsers/manifest/dash/common/content_protection_parser.d.ts +0 -99
- package/dist/commonjs/parsers/manifest/dash/common/content_protection_parser.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/content_protection_parser.js +0 -261
- package/dist/commonjs/parsers/manifest/dash/common/convert_supplemental_codecs.d.ts +0 -18
- package/dist/commonjs/parsers/manifest/dash/common/convert_supplemental_codecs.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/convert_supplemental_codecs.js +0 -27
- package/dist/commonjs/parsers/manifest/dash/common/flatten_overlapping_periods.d.ts +0 -44
- package/dist/commonjs/parsers/manifest/dash/common/flatten_overlapping_periods.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/flatten_overlapping_periods.js +0 -85
- package/dist/commonjs/parsers/manifest/dash/common/get_clock_offset.d.ts +0 -30
- package/dist/commonjs/parsers/manifest/dash/common/get_clock_offset.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/get_clock_offset.js +0 -41
- package/dist/commonjs/parsers/manifest/dash/common/get_hdr_information.d.ts +0 -51
- package/dist/commonjs/parsers/manifest/dash/common/get_hdr_information.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/get_hdr_information.js +0 -86
- package/dist/commonjs/parsers/manifest/dash/common/get_http_utc-timing_url.d.ts +0 -22
- package/dist/commonjs/parsers/manifest/dash/common/get_http_utc-timing_url.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/get_http_utc-timing_url.js +0 -30
- package/dist/commonjs/parsers/manifest/dash/common/get_minimum_and_maximum_positions.d.ts +0 -26
- package/dist/commonjs/parsers/manifest/dash/common/get_minimum_and_maximum_positions.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/get_minimum_and_maximum_positions.js +0 -36
- package/dist/commonjs/parsers/manifest/dash/common/get_periods_time_infos.d.ts +0 -44
- package/dist/commonjs/parsers/manifest/dash/common/get_periods_time_infos.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/get_periods_time_infos.js +0 -71
- package/dist/commonjs/parsers/manifest/dash/common/index.d.ts +0 -22
- package/dist/commonjs/parsers/manifest/dash/common/index.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/index.js +0 -25
- package/dist/commonjs/parsers/manifest/dash/common/indexes/base.d.ts +0 -267
- package/dist/commonjs/parsers/manifest/dash/common/indexes/base.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/indexes/base.js +0 -289
- package/dist/commonjs/parsers/manifest/dash/common/indexes/get_init_segment.d.ts +0 -33
- package/dist/commonjs/parsers/manifest/dash/common/indexes/get_init_segment.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/indexes/get_init_segment.js +0 -47
- package/dist/commonjs/parsers/manifest/dash/common/indexes/get_segments_from_timeline.d.ts +0 -40
- package/dist/commonjs/parsers/manifest/dash/common/indexes/get_segments_from_timeline.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/indexes/get_segments_from_timeline.js +0 -112
- package/dist/commonjs/parsers/manifest/dash/common/indexes/index.d.ts +0 -26
- package/dist/commonjs/parsers/manifest/dash/common/indexes/index.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/indexes/index.js +0 -26
- package/dist/commonjs/parsers/manifest/dash/common/indexes/list.d.ts +0 -209
- package/dist/commonjs/parsers/manifest/dash/common/indexes/list.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/indexes/list.js +0 -247
- package/dist/commonjs/parsers/manifest/dash/common/indexes/template.d.ts +0 -272
- package/dist/commonjs/parsers/manifest/dash/common/indexes/template.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/indexes/template.js +0 -453
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/construct_timeline_from_elements.d.ts +0 -28
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/construct_timeline_from_elements.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/construct_timeline_from_elements.js +0 -46
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/construct_timeline_from_previous_timeline.d.ts +0 -19
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/construct_timeline_from_previous_timeline.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/construct_timeline_from_previous_timeline.js +0 -82
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/convert_element_to_index_segment.d.ts +0 -38
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/convert_element_to_index_segment.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/convert_element_to_index_segment.js +0 -66
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/find_first_common_start_time.d.ts +0 -43
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/find_first_common_start_time.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/find_first_common_start_time.js +0 -143
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/index.d.ts +0 -20
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/index.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/index.js +0 -19
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/parse_s_element.d.ts +0 -37
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/parse_s_element.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/parse_s_element.js +0 -90
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/timeline_representation_index.d.ts +0 -448
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/timeline_representation_index.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/indexes/timeline/timeline_representation_index.js +0 -702
- package/dist/commonjs/parsers/manifest/dash/common/indexes/tokens.d.ts +0 -41
- package/dist/commonjs/parsers/manifest/dash/common/indexes/tokens.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/indexes/tokens.js +0 -112
- package/dist/commonjs/parsers/manifest/dash/common/indexes/utils.d.ts +0 -26
- package/dist/commonjs/parsers/manifest/dash/common/indexes/utils.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/indexes/utils.js +0 -31
- package/dist/commonjs/parsers/manifest/dash/common/infer_adaptation_type.d.ts +0 -48
- package/dist/commonjs/parsers/manifest/dash/common/infer_adaptation_type.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/infer_adaptation_type.js +0 -164
- package/dist/commonjs/parsers/manifest/dash/common/manifest_bounds_calculator.d.ts +0 -120
- package/dist/commonjs/parsers/manifest/dash/common/manifest_bounds_calculator.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/manifest_bounds_calculator.js +0 -138
- package/dist/commonjs/parsers/manifest/dash/common/parse_adaptation_sets.d.ts +0 -56
- package/dist/commonjs/parsers/manifest/dash/common/parse_adaptation_sets.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/parse_adaptation_sets.js +0 -508
- package/dist/commonjs/parsers/manifest/dash/common/parse_availability_start_time.d.ts +0 -24
- package/dist/commonjs/parsers/manifest/dash/common/parse_availability_start_time.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/parse_availability_start_time.js +0 -34
- package/dist/commonjs/parsers/manifest/dash/common/parse_mpd.d.ts +0 -99
- package/dist/commonjs/parsers/manifest/dash/common/parse_mpd.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/parse_mpd.js +0 -345
- package/dist/commonjs/parsers/manifest/dash/common/parse_periods.d.ts +0 -71
- package/dist/commonjs/parsers/manifest/dash/common/parse_periods.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/parse_periods.js +0 -341
- package/dist/commonjs/parsers/manifest/dash/common/parse_representation_index.d.ts +0 -87
- package/dist/commonjs/parsers/manifest/dash/common/parse_representation_index.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/parse_representation_index.js +0 -131
- package/dist/commonjs/parsers/manifest/dash/common/parse_representations.d.ts +0 -51
- package/dist/commonjs/parsers/manifest/dash/common/parse_representations.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/parse_representations.js +0 -300
- package/dist/commonjs/parsers/manifest/dash/common/resolve_base_urls.d.ts +0 -27
- package/dist/commonjs/parsers/manifest/dash/common/resolve_base_urls.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/common/resolve_base_urls.js +0 -49
- package/dist/commonjs/parsers/manifest/dash/index.d.ts +0 -17
- package/dist/commonjs/parsers/manifest/dash/index.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/index.js +0 -23
- package/dist/commonjs/parsers/manifest/dash/js-parser/index.d.ts +0 -18
- package/dist/commonjs/parsers/manifest/dash/js-parser/index.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/js-parser/index.js +0 -19
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/AdaptationSet.d.ts +0 -25
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/AdaptationSet.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/AdaptationSet.js +0 -406
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/BaseURL.d.ts +0 -25
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/BaseURL.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/BaseURL.js +0 -33
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/ContentComponent.d.ts +0 -24
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/ContentComponent.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/ContentComponent.js +0 -70
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/ContentProtection.d.ts +0 -23
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/ContentProtection.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/ContentProtection.js +0 -125
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/EventStream.d.ts +0 -24
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/EventStream.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/EventStream.js +0 -153
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/Initialization.d.ts +0 -23
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/Initialization.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/Initialization.js +0 -70
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/MPD.d.ts +0 -24
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/MPD.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/MPD.js +0 -235
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/Period.d.ts +0 -24
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/Period.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/Period.js +0 -197
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/Representation.d.ts +0 -23
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/Representation.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/Representation.js +0 -268
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/SegmentBase.d.ts +0 -24
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/SegmentBase.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/SegmentBase.js +0 -152
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/SegmentList.d.ts +0 -23
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/SegmentList.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/SegmentList.js +0 -60
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/SegmentTemplate.d.ts +0 -25
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/SegmentTemplate.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/SegmentTemplate.js +0 -125
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/SegmentTimeline.d.ts +0 -23
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/SegmentTimeline.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/SegmentTimeline.js +0 -36
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/SegmentURL.d.ts +0 -25
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/SegmentURL.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/SegmentURL.js +0 -82
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/utils.d.ts +0 -176
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/utils.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/js-parser/node_parsers/utils.js +0 -381
- package/dist/commonjs/parsers/manifest/dash/js-parser/parse_from_xml_string.d.ts +0 -25
- package/dist/commonjs/parsers/manifest/dash/js-parser/parse_from_xml_string.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/js-parser/parse_from_xml_string.js +0 -142
- package/dist/commonjs/parsers/manifest/dash/node_parser_types.d.ts +0 -404
- package/dist/commonjs/parsers/manifest/dash/node_parser_types.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/node_parser_types.js +0 -17
- package/dist/commonjs/parsers/manifest/dash/parsers_types.d.ts +0 -84
- package/dist/commonjs/parsers/manifest/dash/parsers_types.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/parsers_types.js +0 -17
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/index.d.ts +0 -20
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/index.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/index.js +0 -19
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/dash-wasm-parser.d.ts +0 -112
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/dash-wasm-parser.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/dash-wasm-parser.js +0 -425
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/AdaptationSet.d.ts +0 -33
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/AdaptationSet.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/AdaptationSet.js +0 -276
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/BaseURL.d.ts +0 -25
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/BaseURL.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/BaseURL.js +0 -33
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/ContentComponent.d.ts +0 -25
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/ContentComponent.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/ContentComponent.js +0 -44
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/ContentProtection.d.ts +0 -24
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/ContentProtection.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/ContentProtection.js +0 -61
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/EventStream.d.ts +0 -34
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/EventStream.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/EventStream.js +0 -116
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/Label.d.ts +0 -4
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/Label.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/Label.js +0 -12
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/MPD.d.ts +0 -29
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/MPD.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/MPD.js +0 -168
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/Period.d.ts +0 -34
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/Period.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/Period.js +0 -152
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/Representation.d.ts +0 -33
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/Representation.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/Representation.js +0 -183
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/Scheme.d.ts +0 -25
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/Scheme.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/Scheme.js +0 -38
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/SegmentBase.d.ts +0 -19
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/SegmentBase.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/SegmentBase.js +0 -91
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/SegmentList.d.ts +0 -27
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/SegmentList.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/SegmentList.js +0 -48
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/SegmentTemplate.d.ts +0 -19
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/SegmentTemplate.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/SegmentTemplate.js +0 -104
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/SegmentUrl.d.ts +0 -26
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/SegmentUrl.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/SegmentUrl.js +0 -55
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/XLink.d.ts +0 -30
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/XLink.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/XLink.js +0 -50
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/index.d.ts +0 -17
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/index.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/index.js +0 -20
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/root.d.ts +0 -28
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/root.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/generators/root.js +0 -53
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/parsers_stack.d.ts +0 -39
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/parsers_stack.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/parsers_stack.js +0 -62
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/types.d.ts +0 -149
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/types.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/types.js +0 -17
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/utils.d.ts +0 -30
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/utils.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/dash/wasm-parser/ts/utils.js +0 -43
- package/dist/commonjs/parsers/manifest/index.d.ts +0 -17
- package/dist/commonjs/parsers/manifest/index.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/index.js +0 -17
- package/dist/commonjs/parsers/manifest/local/index.d.ts +0 -19
- package/dist/commonjs/parsers/manifest/local/index.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/local/index.js +0 -19
- package/dist/commonjs/parsers/manifest/local/parse_local_manifest.d.ts +0 -23
- package/dist/commonjs/parsers/manifest/local/parse_local_manifest.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/local/parse_local_manifest.js +0 -140
- package/dist/commonjs/parsers/manifest/local/representation_index.d.ts +0 -99
- package/dist/commonjs/parsers/manifest/local/representation_index.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/local/representation_index.js +0 -297
- package/dist/commonjs/parsers/manifest/local/types.d.ts +0 -288
- package/dist/commonjs/parsers/manifest/local/types.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/local/types.js +0 -17
- package/dist/commonjs/parsers/manifest/metaplaylist/index.d.ts +0 -20
- package/dist/commonjs/parsers/manifest/metaplaylist/index.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/metaplaylist/index.js +0 -19
- package/dist/commonjs/parsers/manifest/metaplaylist/metaplaylist_parser.d.ts +0 -65
- package/dist/commonjs/parsers/manifest/metaplaylist/metaplaylist_parser.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/metaplaylist/metaplaylist_parser.js +0 -322
- package/dist/commonjs/parsers/manifest/metaplaylist/representation_index.d.ts +0 -165
- package/dist/commonjs/parsers/manifest/metaplaylist/representation_index.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/metaplaylist/representation_index.js +0 -239
- package/dist/commonjs/parsers/manifest/smooth/create_parser.d.ts +0 -34
- package/dist/commonjs/parsers/manifest/smooth/create_parser.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/smooth/create_parser.js +0 -544
- package/dist/commonjs/parsers/manifest/smooth/get_codecs.d.ts +0 -27
- package/dist/commonjs/parsers/manifest/smooth/get_codecs.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/smooth/get_codecs.js +0 -54
- package/dist/commonjs/parsers/manifest/smooth/index.d.ts +0 -22
- package/dist/commonjs/parsers/manifest/smooth/index.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/smooth/index.js +0 -22
- package/dist/commonjs/parsers/manifest/smooth/parse_C_nodes.d.ts +0 -27
- package/dist/commonjs/parsers/manifest/smooth/parse_C_nodes.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/smooth/parse_C_nodes.js +0 -63
- package/dist/commonjs/parsers/manifest/smooth/parse_protection_node.d.ts +0 -30
- package/dist/commonjs/parsers/manifest/smooth/parse_protection_node.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/smooth/parse_protection_node.js +0 -66
- package/dist/commonjs/parsers/manifest/smooth/representation_index.d.ts +0 -242
- package/dist/commonjs/parsers/manifest/smooth/representation_index.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/smooth/representation_index.js +0 -424
- package/dist/commonjs/parsers/manifest/smooth/shared_smooth_segment_timeline.d.ts +0 -120
- package/dist/commonjs/parsers/manifest/smooth/shared_smooth_segment_timeline.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/smooth/shared_smooth_segment_timeline.js +0 -182
- package/dist/commonjs/parsers/manifest/smooth/utils/add_segment_infos.d.ts +0 -39
- package/dist/commonjs/parsers/manifest/smooth/utils/add_segment_infos.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/smooth/utils/add_segment_infos.js +0 -66
- package/dist/commonjs/parsers/manifest/smooth/utils/parseBoolean.d.ts +0 -21
- package/dist/commonjs/parsers/manifest/smooth/utils/parseBoolean.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/smooth/utils/parseBoolean.js +0 -33
- package/dist/commonjs/parsers/manifest/smooth/utils/reduceChildren.d.ts +0 -24
- package/dist/commonjs/parsers/manifest/smooth/utils/reduceChildren.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/smooth/utils/reduceChildren.js +0 -34
- package/dist/commonjs/parsers/manifest/smooth/utils/tokens.d.ts +0 -29
- package/dist/commonjs/parsers/manifest/smooth/utils/tokens.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/smooth/utils/tokens.js +0 -37
- package/dist/commonjs/parsers/manifest/types.d.ts +0 -443
- package/dist/commonjs/parsers/manifest/types.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/types.js +0 -17
- package/dist/commonjs/parsers/manifest/utils/check_manifest_ids.d.ts +0 -26
- package/dist/commonjs/parsers/manifest/utils/check_manifest_ids.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/utils/check_manifest_ids.js +0 -83
- package/dist/commonjs/parsers/manifest/utils/clear_timeline_from_position.d.ts +0 -26
- package/dist/commonjs/parsers/manifest/utils/clear_timeline_from_position.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/utils/clear_timeline_from_position.js +0 -76
- package/dist/commonjs/parsers/manifest/utils/get_first_time_from_adaptation.d.ts +0 -28
- package/dist/commonjs/parsers/manifest/utils/get_first_time_from_adaptation.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/utils/get_first_time_from_adaptation.js +0 -69
- package/dist/commonjs/parsers/manifest/utils/get_last_time_from_adaptation.d.ts +0 -30
- package/dist/commonjs/parsers/manifest/utils/get_last_time_from_adaptation.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/utils/get_last_time_from_adaptation.js +0 -71
- package/dist/commonjs/parsers/manifest/utils/get_maximum_positions.d.ts +0 -25
- package/dist/commonjs/parsers/manifest/utils/get_maximum_positions.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/utils/get_maximum_positions.js +0 -69
- package/dist/commonjs/parsers/manifest/utils/get_minimum_position.d.ts +0 -22
- package/dist/commonjs/parsers/manifest/utils/get_minimum_position.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/utils/get_minimum_position.js +0 -65
- package/dist/commonjs/parsers/manifest/utils/index_helpers.d.ts +0 -89
- package/dist/commonjs/parsers/manifest/utils/index_helpers.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/utils/index_helpers.js +0 -154
- package/dist/commonjs/parsers/manifest/utils/update_segment_timeline.d.ts +0 -34
- package/dist/commonjs/parsers/manifest/utils/update_segment_timeline.d.ts.map +0 -1
- package/dist/commonjs/parsers/manifest/utils/update_segment_timeline.js +0 -157
- package/dist/commonjs/parsers/texttracks/index.d.ts +0 -17
- package/dist/commonjs/parsers/texttracks/index.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/index.js +0 -17
- package/dist/commonjs/parsers/texttracks/sami/html.d.ts +0 -32
- package/dist/commonjs/parsers/texttracks/sami/html.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/sami/html.js +0 -220
- package/dist/commonjs/parsers/texttracks/sami/native.d.ts +0 -37
- package/dist/commonjs/parsers/texttracks/sami/native.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/sami/native.js +0 -184
- package/dist/commonjs/parsers/texttracks/srt/find_end_of_cue_block.d.ts +0 -30
- package/dist/commonjs/parsers/texttracks/srt/find_end_of_cue_block.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/srt/find_end_of_cue_block.js +0 -42
- package/dist/commonjs/parsers/texttracks/srt/get_cue_blocks.d.ts +0 -23
- package/dist/commonjs/parsers/texttracks/srt/get_cue_blocks.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/srt/get_cue_blocks.js +0 -50
- package/dist/commonjs/parsers/texttracks/srt/html.d.ts +0 -28
- package/dist/commonjs/parsers/texttracks/srt/html.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/srt/html.js +0 -192
- package/dist/commonjs/parsers/texttracks/srt/native.d.ts +0 -30
- package/dist/commonjs/parsers/texttracks/srt/native.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/srt/native.js +0 -66
- package/dist/commonjs/parsers/texttracks/srt/parse_cue.d.ts +0 -31
- package/dist/commonjs/parsers/texttracks/srt/parse_cue.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/srt/parse_cue.js +0 -75
- package/dist/commonjs/parsers/texttracks/srt/parse_timestamp.d.ts +0 -22
- package/dist/commonjs/parsers/texttracks/srt/parse_timestamp.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/srt/parse_timestamp.js +0 -36
- package/dist/commonjs/parsers/texttracks/ttml/get_parameters.d.ts +0 -33
- package/dist/commonjs/parsers/texttracks/ttml/get_parameters.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/ttml/get_parameters.js +0 -90
- package/dist/commonjs/parsers/texttracks/ttml/get_styling.d.ts +0 -42
- package/dist/commonjs/parsers/texttracks/ttml/get_styling.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/ttml/get_styling.js +0 -136
- package/dist/commonjs/parsers/texttracks/ttml/get_time_delimiters.d.ts +0 -27
- package/dist/commonjs/parsers/texttracks/ttml/get_time_delimiters.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/ttml/get_time_delimiters.js +0 -43
- package/dist/commonjs/parsers/texttracks/ttml/html/apply_default_ttml_paragraph_style.d.ts +0 -49
- package/dist/commonjs/parsers/texttracks/ttml/html/apply_default_ttml_paragraph_style.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/ttml/html/apply_default_ttml_paragraph_style.js +0 -65
- package/dist/commonjs/parsers/texttracks/ttml/html/apply_extent.d.ts +0 -22
- package/dist/commonjs/parsers/texttracks/ttml/html/apply_extent.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/ttml/html/apply_extent.js +0 -60
- package/dist/commonjs/parsers/texttracks/ttml/html/apply_font_size.d.ts +0 -22
- package/dist/commonjs/parsers/texttracks/ttml/html/apply_font_size.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/ttml/html/apply_font_size.js +0 -59
- package/dist/commonjs/parsers/texttracks/ttml/html/apply_line_height.d.ts +0 -21
- package/dist/commonjs/parsers/texttracks/ttml/html/apply_line_height.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/ttml/html/apply_line_height.js +0 -48
- package/dist/commonjs/parsers/texttracks/ttml/html/apply_origin.d.ts +0 -21
- package/dist/commonjs/parsers/texttracks/ttml/html/apply_origin.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/ttml/html/apply_origin.js +0 -59
- package/dist/commonjs/parsers/texttracks/ttml/html/apply_padding.d.ts +0 -21
- package/dist/commonjs/parsers/texttracks/ttml/html/apply_padding.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/ttml/html/apply_padding.js +0 -138
- package/dist/commonjs/parsers/texttracks/ttml/html/create_element.d.ts +0 -33
- package/dist/commonjs/parsers/texttracks/ttml/html/create_element.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/ttml/html/create_element.js +0 -477
- package/dist/commonjs/parsers/texttracks/ttml/html/generate_css_test_outline.d.ts +0 -27
- package/dist/commonjs/parsers/texttracks/ttml/html/generate_css_test_outline.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/ttml/html/generate_css_test_outline.js +0 -44
- package/dist/commonjs/parsers/texttracks/ttml/html/index.d.ts +0 -22
- package/dist/commonjs/parsers/texttracks/ttml/html/index.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/ttml/html/index.js +0 -23
- package/dist/commonjs/parsers/texttracks/ttml/html/parse_cue.d.ts +0 -27
- package/dist/commonjs/parsers/texttracks/ttml/html/parse_cue.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/ttml/html/parse_cue.js +0 -43
- package/dist/commonjs/parsers/texttracks/ttml/html/parse_ttml_to_div.d.ts +0 -36
- package/dist/commonjs/parsers/texttracks/ttml/html/parse_ttml_to_div.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/ttml/html/parse_ttml_to_div.js +0 -87
- package/dist/commonjs/parsers/texttracks/ttml/html/ttml_color_to_css_color.d.ts +0 -22
- package/dist/commonjs/parsers/texttracks/ttml/html/ttml_color_to_css_color.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/ttml/html/ttml_color_to_css_color.js +0 -76
- package/dist/commonjs/parsers/texttracks/ttml/native/index.d.ts +0 -22
- package/dist/commonjs/parsers/texttracks/ttml/native/index.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/ttml/native/index.js +0 -23
- package/dist/commonjs/parsers/texttracks/ttml/native/parse_cue.d.ts +0 -25
- package/dist/commonjs/parsers/texttracks/ttml/native/parse_cue.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/ttml/native/parse_cue.js +0 -200
- package/dist/commonjs/parsers/texttracks/ttml/native/parse_ttml_to_vtt.d.ts +0 -24
- package/dist/commonjs/parsers/texttracks/ttml/native/parse_ttml_to_vtt.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/ttml/native/parse_ttml_to_vtt.js +0 -70
- package/dist/commonjs/parsers/texttracks/ttml/parse_ttml.d.ts +0 -44
- package/dist/commonjs/parsers/texttracks/ttml/parse_ttml.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/ttml/parse_ttml.js +0 -187
- package/dist/commonjs/parsers/texttracks/ttml/regexps.d.ts +0 -29
- package/dist/commonjs/parsers/texttracks/ttml/regexps.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/ttml/regexps.js +0 -49
- package/dist/commonjs/parsers/texttracks/ttml/resolve_styles_inheritance.d.ts +0 -50
- package/dist/commonjs/parsers/texttracks/ttml/resolve_styles_inheritance.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/ttml/resolve_styles_inheritance.js +0 -107
- package/dist/commonjs/parsers/texttracks/ttml/time_parsing.d.ts +0 -31
- package/dist/commonjs/parsers/texttracks/ttml/time_parsing.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/ttml/time_parsing.js +0 -126
- package/dist/commonjs/parsers/texttracks/ttml/xml_utils.d.ts +0 -71
- package/dist/commonjs/parsers/texttracks/ttml/xml_utils.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/ttml/xml_utils.js +0 -186
- package/dist/commonjs/parsers/texttracks/types.d.ts +0 -80
- package/dist/commonjs/parsers/texttracks/types.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/types.js +0 -17
- package/dist/commonjs/parsers/texttracks/webvtt/create_default_style_elements.d.ts +0 -3
- package/dist/commonjs/parsers/texttracks/webvtt/create_default_style_elements.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/webvtt/create_default_style_elements.js +0 -25
- package/dist/commonjs/parsers/texttracks/webvtt/get_cue_blocks.d.ts +0 -25
- package/dist/commonjs/parsers/texttracks/webvtt/get_cue_blocks.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/webvtt/get_cue_blocks.js +0 -47
- package/dist/commonjs/parsers/texttracks/webvtt/get_style_blocks.d.ts +0 -25
- package/dist/commonjs/parsers/texttracks/webvtt/get_style_blocks.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/webvtt/get_style_blocks.js +0 -55
- package/dist/commonjs/parsers/texttracks/webvtt/html/convert_payload_to_html.d.ts +0 -23
- package/dist/commonjs/parsers/texttracks/webvtt/html/convert_payload_to_html.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/webvtt/html/convert_payload_to_html.js +0 -38
- package/dist/commonjs/parsers/texttracks/webvtt/html/create_style_attribute.d.ts +0 -22
- package/dist/commonjs/parsers/texttracks/webvtt/html/create_style_attribute.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/webvtt/html/create_style_attribute.js +0 -172
- package/dist/commonjs/parsers/texttracks/webvtt/html/create_styled_element.d.ts +0 -25
- package/dist/commonjs/parsers/texttracks/webvtt/html/create_styled_element.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/webvtt/html/create_styled_element.js +0 -84
- package/dist/commonjs/parsers/texttracks/webvtt/html/index.d.ts +0 -28
- package/dist/commonjs/parsers/texttracks/webvtt/html/index.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/webvtt/html/index.js +0 -26
- package/dist/commonjs/parsers/texttracks/webvtt/html/parse_webvtt_mp4.d.ts +0 -13
- package/dist/commonjs/parsers/texttracks/webvtt/html/parse_webvtt_mp4.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/webvtt/html/parse_webvtt_mp4.js +0 -22
- package/dist/commonjs/parsers/texttracks/webvtt/html/parse_webvtt_plain_text.d.ts +0 -33
- package/dist/commonjs/parsers/texttracks/webvtt/html/parse_webvtt_plain_text.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/webvtt/html/parse_webvtt_plain_text.js +0 -69
- package/dist/commonjs/parsers/texttracks/webvtt/html/to_html.d.ts +0 -50
- package/dist/commonjs/parsers/texttracks/webvtt/html/to_html.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/webvtt/html/to_html.js +0 -73
- package/dist/commonjs/parsers/texttracks/webvtt/native/index.d.ts +0 -23
- package/dist/commonjs/parsers/texttracks/webvtt/native/index.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/webvtt/native/index.js +0 -26
- package/dist/commonjs/parsers/texttracks/webvtt/native/parse_vtt_plain_text_to_cues.d.ts +0 -30
- package/dist/commonjs/parsers/texttracks/webvtt/native/parse_vtt_plain_text_to_cues.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/webvtt/native/parse_vtt_plain_text_to_cues.js +0 -94
- package/dist/commonjs/parsers/texttracks/webvtt/native/parse_webvtt_mp4_to_cues.d.ts +0 -13
- package/dist/commonjs/parsers/texttracks/webvtt/native/parse_webvtt_mp4_to_cues.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/webvtt/native/parse_webvtt_mp4_to_cues.js +0 -24
- package/dist/commonjs/parsers/texttracks/webvtt/native/set_settings_on_cue.d.ts +0 -24
- package/dist/commonjs/parsers/texttracks/webvtt/native/set_settings_on_cue.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/webvtt/native/set_settings_on_cue.js +0 -83
- package/dist/commonjs/parsers/texttracks/webvtt/native/to_native_cue.d.ts +0 -33
- package/dist/commonjs/parsers/texttracks/webvtt/native/to_native_cue.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/webvtt/native/to_native_cue.js +0 -30
- package/dist/commonjs/parsers/texttracks/webvtt/parse_cue_block.d.ts +0 -40
- package/dist/commonjs/parsers/texttracks/webvtt/parse_cue_block.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/webvtt/parse_cue_block.js +0 -104
- package/dist/commonjs/parsers/texttracks/webvtt/parse_mp4_embedded_wvtt.d.ts +0 -22
- package/dist/commonjs/parsers/texttracks/webvtt/parse_mp4_embedded_wvtt.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/webvtt/parse_mp4_embedded_wvtt.js +0 -154
- package/dist/commonjs/parsers/texttracks/webvtt/parse_style_block.d.ts +0 -28
- package/dist/commonjs/parsers/texttracks/webvtt/parse_style_block.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/webvtt/parse_style_block.js +0 -75
- package/dist/commonjs/parsers/texttracks/webvtt/parse_timestamp.d.ts +0 -22
- package/dist/commonjs/parsers/texttracks/webvtt/parse_timestamp.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/webvtt/parse_timestamp.js +0 -36
- package/dist/commonjs/parsers/texttracks/webvtt/utils.d.ts +0 -58
- package/dist/commonjs/parsers/texttracks/webvtt/utils.d.ts.map +0 -1
- package/dist/commonjs/parsers/texttracks/webvtt/utils.js +0 -121
- package/dist/commonjs/playback_observer/index.d.ts +0 -7
- package/dist/commonjs/playback_observer/index.d.ts.map +0 -1
- package/dist/commonjs/playback_observer/index.js +0 -5
- package/dist/commonjs/playback_observer/media_element_playback_observer.d.ts +0 -285
- package/dist/commonjs/playback_observer/media_element_playback_observer.d.ts.map +0 -1
- package/dist/commonjs/playback_observer/media_element_playback_observer.js +0 -842
- package/dist/commonjs/playback_observer/types.d.ts +0 -226
- package/dist/commonjs/playback_observer/types.d.ts.map +0 -1
- package/dist/commonjs/playback_observer/types.js +0 -2
- package/dist/commonjs/playback_observer/utils/generate_read_only_observer.d.ts +0 -12
- package/dist/commonjs/playback_observer/utils/generate_read_only_observer.d.ts.map +0 -1
- package/dist/commonjs/playback_observer/utils/generate_read_only_observer.js +0 -42
- package/dist/commonjs/playback_observer/utils/observation_position.d.ts +0 -99
- package/dist/commonjs/playback_observer/utils/observation_position.d.ts.map +0 -1
- package/dist/commonjs/playback_observer/utils/observation_position.js +0 -99
- package/dist/commonjs/playback_observer/worker_playback_observer.d.ts +0 -85
- package/dist/commonjs/playback_observer/worker_playback_observer.d.ts.map +0 -1
- package/dist/commonjs/playback_observer/worker_playback_observer.js +0 -47
- package/dist/commonjs/public_types.d.ts +0 -1279
- package/dist/commonjs/public_types.d.ts.map +0 -1
- package/dist/commonjs/public_types.js +0 -6
- package/dist/commonjs/tools/TextTrackRenderer/index.d.ts +0 -24
- package/dist/commonjs/tools/TextTrackRenderer/index.d.ts.map +0 -1
- package/dist/commonjs/tools/TextTrackRenderer/index.js +0 -29
- package/dist/commonjs/tools/TextTrackRenderer/text_track_renderer.d.ts +0 -77
- package/dist/commonjs/tools/TextTrackRenderer/text_track_renderer.d.ts.map +0 -1
- package/dist/commonjs/tools/TextTrackRenderer/text_track_renderer.js +0 -82
- package/dist/commonjs/tools/index.d.ts +0 -20
- package/dist/commonjs/tools/index.d.ts.map +0 -1
- package/dist/commonjs/tools/index.js +0 -23
- package/dist/commonjs/tools/parseBIFThumbnails/index.d.ts +0 -30
- package/dist/commonjs/tools/parseBIFThumbnails/index.d.ts.map +0 -1
- package/dist/commonjs/tools/parseBIFThumbnails/index.js +0 -33
- package/dist/commonjs/tools/string_utils/index.d.ts +0 -17
- package/dist/commonjs/tools/string_utils/index.d.ts.map +0 -1
- package/dist/commonjs/tools/string_utils/index.js +0 -25
- package/dist/commonjs/transports/dash/construct_segment_url.d.ts +0 -19
- package/dist/commonjs/transports/dash/construct_segment_url.d.ts.map +0 -1
- package/dist/commonjs/transports/dash/construct_segment_url.js +0 -28
- package/dist/commonjs/transports/dash/get_events_out_of_emsgs.d.ts +0 -29
- package/dist/commonjs/transports/dash/get_events_out_of_emsgs.d.ts.map +0 -1
- package/dist/commonjs/transports/dash/get_events_out_of_emsgs.js +0 -96
- package/dist/commonjs/transports/dash/index.d.ts +0 -22
- package/dist/commonjs/transports/dash/index.d.ts.map +0 -1
- package/dist/commonjs/transports/dash/index.js +0 -23
- package/dist/commonjs/transports/dash/init_segment_loader.d.ts +0 -29
- package/dist/commonjs/transports/dash/init_segment_loader.d.ts.map +0 -1
- package/dist/commonjs/transports/dash/init_segment_loader.js +0 -135
- package/dist/commonjs/transports/dash/integrity_checks.d.ts +0 -18
- package/dist/commonjs/transports/dash/integrity_checks.d.ts.map +0 -1
- package/dist/commonjs/transports/dash/integrity_checks.js +0 -209
- package/dist/commonjs/transports/dash/load_chunked_segment_data.d.ts +0 -40
- package/dist/commonjs/transports/dash/load_chunked_segment_data.d.ts.map +0 -1
- package/dist/commonjs/transports/dash/load_chunked_segment_data.js +0 -126
- package/dist/commonjs/transports/dash/manifest_parser.d.ts +0 -19
- package/dist/commonjs/transports/dash/manifest_parser.d.ts.map +0 -1
- package/dist/commonjs/transports/dash/manifest_parser.js +0 -298
- package/dist/commonjs/transports/dash/pipelines.d.ts +0 -24
- package/dist/commonjs/transports/dash/pipelines.d.ts.map +0 -1
- package/dist/commonjs/transports/dash/pipelines.js +0 -68
- package/dist/commonjs/transports/dash/segment_loader.d.ts +0 -39
- package/dist/commonjs/transports/dash/segment_loader.d.ts.map +0 -1
- package/dist/commonjs/transports/dash/segment_loader.js +0 -275
- package/dist/commonjs/transports/dash/segment_parser.d.ts +0 -24
- package/dist/commonjs/transports/dash/segment_parser.d.ts.map +0 -1
- package/dist/commonjs/transports/dash/segment_parser.js +0 -160
- package/dist/commonjs/transports/dash/text_loader.d.ts +0 -26
- package/dist/commonjs/transports/dash/text_loader.d.ts.map +0 -1
- package/dist/commonjs/transports/dash/text_loader.js +0 -166
- package/dist/commonjs/transports/dash/text_parser.d.ts +0 -26
- package/dist/commonjs/transports/dash/text_parser.d.ts.map +0 -1
- package/dist/commonjs/transports/dash/text_parser.js +0 -194
- package/dist/commonjs/transports/dash/thumbnails.d.ts +0 -21
- package/dist/commonjs/transports/dash/thumbnails.d.ts.map +0 -1
- package/dist/commonjs/transports/dash/thumbnails.js +0 -127
- package/dist/commonjs/transports/index.d.ts +0 -17
- package/dist/commonjs/transports/index.d.ts.map +0 -1
- package/dist/commonjs/transports/index.js +0 -17
- package/dist/commonjs/transports/local/index.d.ts +0 -18
- package/dist/commonjs/transports/local/index.d.ts.map +0 -1
- package/dist/commonjs/transports/local/index.js +0 -19
- package/dist/commonjs/transports/local/pipelines.d.ts +0 -23
- package/dist/commonjs/transports/local/pipelines.d.ts.map +0 -1
- package/dist/commonjs/transports/local/pipelines.js +0 -81
- package/dist/commonjs/transports/local/segment_loader.d.ts +0 -29
- package/dist/commonjs/transports/local/segment_loader.d.ts.map +0 -1
- package/dist/commonjs/transports/local/segment_loader.js +0 -155
- package/dist/commonjs/transports/local/segment_parser.d.ts +0 -21
- package/dist/commonjs/transports/local/segment_parser.d.ts.map +0 -1
- package/dist/commonjs/transports/local/segment_parser.js +0 -90
- package/dist/commonjs/transports/local/text_parser.d.ts +0 -28
- package/dist/commonjs/transports/local/text_parser.d.ts.map +0 -1
- package/dist/commonjs/transports/local/text_parser.js +0 -165
- package/dist/commonjs/transports/metaplaylist/index.d.ts +0 -22
- package/dist/commonjs/transports/metaplaylist/index.d.ts.map +0 -1
- package/dist/commonjs/transports/metaplaylist/index.js +0 -23
- package/dist/commonjs/transports/metaplaylist/manifest_loader.d.ts +0 -27
- package/dist/commonjs/transports/metaplaylist/manifest_loader.d.ts.map +0 -1
- package/dist/commonjs/transports/metaplaylist/manifest_loader.js +0 -57
- package/dist/commonjs/transports/metaplaylist/pipelines.d.ts +0 -18
- package/dist/commonjs/transports/metaplaylist/pipelines.d.ts.map +0 -1
- package/dist/commonjs/transports/metaplaylist/pipelines.js +0 -268
- package/dist/commonjs/transports/smooth/extract_timings_infos.d.ts +0 -63
- package/dist/commonjs/transports/smooth/extract_timings_infos.d.ts.map +0 -1
- package/dist/commonjs/transports/smooth/extract_timings_infos.js +0 -104
- package/dist/commonjs/transports/smooth/index.d.ts +0 -22
- package/dist/commonjs/transports/smooth/index.d.ts.map +0 -1
- package/dist/commonjs/transports/smooth/index.js +0 -23
- package/dist/commonjs/transports/smooth/is_mp4_embedded_track.d.ts +0 -23
- package/dist/commonjs/transports/smooth/is_mp4_embedded_track.d.ts.map +0 -1
- package/dist/commonjs/transports/smooth/is_mp4_embedded_track.js +0 -27
- package/dist/commonjs/transports/smooth/isobmff/create_audio_init_segment.d.ts +0 -29
- package/dist/commonjs/transports/smooth/isobmff/create_audio_init_segment.d.ts.map +0 -1
- package/dist/commonjs/transports/smooth/isobmff/create_audio_init_segment.js +0 -54
- package/dist/commonjs/transports/smooth/isobmff/create_boxes.d.ts +0 -172
- package/dist/commonjs/transports/smooth/isobmff/create_boxes.d.ts.map +0 -1
- package/dist/commonjs/transports/smooth/isobmff/create_boxes.js +0 -368
- package/dist/commonjs/transports/smooth/isobmff/create_init_segment.d.ts +0 -32
- package/dist/commonjs/transports/smooth/isobmff/create_init_segment.d.ts.map +0 -1
- package/dist/commonjs/transports/smooth/isobmff/create_init_segment.js +0 -66
- package/dist/commonjs/transports/smooth/isobmff/create_traf_box.d.ts +0 -17
- package/dist/commonjs/transports/smooth/isobmff/create_traf_box.d.ts.map +0 -1
- package/dist/commonjs/transports/smooth/isobmff/create_traf_box.js +0 -27
- package/dist/commonjs/transports/smooth/isobmff/create_video_init_segment.d.ts +0 -30
- package/dist/commonjs/transports/smooth/isobmff/create_video_init_segment.d.ts.map +0 -1
- package/dist/commonjs/transports/smooth/isobmff/create_video_init_segment.js +0 -76
- package/dist/commonjs/transports/smooth/isobmff/get_aaces_header.d.ts +0 -28
- package/dist/commonjs/transports/smooth/isobmff/get_aaces_header.d.ts.map +0 -1
- package/dist/commonjs/transports/smooth/isobmff/get_aaces_header.js +0 -46
- package/dist/commonjs/transports/smooth/isobmff/index.d.ts +0 -24
- package/dist/commonjs/transports/smooth/isobmff/index.d.ts.map +0 -1
- package/dist/commonjs/transports/smooth/isobmff/index.js +0 -28
- package/dist/commonjs/transports/smooth/isobmff/parse_tfrf.d.ts +0 -25
- package/dist/commonjs/transports/smooth/isobmff/parse_tfrf.d.ts.map +0 -1
- package/dist/commonjs/transports/smooth/isobmff/parse_tfrf.js +0 -50
- package/dist/commonjs/transports/smooth/isobmff/parse_tfxd.d.ts +0 -25
- package/dist/commonjs/transports/smooth/isobmff/parse_tfxd.d.ts.map +0 -1
- package/dist/commonjs/transports/smooth/isobmff/parse_tfxd.js +0 -34
- package/dist/commonjs/transports/smooth/isobmff/patch_segment.d.ts +0 -24
- package/dist/commonjs/transports/smooth/isobmff/patch_segment.d.ts.map +0 -1
- package/dist/commonjs/transports/smooth/isobmff/patch_segment.js +0 -131
- package/dist/commonjs/transports/smooth/pipelines.d.ts +0 -18
- package/dist/commonjs/transports/smooth/pipelines.d.ts.map +0 -1
- package/dist/commonjs/transports/smooth/pipelines.js +0 -352
- package/dist/commonjs/transports/smooth/segment_loader.d.ts +0 -28
- package/dist/commonjs/transports/smooth/segment_loader.d.ts.map +0 -1
- package/dist/commonjs/transports/smooth/segment_loader.js +0 -299
- package/dist/commonjs/transports/smooth/utils.d.ts +0 -27
- package/dist/commonjs/transports/smooth/utils.d.ts.map +0 -1
- package/dist/commonjs/transports/smooth/utils.js +0 -39
- package/dist/commonjs/transports/types.d.ts +0 -772
- package/dist/commonjs/transports/types.d.ts.map +0 -1
- package/dist/commonjs/transports/types.js +0 -17
- package/dist/commonjs/transports/utils/add_query_string.d.ts +0 -13
- package/dist/commonjs/transports/utils/add_query_string.d.ts.map +0 -1
- package/dist/commonjs/transports/utils/add_query_string.js +0 -54
- package/dist/commonjs/transports/utils/byte_range.d.ts +0 -22
- package/dist/commonjs/transports/utils/byte_range.d.ts.map +0 -1
- package/dist/commonjs/transports/utils/byte_range.js +0 -43
- package/dist/commonjs/transports/utils/call_custom_manifest_loader.d.ts +0 -20
- package/dist/commonjs/transports/utils/call_custom_manifest_loader.d.ts.map +0 -1
- package/dist/commonjs/transports/utils/call_custom_manifest_loader.js +0 -99
- package/dist/commonjs/transports/utils/check_isobmff_integrity.d.ts +0 -24
- package/dist/commonjs/transports/utils/check_isobmff_integrity.d.ts.map +0 -1
- package/dist/commonjs/transports/utils/check_isobmff_integrity.js +0 -49
- package/dist/commonjs/transports/utils/generate_manifest_loader.d.ts +0 -27
- package/dist/commonjs/transports/utils/generate_manifest_loader.d.ts.map +0 -1
- package/dist/commonjs/transports/utils/generate_manifest_loader.js +0 -89
- package/dist/commonjs/transports/utils/get_isobmff_timing_infos.d.ts +0 -30
- package/dist/commonjs/transports/utils/get_isobmff_timing_infos.d.ts.map +0 -1
- package/dist/commonjs/transports/utils/get_isobmff_timing_infos.js +0 -70
- package/dist/commonjs/transports/utils/infer_segment_container.d.ts +0 -30
- package/dist/commonjs/transports/utils/infer_segment_container.d.ts.map +0 -1
- package/dist/commonjs/transports/utils/infer_segment_container.js +0 -45
- package/dist/commonjs/transports/utils/parse_text_track.d.ts +0 -53
- package/dist/commonjs/transports/utils/parse_text_track.d.ts.map +0 -1
- package/dist/commonjs/transports/utils/parse_text_track.js +0 -161
- package/dist/commonjs/utils/are_arrays_of_numbers_equal.d.ts +0 -23
- package/dist/commonjs/utils/are_arrays_of_numbers_equal.d.ts.map +0 -1
- package/dist/commonjs/utils/are_arrays_of_numbers_equal.js +0 -38
- package/dist/commonjs/utils/are_codecs_compatible.d.ts +0 -30
- package/dist/commonjs/utils/are_codecs_compatible.d.ts.map +0 -1
- package/dist/commonjs/utils/are_codecs_compatible.js +0 -76
- package/dist/commonjs/utils/array_find.d.ts +0 -24
- package/dist/commonjs/utils/array_find.d.ts.map +0 -1
- package/dist/commonjs/utils/array_find.js +0 -40
- package/dist/commonjs/utils/array_find_index.d.ts +0 -24
- package/dist/commonjs/utils/array_find_index.d.ts.map +0 -1
- package/dist/commonjs/utils/array_find_index.js +0 -39
- package/dist/commonjs/utils/array_includes.d.ts +0 -54
- package/dist/commonjs/utils/array_includes.d.ts.map +0 -1
- package/dist/commonjs/utils/array_includes.js +0 -80
- package/dist/commonjs/utils/assert.d.ts +0 -75
- package/dist/commonjs/utils/assert.d.ts.map +0 -1
- package/dist/commonjs/utils/assert.js +0 -117
- package/dist/commonjs/utils/base64.d.ts +0 -15
- package/dist/commonjs/utils/base64.d.ts.map +0 -1
- package/dist/commonjs/utils/base64.js +0 -212
- package/dist/commonjs/utils/buffer_source_to_uint8.d.ts +0 -8
- package/dist/commonjs/utils/buffer_source_to_uint8.d.ts.map +0 -1
- package/dist/commonjs/utils/buffer_source_to_uint8.js +0 -18
- package/dist/commonjs/utils/byte_parsing.d.ts +0 -132
- package/dist/commonjs/utils/byte_parsing.d.ts.map +0 -1
- package/dist/commonjs/utils/byte_parsing.js +0 -273
- package/dist/commonjs/utils/cancellable_sleep.d.ts +0 -31
- package/dist/commonjs/utils/cancellable_sleep.d.ts.map +0 -1
- package/dist/commonjs/utils/cancellable_sleep.js +0 -38
- package/dist/commonjs/utils/create_cancellable_promise.d.ts +0 -27
- package/dist/commonjs/utils/create_cancellable_promise.d.ts.map +0 -1
- package/dist/commonjs/utils/create_cancellable_promise.js +0 -55
- package/dist/commonjs/utils/create_uuid.d.ts +0 -9
- package/dist/commonjs/utils/create_uuid.d.ts.map +0 -1
- package/dist/commonjs/utils/create_uuid.js +0 -32
- package/dist/commonjs/utils/deep_merge.d.ts +0 -10
- package/dist/commonjs/utils/deep_merge.d.ts.map +0 -1
- package/dist/commonjs/utils/deep_merge.js +0 -73
- package/dist/commonjs/utils/event_emitter.d.ts +0 -63
- package/dist/commonjs/utils/event_emitter.d.ts.map +0 -1
- package/dist/commonjs/utils/event_emitter.js +0 -110
- package/dist/commonjs/utils/flat_map.d.ts +0 -23
- package/dist/commonjs/utils/flat_map.d.ts.map +0 -1
- package/dist/commonjs/utils/flat_map.js +0 -63
- package/dist/commonjs/utils/get_fuzzed_delay.d.ts +0 -22
- package/dist/commonjs/utils/get_fuzzed_delay.d.ts.map +0 -1
- package/dist/commonjs/utils/get_fuzzed_delay.js +0 -28
- package/dist/commonjs/utils/global_scope.d.ts +0 -10
- package/dist/commonjs/utils/global_scope.d.ts.map +0 -1
- package/dist/commonjs/utils/global_scope.js +0 -22
- package/dist/commonjs/utils/hash_buffer.d.ts +0 -33
- package/dist/commonjs/utils/hash_buffer.d.ts.map +0 -1
- package/dist/commonjs/utils/hash_buffer.js +0 -44
- package/dist/commonjs/utils/id_generator.d.ts +0 -22
- package/dist/commonjs/utils/id_generator.d.ts.map +0 -1
- package/dist/commonjs/utils/id_generator.js +0 -35
- package/dist/commonjs/utils/is_node.d.ts +0 -19
- package/dist/commonjs/utils/is_node.d.ts.map +0 -1
- package/dist/commonjs/utils/is_node.js +0 -21
- package/dist/commonjs/utils/is_non_empty_string.d.ts +0 -21
- package/dist/commonjs/utils/is_non_empty_string.d.ts.map +0 -1
- package/dist/commonjs/utils/is_non_empty_string.js +0 -25
- package/dist/commonjs/utils/is_null_or_undefined.d.ts +0 -25
- package/dist/commonjs/utils/is_null_or_undefined.d.ts.map +0 -1
- package/dist/commonjs/utils/is_null_or_undefined.js +0 -29
- package/dist/commonjs/utils/is_worker.d.ts +0 -6
- package/dist/commonjs/utils/is_worker.d.ts.map +0 -1
- package/dist/commonjs/utils/is_worker.js +0 -7
- package/dist/commonjs/utils/languages/ISO_639-1_to_ISO_639-3.d.ts +0 -23
- package/dist/commonjs/utils/languages/ISO_639-1_to_ISO_639-3.d.ts.map +0 -1
- package/dist/commonjs/utils/languages/ISO_639-1_to_ISO_639-3.js +0 -207
- package/dist/commonjs/utils/languages/ISO_639-2_to_ISO_639-3.d.ts +0 -23
- package/dist/commonjs/utils/languages/ISO_639-2_to_ISO_639-3.d.ts.map +0 -1
- package/dist/commonjs/utils/languages/ISO_639-2_to_ISO_639-3.js +0 -43
- package/dist/commonjs/utils/languages/index.d.ts +0 -21
- package/dist/commonjs/utils/languages/index.d.ts.map +0 -1
- package/dist/commonjs/utils/languages/index.js +0 -22
- package/dist/commonjs/utils/languages/normalize.d.ts +0 -70
- package/dist/commonjs/utils/languages/normalize.d.ts.map +0 -1
- package/dist/commonjs/utils/languages/normalize.js +0 -125
- package/dist/commonjs/utils/logger.d.ts +0 -157
- package/dist/commonjs/utils/logger.d.ts.map +0 -1
- package/dist/commonjs/utils/logger.js +0 -229
- package/dist/commonjs/utils/monotonic_timestamp.d.ts +0 -23
- package/dist/commonjs/utils/monotonic_timestamp.d.ts.map +0 -1
- package/dist/commonjs/utils/monotonic_timestamp.js +0 -40
- package/dist/commonjs/utils/noop.d.ts +0 -24
- package/dist/commonjs/utils/noop.d.ts.map +0 -1
- package/dist/commonjs/utils/noop.js +0 -27
- package/dist/commonjs/utils/object_assign.d.ts +0 -47
- package/dist/commonjs/utils/object_assign.d.ts.map +0 -1
- package/dist/commonjs/utils/object_assign.js +0 -75
- package/dist/commonjs/utils/object_values.d.ts +0 -31
- package/dist/commonjs/utils/object_values.d.ts.map +0 -1
- package/dist/commonjs/utils/object_values.js +0 -27
- package/dist/commonjs/utils/queue_microtask.d.ts +0 -3
- package/dist/commonjs/utils/queue_microtask.d.ts.map +0 -1
- package/dist/commonjs/utils/queue_microtask.js +0 -7
- package/dist/commonjs/utils/ranges.d.ts +0 -214
- package/dist/commonjs/utils/ranges.d.ts.map +0 -1
- package/dist/commonjs/utils/ranges.js +0 -519
- package/dist/commonjs/utils/reference.d.ts +0 -215
- package/dist/commonjs/utils/reference.d.ts.map +0 -1
- package/dist/commonjs/utils/reference.js +0 -333
- package/dist/commonjs/utils/request/fetch.d.ts +0 -81
- package/dist/commonjs/utils/request/fetch.d.ts.map +0 -1
- package/dist/commonjs/utils/request/fetch.js +0 -255
- package/dist/commonjs/utils/request/index.d.ts +0 -25
- package/dist/commonjs/utils/request/index.d.ts.map +0 -1
- package/dist/commonjs/utils/request/index.js +0 -27
- package/dist/commonjs/utils/request/request_error.d.ts +0 -47
- package/dist/commonjs/utils/request/request_error.d.ts.map +0 -1
- package/dist/commonjs/utils/request/request_error.js +0 -89
- package/dist/commonjs/utils/request/xhr.d.ts +0 -100
- package/dist/commonjs/utils/request/xhr.d.ts.map +0 -1
- package/dist/commonjs/utils/request/xhr.js +0 -205
- package/dist/commonjs/utils/retry_promise_with_backoff.d.ts +0 -55
- package/dist/commonjs/utils/retry_promise_with_backoff.d.ts.map +0 -1
- package/dist/commonjs/utils/retry_promise_with_backoff.js +0 -135
- package/dist/commonjs/utils/sleep.d.ts +0 -11
- package/dist/commonjs/utils/sleep.d.ts.map +0 -1
- package/dist/commonjs/utils/sleep.js +0 -17
- package/dist/commonjs/utils/slice_uint8array.d.ts +0 -28
- package/dist/commonjs/utils/slice_uint8array.d.ts.map +0 -1
- package/dist/commonjs/utils/slice_uint8array.js +0 -44
- package/dist/commonjs/utils/sorted_list.d.ts +0 -128
- package/dist/commonjs/utils/sorted_list.d.ts.map +0 -1
- package/dist/commonjs/utils/sorted_list.js +0 -185
- package/dist/commonjs/utils/starts_with.d.ts +0 -27
- package/dist/commonjs/utils/starts_with.d.ts.map +0 -1
- package/dist/commonjs/utils/starts_with.js +0 -38
- package/dist/commonjs/utils/string_parsing.d.ts +0 -89
- package/dist/commonjs/utils/string_parsing.d.ts.map +0 -1
- package/dist/commonjs/utils/string_parsing.js +0 -382
- package/dist/commonjs/utils/sync_or_async.d.ts +0 -71
- package/dist/commonjs/utils/sync_or_async.d.ts.map +0 -1
- package/dist/commonjs/utils/sync_or_async.js +0 -53
- package/dist/commonjs/utils/task_canceller.d.ts +0 -263
- package/dist/commonjs/utils/task_canceller.d.ts.map +0 -1
- package/dist/commonjs/utils/task_canceller.js +0 -344
- package/dist/commonjs/utils/url-utils.d.ts +0 -50
- package/dist/commonjs/utils/url-utils.d.ts.map +0 -1
- package/dist/commonjs/utils/url-utils.js +0 -356
- package/dist/commonjs/utils/warn_once.d.ts +0 -24
- package/dist/commonjs/utils/warn_once.d.ts.map +0 -1
- package/dist/commonjs/utils/warn_once.js +0 -34
- package/dist/commonjs/utils/weak_map_memory.d.ts +0 -71
- package/dist/commonjs/utils/weak_map_memory.d.ts.map +0 -1
- package/dist/commonjs/utils/weak_map_memory.js +0 -87
- package/dist/commonjs/utils/wrapInPromise.d.ts +0 -8
- package/dist/commonjs/utils/wrapInPromise.d.ts.map +0 -1
- package/dist/commonjs/utils/wrapInPromise.js +0 -25
- package/dist/commonjs/utils/xml-parser.d.ts +0 -71
- package/dist/commonjs/utils/xml-parser.d.ts.map +0 -1
- package/dist/commonjs/utils/xml-parser.js +0 -358
- package/dist/commonjs/worker_entry_point.d.ts +0 -6
- package/dist/commonjs/worker_entry_point.d.ts.map +0 -1
- package/dist/commonjs/worker_entry_point.js +0 -8
- package/dist/es2017/__GENERATED_CODE/embedded_dash_wasm.d.ts +0 -4
- package/dist/es2017/__GENERATED_CODE/embedded_dash_wasm.d.ts.map +0 -1
- package/dist/es2017/__GENERATED_CODE/embedded_dash_wasm.js +0 -3
- package/dist/es2017/__GENERATED_CODE/embedded_worker.d.ts +0 -4
- package/dist/es2017/__GENERATED_CODE/embedded_worker.d.ts.map +0 -1
- package/dist/es2017/__GENERATED_CODE/embedded_worker.js +0 -3
- package/dist/es2017/__GENERATED_CODE/index.d.ts +0 -3
- package/dist/es2017/__GENERATED_CODE/index.d.ts.map +0 -1
- package/dist/es2017/__GENERATED_CODE/index.js +0 -2
- package/dist/es2017/compat/add_class_name.d.ts +0 -23
- package/dist/es2017/compat/add_class_name.d.ts.map +0 -1
- package/dist/es2017/compat/add_class_name.js +0 -36
- package/dist/es2017/compat/add_text_track.d.ts +0 -32
- package/dist/es2017/compat/add_text_track.d.ts.map +0 -1
- package/dist/es2017/compat/add_text_track.js +0 -49
- package/dist/es2017/compat/browser_compatibility_types.d.ts +0 -384
- package/dist/es2017/compat/browser_compatibility_types.d.ts.map +0 -1
- package/dist/es2017/compat/browser_compatibility_types.js +0 -42
- package/dist/es2017/compat/browser_version.d.ts +0 -25
- package/dist/es2017/compat/browser_version.d.ts.map +0 -1
- package/dist/es2017/compat/browser_version.js +0 -41
- package/dist/es2017/compat/can_patch_isobmff.d.ts +0 -26
- package/dist/es2017/compat/can_patch_isobmff.d.ts.map +0 -1
- package/dist/es2017/compat/can_patch_isobmff.js +0 -29
- package/dist/es2017/compat/can_preload_before_play.d.ts +0 -11
- package/dist/es2017/compat/can_preload_before_play.d.ts.map +0 -1
- package/dist/es2017/compat/can_preload_before_play.js +0 -20
- package/dist/es2017/compat/can_rely_on_request_media_key_system_access.d.ts +0 -41
- package/dist/es2017/compat/can_rely_on_request_media_key_system_access.d.ts.map +0 -1
- package/dist/es2017/compat/can_rely_on_request_media_key_system_access.js +0 -53
- package/dist/es2017/compat/can_rely_on_video_visibility_and_size.d.ts +0 -38
- package/dist/es2017/compat/can_rely_on_video_visibility_and_size.d.ts.map +0 -1
- package/dist/es2017/compat/can_rely_on_video_visibility_and_size.js +0 -49
- package/dist/es2017/compat/can_reuse_media_keys.d.ts +0 -20
- package/dist/es2017/compat/can_reuse_media_keys.d.ts.map +0 -1
- package/dist/es2017/compat/can_reuse_media_keys.js +0 -30
- package/dist/es2017/compat/change_source_buffer_type.d.ts +0 -49
- package/dist/es2017/compat/change_source_buffer_type.d.ts.map +0 -1
- package/dist/es2017/compat/change_source_buffer_type.js +0 -37
- package/dist/es2017/compat/clear_element_src.d.ts +0 -22
- package/dist/es2017/compat/clear_element_src.d.ts.map +0 -1
- package/dist/es2017/compat/clear_element_src.js +0 -53
- package/dist/es2017/compat/eme/close_session.d.ts +0 -31
- package/dist/es2017/compat/eme/close_session.d.ts.map +0 -1
- package/dist/es2017/compat/eme/close_session.js +0 -102
- package/dist/es2017/compat/eme/constants.d.ts +0 -17
- package/dist/es2017/compat/eme/constants.d.ts.map +0 -1
- package/dist/es2017/compat/eme/constants.js +0 -19
- package/dist/es2017/compat/eme/custom_key_system_access.d.ts +0 -50
- package/dist/es2017/compat/eme/custom_key_system_access.d.ts.map +0 -1
- package/dist/es2017/compat/eme/custom_key_system_access.js +0 -40
- package/dist/es2017/compat/eme/custom_media_keys/ie11_media_keys.d.ts +0 -32
- package/dist/es2017/compat/eme/custom_media_keys/ie11_media_keys.d.ts.map +0 -1
- package/dist/es2017/compat/eme/custom_media_keys/ie11_media_keys.js +0 -149
- package/dist/es2017/compat/eme/custom_media_keys/index.d.ts +0 -7
- package/dist/es2017/compat/eme/custom_media_keys/index.d.ts.map +0 -1
- package/dist/es2017/compat/eme/custom_media_keys/index.js +0 -6
- package/dist/es2017/compat/eme/custom_media_keys/moz_media_keys_constructor.d.ts +0 -28
- package/dist/es2017/compat/eme/custom_media_keys/moz_media_keys_constructor.d.ts.map +0 -1
- package/dist/es2017/compat/eme/custom_media_keys/moz_media_keys_constructor.js +0 -58
- package/dist/es2017/compat/eme/custom_media_keys/ms_media_keys_constructor.d.ts +0 -44
- package/dist/es2017/compat/eme/custom_media_keys/ms_media_keys_constructor.d.ts.map +0 -1
- package/dist/es2017/compat/eme/custom_media_keys/ms_media_keys_constructor.js +0 -26
- package/dist/es2017/compat/eme/custom_media_keys/old_webkit_media_keys.d.ts +0 -42
- package/dist/es2017/compat/eme/custom_media_keys/old_webkit_media_keys.d.ts.map +0 -1
- package/dist/es2017/compat/eme/custom_media_keys/old_webkit_media_keys.js +0 -166
- package/dist/es2017/compat/eme/custom_media_keys/webkit_media_keys.d.ts +0 -33
- package/dist/es2017/compat/eme/custom_media_keys/webkit_media_keys.d.ts.map +0 -1
- package/dist/es2017/compat/eme/custom_media_keys/webkit_media_keys.js +0 -203
- package/dist/es2017/compat/eme/custom_media_keys/webkit_media_keys_constructor.d.ts +0 -23
- package/dist/es2017/compat/eme/custom_media_keys/webkit_media_keys_constructor.d.ts.map +0 -1
- package/dist/es2017/compat/eme/custom_media_keys/webkit_media_keys_constructor.js +0 -27
- package/dist/es2017/compat/eme/eme-api-implementation.d.ts +0 -78
- package/dist/es2017/compat/eme/eme-api-implementation.d.ts.map +0 -1
- package/dist/es2017/compat/eme/eme-api-implementation.js +0 -207
- package/dist/es2017/compat/eme/generate_key_request.d.ts +0 -55
- package/dist/es2017/compat/eme/generate_key_request.d.ts.map +0 -1
- package/dist/es2017/compat/eme/generate_key_request.js +0 -144
- package/dist/es2017/compat/eme/get_init_data.d.ts +0 -60
- package/dist/es2017/compat/eme/get_init_data.d.ts.map +0 -1
- package/dist/es2017/compat/eme/get_init_data.js +0 -110
- package/dist/es2017/compat/eme/get_uuid_kid_from_keystatus_kid.d.ts +0 -24
- package/dist/es2017/compat/eme/get_uuid_kid_from_keystatus_kid.d.ts.map +0 -1
- package/dist/es2017/compat/eme/get_uuid_kid_from_keystatus_kid.js +0 -33
- package/dist/es2017/compat/eme/get_webkit_fairplay_initdata.d.ts +0 -26
- package/dist/es2017/compat/eme/get_webkit_fairplay_initdata.d.ts.map +0 -1
- package/dist/es2017/compat/eme/get_webkit_fairplay_initdata.js +0 -54
- package/dist/es2017/compat/eme/index.d.ts +0 -26
- package/dist/es2017/compat/eme/index.d.ts.map +0 -1
- package/dist/es2017/compat/eme/index.js +0 -22
- package/dist/es2017/compat/eme/load_session.d.ts +0 -31
- package/dist/es2017/compat/eme/load_session.d.ts.map +0 -1
- package/dist/es2017/compat/eme/load_session.js +0 -53
- package/dist/es2017/compat/eme/set_media_keys.d.ts +0 -10
- package/dist/es2017/compat/eme/set_media_keys.d.ts.map +0 -1
- package/dist/es2017/compat/eme/set_media_keys.js +0 -33
- package/dist/es2017/compat/enable_audio_track.d.ts +0 -12
- package/dist/es2017/compat/enable_audio_track.d.ts.map +0 -1
- package/dist/es2017/compat/enable_audio_track.js +0 -26
- package/dist/es2017/compat/env_detector.d.ts +0 -100
- package/dist/es2017/compat/env_detector.d.ts.map +0 -1
- package/dist/es2017/compat/env_detector.js +0 -185
- package/dist/es2017/compat/event_listeners.d.ts +0 -175
- package/dist/es2017/compat/event_listeners.d.ts.map +0 -1
- package/dist/es2017/compat/event_listeners.js +0 -411
- package/dist/es2017/compat/generate_init_data.d.ts +0 -14
- package/dist/es2017/compat/generate_init_data.d.ts.map +0 -1
- package/dist/es2017/compat/generate_init_data.js +0 -56
- package/dist/es2017/compat/get_start_date.d.ts +0 -32
- package/dist/es2017/compat/get_start_date.d.ts.map +0 -1
- package/dist/es2017/compat/get_start_date.js +0 -44
- package/dist/es2017/compat/has_issues_with_high_media_source_duration.d.ts +0 -22
- package/dist/es2017/compat/has_issues_with_high_media_source_duration.d.ts.map +0 -1
- package/dist/es2017/compat/has_issues_with_high_media_source_duration.js +0 -29
- package/dist/es2017/compat/has_mse_in_worker.d.ts +0 -3
- package/dist/es2017/compat/has_mse_in_worker.d.ts.map +0 -1
- package/dist/es2017/compat/has_mse_in_worker.js +0 -4
- package/dist/es2017/compat/has_webassembly.d.ts +0 -7
- package/dist/es2017/compat/has_webassembly.d.ts.map +0 -1
- package/dist/es2017/compat/has_webassembly.js +0 -6
- package/dist/es2017/compat/has_worker_api.d.ts +0 -10
- package/dist/es2017/compat/has_worker_api.d.ts.map +0 -1
- package/dist/es2017/compat/has_worker_api.js +0 -14
- package/dist/es2017/compat/is_codec_supported.d.ts +0 -28
- package/dist/es2017/compat/is_codec_supported.d.ts.map +0 -1
- package/dist/es2017/compat/is_codec_supported.js +0 -67
- package/dist/es2017/compat/is_seeking_approximate.d.ts +0 -29
- package/dist/es2017/compat/is_seeking_approximate.d.ts.map +0 -1
- package/dist/es2017/compat/is_seeking_approximate.js +0 -33
- package/dist/es2017/compat/is_vtt_cue.d.ts +0 -23
- package/dist/es2017/compat/is_vtt_cue.d.ts.map +0 -1
- package/dist/es2017/compat/is_vtt_cue.js +0 -24
- package/dist/es2017/compat/make_vtt_cue.d.ts +0 -27
- package/dist/es2017/compat/make_vtt_cue.d.ts.map +0 -1
- package/dist/es2017/compat/make_vtt_cue.js +0 -44
- package/dist/es2017/compat/may_media_element_fail_on_undecipherable_data.d.ts +0 -17
- package/dist/es2017/compat/may_media_element_fail_on_undecipherable_data.d.ts.map +0 -1
- package/dist/es2017/compat/may_media_element_fail_on_undecipherable_data.js +0 -22
- package/dist/es2017/compat/on_height_width_change.d.ts +0 -34
- package/dist/es2017/compat/on_height_width_change.d.ts.map +0 -1
- package/dist/es2017/compat/on_height_width_change.js +0 -72
- package/dist/es2017/compat/patch_webkit_source_buffer.d.ts +0 -17
- package/dist/es2017/compat/patch_webkit_source_buffer.d.ts.map +0 -1
- package/dist/es2017/compat/patch_webkit_source_buffer.js +0 -61
- package/dist/es2017/compat/remove_cue.d.ts +0 -23
- package/dist/es2017/compat/remove_cue.d.ts.map +0 -1
- package/dist/es2017/compat/remove_cue.js +0 -63
- package/dist/es2017/compat/should_await_set_media_keys.d.ts +0 -17
- package/dist/es2017/compat/should_await_set_media_keys.d.ts.map +0 -1
- package/dist/es2017/compat/should_await_set_media_keys.js +0 -24
- package/dist/es2017/compat/should_favour_custom_safari_EME.d.ts +0 -24
- package/dist/es2017/compat/should_favour_custom_safari_EME.d.ts.map +0 -1
- package/dist/es2017/compat/should_favour_custom_safari_EME.js +0 -34
- package/dist/es2017/compat/should_reload_media_source_on_decipherability_update.d.ts +0 -27
- package/dist/es2017/compat/should_reload_media_source_on_decipherability_update.d.ts.map +0 -1
- package/dist/es2017/compat/should_reload_media_source_on_decipherability_update.js +0 -32
- package/dist/es2017/compat/should_renew_media_key_system_access.d.ts +0 -22
- package/dist/es2017/compat/should_renew_media_key_system_access.d.ts.map +0 -1
- package/dist/es2017/compat/should_renew_media_key_system_access.js +0 -32
- package/dist/es2017/compat/should_unset_media_keys.d.ts +0 -23
- package/dist/es2017/compat/should_unset_media_keys.d.ts.map +0 -1
- package/dist/es2017/compat/should_unset_media_keys.js +0 -27
- package/dist/es2017/compat/should_validate_metadata.d.ts +0 -23
- package/dist/es2017/compat/should_validate_metadata.d.ts.map +0 -1
- package/dist/es2017/compat/should_validate_metadata.js +0 -27
- package/dist/es2017/compat/should_wait_for_data_before_loaded.d.ts +0 -25
- package/dist/es2017/compat/should_wait_for_data_before_loaded.d.ts.map +0 -1
- package/dist/es2017/compat/should_wait_for_data_before_loaded.js +0 -39
- package/dist/es2017/compat/should_wait_for_have_enough_data.d.ts +0 -14
- package/dist/es2017/compat/should_wait_for_have_enough_data.d.ts.map +0 -1
- package/dist/es2017/compat/should_wait_for_have_enough_data.js +0 -19
- package/dist/es2017/config.d.ts +0 -21
- package/dist/es2017/config.d.ts.map +0 -1
- package/dist/es2017/config.js +0 -28
- package/dist/es2017/core/adaptive/adaptive_representation_selector.d.ts +0 -294
- package/dist/es2017/core/adaptive/adaptive_representation_selector.d.ts.map +0 -1
- package/dist/es2017/core/adaptive/adaptive_representation_selector.js +0 -407
- package/dist/es2017/core/adaptive/buffer_based_chooser.d.ts +0 -90
- package/dist/es2017/core/adaptive/buffer_based_chooser.d.ts.map +0 -1
- package/dist/es2017/core/adaptive/buffer_based_chooser.js +0 -198
- package/dist/es2017/core/adaptive/guess_based_chooser.d.ts +0 -96
- package/dist/es2017/core/adaptive/guess_based_chooser.d.ts.map +0 -1
- package/dist/es2017/core/adaptive/guess_based_chooser.js +0 -239
- package/dist/es2017/core/adaptive/index.d.ts +0 -20
- package/dist/es2017/core/adaptive/index.d.ts.map +0 -1
- package/dist/es2017/core/adaptive/index.js +0 -17
- package/dist/es2017/core/adaptive/network_analyzer.d.ts +0 -74
- package/dist/es2017/core/adaptive/network_analyzer.d.ts.map +0 -1
- package/dist/es2017/core/adaptive/network_analyzer.js +0 -347
- package/dist/es2017/core/adaptive/utils/bandwidth_estimator.d.ts +0 -48
- package/dist/es2017/core/adaptive/utils/bandwidth_estimator.d.ts.map +0 -1
- package/dist/es2017/core/adaptive/utils/bandwidth_estimator.js +0 -68
- package/dist/es2017/core/adaptive/utils/ewma.d.ts +0 -40
- package/dist/es2017/core/adaptive/utils/ewma.d.ts.map +0 -1
- package/dist/es2017/core/adaptive/utils/ewma.js +0 -49
- package/dist/es2017/core/adaptive/utils/filter_by_bitrate.d.ts +0 -26
- package/dist/es2017/core/adaptive/utils/filter_by_bitrate.d.ts.map +0 -1
- package/dist/es2017/core/adaptive/utils/filter_by_bitrate.js +0 -37
- package/dist/es2017/core/adaptive/utils/filter_by_resolution.d.ts +0 -32
- package/dist/es2017/core/adaptive/utils/filter_by_resolution.d.ts.map +0 -1
- package/dist/es2017/core/adaptive/utils/filter_by_resolution.js +0 -44
- package/dist/es2017/core/adaptive/utils/get_buffer_levels.d.ts +0 -25
- package/dist/es2017/core/adaptive/utils/get_buffer_levels.d.ts.map +0 -1
- package/dist/es2017/core/adaptive/utils/get_buffer_levels.js +0 -50
- package/dist/es2017/core/adaptive/utils/last_estimate_storage.d.ts +0 -62
- package/dist/es2017/core/adaptive/utils/last_estimate_storage.d.ts.map +0 -1
- package/dist/es2017/core/adaptive/utils/last_estimate_storage.js +0 -35
- package/dist/es2017/core/adaptive/utils/pending_requests_store.d.ts +0 -111
- package/dist/es2017/core/adaptive/utils/pending_requests_store.d.ts.map +0 -1
- package/dist/es2017/core/adaptive/utils/pending_requests_store.js +0 -75
- package/dist/es2017/core/adaptive/utils/representation_score_calculator.d.ts +0 -105
- package/dist/es2017/core/adaptive/utils/representation_score_calculator.d.ts.map +0 -1
- package/dist/es2017/core/adaptive/utils/representation_score_calculator.js +0 -117
- package/dist/es2017/core/adaptive/utils/select_optimal_representation.d.ts +0 -28
- package/dist/es2017/core/adaptive/utils/select_optimal_representation.d.ts.map +0 -1
- package/dist/es2017/core/adaptive/utils/select_optimal_representation.js +0 -36
- package/dist/es2017/core/cmcd/cmcd_data_builder.d.ts +0 -133
- package/dist/es2017/core/cmcd/cmcd_data_builder.d.ts.map +0 -1
- package/dist/es2017/core/cmcd/cmcd_data_builder.js +0 -340
- package/dist/es2017/core/cmcd/index.d.ts +0 -4
- package/dist/es2017/core/cmcd/index.d.ts.map +0 -1
- package/dist/es2017/core/cmcd/index.js +0 -2
- package/dist/es2017/core/fetchers/cdn_prioritizer.d.ts +0 -108
- package/dist/es2017/core/fetchers/cdn_prioritizer.d.ts.map +0 -1
- package/dist/es2017/core/fetchers/cdn_prioritizer.js +0 -154
- package/dist/es2017/core/fetchers/index.d.ts +0 -25
- package/dist/es2017/core/fetchers/index.d.ts.map +0 -1
- package/dist/es2017/core/fetchers/index.js +0 -20
- package/dist/es2017/core/fetchers/manifest/index.d.ts +0 -20
- package/dist/es2017/core/fetchers/manifest/index.d.ts.map +0 -1
- package/dist/es2017/core/fetchers/manifest/index.js +0 -17
- package/dist/es2017/core/fetchers/manifest/manifest_fetcher.d.ts +0 -236
- package/dist/es2017/core/fetchers/manifest/manifest_fetcher.d.ts.map +0 -1
- package/dist/es2017/core/fetchers/manifest/manifest_fetcher.js +0 -538
- package/dist/es2017/core/fetchers/segment/index.d.ts +0 -22
- package/dist/es2017/core/fetchers/segment/index.d.ts.map +0 -1
- package/dist/es2017/core/fetchers/segment/index.js +0 -17
- package/dist/es2017/core/fetchers/segment/initialization_segment_cache.d.ts +0 -43
- package/dist/es2017/core/fetchers/segment/initialization_segment_cache.d.ts.map +0 -1
- package/dist/es2017/core/fetchers/segment/initialization_segment_cache.js +0 -48
- package/dist/es2017/core/fetchers/segment/prioritized_segment_fetcher.d.ts +0 -40
- package/dist/es2017/core/fetchers/segment/prioritized_segment_fetcher.d.ts.map +0 -1
- package/dist/es2017/core/fetchers/segment/prioritized_segment_fetcher.js +0 -67
- package/dist/es2017/core/fetchers/segment/segment_fetcher.d.ts +0 -200
- package/dist/es2017/core/fetchers/segment/segment_fetcher.d.ts.map +0 -1
- package/dist/es2017/core/fetchers/segment/segment_fetcher.js +0 -302
- package/dist/es2017/core/fetchers/segment/segment_queue.d.ts +0 -230
- package/dist/es2017/core/fetchers/segment/segment_queue.d.ts.map +0 -1
- package/dist/es2017/core/fetchers/segment/segment_queue.js +0 -421
- package/dist/es2017/core/fetchers/segment/segment_queue_creator.d.ts +0 -98
- package/dist/es2017/core/fetchers/segment/segment_queue_creator.d.ts.map +0 -1
- package/dist/es2017/core/fetchers/segment/segment_queue_creator.js +0 -73
- package/dist/es2017/core/fetchers/segment/task_prioritizer.d.ts +0 -155
- package/dist/es2017/core/fetchers/segment/task_prioritizer.d.ts.map +0 -1
- package/dist/es2017/core/fetchers/segment/task_prioritizer.js +0 -328
- package/dist/es2017/core/fetchers/thumbnails/index.d.ts +0 -5
- package/dist/es2017/core/fetchers/thumbnails/index.d.ts.map +0 -1
- package/dist/es2017/core/fetchers/thumbnails/index.js +0 -2
- package/dist/es2017/core/fetchers/thumbnails/thumbnail_fetcher.d.ts +0 -79
- package/dist/es2017/core/fetchers/thumbnails/thumbnail_fetcher.d.ts.map +0 -1
- package/dist/es2017/core/fetchers/thumbnails/thumbnail_fetcher.js +0 -200
- package/dist/es2017/core/fetchers/utils/error_selector.d.ts +0 -23
- package/dist/es2017/core/fetchers/utils/error_selector.d.ts.map +0 -1
- package/dist/es2017/core/fetchers/utils/error_selector.js +0 -31
- package/dist/es2017/core/fetchers/utils/schedule_request.d.ts +0 -99
- package/dist/es2017/core/fetchers/utils/schedule_request.d.ts.map +0 -1
- package/dist/es2017/core/fetchers/utils/schedule_request.js +0 -331
- package/dist/es2017/core/main/common/FreezeResolver.d.ts +0 -176
- package/dist/es2017/core/main/common/FreezeResolver.d.ts.map +0 -1
- package/dist/es2017/core/main/common/FreezeResolver.js +0 -387
- package/dist/es2017/core/main/common/content_time_boundaries_observer.d.ts +0 -192
- package/dist/es2017/core/main/common/content_time_boundaries_observer.d.ts.map +0 -1
- package/dist/es2017/core/main/common/content_time_boundaries_observer.js +0 -473
- package/dist/es2017/core/main/common/create_content_time_boundaries_observer.d.ts +0 -28
- package/dist/es2017/core/main/common/create_content_time_boundaries_observer.d.ts.map +0 -1
- package/dist/es2017/core/main/common/create_content_time_boundaries_observer.js +0 -41
- package/dist/es2017/core/main/common/get_buffered_data_per_media_buffer.d.ts +0 -15
- package/dist/es2017/core/main/common/get_buffered_data_per_media_buffer.d.ts.map +0 -1
- package/dist/es2017/core/main/common/get_buffered_data_per_media_buffer.js +0 -34
- package/dist/es2017/core/main/common/get_thumbnail_data.d.ts +0 -13
- package/dist/es2017/core/main/common/get_thumbnail_data.d.ts.map +0 -1
- package/dist/es2017/core/main/common/get_thumbnail_data.js +0 -27
- package/dist/es2017/core/main/common/synchronize_sinks_on_observation.d.ts +0 -11
- package/dist/es2017/core/main/common/synchronize_sinks_on_observation.d.ts.map +0 -1
- package/dist/es2017/core/main/common/synchronize_sinks_on_observation.js +0 -17
- package/dist/es2017/core/main/worker/content_preparer.d.ts +0 -176
- package/dist/es2017/core/main/worker/content_preparer.d.ts.map +0 -1
- package/dist/es2017/core/main/worker/content_preparer.js +0 -334
- package/dist/es2017/core/main/worker/globals.d.ts +0 -14
- package/dist/es2017/core/main/worker/globals.d.ts.map +0 -1
- package/dist/es2017/core/main/worker/globals.js +0 -18
- package/dist/es2017/core/main/worker/index.d.ts +0 -3
- package/dist/es2017/core/main/worker/index.d.ts.map +0 -1
- package/dist/es2017/core/main/worker/index.js +0 -2
- package/dist/es2017/core/main/worker/send_message.d.ts +0 -4
- package/dist/es2017/core/main/worker/send_message.d.ts.map +0 -1
- package/dist/es2017/core/main/worker/send_message.js +0 -19
- package/dist/es2017/core/main/worker/track_choice_setter.d.ts +0 -20
- package/dist/es2017/core/main/worker/track_choice_setter.d.ts.map +0 -1
- package/dist/es2017/core/main/worker/track_choice_setter.js +0 -126
- package/dist/es2017/core/main/worker/worker_main.d.ts +0 -2
- package/dist/es2017/core/main/worker/worker_main.d.ts.map +0 -1
- package/dist/es2017/core/main/worker/worker_main.js +0 -871
- package/dist/es2017/core/main/worker/worker_text_displayer_interface.d.ts +0 -65
- package/dist/es2017/core/main/worker/worker_text_displayer_interface.d.ts.map +0 -1
- package/dist/es2017/core/main/worker/worker_text_displayer_interface.js +0 -120
- package/dist/es2017/core/segment_sinks/garbage_collector.d.ts +0 -44
- package/dist/es2017/core/segment_sinks/garbage_collector.d.ts.map +0 -1
- package/dist/es2017/core/segment_sinks/garbage_collector.js +0 -148
- package/dist/es2017/core/segment_sinks/implementations/audio_video/audio_video_segment_sink.d.ts +0 -136
- package/dist/es2017/core/segment_sinks/implementations/audio_video/audio_video_segment_sink.d.ts.map +0 -1
- package/dist/es2017/core/segment_sinks/implementations/audio_video/audio_video_segment_sink.js +0 -269
- package/dist/es2017/core/segment_sinks/implementations/audio_video/index.d.ts +0 -18
- package/dist/es2017/core/segment_sinks/implementations/audio_video/index.d.ts.map +0 -1
- package/dist/es2017/core/segment_sinks/implementations/audio_video/index.js +0 -17
- package/dist/es2017/core/segment_sinks/implementations/index.d.ts +0 -21
- package/dist/es2017/core/segment_sinks/implementations/index.d.ts.map +0 -1
- package/dist/es2017/core/segment_sinks/implementations/index.js +0 -18
- package/dist/es2017/core/segment_sinks/implementations/text/index.d.ts +0 -5
- package/dist/es2017/core/segment_sinks/implementations/text/index.d.ts.map +0 -1
- package/dist/es2017/core/segment_sinks/implementations/text/index.js +0 -2
- package/dist/es2017/core/segment_sinks/implementations/text/text_segment_sink.d.ts +0 -101
- package/dist/es2017/core/segment_sinks/implementations/text/text_segment_sink.d.ts.map +0 -1
- package/dist/es2017/core/segment_sinks/implementations/text/text_segment_sink.js +0 -190
- package/dist/es2017/core/segment_sinks/implementations/types.d.ts +0 -308
- package/dist/es2017/core/segment_sinks/implementations/types.d.ts.map +0 -1
- package/dist/es2017/core/segment_sinks/implementations/types.js +0 -112
- package/dist/es2017/core/segment_sinks/implementations/utils/manual_time_ranges.d.ts +0 -30
- package/dist/es2017/core/segment_sinks/implementations/utils/manual_time_ranges.d.ts.map +0 -1
- package/dist/es2017/core/segment_sinks/implementations/utils/manual_time_ranges.js +0 -63
- package/dist/es2017/core/segment_sinks/index.d.ts +0 -25
- package/dist/es2017/core/segment_sinks/index.d.ts.map +0 -1
- package/dist/es2017/core/segment_sinks/index.js +0 -21
- package/dist/es2017/core/segment_sinks/inventory/buffered_history.d.ts +0 -90
- package/dist/es2017/core/segment_sinks/inventory/buffered_history.d.ts.map +0 -1
- package/dist/es2017/core/segment_sinks/inventory/buffered_history.js +0 -88
- package/dist/es2017/core/segment_sinks/inventory/index.d.ts +0 -24
- package/dist/es2017/core/segment_sinks/inventory/index.d.ts.map +0 -1
- package/dist/es2017/core/segment_sinks/inventory/index.js +0 -18
- package/dist/es2017/core/segment_sinks/inventory/segment_inventory.d.ts +0 -240
- package/dist/es2017/core/segment_sinks/inventory/segment_inventory.d.ts.map +0 -1
- package/dist/es2017/core/segment_sinks/inventory/segment_inventory.js +0 -1075
- package/dist/es2017/core/segment_sinks/inventory/types.d.ts +0 -33
- package/dist/es2017/core/segment_sinks/inventory/types.d.ts.map +0 -1
- package/dist/es2017/core/segment_sinks/inventory/types.js +0 -16
- package/dist/es2017/core/segment_sinks/inventory/utils.d.ts +0 -34
- package/dist/es2017/core/segment_sinks/inventory/utils.d.ts.map +0 -1
- package/dist/es2017/core/segment_sinks/inventory/utils.js +0 -48
- package/dist/es2017/core/segment_sinks/segment_sinks_store.d.ts +0 -198
- package/dist/es2017/core/segment_sinks/segment_sinks_store.d.ts.map +0 -1
- package/dist/es2017/core/segment_sinks/segment_sinks_store.js +0 -323
- package/dist/es2017/core/stream/adaptation/adaptation_stream.d.ts +0 -34
- package/dist/es2017/core/stream/adaptation/adaptation_stream.d.ts.map +0 -1
- package/dist/es2017/core/stream/adaptation/adaptation_stream.js +0 -442
- package/dist/es2017/core/stream/adaptation/get_representations_switch_strategy.d.ts +0 -54
- package/dist/es2017/core/stream/adaptation/get_representations_switch_strategy.d.ts.map +0 -1
- package/dist/es2017/core/stream/adaptation/get_representations_switch_strategy.js +0 -112
- package/dist/es2017/core/stream/adaptation/index.d.ts +0 -19
- package/dist/es2017/core/stream/adaptation/index.d.ts.map +0 -1
- package/dist/es2017/core/stream/adaptation/index.js +0 -17
- package/dist/es2017/core/stream/adaptation/types.d.ts +0 -200
- package/dist/es2017/core/stream/adaptation/types.d.ts.map +0 -1
- package/dist/es2017/core/stream/adaptation/types.js +0 -1
- package/dist/es2017/core/stream/index.d.ts +0 -23
- package/dist/es2017/core/stream/index.d.ts.map +0 -1
- package/dist/es2017/core/stream/index.js +0 -17
- package/dist/es2017/core/stream/orchestrator/get_time_ranges_for_content.d.ts +0 -31
- package/dist/es2017/core/stream/orchestrator/get_time_ranges_for_content.d.ts.map +0 -1
- package/dist/es2017/core/stream/orchestrator/get_time_ranges_for_content.js +0 -76
- package/dist/es2017/core/stream/orchestrator/index.d.ts +0 -20
- package/dist/es2017/core/stream/orchestrator/index.d.ts.map +0 -1
- package/dist/es2017/core/stream/orchestrator/index.js +0 -17
- package/dist/es2017/core/stream/orchestrator/stream_orchestrator.d.ts +0 -176
- package/dist/es2017/core/stream/orchestrator/stream_orchestrator.d.ts.map +0 -1
- package/dist/es2017/core/stream/orchestrator/stream_orchestrator.js +0 -550
- package/dist/es2017/core/stream/period/index.d.ts +0 -19
- package/dist/es2017/core/stream/period/index.d.ts.map +0 -1
- package/dist/es2017/core/stream/period/index.js +0 -17
- package/dist/es2017/core/stream/period/period_stream.d.ts +0 -50
- package/dist/es2017/core/stream/period/period_stream.d.ts.map +0 -1
- package/dist/es2017/core/stream/period/period_stream.js +0 -432
- package/dist/es2017/core/stream/period/types.d.ts +0 -120
- package/dist/es2017/core/stream/period/types.d.ts.map +0 -1
- package/dist/es2017/core/stream/period/types.js +0 -1
- package/dist/es2017/core/stream/period/utils/get_adaptation_switch_strategy.d.ts +0 -68
- package/dist/es2017/core/stream/period/utils/get_adaptation_switch_strategy.d.ts.map +0 -1
- package/dist/es2017/core/stream/period/utils/get_adaptation_switch_strategy.js +0 -130
- package/dist/es2017/core/stream/representation/index.d.ts +0 -19
- package/dist/es2017/core/stream/representation/index.d.ts.map +0 -1
- package/dist/es2017/core/stream/representation/index.js +0 -17
- package/dist/es2017/core/stream/representation/representation_stream.d.ts +0 -54
- package/dist/es2017/core/stream/representation/representation_stream.d.ts.map +0 -1
- package/dist/es2017/core/stream/representation/representation_stream.js +0 -395
- package/dist/es2017/core/stream/representation/types.d.ts +0 -314
- package/dist/es2017/core/stream/representation/types.d.ts.map +0 -1
- package/dist/es2017/core/stream/representation/types.js +0 -1
- package/dist/es2017/core/stream/representation/utils/append_segment_to_buffer.d.ts +0 -36
- package/dist/es2017/core/stream/representation/utils/append_segment_to_buffer.d.ts.map +0 -1
- package/dist/es2017/core/stream/representation/utils/append_segment_to_buffer.js +0 -79
- package/dist/es2017/core/stream/representation/utils/check_for_discontinuity.d.ts +0 -54
- package/dist/es2017/core/stream/representation/utils/check_for_discontinuity.d.ts.map +0 -1
- package/dist/es2017/core/stream/representation/utils/check_for_discontinuity.js +0 -245
- package/dist/es2017/core/stream/representation/utils/get_buffer_status.d.ts +0 -73
- package/dist/es2017/core/stream/representation/utils/get_buffer_status.d.ts.map +0 -1
- package/dist/es2017/core/stream/representation/utils/get_buffer_status.js +0 -198
- package/dist/es2017/core/stream/representation/utils/get_needed_segments.d.ts +0 -92
- package/dist/es2017/core/stream/representation/utils/get_needed_segments.d.ts.map +0 -1
- package/dist/es2017/core/stream/representation/utils/get_needed_segments.js +0 -450
- package/dist/es2017/core/stream/representation/utils/get_segment_priority.d.ts +0 -29
- package/dist/es2017/core/stream/representation/utils/get_segment_priority.d.ts.map +0 -1
- package/dist/es2017/core/stream/representation/utils/get_segment_priority.js +0 -38
- package/dist/es2017/core/stream/representation/utils/push_init_segment.d.ts +0 -42
- package/dist/es2017/core/stream/representation/utils/push_init_segment.d.ts.map +0 -1
- package/dist/es2017/core/stream/representation/utils/push_init_segment.js +0 -36
- package/dist/es2017/core/stream/representation/utils/push_media_segment.d.ts +0 -43
- package/dist/es2017/core/stream/representation/utils/push_media_segment.d.ts.map +0 -1
- package/dist/es2017/core/stream/representation/utils/push_media_segment.js +0 -63
- package/dist/es2017/core/types.d.ts +0 -9
- package/dist/es2017/core/types.d.ts.map +0 -1
- package/dist/es2017/core/types.js +0 -1
- package/dist/es2017/default_config.d.ts +0 -1200
- package/dist/es2017/default_config.d.ts.map +0 -1
- package/dist/es2017/default_config.js +0 -1234
- package/dist/es2017/errors/custom_loader_error.d.ts +0 -36
- package/dist/es2017/errors/custom_loader_error.d.ts.map +0 -1
- package/dist/es2017/errors/custom_loader_error.js +0 -39
- package/dist/es2017/errors/encrypted_media_error.d.ts +0 -72
- package/dist/es2017/errors/encrypted_media_error.d.ts.map +0 -1
- package/dist/es2017/errors/encrypted_media_error.js +0 -55
- package/dist/es2017/errors/error_codes.d.ts +0 -33
- package/dist/es2017/errors/error_codes.d.ts.map +0 -1
- package/dist/es2017/errors/error_codes.js +0 -68
- package/dist/es2017/errors/error_message.d.ts +0 -23
- package/dist/es2017/errors/error_message.d.ts.map +0 -1
- package/dist/es2017/errors/error_message.js +0 -24
- package/dist/es2017/errors/format_error.d.ts +0 -21
- package/dist/es2017/errors/format_error.d.ts.map +0 -1
- package/dist/es2017/errors/format_error.js +0 -29
- package/dist/es2017/errors/index.d.ts +0 -32
- package/dist/es2017/errors/index.d.ts.map +0 -1
- package/dist/es2017/errors/index.js +0 -25
- package/dist/es2017/errors/is_known_error.d.ts +0 -23
- package/dist/es2017/errors/is_known_error.d.ts.map +0 -1
- package/dist/es2017/errors/is_known_error.js +0 -32
- package/dist/es2017/errors/media_error.d.ts +0 -60
- package/dist/es2017/errors/media_error.d.ts.map +0 -1
- package/dist/es2017/errors/media_error.js +0 -53
- package/dist/es2017/errors/network_error.d.ts +0 -59
- package/dist/es2017/errors/network_error.d.ts.map +0 -1
- package/dist/es2017/errors/network_error.js +0 -65
- package/dist/es2017/errors/other_error.d.ts +0 -47
- package/dist/es2017/errors/other_error.d.ts.map +0 -1
- package/dist/es2017/errors/other_error.js +0 -51
- package/dist/es2017/errors/source_buffer_error.d.ts +0 -40
- package/dist/es2017/errors/source_buffer_error.d.ts.map +0 -1
- package/dist/es2017/errors/source_buffer_error.js +0 -42
- package/dist/es2017/errors/worker_initialization_error.d.ts +0 -19
- package/dist/es2017/errors/worker_initialization_error.d.ts.map +0 -1
- package/dist/es2017/errors/worker_initialization_error.js +0 -21
- package/dist/es2017/experimental/features/index.d.ts +0 -19
- package/dist/es2017/experimental/features/index.d.ts.map +0 -1
- package/dist/es2017/experimental/features/index.js +0 -18
- package/dist/es2017/experimental/features/local.d.ts +0 -20
- package/dist/es2017/experimental/features/local.d.ts.map +0 -1
- package/dist/es2017/experimental/features/local.js +0 -23
- package/dist/es2017/experimental/features/metaplaylist.d.ts +0 -20
- package/dist/es2017/experimental/features/metaplaylist.d.ts.map +0 -1
- package/dist/es2017/experimental/features/metaplaylist.js +0 -23
- package/dist/es2017/experimental/features/multi_thread.d.ts +0 -9
- package/dist/es2017/experimental/features/multi_thread.d.ts.map +0 -1
- package/dist/es2017/experimental/features/multi_thread.js +0 -10
- package/dist/es2017/experimental/index.d.ts +0 -3
- package/dist/es2017/experimental/index.d.ts.map +0 -1
- package/dist/es2017/experimental/index.js +0 -2
- package/dist/es2017/experimental/tools/DummyMediaElement/eme.d.ts +0 -225
- package/dist/es2017/experimental/tools/DummyMediaElement/eme.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/DummyMediaElement/eme.js +0 -790
- package/dist/es2017/experimental/tools/DummyMediaElement/html5.d.ts +0 -376
- package/dist/es2017/experimental/tools/DummyMediaElement/html5.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/DummyMediaElement/html5.js +0 -863
- package/dist/es2017/experimental/tools/DummyMediaElement/index.d.ts +0 -3
- package/dist/es2017/experimental/tools/DummyMediaElement/index.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/DummyMediaElement/index.js +0 -2
- package/dist/es2017/experimental/tools/DummyMediaElement/mse.d.ts +0 -217
- package/dist/es2017/experimental/tools/DummyMediaElement/mse.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/DummyMediaElement/mse.js +0 -586
- package/dist/es2017/experimental/tools/DummyMediaElement/utils.d.ts +0 -33
- package/dist/es2017/experimental/tools/DummyMediaElement/utils.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/DummyMediaElement/utils.js +0 -457
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/features/dash.d.ts +0 -18
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/features/dash.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/features/dash.js +0 -20
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/features/metaplaylist.d.ts +0 -18
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/features/metaplaylist.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/features/metaplaylist.js +0 -20
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/index.d.ts +0 -19
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/index.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/index.js +0 -18
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/load_and_push_segment.d.ts +0 -27
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/load_and_push_segment.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/load_and_push_segment.js +0 -60
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/prepare_source_buffer.d.ts +0 -27
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/prepare_source_buffer.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/prepare_source_buffer.js +0 -71
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/remove_buffer_around_time.d.ts +0 -30
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/remove_buffer_around_time.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/remove_buffer_around_time.js +0 -40
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/types.d.ts +0 -26
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/types.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/types.js +0 -16
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/video_thumbnail_loader.d.ts +0 -55
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/video_thumbnail_loader.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/video_thumbnail_loader.js +0 -281
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/video_thumbnail_loader_error.d.ts +0 -25
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/video_thumbnail_loader_error.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/VideoThumbnailLoader/video_thumbnail_loader_error.js +0 -29
- package/dist/es2017/experimental/tools/createMetaplaylist/get_duration_from_manifest.d.ts +0 -24
- package/dist/es2017/experimental/tools/createMetaplaylist/get_duration_from_manifest.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/createMetaplaylist/get_duration_from_manifest.js +0 -116
- package/dist/es2017/experimental/tools/createMetaplaylist/index.d.ts +0 -31
- package/dist/es2017/experimental/tools/createMetaplaylist/index.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/createMetaplaylist/index.js +0 -51
- package/dist/es2017/experimental/tools/index.d.ts +0 -20
- package/dist/es2017/experimental/tools/index.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/index.js +0 -19
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/api.d.ts +0 -73
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/api.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/api.js +0 -196
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/index.d.ts +0 -19
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/index.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/index.js +0 -17
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/log.d.ts +0 -19
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/log.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/log.js +0 -18
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/probers/HDCPPolicy.d.ts +0 -21
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/probers/HDCPPolicy.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/probers/HDCPPolicy.js +0 -58
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/probers/decodingInfo.d.ts +0 -22
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/probers/decodingInfo.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/probers/decodingInfo.js +0 -66
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/probers/defaultCodecsFinder.d.ts +0 -30
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/probers/defaultCodecsFinder.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/probers/defaultCodecsFinder.js +0 -60
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/probers/isTypeSupportedWithFeatures.d.ts +0 -24
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/probers/isTypeSupportedWithFeatures.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/probers/isTypeSupportedWithFeatures.js +0 -140
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/probers/mediaContentType.d.ts +0 -22
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/probers/mediaContentType.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/probers/mediaContentType.js +0 -49
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/probers/mediaDisplayInfos.d.ts +0 -22
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/probers/mediaDisplayInfos.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/probers/mediaDisplayInfos.js +0 -36
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/types.d.ts +0 -56
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/types.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/types.js +0 -16
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/utils.d.ts +0 -35
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/utils.d.ts.map +0 -1
- package/dist/es2017/experimental/tools/mediaCapabilitiesProber/utils.js +0 -82
- package/dist/es2017/features/add_features.d.ts +0 -21
- package/dist/es2017/features/add_features.d.ts.map +0 -1
- package/dist/es2017/features/add_features.js +0 -34
- package/dist/es2017/features/features_object.d.ts +0 -23
- package/dist/es2017/features/features_object.d.ts.map +0 -1
- package/dist/es2017/features/features_object.js +0 -33
- package/dist/es2017/features/index.d.ts +0 -36
- package/dist/es2017/features/index.d.ts.map +0 -1
- package/dist/es2017/features/index.js +0 -33
- package/dist/es2017/features/list/dash.d.ts +0 -24
- package/dist/es2017/features/list/dash.d.ts.map +0 -1
- package/dist/es2017/features/list/dash.js +0 -31
- package/dist/es2017/features/list/dash_wasm.d.ts +0 -24
- package/dist/es2017/features/list/dash_wasm.d.ts.map +0 -1
- package/dist/es2017/features/list/dash_wasm.js +0 -33
- package/dist/es2017/features/list/debug_element.d.ts +0 -9
- package/dist/es2017/features/list/debug_element.d.ts.map +0 -1
- package/dist/es2017/features/list/debug_element.js +0 -10
- package/dist/es2017/features/list/directfile.d.ts +0 -25
- package/dist/es2017/features/list/directfile.d.ts.map +0 -1
- package/dist/es2017/features/list/directfile.js +0 -27
- package/dist/es2017/features/list/eme.d.ts +0 -24
- package/dist/es2017/features/list/eme.d.ts.map +0 -1
- package/dist/es2017/features/list/eme.js +0 -25
- package/dist/es2017/features/list/html_sami_parser.d.ts +0 -24
- package/dist/es2017/features/list/html_sami_parser.d.ts.map +0 -1
- package/dist/es2017/features/list/html_sami_parser.js +0 -27
- package/dist/es2017/features/list/html_srt_parser.d.ts +0 -24
- package/dist/es2017/features/list/html_srt_parser.d.ts.map +0 -1
- package/dist/es2017/features/list/html_srt_parser.js +0 -27
- package/dist/es2017/features/list/html_text_buffer.d.ts +0 -24
- package/dist/es2017/features/list/html_text_buffer.d.ts.map +0 -1
- package/dist/es2017/features/list/html_text_buffer.js +0 -25
- package/dist/es2017/features/list/html_ttml_parser.d.ts +0 -24
- package/dist/es2017/features/list/html_ttml_parser.d.ts.map +0 -1
- package/dist/es2017/features/list/html_ttml_parser.js +0 -27
- package/dist/es2017/features/list/html_vtt_parser.d.ts +0 -24
- package/dist/es2017/features/list/html_vtt_parser.d.ts.map +0 -1
- package/dist/es2017/features/list/html_vtt_parser.js +0 -28
- package/dist/es2017/features/list/index.d.ts +0 -33
- package/dist/es2017/features/list/index.d.ts.map +0 -1
- package/dist/es2017/features/list/index.js +0 -32
- package/dist/es2017/features/list/media_source_main.d.ts +0 -9
- package/dist/es2017/features/list/media_source_main.d.ts.map +0 -1
- package/dist/es2017/features/list/media_source_main.js +0 -10
- package/dist/es2017/features/list/native_sami_parser.d.ts +0 -24
- package/dist/es2017/features/list/native_sami_parser.d.ts.map +0 -1
- package/dist/es2017/features/list/native_sami_parser.js +0 -27
- package/dist/es2017/features/list/native_srt_parser.d.ts +0 -24
- package/dist/es2017/features/list/native_srt_parser.d.ts.map +0 -1
- package/dist/es2017/features/list/native_srt_parser.js +0 -27
- package/dist/es2017/features/list/native_text_buffer.d.ts +0 -24
- package/dist/es2017/features/list/native_text_buffer.d.ts.map +0 -1
- package/dist/es2017/features/list/native_text_buffer.js +0 -25
- package/dist/es2017/features/list/native_ttml_parser.d.ts +0 -24
- package/dist/es2017/features/list/native_ttml_parser.d.ts.map +0 -1
- package/dist/es2017/features/list/native_ttml_parser.js +0 -27
- package/dist/es2017/features/list/native_vtt_parser.d.ts +0 -24
- package/dist/es2017/features/list/native_vtt_parser.d.ts.map +0 -1
- package/dist/es2017/features/list/native_vtt_parser.js +0 -28
- package/dist/es2017/features/list/smooth.d.ts +0 -24
- package/dist/es2017/features/list/smooth.d.ts.map +0 -1
- package/dist/es2017/features/list/smooth.js +0 -29
- package/dist/es2017/features/types.d.ts +0 -146
- package/dist/es2017/features/types.d.ts.map +0 -1
- package/dist/es2017/features/types.js +0 -16
- package/dist/es2017/index.d.ts +0 -18
- package/dist/es2017/index.d.ts.map +0 -1
- package/dist/es2017/index.js +0 -42
- package/dist/es2017/log.d.ts +0 -19
- package/dist/es2017/log.d.ts.map +0 -1
- package/dist/es2017/log.js +0 -19
- package/dist/es2017/main_thread/api/debug/buffer_graph.d.ts +0 -29
- package/dist/es2017/main_thread/api/debug/buffer_graph.d.ts.map +0 -1
- package/dist/es2017/main_thread/api/debug/buffer_graph.js +0 -175
- package/dist/es2017/main_thread/api/debug/buffer_size_graph.d.ts +0 -11
- package/dist/es2017/main_thread/api/debug/buffer_size_graph.d.ts.map +0 -1
- package/dist/es2017/main_thread/api/debug/buffer_size_graph.js +0 -102
- package/dist/es2017/main_thread/api/debug/constants.d.ts +0 -3
- package/dist/es2017/main_thread/api/debug/constants.d.ts.map +0 -1
- package/dist/es2017/main_thread/api/debug/constants.js +0 -2
- package/dist/es2017/main_thread/api/debug/index.d.ts +0 -3
- package/dist/es2017/main_thread/api/debug/index.d.ts.map +0 -1
- package/dist/es2017/main_thread/api/debug/index.js +0 -2
- package/dist/es2017/main_thread/api/debug/modules/general_info.d.ts +0 -4
- package/dist/es2017/main_thread/api/debug/modules/general_info.d.ts.map +0 -1
- package/dist/es2017/main_thread/api/debug/modules/general_info.js +0 -192
- package/dist/es2017/main_thread/api/debug/modules/segment_buffer_content.d.ts +0 -5
- package/dist/es2017/main_thread/api/debug/modules/segment_buffer_content.d.ts.map +0 -1
- package/dist/es2017/main_thread/api/debug/modules/segment_buffer_content.js +0 -169
- package/dist/es2017/main_thread/api/debug/modules/segment_buffer_size.d.ts +0 -4
- package/dist/es2017/main_thread/api/debug/modules/segment_buffer_size.d.ts.map +0 -1
- package/dist/es2017/main_thread/api/debug/modules/segment_buffer_size.js +0 -35
- package/dist/es2017/main_thread/api/debug/render.d.ts +0 -4
- package/dist/es2017/main_thread/api/debug/render.d.ts.map +0 -1
- package/dist/es2017/main_thread/api/debug/render.js +0 -32
- package/dist/es2017/main_thread/api/debug/utils.d.ts +0 -40
- package/dist/es2017/main_thread/api/debug/utils.d.ts.map +0 -1
- package/dist/es2017/main_thread/api/debug/utils.js +0 -54
- package/dist/es2017/main_thread/api/index.d.ts +0 -18
- package/dist/es2017/main_thread/api/index.d.ts.map +0 -1
- package/dist/es2017/main_thread/api/index.js +0 -17
- package/dist/es2017/main_thread/api/option_utils.d.ts +0 -162
- package/dist/es2017/main_thread/api/option_utils.d.ts.map +0 -1
- package/dist/es2017/main_thread/api/option_utils.js +0 -334
- package/dist/es2017/main_thread/api/public_api.d.ts +0 -995
- package/dist/es2017/main_thread/api/public_api.d.ts.map +0 -1
- package/dist/es2017/main_thread/api/public_api.js +0 -2684
- package/dist/es2017/main_thread/api/utils.d.ts +0 -67
- package/dist/es2017/main_thread/api/utils.d.ts.map +0 -1
- package/dist/es2017/main_thread/api/utils.js +0 -179
- package/dist/es2017/main_thread/decrypt/clear_on_stop.d.ts +0 -24
- package/dist/es2017/main_thread/decrypt/clear_on_stop.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/clear_on_stop.js +0 -42
- package/dist/es2017/main_thread/decrypt/content_decryptor.d.ts +0 -237
- package/dist/es2017/main_thread/decrypt/content_decryptor.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/content_decryptor.js +0 -921
- package/dist/es2017/main_thread/decrypt/create_or_load_session.d.ts +0 -65
- package/dist/es2017/main_thread/decrypt/create_or_load_session.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/create_or_load_session.js +0 -88
- package/dist/es2017/main_thread/decrypt/create_session.d.ts +0 -55
- package/dist/es2017/main_thread/decrypt/create_session.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/create_session.js +0 -152
- package/dist/es2017/main_thread/decrypt/dispose_decryption_resources.d.ts +0 -23
- package/dist/es2017/main_thread/decrypt/dispose_decryption_resources.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/dispose_decryption_resources.js +0 -24
- package/dist/es2017/main_thread/decrypt/find_key_system.d.ts +0 -86
- package/dist/es2017/main_thread/decrypt/find_key_system.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/find_key_system.js +0 -446
- package/dist/es2017/main_thread/decrypt/get_key_system_configuration.d.ts +0 -24
- package/dist/es2017/main_thread/decrypt/get_key_system_configuration.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/get_key_system_configuration.js +0 -32
- package/dist/es2017/main_thread/decrypt/get_media_keys.d.ts +0 -55
- package/dist/es2017/main_thread/decrypt/get_media_keys.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/get_media_keys.js +0 -114
- package/dist/es2017/main_thread/decrypt/index.d.ts +0 -27
- package/dist/es2017/main_thread/decrypt/index.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/index.js +0 -26
- package/dist/es2017/main_thread/decrypt/init_media_keys.d.ts +0 -30
- package/dist/es2017/main_thread/decrypt/init_media_keys.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/init_media_keys.js +0 -38
- package/dist/es2017/main_thread/decrypt/session_events_listener.d.ts +0 -77
- package/dist/es2017/main_thread/decrypt/session_events_listener.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/session_events_listener.js +0 -273
- package/dist/es2017/main_thread/decrypt/set_server_certificate.d.ts +0 -58
- package/dist/es2017/main_thread/decrypt/set_server_certificate.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/set_server_certificate.js +0 -96
- package/dist/es2017/main_thread/decrypt/types.d.ts +0 -380
- package/dist/es2017/main_thread/decrypt/types.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/types.js +0 -55
- package/dist/es2017/main_thread/decrypt/utils/are_init_values_compatible.d.ts +0 -35
- package/dist/es2017/main_thread/decrypt/utils/are_init_values_compatible.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/utils/are_init_values_compatible.js +0 -141
- package/dist/es2017/main_thread/decrypt/utils/check_key_statuses.d.ts +0 -54
- package/dist/es2017/main_thread/decrypt/utils/check_key_statuses.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/utils/check_key_statuses.js +0 -180
- package/dist/es2017/main_thread/decrypt/utils/clean_old_loaded_sessions.d.ts +0 -27
- package/dist/es2017/main_thread/decrypt/utils/clean_old_loaded_sessions.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/utils/clean_old_loaded_sessions.js +0 -42
- package/dist/es2017/main_thread/decrypt/utils/clean_old_stored_persistent_info.d.ts +0 -33
- package/dist/es2017/main_thread/decrypt/utils/clean_old_stored_persistent_info.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/utils/clean_old_stored_persistent_info.js +0 -43
- package/dist/es2017/main_thread/decrypt/utils/get_drm_system_id.d.ts +0 -21
- package/dist/es2017/main_thread/decrypt/utils/get_drm_system_id.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/utils/get_drm_system_id.js +0 -37
- package/dist/es2017/main_thread/decrypt/utils/init_data_values_container.d.ts +0 -70
- package/dist/es2017/main_thread/decrypt/utils/init_data_values_container.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/utils/init_data_values_container.js +0 -105
- package/dist/es2017/main_thread/decrypt/utils/is_compatible_codec_supported.d.ts +0 -14
- package/dist/es2017/main_thread/decrypt/utils/is_compatible_codec_supported.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/utils/is_compatible_codec_supported.js +0 -28
- package/dist/es2017/main_thread/decrypt/utils/is_session_usable.d.ts +0 -25
- package/dist/es2017/main_thread/decrypt/utils/is_session_usable.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/utils/is_session_usable.js +0 -54
- package/dist/es2017/main_thread/decrypt/utils/key_id_comparison.d.ts +0 -32
- package/dist/es2017/main_thread/decrypt/utils/key_id_comparison.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/utils/key_id_comparison.js +0 -48
- package/dist/es2017/main_thread/decrypt/utils/key_session_record.d.ts +0 -105
- package/dist/es2017/main_thread/decrypt/utils/key_session_record.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/utils/key_session_record.js +0 -152
- package/dist/es2017/main_thread/decrypt/utils/loaded_sessions_store.d.ts +0 -214
- package/dist/es2017/main_thread/decrypt/utils/loaded_sessions_store.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/utils/loaded_sessions_store.js +0 -382
- package/dist/es2017/main_thread/decrypt/utils/media_keys_attacher.d.ts +0 -85
- package/dist/es2017/main_thread/decrypt/utils/media_keys_attacher.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/utils/media_keys_attacher.js +0 -184
- package/dist/es2017/main_thread/decrypt/utils/persistent_sessions_store.d.ts +0 -93
- package/dist/es2017/main_thread/decrypt/utils/persistent_sessions_store.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/utils/persistent_sessions_store.js +0 -369
- package/dist/es2017/main_thread/decrypt/utils/serializable_bytes.d.ts +0 -45
- package/dist/es2017/main_thread/decrypt/utils/serializable_bytes.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/utils/serializable_bytes.js +0 -46
- package/dist/es2017/main_thread/decrypt/utils/server_certificate_store.d.ts +0 -65
- package/dist/es2017/main_thread/decrypt/utils/server_certificate_store.d.ts.map +0 -1
- package/dist/es2017/main_thread/decrypt/utils/server_certificate_store.js +0 -121
- package/dist/es2017/main_thread/init/directfile_content_initializer.d.ts +0 -113
- package/dist/es2017/main_thread/init/directfile_content_initializer.d.ts.map +0 -1
- package/dist/es2017/main_thread/init/directfile_content_initializer.js +0 -264
- package/dist/es2017/main_thread/init/index.d.ts +0 -18
- package/dist/es2017/main_thread/init/index.d.ts.map +0 -1
- package/dist/es2017/main_thread/init/index.js +0 -16
- package/dist/es2017/main_thread/init/media_source_content_initializer.d.ts +0 -260
- package/dist/es2017/main_thread/init/media_source_content_initializer.d.ts.map +0 -1
- package/dist/es2017/main_thread/init/media_source_content_initializer.js +0 -916
- package/dist/es2017/main_thread/init/multi_thread_content_initializer.d.ts +0 -308
- package/dist/es2017/main_thread/init/multi_thread_content_initializer.d.ts.map +0 -1
- package/dist/es2017/main_thread/init/multi_thread_content_initializer.js +0 -1559
- package/dist/es2017/main_thread/init/send_message.d.ts +0 -3
- package/dist/es2017/main_thread/init/send_message.d.ts.map +0 -1
- package/dist/es2017/main_thread/init/send_message.js +0 -10
- package/dist/es2017/main_thread/init/types.d.ts +0 -237
- package/dist/es2017/main_thread/init/types.d.ts.map +0 -1
- package/dist/es2017/main_thread/init/types.js +0 -29
- package/dist/es2017/main_thread/init/utils/create_core_playback_observer.d.ts +0 -96
- package/dist/es2017/main_thread/init/utils/create_core_playback_observer.d.ts.map +0 -1
- package/dist/es2017/main_thread/init/utils/create_core_playback_observer.js +0 -106
- package/dist/es2017/main_thread/init/utils/create_media_source.d.ts +0 -54
- package/dist/es2017/main_thread/init/utils/create_media_source.d.ts.map +0 -1
- package/dist/es2017/main_thread/init/utils/create_media_source.js +0 -138
- package/dist/es2017/main_thread/init/utils/get_initial_time.d.ts +0 -77
- package/dist/es2017/main_thread/init/utils/get_initial_time.d.ts.map +0 -1
- package/dist/es2017/main_thread/init/utils/get_initial_time.js +0 -149
- package/dist/es2017/main_thread/init/utils/get_loaded_reference.d.ts +0 -28
- package/dist/es2017/main_thread/init/utils/get_loaded_reference.d.ts.map +0 -1
- package/dist/es2017/main_thread/init/utils/get_loaded_reference.js +0 -63
- package/dist/es2017/main_thread/init/utils/initial_seek_and_play.d.ts +0 -63
- package/dist/es2017/main_thread/init/utils/initial_seek_and_play.d.ts.map +0 -1
- package/dist/es2017/main_thread/init/utils/initial_seek_and_play.js +0 -224
- package/dist/es2017/main_thread/init/utils/initialize_content_decryption.d.ts +0 -99
- package/dist/es2017/main_thread/init/utils/initialize_content_decryption.d.ts.map +0 -1
- package/dist/es2017/main_thread/init/utils/initialize_content_decryption.js +0 -118
- package/dist/es2017/main_thread/init/utils/main_thread_text_displayer_interface.d.ts +0 -36
- package/dist/es2017/main_thread/init/utils/main_thread_text_displayer_interface.d.ts.map +0 -1
- package/dist/es2017/main_thread/init/utils/main_thread_text_displayer_interface.js +0 -50
- package/dist/es2017/main_thread/init/utils/rebuffering_controller.d.ts +0 -115
- package/dist/es2017/main_thread/init/utils/rebuffering_controller.d.ts.map +0 -1
- package/dist/es2017/main_thread/init/utils/rebuffering_controller.js +0 -444
- package/dist/es2017/main_thread/init/utils/stream_events_emitter/are_same_stream_events.d.ts +0 -40
- package/dist/es2017/main_thread/init/utils/stream_events_emitter/are_same_stream_events.d.ts.map +0 -1
- package/dist/es2017/main_thread/init/utils/stream_events_emitter/are_same_stream_events.js +0 -33
- package/dist/es2017/main_thread/init/utils/stream_events_emitter/index.d.ts +0 -19
- package/dist/es2017/main_thread/init/utils/stream_events_emitter/index.d.ts.map +0 -1
- package/dist/es2017/main_thread/init/utils/stream_events_emitter/index.js +0 -17
- package/dist/es2017/main_thread/init/utils/stream_events_emitter/refresh_scheduled_events_list.d.ts +0 -26
- package/dist/es2017/main_thread/init/utils/stream_events_emitter/refresh_scheduled_events_list.d.ts.map +0 -1
- package/dist/es2017/main_thread/init/utils/stream_events_emitter/refresh_scheduled_events_list.js +0 -82
- package/dist/es2017/main_thread/init/utils/stream_events_emitter/stream_events_emitter.d.ts +0 -52
- package/dist/es2017/main_thread/init/utils/stream_events_emitter/stream_events_emitter.d.ts.map +0 -1
- package/dist/es2017/main_thread/init/utils/stream_events_emitter/stream_events_emitter.js +0 -173
- package/dist/es2017/main_thread/init/utils/stream_events_emitter/types.d.ts +0 -42
- package/dist/es2017/main_thread/init/utils/stream_events_emitter/types.d.ts.map +0 -1
- package/dist/es2017/main_thread/init/utils/stream_events_emitter/types.js +0 -16
- package/dist/es2017/main_thread/init/utils/throw_on_media_error.d.ts +0 -25
- package/dist/es2017/main_thread/init/utils/throw_on_media_error.d.ts.map +0 -1
- package/dist/es2017/main_thread/init/utils/throw_on_media_error.js +0 -63
- package/dist/es2017/main_thread/init/utils/update_manifest_codec_support.d.ts +0 -35
- package/dist/es2017/main_thread/init/utils/update_manifest_codec_support.d.ts.map +0 -1
- package/dist/es2017/main_thread/init/utils/update_manifest_codec_support.js +0 -147
- package/dist/es2017/main_thread/render_thumbnail.d.ts +0 -27
- package/dist/es2017/main_thread/render_thumbnail.d.ts.map +0 -1
- package/dist/es2017/main_thread/render_thumbnail.js +0 -198
- package/dist/es2017/main_thread/text_displayer/html/html_parsers.d.ts +0 -20
- package/dist/es2017/main_thread/text_displayer/html/html_parsers.d.ts.map +0 -1
- package/dist/es2017/main_thread/text_displayer/html/html_parsers.js +0 -22
- package/dist/es2017/main_thread/text_displayer/html/html_text_displayer.d.ts +0 -103
- package/dist/es2017/main_thread/text_displayer/html/html_text_displayer.d.ts.map +0 -1
- package/dist/es2017/main_thread/text_displayer/html/html_text_displayer.js +0 -308
- package/dist/es2017/main_thread/text_displayer/html/index.d.ts +0 -3
- package/dist/es2017/main_thread/text_displayer/html/index.d.ts.map +0 -1
- package/dist/es2017/main_thread/text_displayer/html/index.js +0 -2
- package/dist/es2017/main_thread/text_displayer/html/text_track_cues_store.d.ts +0 -66
- package/dist/es2017/main_thread/text_displayer/html/text_track_cues_store.d.ts.map +0 -1
- package/dist/es2017/main_thread/text_displayer/html/text_track_cues_store.js +0 -356
- package/dist/es2017/main_thread/text_displayer/html/update_proportional_elements.d.ts +0 -16
- package/dist/es2017/main_thread/text_displayer/html/update_proportional_elements.d.ts.map +0 -1
- package/dist/es2017/main_thread/text_displayer/html/update_proportional_elements.js +0 -61
- package/dist/es2017/main_thread/text_displayer/html/utils.d.ts +0 -55
- package/dist/es2017/main_thread/text_displayer/html/utils.d.ts.map +0 -1
- package/dist/es2017/main_thread/text_displayer/html/utils.js +0 -133
- package/dist/es2017/main_thread/text_displayer/index.d.ts +0 -3
- package/dist/es2017/main_thread/text_displayer/index.d.ts.map +0 -1
- package/dist/es2017/main_thread/text_displayer/index.js +0 -1
- package/dist/es2017/main_thread/text_displayer/manual_time_ranges.d.ts +0 -15
- package/dist/es2017/main_thread/text_displayer/manual_time_ranges.d.ts.map +0 -1
- package/dist/es2017/main_thread/text_displayer/manual_time_ranges.js +0 -44
- package/dist/es2017/main_thread/text_displayer/native/index.d.ts +0 -3
- package/dist/es2017/main_thread/text_displayer/native/index.d.ts.map +0 -1
- package/dist/es2017/main_thread/text_displayer/native/index.js +0 -2
- package/dist/es2017/main_thread/text_displayer/native/native_parsers.d.ts +0 -16
- package/dist/es2017/main_thread/text_displayer/native/native_parsers.d.ts.map +0 -1
- package/dist/es2017/main_thread/text_displayer/native/native_parsers.js +0 -22
- package/dist/es2017/main_thread/text_displayer/native/native_text_displayer.d.ts +0 -59
- package/dist/es2017/main_thread/text_displayer/native/native_text_displayer.d.ts.map +0 -1
- package/dist/es2017/main_thread/text_displayer/native/native_text_displayer.js +0 -200
- package/dist/es2017/main_thread/text_displayer/types.d.ts +0 -72
- package/dist/es2017/main_thread/text_displayer/types.d.ts.map +0 -1
- package/dist/es2017/main_thread/text_displayer/types.js +0 -1
- package/dist/es2017/main_thread/tracks_store/index.d.ts +0 -21
- package/dist/es2017/main_thread/tracks_store/index.d.ts.map +0 -1
- package/dist/es2017/main_thread/tracks_store/index.js +0 -18
- package/dist/es2017/main_thread/tracks_store/media_element_tracks_store.d.ts +0 -208
- package/dist/es2017/main_thread/tracks_store/media_element_tracks_store.d.ts.map +0 -1
- package/dist/es2017/main_thread/tracks_store/media_element_tracks_store.js +0 -681
- package/dist/es2017/main_thread/tracks_store/track_dispatcher.d.ts +0 -105
- package/dist/es2017/main_thread/tracks_store/track_dispatcher.d.ts.map +0 -1
- package/dist/es2017/main_thread/tracks_store/track_dispatcher.js +0 -153
- package/dist/es2017/main_thread/tracks_store/tracks_store.d.ts +0 -538
- package/dist/es2017/main_thread/tracks_store/tracks_store.d.ts.map +0 -1
- package/dist/es2017/main_thread/tracks_store/tracks_store.js +0 -1354
- package/dist/es2017/main_thread/types.d.ts +0 -6
- package/dist/es2017/main_thread/types.d.ts.map +0 -1
- package/dist/es2017/main_thread/types.js +0 -1
- package/dist/es2017/manifest/classes/adaptation.d.ts +0 -135
- package/dist/es2017/manifest/classes/adaptation.d.ts.map +0 -1
- package/dist/es2017/manifest/classes/adaptation.js +0 -219
- package/dist/es2017/manifest/classes/codec_support_cache.d.ts +0 -45
- package/dist/es2017/manifest/classes/codec_support_cache.d.ts.map +0 -1
- package/dist/es2017/manifest/classes/codec_support_cache.js +0 -58
- package/dist/es2017/manifest/classes/index.d.ts +0 -32
- package/dist/es2017/manifest/classes/index.d.ts.map +0 -1
- package/dist/es2017/manifest/classes/index.js +0 -24
- package/dist/es2017/manifest/classes/manifest.d.ts +0 -425
- package/dist/es2017/manifest/classes/manifest.d.ts.map +0 -1
- package/dist/es2017/manifest/classes/manifest.js +0 -436
- package/dist/es2017/manifest/classes/period.d.ts +0 -157
- package/dist/es2017/manifest/classes/period.d.ts.map +0 -1
- package/dist/es2017/manifest/classes/period.js +0 -215
- package/dist/es2017/manifest/classes/representation.d.ts +0 -271
- package/dist/es2017/manifest/classes/representation.d.ts.map +0 -1
- package/dist/es2017/manifest/classes/representation.js +0 -366
- package/dist/es2017/manifest/classes/representation_index/index.d.ts +0 -20
- package/dist/es2017/manifest/classes/representation_index/index.d.ts.map +0 -1
- package/dist/es2017/manifest/classes/representation_index/index.js +0 -17
- package/dist/es2017/manifest/classes/representation_index/static.d.ts +0 -117
- package/dist/es2017/manifest/classes/representation_index/static.d.ts.map +0 -1
- package/dist/es2017/manifest/classes/representation_index/static.js +0 -160
- package/dist/es2017/manifest/classes/representation_index/types.d.ts +0 -441
- package/dist/es2017/manifest/classes/representation_index/types.d.ts.map +0 -1
- package/dist/es2017/manifest/classes/representation_index/types.js +0 -16
- package/dist/es2017/manifest/classes/types.d.ts +0 -30
- package/dist/es2017/manifest/classes/types.d.ts.map +0 -1
- package/dist/es2017/manifest/classes/types.js +0 -30
- package/dist/es2017/manifest/classes/update_period_in_place.d.ts +0 -63
- package/dist/es2017/manifest/classes/update_period_in_place.d.ts.map +0 -1
- package/dist/es2017/manifest/classes/update_period_in_place.js +0 -168
- package/dist/es2017/manifest/classes/update_periods.d.ts +0 -51
- package/dist/es2017/manifest/classes/update_periods.d.ts.map +0 -1
- package/dist/es2017/manifest/classes/update_periods.js +0 -193
- package/dist/es2017/manifest/classes/utils.d.ts +0 -47
- package/dist/es2017/manifest/classes/utils.d.ts.map +0 -1
- package/dist/es2017/manifest/classes/utils.js +0 -45
- package/dist/es2017/manifest/index.d.ts +0 -17
- package/dist/es2017/manifest/index.d.ts.map +0 -1
- package/dist/es2017/manifest/index.js +0 -3
- package/dist/es2017/manifest/types.d.ts +0 -466
- package/dist/es2017/manifest/types.d.ts.map +0 -1
- package/dist/es2017/manifest/types.js +0 -1
- package/dist/es2017/manifest/utils.d.ts +0 -184
- package/dist/es2017/manifest/utils.d.ts.map +0 -1
- package/dist/es2017/manifest/utils.js +0 -538
- package/dist/es2017/minimal.d.ts +0 -21
- package/dist/es2017/minimal.d.ts.map +0 -1
- package/dist/es2017/minimal.js +0 -28
- package/dist/es2017/mse/index.d.ts +0 -3
- package/dist/es2017/mse/index.d.ts.map +0 -1
- package/dist/es2017/mse/index.js +0 -1
- package/dist/es2017/mse/main_media_source_interface.d.ts +0 -128
- package/dist/es2017/mse/main_media_source_interface.d.ts.map +0 -1
- package/dist/es2017/mse/main_media_source_interface.js +0 -497
- package/dist/es2017/mse/types.d.ts +0 -289
- package/dist/es2017/mse/types.d.ts.map +0 -1
- package/dist/es2017/mse/types.js +0 -1
- package/dist/es2017/mse/utils/end_of_stream.d.ts +0 -35
- package/dist/es2017/mse/utils/end_of_stream.d.ts.map +0 -1
- package/dist/es2017/mse/utils/end_of_stream.js +0 -92
- package/dist/es2017/mse/utils/media_source_duration_updater.d.ts +0 -60
- package/dist/es2017/mse/utils/media_source_duration_updater.d.ts.map +0 -1
- package/dist/es2017/mse/utils/media_source_duration_updater.js +0 -267
- package/dist/es2017/mse/worker_media_source_interface.d.ts +0 -106
- package/dist/es2017/mse/worker_media_source_interface.d.ts.map +0 -1
- package/dist/es2017/mse/worker_media_source_interface.js +0 -305
- package/dist/es2017/multithread_types.d.ts +0 -915
- package/dist/es2017/multithread_types.d.ts.map +0 -1
- package/dist/es2017/multithread_types.js +0 -6
- package/dist/es2017/parsers/containers/isobmff/constants.d.ts +0 -24
- package/dist/es2017/parsers/containers/isobmff/constants.d.ts.map +0 -1
- package/dist/es2017/parsers/containers/isobmff/constants.js +0 -23
- package/dist/es2017/parsers/containers/isobmff/create_box.d.ts +0 -31
- package/dist/es2017/parsers/containers/isobmff/create_box.d.ts.map +0 -1
- package/dist/es2017/parsers/containers/isobmff/create_box.js +0 -65
- package/dist/es2017/parsers/containers/isobmff/drm/index.d.ts +0 -17
- package/dist/es2017/parsers/containers/isobmff/drm/index.d.ts.map +0 -1
- package/dist/es2017/parsers/containers/isobmff/drm/index.js +0 -16
- package/dist/es2017/parsers/containers/isobmff/drm/playready.d.ts +0 -22
- package/dist/es2017/parsers/containers/isobmff/drm/playready.d.ts.map +0 -1
- package/dist/es2017/parsers/containers/isobmff/drm/playready.js +0 -35
- package/dist/es2017/parsers/containers/isobmff/extract_complete_chunks.d.ts +0 -30
- package/dist/es2017/parsers/containers/isobmff/extract_complete_chunks.d.ts.map +0 -1
- package/dist/es2017/parsers/containers/isobmff/extract_complete_chunks.js +0 -85
- package/dist/es2017/parsers/containers/isobmff/find_complete_box.d.ts +0 -26
- package/dist/es2017/parsers/containers/isobmff/find_complete_box.d.ts.map +0 -1
- package/dist/es2017/parsers/containers/isobmff/find_complete_box.js +0 -54
- package/dist/es2017/parsers/containers/isobmff/get_box.d.ts +0 -107
- package/dist/es2017/parsers/containers/isobmff/get_box.d.ts.map +0 -1
- package/dist/es2017/parsers/containers/isobmff/get_box.js +0 -224
- package/dist/es2017/parsers/containers/isobmff/index.d.ts +0 -26
- package/dist/es2017/parsers/containers/isobmff/index.d.ts.map +0 -1
- package/dist/es2017/parsers/containers/isobmff/index.js +0 -24
- package/dist/es2017/parsers/containers/isobmff/read.d.ts +0 -58
- package/dist/es2017/parsers/containers/isobmff/read.d.ts.map +0 -1
- package/dist/es2017/parsers/containers/isobmff/read.js +0 -87
- package/dist/es2017/parsers/containers/isobmff/take_pssh_out.d.ts +0 -42
- package/dist/es2017/parsers/containers/isobmff/take_pssh_out.d.ts.map +0 -1
- package/dist/es2017/parsers/containers/isobmff/take_pssh_out.js +0 -82
- package/dist/es2017/parsers/containers/isobmff/utils.d.ts +0 -143
- package/dist/es2017/parsers/containers/isobmff/utils.d.ts.map +0 -1
- package/dist/es2017/parsers/containers/isobmff/utils.js +0 -537
- package/dist/es2017/parsers/containers/matroska/index.d.ts +0 -18
- package/dist/es2017/parsers/containers/matroska/index.d.ts.map +0 -1
- package/dist/es2017/parsers/containers/matroska/index.js +0 -16
- package/dist/es2017/parsers/containers/matroska/utils.d.ts +0 -35
- package/dist/es2017/parsers/containers/matroska/utils.d.ts.map +0 -1
- package/dist/es2017/parsers/containers/matroska/utils.js +0 -256
- package/dist/es2017/parsers/images/bif.d.ts +0 -40
- package/dist/es2017/parsers/images/bif.d.ts.map +0 -1
- package/dist/es2017/parsers/images/bif.js +0 -101
- package/dist/es2017/parsers/manifest/dash/common/attach_trickmode_track.d.ts +0 -29
- package/dist/es2017/parsers/manifest/dash/common/attach_trickmode_track.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/attach_trickmode_track.js +0 -44
- package/dist/es2017/parsers/manifest/dash/common/content_protection_parser.d.ts +0 -99
- package/dist/es2017/parsers/manifest/dash/common/content_protection_parser.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/content_protection_parser.js +0 -198
- package/dist/es2017/parsers/manifest/dash/common/convert_supplemental_codecs.d.ts +0 -18
- package/dist/es2017/parsers/manifest/dash/common/convert_supplemental_codecs.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/convert_supplemental_codecs.js +0 -24
- package/dist/es2017/parsers/manifest/dash/common/flatten_overlapping_periods.d.ts +0 -44
- package/dist/es2017/parsers/manifest/dash/common/flatten_overlapping_periods.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/flatten_overlapping_periods.js +0 -82
- package/dist/es2017/parsers/manifest/dash/common/get_clock_offset.d.ts +0 -30
- package/dist/es2017/parsers/manifest/dash/common/get_clock_offset.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/get_clock_offset.js +0 -38
- package/dist/es2017/parsers/manifest/dash/common/get_hdr_information.d.ts +0 -51
- package/dist/es2017/parsers/manifest/dash/common/get_hdr_information.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/get_hdr_information.js +0 -67
- package/dist/es2017/parsers/manifest/dash/common/get_http_utc-timing_url.d.ts +0 -22
- package/dist/es2017/parsers/manifest/dash/common/get_http_utc-timing_url.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/get_http_utc-timing_url.js +0 -25
- package/dist/es2017/parsers/manifest/dash/common/get_minimum_and_maximum_positions.d.ts +0 -26
- package/dist/es2017/parsers/manifest/dash/common/get_minimum_and_maximum_positions.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/get_minimum_and_maximum_positions.js +0 -33
- package/dist/es2017/parsers/manifest/dash/common/get_periods_time_infos.d.ts +0 -44
- package/dist/es2017/parsers/manifest/dash/common/get_periods_time_infos.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/get_periods_time_infos.js +0 -68
- package/dist/es2017/parsers/manifest/dash/common/index.d.ts +0 -22
- package/dist/es2017/parsers/manifest/dash/common/index.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/index.js +0 -19
- package/dist/es2017/parsers/manifest/dash/common/indexes/base.d.ts +0 -267
- package/dist/es2017/parsers/manifest/dash/common/indexes/base.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/indexes/base.js +0 -285
- package/dist/es2017/parsers/manifest/dash/common/indexes/get_init_segment.d.ts +0 -33
- package/dist/es2017/parsers/manifest/dash/common/indexes/get_init_segment.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/indexes/get_init_segment.js +0 -44
- package/dist/es2017/parsers/manifest/dash/common/indexes/get_segments_from_timeline.d.ts +0 -40
- package/dist/es2017/parsers/manifest/dash/common/indexes/get_segments_from_timeline.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/indexes/get_segments_from_timeline.js +0 -109
- package/dist/es2017/parsers/manifest/dash/common/indexes/index.d.ts +0 -26
- package/dist/es2017/parsers/manifest/dash/common/indexes/index.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/indexes/index.js +0 -20
- package/dist/es2017/parsers/manifest/dash/common/indexes/list.d.ts +0 -209
- package/dist/es2017/parsers/manifest/dash/common/indexes/list.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/indexes/list.js +0 -227
- package/dist/es2017/parsers/manifest/dash/common/indexes/template.d.ts +0 -272
- package/dist/es2017/parsers/manifest/dash/common/indexes/template.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/indexes/template.js +0 -449
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/construct_timeline_from_elements.d.ts +0 -28
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/construct_timeline_from_elements.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/construct_timeline_from_elements.js +0 -43
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/construct_timeline_from_previous_timeline.d.ts +0 -19
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/construct_timeline_from_previous_timeline.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/construct_timeline_from_previous_timeline.js +0 -79
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/convert_element_to_index_segment.d.ts +0 -38
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/convert_element_to_index_segment.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/convert_element_to_index_segment.js +0 -63
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/find_first_common_start_time.d.ts +0 -43
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/find_first_common_start_time.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/find_first_common_start_time.js +0 -140
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/index.d.ts +0 -20
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/index.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/index.js +0 -17
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/parse_s_element.d.ts +0 -37
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/parse_s_element.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/parse_s_element.js +0 -65
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/timeline_representation_index.d.ts +0 -448
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/timeline_representation_index.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/indexes/timeline/timeline_representation_index.js +0 -685
- package/dist/es2017/parsers/manifest/dash/common/indexes/tokens.d.ts +0 -41
- package/dist/es2017/parsers/manifest/dash/common/indexes/tokens.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/indexes/tokens.js +0 -107
- package/dist/es2017/parsers/manifest/dash/common/indexes/utils.d.ts +0 -26
- package/dist/es2017/parsers/manifest/dash/common/indexes/utils.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/indexes/utils.js +0 -28
- package/dist/es2017/parsers/manifest/dash/common/infer_adaptation_type.d.ts +0 -48
- package/dist/es2017/parsers/manifest/dash/common/infer_adaptation_type.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/infer_adaptation_type.js +0 -154
- package/dist/es2017/parsers/manifest/dash/common/manifest_bounds_calculator.d.ts +0 -120
- package/dist/es2017/parsers/manifest/dash/common/manifest_bounds_calculator.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/manifest_bounds_calculator.js +0 -134
- package/dist/es2017/parsers/manifest/dash/common/parse_adaptation_sets.d.ts +0 -56
- package/dist/es2017/parsers/manifest/dash/common/parse_adaptation_sets.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/parse_adaptation_sets.js +0 -434
- package/dist/es2017/parsers/manifest/dash/common/parse_availability_start_time.d.ts +0 -24
- package/dist/es2017/parsers/manifest/dash/common/parse_availability_start_time.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/parse_availability_start_time.js +0 -31
- package/dist/es2017/parsers/manifest/dash/common/parse_mpd.d.ts +0 -99
- package/dist/es2017/parsers/manifest/dash/common/parse_mpd.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/parse_mpd.js +0 -291
- package/dist/es2017/parsers/manifest/dash/common/parse_periods.d.ts +0 -71
- package/dist/es2017/parsers/manifest/dash/common/parse_periods.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/parse_periods.js +0 -266
- package/dist/es2017/parsers/manifest/dash/common/parse_representation_index.d.ts +0 -87
- package/dist/es2017/parsers/manifest/dash/common/parse_representation_index.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/parse_representation_index.js +0 -100
- package/dist/es2017/parsers/manifest/dash/common/parse_representations.d.ts +0 -51
- package/dist/es2017/parsers/manifest/dash/common/parse_representations.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/parse_representations.js +0 -236
- package/dist/es2017/parsers/manifest/dash/common/resolve_base_urls.d.ts +0 -27
- package/dist/es2017/parsers/manifest/dash/common/resolve_base_urls.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/common/resolve_base_urls.js +0 -46
- package/dist/es2017/parsers/manifest/dash/index.d.ts +0 -17
- package/dist/es2017/parsers/manifest/dash/index.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/index.js +0 -16
- package/dist/es2017/parsers/manifest/dash/js-parser/index.d.ts +0 -18
- package/dist/es2017/parsers/manifest/dash/js-parser/index.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/js-parser/index.js +0 -17
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/AdaptationSet.d.ts +0 -25
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/AdaptationSet.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/AdaptationSet.js +0 -365
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/BaseURL.d.ts +0 -25
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/BaseURL.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/BaseURL.js +0 -30
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/ContentComponent.d.ts +0 -24
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/ContentComponent.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/ContentComponent.js +0 -45
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/ContentProtection.d.ts +0 -23
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/ContentProtection.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/ContentProtection.js +0 -84
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/EventStream.d.ts +0 -24
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/EventStream.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/EventStream.js +0 -101
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/Initialization.d.ts +0 -23
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/Initialization.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/Initialization.js +0 -45
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/MPD.d.ts +0 -24
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/MPD.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/MPD.js +0 -194
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/Period.d.ts +0 -24
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/Period.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/Period.js +0 -156
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/Representation.d.ts +0 -23
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/Representation.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/Representation.js +0 -227
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/SegmentBase.d.ts +0 -24
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/SegmentBase.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/SegmentBase.js +0 -111
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/SegmentList.d.ts +0 -23
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/SegmentList.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/SegmentList.js +0 -41
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/SegmentTemplate.d.ts +0 -25
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/SegmentTemplate.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/SegmentTemplate.js +0 -84
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/SegmentTimeline.d.ts +0 -23
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/SegmentTimeline.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/SegmentTimeline.js +0 -33
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/SegmentURL.d.ts +0 -25
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/SegmentURL.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/SegmentURL.js +0 -57
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/utils.d.ts +0 -176
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/utils.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/js-parser/node_parsers/utils.js +0 -309
- package/dist/es2017/parsers/manifest/dash/js-parser/parse_from_xml_string.d.ts +0 -25
- package/dist/es2017/parsers/manifest/dash/js-parser/parse_from_xml_string.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/js-parser/parse_from_xml_string.js +0 -114
- package/dist/es2017/parsers/manifest/dash/node_parser_types.d.ts +0 -404
- package/dist/es2017/parsers/manifest/dash/node_parser_types.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/node_parser_types.js +0 -16
- package/dist/es2017/parsers/manifest/dash/parsers_types.d.ts +0 -84
- package/dist/es2017/parsers/manifest/dash/parsers_types.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/parsers_types.js +0 -16
- package/dist/es2017/parsers/manifest/dash/wasm-parser/index.d.ts +0 -20
- package/dist/es2017/parsers/manifest/dash/wasm-parser/index.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/wasm-parser/index.js +0 -17
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/dash-wasm-parser.d.ts +0 -112
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/dash-wasm-parser.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/dash-wasm-parser.js +0 -355
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/AdaptationSet.d.ts +0 -33
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/AdaptationSet.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/AdaptationSet.js +0 -272
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/BaseURL.d.ts +0 -25
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/BaseURL.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/BaseURL.js +0 -30
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/ContentComponent.d.ts +0 -25
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/ContentComponent.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/ContentComponent.js +0 -41
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/ContentProtection.d.ts +0 -24
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/ContentProtection.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/ContentProtection.js +0 -58
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/EventStream.d.ts +0 -34
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/EventStream.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/EventStream.js +0 -112
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/Label.d.ts +0 -4
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/Label.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/Label.js +0 -9
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/MPD.d.ts +0 -29
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/MPD.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/MPD.js +0 -164
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/Period.d.ts +0 -34
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/Period.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/Period.js +0 -148
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/Representation.d.ts +0 -33
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/Representation.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/Representation.js +0 -179
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/Scheme.d.ts +0 -25
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/Scheme.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/Scheme.js +0 -35
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/SegmentBase.d.ts +0 -19
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/SegmentBase.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/SegmentBase.js +0 -88
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/SegmentList.d.ts +0 -27
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/SegmentList.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/SegmentList.js +0 -45
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/SegmentTemplate.d.ts +0 -19
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/SegmentTemplate.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/SegmentTemplate.js +0 -101
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/SegmentUrl.d.ts +0 -26
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/SegmentUrl.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/SegmentUrl.js +0 -52
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/XLink.d.ts +0 -30
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/XLink.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/XLink.js +0 -47
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/index.d.ts +0 -17
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/index.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/index.js +0 -16
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/root.d.ts +0 -28
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/root.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/generators/root.js +0 -50
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/parsers_stack.d.ts +0 -39
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/parsers_stack.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/parsers_stack.js +0 -58
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/types.d.ts +0 -149
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/types.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/types.js +0 -16
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/utils.d.ts +0 -30
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/utils.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/dash/wasm-parser/ts/utils.js +0 -40
- package/dist/es2017/parsers/manifest/index.d.ts +0 -17
- package/dist/es2017/parsers/manifest/index.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/index.js +0 -16
- package/dist/es2017/parsers/manifest/local/index.d.ts +0 -19
- package/dist/es2017/parsers/manifest/local/index.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/local/index.js +0 -17
- package/dist/es2017/parsers/manifest/local/parse_local_manifest.d.ts +0 -23
- package/dist/es2017/parsers/manifest/local/parse_local_manifest.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/local/parse_local_manifest.js +0 -133
- package/dist/es2017/parsers/manifest/local/representation_index.d.ts +0 -99
- package/dist/es2017/parsers/manifest/local/representation_index.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/local/representation_index.js +0 -243
- package/dist/es2017/parsers/manifest/local/types.d.ts +0 -288
- package/dist/es2017/parsers/manifest/local/types.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/local/types.js +0 -16
- package/dist/es2017/parsers/manifest/metaplaylist/index.d.ts +0 -20
- package/dist/es2017/parsers/manifest/metaplaylist/index.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/metaplaylist/index.js +0 -17
- package/dist/es2017/parsers/manifest/metaplaylist/metaplaylist_parser.d.ts +0 -65
- package/dist/es2017/parsers/manifest/metaplaylist/metaplaylist_parser.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/metaplaylist/metaplaylist_parser.js +0 -265
- package/dist/es2017/parsers/manifest/metaplaylist/representation_index.d.ts +0 -165
- package/dist/es2017/parsers/manifest/metaplaylist/representation_index.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/metaplaylist/representation_index.js +0 -234
- package/dist/es2017/parsers/manifest/smooth/create_parser.d.ts +0 -34
- package/dist/es2017/parsers/manifest/smooth/create_parser.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/smooth/create_parser.js +0 -516
- package/dist/es2017/parsers/manifest/smooth/get_codecs.d.ts +0 -27
- package/dist/es2017/parsers/manifest/smooth/get_codecs.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/smooth/get_codecs.js +0 -50
- package/dist/es2017/parsers/manifest/smooth/index.d.ts +0 -22
- package/dist/es2017/parsers/manifest/smooth/index.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/smooth/index.js +0 -19
- package/dist/es2017/parsers/manifest/smooth/parse_C_nodes.d.ts +0 -27
- package/dist/es2017/parsers/manifest/smooth/parse_C_nodes.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/smooth/parse_C_nodes.js +0 -60
- package/dist/es2017/parsers/manifest/smooth/parse_protection_node.d.ts +0 -30
- package/dist/es2017/parsers/manifest/smooth/parse_protection_node.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/smooth/parse_protection_node.js +0 -62
- package/dist/es2017/parsers/manifest/smooth/representation_index.d.ts +0 -242
- package/dist/es2017/parsers/manifest/smooth/representation_index.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/smooth/representation_index.js +0 -420
- package/dist/es2017/parsers/manifest/smooth/shared_smooth_segment_timeline.d.ts +0 -120
- package/dist/es2017/parsers/manifest/smooth/shared_smooth_segment_timeline.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/smooth/shared_smooth_segment_timeline.js +0 -156
- package/dist/es2017/parsers/manifest/smooth/utils/add_segment_infos.d.ts +0 -39
- package/dist/es2017/parsers/manifest/smooth/utils/add_segment_infos.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/smooth/utils/add_segment_infos.js +0 -63
- package/dist/es2017/parsers/manifest/smooth/utils/parseBoolean.d.ts +0 -21
- package/dist/es2017/parsers/manifest/smooth/utils/parseBoolean.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/smooth/utils/parseBoolean.js +0 -30
- package/dist/es2017/parsers/manifest/smooth/utils/reduceChildren.d.ts +0 -24
- package/dist/es2017/parsers/manifest/smooth/utils/reduceChildren.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/smooth/utils/reduceChildren.js +0 -31
- package/dist/es2017/parsers/manifest/smooth/utils/tokens.d.ts +0 -29
- package/dist/es2017/parsers/manifest/smooth/utils/tokens.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/smooth/utils/tokens.js +0 -34
- package/dist/es2017/parsers/manifest/types.d.ts +0 -443
- package/dist/es2017/parsers/manifest/types.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/types.js +0 -16
- package/dist/es2017/parsers/manifest/utils/check_manifest_ids.d.ts +0 -26
- package/dist/es2017/parsers/manifest/utils/check_manifest_ids.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/utils/check_manifest_ids.js +0 -80
- package/dist/es2017/parsers/manifest/utils/clear_timeline_from_position.d.ts +0 -26
- package/dist/es2017/parsers/manifest/utils/clear_timeline_from_position.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/utils/clear_timeline_from_position.js +0 -73
- package/dist/es2017/parsers/manifest/utils/get_first_time_from_adaptation.d.ts +0 -28
- package/dist/es2017/parsers/manifest/utils/get_first_time_from_adaptation.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/utils/get_first_time_from_adaptation.js +0 -44
- package/dist/es2017/parsers/manifest/utils/get_last_time_from_adaptation.d.ts +0 -30
- package/dist/es2017/parsers/manifest/utils/get_last_time_from_adaptation.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/utils/get_last_time_from_adaptation.js +0 -46
- package/dist/es2017/parsers/manifest/utils/get_maximum_positions.d.ts +0 -25
- package/dist/es2017/parsers/manifest/utils/get_maximum_positions.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/utils/get_maximum_positions.js +0 -66
- package/dist/es2017/parsers/manifest/utils/get_minimum_position.d.ts +0 -22
- package/dist/es2017/parsers/manifest/utils/get_minimum_position.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/utils/get_minimum_position.js +0 -62
- package/dist/es2017/parsers/manifest/utils/index_helpers.d.ts +0 -89
- package/dist/es2017/parsers/manifest/utils/index_helpers.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/utils/index_helpers.js +0 -146
- package/dist/es2017/parsers/manifest/utils/update_segment_timeline.d.ts +0 -34
- package/dist/es2017/parsers/manifest/utils/update_segment_timeline.d.ts.map +0 -1
- package/dist/es2017/parsers/manifest/utils/update_segment_timeline.js +0 -129
- package/dist/es2017/parsers/texttracks/index.d.ts +0 -17
- package/dist/es2017/parsers/texttracks/index.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/index.js +0 -16
- package/dist/es2017/parsers/texttracks/sami/html.d.ts +0 -32
- package/dist/es2017/parsers/texttracks/sami/html.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/sami/html.js +0 -201
- package/dist/es2017/parsers/texttracks/sami/native.d.ts +0 -37
- package/dist/es2017/parsers/texttracks/sami/native.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/sami/native.js +0 -165
- package/dist/es2017/parsers/texttracks/srt/find_end_of_cue_block.d.ts +0 -30
- package/dist/es2017/parsers/texttracks/srt/find_end_of_cue_block.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/srt/find_end_of_cue_block.js +0 -39
- package/dist/es2017/parsers/texttracks/srt/get_cue_blocks.d.ts +0 -23
- package/dist/es2017/parsers/texttracks/srt/get_cue_blocks.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/srt/get_cue_blocks.js +0 -47
- package/dist/es2017/parsers/texttracks/srt/html.d.ts +0 -28
- package/dist/es2017/parsers/texttracks/srt/html.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/srt/html.js +0 -167
- package/dist/es2017/parsers/texttracks/srt/native.d.ts +0 -30
- package/dist/es2017/parsers/texttracks/srt/native.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/srt/native.js +0 -63
- package/dist/es2017/parsers/texttracks/srt/parse_cue.d.ts +0 -31
- package/dist/es2017/parsers/texttracks/srt/parse_cue.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/srt/parse_cue.js +0 -55
- package/dist/es2017/parsers/texttracks/srt/parse_timestamp.d.ts +0 -22
- package/dist/es2017/parsers/texttracks/srt/parse_timestamp.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/srt/parse_timestamp.js +0 -33
- package/dist/es2017/parsers/texttracks/ttml/get_parameters.d.ts +0 -33
- package/dist/es2017/parsers/texttracks/ttml/get_parameters.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/ttml/get_parameters.js +0 -87
- package/dist/es2017/parsers/texttracks/ttml/get_styling.d.ts +0 -42
- package/dist/es2017/parsers/texttracks/ttml/get_styling.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/ttml/get_styling.js +0 -127
- package/dist/es2017/parsers/texttracks/ttml/get_time_delimiters.d.ts +0 -27
- package/dist/es2017/parsers/texttracks/ttml/get_time_delimiters.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/ttml/get_time_delimiters.js +0 -40
- package/dist/es2017/parsers/texttracks/ttml/html/apply_default_ttml_paragraph_style.d.ts +0 -49
- package/dist/es2017/parsers/texttracks/ttml/html/apply_default_ttml_paragraph_style.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/ttml/html/apply_default_ttml_paragraph_style.js +0 -61
- package/dist/es2017/parsers/texttracks/ttml/html/apply_extent.d.ts +0 -22
- package/dist/es2017/parsers/texttracks/ttml/html/apply_extent.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/ttml/html/apply_extent.js +0 -57
- package/dist/es2017/parsers/texttracks/ttml/html/apply_font_size.d.ts +0 -22
- package/dist/es2017/parsers/texttracks/ttml/html/apply_font_size.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/ttml/html/apply_font_size.js +0 -56
- package/dist/es2017/parsers/texttracks/ttml/html/apply_line_height.d.ts +0 -21
- package/dist/es2017/parsers/texttracks/ttml/html/apply_line_height.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/ttml/html/apply_line_height.js +0 -45
- package/dist/es2017/parsers/texttracks/ttml/html/apply_origin.d.ts +0 -21
- package/dist/es2017/parsers/texttracks/ttml/html/apply_origin.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/ttml/html/apply_origin.js +0 -56
- package/dist/es2017/parsers/texttracks/ttml/html/apply_padding.d.ts +0 -21
- package/dist/es2017/parsers/texttracks/ttml/html/apply_padding.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/ttml/html/apply_padding.js +0 -135
- package/dist/es2017/parsers/texttracks/ttml/html/create_element.d.ts +0 -33
- package/dist/es2017/parsers/texttracks/ttml/html/create_element.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/ttml/html/create_element.js +0 -448
- package/dist/es2017/parsers/texttracks/ttml/html/generate_css_test_outline.d.ts +0 -27
- package/dist/es2017/parsers/texttracks/ttml/html/generate_css_test_outline.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/ttml/html/generate_css_test_outline.js +0 -41
- package/dist/es2017/parsers/texttracks/ttml/html/index.d.ts +0 -22
- package/dist/es2017/parsers/texttracks/ttml/html/index.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/ttml/html/index.js +0 -21
- package/dist/es2017/parsers/texttracks/ttml/html/parse_cue.d.ts +0 -27
- package/dist/es2017/parsers/texttracks/ttml/html/parse_cue.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/ttml/html/parse_cue.js +0 -40
- package/dist/es2017/parsers/texttracks/ttml/html/parse_ttml_to_div.d.ts +0 -36
- package/dist/es2017/parsers/texttracks/ttml/html/parse_ttml_to_div.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/ttml/html/parse_ttml_to_div.js +0 -62
- package/dist/es2017/parsers/texttracks/ttml/html/ttml_color_to_css_color.d.ts +0 -22
- package/dist/es2017/parsers/texttracks/ttml/html/ttml_color_to_css_color.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/ttml/html/ttml_color_to_css_color.js +0 -73
- package/dist/es2017/parsers/texttracks/ttml/native/index.d.ts +0 -22
- package/dist/es2017/parsers/texttracks/ttml/native/index.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/ttml/native/index.js +0 -21
- package/dist/es2017/parsers/texttracks/ttml/native/parse_cue.d.ts +0 -25
- package/dist/es2017/parsers/texttracks/ttml/native/parse_cue.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/ttml/native/parse_cue.js +0 -197
- package/dist/es2017/parsers/texttracks/ttml/native/parse_ttml_to_vtt.d.ts +0 -24
- package/dist/es2017/parsers/texttracks/ttml/native/parse_ttml_to_vtt.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/ttml/native/parse_ttml_to_vtt.js +0 -45
- package/dist/es2017/parsers/texttracks/ttml/parse_ttml.d.ts +0 -44
- package/dist/es2017/parsers/texttracks/ttml/parse_ttml.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/ttml/parse_ttml.js +0 -156
- package/dist/es2017/parsers/texttracks/ttml/regexps.d.ts +0 -29
- package/dist/es2017/parsers/texttracks/ttml/regexps.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/ttml/regexps.js +0 -35
- package/dist/es2017/parsers/texttracks/ttml/resolve_styles_inheritance.d.ts +0 -50
- package/dist/es2017/parsers/texttracks/ttml/resolve_styles_inheritance.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/ttml/resolve_styles_inheritance.js +0 -79
- package/dist/es2017/parsers/texttracks/ttml/time_parsing.d.ts +0 -31
- package/dist/es2017/parsers/texttracks/ttml/time_parsing.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/ttml/time_parsing.js +0 -124
- package/dist/es2017/parsers/texttracks/ttml/xml_utils.d.ts +0 -71
- package/dist/es2017/parsers/texttracks/ttml/xml_utils.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/ttml/xml_utils.js +0 -150
- package/dist/es2017/parsers/texttracks/types.d.ts +0 -80
- package/dist/es2017/parsers/texttracks/types.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/types.js +0 -16
- package/dist/es2017/parsers/texttracks/webvtt/create_default_style_elements.d.ts +0 -3
- package/dist/es2017/parsers/texttracks/webvtt/create_default_style_elements.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/webvtt/create_default_style_elements.js +0 -22
- package/dist/es2017/parsers/texttracks/webvtt/get_cue_blocks.d.ts +0 -25
- package/dist/es2017/parsers/texttracks/webvtt/get_cue_blocks.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/webvtt/get_cue_blocks.js +0 -44
- package/dist/es2017/parsers/texttracks/webvtt/get_style_blocks.d.ts +0 -25
- package/dist/es2017/parsers/texttracks/webvtt/get_style_blocks.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/webvtt/get_style_blocks.js +0 -52
- package/dist/es2017/parsers/texttracks/webvtt/html/convert_payload_to_html.d.ts +0 -23
- package/dist/es2017/parsers/texttracks/webvtt/html/convert_payload_to_html.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/webvtt/html/convert_payload_to_html.js +0 -35
- package/dist/es2017/parsers/texttracks/webvtt/html/create_style_attribute.d.ts +0 -22
- package/dist/es2017/parsers/texttracks/webvtt/html/create_style_attribute.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/webvtt/html/create_style_attribute.js +0 -166
- package/dist/es2017/parsers/texttracks/webvtt/html/create_styled_element.d.ts +0 -25
- package/dist/es2017/parsers/texttracks/webvtt/html/create_styled_element.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/webvtt/html/create_styled_element.js +0 -81
- package/dist/es2017/parsers/texttracks/webvtt/html/index.d.ts +0 -28
- package/dist/es2017/parsers/texttracks/webvtt/html/index.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/webvtt/html/index.js +0 -26
- package/dist/es2017/parsers/texttracks/webvtt/html/parse_webvtt_mp4.d.ts +0 -13
- package/dist/es2017/parsers/texttracks/webvtt/html/parse_webvtt_mp4.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/webvtt/html/parse_webvtt_mp4.js +0 -18
- package/dist/es2017/parsers/texttracks/webvtt/html/parse_webvtt_plain_text.d.ts +0 -33
- package/dist/es2017/parsers/texttracks/webvtt/html/parse_webvtt_plain_text.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/webvtt/html/parse_webvtt_plain_text.js +0 -66
- package/dist/es2017/parsers/texttracks/webvtt/html/to_html.d.ts +0 -50
- package/dist/es2017/parsers/texttracks/webvtt/html/to_html.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/webvtt/html/to_html.js +0 -70
- package/dist/es2017/parsers/texttracks/webvtt/native/index.d.ts +0 -23
- package/dist/es2017/parsers/texttracks/webvtt/native/index.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/webvtt/native/index.js +0 -22
- package/dist/es2017/parsers/texttracks/webvtt/native/parse_vtt_plain_text_to_cues.d.ts +0 -30
- package/dist/es2017/parsers/texttracks/webvtt/native/parse_vtt_plain_text_to_cues.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/webvtt/native/parse_vtt_plain_text_to_cues.js +0 -69
- package/dist/es2017/parsers/texttracks/webvtt/native/parse_webvtt_mp4_to_cues.d.ts +0 -13
- package/dist/es2017/parsers/texttracks/webvtt/native/parse_webvtt_mp4_to_cues.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/webvtt/native/parse_webvtt_mp4_to_cues.js +0 -20
- package/dist/es2017/parsers/texttracks/webvtt/native/set_settings_on_cue.d.ts +0 -24
- package/dist/es2017/parsers/texttracks/webvtt/native/set_settings_on_cue.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/webvtt/native/set_settings_on_cue.js +0 -80
- package/dist/es2017/parsers/texttracks/webvtt/native/to_native_cue.d.ts +0 -33
- package/dist/es2017/parsers/texttracks/webvtt/native/to_native_cue.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/webvtt/native/to_native_cue.js +0 -27
- package/dist/es2017/parsers/texttracks/webvtt/parse_cue_block.d.ts +0 -40
- package/dist/es2017/parsers/texttracks/webvtt/parse_cue_block.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/webvtt/parse_cue_block.js +0 -100
- package/dist/es2017/parsers/texttracks/webvtt/parse_mp4_embedded_wvtt.d.ts +0 -22
- package/dist/es2017/parsers/texttracks/webvtt/parse_mp4_embedded_wvtt.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/webvtt/parse_mp4_embedded_wvtt.js +0 -129
- package/dist/es2017/parsers/texttracks/webvtt/parse_style_block.d.ts +0 -28
- package/dist/es2017/parsers/texttracks/webvtt/parse_style_block.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/webvtt/parse_style_block.js +0 -66
- package/dist/es2017/parsers/texttracks/webvtt/parse_timestamp.d.ts +0 -22
- package/dist/es2017/parsers/texttracks/webvtt/parse_timestamp.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/webvtt/parse_timestamp.js +0 -33
- package/dist/es2017/parsers/texttracks/webvtt/utils.d.ts +0 -58
- package/dist/es2017/parsers/texttracks/webvtt/utils.d.ts.map +0 -1
- package/dist/es2017/parsers/texttracks/webvtt/utils.js +0 -114
- package/dist/es2017/playback_observer/index.d.ts +0 -7
- package/dist/es2017/playback_observer/index.d.ts.map +0 -1
- package/dist/es2017/playback_observer/index.js +0 -2
- package/dist/es2017/playback_observer/media_element_playback_observer.d.ts +0 -285
- package/dist/es2017/playback_observer/media_element_playback_observer.d.ts.map +0 -1
- package/dist/es2017/playback_observer/media_element_playback_observer.js +0 -832
- package/dist/es2017/playback_observer/types.d.ts +0 -226
- package/dist/es2017/playback_observer/types.d.ts.map +0 -1
- package/dist/es2017/playback_observer/types.js +0 -1
- package/dist/es2017/playback_observer/utils/generate_read_only_observer.d.ts +0 -12
- package/dist/es2017/playback_observer/utils/generate_read_only_observer.d.ts.map +0 -1
- package/dist/es2017/playback_observer/utils/generate_read_only_observer.js +0 -39
- package/dist/es2017/playback_observer/utils/observation_position.d.ts +0 -99
- package/dist/es2017/playback_observer/utils/observation_position.d.ts.map +0 -1
- package/dist/es2017/playback_observer/utils/observation_position.js +0 -95
- package/dist/es2017/playback_observer/worker_playback_observer.d.ts +0 -85
- package/dist/es2017/playback_observer/worker_playback_observer.d.ts.map +0 -1
- package/dist/es2017/playback_observer/worker_playback_observer.js +0 -43
- package/dist/es2017/public_types.d.ts +0 -1279
- package/dist/es2017/public_types.d.ts.map +0 -1
- package/dist/es2017/public_types.js +0 -5
- package/dist/es2017/tools/TextTrackRenderer/index.d.ts +0 -24
- package/dist/es2017/tools/TextTrackRenderer/index.d.ts.map +0 -1
- package/dist/es2017/tools/TextTrackRenderer/index.js +0 -22
- package/dist/es2017/tools/TextTrackRenderer/text_track_renderer.d.ts +0 -77
- package/dist/es2017/tools/TextTrackRenderer/text_track_renderer.d.ts.map +0 -1
- package/dist/es2017/tools/TextTrackRenderer/text_track_renderer.js +0 -77
- package/dist/es2017/tools/index.d.ts +0 -20
- package/dist/es2017/tools/index.d.ts.map +0 -1
- package/dist/es2017/tools/index.js +0 -20
- package/dist/es2017/tools/parseBIFThumbnails/index.d.ts +0 -30
- package/dist/es2017/tools/parseBIFThumbnails/index.d.ts.map +0 -1
- package/dist/es2017/tools/parseBIFThumbnails/index.js +0 -30
- package/dist/es2017/tools/string_utils/index.d.ts +0 -17
- package/dist/es2017/tools/string_utils/index.d.ts.map +0 -1
- package/dist/es2017/tools/string_utils/index.js +0 -16
- package/dist/es2017/transports/dash/construct_segment_url.d.ts +0 -19
- package/dist/es2017/transports/dash/construct_segment_url.d.ts.map +0 -1
- package/dist/es2017/transports/dash/construct_segment_url.js +0 -25
- package/dist/es2017/transports/dash/get_events_out_of_emsgs.d.ts +0 -29
- package/dist/es2017/transports/dash/get_events_out_of_emsgs.d.ts.map +0 -1
- package/dist/es2017/transports/dash/get_events_out_of_emsgs.js +0 -93
- package/dist/es2017/transports/dash/index.d.ts +0 -22
- package/dist/es2017/transports/dash/index.d.ts.map +0 -1
- package/dist/es2017/transports/dash/index.js +0 -21
- package/dist/es2017/transports/dash/init_segment_loader.d.ts +0 -29
- package/dist/es2017/transports/dash/init_segment_loader.d.ts.map +0 -1
- package/dist/es2017/transports/dash/init_segment_loader.js +0 -104
- package/dist/es2017/transports/dash/integrity_checks.d.ts +0 -18
- package/dist/es2017/transports/dash/integrity_checks.d.ts.map +0 -1
- package/dist/es2017/transports/dash/integrity_checks.js +0 -150
- package/dist/es2017/transports/dash/load_chunked_segment_data.d.ts +0 -40
- package/dist/es2017/transports/dash/load_chunked_segment_data.d.ts.map +0 -1
- package/dist/es2017/transports/dash/load_chunked_segment_data.js +0 -77
- package/dist/es2017/transports/dash/manifest_parser.d.ts +0 -19
- package/dist/es2017/transports/dash/manifest_parser.d.ts.map +0 -1
- package/dist/es2017/transports/dash/manifest_parser.js +0 -295
- package/dist/es2017/transports/dash/pipelines.d.ts +0 -24
- package/dist/es2017/transports/dash/pipelines.d.ts.map +0 -1
- package/dist/es2017/transports/dash/pipelines.js +0 -65
- package/dist/es2017/transports/dash/segment_loader.d.ts +0 -39
- package/dist/es2017/transports/dash/segment_loader.d.ts.map +0 -1
- package/dist/es2017/transports/dash/segment_loader.js +0 -214
- package/dist/es2017/transports/dash/segment_parser.d.ts +0 -24
- package/dist/es2017/transports/dash/segment_parser.d.ts.map +0 -1
- package/dist/es2017/transports/dash/segment_parser.js +0 -156
- package/dist/es2017/transports/dash/text_loader.d.ts +0 -26
- package/dist/es2017/transports/dash/text_loader.d.ts.map +0 -1
- package/dist/es2017/transports/dash/text_loader.js +0 -106
- package/dist/es2017/transports/dash/text_parser.d.ts +0 -26
- package/dist/es2017/transports/dash/text_parser.d.ts.map +0 -1
- package/dist/es2017/transports/dash/text_parser.js +0 -190
- package/dist/es2017/transports/dash/thumbnails.d.ts +0 -21
- package/dist/es2017/transports/dash/thumbnails.d.ts.map +0 -1
- package/dist/es2017/transports/dash/thumbnails.js +0 -72
- package/dist/es2017/transports/index.d.ts +0 -17
- package/dist/es2017/transports/index.d.ts.map +0 -1
- package/dist/es2017/transports/index.js +0 -16
- package/dist/es2017/transports/local/index.d.ts +0 -18
- package/dist/es2017/transports/local/index.d.ts.map +0 -1
- package/dist/es2017/transports/local/index.js +0 -17
- package/dist/es2017/transports/local/pipelines.d.ts +0 -23
- package/dist/es2017/transports/local/pipelines.d.ts.map +0 -1
- package/dist/es2017/transports/local/pipelines.js +0 -76
- package/dist/es2017/transports/local/segment_loader.d.ts +0 -29
- package/dist/es2017/transports/local/segment_loader.d.ts.map +0 -1
- package/dist/es2017/transports/local/segment_loader.js +0 -152
- package/dist/es2017/transports/local/segment_parser.d.ts +0 -21
- package/dist/es2017/transports/local/segment_parser.d.ts.map +0 -1
- package/dist/es2017/transports/local/segment_parser.js +0 -87
- package/dist/es2017/transports/local/text_parser.d.ts +0 -28
- package/dist/es2017/transports/local/text_parser.d.ts.map +0 -1
- package/dist/es2017/transports/local/text_parser.js +0 -162
- package/dist/es2017/transports/metaplaylist/index.d.ts +0 -22
- package/dist/es2017/transports/metaplaylist/index.d.ts.map +0 -1
- package/dist/es2017/transports/metaplaylist/index.js +0 -21
- package/dist/es2017/transports/metaplaylist/manifest_loader.d.ts +0 -27
- package/dist/es2017/transports/metaplaylist/manifest_loader.d.ts.map +0 -1
- package/dist/es2017/transports/metaplaylist/manifest_loader.js +0 -53
- package/dist/es2017/transports/metaplaylist/pipelines.d.ts +0 -18
- package/dist/es2017/transports/metaplaylist/pipelines.d.ts.map +0 -1
- package/dist/es2017/transports/metaplaylist/pipelines.js +0 -250
- package/dist/es2017/transports/smooth/extract_timings_infos.d.ts +0 -63
- package/dist/es2017/transports/smooth/extract_timings_infos.d.ts.map +0 -1
- package/dist/es2017/transports/smooth/extract_timings_infos.js +0 -79
- package/dist/es2017/transports/smooth/index.d.ts +0 -22
- package/dist/es2017/transports/smooth/index.d.ts.map +0 -1
- package/dist/es2017/transports/smooth/index.js +0 -21
- package/dist/es2017/transports/smooth/is_mp4_embedded_track.d.ts +0 -23
- package/dist/es2017/transports/smooth/is_mp4_embedded_track.d.ts.map +0 -1
- package/dist/es2017/transports/smooth/is_mp4_embedded_track.js +0 -24
- package/dist/es2017/transports/smooth/isobmff/create_audio_init_segment.d.ts +0 -29
- package/dist/es2017/transports/smooth/isobmff/create_audio_init_segment.d.ts.map +0 -1
- package/dist/es2017/transports/smooth/isobmff/create_audio_init_segment.js +0 -51
- package/dist/es2017/transports/smooth/isobmff/create_boxes.d.ts +0 -172
- package/dist/es2017/transports/smooth/isobmff/create_boxes.d.ts.map +0 -1
- package/dist/es2017/transports/smooth/isobmff/create_boxes.js +0 -319
- package/dist/es2017/transports/smooth/isobmff/create_init_segment.d.ts +0 -32
- package/dist/es2017/transports/smooth/isobmff/create_init_segment.d.ts.map +0 -1
- package/dist/es2017/transports/smooth/isobmff/create_init_segment.js +0 -63
- package/dist/es2017/transports/smooth/isobmff/create_traf_box.d.ts +0 -17
- package/dist/es2017/transports/smooth/isobmff/create_traf_box.d.ts.map +0 -1
- package/dist/es2017/transports/smooth/isobmff/create_traf_box.js +0 -24
- package/dist/es2017/transports/smooth/isobmff/create_video_init_segment.d.ts +0 -30
- package/dist/es2017/transports/smooth/isobmff/create_video_init_segment.d.ts.map +0 -1
- package/dist/es2017/transports/smooth/isobmff/create_video_init_segment.js +0 -57
- package/dist/es2017/transports/smooth/isobmff/get_aaces_header.d.ts +0 -28
- package/dist/es2017/transports/smooth/isobmff/get_aaces_header.d.ts.map +0 -1
- package/dist/es2017/transports/smooth/isobmff/get_aaces_header.js +0 -43
- package/dist/es2017/transports/smooth/isobmff/index.d.ts +0 -24
- package/dist/es2017/transports/smooth/isobmff/index.d.ts.map +0 -1
- package/dist/es2017/transports/smooth/isobmff/index.js +0 -21
- package/dist/es2017/transports/smooth/isobmff/parse_tfrf.d.ts +0 -25
- package/dist/es2017/transports/smooth/isobmff/parse_tfrf.d.ts.map +0 -1
- package/dist/es2017/transports/smooth/isobmff/parse_tfrf.js +0 -47
- package/dist/es2017/transports/smooth/isobmff/parse_tfxd.d.ts +0 -25
- package/dist/es2017/transports/smooth/isobmff/parse_tfxd.d.ts.map +0 -1
- package/dist/es2017/transports/smooth/isobmff/parse_tfxd.js +0 -31
- package/dist/es2017/transports/smooth/isobmff/patch_segment.d.ts +0 -24
- package/dist/es2017/transports/smooth/isobmff/patch_segment.d.ts.map +0 -1
- package/dist/es2017/transports/smooth/isobmff/patch_segment.js +0 -128
- package/dist/es2017/transports/smooth/pipelines.d.ts +0 -18
- package/dist/es2017/transports/smooth/pipelines.d.ts.map +0 -1
- package/dist/es2017/transports/smooth/pipelines.js +0 -336
- package/dist/es2017/transports/smooth/segment_loader.d.ts +0 -28
- package/dist/es2017/transports/smooth/segment_loader.d.ts.map +0 -1
- package/dist/es2017/transports/smooth/segment_loader.js +0 -238
- package/dist/es2017/transports/smooth/utils.d.ts +0 -27
- package/dist/es2017/transports/smooth/utils.d.ts.map +0 -1
- package/dist/es2017/transports/smooth/utils.js +0 -36
- package/dist/es2017/transports/types.d.ts +0 -772
- package/dist/es2017/transports/types.d.ts.map +0 -1
- package/dist/es2017/transports/types.js +0 -16
- package/dist/es2017/transports/utils/add_query_string.d.ts +0 -13
- package/dist/es2017/transports/utils/add_query_string.d.ts.map +0 -1
- package/dist/es2017/transports/utils/add_query_string.js +0 -51
- package/dist/es2017/transports/utils/byte_range.d.ts +0 -22
- package/dist/es2017/transports/utils/byte_range.d.ts.map +0 -1
- package/dist/es2017/transports/utils/byte_range.js +0 -23
- package/dist/es2017/transports/utils/call_custom_manifest_loader.d.ts +0 -20
- package/dist/es2017/transports/utils/call_custom_manifest_loader.d.ts.map +0 -1
- package/dist/es2017/transports/utils/call_custom_manifest_loader.js +0 -96
- package/dist/es2017/transports/utils/check_isobmff_integrity.d.ts +0 -24
- package/dist/es2017/transports/utils/check_isobmff_integrity.d.ts.map +0 -1
- package/dist/es2017/transports/utils/check_isobmff_integrity.js +0 -46
- package/dist/es2017/transports/utils/generate_manifest_loader.d.ts +0 -27
- package/dist/es2017/transports/utils/generate_manifest_loader.d.ts.map +0 -1
- package/dist/es2017/transports/utils/generate_manifest_loader.js +0 -85
- package/dist/es2017/transports/utils/get_isobmff_timing_infos.d.ts +0 -30
- package/dist/es2017/transports/utils/get_isobmff_timing_infos.d.ts.map +0 -1
- package/dist/es2017/transports/utils/get_isobmff_timing_infos.js +0 -67
- package/dist/es2017/transports/utils/infer_segment_container.d.ts +0 -30
- package/dist/es2017/transports/utils/infer_segment_container.d.ts.map +0 -1
- package/dist/es2017/transports/utils/infer_segment_container.js +0 -42
- package/dist/es2017/transports/utils/parse_text_track.d.ts +0 -53
- package/dist/es2017/transports/utils/parse_text_track.d.ts.map +0 -1
- package/dist/es2017/transports/utils/parse_text_track.js +0 -154
- package/dist/es2017/utils/are_arrays_of_numbers_equal.d.ts +0 -23
- package/dist/es2017/utils/are_arrays_of_numbers_equal.d.ts.map +0 -1
- package/dist/es2017/utils/are_arrays_of_numbers_equal.js +0 -35
- package/dist/es2017/utils/are_codecs_compatible.d.ts +0 -30
- package/dist/es2017/utils/are_codecs_compatible.d.ts.map +0 -1
- package/dist/es2017/utils/are_codecs_compatible.js +0 -57
- package/dist/es2017/utils/array_find.d.ts +0 -24
- package/dist/es2017/utils/array_find.d.ts.map +0 -1
- package/dist/es2017/utils/array_find.js +0 -37
- package/dist/es2017/utils/array_find_index.d.ts +0 -24
- package/dist/es2017/utils/array_find_index.d.ts.map +0 -1
- package/dist/es2017/utils/array_find_index.js +0 -36
- package/dist/es2017/utils/array_includes.d.ts +0 -54
- package/dist/es2017/utils/array_includes.d.ts.map +0 -1
- package/dist/es2017/utils/array_includes.js +0 -75
- package/dist/es2017/utils/assert.d.ts +0 -75
- package/dist/es2017/utils/assert.d.ts.map +0 -1
- package/dist/es2017/utils/assert.js +0 -91
- package/dist/es2017/utils/base64.d.ts +0 -15
- package/dist/es2017/utils/base64.d.ts.map +0 -1
- package/dist/es2017/utils/base64.js +0 -208
- package/dist/es2017/utils/buffer_source_to_uint8.d.ts +0 -8
- package/dist/es2017/utils/buffer_source_to_uint8.d.ts.map +0 -1
- package/dist/es2017/utils/buffer_source_to_uint8.js +0 -15
- package/dist/es2017/utils/byte_parsing.d.ts +0 -132
- package/dist/es2017/utils/byte_parsing.d.ts.map +0 -1
- package/dist/es2017/utils/byte_parsing.js +0 -252
- package/dist/es2017/utils/cancellable_sleep.d.ts +0 -31
- package/dist/es2017/utils/cancellable_sleep.d.ts.map +0 -1
- package/dist/es2017/utils/cancellable_sleep.js +0 -35
- package/dist/es2017/utils/create_cancellable_promise.d.ts +0 -27
- package/dist/es2017/utils/create_cancellable_promise.d.ts.map +0 -1
- package/dist/es2017/utils/create_cancellable_promise.js +0 -52
- package/dist/es2017/utils/create_uuid.d.ts +0 -9
- package/dist/es2017/utils/create_uuid.d.ts.map +0 -1
- package/dist/es2017/utils/create_uuid.js +0 -29
- package/dist/es2017/utils/deep_merge.d.ts +0 -10
- package/dist/es2017/utils/deep_merge.d.ts.map +0 -1
- package/dist/es2017/utils/deep_merge.js +0 -40
- package/dist/es2017/utils/event_emitter.d.ts +0 -63
- package/dist/es2017/utils/event_emitter.d.ts.map +0 -1
- package/dist/es2017/utils/event_emitter.js +0 -105
- package/dist/es2017/utils/flat_map.d.ts +0 -23
- package/dist/es2017/utils/flat_map.d.ts.map +0 -1
- package/dist/es2017/utils/flat_map.js +0 -35
- package/dist/es2017/utils/get_fuzzed_delay.d.ts +0 -22
- package/dist/es2017/utils/get_fuzzed_delay.d.ts.map +0 -1
- package/dist/es2017/utils/get_fuzzed_delay.js +0 -25
- package/dist/es2017/utils/global_scope.d.ts +0 -10
- package/dist/es2017/utils/global_scope.d.ts.map +0 -1
- package/dist/es2017/utils/global_scope.js +0 -20
- package/dist/es2017/utils/hash_buffer.d.ts +0 -33
- package/dist/es2017/utils/hash_buffer.d.ts.map +0 -1
- package/dist/es2017/utils/hash_buffer.js +0 -41
- package/dist/es2017/utils/id_generator.d.ts +0 -22
- package/dist/es2017/utils/id_generator.d.ts.map +0 -1
- package/dist/es2017/utils/id_generator.js +0 -32
- package/dist/es2017/utils/is_node.d.ts +0 -19
- package/dist/es2017/utils/is_node.d.ts.map +0 -1
- package/dist/es2017/utils/is_node.js +0 -19
- package/dist/es2017/utils/is_non_empty_string.d.ts +0 -21
- package/dist/es2017/utils/is_non_empty_string.d.ts.map +0 -1
- package/dist/es2017/utils/is_non_empty_string.js +0 -22
- package/dist/es2017/utils/is_null_or_undefined.d.ts +0 -25
- package/dist/es2017/utils/is_null_or_undefined.d.ts.map +0 -1
- package/dist/es2017/utils/is_null_or_undefined.js +0 -26
- package/dist/es2017/utils/is_worker.d.ts +0 -6
- package/dist/es2017/utils/is_worker.d.ts.map +0 -1
- package/dist/es2017/utils/is_worker.js +0 -5
- package/dist/es2017/utils/languages/ISO_639-1_to_ISO_639-3.d.ts +0 -23
- package/dist/es2017/utils/languages/ISO_639-1_to_ISO_639-3.d.ts.map +0 -1
- package/dist/es2017/utils/languages/ISO_639-1_to_ISO_639-3.js +0 -205
- package/dist/es2017/utils/languages/ISO_639-2_to_ISO_639-3.d.ts +0 -23
- package/dist/es2017/utils/languages/ISO_639-2_to_ISO_639-3.d.ts.map +0 -1
- package/dist/es2017/utils/languages/ISO_639-2_to_ISO_639-3.js +0 -41
- package/dist/es2017/utils/languages/index.d.ts +0 -21
- package/dist/es2017/utils/languages/index.d.ts.map +0 -1
- package/dist/es2017/utils/languages/index.js +0 -18
- package/dist/es2017/utils/languages/normalize.d.ts +0 -70
- package/dist/es2017/utils/languages/normalize.d.ts.map +0 -1
- package/dist/es2017/utils/languages/normalize.js +0 -122
- package/dist/es2017/utils/logger.d.ts +0 -157
- package/dist/es2017/utils/logger.d.ts.map +0 -1
- package/dist/es2017/utils/logger.js +0 -166
- package/dist/es2017/utils/monotonic_timestamp.d.ts +0 -23
- package/dist/es2017/utils/monotonic_timestamp.d.ts.map +0 -1
- package/dist/es2017/utils/monotonic_timestamp.js +0 -36
- package/dist/es2017/utils/noop.d.ts +0 -24
- package/dist/es2017/utils/noop.d.ts.map +0 -1
- package/dist/es2017/utils/noop.js +0 -24
- package/dist/es2017/utils/object_assign.d.ts +0 -47
- package/dist/es2017/utils/object_assign.d.ts.map +0 -1
- package/dist/es2017/utils/object_assign.js +0 -47
- package/dist/es2017/utils/object_values.d.ts +0 -31
- package/dist/es2017/utils/object_values.d.ts.map +0 -1
- package/dist/es2017/utils/object_values.js +0 -25
- package/dist/es2017/utils/queue_microtask.d.ts +0 -3
- package/dist/es2017/utils/queue_microtask.d.ts.map +0 -1
- package/dist/es2017/utils/queue_microtask.js +0 -5
- package/dist/es2017/utils/ranges.d.ts +0 -214
- package/dist/es2017/utils/ranges.d.ts.map +0 -1
- package/dist/es2017/utils/ranges.js +0 -495
- package/dist/es2017/utils/reference.d.ts +0 -215
- package/dist/es2017/utils/reference.d.ts.map +0 -1
- package/dist/es2017/utils/reference.js +0 -282
- package/dist/es2017/utils/request/fetch.d.ts +0 -81
- package/dist/es2017/utils/request/fetch.d.ts.map +0 -1
- package/dist/es2017/utils/request/fetch.js +0 -206
- package/dist/es2017/utils/request/index.d.ts +0 -25
- package/dist/es2017/utils/request/index.d.ts.map +0 -1
- package/dist/es2017/utils/request/index.js +0 -20
- package/dist/es2017/utils/request/request_error.d.ts +0 -47
- package/dist/es2017/utils/request/request_error.d.ts.map +0 -1
- package/dist/es2017/utils/request/request_error.js +0 -66
- package/dist/es2017/utils/request/xhr.d.ts +0 -100
- package/dist/es2017/utils/request/xhr.d.ts.map +0 -1
- package/dist/es2017/utils/request/xhr.js +0 -202
- package/dist/es2017/utils/retry_promise_with_backoff.d.ts +0 -55
- package/dist/es2017/utils/retry_promise_with_backoff.d.ts.map +0 -1
- package/dist/es2017/utils/retry_promise_with_backoff.js +0 -81
- package/dist/es2017/utils/sleep.d.ts +0 -11
- package/dist/es2017/utils/sleep.d.ts.map +0 -1
- package/dist/es2017/utils/sleep.js +0 -14
- package/dist/es2017/utils/slice_uint8array.d.ts +0 -28
- package/dist/es2017/utils/slice_uint8array.d.ts.map +0 -1
- package/dist/es2017/utils/slice_uint8array.js +0 -42
- package/dist/es2017/utils/sorted_list.d.ts +0 -128
- package/dist/es2017/utils/sorted_list.d.ts.map +0 -1
- package/dist/es2017/utils/sorted_list.js +0 -177
- package/dist/es2017/utils/starts_with.d.ts +0 -27
- package/dist/es2017/utils/starts_with.d.ts.map +0 -1
- package/dist/es2017/utils/starts_with.js +0 -35
- package/dist/es2017/utils/string_parsing.d.ts +0 -89
- package/dist/es2017/utils/string_parsing.d.ts.map +0 -1
- package/dist/es2017/utils/string_parsing.js +0 -370
- package/dist/es2017/utils/sync_or_async.d.ts +0 -71
- package/dist/es2017/utils/sync_or_async.d.ts.map +0 -1
- package/dist/es2017/utils/sync_or_async.js +0 -51
- package/dist/es2017/utils/task_canceller.d.ts +0 -263
- package/dist/es2017/utils/task_canceller.d.ts.map +0 -1
- package/dist/es2017/utils/task_canceller.js +0 -298
- package/dist/es2017/utils/url-utils.d.ts +0 -50
- package/dist/es2017/utils/url-utils.d.ts.map +0 -1
- package/dist/es2017/utils/url-utils.js +0 -323
- package/dist/es2017/utils/warn_once.d.ts +0 -24
- package/dist/es2017/utils/warn_once.d.ts.map +0 -1
- package/dist/es2017/utils/warn_once.js +0 -31
- package/dist/es2017/utils/weak_map_memory.d.ts +0 -71
- package/dist/es2017/utils/weak_map_memory.d.ts.map +0 -1
- package/dist/es2017/utils/weak_map_memory.js +0 -83
- package/dist/es2017/utils/wrapInPromise.d.ts +0 -8
- package/dist/es2017/utils/wrapInPromise.d.ts.map +0 -1
- package/dist/es2017/utils/wrapInPromise.js +0 -22
- package/dist/es2017/utils/xml-parser.d.ts +0 -71
- package/dist/es2017/utils/xml-parser.d.ts.map +0 -1
- package/dist/es2017/utils/xml-parser.js +0 -324
- package/dist/es2017/worker_entry_point.d.ts +0 -6
- package/dist/es2017/worker_entry_point.d.ts.map +0 -1
- package/dist/es2017/worker_entry_point.js +0 -6
- package/dist/mpd-parser.wasm +0 -0
- package/dist/rx-player.d.ts +0 -1
- package/dist/rx-player.js +0 -42741
- package/dist/rx-player.min.d.ts +0 -1
- package/dist/rx-player.min.js +0 -23
- package/dist/worker.js +0 -9
- package/src/__GENERATED_CODE/embedded_dash_wasm.ts +0 -3
- package/src/__GENERATED_CODE/embedded_worker.ts +0 -3
- package/src/__GENERATED_CODE/index.ts +0 -2
- package/src/core/main/worker/globals.ts +0 -38
- package/src/core/main/worker/index.ts +0 -2
- package/src/core/main/worker/send_message.ts +0 -28
- package/src/main_thread/init/multi_thread_content_initializer.ts +0 -2330
- package/src/main_thread/init/send_message.ts +0 -15
- package/src/main_thread/init/utils/create_media_source.ts +0 -169
- package/src/multithread_types.ts +0 -1095
|
@@ -1,1124 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/**
|
|
3
|
-
* Copyright 2015 CANAL+ Group
|
|
4
|
-
*
|
|
5
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
-
* you may not use this file except in compliance with the License.
|
|
7
|
-
* You may obtain a copy of the License at
|
|
8
|
-
*
|
|
9
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
-
*
|
|
11
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
12
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
-
* See the License for the specific language governing permissions and
|
|
15
|
-
* limitations under the License.
|
|
16
|
-
*/
|
|
17
|
-
var __values = (this && this.__values) || function(o) {
|
|
18
|
-
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
|
|
19
|
-
if (m) return m.call(o);
|
|
20
|
-
if (o && typeof o.length === "number") return {
|
|
21
|
-
next: function () {
|
|
22
|
-
if (o && i >= o.length) o = void 0;
|
|
23
|
-
return { value: o && o[i++], done: !o };
|
|
24
|
-
}
|
|
25
|
-
};
|
|
26
|
-
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
|
|
27
|
-
};
|
|
28
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
-
var config_1 = require("../../../config");
|
|
30
|
-
var log_1 = require("../../../log");
|
|
31
|
-
var manifest_1 = require("../../../manifest");
|
|
32
|
-
var is_null_or_undefined_1 = require("../../../utils/is_null_or_undefined");
|
|
33
|
-
var monotonic_timestamp_1 = require("../../../utils/monotonic_timestamp");
|
|
34
|
-
var buffered_history_1 = require("./buffered_history");
|
|
35
|
-
/**
|
|
36
|
-
* Keep track of every chunk downloaded and currently in the linked media
|
|
37
|
-
* buffer.
|
|
38
|
-
*
|
|
39
|
-
* The main point of this class is to know which chunks are already pushed to
|
|
40
|
-
* the corresponding media buffer, at which bitrate, and which have been garbage-collected
|
|
41
|
-
* since by the browser (and thus may need to be re-loaded).
|
|
42
|
-
* @class SegmentInventory
|
|
43
|
-
*/
|
|
44
|
-
var SegmentInventory = /** @class */ (function () {
|
|
45
|
-
function SegmentInventory() {
|
|
46
|
-
var _a = config_1.default.getCurrent(), BUFFERED_HISTORY_RETENTION_TIME = _a.BUFFERED_HISTORY_RETENTION_TIME, BUFFERED_HISTORY_MAXIMUM_ENTRIES = _a.BUFFERED_HISTORY_MAXIMUM_ENTRIES;
|
|
47
|
-
this._inventory = [];
|
|
48
|
-
this._bufferedHistory = new buffered_history_1.default(BUFFERED_HISTORY_RETENTION_TIME, BUFFERED_HISTORY_MAXIMUM_ENTRIES);
|
|
49
|
-
}
|
|
50
|
-
/**
|
|
51
|
-
* Reset the whole inventory.
|
|
52
|
-
*/
|
|
53
|
-
SegmentInventory.prototype.reset = function () {
|
|
54
|
-
this._inventory.length = 0;
|
|
55
|
-
};
|
|
56
|
-
/**
|
|
57
|
-
* Infer each segment's `bufferedStart` and `bufferedEnd` properties from the
|
|
58
|
-
* ranges given.
|
|
59
|
-
*
|
|
60
|
-
* The ranges object given should come from the media buffer linked to that
|
|
61
|
-
* SegmentInventory.
|
|
62
|
-
*
|
|
63
|
-
* /!\ A SegmentInventory should not be associated to multiple media buffers
|
|
64
|
-
* at a time, so each `synchronizeBuffered` call should be given ranges coming
|
|
65
|
-
* from the same buffer.
|
|
66
|
-
* @param {Array.<Object>} ranges
|
|
67
|
-
*/
|
|
68
|
-
SegmentInventory.prototype.synchronizeBuffered = function (ranges) {
|
|
69
|
-
var e_1, _a;
|
|
70
|
-
var _b, _c, _d, _e, _f, _g, _h;
|
|
71
|
-
var inventory = this._inventory;
|
|
72
|
-
var inventoryIndex = 0; // Current index considered.
|
|
73
|
-
var thisSegment = inventory[0]; // Current segmentInfos considered
|
|
74
|
-
var MINIMUM_SEGMENT_SIZE = config_1.default.getCurrent().MINIMUM_SEGMENT_SIZE;
|
|
75
|
-
/** Type of buffer considered, used for logs */
|
|
76
|
-
var bufferType = thisSegment === null || thisSegment === void 0 ? void 0 : thisSegment.infos.adaptation.type;
|
|
77
|
-
if (log_1.default.hasLevel("DEBUG")) {
|
|
78
|
-
var prettyPrintedRanges = ranges.map(function (r) { return "".concat(r.start, "-").concat(r.end); }).join(",");
|
|
79
|
-
log_1.default.debug("SI", "synchronizing ".concat(bufferType !== null && bufferType !== void 0 ? bufferType : "unknown", " buffered ranges:"), prettyPrintedRanges);
|
|
80
|
-
}
|
|
81
|
-
var rangesLength = ranges.length;
|
|
82
|
-
for (var i = 0; i < rangesLength; i++) {
|
|
83
|
-
if (thisSegment === undefined) {
|
|
84
|
-
// we arrived at the end of our inventory
|
|
85
|
-
return;
|
|
86
|
-
}
|
|
87
|
-
// take the i'nth contiguous buffered range
|
|
88
|
-
var rangeStart = ranges[i].start;
|
|
89
|
-
var rangeEnd = ranges[i].end;
|
|
90
|
-
if (rangeEnd - rangeStart < MINIMUM_SEGMENT_SIZE) {
|
|
91
|
-
log_1.default.warn("SI", "skipped range when synchronizing because it was too small", {
|
|
92
|
-
t: bufferType,
|
|
93
|
-
rangeStart: rangeStart,
|
|
94
|
-
rangeEnd: rangeEnd,
|
|
95
|
-
});
|
|
96
|
-
continue;
|
|
97
|
-
}
|
|
98
|
-
var indexBefore = inventoryIndex; // keep track of that number
|
|
99
|
-
// Find the first segment either within this range or completely past
|
|
100
|
-
// it:
|
|
101
|
-
// skip until first segment with at least `MINIMUM_SEGMENT_SIZE` past the
|
|
102
|
-
// start of that range.
|
|
103
|
-
while (thisSegment !== undefined &&
|
|
104
|
-
((_b = thisSegment.bufferedEnd) !== null && _b !== void 0 ? _b : thisSegment.end) - rangeStart < MINIMUM_SEGMENT_SIZE) {
|
|
105
|
-
thisSegment = inventory[++inventoryIndex];
|
|
106
|
-
}
|
|
107
|
-
// Contains infos about the last garbage-collected segment before
|
|
108
|
-
// `thisSegment`.
|
|
109
|
-
var lastDeletedSegmentInfos = null;
|
|
110
|
-
// remove garbage-collected segments
|
|
111
|
-
// (Those not in that range nor in the previous one)
|
|
112
|
-
var numberOfSegmentToDelete = inventoryIndex - indexBefore;
|
|
113
|
-
if (numberOfSegmentToDelete > 0) {
|
|
114
|
-
var lastDeletedSegment = inventory[indexBefore + numberOfSegmentToDelete - 1]; // last garbage-collected segment
|
|
115
|
-
lastDeletedSegmentInfos = {
|
|
116
|
-
end: (_c = lastDeletedSegment.bufferedEnd) !== null && _c !== void 0 ? _c : lastDeletedSegment.end,
|
|
117
|
-
precizeEnd: lastDeletedSegment.precizeEnd,
|
|
118
|
-
};
|
|
119
|
-
log_1.default.debug("SI", "".concat(numberOfSegmentToDelete, " segments GCed."), {
|
|
120
|
-
t: bufferType,
|
|
121
|
-
});
|
|
122
|
-
var removed = inventory.splice(indexBefore, numberOfSegmentToDelete);
|
|
123
|
-
try {
|
|
124
|
-
for (var removed_1 = (e_1 = void 0, __values(removed)), removed_1_1 = removed_1.next(); !removed_1_1.done; removed_1_1 = removed_1.next()) {
|
|
125
|
-
var seg = removed_1_1.value;
|
|
126
|
-
if (seg.bufferedStart === undefined &&
|
|
127
|
-
seg.bufferedEnd === undefined &&
|
|
128
|
-
seg.status !== 2 /* ChunkStatus.Failed */) {
|
|
129
|
-
this._bufferedHistory.addBufferedSegment(seg.infos, null);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
|
-
catch (e_1_1) { e_1 = { error: e_1_1 }; }
|
|
134
|
-
finally {
|
|
135
|
-
try {
|
|
136
|
-
if (removed_1_1 && !removed_1_1.done && (_a = removed_1.return)) _a.call(removed_1);
|
|
137
|
-
}
|
|
138
|
-
finally { if (e_1) throw e_1.error; }
|
|
139
|
-
}
|
|
140
|
-
inventoryIndex = indexBefore;
|
|
141
|
-
}
|
|
142
|
-
if (thisSegment === undefined) {
|
|
143
|
-
return;
|
|
144
|
-
}
|
|
145
|
-
// If the current segment is actually completely outside that range (it
|
|
146
|
-
// is contained in one of the next one), skip that part.
|
|
147
|
-
if (rangeEnd - ((_d = thisSegment.bufferedStart) !== null && _d !== void 0 ? _d : thisSegment.start) >=
|
|
148
|
-
MINIMUM_SEGMENT_SIZE) {
|
|
149
|
-
guessBufferedStartFromRangeStart(thisSegment, rangeStart, lastDeletedSegmentInfos, bufferType);
|
|
150
|
-
if (inventoryIndex === inventory.length - 1) {
|
|
151
|
-
// This is the last segment in the inventory.
|
|
152
|
-
// We can directly update the end as the end of the current range.
|
|
153
|
-
guessBufferedEndFromRangeEnd(thisSegment, rangeEnd, bufferType);
|
|
154
|
-
return;
|
|
155
|
-
}
|
|
156
|
-
thisSegment = inventory[++inventoryIndex];
|
|
157
|
-
// Make contiguous until first segment outside that range
|
|
158
|
-
var thisSegmentStart = (_e = thisSegment.bufferedStart) !== null && _e !== void 0 ? _e : thisSegment.start;
|
|
159
|
-
var thisSegmentEnd = (_f = thisSegment.bufferedEnd) !== null && _f !== void 0 ? _f : thisSegment.end;
|
|
160
|
-
var nextRangeStart = i < rangesLength - 1 ? ranges[i + 1].start : undefined;
|
|
161
|
-
while (thisSegment !== undefined) {
|
|
162
|
-
if (rangeEnd < thisSegmentStart) {
|
|
163
|
-
// `thisSegment` is part of the next range
|
|
164
|
-
break;
|
|
165
|
-
}
|
|
166
|
-
if (rangeEnd - thisSegmentStart < MINIMUM_SEGMENT_SIZE &&
|
|
167
|
-
thisSegmentEnd - rangeEnd >= MINIMUM_SEGMENT_SIZE) {
|
|
168
|
-
// Ambiguous, but `thisSegment` seems more to come after the current
|
|
169
|
-
// range than during it.
|
|
170
|
-
break;
|
|
171
|
-
}
|
|
172
|
-
if (nextRangeStart !== undefined &&
|
|
173
|
-
rangeEnd - thisSegmentStart < thisSegmentEnd - nextRangeStart) {
|
|
174
|
-
// Ambiguous, but `thisSegment` has more chance to be part of the
|
|
175
|
-
// next range than the current one
|
|
176
|
-
break;
|
|
177
|
-
}
|
|
178
|
-
var prevSegment = inventory[inventoryIndex - 1];
|
|
179
|
-
// those segments are contiguous, we have no way to infer their real
|
|
180
|
-
// end
|
|
181
|
-
if (prevSegment.bufferedEnd === undefined) {
|
|
182
|
-
if (thisSegment.precizeStart) {
|
|
183
|
-
prevSegment.bufferedEnd = thisSegment.start;
|
|
184
|
-
}
|
|
185
|
-
else if (prevSegment.infos.segment.complete) {
|
|
186
|
-
prevSegment.bufferedEnd = prevSegment.end;
|
|
187
|
-
}
|
|
188
|
-
else {
|
|
189
|
-
// We cannot truly trust the anounced end here as the segment was
|
|
190
|
-
// potentially not complete at its time of announce.
|
|
191
|
-
// Just assume the next's segment announced start is right - as
|
|
192
|
-
// `start` is in that scenario more "trustable" than `end`.
|
|
193
|
-
prevSegment.bufferedEnd = thisSegment.start;
|
|
194
|
-
}
|
|
195
|
-
log_1.default.debug("SI", "calculating buffered end of contiguous segment", {
|
|
196
|
-
t: bufferType,
|
|
197
|
-
prevSegmentBufferedEnd: prevSegment.bufferedEnd,
|
|
198
|
-
pse: prevSegment.end,
|
|
199
|
-
});
|
|
200
|
-
}
|
|
201
|
-
thisSegment.bufferedStart = prevSegment.bufferedEnd;
|
|
202
|
-
thisSegment = inventory[++inventoryIndex];
|
|
203
|
-
if (thisSegment !== undefined) {
|
|
204
|
-
thisSegmentStart = (_g = thisSegment.bufferedStart) !== null && _g !== void 0 ? _g : thisSegment.start;
|
|
205
|
-
thisSegmentEnd = (_h = thisSegment.bufferedEnd) !== null && _h !== void 0 ? _h : thisSegment.end;
|
|
206
|
-
}
|
|
207
|
-
}
|
|
208
|
-
}
|
|
209
|
-
// update the bufferedEnd of the last segment in that range
|
|
210
|
-
var lastSegmentInRange = inventory[inventoryIndex - 1];
|
|
211
|
-
if (lastSegmentInRange !== undefined) {
|
|
212
|
-
guessBufferedEndFromRangeEnd(lastSegmentInRange, rangeEnd, bufferType);
|
|
213
|
-
}
|
|
214
|
-
}
|
|
215
|
-
// if we still have segments left, they are not affiliated to any range.
|
|
216
|
-
// They might have been garbage collected, delete them from here.
|
|
217
|
-
if (!(0, is_null_or_undefined_1.default)(thisSegment)) {
|
|
218
|
-
var SEGMENT_SYNCHRONIZATION_DELAY = config_1.default.getCurrent().SEGMENT_SYNCHRONIZATION_DELAY;
|
|
219
|
-
var now = (0, monotonic_timestamp_1.default)();
|
|
220
|
-
for (var i = inventoryIndex; i < inventory.length; i++) {
|
|
221
|
-
var segmentInfo = inventory[i];
|
|
222
|
-
if (now - segmentInfo.insertionTs >= SEGMENT_SYNCHRONIZATION_DELAY) {
|
|
223
|
-
log_1.default.debug("SI", "A segment at the end has been completely GCed", (0, manifest_1.getLoggableSegmentId)(segmentInfo.infos));
|
|
224
|
-
if (segmentInfo.bufferedStart === undefined &&
|
|
225
|
-
segmentInfo.bufferedEnd === undefined &&
|
|
226
|
-
segmentInfo.status !== 2 /* ChunkStatus.Failed */) {
|
|
227
|
-
this._bufferedHistory.addBufferedSegment(segmentInfo.infos, null);
|
|
228
|
-
}
|
|
229
|
-
inventory.splice(i, 1);
|
|
230
|
-
i--;
|
|
231
|
-
}
|
|
232
|
-
}
|
|
233
|
-
}
|
|
234
|
-
if (bufferType !== undefined && log_1.default.hasLevel("DEBUG")) {
|
|
235
|
-
// TODO: Do not log if it did not change?
|
|
236
|
-
log_1.default.debug("SI", "current ".concat(bufferType, " inventory timeline:\n") +
|
|
237
|
-
prettyPrintInventory(this._inventory));
|
|
238
|
-
}
|
|
239
|
-
};
|
|
240
|
-
/**
|
|
241
|
-
* Add a new chunk in the inventory.
|
|
242
|
-
*
|
|
243
|
-
* Chunks are decodable sub-parts of a whole segment. Once all chunks in a
|
|
244
|
-
* segment have been inserted, you should call the `completeSegment` method.
|
|
245
|
-
* @param {Object} chunkInformation
|
|
246
|
-
* @param {boolean} succeed - If `true` the insertion operation finished with
|
|
247
|
-
* success, if `false` an error arised while doing it.
|
|
248
|
-
* @param {number} insertionTs - The monotonically-increasing timestamp at the
|
|
249
|
-
* time the segment has been confirmed to be inserted by the buffer.
|
|
250
|
-
*/
|
|
251
|
-
SegmentInventory.prototype.insertChunk = function (_a, succeed, insertionTs) {
|
|
252
|
-
var period = _a.period, adaptation = _a.adaptation, representation = _a.representation, segment = _a.segment, chunkSize = _a.chunkSize, start = _a.start, end = _a.end;
|
|
253
|
-
if (segment.isInit) {
|
|
254
|
-
return;
|
|
255
|
-
}
|
|
256
|
-
var bufferType = adaptation.type;
|
|
257
|
-
if (start >= end) {
|
|
258
|
-
log_1.default.warn("SI", "Invalid chunked inserted: starts before it ends", {
|
|
259
|
-
t: bufferType,
|
|
260
|
-
start: start,
|
|
261
|
-
end: end,
|
|
262
|
-
});
|
|
263
|
-
return;
|
|
264
|
-
}
|
|
265
|
-
var inventory = this._inventory;
|
|
266
|
-
var newSegment = {
|
|
267
|
-
status: succeed ? 0 /* ChunkStatus.PartiallyPushed */ : 2 /* ChunkStatus.Failed */,
|
|
268
|
-
insertionTs: insertionTs,
|
|
269
|
-
chunkSize: chunkSize,
|
|
270
|
-
splitted: false,
|
|
271
|
-
start: start,
|
|
272
|
-
end: end,
|
|
273
|
-
precizeStart: false,
|
|
274
|
-
precizeEnd: false,
|
|
275
|
-
bufferedStart: undefined,
|
|
276
|
-
bufferedEnd: undefined,
|
|
277
|
-
infos: { segment: segment, period: period, adaptation: adaptation, representation: representation },
|
|
278
|
-
};
|
|
279
|
-
// begin by the end as in most use cases this will be faster
|
|
280
|
-
for (var i = inventory.length - 1; i >= 0; i--) {
|
|
281
|
-
var segmentI = inventory[i];
|
|
282
|
-
if (segmentI.start <= start) {
|
|
283
|
-
if (segmentI.end <= start) {
|
|
284
|
-
// our segment is after, push it after this one
|
|
285
|
-
//
|
|
286
|
-
// Case 1:
|
|
287
|
-
// prevSegment : |------|
|
|
288
|
-
// newSegment : |======|
|
|
289
|
-
// ===> : |------|======|
|
|
290
|
-
//
|
|
291
|
-
// Case 2:
|
|
292
|
-
// prevSegment : |------|
|
|
293
|
-
// newSegment : |======|
|
|
294
|
-
// ===> : |------| |======|
|
|
295
|
-
log_1.default.debug("SI", "Pushing segment strictly after previous one.", {
|
|
296
|
-
t: bufferType,
|
|
297
|
-
pse: segmentI.end,
|
|
298
|
-
ss: start,
|
|
299
|
-
});
|
|
300
|
-
this._inventory.splice(i + 1, 0, newSegment);
|
|
301
|
-
i += 2; // Go to segment immediately after newSegment
|
|
302
|
-
while (i < inventory.length && inventory[i].start < newSegment.end) {
|
|
303
|
-
if (inventory[i].end > newSegment.end) {
|
|
304
|
-
// The next segment ends after newSegment.
|
|
305
|
-
// Mutate the next segment.
|
|
306
|
-
//
|
|
307
|
-
// Case 1:
|
|
308
|
-
// prevSegment : |------|
|
|
309
|
-
// newSegment : |======|
|
|
310
|
-
// nextSegment : |----|
|
|
311
|
-
// ===> : |------|======|-|
|
|
312
|
-
log_1.default.debug("SI", "Segment pushed updates the start of the next one", {
|
|
313
|
-
t: bufferType,
|
|
314
|
-
pss: inventory[i].start,
|
|
315
|
-
ss: start,
|
|
316
|
-
se: end,
|
|
317
|
-
});
|
|
318
|
-
inventory[i].start = newSegment.end;
|
|
319
|
-
inventory[i].bufferedStart = undefined;
|
|
320
|
-
inventory[i].precizeStart =
|
|
321
|
-
inventory[i].precizeStart && newSegment.precizeEnd;
|
|
322
|
-
return;
|
|
323
|
-
}
|
|
324
|
-
// The next segment was completely contained in newSegment.
|
|
325
|
-
// Remove it.
|
|
326
|
-
//
|
|
327
|
-
// Case 1:
|
|
328
|
-
// prevSegment : |------|
|
|
329
|
-
// newSegment : |======|
|
|
330
|
-
// nextSegment : |---|
|
|
331
|
-
// ===> : |------|======|
|
|
332
|
-
//
|
|
333
|
-
// Case 2:
|
|
334
|
-
// prevSegment : |------|
|
|
335
|
-
// newSegment : |======|
|
|
336
|
-
// nextSegment : |----|
|
|
337
|
-
// ===> : |------|======|
|
|
338
|
-
log_1.default.debug("SI", "Segment pushed removes the next one", {
|
|
339
|
-
t: bufferType,
|
|
340
|
-
ss: start,
|
|
341
|
-
se: end,
|
|
342
|
-
pss: inventory[i].start,
|
|
343
|
-
pse: inventory[i].end,
|
|
344
|
-
});
|
|
345
|
-
inventory.splice(i, 1);
|
|
346
|
-
}
|
|
347
|
-
return;
|
|
348
|
-
}
|
|
349
|
-
else {
|
|
350
|
-
if (segmentI.start === start) {
|
|
351
|
-
if (segmentI.end <= end) {
|
|
352
|
-
// In those cases, replace
|
|
353
|
-
//
|
|
354
|
-
// Case 1:
|
|
355
|
-
// prevSegment : |-------|
|
|
356
|
-
// newSegment : |=======|
|
|
357
|
-
// ===> : |=======|
|
|
358
|
-
//
|
|
359
|
-
// Case 2:
|
|
360
|
-
// prevSegment : |-------|
|
|
361
|
-
// newSegment : |==========|
|
|
362
|
-
// ===> : |==========|
|
|
363
|
-
log_1.default.debug("SI", "Segment pushed replace another one", {
|
|
364
|
-
t: bufferType,
|
|
365
|
-
ss: start,
|
|
366
|
-
se: end,
|
|
367
|
-
pss: segmentI.start,
|
|
368
|
-
pse: segmentI.end,
|
|
369
|
-
});
|
|
370
|
-
this._inventory.splice(i, 1, newSegment);
|
|
371
|
-
i += 1; // Go to segment immediately after newSegment
|
|
372
|
-
while (i < inventory.length && inventory[i].start < newSegment.end) {
|
|
373
|
-
if (inventory[i].end > newSegment.end) {
|
|
374
|
-
// The next segment ends after newSegment.
|
|
375
|
-
// Mutate the next segment.
|
|
376
|
-
//
|
|
377
|
-
// Case 1:
|
|
378
|
-
// newSegment : |======|
|
|
379
|
-
// nextSegment : |----|
|
|
380
|
-
// ===> : |======|--|
|
|
381
|
-
log_1.default.debug("SI", "Segment pushed updates the start of the next one", {
|
|
382
|
-
t: bufferType,
|
|
383
|
-
ss: start,
|
|
384
|
-
se: end,
|
|
385
|
-
pss: inventory[i].start,
|
|
386
|
-
pse: inventory[i].end,
|
|
387
|
-
});
|
|
388
|
-
inventory[i].start = newSegment.end;
|
|
389
|
-
inventory[i].bufferedStart = undefined;
|
|
390
|
-
inventory[i].precizeStart =
|
|
391
|
-
inventory[i].precizeStart && newSegment.precizeEnd;
|
|
392
|
-
return;
|
|
393
|
-
}
|
|
394
|
-
// The next segment was completely contained in newSegment.
|
|
395
|
-
// Remove it.
|
|
396
|
-
//
|
|
397
|
-
// Case 1:
|
|
398
|
-
// newSegment : |======|
|
|
399
|
-
// nextSegment : |---|
|
|
400
|
-
// ===> : |======|
|
|
401
|
-
//
|
|
402
|
-
// Case 2:
|
|
403
|
-
// newSegment : |======|
|
|
404
|
-
// nextSegment : |----|
|
|
405
|
-
// ===> : |======|
|
|
406
|
-
log_1.default.debug("SI", "Segment pushed removes the next one", {
|
|
407
|
-
t: bufferType,
|
|
408
|
-
ss: start,
|
|
409
|
-
se: end,
|
|
410
|
-
pss: inventory[i].start,
|
|
411
|
-
pse: inventory[i].end,
|
|
412
|
-
});
|
|
413
|
-
inventory.splice(i, 1);
|
|
414
|
-
}
|
|
415
|
-
return;
|
|
416
|
-
}
|
|
417
|
-
else {
|
|
418
|
-
// The previous segment starts at the same time and finishes
|
|
419
|
-
// after the new segment.
|
|
420
|
-
// Update the start of the previous segment and put the new
|
|
421
|
-
// segment before.
|
|
422
|
-
//
|
|
423
|
-
// Case 1:
|
|
424
|
-
// prevSegment : |------------|
|
|
425
|
-
// newSegment : |==========|
|
|
426
|
-
// ===> : |==========|-|
|
|
427
|
-
log_1.default.debug("SI", "Segment pushed ends before another with the same start", {
|
|
428
|
-
t: bufferType,
|
|
429
|
-
ss: start,
|
|
430
|
-
se: end,
|
|
431
|
-
pse: segmentI.end,
|
|
432
|
-
});
|
|
433
|
-
inventory.splice(i, 0, newSegment);
|
|
434
|
-
segmentI.start = newSegment.end;
|
|
435
|
-
segmentI.bufferedStart = undefined;
|
|
436
|
-
segmentI.precizeStart = segmentI.precizeStart && newSegment.precizeEnd;
|
|
437
|
-
return;
|
|
438
|
-
}
|
|
439
|
-
}
|
|
440
|
-
else {
|
|
441
|
-
if (segmentI.end <= newSegment.end) {
|
|
442
|
-
// our segment has a "complex" relation with this one,
|
|
443
|
-
// update the old one end and add this one after it.
|
|
444
|
-
//
|
|
445
|
-
// Case 1:
|
|
446
|
-
// prevSegment : |-------|
|
|
447
|
-
// newSegment : |======|
|
|
448
|
-
// ===> : |--|======|
|
|
449
|
-
//
|
|
450
|
-
// Case 2:
|
|
451
|
-
// prevSegment : |-------|
|
|
452
|
-
// newSegment : |====|
|
|
453
|
-
// ===> : |--|====|
|
|
454
|
-
log_1.default.debug("SI", "Segment pushed updates end of previous one", {
|
|
455
|
-
t: bufferType,
|
|
456
|
-
ss: start,
|
|
457
|
-
se: end,
|
|
458
|
-
pss: segmentI.start,
|
|
459
|
-
pse: segmentI.end,
|
|
460
|
-
});
|
|
461
|
-
this._inventory.splice(i + 1, 0, newSegment);
|
|
462
|
-
segmentI.end = newSegment.start;
|
|
463
|
-
segmentI.bufferedEnd = undefined;
|
|
464
|
-
segmentI.precizeEnd = segmentI.precizeEnd && newSegment.precizeStart;
|
|
465
|
-
i += 2; // Go to segment immediately after newSegment
|
|
466
|
-
while (i < inventory.length && inventory[i].start < newSegment.end) {
|
|
467
|
-
if (inventory[i].end > newSegment.end) {
|
|
468
|
-
// The next segment ends after newSegment.
|
|
469
|
-
// Mutate the next segment.
|
|
470
|
-
//
|
|
471
|
-
// Case 1:
|
|
472
|
-
// newSegment : |======|
|
|
473
|
-
// nextSegment : |----|
|
|
474
|
-
// ===> : |======|--|
|
|
475
|
-
log_1.default.debug("SI", "Segment pushed updates the start of the next one", {
|
|
476
|
-
t: bufferType,
|
|
477
|
-
ss: start,
|
|
478
|
-
se: end,
|
|
479
|
-
pss: inventory[i].start,
|
|
480
|
-
});
|
|
481
|
-
inventory[i].start = newSegment.end;
|
|
482
|
-
inventory[i].bufferedStart = undefined;
|
|
483
|
-
inventory[i].precizeStart =
|
|
484
|
-
inventory[i].precizeStart && newSegment.precizeEnd;
|
|
485
|
-
return;
|
|
486
|
-
}
|
|
487
|
-
// The next segment was completely contained in newSegment.
|
|
488
|
-
// Remove it.
|
|
489
|
-
//
|
|
490
|
-
// Case 1:
|
|
491
|
-
// newSegment : |======|
|
|
492
|
-
// nextSegment : |---|
|
|
493
|
-
// ===> : |======|
|
|
494
|
-
//
|
|
495
|
-
// Case 2:
|
|
496
|
-
// newSegment : |======|
|
|
497
|
-
// nextSegment : |----|
|
|
498
|
-
// ===> : |======|
|
|
499
|
-
log_1.default.debug("SI", "Segment pushed removes the next one", {
|
|
500
|
-
t: bufferType,
|
|
501
|
-
ss: start,
|
|
502
|
-
se: end,
|
|
503
|
-
pss: inventory[i].start,
|
|
504
|
-
pse: inventory[i].end,
|
|
505
|
-
});
|
|
506
|
-
inventory.splice(i, 1);
|
|
507
|
-
}
|
|
508
|
-
return;
|
|
509
|
-
}
|
|
510
|
-
else {
|
|
511
|
-
// The previous segment completely recovers the new segment.
|
|
512
|
-
// Split the previous segment into two segments, before and after
|
|
513
|
-
// the new segment.
|
|
514
|
-
//
|
|
515
|
-
// Case 1:
|
|
516
|
-
// prevSegment : |---------|
|
|
517
|
-
// newSegment : |====|
|
|
518
|
-
// ===> : |--|====|-|
|
|
519
|
-
log_1.default.warn("SI", "Segment pushed is contained in a previous one", {
|
|
520
|
-
t: bufferType,
|
|
521
|
-
ss: start,
|
|
522
|
-
se: end,
|
|
523
|
-
pss: segmentI.start,
|
|
524
|
-
pse: segmentI.end,
|
|
525
|
-
});
|
|
526
|
-
var nextSegment = {
|
|
527
|
-
status: segmentI.status,
|
|
528
|
-
insertionTs: segmentI.insertionTs,
|
|
529
|
-
/**
|
|
530
|
-
* Note: this sadly means we're doing as if
|
|
531
|
-
* that chunk is present two times.
|
|
532
|
-
* Thankfully, this scenario should be
|
|
533
|
-
* fairly rare.
|
|
534
|
-
*/
|
|
535
|
-
chunkSize: segmentI.chunkSize,
|
|
536
|
-
splitted: true,
|
|
537
|
-
start: newSegment.end,
|
|
538
|
-
end: segmentI.end,
|
|
539
|
-
precizeStart: segmentI.precizeStart && segmentI.precizeEnd && newSegment.precizeEnd,
|
|
540
|
-
precizeEnd: segmentI.precizeEnd,
|
|
541
|
-
bufferedStart: undefined,
|
|
542
|
-
bufferedEnd: segmentI.end,
|
|
543
|
-
infos: segmentI.infos,
|
|
544
|
-
};
|
|
545
|
-
segmentI.end = newSegment.start;
|
|
546
|
-
segmentI.splitted = true;
|
|
547
|
-
segmentI.bufferedEnd = undefined;
|
|
548
|
-
segmentI.precizeEnd = segmentI.precizeEnd && newSegment.precizeStart;
|
|
549
|
-
inventory.splice(i + 1, 0, newSegment);
|
|
550
|
-
inventory.splice(i + 2, 0, nextSegment);
|
|
551
|
-
return;
|
|
552
|
-
}
|
|
553
|
-
}
|
|
554
|
-
}
|
|
555
|
-
}
|
|
556
|
-
}
|
|
557
|
-
// if we got here, we are at the first segment
|
|
558
|
-
// check bounds of the previous first segment
|
|
559
|
-
var firstSegment = this._inventory[0];
|
|
560
|
-
if (firstSegment === undefined) {
|
|
561
|
-
// we do not have any segment yet
|
|
562
|
-
log_1.default.debug("SI", "first segment pushed", { t: bufferType, ss: start, se: end });
|
|
563
|
-
this._inventory.push(newSegment);
|
|
564
|
-
return;
|
|
565
|
-
}
|
|
566
|
-
if (firstSegment.start >= end) {
|
|
567
|
-
// our segment is before, put it before
|
|
568
|
-
//
|
|
569
|
-
// Case 1:
|
|
570
|
-
// firstSegment : |----|
|
|
571
|
-
// newSegment : |====|
|
|
572
|
-
// ===> : |====|----|
|
|
573
|
-
//
|
|
574
|
-
// Case 2:
|
|
575
|
-
// firstSegment : |----|
|
|
576
|
-
// newSegment : |====|
|
|
577
|
-
// ===> : |====| |----|
|
|
578
|
-
log_1.default.debug("SI", "Segment pushed comes before all previous ones", {
|
|
579
|
-
t: bufferType,
|
|
580
|
-
ss: start,
|
|
581
|
-
se: end,
|
|
582
|
-
pss: firstSegment.start,
|
|
583
|
-
});
|
|
584
|
-
this._inventory.splice(0, 0, newSegment);
|
|
585
|
-
}
|
|
586
|
-
else if (firstSegment.end <= end) {
|
|
587
|
-
// Our segment is bigger, replace the first
|
|
588
|
-
//
|
|
589
|
-
// Case 1:
|
|
590
|
-
// firstSegment : |---|
|
|
591
|
-
// newSegment : |=======|
|
|
592
|
-
// ===> : |=======|
|
|
593
|
-
//
|
|
594
|
-
// Case 2:
|
|
595
|
-
// firstSegment : |-----|
|
|
596
|
-
// newSegment : |=======|
|
|
597
|
-
// ===> : |=======|
|
|
598
|
-
log_1.default.debug("SI", "Segment pushed starts before and completely " +
|
|
599
|
-
"recovers the previous first one", {
|
|
600
|
-
t: bufferType,
|
|
601
|
-
ss: start,
|
|
602
|
-
se: end,
|
|
603
|
-
pss: firstSegment.start,
|
|
604
|
-
pse: firstSegment.end,
|
|
605
|
-
});
|
|
606
|
-
this._inventory.splice(0, 1, newSegment);
|
|
607
|
-
while (inventory.length > 1 && inventory[1].start < newSegment.end) {
|
|
608
|
-
if (inventory[1].end > newSegment.end) {
|
|
609
|
-
// The next segment ends after newSegment.
|
|
610
|
-
// Mutate the next segment.
|
|
611
|
-
//
|
|
612
|
-
// Case 1:
|
|
613
|
-
// newSegment : |======|
|
|
614
|
-
// nextSegment : |----|
|
|
615
|
-
// ===> : |======|--|
|
|
616
|
-
log_1.default.debug("SI", "Segment pushed updates the start of the next one", {
|
|
617
|
-
t: bufferType,
|
|
618
|
-
ss: start,
|
|
619
|
-
se: end,
|
|
620
|
-
pss: inventory[1].start,
|
|
621
|
-
pse: inventory[1].end,
|
|
622
|
-
});
|
|
623
|
-
inventory[1].start = newSegment.end;
|
|
624
|
-
inventory[1].bufferedStart = undefined;
|
|
625
|
-
inventory[1].precizeStart = newSegment.precizeEnd;
|
|
626
|
-
return;
|
|
627
|
-
}
|
|
628
|
-
// The next segment was completely contained in newSegment.
|
|
629
|
-
// Remove it.
|
|
630
|
-
//
|
|
631
|
-
// Case 1:
|
|
632
|
-
// newSegment : |======|
|
|
633
|
-
// nextSegment : |---|
|
|
634
|
-
// ===> : |======|
|
|
635
|
-
//
|
|
636
|
-
// Case 2:
|
|
637
|
-
// newSegment : |======|
|
|
638
|
-
// nextSegment : |----|
|
|
639
|
-
// ===> : |======|
|
|
640
|
-
log_1.default.debug("SI", "Segment pushed removes the next one", {
|
|
641
|
-
t: bufferType,
|
|
642
|
-
ss: start,
|
|
643
|
-
se: end,
|
|
644
|
-
pss: inventory[1].start,
|
|
645
|
-
pse: inventory[1].end,
|
|
646
|
-
});
|
|
647
|
-
inventory.splice(1, 1);
|
|
648
|
-
}
|
|
649
|
-
return;
|
|
650
|
-
}
|
|
651
|
-
else {
|
|
652
|
-
// our segment has a "complex" relation with the first one,
|
|
653
|
-
// update the old one start and add this one before it.
|
|
654
|
-
//
|
|
655
|
-
// Case 1:
|
|
656
|
-
// firstSegment : |------|
|
|
657
|
-
// newSegment : |======|
|
|
658
|
-
// ===> : |======|--|
|
|
659
|
-
log_1.default.debug("SI", "Segment pushed start of the next one", bufferType, {
|
|
660
|
-
ss: start,
|
|
661
|
-
se: end,
|
|
662
|
-
pss: firstSegment.start,
|
|
663
|
-
pse: firstSegment.end,
|
|
664
|
-
});
|
|
665
|
-
firstSegment.start = end;
|
|
666
|
-
firstSegment.bufferedStart = undefined;
|
|
667
|
-
firstSegment.precizeStart = newSegment.precizeEnd;
|
|
668
|
-
this._inventory.splice(0, 0, newSegment);
|
|
669
|
-
return;
|
|
670
|
-
}
|
|
671
|
-
};
|
|
672
|
-
/**
|
|
673
|
-
* Indicate that inserted chunks can now be considered as a fully-loaded
|
|
674
|
-
* segment.
|
|
675
|
-
* Take in argument the same content than what was given to `insertChunk` for
|
|
676
|
-
* the corresponding chunks.
|
|
677
|
-
* @param {Object} content
|
|
678
|
-
*/
|
|
679
|
-
SegmentInventory.prototype.completeSegment = function (content) {
|
|
680
|
-
var e_2, _a;
|
|
681
|
-
if (content.segment.isInit) {
|
|
682
|
-
return;
|
|
683
|
-
}
|
|
684
|
-
var inventory = this._inventory;
|
|
685
|
-
var resSegments = [];
|
|
686
|
-
for (var i = 0; i < inventory.length; i++) {
|
|
687
|
-
if ((0, manifest_1.areSameContent)(inventory[i].infos, content)) {
|
|
688
|
-
var splitted = false;
|
|
689
|
-
if (resSegments.length > 0) {
|
|
690
|
-
splitted = true;
|
|
691
|
-
if (resSegments.length === 1) {
|
|
692
|
-
log_1.default.warn("SI", "Completed Segment is splitted.", (0, manifest_1.getLoggableSegmentId)(content));
|
|
693
|
-
resSegments[0].splitted = true;
|
|
694
|
-
}
|
|
695
|
-
}
|
|
696
|
-
var firstI = i;
|
|
697
|
-
var segmentSize = inventory[i].chunkSize;
|
|
698
|
-
i += 1;
|
|
699
|
-
while (i < inventory.length && (0, manifest_1.areSameContent)(inventory[i].infos, content)) {
|
|
700
|
-
var chunkSize = inventory[i].chunkSize;
|
|
701
|
-
if (segmentSize !== undefined && chunkSize !== undefined) {
|
|
702
|
-
segmentSize += chunkSize;
|
|
703
|
-
}
|
|
704
|
-
i++;
|
|
705
|
-
}
|
|
706
|
-
var lastI = i - 1;
|
|
707
|
-
var length_1 = lastI - firstI;
|
|
708
|
-
var lastEnd = inventory[lastI].end;
|
|
709
|
-
var lastBufferedEnd = inventory[lastI].bufferedEnd;
|
|
710
|
-
if (length_1 > 0) {
|
|
711
|
-
this._inventory.splice(firstI + 1, length_1);
|
|
712
|
-
i -= length_1;
|
|
713
|
-
}
|
|
714
|
-
if (this._inventory[firstI].status === 0 /* ChunkStatus.PartiallyPushed */) {
|
|
715
|
-
this._inventory[firstI].status = 1 /* ChunkStatus.FullyLoaded */;
|
|
716
|
-
}
|
|
717
|
-
this._inventory[firstI].chunkSize = segmentSize;
|
|
718
|
-
this._inventory[firstI].end = lastEnd;
|
|
719
|
-
this._inventory[firstI].bufferedEnd = lastBufferedEnd;
|
|
720
|
-
this._inventory[firstI].splitted = splitted;
|
|
721
|
-
resSegments.push(this._inventory[firstI]);
|
|
722
|
-
}
|
|
723
|
-
}
|
|
724
|
-
if (resSegments.length === 0) {
|
|
725
|
-
log_1.default.warn("SI", "Completed Segment not found", (0, manifest_1.getLoggableSegmentId)(content));
|
|
726
|
-
}
|
|
727
|
-
else {
|
|
728
|
-
try {
|
|
729
|
-
for (var resSegments_1 = __values(resSegments), resSegments_1_1 = resSegments_1.next(); !resSegments_1_1.done; resSegments_1_1 = resSegments_1.next()) {
|
|
730
|
-
var seg = resSegments_1_1.value;
|
|
731
|
-
if (seg.bufferedStart !== undefined && seg.bufferedEnd !== undefined) {
|
|
732
|
-
if (seg.status !== 2 /* ChunkStatus.Failed */) {
|
|
733
|
-
this._bufferedHistory.addBufferedSegment(seg.infos, {
|
|
734
|
-
start: seg.bufferedStart,
|
|
735
|
-
end: seg.bufferedEnd,
|
|
736
|
-
});
|
|
737
|
-
}
|
|
738
|
-
}
|
|
739
|
-
else {
|
|
740
|
-
// TODO FIXME There might be a false positive here when the
|
|
741
|
-
// `SEGMENT_SYNCHRONIZATION_DELAY` config value is at play
|
|
742
|
-
log_1.default.debug("SI", "buffered range not known after sync. Skipping history.", {
|
|
743
|
-
ss: seg.start,
|
|
744
|
-
se: seg.end,
|
|
745
|
-
});
|
|
746
|
-
}
|
|
747
|
-
}
|
|
748
|
-
}
|
|
749
|
-
catch (e_2_1) { e_2 = { error: e_2_1 }; }
|
|
750
|
-
finally {
|
|
751
|
-
try {
|
|
752
|
-
if (resSegments_1_1 && !resSegments_1_1.done && (_a = resSegments_1.return)) _a.call(resSegments_1);
|
|
753
|
-
}
|
|
754
|
-
finally { if (e_2) throw e_2.error; }
|
|
755
|
-
}
|
|
756
|
-
}
|
|
757
|
-
};
|
|
758
|
-
/**
|
|
759
|
-
* Returns the whole inventory.
|
|
760
|
-
*
|
|
761
|
-
* To get a list synchronized with what a media buffer actually has buffered
|
|
762
|
-
* you might want to call `synchronizeBuffered` before calling this method.
|
|
763
|
-
* @returns {Array.<Object>}
|
|
764
|
-
*/
|
|
765
|
-
SegmentInventory.prototype.getInventory = function () {
|
|
766
|
-
return this._inventory;
|
|
767
|
-
};
|
|
768
|
-
/**
|
|
769
|
-
* Returns a recent history of registered operations performed and event
|
|
770
|
-
* received linked to the segment given in argument.
|
|
771
|
-
*
|
|
772
|
-
* Not all operations and events are registered in the returned history.
|
|
773
|
-
* Please check the return type for more information on what is available.
|
|
774
|
-
*
|
|
775
|
-
* Note that history is short-lived for memory usage and performance reasons.
|
|
776
|
-
* You may not receive any information on operations that happened too long
|
|
777
|
-
* ago.
|
|
778
|
-
* @param {Object} context
|
|
779
|
-
* @returns {Array.<Object>}
|
|
780
|
-
*/
|
|
781
|
-
SegmentInventory.prototype.getHistoryFor = function (context) {
|
|
782
|
-
return this._bufferedHistory.getHistoryFor(context);
|
|
783
|
-
};
|
|
784
|
-
return SegmentInventory;
|
|
785
|
-
}());
|
|
786
|
-
exports.default = SegmentInventory;
|
|
787
|
-
/**
|
|
788
|
-
* Returns `true` if the buffered start of the given chunk looks coherent enough
|
|
789
|
-
* relatively to what is announced in the Manifest.
|
|
790
|
-
* @param {Object} thisSegment
|
|
791
|
-
* @returns {Boolean}
|
|
792
|
-
*/
|
|
793
|
-
function bufferedStartLooksCoherent(thisSegment) {
|
|
794
|
-
if (thisSegment.bufferedStart === undefined ||
|
|
795
|
-
thisSegment.status !== 1 /* ChunkStatus.FullyLoaded */) {
|
|
796
|
-
return false;
|
|
797
|
-
}
|
|
798
|
-
var start = thisSegment.start, end = thisSegment.end;
|
|
799
|
-
var duration = end - start;
|
|
800
|
-
var _a = config_1.default.getCurrent(), MAX_MANIFEST_BUFFERED_START_END_DIFFERENCE = _a.MAX_MANIFEST_BUFFERED_START_END_DIFFERENCE, MAX_MANIFEST_BUFFERED_DURATION_DIFFERENCE = _a.MAX_MANIFEST_BUFFERED_DURATION_DIFFERENCE;
|
|
801
|
-
return (Math.abs(start - thisSegment.bufferedStart) <=
|
|
802
|
-
MAX_MANIFEST_BUFFERED_START_END_DIFFERENCE &&
|
|
803
|
-
(thisSegment.bufferedEnd === undefined ||
|
|
804
|
-
(thisSegment.bufferedEnd > thisSegment.bufferedStart &&
|
|
805
|
-
Math.abs(thisSegment.bufferedEnd - thisSegment.bufferedStart - duration) <=
|
|
806
|
-
Math.min(MAX_MANIFEST_BUFFERED_DURATION_DIFFERENCE, duration / 3))));
|
|
807
|
-
}
|
|
808
|
-
/**
|
|
809
|
-
* Returns `true` if the buffered end of the given chunk looks coherent enough
|
|
810
|
-
* relatively to what is announced in the Manifest.
|
|
811
|
-
* @param {Object} thisSegment
|
|
812
|
-
* @returns {Boolean}
|
|
813
|
-
*/
|
|
814
|
-
function bufferedEndLooksCoherent(thisSegment) {
|
|
815
|
-
if (thisSegment.bufferedEnd === undefined ||
|
|
816
|
-
!thisSegment.infos.segment.complete ||
|
|
817
|
-
thisSegment.status !== 1 /* ChunkStatus.FullyLoaded */) {
|
|
818
|
-
return false;
|
|
819
|
-
}
|
|
820
|
-
var start = thisSegment.start, end = thisSegment.end;
|
|
821
|
-
var duration = end - start;
|
|
822
|
-
var _a = config_1.default.getCurrent(), MAX_MANIFEST_BUFFERED_START_END_DIFFERENCE = _a.MAX_MANIFEST_BUFFERED_START_END_DIFFERENCE, MAX_MANIFEST_BUFFERED_DURATION_DIFFERENCE = _a.MAX_MANIFEST_BUFFERED_DURATION_DIFFERENCE;
|
|
823
|
-
return (Math.abs(end - thisSegment.bufferedEnd) <=
|
|
824
|
-
MAX_MANIFEST_BUFFERED_START_END_DIFFERENCE &&
|
|
825
|
-
thisSegment.bufferedStart !== undefined &&
|
|
826
|
-
thisSegment.bufferedEnd > thisSegment.bufferedStart &&
|
|
827
|
-
Math.abs(thisSegment.bufferedEnd - thisSegment.bufferedStart - duration) <=
|
|
828
|
-
Math.min(MAX_MANIFEST_BUFFERED_DURATION_DIFFERENCE, duration / 3));
|
|
829
|
-
}
|
|
830
|
-
/**
|
|
831
|
-
* Evaluate the given buffered Chunk's buffered start from its range's start,
|
|
832
|
-
* considering that this chunk is the first one in it.
|
|
833
|
-
* @param {Object} firstSegmentInRange
|
|
834
|
-
* @param {number} rangeStart
|
|
835
|
-
* @param {Object} lastDeletedSegmentInfos
|
|
836
|
-
*/
|
|
837
|
-
function guessBufferedStartFromRangeStart(firstSegmentInRange, rangeStart, lastDeletedSegmentInfos, bufferType) {
|
|
838
|
-
var _a = config_1.default.getCurrent(), MAX_MANIFEST_BUFFERED_START_END_DIFFERENCE = _a.MAX_MANIFEST_BUFFERED_START_END_DIFFERENCE, MISSING_DATA_TRIGGER_SYNC_DELAY = _a.MISSING_DATA_TRIGGER_SYNC_DELAY, SEGMENT_SYNCHRONIZATION_DELAY = _a.SEGMENT_SYNCHRONIZATION_DELAY;
|
|
839
|
-
if (firstSegmentInRange.bufferedStart !== undefined) {
|
|
840
|
-
if (firstSegmentInRange.bufferedStart < rangeStart) {
|
|
841
|
-
log_1.default.debug("SI", "Segment partially GCed at the start", {
|
|
842
|
-
t: bufferType,
|
|
843
|
-
firstsbs: firstSegmentInRange.bufferedStart,
|
|
844
|
-
rs: rangeStart,
|
|
845
|
-
});
|
|
846
|
-
firstSegmentInRange.bufferedStart = rangeStart;
|
|
847
|
-
}
|
|
848
|
-
if (!firstSegmentInRange.precizeStart &&
|
|
849
|
-
bufferedStartLooksCoherent(firstSegmentInRange)) {
|
|
850
|
-
firstSegmentInRange.start = firstSegmentInRange.bufferedStart;
|
|
851
|
-
firstSegmentInRange.precizeStart = true;
|
|
852
|
-
}
|
|
853
|
-
}
|
|
854
|
-
else if (firstSegmentInRange.precizeStart) {
|
|
855
|
-
log_1.default.debug("SI", "buffered start is precize start", {
|
|
856
|
-
t: bufferType,
|
|
857
|
-
firstss: firstSegmentInRange.start,
|
|
858
|
-
});
|
|
859
|
-
firstSegmentInRange.bufferedStart = firstSegmentInRange.start;
|
|
860
|
-
}
|
|
861
|
-
else if (lastDeletedSegmentInfos !== null &&
|
|
862
|
-
lastDeletedSegmentInfos.end > rangeStart &&
|
|
863
|
-
(lastDeletedSegmentInfos.precizeEnd ||
|
|
864
|
-
firstSegmentInRange.start - lastDeletedSegmentInfos.end <=
|
|
865
|
-
MAX_MANIFEST_BUFFERED_START_END_DIFFERENCE)) {
|
|
866
|
-
log_1.default.debug("SI", "buffered start is end of previous segment", {
|
|
867
|
-
t: bufferType,
|
|
868
|
-
rs: rangeStart,
|
|
869
|
-
firstss: firstSegmentInRange.start,
|
|
870
|
-
lastdelse: lastDeletedSegmentInfos.end,
|
|
871
|
-
});
|
|
872
|
-
firstSegmentInRange.bufferedStart = lastDeletedSegmentInfos.end;
|
|
873
|
-
if (bufferedStartLooksCoherent(firstSegmentInRange)) {
|
|
874
|
-
firstSegmentInRange.start = lastDeletedSegmentInfos.end;
|
|
875
|
-
firstSegmentInRange.precizeStart = true;
|
|
876
|
-
}
|
|
877
|
-
}
|
|
878
|
-
else if (firstSegmentInRange.start - rangeStart <=
|
|
879
|
-
MAX_MANIFEST_BUFFERED_START_END_DIFFERENCE) {
|
|
880
|
-
var now = (0, monotonic_timestamp_1.default)();
|
|
881
|
-
if (firstSegmentInRange.start - rangeStart >= MISSING_DATA_TRIGGER_SYNC_DELAY &&
|
|
882
|
-
now - firstSegmentInRange.insertionTs < SEGMENT_SYNCHRONIZATION_DELAY) {
|
|
883
|
-
log_1.default.debug("SI", "Ignored bufferedStart synchronization", {
|
|
884
|
-
t: bufferType,
|
|
885
|
-
rs: rangeStart,
|
|
886
|
-
firstss: firstSegmentInRange.start,
|
|
887
|
-
delta: now - firstSegmentInRange.insertionTs,
|
|
888
|
-
});
|
|
889
|
-
return;
|
|
890
|
-
}
|
|
891
|
-
log_1.default.debug("SI", "found true buffered start", {
|
|
892
|
-
t: bufferType,
|
|
893
|
-
rs: rangeStart,
|
|
894
|
-
firstss: firstSegmentInRange.start,
|
|
895
|
-
});
|
|
896
|
-
firstSegmentInRange.bufferedStart = rangeStart;
|
|
897
|
-
if (bufferedStartLooksCoherent(firstSegmentInRange)) {
|
|
898
|
-
firstSegmentInRange.start = rangeStart;
|
|
899
|
-
firstSegmentInRange.precizeStart = true;
|
|
900
|
-
}
|
|
901
|
-
}
|
|
902
|
-
else if (rangeStart < firstSegmentInRange.start) {
|
|
903
|
-
log_1.default.debug("SI", "range start too far from expected start", {
|
|
904
|
-
t: bufferType,
|
|
905
|
-
rs: rangeStart,
|
|
906
|
-
firstss: firstSegmentInRange.start,
|
|
907
|
-
});
|
|
908
|
-
firstSegmentInRange.bufferedStart = firstSegmentInRange.start;
|
|
909
|
-
}
|
|
910
|
-
else {
|
|
911
|
-
var now = (0, monotonic_timestamp_1.default)();
|
|
912
|
-
if (firstSegmentInRange.start - rangeStart >= MISSING_DATA_TRIGGER_SYNC_DELAY &&
|
|
913
|
-
now - firstSegmentInRange.insertionTs < SEGMENT_SYNCHRONIZATION_DELAY) {
|
|
914
|
-
log_1.default.debug("SI", "Ignored bufferedStart synchronization", {
|
|
915
|
-
t: bufferType,
|
|
916
|
-
rs: rangeStart,
|
|
917
|
-
firstss: firstSegmentInRange.start,
|
|
918
|
-
delta: now - firstSegmentInRange.insertionTs,
|
|
919
|
-
});
|
|
920
|
-
return;
|
|
921
|
-
}
|
|
922
|
-
log_1.default.debug("SI", "Segment appears immediately garbage collected at the start", {
|
|
923
|
-
t: bufferType,
|
|
924
|
-
rs: rangeStart,
|
|
925
|
-
firstss: firstSegmentInRange.start,
|
|
926
|
-
});
|
|
927
|
-
firstSegmentInRange.bufferedStart = rangeStart;
|
|
928
|
-
}
|
|
929
|
-
}
|
|
930
|
-
/**
|
|
931
|
-
* Evaluate the given buffered Chunk's buffered end from its range's end,
|
|
932
|
-
* considering that this chunk is the last one in it.
|
|
933
|
-
* @param {Object} lastSegmentInRange
|
|
934
|
-
* @param {number} rangeEnd
|
|
935
|
-
* @param {string} bufferType
|
|
936
|
-
*/
|
|
937
|
-
function guessBufferedEndFromRangeEnd(lastSegmentInRange, rangeEnd, bufferType) {
|
|
938
|
-
var _a = config_1.default.getCurrent(), MAX_MANIFEST_BUFFERED_START_END_DIFFERENCE = _a.MAX_MANIFEST_BUFFERED_START_END_DIFFERENCE, MISSING_DATA_TRIGGER_SYNC_DELAY = _a.MISSING_DATA_TRIGGER_SYNC_DELAY, SEGMENT_SYNCHRONIZATION_DELAY = _a.SEGMENT_SYNCHRONIZATION_DELAY;
|
|
939
|
-
if (lastSegmentInRange.bufferedEnd !== undefined) {
|
|
940
|
-
if (lastSegmentInRange.bufferedEnd > rangeEnd) {
|
|
941
|
-
log_1.default.debug("SI", "Segment partially GCed at the end", {
|
|
942
|
-
t: bufferType,
|
|
943
|
-
lastsbe: lastSegmentInRange.bufferedEnd,
|
|
944
|
-
re: rangeEnd,
|
|
945
|
-
});
|
|
946
|
-
lastSegmentInRange.bufferedEnd = rangeEnd;
|
|
947
|
-
}
|
|
948
|
-
if (!lastSegmentInRange.precizeEnd &&
|
|
949
|
-
rangeEnd - lastSegmentInRange.end <= MAX_MANIFEST_BUFFERED_START_END_DIFFERENCE &&
|
|
950
|
-
bufferedEndLooksCoherent(lastSegmentInRange)) {
|
|
951
|
-
lastSegmentInRange.precizeEnd = true;
|
|
952
|
-
lastSegmentInRange.end = rangeEnd;
|
|
953
|
-
}
|
|
954
|
-
}
|
|
955
|
-
else if (lastSegmentInRange.precizeEnd) {
|
|
956
|
-
log_1.default.debug("SI", "buffered end is precize end", {
|
|
957
|
-
t: bufferType,
|
|
958
|
-
lastse: lastSegmentInRange.end,
|
|
959
|
-
});
|
|
960
|
-
lastSegmentInRange.bufferedEnd = lastSegmentInRange.end;
|
|
961
|
-
}
|
|
962
|
-
else if (rangeEnd - lastSegmentInRange.end <= MAX_MANIFEST_BUFFERED_START_END_DIFFERENCE ||
|
|
963
|
-
!lastSegmentInRange.infos.segment.complete) {
|
|
964
|
-
var now = (0, monotonic_timestamp_1.default)();
|
|
965
|
-
if (rangeEnd - lastSegmentInRange.end >= MISSING_DATA_TRIGGER_SYNC_DELAY &&
|
|
966
|
-
now - lastSegmentInRange.insertionTs < SEGMENT_SYNCHRONIZATION_DELAY) {
|
|
967
|
-
log_1.default.debug("SI", "Ignored bufferedEnd synchronization", {
|
|
968
|
-
t: bufferType,
|
|
969
|
-
re: rangeEnd,
|
|
970
|
-
lastse: lastSegmentInRange.end,
|
|
971
|
-
delta: now - lastSegmentInRange.insertionTs,
|
|
972
|
-
});
|
|
973
|
-
return;
|
|
974
|
-
}
|
|
975
|
-
log_1.default.debug("SI", "found true buffered end", {
|
|
976
|
-
t: bufferType,
|
|
977
|
-
re: rangeEnd,
|
|
978
|
-
lastse: lastSegmentInRange.end,
|
|
979
|
-
});
|
|
980
|
-
lastSegmentInRange.bufferedEnd = rangeEnd;
|
|
981
|
-
if (bufferedEndLooksCoherent(lastSegmentInRange)) {
|
|
982
|
-
lastSegmentInRange.end = rangeEnd;
|
|
983
|
-
lastSegmentInRange.precizeEnd = true;
|
|
984
|
-
}
|
|
985
|
-
}
|
|
986
|
-
else if (rangeEnd > lastSegmentInRange.end) {
|
|
987
|
-
log_1.default.debug("SI", "range end too far from expected end", {
|
|
988
|
-
t: bufferType,
|
|
989
|
-
re: rangeEnd,
|
|
990
|
-
lastse: lastSegmentInRange.end,
|
|
991
|
-
});
|
|
992
|
-
lastSegmentInRange.bufferedEnd = lastSegmentInRange.end;
|
|
993
|
-
}
|
|
994
|
-
else {
|
|
995
|
-
var now = (0, monotonic_timestamp_1.default)();
|
|
996
|
-
if (rangeEnd - lastSegmentInRange.end >= MISSING_DATA_TRIGGER_SYNC_DELAY &&
|
|
997
|
-
now - lastSegmentInRange.insertionTs < SEGMENT_SYNCHRONIZATION_DELAY) {
|
|
998
|
-
log_1.default.debug("SI", "Ignored bufferedEnd synchronization", {
|
|
999
|
-
t: bufferType,
|
|
1000
|
-
re: rangeEnd,
|
|
1001
|
-
lastse: lastSegmentInRange.end,
|
|
1002
|
-
delta: now - lastSegmentInRange.insertionTs,
|
|
1003
|
-
});
|
|
1004
|
-
return;
|
|
1005
|
-
}
|
|
1006
|
-
log_1.default.debug("SI", "Segment appears immediately garbage collected at the end", {
|
|
1007
|
-
t: bufferType,
|
|
1008
|
-
lastsbe: lastSegmentInRange.bufferedEnd,
|
|
1009
|
-
re: rangeEnd,
|
|
1010
|
-
});
|
|
1011
|
-
lastSegmentInRange.bufferedEnd = rangeEnd;
|
|
1012
|
-
}
|
|
1013
|
-
}
|
|
1014
|
-
/**
|
|
1015
|
-
* Pretty print the inventory, to easily note which segments are where in the
|
|
1016
|
-
* current buffer.
|
|
1017
|
-
*
|
|
1018
|
-
* This is mostly useful when logging.
|
|
1019
|
-
*
|
|
1020
|
-
* @example
|
|
1021
|
-
* This function is called by giving it the inventory, such as:
|
|
1022
|
-
* ```js
|
|
1023
|
-
* prettyPrintInventory(inventory);
|
|
1024
|
-
* ```
|
|
1025
|
-
*
|
|
1026
|
-
* Let's consider this possible return:
|
|
1027
|
-
* ```
|
|
1028
|
-
* 0.00|A|9.00 ~ 9.00|B|45.08 ~ 282.08|B|318.08
|
|
1029
|
-
* [A] P: gen-dash-period-0 || R: video/5(2362822)
|
|
1030
|
-
* [B] P: gen-dash-period-0 || R: video/6(2470094)
|
|
1031
|
-
* ```
|
|
1032
|
-
* We have a first part, from 0 to 9 seconds, which contains segments for
|
|
1033
|
-
* the Representation with the id "video/5" and an associated bitrate of
|
|
1034
|
-
* 2362822 bits per seconds (in the Period with the id "gen-dash-period-0").
|
|
1035
|
-
*
|
|
1036
|
-
* Then from 9.00 seconds to 45.08 seconds, we have segments from another
|
|
1037
|
-
* Representation from the same Period (with the id "video/6" and a bitrate
|
|
1038
|
-
* of 2470094 bits per seconds).
|
|
1039
|
-
*
|
|
1040
|
-
* At last we have a long time between 45.08 and 282.08 with no segment followed
|
|
1041
|
-
* by a segment from that same Representation between 282.08 seconds and 318.08
|
|
1042
|
-
* seconds.
|
|
1043
|
-
* @param {Array.<Object>} inventory
|
|
1044
|
-
* @returns {string}
|
|
1045
|
-
*/
|
|
1046
|
-
function prettyPrintInventory(inventory) {
|
|
1047
|
-
var e_3, _a, _b;
|
|
1048
|
-
var roundingError = 1 / 60;
|
|
1049
|
-
var encounteredReps = {};
|
|
1050
|
-
var letters = [];
|
|
1051
|
-
var lastChunk = null;
|
|
1052
|
-
var lastLetter = null;
|
|
1053
|
-
function generateNewLetter(infos) {
|
|
1054
|
-
var currentLetter = String.fromCharCode(letters.length + 65);
|
|
1055
|
-
letters.push({
|
|
1056
|
-
letter: currentLetter,
|
|
1057
|
-
periodId: infos.period.id,
|
|
1058
|
-
representationId: infos.representation.id,
|
|
1059
|
-
bitrate: infos.representation.bitrate,
|
|
1060
|
-
});
|
|
1061
|
-
return currentLetter;
|
|
1062
|
-
}
|
|
1063
|
-
var str = "";
|
|
1064
|
-
try {
|
|
1065
|
-
for (var inventory_1 = __values(inventory), inventory_1_1 = inventory_1.next(); !inventory_1_1.done; inventory_1_1 = inventory_1.next()) {
|
|
1066
|
-
var chunk = inventory_1_1.value;
|
|
1067
|
-
if (chunk.bufferedStart !== undefined && chunk.bufferedEnd !== undefined) {
|
|
1068
|
-
var periodId = chunk.infos.period.id;
|
|
1069
|
-
var representationId = chunk.infos.representation.id;
|
|
1070
|
-
var encounteredPeriod = encounteredReps[periodId];
|
|
1071
|
-
var currentLetter = void 0;
|
|
1072
|
-
if (encounteredPeriod === undefined) {
|
|
1073
|
-
currentLetter = generateNewLetter(chunk.infos);
|
|
1074
|
-
encounteredReps[periodId] = (_b = {}, _b[representationId] = currentLetter, _b);
|
|
1075
|
-
}
|
|
1076
|
-
else {
|
|
1077
|
-
var previousLetter = encounteredPeriod[representationId];
|
|
1078
|
-
if (previousLetter === undefined) {
|
|
1079
|
-
currentLetter = generateNewLetter(chunk.infos);
|
|
1080
|
-
encounteredPeriod[representationId] = currentLetter;
|
|
1081
|
-
}
|
|
1082
|
-
else {
|
|
1083
|
-
currentLetter = previousLetter;
|
|
1084
|
-
}
|
|
1085
|
-
}
|
|
1086
|
-
if (lastChunk === null) {
|
|
1087
|
-
str += "".concat(chunk.bufferedStart.toFixed(2), "|").concat(currentLetter, "|");
|
|
1088
|
-
}
|
|
1089
|
-
else if (lastLetter === currentLetter) {
|
|
1090
|
-
if (lastChunk.bufferedEnd + roundingError < chunk.bufferedStart) {
|
|
1091
|
-
str +=
|
|
1092
|
-
"".concat(lastChunk.bufferedEnd.toFixed(2), " ~ ") +
|
|
1093
|
-
"".concat(chunk.bufferedStart.toFixed(2), "|").concat(currentLetter, "|");
|
|
1094
|
-
}
|
|
1095
|
-
}
|
|
1096
|
-
else {
|
|
1097
|
-
str +=
|
|
1098
|
-
"".concat(lastChunk.bufferedEnd.toFixed(2), " ~ ") +
|
|
1099
|
-
"".concat(chunk.bufferedStart.toFixed(2), "|").concat(currentLetter, "|");
|
|
1100
|
-
}
|
|
1101
|
-
lastChunk = chunk;
|
|
1102
|
-
lastLetter = currentLetter;
|
|
1103
|
-
}
|
|
1104
|
-
}
|
|
1105
|
-
}
|
|
1106
|
-
catch (e_3_1) { e_3 = { error: e_3_1 }; }
|
|
1107
|
-
finally {
|
|
1108
|
-
try {
|
|
1109
|
-
if (inventory_1_1 && !inventory_1_1.done && (_a = inventory_1.return)) _a.call(inventory_1);
|
|
1110
|
-
}
|
|
1111
|
-
finally { if (e_3) throw e_3.error; }
|
|
1112
|
-
}
|
|
1113
|
-
if (lastChunk !== null) {
|
|
1114
|
-
str += String(lastChunk.end.toFixed(2));
|
|
1115
|
-
}
|
|
1116
|
-
letters.forEach(function (letterInfo) {
|
|
1117
|
-
var _a;
|
|
1118
|
-
str +=
|
|
1119
|
-
"\n[".concat(letterInfo.letter, "] ") +
|
|
1120
|
-
"P: ".concat(letterInfo.periodId, " || R: ").concat(letterInfo.representationId) +
|
|
1121
|
-
"(".concat((_a = letterInfo.bitrate) !== null && _a !== void 0 ? _a : "unknown bitrate", ")");
|
|
1122
|
-
});
|
|
1123
|
-
return str;
|
|
1124
|
-
}
|