Quote:
Also from the source code, the kernel device driver for the cs4231a is currently
set up for a choice of three sample rates:
Quote:

static struct { short samplerate; char setup; } samplerates[]={
{ 11025, 0x0d },
{ 22050, 0x0c },
{ 29400, 0x0a },
{ 0, 0 } };


The usual rate used for visuals is 29.4KHz, Stereo, 16-bits/channel.
Not quite CD-Audio, but sufficiently good for high-quality radio in an automobile.


Working backwards from those three existing values, one determines that
the maximum possible sample rate with the existing empeg clock sources
is 29.4KHz (clock source 1), or 14.7KHz (clock source 2).

So that's the best it can do -- good enough, I think.

Cheers