| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| 11 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/rrtr.h" | 11 #include "webrtc/modules/rtp_rtcp/source/rtcp_packet/rrtr.h" |
| 12 | 12 |
| 13 #include "testing/gtest/include/gtest/gtest.h" | 13 #include "webrtc/test/gtest.h" |
| 14 | 14 |
| 15 using webrtc::rtcp::Rrtr; | 15 using webrtc::rtcp::Rrtr; |
| 16 | 16 |
| 17 namespace webrtc { | 17 namespace webrtc { |
| 18 namespace { | 18 namespace { |
| 19 | 19 |
| 20 const uint32_t kNtpSec = 0x12345678; | 20 const uint32_t kNtpSec = 0x12345678; |
| 21 const uint32_t kNtpFrac = 0x23456789; | 21 const uint32_t kNtpFrac = 0x23456789; |
| 22 const uint8_t kBlock[] = {0x04, 0x00, 0x00, 0x02, | 22 const uint8_t kBlock[] = {0x04, 0x00, 0x00, 0x02, |
| 23 0x12, 0x34, 0x56, 0x78, | 23 0x12, 0x34, 0x56, 0x78, |
| (...skipping 18 matching lines...) Expand all Loading... |
| 42 | 42 |
| 43 // Run checks on const object to ensure all accessors have const modifier. | 43 // Run checks on const object to ensure all accessors have const modifier. |
| 44 const Rrtr& parsed = read_rrtr; | 44 const Rrtr& parsed = read_rrtr; |
| 45 | 45 |
| 46 EXPECT_EQ(kNtpSec, parsed.ntp().seconds()); | 46 EXPECT_EQ(kNtpSec, parsed.ntp().seconds()); |
| 47 EXPECT_EQ(kNtpFrac, parsed.ntp().fractions()); | 47 EXPECT_EQ(kNtpFrac, parsed.ntp().fractions()); |
| 48 } | 48 } |
| 49 | 49 |
| 50 } // namespace | 50 } // namespace |
| 51 } // namespace webrtc | 51 } // namespace webrtc |
| OLD | NEW |