| Index: webrtc/modules/include/module_common_types.h
|
| diff --git a/webrtc/modules/include/module_common_types.h b/webrtc/modules/include/module_common_types.h
|
| index c7854322fd7caca2ed640ca5b2e62dd49af4204a..1826610437bc89a063815eadf50dcca1c4cdf3f4 100644
|
| --- a/webrtc/modules/include/module_common_types.h
|
| +++ b/webrtc/modules/include/module_common_types.h
|
| @@ -529,6 +529,22 @@ class SequenceNumberUnwrapper {
|
| int64_t last_seq_;
|
| };
|
|
|
| +struct PacedPacketInfo {
|
| + PacedPacketInfo() {}
|
| + PacedPacketInfo(int probe_cluster_id,
|
| + int probe_cluster_min_probes,
|
| + int probe_cluster_min_bytes)
|
| + : probe_cluster_id(probe_cluster_id),
|
| + probe_cluster_min_probes(probe_cluster_min_probes),
|
| + probe_cluster_min_bytes(probe_cluster_min_bytes) {}
|
| +
|
| + static constexpr int kNotAProbe = -1;
|
| + int send_bitrate_bps = -1;
|
| + int probe_cluster_id = kNotAProbe;
|
| + int probe_cluster_min_probes = -1;
|
| + int probe_cluster_min_bytes = -1;
|
| +};
|
| +
|
| } // namespace webrtc
|
|
|
| #endif // WEBRTC_MODULES_INCLUDE_MODULE_COMMON_TYPES_H_
|
|
|