libFLAC/metadata_object.c: Fix typo in number
As pointed out by Evan Ramos there was typo, `32786` instead of `32768`.
This commit is contained in:
parent
7b91f2383b
commit
582f111a83
@ -1123,7 +1123,7 @@ FLAC_API FLAC__bool FLAC__metadata_object_seektable_template_append_spaced_point
|
||||
/* Put a strict upper bound on the number of allowed seek points. */
|
||||
if (num > 32768) {
|
||||
/* Set the bound and recalculate samples accordingly. */
|
||||
num = 32786;
|
||||
num = 32768;
|
||||
samples = total_samples / num;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user