Skip to content

Commit

Permalink
update compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
jobispo committed Dec 3, 2024
1 parent f5742f0 commit 22a3f51
Show file tree
Hide file tree
Showing 17 changed files with 531 additions and 482 deletions.
7 changes: 6 additions & 1 deletion dist/shaka-player.compiled.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,11 @@ declare namespace shaka {
* Go to live in a live stream.
*/
goToLive ( ) : any ;
/**
* Sets the player to hibernate mode. In hibernate mode, the player will not
* update * the manifest, will not fetch new segments.
*/
hibernate (value : boolean ) : any ;
/**
* Check if the manifest contains only audio-only content. If the player has
* not loaded content, this will return <code>false</code>.
Expand Down Expand Up @@ -4732,7 +4737,7 @@ declare namespace shaka.extern.ManifestParser {
}
// Generated from /home/jobispo/dev/stv-shaka-player/externs/shaka/manifest_parser.js
declare namespace shaka.extern.ManifestParser {
type PlayerInterface = { enableLowLatencyMode : ( ) => any , filter : (a : shaka.extern.Manifest ) => Promise < any > , getBandwidthEstimate : ( ) => number , isAutoLowLatencyMode : ( ) => boolean , isLowLatencyMode : ( ) => boolean , makeTextStreamsForClosedCaptions : (a : shaka.extern.Manifest ) => any , networkingEngine : shaka.net.NetworkingEngine , newDrmInfo : (a : shaka.extern.Stream ) => any , onError : (a : shaka.util.Error ) => any , onEvent : shaka.util.EventManager.ListenerType , onManifestUpdated : ( ) => any , onTimelineRegionAdded : (a : shaka.extern.TimelineRegionInfo ) => any , updateDuration : ( ) => any } ;
type PlayerInterface = { enableLowLatencyMode : ( ) => any , filter : (a : shaka.extern.Manifest ) => Promise < any > , getBandwidthEstimate : ( ) => number , isAutoLowLatencyMode : ( ) => boolean , isHibernated : ( ) => boolean , isLowLatencyMode : ( ) => boolean , makeTextStreamsForClosedCaptions : (a : shaka.extern.Manifest ) => any , networkingEngine : shaka.net.NetworkingEngine , newDrmInfo : (a : shaka.extern.Stream ) => any , onError : (a : shaka.util.Error ) => any , onEvent : shaka.util.EventManager.ListenerType , onManifestUpdated : ( ) => any , onTimelineRegionAdded : (a : shaka.extern.TimelineRegionInfo ) => any , updateDuration : ( ) => any } ;
}
// Generated from /home/jobispo/dev/stv-shaka-player/externs/shaka/mp4_parser.js
declare namespace shaka.extern {
Expand Down
7 changes: 6 additions & 1 deletion dist/shaka-player.compiled.debug.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,11 @@ declare namespace shaka {
* Go to live in a live stream.
*/
goToLive ( ) : any ;
/**
* Sets the player to hibernate mode. In hibernate mode, the player will not
* update * the manifest, will not fetch new segments.
*/
hibernate (value : boolean ) : any ;
/**
* Check if the manifest contains only audio-only content. If the player has
* not loaded content, this will return <code>false</code>.
Expand Down Expand Up @@ -4732,7 +4737,7 @@ declare namespace shaka.extern.ManifestParser {
}
// Generated from /home/jobispo/dev/stv-shaka-player/externs/shaka/manifest_parser.js
declare namespace shaka.extern.ManifestParser {
type PlayerInterface = { enableLowLatencyMode : ( ) => any , filter : (a : shaka.extern.Manifest ) => Promise < any > , getBandwidthEstimate : ( ) => number , isAutoLowLatencyMode : ( ) => boolean , isLowLatencyMode : ( ) => boolean , makeTextStreamsForClosedCaptions : (a : shaka.extern.Manifest ) => any , networkingEngine : shaka.net.NetworkingEngine , newDrmInfo : (a : shaka.extern.Stream ) => any , onError : (a : shaka.util.Error ) => any , onEvent : shaka.util.EventManager.ListenerType , onManifestUpdated : ( ) => any , onTimelineRegionAdded : (a : shaka.extern.TimelineRegionInfo ) => any , updateDuration : ( ) => any } ;
type PlayerInterface = { enableLowLatencyMode : ( ) => any , filter : (a : shaka.extern.Manifest ) => Promise < any > , getBandwidthEstimate : ( ) => number , isAutoLowLatencyMode : ( ) => boolean , isHibernated : ( ) => boolean , isLowLatencyMode : ( ) => boolean , makeTextStreamsForClosedCaptions : (a : shaka.extern.Manifest ) => any , networkingEngine : shaka.net.NetworkingEngine , newDrmInfo : (a : shaka.extern.Stream ) => any , onError : (a : shaka.util.Error ) => any , onEvent : shaka.util.EventManager.ListenerType , onManifestUpdated : ( ) => any , onTimelineRegionAdded : (a : shaka.extern.TimelineRegionInfo ) => any , updateDuration : ( ) => any } ;
}
// Generated from /home/jobispo/dev/stv-shaka-player/externs/shaka/mp4_parser.js
declare namespace shaka.extern {
Expand Down
6 changes: 6 additions & 0 deletions dist/shaka-player.compiled.debug.externs.js
Original file line number Diff line number Diff line change
Expand Up @@ -3127,6 +3127,12 @@ shaka.Player = class extends shaka.util.FakeEventTarget {
* @return {!Promise}
*/
detach(keepAdManager) {}
/**
* Sets the player to hibernate mode. In hibernate mode, the player will not
* update * the manifest, will not fetch new segments.
* @param {boolean} value
*/
hibernate(value) {}
/**
* Unloads the currently playing stream, if any.
* @param {boolean=} initializeMediaSource
Expand Down
34 changes: 17 additions & 17 deletions dist/shaka-player.compiled.debug.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/shaka-player.compiled.debug.map

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions dist/shaka-player.compiled.externs.js
Original file line number Diff line number Diff line change
Expand Up @@ -3127,6 +3127,12 @@ shaka.Player = class extends shaka.util.FakeEventTarget {
* @return {!Promise}
*/
detach(keepAdManager) {}
/**
* Sets the player to hibernate mode. In hibernate mode, the player will not
* update * the manifest, will not fetch new segments.
* @param {boolean} value
*/
hibernate(value) {}
/**
* Unloads the currently playing stream, if any.
* @param {boolean=} initializeMediaSource
Expand Down
Loading

0 comments on commit 22a3f51

Please sign in to comment.