Change meaning of cpi->sf.first_step and rename.

Renamed cpi->sf.first_step to cpi->sf.reduce_first_step_size
and changed its meaning such that it is a delta applied to
reduce the default first step size (>> x) in the motion search
rather than an absolute value.

The default first step size is already changed according to the image
dimensions (smaller for smaller images). cpi->sf.reduce_first_step_size
now applies a further correction from the default.

Change-Id: Ia94e08bc24c67b604831f980909af7e982fcd16d
This commit is contained in:
Paul Wilkins
2013-06-24 15:19:16 +01:00
parent 2291563ba8
commit e606cac046
7 changed files with 23 additions and 23 deletions

View File

@@ -210,7 +210,7 @@ typedef struct {
int quarter_pixel_search;
int thresh_mult[MAX_MODES];
int max_step_search_steps;
int first_step;
int reduce_first_step_size;
int optimize_coefficients;
int search_best_filter;
int static_segmentation;