| 24 | #include "openhd_bitrate.h" |
| 25 | |
| 26 | openhd::BitrateDebugger::BitrateDebugger(std::string tag, bool debug_pps) |
| 27 | : m_debug_pps(debug_pps) { |
| 28 | m_console = openhd::log::create_or_get(tag); |
| 29 | } |
| 30 | |
| 31 | void openhd::BitrateDebugger::on_packet(int64_t n_bytes) { |
| 32 | assert(n_bytes > 0); |
nothing calls this directly
no outgoing calls
no test coverage detected