| 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 14e105123e5bb5aabab03a4734664d174679e1e9..d73daaa94615ed99a7dc3d4fe60db6abcf2ad9ed 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
|
| @@ -19,6 +19,7 @@
|
| #include "webrtc/modules/audio_coding/neteq/tools/packet.h"
|
| #include "webrtc/modules/rtp_rtcp/interface/rtp_header_parser.h"
|
| #include "webrtc/video/rtc_event_log.h"
|
| +#include "webrtc/video/rtc_event_log_parser.h"
|
|
|
| // Files generated at build-time by the protobuf compiler.
|
| #ifdef WEBRTC_ANDROID_PLATFORM_BUILD
|
| @@ -120,7 +121,7 @@ RtcEventLogSource::RtcEventLogSource()
|
|
|
| bool RtcEventLogSource::OpenFile(const std::string& file_name) {
|
| event_log_.reset(new rtclog::EventStream());
|
| - return RtcEventLog::ParseRtcEventLog(file_name, event_log_.get());
|
| + return RtcEventLogParser::ParseRtcEventLog(file_name, event_log_.get());
|
| }
|
|
|
| } // namespace test
|
|
|