Use RtcEventLog::EncodingType::NewFormat in VideoQualityTest.

Bug: webrtc:14801
Change-Id: I7219b4853ac699c9f077f107257a8b6448893441
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/289962
Commit-Queue: Philip Eliasson <philipel@webrtc.org>
Reviewed-by: Erik Språng <sprang@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#39097}
This commit is contained in:
philipel 2022-12-30 13:44:52 +01:00 committed by WebRTC LUCI CQ
parent 04e9318e5c
commit 3fab086614

View File

@ -1223,9 +1223,9 @@ void VideoQualityTest::RunWithAnalyzer(const Params& params) {
if (!params.logging.rtc_event_log_name.empty()) {
send_event_log_ = rtc_event_log_factory_.CreateRtcEventLog(
RtcEventLog::EncodingType::Legacy);
RtcEventLog::EncodingType::NewFormat);
recv_event_log_ = rtc_event_log_factory_.CreateRtcEventLog(
RtcEventLog::EncodingType::Legacy);
RtcEventLog::EncodingType::NewFormat);
std::unique_ptr<RtcEventLogOutputFile> send_output(
std::make_unique<RtcEventLogOutputFile>(
params.logging.rtc_event_log_name + "_send",
@ -1446,9 +1446,9 @@ void VideoQualityTest::RunWithRenderers(const Params& params) {
if (!params.logging.rtc_event_log_name.empty()) {
send_event_log_ = rtc_event_log_factory_.CreateRtcEventLog(
RtcEventLog::EncodingType::Legacy);
RtcEventLog::EncodingType::NewFormat);
recv_event_log_ = rtc_event_log_factory_.CreateRtcEventLog(
RtcEventLog::EncodingType::Legacy);
RtcEventLog::EncodingType::NewFormat);
std::unique_ptr<RtcEventLogOutputFile> send_output(
std::make_unique<RtcEventLogOutputFile>(
params.logging.rtc_event_log_name + "_send",