Home | History | Annotate | Download | only in encoder

Lines Matching full:adjustment

30  *     adjustment = filtered_value - current_raw
39 * The adjustment vs. diff curve becomes flat very quick when diff increases.
44 * diff adjustment w/o motion correction adjustment w/ motion correction
70 * increasing the adjustment for each level. */
82 int adjustment = 0;
97 adjustment = adj_val[0];
99 adjustment = adj_val[1];
101 adjustment = adj_val[2];
105 if ((sig[c] + adjustment) > 255)
108 running_avg_y[c] = sig[c] + adjustment;
110 sum_diff += adjustment;
114 if ((sig[c] - adjustment) < 0)
117 running_avg_y[c] = sig[c] - adjustment;
119 sum_diff -= adjustment;