QUOTE(Snake @ Jul 29 2005, 12:03 PM)
I was however more in general terms trying to undertand the limitations / possibilities of mp3 coding. Say I have a source (DVD-A) 24bit
As others have mentioned, mp3 can handle any "bit-ness" without resampling. Internally mp3 uses a different representation in which there is no analogue to bit depth of a pcm wav file.
QUOTE(Snake @ Jul 29 2005, 12:03 PM)
192kHz
Gee, it would be terrible if dogs were denied the full range of sound in the original recording.
QUOTE(Snake @ Jul 29 2005, 12:03 PM)
which I wanted to code into something like 1500 to 2000kbit using mp3 or similar
320 kbit is a hard ceiling. You can't go any higher.
QUOTE(Snake @ Jul 29 2005, 12:03 PM)
it would be pretty useless if the coding downsampled my source to 16bit 44kHz before compression.
Lame and most other codecs are optimized for 16/44.1, since that's the most common. It would actually be best for you to resample any music you want to encode to that format yourself. The resampling routines in most codecs are optimized for speed, not quality.
QUOTE(Snake @ Jul 29 2005, 12:03 PM)
This also brings the question of filtering that the coder applies, is this variable by source samplerate and choosen compression?
There are both constant and variable limits on frequency. When an mp3 is made, the encoder first selects a hard limit on frequency, determined mostly by the bitrate or quality mode selected at the start. But afterwards it will still drop some high frequency content below that limit if the psychoacoustic model says that it isn't important. The source sample rate is actually not much considered in this process, except when the source is even lower than what the encoder would otherwise use at that bitrate.