Home
last modified time | relevance | path

Searched refs:lsfnew (Results 1 – 1 of 1) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dsipr.c153 static void lsf_decode_fp(float *lsfnew, float *lsf_history, in lsf_decode_fp() argument
162 lsfnew[i] = lsf_history[i] * 0.33 + lsf_tmp[i] + mean_lsf[i]; in lsf_decode_fp()
164 ff_sort_nearly_sorted_floats(lsfnew, LP_FILTER_ORDER - 1); in lsf_decode_fp()
168 ff_set_min_dist_lsf(lsfnew, LSFQ_DIFF_MIN, LP_FILTER_ORDER - 1); in lsf_decode_fp()
169 lsfnew[9] = FFMIN(lsfnew[LP_FILTER_ORDER - 1], 1.3 * M_PI); in lsf_decode_fp()
174 lsfnew[i] = cos(lsfnew[i]); in lsf_decode_fp()
175 lsfnew[LP_FILTER_ORDER - 1] *= 6.153848 / M_PI; in lsf_decode_fp()
216 static void sipr_decode_lp(float *lsfnew, const float *lsfold, float *Az, in sipr_decode_lp() argument
226 lsfint[j] = lsfold[j] * (1 - t) + t * lsfnew[j]; in sipr_decode_lp()