1 /* 2 * Copyright (c) 2020 The WebM project authors. All Rights Reserved. 3 * 4 * Use of this source code is governed by a BSD-style license 5 * that can be found in the LICENSE file in the root of the source 6 * tree. An additional intellectual property rights grant can be found 7 * in the file PATENTS. All contributing project authors may 8 * be found in the AUTHORS file in the root of the source tree. 9 */ 10 11 #ifndef VPX_VP9_ENCODER_VP9_EXT_RATECTRL_H_ 12 #define VPX_VP9_ENCODER_VP9_EXT_RATECTRL_H_ 13 14 #include "vpx/vpx_ext_ratectrl.h" 15 #include "vpx/vpx_tpl.h" 16 #include "vp9/encoder/vp9_firstpass.h" 17 18 typedef struct EXT_RATECTRL { 19 int ready; 20 int ext_rdmult; 21 vpx_rc_model_t model; 22 vpx_rc_funcs_t funcs; 23 vpx_rc_config_t ratectrl_config; 24 vpx_rc_firstpass_stats_t rc_firstpass_stats; 25 } EXT_RATECTRL; 26 27 vpx_codec_err_t vp9_extrc_init(EXT_RATECTRL *ext_ratectrl); 28 29 vpx_codec_err_t vp9_extrc_create(vpx_rc_funcs_t funcs, 30 vpx_rc_config_t ratectrl_config, 31 EXT_RATECTRL *ext_ratectrl); 32 33 vpx_codec_err_t vp9_extrc_delete(EXT_RATECTRL *ext_ratectrl); 34 35 vpx_codec_err_t vp9_extrc_send_firstpass_stats( 36 EXT_RATECTRL *ext_ratectrl, const FIRST_PASS_INFO *first_pass_info); 37 38 vpx_codec_err_t vp9_extrc_send_tpl_stats(EXT_RATECTRL *ext_ratectrl, 39 const VpxTplGopStats *tpl_gop_stats); 40 41 vpx_codec_err_t vp9_extrc_get_encodeframe_decision( 42 EXT_RATECTRL *ext_ratectrl, int show_index, int coding_index, int gop_index, 43 FRAME_UPDATE_TYPE update_type, int gop_size, int use_alt_ref, 44 RefCntBuffer *ref_frame_bufs[MAX_INTER_REF_FRAMES], int ref_frame_flags, 45 vpx_rc_encodeframe_decision_t *encode_frame_decision); 46 47 vpx_codec_err_t vp9_extrc_update_encodeframe_result( 48 EXT_RATECTRL *ext_ratectrl, int64_t bit_count, 49 const YV12_BUFFER_CONFIG *source_frame, 50 const YV12_BUFFER_CONFIG *coded_frame, uint32_t bit_depth, 51 uint32_t input_bit_depth, const int actual_encoding_qindex); 52 53 vpx_codec_err_t vp9_extrc_get_gop_decision( 54 EXT_RATECTRL *ext_ratectrl, const vpx_rc_gop_info_t *const gop_info, 55 vpx_rc_gop_decision_t *gop_decision); 56 57 vpx_codec_err_t vp9_extrc_get_frame_rdmult( 58 EXT_RATECTRL *ext_ratectrl, int show_index, int coding_index, int gop_index, 59 FRAME_UPDATE_TYPE update_type, int gop_size, int use_alt_ref, 60 RefCntBuffer *ref_frame_bufs[MAX_INTER_REF_FRAMES], int ref_frame_flags, 61 int *rdmult); 62 63 #endif // VPX_VP9_ENCODER_VP9_EXT_RATECTRL_H_ 64