![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /proc/self/root/usr/local/lib/node_modules/mediasoup/worker/include/RTC/ |
Upload File : |
#ifndef RTC_SEQ_MANAGER_HPP #define RTC_SEQ_MANAGER_HPP #include "common.hpp" #include <limits> // std::numeric_limits #include <set> namespace RTC { template<typename T> class SeqManager { public: static constexpr T MaxValue = std::numeric_limits<T>::max(); public: struct SeqLowerThan { bool operator()(const T lhs, const T rhs) const; }; struct SeqHigherThan { bool operator()(const T lhs, const T rhs) const; }; private: static const SeqLowerThan isSeqLowerThan; static const SeqHigherThan isSeqHigherThan; public: static bool IsSeqLowerThan(const T lhs, const T rhs); static bool IsSeqHigherThan(const T lhs, const T rhs); public: SeqManager() = default; public: void Sync(T input); void Drop(T input); void Offset(T offset); bool Input(const T input, T& output); T GetMaxInput() const; T GetMaxOutput() const; private: T base{ 0 }; T maxOutput{ 0 }; T maxInput{ 0 }; std::set<T, SeqLowerThan> dropped; }; } // namespace RTC #endif