4 /**********************************************************/
5 /* inverse two dimensional DCT, Chen-Wang algorithm */
6 /* (cf. IEEE ASSP-32, pp. 803-816, Aug. 1984) */
7 /* 32-bit integer arithmetic (8 bit coefficients) */
8 /* 11 mults, 29 adds per DCT */
10 /**********************************************************/
11 /* coefficients extended to 12 bit for IEEE1180-1990 */
12 /* compliance sE, 2.1.94 */
13 /**********************************************************/
15 /* this code assumes >> to be a two's-complement arithmetic */
16 /* right shift: (-2)>>1 == -1 , (-3)>>1 == -2 */
18 #define W1 2841 /* 2048*sqrt(2)*cos(1*pi/16) */
19 #define W2 2676 /* 2048*sqrt(2)*cos(2*pi/16) */
20 #define W3 2408 /* 2048*sqrt(2)*cos(3*pi/16) */
21 #define W5 1609 /* 2048*sqrt(2)*cos(5*pi/16) */
22 #define W6 1108 /* 2048*sqrt(2)*cos(6*pi/16) */
23 #define W7 565 /* 2048*sqrt(2)*cos(7*pi/16) */
25 /* row (horizontal) IDCT
28 * dst[k] = sum c[l] * src[l] * cos( -- * ( k + - ) * l )
32 * c[1..7] = 128*sqrt(2)
35 int mpeg3video_idctrow(short *blk
)
37 int x0
, x1
, x2
, x3
, x4
, x5
, x6
, x7
, x8
;
40 if (!((x1
= blk
[4]<<11) | (x2
= blk
[6]) | (x3
= blk
[2]) |
41 (x4
= blk
[1]) | (x5
= blk
[7]) | (x6
= blk
[5]) | (x7
= blk
[3])))
43 blk
[0]=blk
[1]=blk
[2]=blk
[3]=blk
[4]=blk
[5]=blk
[6]=blk
[7]=blk
[0]<<3;
47 x0
= (blk
[0]<<11) + 128; /* for proper rounding in the fourth stage */
73 x2
= (181*(x4
+x5
)+128)>>8;
74 x4
= (181*(x4
-x5
)+128)>>8;
88 /* column (vertical) IDCT
91 * dst[8*k] = sum c[l] * src[8*l] * cos( -- * ( k + - ) * l )
94 * where: c[0] = 1/1024
95 * c[1..7] = (1/1024)*sqrt(2)
98 int mpeg3video_idctcol(short *blk
)
100 int x0
, x1
, x2
, x3
, x4
, x5
, x6
, x7
, x8
;
103 if (!((x1
= (blk
[8 * 4]<<8)) | (x2
= blk
[8 * 6]) | (x3
= blk
[8 * 2]) |
104 (x4
= blk
[8*1]) | (x5
= blk
[8 * 7]) | (x6
= blk
[8 * 5]) | (x7
= blk
[8 * 3]))){
105 blk
[8*0]=blk
[8*1]=blk
[8 * 2]=blk
[8 * 3]=blk
[8 * 4]=blk
[8 * 5]=blk
[8 * 6]=blk
[8 * 7]=
110 x0
= (blk
[8*0]<<8) + 8192;
114 x4
= (x8
+(W1
-W7
)*x4
)>>3;
115 x5
= (x8
-(W1
+W7
)*x5
)>>3;
117 x6
= (x8
-(W3
-W5
)*x6
)>>3;
118 x7
= (x8
-(W3
+W5
)*x7
)>>3;
124 x2
= (x1
-(W2
+W6
)*x2
)>>3;
125 x3
= (x1
+(W2
-W6
)*x3
)>>3;
136 x2
= (181 * (x4
+ x5
) + 128) >> 8;
137 x4
= (181 * (x4
- x5
) + 128) >> 8;
140 blk
[8 * 0] = (x7
+ x1
) >> 14;
141 blk
[8 * 1] = (x3
+ x2
) >> 14;
142 blk
[8 * 2] = (x0
+ x4
) >> 14;
143 blk
[8 * 3] = (x8
+ x6
) >> 14;
144 blk
[8 * 4] = (x8
- x6
) >> 14;
145 blk
[8 * 5] = (x0
- x4
) >> 14;
146 blk
[8 * 6] = (x3
- x2
) >> 14;
147 blk
[8 * 7] = (x7
- x1
) >> 14;
152 /* two dimensional inverse discrete cosine transform */
153 void mpeg3video_idct_conversion(short* block
)
156 for(i
= 0; i
< 8; i
++) mpeg3video_idctrow(block
+ 8 * i
);
157 for(i
= 0; i
< 8; i
++) mpeg3video_idctcol(block
+ i
);