Add thread/sequence checks to ModuleRtpRtcpImpl.

This ended up with needing to fork the current implementation
in order to not break downstream projects that were inheriting
from it. While those get updated, we'll move on with the forked
class.

Bug: webrtc:11581,b/8278269
Change-Id: I05b596cbda71aa5b72894c31a7119d17d4761883
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/175500
Reviewed-by: Per Kjellander <perkj@webrtc.org>
Reviewed-by: Erik Språng <sprang@webrtc.org>
Commit-Queue: Tommi <tommi@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#31334}
This commit is contained in:
Tommi
2020-05-20 09:32:51 +02:00
committed by Commit Bot
parent 704fb55255
commit 3a5742c880
12 changed files with 1851 additions and 32 deletions

View File

@ -53,8 +53,8 @@ class TransportFeedback;
class RtpRtcp : public Module, public RtcpFeedbackSenderInterface {
public:
struct Configuration {
Configuration();
Configuration(Configuration&& rhs);
Configuration() = default;
Configuration(Configuration&& rhs) = default;
// True for a audio version of the RTP/RTCP module object false will create
// a video version.