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

Unified Diff: media/cast/rtcp/rtcp_sender.cc

Issue 25637003: Fix cq compilation error on win_x64 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/rtcp/rtcp_sender.cc
diff --git a/media/cast/rtcp/rtcp_sender.cc b/media/cast/rtcp/rtcp_sender.cc
index 2ce60f9ab330e34cf1bec4639f3d2a5488831c60..616ab163ed6fbd9a0c50e06f270ee8c3a513eca4 100644
--- a/media/cast/rtcp/rtcp_sender.cc
+++ b/media/cast/rtcp/rtcp_sender.cc
@@ -490,7 +490,7 @@ void RtcpSender::BuildCast(const RtcpCastMessage* cast,
int number_of_loss_fields = 0;
int max_number_of_loss_fields =
std::min<int>(kRtcpMaxCastLossFields,
- kIpPacketSize - static_cast<int>(packet->size()) / 4);
+ (kIpPacketSize - static_cast<int>(packet->size())) / 4);
std::map<uint8, std::set<uint16> >::const_iterator frame_it =
cast->missing_frames_and_packets_.begin();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698