2010-05-18 17:58:33 +02:00
|
|
|
/*
|
2010-09-09 14:16:39 +02:00
|
|
|
* Copyright (c) 2010 The WebM project authors. All Rights Reserved.
|
2010-05-18 17:58:33 +02:00
|
|
|
*
|
2010-06-18 18:39:21 +02:00
|
|
|
* Use of this source code is governed by a BSD-style license
|
2010-06-04 22:19:40 +02:00
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
2010-06-18 18:39:21 +02:00
|
|
|
* in the file PATENTS. All contributing project authors may
|
2010-06-04 22:19:40 +02:00
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
2010-05-18 17:58:33 +02:00
|
|
|
*/
|
|
|
|
|
2012-12-19 00:31:19 +01:00
|
|
|
#ifndef VP9_ENCODER_VP9_FIRSTPASS_H_
|
2012-11-30 01:36:10 +01:00
|
|
|
#define VP9_ENCODER_VP9_FIRSTPASS_H_
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-01-18 21:16:11 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2014-02-06 03:28:28 +01:00
|
|
|
typedef struct {
|
|
|
|
double frame;
|
|
|
|
double intra_error;
|
|
|
|
double coded_error;
|
|
|
|
double sr_coded_error;
|
|
|
|
double ssim_weighted_pred_err;
|
|
|
|
double pcnt_inter;
|
|
|
|
double pcnt_motion;
|
|
|
|
double pcnt_second_ref;
|
|
|
|
double pcnt_neutral;
|
|
|
|
double MVr;
|
|
|
|
double mvr_abs;
|
|
|
|
double MVc;
|
|
|
|
double mvc_abs;
|
|
|
|
double MVrv;
|
|
|
|
double MVcv;
|
|
|
|
double mv_in_out_count;
|
|
|
|
double new_mv_count;
|
|
|
|
double duration;
|
|
|
|
double count;
|
2014-03-28 19:42:26 +01:00
|
|
|
int64_t spatial_layer_id;
|
2014-02-06 03:28:28 +01:00
|
|
|
} FIRSTPASS_STATS;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-02-06 03:28:28 +01:00
|
|
|
struct twopass_rc {
|
|
|
|
unsigned int section_intra_rating;
|
|
|
|
unsigned int next_iiratio;
|
|
|
|
unsigned int this_iiratio;
|
|
|
|
FIRSTPASS_STATS total_stats;
|
|
|
|
FIRSTPASS_STATS this_frame_stats;
|
2014-03-07 03:58:17 +01:00
|
|
|
const FIRSTPASS_STATS *stats_in;
|
|
|
|
const FIRSTPASS_STATS *stats_in_start;
|
|
|
|
const FIRSTPASS_STATS *stats_in_end;
|
2014-02-06 03:28:28 +01:00
|
|
|
FIRSTPASS_STATS total_left_stats;
|
|
|
|
int first_pass_done;
|
|
|
|
int64_t bits_left;
|
|
|
|
int64_t clip_bits_total;
|
|
|
|
double avg_iiratio;
|
|
|
|
double modified_error_min;
|
|
|
|
double modified_error_max;
|
|
|
|
double modified_error_total;
|
|
|
|
double modified_error_left;
|
|
|
|
double kf_intra_err_min;
|
|
|
|
double gf_intra_err_min;
|
|
|
|
int kf_bits;
|
|
|
|
// Remaining error from uncoded frames in a gf group. Two pass use only
|
|
|
|
int64_t gf_group_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
|
|
|
|
int64_t kf_group_error_left;
|
|
|
|
|
|
|
|
// Projected Bits available for a group of frames including 1 GF or ARF
|
|
|
|
int64_t gf_group_bits;
|
|
|
|
// Bits for the golden frame or ARF - 2 pass only
|
|
|
|
int gf_bits;
|
|
|
|
int alt_extra_bits;
|
|
|
|
|
|
|
|
int sr_update_lag;
|
|
|
|
|
|
|
|
int kf_zeromotion_pct;
|
|
|
|
int gf_zeromotion_pct;
|
2014-02-11 02:52:44 +01:00
|
|
|
|
|
|
|
int active_worst_quality;
|
2014-02-06 03:28:28 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct VP9_COMP;
|
|
|
|
|
|
|
|
void vp9_init_first_pass(struct VP9_COMP *cpi);
|
|
|
|
void vp9_rc_get_first_pass_params(struct VP9_COMP *cpi);
|
|
|
|
void vp9_first_pass(struct VP9_COMP *cpi);
|
|
|
|
void vp9_end_first_pass(struct VP9_COMP *cpi);
|
|
|
|
|
|
|
|
void vp9_init_second_pass(struct VP9_COMP *cpi);
|
|
|
|
void vp9_rc_get_second_pass_params(struct VP9_COMP *cpi);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-02-04 20:42:50 +01:00
|
|
|
// Post encode update of the rate control parameters for 2-pass
|
2014-04-02 02:31:59 +02:00
|
|
|
void vp9_twopass_postencode_update(struct VP9_COMP *cpi);
|
2014-01-18 21:16:11 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
} // extern "C"
|
|
|
|
#endif
|
|
|
|
|
2012-12-19 00:31:19 +01:00
|
|
|
#endif // VP9_ENCODER_VP9_FIRSTPASS_H_
|