ac5f2e7203a9aa91682e097318ccf16d0db33abd

Except for a use of std::multimap (for which there currently is no drop-in replacement), use webrtc::flat_map and flat_set for increased performance. The number of ssrcs/mids/payload types/etc is likely to be small and is generally updated very rarely, but looked up a lot. RtpDemuxer::ResolveSink's use of std::map represents about 0.6% CPU in heavily loaded media servers. It does quite a few map lookups, and by taking advantage of the increased cache locality of the flat_map and flat_set containers, performance should be increased. A previous attempt to use std::unordered_map failed in change 216243, which was reverted. This is the second attempt. Bug: webrtc:12689 Change-Id: Ifdbec63b2fd8f2f52e45ebaf12834b11dd7a41c5 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/224662 Reviewed-by: Sebastian Jansson <srte@webrtc.org> Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Commit-Queue: Victor Boivie <boivie@webrtc.org> Cr-Commit-Position: refs/heads/master@{#34429}
…
…
WebRTC is a free, open software project that provides browsers and mobile applications with Real-Time Communications (RTC) capabilities via simple APIs. The WebRTC components have been optimized to best serve this purpose.
Our mission: To enable rich, high-quality RTC applications to be developed for the browser, mobile platforms, and IoT devices, and allow them all to communicate via a common set of protocols.
The WebRTC initiative is a project supported by Google, Mozilla and Opera, amongst others.
Development
See here for instructions on how to get started developing with the native code.
Authoritative list of directories that contain the native API header files.
More info
- Official web site: http://www.webrtc.org
- Master source code repo: https://webrtc.googlesource.com/src
- Samples and reference apps: https://github.com/webrtc
- Mailing list: http://groups.google.com/group/discuss-webrtc
- Continuous build: https://ci.chromium.org/p/webrtc/g/ci/console
- Coding style guide
- Code of conduct
- Reporting bugs
Description
Languages
C++
88.6%
C
3.3%
Java
3%
Objective-C++
1.9%
Python
1.9%
Other
1%