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

Merge remote #8

Open
wants to merge 50 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
d5bb1fd
fix mutex deadlock and improve bandwidth controller
Aug 5, 2024
b9a58b4
fix panic on update stats
Aug 5, 2024
1a5fa8f
fix bitrate controller devide by zero
Aug 5, 2024
acc15cd
upgrade pion to v4.0.0-beta-26
Aug 5, 2024
0824d33
improve bitrate controller and how to handle quality none
Aug 9, 2024
062457c
get target bitrate directly from bw estimator
Aug 9, 2024
d6c0ff7
fix report sender not return on client ended
Aug 9, 2024
ada4269
fix noisy error on audio red encoding
Aug 9, 2024
70f8807
fix error message
Aug 9, 2024
14f93d2
fix available bandwidth calculation
Aug 9, 2024
81b0c38
fix bandwidth allocation on add claims
Aug 9, 2024
44e1c00
fix enable client stats not ended
Aug 9, 2024
c477589
move vad to remote track instead of local track
Aug 10, 2024
f67f436
fix bitrate controller can't increase bitrate
Aug 10, 2024
e5a93fa
fix quality none not increase
Aug 10, 2024
1632301
fix get next quality function
Aug 10, 2024
86e013b
fix svc clientrack get wrong quality
Aug 10, 2024
66b6f33
add view only on example, and fix deadlock on add remove claim
Aug 12, 2024
b781eaa
use sync.Map instead of mutex for bitrate controller
Aug 12, 2024
02676a9
fix audio missing
Aug 12, 2024
a233813
fix scaledown vp9 sometime freeze video
Aug 17, 2024
2aedf08
fix stats and adjust bandwidth adjustment
Aug 19, 2024
4321a79
fix vad stats and adjust bitrate controller
Aug 19, 2024
1a95617
fix divide by zero on vad stats
Aug 19, 2024
54a7f3e
fix track stats
Aug 19, 2024
1023c3c
change quality none won't send packet
Aug 27, 2024
b85c85d
fix the buffer is not putback to pool on error
Sep 9, 2024
2a9a72d
fix double call to readRTCP and try to use NoOpPacer on BWE
tyohan Sep 19, 2024
8e0743e
fix read RTCP return no packets
tyohan Sep 19, 2024
3bfcd7d
remove the log
tyohan Sep 19, 2024
a9c1fc2
clean out bitrate controller log
tyohan Sep 19, 2024
ee7429c
clean clienttrack log
tyohan Sep 19, 2024
8927452
make internaldatavad public
tyohan Sep 26, 2024
982118c
fix vad attributes not set
tyohan Sep 28, 2024
fcccc7e
add some adjustmet for transcription service
tyohan Sep 30, 2024
4a0778e
fix deadlock on meta onchanged
tyohan Sep 30, 2024
08aae6c
Upgrade Pion library to v4.0.0-beta.32
tyohan Oct 7, 2024
b5bdd96
Update to Pion v4.0.0-beta.34
tyohan Oct 8, 2024
0f6e8f3
Update documentation for VAD interceptor
tyohan Oct 9, 2024
7f5123a
Update rtppool package to support adding attributes
tyohan Oct 21, 2024
23203f8
Fix build
tyohan Oct 21, 2024
792a640
Fix packetmanager cause panic
tyohan Oct 21, 2024
6c614d4
Update Pion to v4.0.1
tyohan Oct 29, 2024
3a52945
fix non ice trickle not include candidate
tyohan Oct 30, 2024
a3ca7e2
expose some private functions
tyohan Jan 14, 2025
3e69992
update pion v4.0.7
tyohan Jan 14, 2025
4362622
simplify utils
tyohan Jan 14, 2025
c54c94c
fix rtx codec registration failed
tyohan Jan 16, 2025
013e6f1
add enable SCTP zero checksum
tyohan Jan 18, 2025
e581b2e
remove unsupported video codec from codecs
tyohan Jan 18, 2025
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
4 changes: 2 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
"program": "${workspaceFolder}/examples/http-websocket/main.go",
"env": {
"PIONS_LOG_DEBUG":"sfu,vad",
"PIONS_LOG_TRACE":"sfu,vad",
"PIONS_LOG_TRACE":"sfu,vad,bitratecontroller",
"PIONS_LOG_INFO":"sfu,vad",
"PIONS_LOG_WARN":"sfu,vad",
"PIONS_LOG_ERROR":"sfu,vad",
"stderrthreshold":"DEBUG",
"stderrthreshold":"TRACE",
"logtostderr":"true",

},
Expand Down
Loading