/*!\brief Pop a stats from firstpass_info * *\ingrouprate_control *\param[out]firstpass_infostructoffirstpass_info. *\returnstatus
*/
aom_codec_err_t av1_firstpass_info_pop(FIRSTPASS_INFO *firstpass_info);
/*!\brief Move cur_index by 1 and pop a stats from firstpass_info * *\ingrouprate_control *\param[out]firstpass_infostructoffirstpass_info. *\returnstatus
*/
aom_codec_err_t av1_firstpass_info_move_cur_index_and_pop(
FIRSTPASS_INFO *firstpass_info);
/*!\brief Push a stats into firstpass_info * *Notethattheinputstatswillbecopiedintofirstpass_info. *\ingrouprate_control *\param[out]firstpass_infostructoffirstpass_info. *\param[in]input_statsinputstats *\returnstatus
*/
aom_codec_err_t av1_firstpass_info_push(FIRSTPASS_INFO *firstpass_info, const FIRSTPASS_STATS *input_stats);
/*!\brief Peek at a stats from firstpass_info * *Thetargetindexisasfollows. *(cur_index+offset_from_cur)%firstpass_info->stats_buf_size * *\ingrouprate_control *\param[in]firstpass_infostructoffirstpass_info. *\param[in]offset_from_curindexoffsetfromcur_index. *\returnpointertothestats.ThepointerwillbeNULLif *stats_index_offsetisinvalid.
*/ const FIRSTPASS_STATS *av1_firstpass_info_peek( const FIRSTPASS_INFO *firstpass_info, int offset_from_cur);
/*!\brief Count the future stats from the target in firstpass_info *Notethatthetargetstatswillbecountedaswell. *Thetargetindexisasfollows. *(cur_index+offset_from_cur)%firstpass_info->stats_buf_size * *\ingrouprate_control *\param[in]firstpass_infostructoffirstpass_info. *\param[in]offset_from_curtargetstats'sinffset *fromcur_index. *\returnNumberofstatsinthefutureafterthetargetstats *includingitself.
*/
int av1_firstpass_info_future_count(const FIRSTPASS_INFO *firstpass_info,
int offset_from_cur);
/*! *\briefDatarelatedtothecurrentGF/ARFgroupandthe *individualframeswithinthegroup
*/ typedefstruct GF_GROUP { /*!\cond */ // Frame update type, e.g. ARF/GF/LF/Overlay
FRAME_UPDATE_TYPE update_type[MAX_STATIC_GF_GROUP_LENGTH]; unsigned char arf_src_offset[MAX_STATIC_GF_GROUP_LENGTH]; // The number of frames displayed so far within the GOP at a given coding // frame. unsigned char cur_frame_idx[MAX_STATIC_GF_GROUP_LENGTH];
int layer_depth[MAX_STATIC_GF_GROUP_LENGTH];
int arf_boost[MAX_STATIC_GF_GROUP_LENGTH];
int max_layer_depth;
int max_layer_depth_allowed; // This is currently only populated for AOM_Q mode
int q_val[MAX_STATIC_GF_GROUP_LENGTH];
int rdmult_val[MAX_STATIC_GF_GROUP_LENGTH];
int bit_allocation[MAX_STATIC_GF_GROUP_LENGTH]; // The frame coding type - inter/intra frame
FRAME_TYPE frame_type[MAX_STATIC_GF_GROUP_LENGTH]; // The reference frame buffer control - update or reset
REFBUF_STATE refbuf_state[MAX_STATIC_GF_GROUP_LENGTH];
int arf_index; // the index in the gf group of ARF, if no arf, then -1
int size; // The total length of a GOP
// The offset into lookahead_ctx for choosing // source of frame parallel encodes.
int src_offset[MAX_STATIC_GF_GROUP_LENGTH]; // Stores the display order hint of each frame in the current GF_GROUP.
int display_idx[MAX_STATIC_GF_GROUP_LENGTH];
// The reference frame list maps the reference frame indexes to its // buffer index in the decoded buffer. A value of -1 means the // corresponding reference frame index doesn't point towards any // previously decoded frame.
int8_t ref_frame_list[MAX_STATIC_GF_GROUP_LENGTH][REF_FRAMES]; // Update frame index
int update_ref_idx[MAX_STATIC_GF_GROUP_LENGTH]; // The map_idx of primary reference
int primary_ref_idx[MAX_STATIC_GF_GROUP_LENGTH];
// Indicates the level of parallelism in frame parallel encodes. // 0 : frame is independently encoded (not part of parallel encodes). // 1 : frame is the first in encode order in a given parallel encode set. // 2 : frame occurs later in encode order in a given parallel encode set.
int frame_parallel_level[MAX_STATIC_GF_GROUP_LENGTH]; // Indicates whether a frame should act as non-reference frame. bool is_frame_non_ref[MAX_STATIC_GF_GROUP_LENGTH]; // Indicates whether a frame is dropped. bool is_frame_dropped[MAX_STATIC_GF_GROUP_LENGTH];
// Stores the display order hint of the frames not to be // refreshed by the current frame.
int skip_frame_refresh[MAX_STATIC_GF_GROUP_LENGTH][REF_FRAMES]; // Stores the display order hint of the frame to be excluded during reference // assignment.
int skip_frame_as_ref[MAX_STATIC_GF_GROUP_LENGTH]; // Indicates whether a switch frame is due. bool is_sframe_due; // Indicates whether the ref frame map is overridden by the external rate // control.
int use_ext_ref_frame_map[MAX_STATIC_GF_GROUP_LENGTH]; /*!\endcond */
} GF_GROUP; /*!\cond */
typedefstruct { // Track if the last frame in a GOP has higher quality.
int arf_gf_boost_lst;
} GF_STATE;
/*! *\briefTwopassstatusandcontroldata.
*/ typedefstruct { /*!\cond */ unsigned int section_intra_rating; // Circular queue of first pass stats stored for most recent frames. // cpi->output_pkt_list[i].data.twopass_stats.buf points to actual data stored // here.
FIRSTPASS_STATS *frame_stats_arr[MAX_LAP_BUFFERS + 1];
int frame_stats_next_idx; // Index to next unused element in frame_stats_arr.
STATS_BUFFER_CTX *stats_buf_ctx;
FIRSTPASS_INFO firstpass_info; // This is the first pass data structure // intended to replace stats_in
int first_pass_done;
int64_t bits_left; double modified_error_min; double modified_error_max; double modified_error_left;
// Projected total bits available for a key frame group of frames
int64_t kf_group_bits;
// Error score of frames still to be coded in kf group double kf_group_error_left;
// Over time correction for bits per macro block estimation double bpm_factor;
// Record of target and actual bits spent in current ARF group
int rolling_arf_group_target_bits;
int rolling_arf_group_actual_bits;
int sr_update_lag;
int kf_zeromotion_pct;
int last_kfgroup_zeromotion_pct;
int extend_minq;
int extend_maxq; /*!\endcond */
} TWO_PASS;
/*! *\briefFramelevelTwopassstatusandcontroldata.
*/ typedefstruct { /*!\cond */ const FIRSTPASS_STATS *stats_in; // Pointer to the stats of the current frame. const FIRSTPASS_STATS *this_frame; double mb_av_energy; // An indication of the content type of the current frame
FRAME_CONTENT_TYPE fr_content_type; double frame_avg_haar_energy; /*!\endcond */
} TWO_PASS_FRAME;
/*!\cond */
// This structure contains several key parameters to be accumulated for this // frame. typedefstruct { // Intra prediction error.
int64_t intra_error; // Average wavelet energy computed using Discrete Wavelet Transform (DWT).
int64_t frame_avg_wavelet_energy; // Best of intra pred error and inter pred error using last frame as ref.
int64_t coded_error; // Best of intra pred error and inter pred error using golden frame as ref.
int64_t sr_coded_error; // Best of coded error using long term reference.
int64_t lt_coded_error;
// Count of motion vector.
int mv_count; // Count of blocks that pick inter prediction (inter pred error is smaller // than intra pred error).
int inter_count; // Count of blocks that pick second ref (golden frame).
int second_ref_count; // Count of blocks where the inter and intra are very close and very low. double neutral_count; // Count of blocks where intra error is very small.
int intra_skip_count; // Start row.
int image_data_start_row; // Count of unique non-zero motion vectors.
int new_mv_count; // Sum of inward motion vectors.
int sum_in_vectors; // Sum of motion vector row.
int sum_mvr; // Sum of motion vector column.
int sum_mvc; // Sum of absolute value of motion vector row.
int sum_mvr_abs; // Sum of absolute value of motion vector column.
int sum_mvc_abs; // Sum of the square of motion vector row.
int64_t sum_mvrs; // Sum of the square of motion vector column.
int64_t sum_mvcs; // A factor calculated using intra pred error. double intra_factor; // A factor that measures brightness. double brightness_factor;
} FRAME_STATS;
// This structure contains first pass data. typedefstruct { // Buffer holding frame stats for all MACROBLOCKs. // mb_stats[i] stores the FRAME_STATS of the ith // MB in raster scan order.
FRAME_STATS *mb_stats; // Buffer to store the prediction error of the (0,0) motion // vector using the last source frame as the reference. // raw_motion_err_list[i] stores the raw_motion_err of // the ith MB in raster scan order.
int *raw_motion_err_list;
} FirstPassData;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.