Dithering will not occur (even if enabled at "High-quality conversion" in Quality Preferences) when pasting, even if the Default Sample Format in Quality Preferences is 16-bit or 24-bit.
Dithering will occur (unless disabled) when processing audio, unless Default Sample Format is 32-bit float. This is because Audacity has to return the audio to the track after processing it in 32-bit float. Processing means using an effect.
So to be sure there is no dithering in the project when dithering is enabled, you must use 32-bit float resolution, not the same resolution that the file happens to be.
Dithering is still preferred when exporting from a 32-bit float project to a lower resolution audio format.
http://wiki.audacityteam.org/wiki/Dither
PS You cannot actually import 24-bit files in 24-bit resolution - even if your quality preferences are 24-bit, the 24-bit file will import at 32-bit. That's what the code says:
Code: Select all
if (mFormat != floatSample &&
sf_subtype_more_than_16_bits(mInfo.format))
mFormat = floatSample;
but I'm not sure why that decision was made rather than "don't import at a lower resolution than the file has".
Gale