QUOTE (Justin Ruggles @ Apr 22 2009, 20:27)

Are you trying to encode or decode? LPC coeffs are static within a block, but obviously change from frame-to-frame. The LPC filter order can be static or dynamic, which is determined from the AlsSpecificConfig. The block size is static and is encoded in the AlsSpecificConfig, but they can be broken down into sub-blocks and entropy coding blocks to increase compression efficiency if needed. If you have not done so, I suggest you read the ISO specification, not just the reference code.
Sorry for delay in reply..
i read about those functions in refrence code but didnt found the ISO specifications docs, searching...

for now i am encoding and that even in matlab. so i am not looking after the refrence code..
i have just simulated blocks as in block diagram..
I took the PCM samples and buffered in small frames ( random no.) and found the autocorrelation matrix and input those
in the Lavinson durbin filter..to get coefficients.. ( till here i reached).
Now i am planing to realise decoder with those coefficients and reverse the process..( right now for the single frame).
i will work on entropy coding after getting these.
Kindly guide me , if i am going in right way or not ..