Gordon Coates wrote:Steve, are you working with a 192KHz file open?
Ah ha! That explains it
The "Size" of the filter is the "FFT window size". That is the number of samples that are used in each (overlapping) analysis window.
The larger the window is, the greater the accuracy of the filter at low frequencies.
The low frequency accuracy is limited by the FFT window size.
If a high sample rate is used, then the length of each window in seconds becomes much smaller (1024 samples at 44100 Hz sample rate is about 0.023 seconds, but at a sample rate of 192000 Hz it is only about 0.005 seconds.
Unfortunately you can't just keep increasing the window size, because some of the calculations become increasingly less accurate unless the calculations are performed in much higher precision. Currently I think Audacity uses 64 bit precision for these calculations, so the maximum window size could perhaps be increased to a bit more than the current "8191" maximum, but there is another down side, which is that as the window size increases, so the pulse response becomes worse, which can cause "ringing". For FFT filters there is a trade-off between sample rate, frequency precision, and time precision. If any two of these are increased, the third must be reduced. FFT is a remarkable piece of mathematics, but it has its limits.