vp9_firstpass: make vp9_init_subsampling private
Change-Id: I03b2ae99ec2e212c76bf815de7d5745b5c965d57
This commit is contained in:
Родитель
5e35c3c9a0
Коммит
c6eadc3309
|
@ -1237,7 +1237,7 @@ static void setup_rf_level_maxq(VP9_COMP *cpi) {
|
|||
}
|
||||
}
|
||||
|
||||
void vp9_init_subsampling(VP9_COMP *cpi) {
|
||||
static void init_subsampling(VP9_COMP *cpi) {
|
||||
const VP9_COMMON *const cm = &cpi->common;
|
||||
RATE_CONTROL *const rc = &cpi->rc;
|
||||
const int w = cm->width;
|
||||
|
@ -1332,7 +1332,7 @@ void vp9_init_second_pass(VP9_COMP *cpi) {
|
|||
twopass->last_kfgroup_zeromotion_pct = 100;
|
||||
|
||||
if (oxcf->resize_mode != RESIZE_NONE) {
|
||||
vp9_init_subsampling(cpi);
|
||||
init_subsampling(cpi);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -153,8 +153,6 @@ void vp9_twopass_postencode_update(struct VP9_COMP *cpi);
|
|||
// Post encode update of the rate control parameters for 2-pass
|
||||
void vp9_twopass_postencode_update(struct VP9_COMP *cpi);
|
||||
|
||||
void vp9_init_subsampling(struct VP9_COMP *cpi);
|
||||
|
||||
void calculate_coded_size(struct VP9_COMP *cpi,
|
||||
int *scaled_frame_width,
|
||||
int *scaled_frame_height);
|
||||
|
|
Загрузка…
Ссылка в новой задаче