Hi,
I was reading though the Wiki about convolution in DSP, and have a few questions about the following:
Convolution filters are created at a specific sample rate, which means that they will only work correctly with that sample rate. However, MC offers two solutions to that issue:
1. MC will automatically resample the filters on the fly; this solves the problem for most use cases.
2. If you want more control over what happens with different sample rates and channel configurations, you can generate separate filters at each sample rate, and MC will automatically switch between them, but you must use the following naming format for your filters: Name2.0_441 or Name5.1_48, etc. The regular expression is: ^(.+)(\\d{1}.\\d{1})_(\\d{2,3}).cfg$, which outputs: Name Channels Sample rate.
Question about 1. Do we need to set this up for MC to do this automatically? Or does it happen by default?
Question about 2. I cannot quite understand the "regular expression" is there a place where I can find some examples? Do I need a config file for automatically switching to take place?