QUOTE (Mekatype @ Apr 2 2007, 03:01)

Dynamic: I did think about posting the samples in lossy format (Vorbis aoTuVb5 @ q6 to be exact), but since the files are so similar-sounding I figured it was best to keep it uncompressed. It was kinda silly to upload a WAV when it could have been easily compressed to FLAC. I'll post a new set of files soon. In the meantime though, what would you suggest me to do in order to eliminate the distortions and clipping?
rsdio: that's what I'm doing, both the SSRC line in the OP and SRCDrop do both things at once.
Given that that source audio isn't high quality, fairly-transparent lossy (even much less than -q6, though for Vorbis, -q6 guarantees lossless stereo coupling) would still give a very good idea of the sound of the effects you've applied, which is all that matters. The original audio, being mono, 8-bit and 11.025 Hz is already fairly low bitrate (88 kbps), though lossless compression may help.
Regarding disabling dither in SSRC, if you're converting to 24-bit, dither noise power will be incredibly tiny and will be additive in raw power (not decibels) with each processing step, and theoretically you should always dither at every stage of processing (preferably flat, unshaped dither (--dither 1 --pdf 1) until the final stage, where you might choose shaped dither if you're reducing bit-depth to 16-bit), because the very tiny amount of noise (especially tiny at 24-bit) is a worthwhile tradeoff against truncation distortion, which is often tonal, and thus more noticeable than white dither noise, when it occurs. (I differ from Naoki Shibata's words in ssrc.txt here, but agree with Bob Katz at digido.com)
The distortions present in the original 11.025 kHz WAV are already present, will have created new spurious frequencies and can't be removed. There's barely any consecutive-sample clipping in the original WAV, so I presume you're referring to clipping introduced by your processing.
If your sample-rate conversion (SRC) produces clipping, which it probably does given that you have full-scale audio, you could apply a scaling factor to reduce the loudness a little and avoid clipping (SSRC does this automatically if you use the --twopass option).
As you're then going to apply further processing, this may increase peak amplitudes further, so I'd suggest that you can forget the --twopass option and instead apply a fixed attenuation, for example halving the amplitude using --att 6 to apply 6 dB attenuation in SSRC, which you're likely to find sufficient to avoid clipping. If you want to volume-match, you can normalise afterwards to get as close as possible to the original volume without clipping.
If you wish to end up with 16-bit audio, you should do that conversion as the final stage (SSRC can do this)