Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(107)

Unified Diff: webrtc/video/rtc_event_log2rtp_dump.cc

Issue 1295753003: Convenience functions to convert RtcEvents to webrtc types. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebase and change CHECK to RTC_CHECK Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/video/rtc_event_log.cc ('k') | webrtc/video/rtc_event_log_parser.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
}
« no previous file with comments | « webrtc/video/rtc_event_log.cc ('k') | webrtc/video/rtc_event_log_parser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698