mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-13 05:40:42 +01:00
Use backticks not vertical bars to denote variables in comments for /modules/include
Bug: webrtc:12338 Change-Id: I66ef388e0582fc7b0250d8f2605288f0d652b66a Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/227095 Reviewed-by: Harald Alvestrand <hta@webrtc.org> Commit-Queue: Artem Titov <titovartem@webrtc.org> Cr-Commit-Position: refs/heads/master@{#34612}
This commit is contained in:
parent
880fa8169b
commit
8e70299dd9
3 changed files with 4 additions and 4 deletions
|
@ -35,7 +35,7 @@ class Module {
|
|||
virtual void Process() = 0;
|
||||
|
||||
// This method is called when the module is attached to a *running* process
|
||||
// thread or detached from one. In the case of detaching, |process_thread|
|
||||
// thread or detached from one. In the case of detaching, `process_thread`
|
||||
// will be nullptr.
|
||||
//
|
||||
// This method will be called in the following cases:
|
||||
|
|
|
@ -30,7 +30,7 @@ class CallStatsObserver {
|
|||
// Interface used by NackModule and JitterBuffer.
|
||||
class NackSender {
|
||||
public:
|
||||
// If |buffering_allowed|, other feedback messages (e.g. key frame requests)
|
||||
// If `buffering_allowed`, other feedback messages (e.g. key frame requests)
|
||||
// may be added to the same outgoing feedback message. In that case, it's up
|
||||
// to the user of the interface to ensure that when all buffer-able messages
|
||||
// have been added, the feedback message is triggered.
|
||||
|
|
|
@ -13,8 +13,8 @@
|
|||
|
||||
namespace webrtc {
|
||||
|
||||
// Types for the FEC packet masks. The type |kFecMaskRandom| is based on a
|
||||
// random loss model. The type |kFecMaskBursty| is based on a bursty/consecutive
|
||||
// Types for the FEC packet masks. The type `kFecMaskRandom` is based on a
|
||||
// random loss model. The type `kFecMaskBursty` is based on a bursty/consecutive
|
||||
// loss model. The packet masks are defined in
|
||||
// modules/rtp_rtcp/fec_private_tables_random(bursty).h
|
||||
enum FecMaskType {
|
||||
|
|
Loading…
Reference in a new issue