|
22 | 22 | #include "roc_core/shared_ptr.h" |
23 | 23 | #include "roc_core/slab_pool.h" |
24 | 24 | #include "roc_core/time.h" |
| 25 | +#include "roc_dbgio/csv_dumper.h" |
25 | 26 | #include "roc_packet/ntp.h" |
26 | 27 | #include "roc_packet/units.h" |
27 | 28 | #include "roc_rtcp/cname.h" |
|
34 | 35 | #include "roc_rtcp/rtt_estimator.h" |
35 | 36 | #include "roc_rtcp/sdes.h" |
36 | 37 | #include "roc_status/status_code.h" |
37 | | -#include "roc_dbgio/csv_dumper.h" |
38 | 38 |
|
39 | 39 | namespace roc { |
40 | 40 | namespace rtcp { |
@@ -91,7 +91,10 @@ namespace rtcp { |
91 | 91 | class Reporter : public core::NonCopyable<> { |
92 | 92 | public: |
93 | 93 | //! Initialize. |
94 | | - Reporter(const Config &config, IParticipant &participant, core::IArena &arena, dbgio::CsvDumper *dumper); |
| 94 | + Reporter(const Config& config, |
| 95 | + IParticipant& participant, |
| 96 | + core::IArena& arena, |
| 97 | + dbgio::CsvDumper* dumper); |
95 | 98 | ~Reporter(); |
96 | 99 |
|
97 | 100 | //! Check if the object was successfully constructed. |
@@ -262,9 +265,12 @@ class Reporter : public core::NonCopyable<> { |
262 | 265 | struct Stream : core::RefCounted<Stream, core::PoolAllocation>, |
263 | 266 | core::HashmapNode<>, |
264 | 267 | core::ListNode<> { |
265 | | - Stream(core::IArena &arena, core::IPool &pool, packet::stream_source_t source_id, |
| 268 | + Stream(core::IArena& arena, |
| 269 | + core::IPool& pool, |
| 270 | + packet::stream_source_t source_id, |
266 | 271 | core::nanoseconds_t report_time, |
267 | | - const RttConfig &rtt_config, dbgio::CsvDumper *dumper) |
| 272 | + const RttConfig& rtt_config, |
| 273 | + dbgio::CsvDumper* dumper) |
268 | 274 | : core::RefCounted<Stream, core::PoolAllocation>(pool) |
269 | 275 | , source_id(source_id) |
270 | 276 | , has_remote_recv_report(false) |
|
0 commit comments