| Index: webrtc/modules/audio_coding/neteq/tools/rtc_event_log_source.cc
|
| diff --git a/webrtc/modules/audio_coding/neteq/tools/rtc_event_log_source.cc b/webrtc/modules/audio_coding/neteq/tools/rtc_event_log_source.cc
|
| index c2bcccaaa3ffc0f044a545c37b6d2691503340fb..14e105123e5bb5aabab03a4734664d174679e1e9 100644
|
| --- a/webrtc/modules/audio_coding/neteq/tools/rtc_event_log_source.cc
|
| +++ b/webrtc/modules/audio_coding/neteq/tools/rtc_event_log_source.cc
|
| @@ -63,7 +63,7 @@ const rtclog::DebugEvent* GetAudioOutputEvent(const rtclog::Event& event) {
|
|
|
| RtcEventLogSource* RtcEventLogSource::Create(const std::string& file_name) {
|
| RtcEventLogSource* source = new RtcEventLogSource();
|
| - CHECK(source->OpenFile(file_name));
|
| + RTC_CHECK(source->OpenFile(file_name));
|
| return source;
|
| }
|
|
|
| @@ -71,7 +71,7 @@ RtcEventLogSource::~RtcEventLogSource() {}
|
|
|
| bool RtcEventLogSource::RegisterRtpHeaderExtension(RTPExtensionType type,
|
| uint8_t id) {
|
| - CHECK(parser_.get());
|
| + RTC_CHECK(parser_.get());
|
| return parser_->RegisterRtpHeaderExtension(type, id);
|
| }
|
|
|
|
|