#ifndef MEDIA_CAST_SENDER_CONGESTION_CONTROL_H_
#define MEDIA_CAST_SENDER_CONGESTION_CONTROL_H_
#include <stddef.h>
#include <stdint.h>
#include <memory>
#include <vector>
#include "base/time/tick_clock.h"
#include "base/time/time.h"
#include "media/cast/common/frame_id.h"
namespace media {
namespace cast {
class CongestionControl { … };
CongestionControl* NewAdaptiveCongestionControl(const base::TickClock* clock,
int max_bitrate_configured,
int min_bitrate_configured,
double max_frame_rate);
CongestionControl* NewFixedCongestionControl(int bitrate);
}
}
#endif