HomeSort by relevance Sort by last modified time
    Searched refs:est_max_qcorrection_factor (Results 1 - 3 of 3) sorted by null

  /external/libvpx/vp8/encoder/
firstpass.c 871 //if ( cpi->est_max_qcorrection_factor > rolling_ratio )
873 //cpi->est_max_qcorrection_factor *= adjustment_rate;
874 cpi->est_max_qcorrection_factor -= 0.005;
875 //else if ( cpi->est_max_qcorrection_factor < rolling_ratio )
877 cpi->est_max_qcorrection_factor += 0.005;
879 //cpi->est_max_qcorrection_factor /= adjustment_rate;
881 cpi->est_max_qcorrection_factor = (cpi->est_max_qcorrection_factor < 0.1) ? 0.1 : (cpi->est_max_qcorrection_factor > 10.0) ? 10.0 : cpi->est_max_qcorrection_factor;
    [all...]
onyx_int.h 365 double est_max_qcorrection_factor; member in struct:__anon8495
onyx_if.c     [all...]

Completed in 214 milliseconds