Skip to content
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

Use livekit's Rust SDK instead of their swift SDK, take 2 #20826

Closed
wants to merge 43 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
46329d6
Reapply "Use livekit's Rust SDK instead of their swift SDK (#13343)" …
SomeoneToIgnore Nov 18, 2024
0077602
Move all cpal-related code into a background thread
SomeoneToIgnore Nov 19, 2024
8b20ce6
Stop requiring a WebRTC.framework dir with Info.plist
SomeoneToIgnore Nov 19, 2024
22d10c2
An attempt to fix the sound issues
SomeoneToIgnore Nov 19, 2024
88d48f4
Log errors in more places in live_kit_client
mgsloan Nov 21, 2024
5e192f7
WIP improvement to audio quality by doing some buffering during playback
mgsloan Nov 26, 2024
a487f77
Merge branch 'main' into livekit-rust-sdk
mgsloan Nov 26, 2024
f6bfaab
Switch to using livekit's internal re-sampler
mikayla-maki Nov 26, 2024
b35e235
Rework audio playback to use the local device's sample rate
mikayla-maki Nov 26, 2024
a1a35a9
Fix some threading in capture_local_audio_track
mikayla-maki Nov 27, 2024
8b6408f
Fix clippy?
mikayla-maki Nov 27, 2024
98eddef
Don't query the host when running tests
mikayla-maki Nov 27, 2024
085325e
remove accidental debug
mikayla-maki Nov 27, 2024
4b54773
Bump the buffer size to 100ms
SomeoneToIgnore Nov 27, 2024
25f2cf9
Fix microphone not working,,, maybe?
mikayla-maki Nov 27, 2024
218a311
Log more info on microphones used
mikayla-maki Nov 27, 2024
b7b0a66
Typo
SomeoneToIgnore Nov 27, 2024
0a10a1c
WIP: rewrite livekit integration to use a single output stream
mikayla-maki Nov 27, 2024
c68729f
Revert "WIP: rewrite livekit integration to use a single output stream"
SomeoneToIgnore Nov 28, 2024
9f90dab
Exclude Alsa static libraries from Zed Linux bundle
SomeoneToIgnore Nov 28, 2024
4507a0d
Merge branch 'main' into livekit-rust-sdk
SomeoneToIgnore Nov 28, 2024
454f380
Update LiveKit repo reference to include patched webrtc
mgsloan Nov 29, 2024
993f2b3
Initial implementation of rendering screen shares on Linux and Window…
mgsloan Nov 30, 2024
6f1f579
Fix lints + enable `play_remote_video_track` on windows
mgsloan Dec 1, 2024
73e343c
Improvements to screen share rendering code
mgsloan Dec 1, 2024
458ae9a
Merge branch 'main' into livekit-rust-sdk
mgsloan Dec 2, 2024
7050288
Merge branch 'main' into livekit-rust-sdk
mikayla-maki Dec 2, 2024
c6f1ab9
bump livekit version
mikayla-maki Dec 2, 2024
0f5bd9a
Upgrade to latest livekit
mikayla-maki Dec 2, 2024
be967b7
Merge branch 'main' into linux-render-screenshare
mgsloan Dec 2, 2024
6174f50
Merge branch 'main' into livekit-rust-sdk
SomeoneToIgnore Dec 3, 2024
ddef94a
Deallocate images used for rendering screenshares
mgsloan Dec 3, 2024
93d8677
Merge branch 'linux-render-screenshare' into livekit-rust-sdk
mgsloan Dec 3, 2024
3861d07
Fix build on Mac
mgsloan Dec 3, 2024
1f1c274
fix livekit naming
mikayla-maki Dec 3, 2024
d9b5af2
Revert over eager livekit renames
mikayla-maki Dec 3, 2024
6578604
Fix build on windows
mgsloan Dec 3, 2024
6367b2d
fix more rename issues
mikayla-maki Dec 3, 2024
9c9e1d5
Revert protobuf name migrations
mikayla-maki Dec 3, 2024
39069ad
Fix colors in linux screenshare
mgsloan Dec 3, 2024
83d6625
Fix resize for linux screenshare rendering
mgsloan Dec 4, 2024
825c630
Cargo fmt
mgsloan Dec 4, 2024
afa01a2
Fix Mac clippy
mgsloan Dec 4, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ rustflags = ["-C", "link-arg=-fuse-ld=mold"]
linker = "clang"
rustflags = ["-C", "link-arg=-fuse-ld=mold"]

[target.aarch64-apple-darwin]
rustflags = ["-C", "link-args=-Objc -all_load"]

[target.x86_64-apple-darwin]
rustflags = ["-C", "link-args=-Objc -all_load"]

# This cfg will reduce the size of `windows::core::Error` from 16 bytes to 4 bytes
[target.'cfg(target_os = "windows")']
rustflags = ["--cfg", "windows_slim_errors"]
Loading
Loading