-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Dzianis Dashkevich
committed
Dec 16, 2023
1 parent
00ff5cc
commit 4666246
Showing
7 changed files
with
54 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export const PipelineEvents = {} as const; |
1 change: 1 addition & 0 deletions
1
packages/playback/src/lib/pipelines/events/pipelineEventTypeToEventMap.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export interface PipelinePlayerEventTypeToEventMap {} |
23 changes: 22 additions & 1 deletion
23
packages/playback/src/lib/player/configuration/configuration.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,24 @@ | ||
export interface PlayerConfiguration {} | ||
// interface NetworkConfiguration { | ||
// maxAttempts: number; | ||
// delay: number; | ||
// delayFactor: number; | ||
// fuzzFactor: number; | ||
// timeout: number; | ||
// } | ||
// | ||
// interface StreamingConfiguration { | ||
// network: NetworkConfiguration; | ||
// } | ||
// | ||
// interface HlsConfiguration extends StreamingConfiguration {} | ||
// | ||
// interface DashConfiguration extends StreamingConfiguration {} | ||
// | ||
// export interface PlayerConfiguration { | ||
// hls: HlsConfiguration; | ||
// dash: DashConfiguration; | ||
// } | ||
|
||
interface PlayerConfiguration {} | ||
|
||
export const createDefaultConfiguration = (): PlayerConfiguration => ({}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters