minor comment fixes

This commit is contained in:
Josh Coalson 2001-05-31 05:56:41 +00:00
parent f60dd8e8ea
commit d16370d6b4

View File

@ -889,7 +889,7 @@ bool encoder_process_subframe_(FLAC__Encoder *encoder, unsigned min_partition_or
{
real fixed_residual_bits_per_sample[FLAC__MAX_FIXED_ORDER+1];
real lpc_residual_bits_per_sample;
real autoc[FLAC__MAX_LPC_ORDER+1];
real autoc[FLAC__MAX_LPC_ORDER+1]; /* WATCHOUT: the size is important even though encoder->max_lpc_order might be less; some asm routines need all the space */
real lp_coeff[FLAC__MAX_LPC_ORDER][FLAC__MAX_LPC_ORDER];
real lpc_error[FLAC__MAX_LPC_ORDER];
unsigned min_lpc_order, max_lpc_order, lpc_order;