#ifndef MODULES_REMOTE_BITRATE_ESTIMATOR_INCLUDE_BWE_DEFINES_H_
#define MODULES_REMOTE_BITRATE_ESTIMATOR_INCLUDE_BWE_DEFINES_H_
#include <stdint.h>
#include "absl/types/optional.h"
#include "api/transport/bandwidth_usage.h"
#include "api/units/data_rate.h"
#include "api/units/time_delta.h"
namespace webrtc {
inline constexpr DataRate kCongestionControllerMinBitrate = …;
inline constexpr TimeDelta kBitrateWindow = …;
extern const char kBweTypeHistogram[];
enum BweNames { … };
struct RateControlInput { … };
}
#endif