shreya_pathak
Sep 24 2004, 08:40
Hi,
In Mpeg4 AAC decoder publicly available code from Nero i.e FAAC,
in file decoder.c
if (hDecoder->frame <= 1)
hInfo->samples = 0;
They are skipping the first frame.
I didn't get why they are skipping the first frame.
Regards
Shreya
sospee
Oct 12 2004, 19:41
Shreya,hi,
If you explore some details of Transform Audio Coding with overlap-add technique.
(use MDCT or other transforms i.e. DFT), it is neccessary to skip 1st audio frame (actually 1st half window). Because this "frame" doesn't do any lap with following
analysis windows.
--sospee