Fix earlier commit when GStreamer < v1.17

This commit is contained in:
trilene 2020-09-10 14:29:25 -04:00
parent 67a6ab401b
commit 7d2844b2b0
1 changed files with 2 additions and 0 deletions

View File

@ -233,6 +233,8 @@ addLocalICECandidate(GstElement *webrtc G_GNUC_UNUSED,
return;
}
localcandidates_.push_back({"audio", (uint16_t)mlineIndex, candidate});
// GStreamer v1.16: webrtcbin's notify::ice-gathering-state triggers
// GST_WEBRTC_ICE_GATHERING_STATE_COMPLETE too early. Fixed in v1.17.
// Use a 100ms timeout in the meantime