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

  /frameworks/av/media/libstagefright/codecs/aacdec/
get_tns.cpp 361 UInt max_order; local
382 max_order = 20;
386 max_order = 12;
397 max_order = 7;
475 if (tempInt > max_order)
477 pFilt->order = max_order;
  /external/flac/libFLAC/include/private/
lpc.h 85 * Computes LP coefficients for orders 1..max_order.
89 * IN autoc[0,max_order] autocorrelation values
90 * IN 0 < max_order <= FLAC__MAX_LPC_ORDER max LP order to compute
91 * OUT lp_coeff[0,max_order-1][0,max_order-1] LP coefficients for each order
93 * *** lp_coeff[0,max_order-1][max_order,FLAC__MAX_LPC_ORDER-1] are untouched
94 * OUT error[0,max_order-1] error for each order (more
99 * Example: if max_order is 9, the LP coefficients for order 9 will be
103 void FLAC__lpc_compute_lp_coefficients(const FLAC__real autoc[], unsigned *max_order, FLAC__real lp_coeff[][FLAC__MAX_LPC_ORDER], FLAC__double error[])
    [all...]
  /external/flac/libFLAC/
lpc.c 112 void FLAC__lpc_compute_lp_coefficients(const FLAC__real autoc[], unsigned *max_order, FLAC__real lp_coeff[][FLAC__MAX_LPC_ORDER], FLAC__double error[])
117 FLAC__ASSERT(0 != max_order);
118 FLAC__ASSERT(0 < *max_order);
119 FLAC__ASSERT(*max_order <= FLAC__MAX_LPC_ORDER);
124 for(i = 0; i < *max_order; i++) {
150 *max_order = i+1;
    [all...]

Completed in 60 milliseconds