예제 #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();
 }
예제 #2
0
파일: DCT.cs 프로젝트: 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();
 }