Index: trunk/src/media/cast/rtcp/rtcp.cc |
=================================================================== |
--- trunk/src/media/cast/rtcp/rtcp.cc (revision 243647) |
+++ trunk/src/media/cast/rtcp/rtcp.cc (working copy) |
@@ -216,8 +216,7 @@ |
if (length < kMinLengthOfRtcp) return false; |
uint8 packet_type = packet[1]; |
- if (packet_type >= transport::kPacketTypeLow && |
- packet_type <= transport::kPacketTypeHigh) { |
+ if (packet_type >= kPacketTypeLow && packet_type <= kPacketTypeHigh) { |
return true; |
} |
return false; |