| /* |
| * Copyright (c) 2019, 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_ENCODER_GOP_STRUCTURE_H_ |
| #define AOM_AV1_ENCODER_GOP_STRUCTURE_H_ |
| |
| #include "av1/common/av1_common_int.h" |
| #include "av1/encoder/ratectrl.h" |
| |
| #ifdef __cplusplus |
| extern "C" { |
| #endif |
| /*!\cond */ |
| struct AV1_COMP; |
| struct EncodeFrameParams; |
| |
| #define MIN_ARF_GF_BOOST 240 |
| #define NORMAL_BOOST 100 |
| |
| /*!\endcond */ |
| |
| /*!\brief Set up the Group-Of-Pictures structure for this GF_GROUP. |
| * |
| *\ingroup rate_control |
| * |
| * This function defines the Group-Of-Pictures structure for this GF_GROUP. |
| * This involves deciding where to place the various FRAME_UPDATE_TYPEs in |
| * the group. It does this primarily by updateing entries in |
| * cpi->twopass.gf_group.update_type[]. |
| * |
| * \param[in] cpi Top - level encoder instance structure |
| * |
| * \return No return value but this function updates group data structures. |
| */ |
| void av1_gop_setup_structure(struct AV1_COMP *cpi); |
| |
| /*!\brief Distributes bits to frames in a group |
| * |
| *\ingroup rate_control |
| * |
| * This function decides on the allocation of bits between the different |
| * frames and types of frame in a GF/ARF group. |
| * |
| * \param[in] cpi Top - level encoder instance structure |
| * \param[in] rc Rate control data |
| * \param[in] gf_group GF/ARF group data structure |
| * \param[in] is_key_frame Indicates if the first frame in the group is |
| * also a key frame. |
| * \param[in] use_arf Are ARF frames enabled or is this a GF only |
| * uni-directional group. |
| * \param[in] gf_group_bits Bits available to be allocated. |
| * |
| * \return No return but updates the rate control and group data structures |
| * to reflect the allocation of bits. |
| */ |
| void av1_gop_bit_allocation(const AV1_COMP *cpi, RATE_CONTROL *const rc, |
| GF_GROUP *gf_group, int is_key_frame, int use_arf, |
| int64_t gf_group_bits); |
| |
| /*!\cond */ |
| int av1_calc_arf_boost(const TWO_PASS *twopass, |
| const PRIMARY_RATE_CONTROL *p_rc, const RATE_CONTROL *rc, |
| FRAME_INFO *frame_info, int offset, int f_frames, |
| int b_frames, int *num_fpstats_used, |
| int *num_fpstats_required, int project_gfu_boost); |
| /*!\endcond */ |
| |
| #ifdef __cplusplus |
| } // extern "C" |
| #endif |
| |
| #endif // AOM_AV1_ENCODER_GOP_STRUCTURE_H_ |