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

Unified Diff: webrtc/modules/rtp_rtcp/test/BWEStandAlone/TestSenderReceiver.cc

Issue 1373903003: Unify newapi::RtcpMode and RTCPMethod. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: enum class Created 5 years, 3 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
Index: webrtc/modules/rtp_rtcp/test/BWEStandAlone/TestSenderReceiver.cc
diff --git a/webrtc/modules/rtp_rtcp/test/BWEStandAlone/TestSenderReceiver.cc b/webrtc/modules/rtp_rtcp/test/BWEStandAlone/TestSenderReceiver.cc
index e55d36346766a65d2ae86b6fdc4bf37bebdbc466..8f18da0e99f17608519dcd088c8b0146c6a871f8 100644
--- a/webrtc/modules/rtp_rtcp/test/BWEStandAlone/TestSenderReceiver.cc
+++ b/webrtc/modules/rtp_rtcp/test/BWEStandAlone/TestSenderReceiver.cc
@@ -127,7 +127,7 @@ int32_t TestSenderReceiver::InitReceiver (const uint16_t rtpPort,
exit(1);
}
- if (_rtp->SetRTCPStatus(kRtcpNonCompound) != 0)
+ if (_rtp->SetRTCPStatus(RtcpMode::REDUCED_SIZE) != 0)
{
throw "_rtp->SetRTCPStatus";
exit(1);
@@ -343,7 +343,7 @@ int32_t TestSenderReceiver::InitSender (const uint32_t startBitrateKbps,
exit(1);
}
- if (_rtp->SetRTCPStatus(kRtcpNonCompound) != 0)
+ if (_rtp->SetRTCPStatus(RtcpMode::REDUCED_SIZE) != 0)
{
throw "_rtp->SetRTCPStatus";
exit(1);

Powered by Google App Engine
This is Rietveld 408576698