@@ -156,7 +156,9 @@ MP_PROPERTY_GETSET(audiofilters_filter_filter_obj,
156
156
//| def low_pass_filter(
157
157
//| self, frequency: float, q_factor: float = 0.7071067811865475
158
158
//| ) -> synthio.Biquad:
159
- //| """Construct a low-pass filter with the given parameters and update the `filter` property.
159
+ //| """Construct a low-pass filter with the given parameters and update the `filter` property. **DEPRECATED**
160
+ //|
161
+ //| Instead, construct a `synthio.BlockBiquad` directly.
160
162
//|
161
163
//| ``frequency``, called f0 in the cookbook, is the corner frequency in Hz
162
164
//| of the filter.
@@ -197,7 +199,9 @@ MP_DEFINE_CONST_FUN_OBJ_KW(audiofilters_filter_lpf_obj, 1, audiofilters_filter_o
197
199
//| def high_pass_filter(
198
200
//| self, frequency: float, q_factor: float = 0.7071067811865475
199
201
//| ) -> synthio.Biquad:
200
- //| """Construct a high-pass filter with the given parameters and update the `filter` property.
202
+ //| """Construct a high-pass filter with the given parameters and update the `filter` property. **DEPRECATED**
203
+ //|
204
+ //| Instead, construct a `synthio.BlockBiquad` directly.
201
205
//|
202
206
//| ``frequency``, called f0 in the cookbook, is the corner frequency in Hz
203
207
//| of the filter.
@@ -227,7 +231,9 @@ MP_DEFINE_CONST_FUN_OBJ_KW(audiofilters_filter_hpf_obj, 1, audiofilters_filter_o
227
231
//| def band_pass_filter(
228
232
//| self, frequency: float, q_factor: float = 0.7071067811865475
229
233
//| ) -> synthio.Biquad:
230
- //| """Construct a band-pass filter with the given parameters and update the `filter` property.
234
+ //| """Construct a band-pass filter with the given parameters and update the `filter` property. **DEPRECATED**
235
+ //|
236
+ //| Instead, construct a `synthio.BlockBiquad` directly.
231
237
//|
232
238
//| ``frequency``, called f0 in the cookbook, is the center frequency in Hz
233
239
//| of the filter.
0 commit comments