Skip to content

Commit 4d868cf

Browse files
authored
Merge branch 'main' into bufferingType
2 parents 790573e + 9f4a18f commit 4d868cf

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

CHANGELOG.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
### 3.0.0 (13 Feb 2025)
32
- `BufferStream` now supports 2 type of buffering:
43
- `BufferingType.preserved` (default): preserve the data already in the buffer while playing.

lib/src/filters/biquad_resonant_filter.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ enum BiquadResonantEnum {
2929

3030
final List<double> _mins = const [0, 0.0, 10, 0.1];
3131
final List<double> _maxs = const [1, 2.0, 16000, 20];
32-
final List<double> _defs = const [1, 0.0, 0.5, 0.1];
32+
final List<double> _defs = const [1, 0.0, 1000, 0.1];
3333

3434
double get min => _mins[index];
3535
double get max => _maxs[index];

0 commit comments

Comments
 (0)