From 54ea85c2cd3a2cb1b8f440a71aa9676a9b88135c Mon Sep 17 00:00:00 2001 From: Philipp Hancke Date: Wed, 27 Jan 2021 18:10:18 +0100 Subject: [PATCH] video frame: fix grammar BUG=None Change-Id: I33b6358f495edd117fdaba0bf14ff7dc098a662f Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/204061 Reviewed-by: Artem Titov Reviewed-by: Harald Alvestrand Commit-Queue: Philipp Hancke Cr-Commit-Position: refs/heads/master@{#33190} --- api/video/video_frame.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/api/video/video_frame.h b/api/video/video_frame.h index e62aae8e5d..e073fd5e42 100644 --- a/api/video/video_frame.h +++ b/api/video/video_frame.h @@ -134,11 +134,11 @@ class RTC_EXPORT VideoFrame { // Get frame size in pixels. uint32_t size() const; - // Get frame ID. Returns 0 if ID is not set. Not guarantee to be transferred - // from the sender to the receiver, but preserved on single side. The id + // Get frame ID. Returns 0 if ID is not set. Not guaranteed to be transferred + // from the sender to the receiver, but preserved on the sender side. The id // should be propagated between all frame modifications during its lifetime // from capturing to sending as encoded image. It is intended to be unique - // over a time window of a few minutes for peer connection, to which + // over a time window of a few minutes for the peer connection to which the // corresponding video stream belongs to. uint16_t id() const { return id_; } void set_id(uint16_t id) { id_ = id; }