Use backticks not vertical bars to denote variables in comments for /modules/video_coding
Bug: webrtc:12338 Change-Id: Ia8a9adea291d594e4f59a6a1203a7bfb0758adac Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/227165 Commit-Queue: Artem Titov <titovartem@webrtc.org> Reviewed-by: Harald Alvestrand <hta@webrtc.org> Cr-Commit-Position: refs/heads/master@{#34684}
This commit is contained in:
committed by
WebRTC LUCI CQ
parent
7f854bce1f
commit
dcd7fc7ea8
@ -36,12 +36,12 @@ struct CodecSpecificInfoVP8 {
|
||||
int8_t keyIdx; // Negative value to skip keyIdx.
|
||||
|
||||
// Used to generate the list of dependency frames.
|
||||
// |referencedBuffers| and |updatedBuffers| contain buffer IDs.
|
||||
// `referencedBuffers` and `updatedBuffers` contain buffer IDs.
|
||||
// Note that the buffer IDs here have a one-to-one mapping with the actual
|
||||
// codec buffers, but the exact mapping (i.e. whether 0 refers to Last,
|
||||
// to Golden or to Arf) is not pre-determined.
|
||||
// More references may be specified than are strictly necessary, but not less.
|
||||
// TODO(bugs.webrtc.org/10242): Remove |useExplicitDependencies| once all
|
||||
// TODO(bugs.webrtc.org/10242): Remove `useExplicitDependencies` once all
|
||||
// encoder-wrappers are updated.
|
||||
bool useExplicitDependencies;
|
||||
static constexpr size_t kBuffersCount = 3;
|
||||
|
||||
@ -134,10 +134,10 @@ class VideoCodingModule : public Module {
|
||||
|
||||
// Sets the maximum number of sequence numbers that we are allowed to NACK
|
||||
// and the oldest sequence number that we will consider to NACK. If a
|
||||
// sequence number older than |max_packet_age_to_nack| is missing
|
||||
// sequence number older than `max_packet_age_to_nack` is missing
|
||||
// a key frame will be requested. A key frame will also be requested if the
|
||||
// time of incomplete or non-continuous frames in the jitter buffer is above
|
||||
// |max_incomplete_time_ms|.
|
||||
// `max_incomplete_time_ms`.
|
||||
virtual void SetNackSettings(size_t max_nack_list_size,
|
||||
int max_packet_age_to_nack,
|
||||
int max_incomplete_time_ms) = 0;
|
||||
|
||||
@ -32,8 +32,8 @@ namespace webrtc {
|
||||
|
||||
enum {
|
||||
// Timing frames settings. Timing frames are sent every
|
||||
// |kDefaultTimingFramesDelayMs|, or if the frame is at least
|
||||
// |kDefaultOutliserFrameSizePercent| in size of average frame.
|
||||
// `kDefaultTimingFramesDelayMs`, or if the frame is at least
|
||||
// `kDefaultOutliserFrameSizePercent` in size of average frame.
|
||||
kDefaultTimingFramesDelayMs = 200,
|
||||
kDefaultOutlierFrameSizePercent = 500,
|
||||
// Maximum number of frames for what we store encode start timing information.
|
||||
|
||||
Reference in New Issue
Block a user