mirror of
https://github.com/claunia/flac.git
synced 2025-12-16 18:54:26 +00:00
change default blocksize from 4608 to 4096 for LPC mode
This commit is contained in:
@@ -2965,7 +2965,7 @@ FLAC__bool seek_to_absolute_sample_(FLAC__StreamDecoder *decoder, FLAC__uint64 s
|
||||
approx_bytes_per_frame = min_blocksize * channels * bps/8 + 64;
|
||||
}
|
||||
else
|
||||
approx_bytes_per_frame = 4608 * channels * bps/8 + 64;
|
||||
approx_bytes_per_frame = 4096 * channels * bps/8 + 64;
|
||||
|
||||
/*
|
||||
* First, we set an upper and lower bound on where in the
|
||||
|
||||
Reference in New Issue
Block a user