Is webRTC codes already in the chromium codes?

2019-07-07 02:29发布

问题:

I'm trying to study webRTC and want to learn about how it encodes and transport the media stream.

Are codes of this part of webRTC already included in the chromium source codes? http://code.google.com/p/chromium/wiki/LinuxBuildInstructions

Thanks~!

回答1:

yes and no.

  • The core of webrtc (including all the transport) is in the third party libwertc code, you can find information at webrtc.org.
  • The codec and other libraries are shared with Chrome, and libwebrtc import a copy of chromium when building from source. THe exact list of libs that are shared are in this file
  • The "capturer" is in the chrome code, more info there.


标签: webrtc