Example #1
0
 internal DCT()
 {
     this.quantum             = new int[2][];
     this.divisors            = new double[2][];
     this.DivisorsLuminance   = new double[0x40];
     this.DivisorsChrominance = new double[0x40];
     this._temp  = new float[0x40];
     dynamicIDCT = dynamicIDCT ?? EmitIDCT();
 }
Example #2
0
File: DCT.cs Project: JuRogn/OA
 internal DCT()
 {
     this.quantum = new int[2][];
     this.divisors = new double[2][];
     this.DivisorsLuminance = new double[0x40];
     this.DivisorsChrominance = new double[0x40];
     this._temp = new float[0x40];
     dynamicIDCT = dynamicIDCT ?? EmitIDCT();
 }