Index: webrtc/video/rtc_event_log2rtp_dump.cc |
diff --git a/webrtc/video/rtc_event_log2rtp_dump.cc b/webrtc/video/rtc_event_log2rtp_dump.cc |
index 4f1d93bbe46ce55997d42a2fdf7d8786a75c8a08..b6e04f32897e1805e48b6284aef96bb22dcc83ce 100644 |
--- a/webrtc/video/rtc_event_log2rtp_dump.cc |
+++ b/webrtc/video/rtc_event_log2rtp_dump.cc |
@@ -18,6 +18,7 @@ |
#include "webrtc/modules/rtp_rtcp/source/byte_io.h" |
#include "webrtc/test/rtp_file_writer.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 |
@@ -95,7 +96,7 @@ int main(int argc, char* argv[]) { |
<< "Flag verification has failed."; |
webrtc::rtclog::EventStream event_stream; |
- if (!webrtc::RtcEventLog::ParseRtcEventLog(input_file, &event_stream)) { |
+ if (!webrtc::RtcEventLogParser::ParseRtcEventLog(input_file, &event_stream)) { |
std::cerr << "Error while parsing input file: " << input_file << std::endl; |
return -1; |
} |