Request RTCP feedback explicitly.
Chrome sends us feedback anyway, but it cannot harm, can it?
This commit is contained in:
@@ -97,10 +97,17 @@ func addGroup(name string, desc *groupDescription) (*group, error) {
|
|||||||
if groups.groups == nil {
|
if groups.groups == nil {
|
||||||
groups.groups = make(map[string]*group)
|
groups.groups = make(map[string]*group)
|
||||||
m := webrtc.MediaEngine{}
|
m := webrtc.MediaEngine{}
|
||||||
m.RegisterCodec(webrtc.NewRTPVP8Codec(
|
m.RegisterCodec(webrtc.NewRTPVP8CodecExt(
|
||||||
webrtc.DefaultPayloadTypeVP8, 90000))
|
webrtc.DefaultPayloadTypeVP8, 90000,
|
||||||
|
[]webrtc.RTCPFeedback{
|
||||||
|
webrtc.RTCPFeedback{"goog-remb", ""},
|
||||||
|
webrtc.RTCPFeedback{"nack", "pli"},
|
||||||
|
},
|
||||||
|
"",
|
||||||
|
))
|
||||||
m.RegisterCodec(webrtc.NewRTPOpusCodec(
|
m.RegisterCodec(webrtc.NewRTPOpusCodec(
|
||||||
webrtc.DefaultPayloadTypeOpus, 48000))
|
webrtc.DefaultPayloadTypeOpus, 48000,
|
||||||
|
))
|
||||||
groups.api = webrtc.NewAPI(
|
groups.api = webrtc.NewAPI(
|
||||||
webrtc.WithMediaEngine(m),
|
webrtc.WithMediaEngine(m),
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user