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); |