| Index: webrtc/modules/video_coding/main/source/receiver_unittest.cc
|
| diff --git a/webrtc/modules/video_coding/main/source/receiver_unittest.cc b/webrtc/modules/video_coding/main/source/receiver_unittest.cc
|
| index dc63e8100298f18a97cf89bcdb4f2079de252298..eb5e4718ce7395d618372b70c90305021a7b38cf 100644
|
| --- a/webrtc/modules/video_coding/main/source/receiver_unittest.cc
|
| +++ b/webrtc/modules/video_coding/main/source/receiver_unittest.cc
|
| @@ -348,7 +348,7 @@ class SimulatedClockWithFrames : public SimulatedClock {
|
| bool frame_injected = false;
|
| while (!timestamps_.empty() &&
|
| timestamps_.front().arrive_time <= end_time) {
|
| - DCHECK(timestamps_.front().arrive_time >= start_time);
|
| + RTC_DCHECK(timestamps_.front().arrive_time >= start_time);
|
|
|
| SimulatedClock::AdvanceTimeMicroseconds(timestamps_.front().arrive_time -
|
| TimeInMicroseconds());
|
| @@ -376,7 +376,7 @@ class SimulatedClockWithFrames : public SimulatedClock {
|
| size_t size) {
|
| int64_t previous_arrive_timestamp = 0;
|
| for (size_t i = 0; i < size; i++) {
|
| - CHECK(arrive_timestamps[i] >= previous_arrive_timestamp);
|
| + RTC_CHECK(arrive_timestamps[i] >= previous_arrive_timestamp);
|
| timestamps_.push(TimestampPair(arrive_timestamps[i] * 1000,
|
| render_timestamps[i] * 1000));
|
| previous_arrive_timestamp = arrive_timestamps[i];
|
|
|