Searched defs:newvar (Results 1 - 1 of 1) sorted by relevance

/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dmotion_est.cpp170 double newvar[16]; local
232 InitHTFM(video, &htfm_stat, newvar, &collect);
524 UpdateHTFM(video, newvar, exp_lamda, &htfm_stat);
534 void InitHTFM(VideoEncData *video, HTFM_Stat *htfm_stat, double *newvar, Int *collect) argument
557 newvar[i] = 0.0;
619 void UpdateHTFM(VideoEncData *video, double *newvar, double *exp_lamda, HTFM_Stat *htfm_stat) argument
624 newvar[0] = (double)(htfm_stat->abs_dif_mad_avg) / (htfm_stat->countbreak * 16.);
626 if (newvar[0] < 0.001)
628 newvar[0] = 0.001; /* to prevent floating overflow */
630 exp_lamda[0] = 1 / (newvar[
[all...]

Completed in 31 milliseconds