1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#ifndef MS_RTC_BWE_TYPE_HPP #define MS_RTC_BWE_TYPE_HPP #include "common.hpp" namespace RTC { enum class BweType : uint8_t { TRANSPORT_CC = 1, REMB }; } // namespace RTC #endif