-
-
Notifications
You must be signed in to change notification settings - Fork 138
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
update webrtc deps, update frontend deps, fix misc bugs #56
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove log messages
// Read RTP packets forever and send them to the WebRTC Client | ||
for { | ||
|
||
n, _, err := listener.ReadFrom(inboundRTPPacket) | ||
|
||
once.Do(func() { fmt.Print("houston we have a packet") }) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missed a log message
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I want to keep this one in since its useful to know when we receive the first RTP packet. I plan on overhauling the logging here next though and will make it nicer :)
// Read RTP packets forever and send them to the WebRTC Client | ||
for { | ||
|
||
n, _, err := listener.ReadFrom(inboundRTPPacket) | ||
|
||
once.Do(func() { fmt.Print("houston we have a packet") }) | ||
|
||
if err != nil { | ||
fmt.Printf("error during read: %s", err) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here too, although this one could be intentional
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah this one is intentional
No description provided.