Line | Branch | Exec | Source |
---|---|---|---|
1 | /* | ||
2 | * This file is part of FFmpeg. | ||
3 | * | ||
4 | * FFmpeg is free software; you can redistribute it and/or | ||
5 | * modify it under the terms of the GNU Lesser General Public | ||
6 | * License as published by the Free Software Foundation; either | ||
7 | * version 2.1 of the License, or (at your option) any later version. | ||
8 | * | ||
9 | * FFmpeg is distributed in the hope that it will be useful, | ||
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
12 | * Lesser General Public License for more details. | ||
13 | * | ||
14 | * You should have received a copy of the GNU Lesser General Public | ||
15 | * License along with FFmpeg; if not, write to the Free Software | ||
16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||
17 | */ | ||
18 | |||
19 | #include "config.h" | ||
20 | #include "libavutil/attributes.h" | ||
21 | #include "libavutil/common.h" | ||
22 | #include "idctdsp.h" | ||
23 | #include "mathops.h" | ||
24 | #include "qpeldsp.h" | ||
25 | #include "wmv2dsp.h" | ||
26 | |||
27 | #define W0 2048 | ||
28 | #define W1 2841 /* 2048*sqrt (2)*cos (1*pi/16) */ | ||
29 | #define W2 2676 /* 2048*sqrt (2)*cos (2*pi/16) */ | ||
30 | #define W3 2408 /* 2048*sqrt (2)*cos (3*pi/16) */ | ||
31 | #define W4 2048 /* 2048*sqrt (2)*cos (4*pi/16) */ | ||
32 | #define W5 1609 /* 2048*sqrt (2)*cos (5*pi/16) */ | ||
33 | #define W6 1108 /* 2048*sqrt (2)*cos (6*pi/16) */ | ||
34 | #define W7 565 /* 2048*sqrt (2)*cos (7*pi/16) */ | ||
35 | |||
36 | 3017024 | static void wmv2_idct_row(short * b) | |
37 | { | ||
38 | int s1, s2; | ||
39 | int a0, a1, a2, a3, a4, a5, a6, a7; | ||
40 | |||
41 | /* step 1 */ | ||
42 | 3017024 | a1 = W1 * b[1] + W7 * b[7]; | |
43 | 3017024 | a7 = W7 * b[1] - W1 * b[7]; | |
44 | 3017024 | a5 = W5 * b[5] + W3 * b[3]; | |
45 | 3017024 | a3 = W3 * b[5] - W5 * b[3]; | |
46 | 3017024 | a2 = W2 * b[2] + W6 * b[6]; | |
47 | 3017024 | a6 = W6 * b[2] - W2 * b[6]; | |
48 | 3017024 | a0 = W0 * b[0] + W0 * b[4]; | |
49 | 3017024 | a4 = W0 * b[0] - W0 * b[4]; | |
50 | |||
51 | /* step 2 */ | ||
52 | 3017024 | s1 = (int)(181U * (a1 - a5 + a7 - a3) + 128) >> 8; // 1, 3, 5, 7 | |
53 | 3017024 | s2 = (int)(181U * (a1 - a5 - a7 + a3) + 128) >> 8; | |
54 | |||
55 | /* step 3 */ | ||
56 | 3017024 | b[0] = (a0 + a2 + a1 + a5 + (1 << 7)) >> 8; | |
57 | 3017024 | b[1] = (a4 + a6 + s1 + (1 << 7)) >> 8; | |
58 | 3017024 | b[2] = (a4 - a6 + s2 + (1 << 7)) >> 8; | |
59 | 3017024 | b[3] = (a0 - a2 + a7 + a3 + (1 << 7)) >> 8; | |
60 | 3017024 | b[4] = (a0 - a2 - a7 - a3 + (1 << 7)) >> 8; | |
61 | 3017024 | b[5] = (a4 - a6 - s2 + (1 << 7)) >> 8; | |
62 | 3017024 | b[6] = (a4 + a6 - s1 + (1 << 7)) >> 8; | |
63 | 3017024 | b[7] = (a0 + a2 - a1 - a5 + (1 << 7)) >> 8; | |
64 | 3017024 | } | |
65 | |||
66 | 3017024 | static void wmv2_idct_col(short * b) | |
67 | { | ||
68 | int s1, s2; | ||
69 | int a0, a1, a2, a3, a4, a5, a6, a7; | ||
70 | |||
71 | /* step 1, with extended precision */ | ||
72 | 3017024 | a1 = (W1 * b[8 * 1] + W7 * b[8 * 7] + 4) >> 3; | |
73 | 3017024 | a7 = (W7 * b[8 * 1] - W1 * b[8 * 7] + 4) >> 3; | |
74 | 3017024 | a5 = (W5 * b[8 * 5] + W3 * b[8 * 3] + 4) >> 3; | |
75 | 3017024 | a3 = (W3 * b[8 * 5] - W5 * b[8 * 3] + 4) >> 3; | |
76 | 3017024 | a2 = (W2 * b[8 * 2] + W6 * b[8 * 6] + 4) >> 3; | |
77 | 3017024 | a6 = (W6 * b[8 * 2] - W2 * b[8 * 6] + 4) >> 3; | |
78 | 3017024 | a0 = (W0 * b[8 * 0] + W0 * b[8 * 4] ) >> 3; | |
79 | 3017024 | a4 = (W0 * b[8 * 0] - W0 * b[8 * 4] ) >> 3; | |
80 | |||
81 | /* step 2 */ | ||
82 | 3017024 | s1 = (int)(181U * (a1 - a5 + a7 - a3) + 128) >> 8; | |
83 | 3017024 | s2 = (int)(181U * (a1 - a5 - a7 + a3) + 128) >> 8; | |
84 | |||
85 | /* step 3 */ | ||
86 | 3017024 | b[8 * 0] = (a0 + a2 + a1 + a5 + (1 << 13)) >> 14; | |
87 | 3017024 | b[8 * 1] = (a4 + a6 + s1 + (1 << 13)) >> 14; | |
88 | 3017024 | b[8 * 2] = (a4 - a6 + s2 + (1 << 13)) >> 14; | |
89 | 3017024 | b[8 * 3] = (a0 - a2 + a7 + a3 + (1 << 13)) >> 14; | |
90 | |||
91 | 3017024 | b[8 * 4] = (a0 - a2 - a7 - a3 + (1 << 13)) >> 14; | |
92 | 3017024 | b[8 * 5] = (a4 - a6 - s2 + (1 << 13)) >> 14; | |
93 | 3017024 | b[8 * 6] = (a4 + a6 - s1 + (1 << 13)) >> 14; | |
94 | 3017024 | b[8 * 7] = (a0 + a2 - a1 - a5 + (1 << 13)) >> 14; | |
95 | 3017024 | } | |
96 | |||
97 | 262288 | static void wmv2_idct_add_c(uint8_t *dest, ptrdiff_t line_size, int16_t *block) | |
98 | { | ||
99 | int i; | ||
100 | |||
101 |
2/2✓ Branch 0 taken 2098304 times.
✓ Branch 1 taken 262288 times.
|
2360592 | for (i = 0; i < 64; i += 8) |
102 | 2098304 | wmv2_idct_row(block + i); | |
103 |
2/2✓ Branch 0 taken 2098304 times.
✓ Branch 1 taken 262288 times.
|
2360592 | for (i = 0; i < 8; i++) |
104 | 2098304 | wmv2_idct_col(block + i); | |
105 | |||
106 |
2/2✓ Branch 0 taken 2098304 times.
✓ Branch 1 taken 262288 times.
|
2360592 | for (i = 0; i < 8; i++) { |
107 | 2098304 | dest[0] = av_clip_uint8(dest[0] + block[0]); | |
108 | 2098304 | dest[1] = av_clip_uint8(dest[1] + block[1]); | |
109 | 2098304 | dest[2] = av_clip_uint8(dest[2] + block[2]); | |
110 | 2098304 | dest[3] = av_clip_uint8(dest[3] + block[3]); | |
111 | 2098304 | dest[4] = av_clip_uint8(dest[4] + block[4]); | |
112 | 2098304 | dest[5] = av_clip_uint8(dest[5] + block[5]); | |
113 | 2098304 | dest[6] = av_clip_uint8(dest[6] + block[6]); | |
114 | 2098304 | dest[7] = av_clip_uint8(dest[7] + block[7]); | |
115 | 2098304 | dest += line_size; | |
116 | 2098304 | block += 8; | |
117 | } | ||
118 | 262288 | } | |
119 | |||
120 | 114840 | static void wmv2_idct_put_c(uint8_t *dest, ptrdiff_t line_size, int16_t *block) | |
121 | { | ||
122 | int i; | ||
123 | |||
124 |
2/2✓ Branch 0 taken 918720 times.
✓ Branch 1 taken 114840 times.
|
1033560 | for (i = 0; i < 64; i += 8) |
125 | 918720 | wmv2_idct_row(block + i); | |
126 |
2/2✓ Branch 0 taken 918720 times.
✓ Branch 1 taken 114840 times.
|
1033560 | for (i = 0; i < 8; i++) |
127 | 918720 | wmv2_idct_col(block + i); | |
128 | |||
129 |
2/2✓ Branch 0 taken 918720 times.
✓ Branch 1 taken 114840 times.
|
1033560 | for (i = 0; i < 8; i++) { |
130 | 918720 | dest[0] = av_clip_uint8(block[0]); | |
131 | 918720 | dest[1] = av_clip_uint8(block[1]); | |
132 | 918720 | dest[2] = av_clip_uint8(block[2]); | |
133 | 918720 | dest[3] = av_clip_uint8(block[3]); | |
134 | 918720 | dest[4] = av_clip_uint8(block[4]); | |
135 | 918720 | dest[5] = av_clip_uint8(block[5]); | |
136 | 918720 | dest[6] = av_clip_uint8(block[6]); | |
137 | 918720 | dest[7] = av_clip_uint8(block[7]); | |
138 | 918720 | dest += line_size; | |
139 | 918720 | block += 8; | |
140 | } | ||
141 | 114840 | } | |
142 | |||
143 | 71392 | static void wmv2_mspel8_h_lowpass(uint8_t *dst, const uint8_t *src, | |
144 | int dstStride, int srcStride, int h) | ||
145 | { | ||
146 | 71392 | const uint8_t *cm = ff_crop_tab + MAX_NEG_CROP; | |
147 | int i; | ||
148 | |||
149 |
2/2✓ Branch 0 taken 660824 times.
✓ Branch 1 taken 71392 times.
|
732216 | for (i = 0; i < h; i++) { |
150 | 660824 | dst[0] = cm[(9 * (src[0] + src[1]) - (src[-1] + src[2]) + 8) >> 4]; | |
151 | 660824 | dst[1] = cm[(9 * (src[1] + src[2]) - (src[0] + src[3]) + 8) >> 4]; | |
152 | 660824 | dst[2] = cm[(9 * (src[2] + src[3]) - (src[1] + src[4]) + 8) >> 4]; | |
153 | 660824 | dst[3] = cm[(9 * (src[3] + src[4]) - (src[2] + src[5]) + 8) >> 4]; | |
154 | 660824 | dst[4] = cm[(9 * (src[4] + src[5]) - (src[3] + src[6]) + 8) >> 4]; | |
155 | 660824 | dst[5] = cm[(9 * (src[5] + src[6]) - (src[4] + src[7]) + 8) >> 4]; | |
156 | 660824 | dst[6] = cm[(9 * (src[6] + src[7]) - (src[5] + src[8]) + 8) >> 4]; | |
157 | 660824 | dst[7] = cm[(9 * (src[7] + src[8]) - (src[6] + src[9]) + 8) >> 4]; | |
158 | 660824 | dst += dstStride; | |
159 | 660824 | src += srcStride; | |
160 | } | ||
161 | 71392 | } | |
162 | |||
163 | 55828 | static void wmv2_mspel8_v_lowpass(uint8_t *dst, const uint8_t *src, | |
164 | int dstStride, int srcStride, int w) | ||
165 | { | ||
166 | 55828 | const uint8_t *cm = ff_crop_tab + MAX_NEG_CROP; | |
167 | int i; | ||
168 | |||
169 |
2/2✓ Branch 0 taken 446624 times.
✓ Branch 1 taken 55828 times.
|
502452 | for (i = 0; i < w; i++) { |
170 | 446624 | const int src_1 = src[-srcStride]; | |
171 | 446624 | const int src0 = src[0]; | |
172 | 446624 | const int src1 = src[srcStride]; | |
173 | 446624 | const int src2 = src[2 * srcStride]; | |
174 | 446624 | const int src3 = src[3 * srcStride]; | |
175 | 446624 | const int src4 = src[4 * srcStride]; | |
176 | 446624 | const int src5 = src[5 * srcStride]; | |
177 | 446624 | const int src6 = src[6 * srcStride]; | |
178 | 446624 | const int src7 = src[7 * srcStride]; | |
179 | 446624 | const int src8 = src[8 * srcStride]; | |
180 | 446624 | const int src9 = src[9 * srcStride]; | |
181 | 446624 | dst[0 * dstStride] = cm[(9 * (src0 + src1) - (src_1 + src2) + 8) >> 4]; | |
182 | 446624 | dst[1 * dstStride] = cm[(9 * (src1 + src2) - (src0 + src3) + 8) >> 4]; | |
183 | 446624 | dst[2 * dstStride] = cm[(9 * (src2 + src3) - (src1 + src4) + 8) >> 4]; | |
184 | 446624 | dst[3 * dstStride] = cm[(9 * (src3 + src4) - (src2 + src5) + 8) >> 4]; | |
185 | 446624 | dst[4 * dstStride] = cm[(9 * (src4 + src5) - (src3 + src6) + 8) >> 4]; | |
186 | 446624 | dst[5 * dstStride] = cm[(9 * (src5 + src6) - (src4 + src7) + 8) >> 4]; | |
187 | 446624 | dst[6 * dstStride] = cm[(9 * (src6 + src7) - (src5 + src8) + 8) >> 4]; | |
188 | 446624 | dst[7 * dstStride] = cm[(9 * (src7 + src8) - (src6 + src9) + 8) >> 4]; | |
189 | 446624 | src++; | |
190 | 446624 | dst++; | |
191 | } | ||
192 | 55828 | } | |
193 | |||
194 | ✗ | static void put_mspel8_mc10_c(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) | |
195 | { | ||
196 | uint8_t half[64]; | ||
197 | |||
198 | ✗ | wmv2_mspel8_h_lowpass(half, src, 8, stride, 8); | |
199 | ✗ | ff_put_pixels8_l2_8(dst, src, half, stride, stride, 8, 8); | |
200 | ✗ | } | |
201 | |||
202 | 27436 | static void put_mspel8_mc20_c(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) | |
203 | { | ||
204 | 27436 | wmv2_mspel8_h_lowpass(dst, src, stride, stride, 8); | |
205 | 27436 | } | |
206 | |||
207 | 14060 | static void put_mspel8_mc30_c(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) | |
208 | { | ||
209 | uint8_t half[64]; | ||
210 | |||
211 | 14060 | wmv2_mspel8_h_lowpass(half, src, 8, stride, 8); | |
212 | 14060 | ff_put_pixels8_l2_8(dst, src + 1, half, stride, stride, 8, 8); | |
213 | 14060 | } | |
214 | |||
215 | 6720 | static void put_mspel8_mc02_c(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) | |
216 | { | ||
217 | 6720 | wmv2_mspel8_v_lowpass(dst, src, stride, stride, 8); | |
218 | 6720 | } | |
219 | |||
220 | 9800 | static void put_mspel8_mc12_c(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) | |
221 | { | ||
222 | uint8_t halfH[88]; | ||
223 | uint8_t halfV[64]; | ||
224 | uint8_t halfHV[64]; | ||
225 | |||
226 | 9800 | wmv2_mspel8_h_lowpass(halfH, src - stride, 8, stride, 11); | |
227 | 9800 | wmv2_mspel8_v_lowpass(halfV, src, 8, stride, 8); | |
228 | 9800 | wmv2_mspel8_v_lowpass(halfHV, halfH + 8, 8, 8, 8); | |
229 | 9800 | ff_put_pixels8_l2_8(dst, halfV, halfHV, stride, 8, 8, 8); | |
230 | 9800 | } | |
231 | |||
232 | 9412 | static void put_mspel8_mc32_c(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) | |
233 | { | ||
234 | uint8_t halfH[88]; | ||
235 | uint8_t halfV[64]; | ||
236 | uint8_t halfHV[64]; | ||
237 | |||
238 | 9412 | wmv2_mspel8_h_lowpass(halfH, src - stride, 8, stride, 11); | |
239 | 9412 | wmv2_mspel8_v_lowpass(halfV, src + 1, 8, stride, 8); | |
240 | 9412 | wmv2_mspel8_v_lowpass(halfHV, halfH + 8, 8, 8, 8); | |
241 | 9412 | ff_put_pixels8_l2_8(dst, halfV, halfHV, stride, 8, 8, 8); | |
242 | 9412 | } | |
243 | |||
244 | 10684 | static void put_mspel8_mc22_c(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) | |
245 | { | ||
246 | uint8_t halfH[88]; | ||
247 | |||
248 | 10684 | wmv2_mspel8_h_lowpass(halfH, src - stride, 8, stride, 11); | |
249 | 10684 | wmv2_mspel8_v_lowpass(dst, halfH + 8, stride, 8, 8); | |
250 | 10684 | } | |
251 | |||
252 | 62 | av_cold void ff_wmv2dsp_init(WMV2DSPContext *c) | |
253 | { | ||
254 | 62 | c->idct_add = wmv2_idct_add_c; | |
255 | 62 | c->idct_put = wmv2_idct_put_c; | |
256 | 62 | c->idct_perm = FF_IDCT_PERM_NONE; | |
257 | |||
258 | 62 | c->put_mspel_pixels_tab[0] = ff_put_pixels8x8_c; | |
259 | 62 | c->put_mspel_pixels_tab[1] = put_mspel8_mc10_c; | |
260 | 62 | c->put_mspel_pixels_tab[2] = put_mspel8_mc20_c; | |
261 | 62 | c->put_mspel_pixels_tab[3] = put_mspel8_mc30_c; | |
262 | 62 | c->put_mspel_pixels_tab[4] = put_mspel8_mc02_c; | |
263 | 62 | c->put_mspel_pixels_tab[5] = put_mspel8_mc12_c; | |
264 | 62 | c->put_mspel_pixels_tab[6] = put_mspel8_mc22_c; | |
265 | 62 | c->put_mspel_pixels_tab[7] = put_mspel8_mc32_c; | |
266 | |||
267 | #if ARCH_MIPS | ||
268 | ff_wmv2dsp_init_mips(c); | ||
269 | #endif | ||
270 | 62 | } | |
271 |