public FreqBandStereo(int num_bands)
 {
     L = new EasyList <float>(num_bands, 0f);
     R = new EasyList <float>(num_bands, 0f);
     L.Resize(num_bands);
     R.Resize(num_bands);
     numBands = num_bands;
 }
 // constructor - user defines a max size that the container is not
 // allowed to go above during runtime.
 public BinStereo(int max_size)
 {
     L    = new EasyList <float>(max_size, 0f);
     R    = new EasyList <float>(max_size, 0f);
     size = 0;
 }