Esempio n. 1
0
 public ALACSubframeInfo()
 {
     best    = new ALACSubframe();
     sf      = new LpcSubframeInfo();
     lpc_ctx = new LpcContext[lpc.MAX_LPC_WINDOWS];
     for (int i = 0; i < lpc.MAX_LPC_WINDOWS; i++)
     {
         lpc_ctx[i] = new LpcContext();
     }
 }
Esempio n. 2
0
 public FlacSubframeInfo()
 {
     best       = new FlacSubframe();
     sf         = new LpcSubframeInfo();
     best_fixed = new ulong[5];
     lpc_ctx    = new LpcContext[lpc.MAX_LPC_WINDOWS];
     for (int i = 0; i < lpc.MAX_LPC_WINDOWS; i++)
     {
         lpc_ctx[i] = new LpcContext();
     }
 }