Fix earlier commit when GStreamer < v1.17

master
trilene 4 years ago
parent 67a6ab401b
commit 7d2844b2b0
  1. 2
      src/WebRTCSession.cpp

@ -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

Loading…
Cancel
Save