Protected streams report RTP messages directly to the FlexFec streams
In preparation of making RTP packet demuxing many-to-one (one SSRC goes to one sink, but one sink may have multiple SSRCs), we need to remove FlexFEC's dependence on being able to register itself with the demuxer. Instead, we register FlexFEC streams with the streams they protect; when those streams get packets, they'll forward them to their associated FlexFEC streams, too.
BUG=webrtc:7135
Review-Url: https://codereview.webrtc.org/2974453002
Cr-Commit-Position: refs/heads/master@{#19219}
diff --git a/webrtc/test/call_test.h b/webrtc/test/call_test.h
index 5c4fdce..11d0198 100644
--- a/webrtc/test/call_test.h
+++ b/webrtc/test/call_test.h
@@ -95,6 +95,10 @@
void CreateVideoStreams();
void CreateAudioStreams();
void CreateFlexfecStreams();
+
+ void AssociateFlexfecStreamsWithVideoStreams();
+ void DissociateFlexfecStreamsFromVideoStreams();
+
void Start();
void Stop();
void DestroyStreams();