From 4cde9ad7500418e624079366ca2257b421d4c5e5 Mon Sep 17 00:00:00 2001 From: Elad Alon Date: Mon, 4 Mar 2019 17:38:05 +0100 Subject: [PATCH] Fix some typos found in ivf_file_writer.cc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bug: None Change-Id: I4cc486ee93d8c3d6864c556507e31cebd82b21ed Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/125462 Reviewed-by: Erik Språng Commit-Queue: Elad Alon Cr-Commit-Position: refs/heads/master@{#26956} --- modules/video_coding/utility/ivf_file_writer.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/video_coding/utility/ivf_file_writer.cc b/modules/video_coding/utility/ivf_file_writer.cc index f1dc1d65e3..c66809b87c 100644 --- a/modules/video_coding/utility/ivf_file_writer.cc +++ b/modules/video_coding/utility/ivf_file_writer.cc @@ -144,7 +144,7 @@ bool IvfFileWriter::WriteFrame(const EncodedImage& encoded_image, (encoded_image._encodedHeight != height_ || encoded_image._encodedWidth != width_)) { RTC_LOG(LS_WARNING) - << "Incomig frame has diffferent resolution then previous: (" << width_ + << "Incoming frame has resolution different from previous: (" << width_ << "x" << height_ << ") -> (" << encoded_image._encodedWidth << "x" << encoded_image._encodedHeight << ")"; }