HydrogenAudio

Lossy Audio Compression => AAC => AAC - Tech => Topic started by: sospee on 2003-10-17 03:39:26

Title: Original WAV of AAC Test vectors needed
Post by: sospee on 2003-10-17 03:39:26
hi, there,
Starting debugging AAC decoder, currently using FAAC. Downloaded some test vectors from FhG ftp server, but failed to download al03-08_fs.wav. Is there any one have these files?

Why I need these files? When I decode al05_48.mp4 (using both foobar0.7.1 and my own compilation), the reconstructed WAV is only 32kHz signal. I guess the original WAV is just 32kHz sampled, if else, there must be sth wrong with AAC codec for it cannot fully represent the audio band (OGG does). If yes, the testing using 32kHz sampled signal for 48kHz codec is nonsense. //my opinion.

So, can any one help to find these WAV files? thanks!

sospee
Title: Original WAV of AAC Test vectors needed
Post by: sospee on 2003-10-20 04:28:35
How stupid I am!
Downloaded FAAC and briefly read the code. Found that:
static const int bwmax = 16000;//bandwidth max
static const double bwfac = 0.45;//bandwdth factor, bw=bwfac*bw
It seems that the encoder has already limited the output bandwidth.
With modifications to these "variables", output is what I want.