#include "av1/ratectrl_rtc.h"
#include <memory>
#include <new>
#include "aom/aomcx.h"
#include "aom/aom_encoder.h"
#include "aom_mem/aom_mem.h"
#include "aom_dsp/aom_dsp_common.h"
#include "av1/encoder/encoder.h"
#include "av1/encoder/encoder_utils.h"
#include "av1/encoder/pickcdef.h"
#include "av1/encoder/picklpf.h"
#include "av1/encoder/ratectrl.h"
#include "av1/encoder/rc_utils.h"
#include "av1/encoder/svc_layercontext.h"
namespace aom {
AV1RateControlRtcConfig::AV1RateControlRtcConfig() { … }
std::unique_ptr<AV1RateControlRTC> AV1RateControlRTC::Create(
const AV1RateControlRtcConfig &cfg) { … }
AV1RateControlRTC::~AV1RateControlRTC() { … }
bool AV1RateControlRTC::InitRateControl(const AV1RateControlRtcConfig &rc_cfg) { … }
bool AV1RateControlRTC::UpdateRateControl(
const AV1RateControlRtcConfig &rc_cfg) { … }
FrameDropDecision AV1RateControlRTC::ComputeQP(
const AV1FrameParamsRTC &frame_params) { … }
int AV1RateControlRTC::GetQP() const { … }
AV1LoopfilterLevel AV1RateControlRTC::GetLoopfilterLevel() const { … }
AV1CdefInfo AV1RateControlRTC::GetCdefInfo() const { … }
bool AV1RateControlRTC::GetSegmentationData(
AV1SegmentationData *segmentation_data) const { … }
void AV1RateControlRTC::PostEncodeUpdate(uint64_t encoded_frame_size) { … }
}