'Flutter webrtc video calling issue:Not stopping "I/org.webrtc.Logging(32282): EglRenderer: Duration.." after hangup the call
Solution 1:[1]
I solved this issue. just these lines:
_localRenderer.dispose();
_remoteRenderer.dispose();
Solution 2:[2]
You must set the srcObject as null also like this code
localRenderer.srcObject = null;
await localRenderer.dispose();
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | |
Solution 2 | Rahman Rezaee |