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

Video daemon #144

Merged
merged 53 commits into from
Dec 21, 2023
Merged
Show file tree
Hide file tree
Changes from 14 commits
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
568f002
Video daemon
griffobeid Dec 13, 2023
16d3209
resurrected the codes
griffobeid Dec 13, 2023
60662c2
cargo fix
griffobeid Dec 13, 2023
a9c4c97
fix large packet size
griffobeid Dec 13, 2023
86d9533
Fix connection packet
griffobeid Dec 13, 2023
dba0088
Increase uni stream size limit
griffobeid Dec 13, 2023
0c6e2b5
fixes
griffobeid Dec 13, 2023
59f35cc
Clippy and fmt
griffobeid Dec 13, 2023
ef3f659
No doctest
griffobeid Dec 13, 2023
3b2cf6b
use same versions
griffobeid Dec 13, 2023
c6dc91b
allow lint
griffobeid Dec 13, 2023
d06b843
Same version
griffobeid Dec 13, 2023
8ea1974
Update ui
griffobeid Dec 13, 2023
cbaa37e
Revert unrelated change
griffobeid Dec 14, 2023
6168c00
Simplify logic
griffobeid Dec 15, 2023
ad3051d
Revert "Simplify logic"
griffobeid Dec 15, 2023
d706a2d
Move logic to function
griffobeid Dec 15, 2023
107fd1a
Return conditional
griffobeid Dec 15, 2023
02f75a6
clippy
griffobeid Dec 15, 2023
6045d14
Use api base image
griffobeid Dec 15, 2023
6aece2c
panic
griffobeid Dec 15, 2023
f374f6a
Data is at least being decoded
griffobeid Dec 15, 2023
f96da5b
removing image parsing
darioalessandro Dec 16, 2023
02104f5
check in yuyv parser
darioalessandro Dec 16, 2023
ffd6068
got it to encode with profile 0
darioalessandro Dec 16, 2023
13cd5fb
got camera to work, color space looks good
darioalessandro Dec 17, 2023
1a13c6c
install wasm-bindgen-test
darioalessandro Dec 17, 2023
43b4ef2
updated many libraries until everything compiled
darioalessandro Dec 17, 2023
505ec28
upgraded rust in docker images
darioalessandro Dec 17, 2023
9f33488
clippy
darioalessandro Dec 17, 2023
0bd32f0
I feel monotonically increasing
darioalessandro Dec 17, 2023
eb26031
got it to work :)
darioalessandro Dec 17, 2023
01ff4df
added fps debug thread back
darioalessandro Dec 17, 2023
c3a14e5
Better error handling, reconnect on not connected
griffobeid Dec 18, 2023
2fe0d77
Passing videocall-client tests
griffobeid Dec 18, 2023
c474b96
Add build-essential
griffobeid Dec 18, 2023
c96b1a4
libclang-dev
griffobeid Dec 18, 2023
826ed94
Exclude video-daemon from cargo workspace
griffobeid Dec 18, 2023
7defbef
Update path
griffobeid Dec 18, 2023
790cf85
Not clippy-preview
griffobeid Dec 18, 2023
e1fc303
Fix rustlemania.com
griffobeid Dec 19, 2023
9f2e3fe
Update docs
griffobeid Dec 19, 2023
70b6dd9
Good start on audio encoding
griffobeid Dec 19, 2023
3c1a17f
Remove noisy print message
griffobeid Dec 19, 2023
9d6e356
Working microphone
griffobeid Dec 19, 2023
d52a6f8
Add comment
griffobeid Dec 19, 2023
95f0c9f
Fix up mic audio
griffobeid Dec 20, 2023
2598650
clippy
griffobeid Dec 20, 2023
b28ef35
fmt
griffobeid Dec 20, 2023
a023aec
add clippy 2023-12-13
darioalessandro Dec 21, 2023
0071cd3
remove nightly rust, since it is not longer required
darioalessandro Dec 21, 2023
457c92d
add clippy ignore
darioalessandro Dec 21, 2023
8817d54
Consistent packet size
griffobeid Dec 21, 2023
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
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
**/target
**/dist
Dockerfile*
8 changes: 4 additions & 4 deletions .github/workflows/cargo-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@1.70
- uses: dtolnay/rust-toolchain@1.72
with:
components: clippy, rustfmt
- run: cd actix-api && cargo clippy -- --deny warnings
Expand All @@ -41,10 +41,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@1.65
- uses: dtolnay/rust-toolchain@1.72
with:
components: clippy, rustfmt
toolchain: nightly-2023-01-27
toolchain: nightly-2023-12-13
- run: rustup target add wasm32-unknown-unknown
- run: cd yew-ui && cargo fmt --check

Expand All @@ -62,7 +62,7 @@ jobs:
with:
profile: minimal
target: wasm32-unknown-unknown
toolchain: nightly-2023-01-27
toolchain: nightly-2023-12-13
override: true

- name: Install wasm-bindgen-cli
Expand Down
Loading
Loading