Home
last modified time | relevance | path

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

/external/libxaac/decoder/drc_src/
Dimpd_drc_eq.c233 WORD32 eq_subband_gain_count = subband_filt->coeff_count; in impd_calc_subband_gains_td_cascade()
536 fir_filter->coeff_count = fir_filt_order + 1; in impd_convert_fir_filt_params()
590 WORD32 coeff_count; in impd_calc_eq_filt_elements() local
735 coeff_count = 1; in impd_calc_eq_filt_elements()
746 coeff_count += 2; in impd_calc_eq_filt_elements()
747 k = coeff_count - 1; in impd_calc_eq_filt_elements()
764 if (coeff_count > 1) { in impd_calc_eq_filt_elements()
766 eq_filt_element->pstr_pole_zero_filt.fir_filter.coeff_count = coeff_count; in impd_calc_eq_filt_elements()
769 eq_filt_element->pstr_pole_zero_filt.fir_filter.coeff_count = 0; in impd_calc_eq_filt_elements()
887 subband_filt->coeff_count = eq_subband_gain_count; in impd_calc_subband_eq()
[all …]
Dimpd_drc_eq.h59 WORD32 coeff_count; member
66 WORD32 coeff_count; member
/external/libvpx/libvpx/vp9/encoder/
Dvp9_encoder.c5003 const int coeff_count = block_size * block_size; local
5010 memset(zero_pred16, 0, sizeof(*zero_pred16) * coeff_count);
5013 memset(zero_pred8, 0, sizeof(*zero_pred8) * coeff_count);
5016 memset(zero_pred, 0, sizeof(*zero_pred) * coeff_count);
5047 for (idx = 1; idx < coeff_count; ++idx) coeff[idx] = abs(coeff[idx]);
5049 qsort(coeff, coeff_count - 1, sizeof(*coeff), qsort_comp);
5052 median_val = coeff[coeff_count / 2];
5055 for (idx = 1; idx < coeff_count; ++idx) {
5065 wiener_variance / coeff_count;
/external/OpenCL-CTS/test_conformance/math_brute_force/
Dreference_math.cpp5522 const size_t coeff_count = sizeof(coeffs[0]) / sizeof(coeffs[0][0]); in reference_acosl() local
5532 long double y = c[coeff_count - 1]; in reference_acosl()
5533 for (i = (int)coeff_count - 2; i >= 0; i--) y = c[i] + y * x2; in reference_acosl()