| Index: media/cast/rtcp/rtcp.cc
|
| diff --git a/media/cast/rtcp/rtcp.cc b/media/cast/rtcp/rtcp.cc
|
| index 922487591cfded5946ed669ed07f8005370d4965..090a8080ec088d0e9d67e7604afb5692c6626282 100644
|
| --- a/media/cast/rtcp/rtcp.cc
|
| +++ b/media/cast/rtcp/rtcp.cc
|
| @@ -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;
|
|
|