Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(464)

Unified Diff: webrtc/ortc/testrtpparameters.h

Issue 2981513002: Wire up RTP keep-alive in ortc api. (Closed)
Patch Set: deps, again Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/ortc/srtptransport_unittest.cc ('k') | webrtc/pc/rtptransport.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/ortc/testrtpparameters.h
diff --git a/webrtc/ortc/testrtpparameters.h b/webrtc/ortc/testrtpparameters.h
index 87108ca44fb272b8c44bbf0ea8e84943c77406aa..042dab2738830b58e73be725024bca4e2f352777 100644
--- a/webrtc/ortc/testrtpparameters.h
+++ b/webrtc/ortc/testrtpparameters.h
@@ -30,10 +30,10 @@ namespace webrtc {
// parameters is applied properly should construct the parameters in the test
// itself.
-inline RtcpParameters MakeRtcpMuxParameters() {
- RtcpParameters rtcp_parameters;
- rtcp_parameters.mux = true;
- return rtcp_parameters;
+inline RtpTransportParameters MakeRtcpMuxParameters() {
+ RtpTransportParameters parameters;
+ parameters.rtcp.mux = true;
+ return parameters;
}
RtpParameters MakeMinimalOpusParameters();
« no previous file with comments | « webrtc/ortc/srtptransport_unittest.cc ('k') | webrtc/pc/rtptransport.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698