Home | History | Annotate | Download | only in libFLAC

Lines Matching full:indx

1336 	unsigned order, indx, best_index; /* 'index' the index into lpc_error; index==order-1 since lpc_error[0] is for order==1, lpc_error[1] is for order==2, etc */
1347 for(indx = 0, order = 1; indx < max_order; indx++, order++) {
1348 bits = FLAC__lpc_compute_expected_bits_per_residual_sample_with_error_scale(lpc_error[indx], error_scale) * (FLAC__double)(total_samples - order) + (FLAC__double)(order * overhead_bits_per_order);
1350 best_index = indx;
1355 return best_index+1; /* +1 since indx of lpc_error[] is order-1 */