()
| 51 | pub const DEFAULT_PARTITION_SIZE: usize = 1024; |
| 52 | |
| 53 | impl Default for ConvolutionNodeConfig { |
| 54 | fn default() -> Self { |
| 55 | Self { |
| 56 | channels: NonZeroChannelCount::STEREO, |
| 57 | max_impulse_length_seconds: 4.0, |
| 58 | partition_size: DEFAULT_PARTITION_SIZE, |
| 59 | } |
| 60 | } |
| 61 | } |
| 62 |
nothing calls this directly
no outgoing calls
no test coverage detected