blob: c53f4e11a2987c0fef053e5ef0387f4a97120575 [file] [log] [blame]
/*
* Copyright (c) 2022, Alliance for Open Media. All rights reserved
*
* This source code is subject to the terms of the BSD 2 Clause License and
* the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
* was not distributed with this source code in the LICENSE file, you can
* obtain it at www.aomedia.org/license/software. If the Alliance for Open
* Media Patent License 1.0 was not distributed with this source code in the
* PATENTS file, you can obtain it at www.aomedia.org/license/patent.
*/
#ifndef AOM_AV1_RATECTRL_QMODE_H_
#define AOM_AV1_RATECTRL_QMODE_H_
#include <deque>
#include <queue>
#include <vector>
#include "av1/encoder/firstpass.h"
#include "av1/ratectrl_qmode_interface.h"
#include "av1/reference_manager.h"
namespace aom {
constexpr int kLayerDepthOffset = 1;
constexpr int kMinIntervalToAddArf = 3;
constexpr int kMinArfInterval = (kMinIntervalToAddArf + 1) / 2;
struct TplFrameDepStats {
int unit_size; // equivalent to min_block_size
std::vector<std::vector<double>> unit_stats;
};
struct TplGopDepStats {
std::vector<TplFrameDepStats> frame_dep_stats_list;
};
GopFrame gop_frame_invalid();
GopFrame gop_frame_basic(int coding_idx, int order_idx, bool is_key_frame,
bool is_arf_frame, bool is_golden_frame,
bool is_show_frame, int depth);
GopStruct construct_gop(RefFrameManager *ref_frame_manager,
int show_frame_count, bool has_key_frame);
TplFrameDepStats create_tpl_frame_dep_stats_empty(int frame_height,
int frame_width,
int min_block_size);
TplFrameDepStats create_tpl_frame_dep_stats_wo_propagation(
const TplFrameStats &frame_stats);
double tpl_frame_stats_accumulate(const TplFrameStats &frame_stats);
double tpl_frame_dep_stats_accumulate(const TplFrameDepStats &frame_dep_stats);
void tpl_frame_dep_stats_propagate(const TplFrameStats &frame_stats,
const RefFrameTable &ref_frame_table,
TplGopDepStats *tpl_gop_dep_stats);
int get_block_overlap_area(int r0, int c0, int r1, int c1, int size);
TplGopDepStats compute_tpl_gop_dep_stats(
const TplGopStats &tpl_gop_stats,
const std::vector<RefFrameTable> &ref_frame_table_list);
class AV1RateControlQMode : public AV1RateControlQModeInterface {
public:
void SetRcParam(const RateControlParam &rc_param) override;
GopStructList DetermineGopInfo(const FirstpassInfo &firstpass_info) override;
GopEncodeInfo GetGopEncodeInfo(
const GopStruct &gop_struct, const TplGopStats &tpl_gop_stats,
const RefFrameTable &ref_frame_table_snapshot) override;
private:
RateControlParam rc_param_;
};
} // namespace aom
#endif // AOM_AV1_RATECTRL_QMODE_H_