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

Unified Diff: webrtc/video/replay.cc

Issue 2595533002: Add back video_replay. Disappeared in the gn conversion. (Closed)
Patch Set: . Created 4 years 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/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/video/replay.cc
diff --git a/webrtc/video/replay.cc b/webrtc/video/replay.cc
index 2a739175516e6e3bd25a95aa2bff930d67063891..aa844605ddf4e3d6a30a53466fac399615af29db 100644
--- a/webrtc/video/replay.cc
+++ b/webrtc/video/replay.cc
@@ -18,6 +18,7 @@
#include "webrtc/base/checks.h"
#include "webrtc/call/call.h"
#include "webrtc/common_video/libyuv/include/webrtc_libyuv.h"
+#include "webrtc/logging/rtc_event_log/rtc_event_log.h"
#include "webrtc/modules/rtp_rtcp/include/rtp_header_parser.h"
#include "webrtc/system_wrappers/include/clock.h"
#include "webrtc/system_wrappers/include/sleep.h"
@@ -211,7 +212,8 @@ void RtpReplay() {
FileRenderPassthrough file_passthrough(flags::OutBase(),
playback_video.get());
- std::unique_ptr<Call> call(Call::Create(Call::Config()));
+ webrtc::RtcEventLogNullImpl event_log;
+ std::unique_ptr<Call> call(Call::Create(Call::Config(&event_log)));
test::NullTransport transport;
VideoReceiveStream::Config receive_config(&transport);
« no previous file with comments | « webrtc/video/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698