-
Notifications
You must be signed in to change notification settings - Fork 268
Add support for packet trailer features #1886
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
chenosaurus
wants to merge
33
commits into
main
Choose a base branch
from
dc/feature/packet_trailer
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
c1e4763
add support for packet trailer features
chenosaurus 3d00ac0
update frame metadata rendering in demo
chenosaurus 0e61562
when e2ee is enabled, handle the packet trailer parsing within FrameC…
chenosaurus f11025a
remove orphaned file
chenosaurus e00d1dd
remove orphaned file
chenosaurus 09e2b1f
cleanup for consistency
chenosaurus c9250dd
dont display frame id if not set
chenosaurus 5d9d1bc
clean up
chenosaurus df3dc78
improve parser
chenosaurus de281af
clean up
chenosaurus a47dee7
ensure user_timestamp is bigint
chenosaurus 2028be1
fix bigint literals
chenosaurus cbda15e
lint
chenosaurus c9721ff
lint
chenosaurus 96b1cec
bump @livekit/protocol to 1.45.3
chenosaurus 02ec087
update pnpm lock file
chenosaurus ed291a7
formatting
chenosaurus b3d39e3
fix access to packetTrailerExtractor
chenosaurus 4bd5ada
fix reconnect logic & dont attach transformer to published tracks fro…
chenosaurus 9f91c94
backup transformer can be added in main thread if worker is not created
chenosaurus f120282
move packetTrailer files
chenosaurus b730f81
refactor parsing into helper, clean up framecryptor
chenosaurus e0d173c
add the moved files
chenosaurus 6db94bd
revert unintended change
chenosaurus 49942ef
lint
chenosaurus ae7c8f5
update packet trailer to utilize client capabilities
chenosaurus 125464f
dont attach transform if worker is not initialized
chenosaurus e06d5d2
Merge branch 'main' into dc/feature/packet_trailer
chenosaurus b124e14
cleanup
chenosaurus 72c6251
Merge branch 'dc/feature/packet_trailer' of github.com:livekit/client…
chenosaurus d791bc0
ensure safari works
chenosaurus afc0fee
revert unneded changes
chenosaurus e51ca72
ensure outgoing video doesnt have packet trailer transformer
chenosaurus File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or 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,25 @@ | ||
| import terser from '@rollup/plugin-terser'; | ||
| import typescript from 'rollup-plugin-typescript2'; | ||
| import packageJson from './package.json'; | ||
| import { commonPlugins, kebabCaseToPascalCase } from './rollup.config'; | ||
|
|
||
| export default { | ||
| input: 'src/packetTrailer/worker/packetTrailer.worker.ts', | ||
| output: [ | ||
| { | ||
| file: `dist/${packageJson.name}.pt.worker.mjs`, | ||
| format: 'es', | ||
| strict: true, | ||
| sourcemap: true, | ||
| }, | ||
| { | ||
| file: `dist/${packageJson.name}.pt.worker.js`, | ||
| format: 'umd', | ||
| strict: true, | ||
| sourcemap: true, | ||
| name: kebabCaseToPascalCase(packageJson.name) + '.pt.worker', | ||
| plugins: [terser()], | ||
| }, | ||
| ], | ||
| plugins: [typescript({ tsconfig: './src/packetTrailer/worker/tsconfig.json' }), ...commonPlugins], | ||
| }; |
This file contains hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.