Use backticks not vertical bars to denote variables in comments for /api

Bug: webrtc:12338
Change-Id: Ib97b2c3d64dbd895f261ffa76a2e885bd934a87f
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/226940
Reviewed-by: Harald Alvestrand <hta@webrtc.org>
Commit-Queue: Artem Titov <titovartem@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#34554}
This commit is contained in:
Artem Titov
2021-07-25 21:50:14 +02:00
committed by WebRTC LUCI CQ
parent 7750d802a5
commit 0e61fdd27c
94 changed files with 455 additions and 455 deletions

View File

@ -49,7 +49,7 @@ class RTC_EXPORT I420Buffer : public I420BufferInterface {
const uint8_t* data_v,
int stride_v);
// Returns a rotated copy of |src|.
// Returns a rotated copy of `src`.
static rtc::scoped_refptr<I420Buffer> Rotate(const I420BufferInterface& src,
VideoRotation rotation);
// Deprecated.
@ -83,8 +83,8 @@ class RTC_EXPORT I420Buffer : public I420BufferInterface {
uint8_t* MutableDataU();
uint8_t* MutableDataV();
// Scale the cropped area of |src| to the size of |this| buffer, and
// write the result into |this|.
// Scale the cropped area of `src` to the size of `this` buffer, and
// write the result into `this`.
void CropAndScaleFrom(const I420BufferInterface& src,
int offset_x,
int offset_y,
@ -95,7 +95,7 @@ class RTC_EXPORT I420Buffer : public I420BufferInterface {
// aspect ratio without distorting the image.
void CropAndScaleFrom(const I420BufferInterface& src);
// Scale all of |src| to the size of |this| buffer, with no cropping.
// Scale all of `src` to the size of `this` buffer, with no cropping.
void ScaleFrom(const I420BufferInterface& src);
// Pastes whole picture to canvas at (offset_row, offset_col).