feat(tracker): buttons for loudness weighting and peak oversampling

Closes #186
This commit is contained in:
5684185+vsariola@users.noreply.github.com
2025-04-27 21:30:10 +03:00
parent 805b98524c
commit 5fd78d8362
7 changed files with 111 additions and 14 deletions

View File

@ -51,6 +51,11 @@ type (
Reset bool
Quit bool
Data any // TODO: consider using a sum type here, for a bit more type safety. See: https://www.jerf.org/iri/post/2917/
WeightingType WeightingType
HasWeightingType bool
Oversampling bool
HasOversampling bool
}
)