change default blocksize from 4608 to 4096 for LPC mode

This commit is contained in:
Josh Coalson
2007-02-06 05:02:46 +00:00
parent d83553dd2b
commit dc2b03b241
7 changed files with 29 additions and 29 deletions

View File

@@ -674,7 +674,7 @@ static FLAC__StreamEncoderInitStatus init_stream_internal_(
if(encoder->protected_->max_lpc_order == 0)
encoder->protected_->blocksize = 1152;
else
encoder->protected_->blocksize = 4608;
encoder->protected_->blocksize = 4096;
}
if(encoder->protected_->blocksize < FLAC__MIN_BLOCK_SIZE || encoder->protected_->blocksize > FLAC__MAX_BLOCK_SIZE)