Kostya Vasilyev
Kostya Vasilyev
@durango thanks for the tip on AcquireConn... let's see what @jackc says about the issues with higher level APIs...
@jackc Thank you for pointing out that "plain" pgx is not intended to be used concurrently. My bad. With wg in the pool test fixed the test now runs without...
I ran a test publishing from a web browser, with the Pion example server in the debugger. Even after the web browser client has been connected and publishing for a...
Added some debug code to Pion and this is what I get when publishing from a web browser: ``` >>> Unmarshalled sender report with SSRC=1572234158, NTP=17000029716698290773 >>> Unmarshalled sender report...
As far as I can tell, Read side RTCP interceptors are [supposed to be called from here](https://github.com/pion/webrtc/blob/master/rtpsender.go#L414) - but that function is not called when I test with publishing from...
@JoeTurki thank you for the triage, but I don't think this is a "feature request", rather it looks like a bug :)
Hello, I tried the patch, hopefully I did it correctly ```go func whepHandler(w http.ResponseWriter, r *http.Request) { // Read the offer from HTTP Request offer, err := io.ReadAll(r.Body) if err...
Yes, the issue is that the code which processes sender reports (coming from the publisher) is supposed to "reach into" the outgoing stream and set the "last received NTP time"...
Regarding the discussion of whether sender / receiver reports should be supported by the whip / whep example. My vote (as a customer of sorts) is - yes they should...
Hey it worked! Thank you so much! I still think it should be either automatic or should be included in the sample's code, because proper receiver reports are kind of...