public ALACSubframeInfo()
 {
     best = new ALACSubframe();
     lpc_ctx = new LpcContext[Alac.MAX_LPC_WINDOWS];
     for (int i = 0; i < Alac.MAX_LPC_WINDOWS; i++)
         lpc_ctx[i] = new LpcContext();
 }
 public FlacSubframeInfo()
 {
     best = new FlacSubframe();
     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. 3
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. 4
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();
     }
 }