1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-10 09:22:25 +03:00

wrong const

This commit is contained in:
Travis Ralston
2021-05-07 21:11:31 -06:00
parent 90798c2c8e
commit 389e0b8e8e

View File

@@ -29,7 +29,7 @@ export function arrayFastResample(input: number[], points: number): number[] {
// Heavily inspired by matrix-media-repo (used with permission)
// https://github.com/turt2live/matrix-media-repo/blob/abe72c87d2e29/util/util_audio/fastsample.go#L10
let samples: number[] = [];
const samples: number[] = [];
if (input.length > points) {
// Danger: this loop can cause out of memory conditions if the input is too small.
const everyNth = Math.round(input.length / points);
@@ -60,7 +60,7 @@ export function arrayFastResample(input: number[], points: number): number[] {
export function arraySmoothingResample(input: number[], points: number): number[] {
if (input.length === points) return input; // short-circuit a complicated call
const samples: number[] = [];
let samples: number[] = [];
if (input.length > points) {
// We're downsampling. To preserve the curve we'll actually reduce our sample
// selection and average some points between them.