FFmpeg
simple_idct_mmi.c
Go to the documentation of this file.
1 /*
2  * Loongson SIMD optimized simple idct
3  *
4  * Copyright (c) 2015 Loongson Technology Corporation Limited
5  * Copyright (c) 2015 Zhou Xiaoyong <zhouxiaoyong@loongson.cn>
6  * Zhang Shuangshuang <zhangshuangshuang@ict.ac.cn>
7  *
8  * This file is part of FFmpeg.
9  *
10  * FFmpeg is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU Lesser General Public
12  * License as published by the Free Software Foundation; either
13  * version 2.1 of the License, or (at your option) any later version.
14  *
15  * FFmpeg is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18  * Lesser General Public License for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public
21  * License along with FFmpeg; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23  */
24 
25 #include "idctdsp_mips.h"
26 #include "constants.h"
27 #include "libavutil/mips/asmdefs.h"
29 #include "libavutil/mem_internal.h"
30 
31 #define W1 22725 //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5
32 #define W2 21407 //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5
33 #define W3 19266 //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5
34 #define W4 16383 //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5
35 #define W5 12873 //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5
36 #define W6 8867 //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5
37 #define W7 4520 //cos(i*M_PI/16)*sqrt(2)*(1<<14) + 0.5
38 
39 #define ROW_SHIFT 11
40 #define COL_SHIFT 20
41 #define DC_SHIFT 3
42 
43 DECLARE_ALIGNED(16, const int16_t, W_arr)[46] = {
44  W4, W2, W4, W6,
45  W1, W3, W5, W7,
46  W4, W6, -W4, -W2,
47  W3, -W7, -W1, -W5,
48  W4, -W6, -W4, W2,
49  W5, -W1, W7, W3,
50  W4, -W2, W4, -W6,
51  W7, -W5, W3, -W1,
52  1024, 0, 1024, 0, //ff_p32_1024 = 0x0000040000000400ULL
53  0, -1, -1, -1, //mask = 0xffffffffffff0000ULL
54  32, 32, 32, 32 //ff_p16_32 = 0x0020002000200020ULL
55 };
56 
58 {
60  __asm__ volatile (
61 
62 #define IDCT_ROW_COND_DC(src1, src2) \
63  "dmfc1 $11, "#src1" \n\t" \
64  "dmfc1 $12, "#src2" \n\t" \
65  "and $11, $11, $9 \n\t" \
66  "or $10, $11, $12 \n\t" \
67  "beqz $10, 1f \n\t" \
68  \
69  "punpcklhw $f30, "#src1", "#src2" \n\t" \
70  "punpckhhw $f31, "#src1", "#src2" \n\t" \
71  /* s6, s4, s2, s0 */ \
72  "punpcklhw "#src1", $f30, $f31 \n\t" \
73  /* s7, s5, s3, s1 */ \
74  "punpckhhw "#src2", $f30, $f31 \n\t" \
75  \
76  "pmaddhw $f30, "#src1", $f18 \n\t" \
77  "pmaddhw $f31, "#src2", $f19 \n\t" \
78  "paddw $f28, $f30, $f31 \n\t" \
79  "psubw $f29, $f30, $f31 \n\t" \
80  "punpcklwd $f30, $f28, $f29 \n\t" \
81  "punpckhwd $f31, $f28, $f29 \n\t" \
82  "paddw $f26, $f30, $f31 \n\t" \
83  "paddw $f26, $f26, $f16 \n\t" \
84  /* $f26: src[7], src[0] */ \
85  "psraw $f26, $f26, $f17 \n\t" \
86  \
87  "pmaddhw $f30, "#src1", $f20 \n\t" \
88  "pmaddhw $f31, "#src2", $f21 \n\t" \
89  "paddw $f28, $f30, $f31 \n\t" \
90  "psubw $f29, $f30, $f31 \n\t" \
91  "punpcklwd $f30, $f28, $f29 \n\t" \
92  "punpckhwd $f31, $f28, $f29 \n\t" \
93  "paddw $f27, $f30, $f31 \n\t" \
94  "paddw $f27, $f27, $f16 \n\t" \
95  /* $f27: src[6], src[1] */ \
96  "psraw $f27, $f27, $f17 \n\t" \
97  \
98  "pmaddhw $f30, "#src1", $f22 \n\t" \
99  "pmaddhw $f31, "#src2", $f23 \n\t" \
100  "paddw $f28, $f30, $f31 \n\t" \
101  "psubw $f29, $f30, $f31 \n\t" \
102  "punpcklwd $f30, $f28, $f29 \n\t" \
103  "punpckhwd $f31, $f28, $f29 \n\t" \
104  "paddw $f28, $f30, $f31 \n\t" \
105  "paddw $f28, $f28, $f16 \n\t" \
106  /* $f28: src[5], src[2] */ \
107  "psraw $f28, $f28, $f17 \n\t" \
108  \
109  "pmaddhw $f30, "#src1", $f24 \n\t" \
110  "pmaddhw $f31, "#src2", $f25 \n\t" \
111  "paddw "#src1", $f30, $f31 \n\t" \
112  "psubw "#src2", $f30, $f31 \n\t" \
113  "punpcklwd $f30, "#src1", "#src2" \n\t" \
114  "punpckhwd $f31, "#src1", "#src2" \n\t" \
115  "paddw $f29, $f30, $f31 \n\t" \
116  "paddw $f29, $f29, $f16 \n\t" \
117  /* $f29: src[4], src[3] */ \
118  "psraw $f29, $f29, $f17 \n\t" \
119  \
120  "punpcklhw "#src1", $f26, $f27 \n\t" \
121  "punpckhhw $f30, $f27, $f26 \n\t" \
122  "punpcklhw $f31, $f28, $f29 \n\t" \
123  "punpckhhw "#src2", $f29, $f28 \n\t" \
124  /* src[3], src[2], src[1], src[0] */ \
125  "punpcklwd "#src1", "#src1", $f31 \n\t" \
126  /* src[7], src[6], src[5], src[4] */ \
127  "punpcklwd "#src2", "#src2", $f30 \n\t" \
128  "j 2f \n\t" \
129  \
130  "1: \n\t" \
131  "li $10, 3 \n\t" \
132  "dmtc1 $10, $f30 \n\t" \
133  "psllh $f28, "#src1", $f30 \n\t" \
134  "dmtc1 $9, $f31 \n\t" \
135  "punpcklhw $f29, $f28, $f28 \n\t" \
136  "and $f29, $f29, $f31 \n\t" \
137  "paddw $f28, $f28, $f29 \n\t" \
138  "punpcklwd "#src1", $f28, $f28 \n\t" \
139  "punpcklwd "#src2", $f28, $f28 \n\t" \
140  "2: \n\t" \
141 
142  /* idctRowCondDC row0~8 */
143 
144  /* load W */
145  "gslqc1 $f19, $f18, 0x00(%[w_arr]) \n\t"
146  "gslqc1 $f21, $f20, 0x10(%[w_arr]) \n\t"
147  "gslqc1 $f23, $f22, 0x20(%[w_arr]) \n\t"
148  "gslqc1 $f25, $f24, 0x30(%[w_arr]) \n\t"
149  "gslqc1 $f17, $f16, 0x40(%[w_arr]) \n\t"
150  /* load source in block */
151  "gslqc1 $f1, $f0, 0x00(%[block]) \n\t"
152  "gslqc1 $f3, $f2, 0x10(%[block]) \n\t"
153  "gslqc1 $f5, $f4, 0x20(%[block]) \n\t"
154  "gslqc1 $f7, $f6, 0x30(%[block]) \n\t"
155  "gslqc1 $f9, $f8, 0x40(%[block]) \n\t"
156  "gslqc1 $f11, $f10, 0x50(%[block]) \n\t"
157  "gslqc1 $f13, $f12, 0x60(%[block]) \n\t"
158  "gslqc1 $f15, $f14, 0x70(%[block]) \n\t"
159 
160  /* $9: mask ; $f17: ROW_SHIFT */
161  "dmfc1 $9, $f17 \n\t"
162  "li $10, 11 \n\t"
163  "mtc1 $10, $f17 \n\t"
164  IDCT_ROW_COND_DC($f0,$f1)
165  IDCT_ROW_COND_DC($f2,$f3)
166  IDCT_ROW_COND_DC($f4,$f5)
167  IDCT_ROW_COND_DC($f6,$f7)
168  IDCT_ROW_COND_DC($f8,$f9)
169  IDCT_ROW_COND_DC($f10,$f11)
170  IDCT_ROW_COND_DC($f12,$f13)
171  IDCT_ROW_COND_DC($f14,$f15)
172 
173 #define IDCT_COL_CASE1(src, out1, out2) \
174  "pmaddhw $f26, "#src", $f18 \n\t" \
175  "pmaddhw $f27, "#src", $f20 \n\t" \
176  "pmaddhw $f28, "#src", $f22 \n\t" \
177  "pmaddhw $f29, "#src", $f24 \n\t" \
178  \
179  "punpcklwd $f30, $f26, $f26 \n\t" \
180  "punpckhwd $f31, $f26, $f26 \n\t" \
181  /* $f26: src[0], src[56] */ \
182  "paddw $f26, $f30, $f31 \n\t" \
183  "punpcklwd $f30, $f27, $f27 \n\t" \
184  "punpckhwd $f31, $f27, $f27 \n\t" \
185  /* $f27: src[8], src[48] */ \
186  "paddw $f27, $f30, $f31 \n\t" \
187  "punpcklwd $f30, $f28, $f28 \n\t" \
188  "punpckhwd $f31, $f28, $f28 \n\t" \
189  /* $f28: src[16], src[40] */ \
190  "paddw $f28, $f30, $f31 \n\t" \
191  "punpcklwd $f30, $f29, $f29 \n\t" \
192  "punpckhwd $f31, $f29, $f29 \n\t" \
193  /* $f29: src[24], src[32] */ \
194  "paddw $f29, $f30, $f31 \n\t" \
195  \
196  /* out1: src[24], src[16], src[8], src[0] */ \
197  /* out2: src[56], src[48], src[40], src[32] */ \
198  "punpcklhw $f30, $f26, $f27 \n\t" \
199  "punpcklhw $f31, $f28, $f29 \n\t" \
200  "punpckhwd "#out1", $f30, $f31 \n\t" \
201  "psrah "#out1", "#out1", $f16 \n\t" \
202  "punpcklhw $f30, $f27, $f26 \n\t" \
203  "punpcklhw $f31, $f29, $f28 \n\t" \
204  "punpckhwd "#out2", $f31, $f30 \n\t" \
205  "psrah "#out2", "#out2", $f16 \n\t"
206 
207 #define IDCT_COL_CASE2(src1, src2, out1, out2) \
208  "pmaddhw $f28, "#src1", $f18 \n\t" \
209  "pmaddhw $f29, "#src2", $f19 \n\t" \
210  "paddw $f30, $f28, $f29 \n\t" \
211  "psubw $f31, $f28, $f29 \n\t" \
212  "punpcklwd $f28, $f30, $f31 \n\t" \
213  "punpckhwd $f29, $f30, $f31 \n\t" \
214  "pmaddhw $f30, "#src1", $f20 \n\t" \
215  "pmaddhw $f31, "#src2", $f21 \n\t" \
216  /* $f26: src[0], src[56] */ \
217  "paddw $f26, $f28, $f29 \n\t" \
218  "paddw $f28, $f30, $f31 \n\t" \
219  "psubw $f29, $f30, $f31 \n\t" \
220  "punpcklwd $f30, $f28, $f29 \n\t" \
221  "punpckhwd $f31, $f28, $f29 \n\t" \
222  "pmaddhw $f28, "#src1", $f22 \n\t" \
223  "pmaddhw $f29, "#src2", $f23 \n\t" \
224  /* $f27: src[8], src[48] */ \
225  "paddw $f27, $f30, $f31 \n\t" \
226  "paddw $f30, $f28, $f29 \n\t" \
227  "psubw $f31, $f28, $f29 \n\t" \
228  "punpcklwd $f28, $f30, $f31 \n\t" \
229  "punpckhwd $f29, $f30, $f31 \n\t" \
230  "pmaddhw $f30, "#src1", $f24 \n\t" \
231  "pmaddhw $f31, "#src2", $f25 \n\t" \
232  /* $f28: src[16], src[40] */ \
233  "paddw $f28, $f28, $f29 \n\t" \
234  "paddw "#out1", $f30, $f31 \n\t" \
235  "psubw "#out2", $f30, $f31 \n\t" \
236  "punpcklwd $f30, "#out1", "#out2" \n\t" \
237  "punpckhwd $f31, "#out1", "#out2" \n\t" \
238  /* $f29: src[24], src[32] */ \
239  "paddw $f29, $f30, $f31 \n\t" \
240  \
241  /* out1: src[24], src[16], src[8], src[0] */ \
242  /* out2: src[56], src[48], src[40], src[32] */ \
243  "punpcklhw "#out1", $f26, $f27 \n\t" \
244  "punpckhhw "#out2", $f27, $f26 \n\t" \
245  "punpcklhw $f30, $f28, $f29 \n\t" \
246  "punpckhhw $f31, $f29, $f28 \n\t" \
247  "punpckhwd "#out1", "#out1", $f30 \n\t" \
248  "punpckhwd "#out2", $f31, "#out2" \n\t" \
249  "psrah "#out1", "#out1", $f16 \n\t" \
250  "psrah "#out2", "#out2", $f16 \n\t"
251 
252 
253  /* idctSparseCol col0~3 */
254 
255  /* $f17: ff_p16_32; $f16: COL_SHIFT-16 */
256  "gsldlc1 $f17, 0x57(%[w_arr]) \n\t"
257  "gsldrc1 $f17, 0x50(%[w_arr]) \n\t"
258  "li $10, 4 \n\t"
259  "dmtc1 $10, $f16 \n\t"
260  "paddh $f0, $f0, $f17 \n\t"
261  /* Transpose row[0,2,4,6] */
262  "punpcklhw $f26, $f0, $f4 \n\t"
263  "punpckhhw $f27, $f0, $f4 \n\t"
264  "punpcklhw $f28, $f8, $f12 \n\t"
265  "punpckhhw $f29, $f8, $f12 \n\t"
266  "punpcklwd $f0, $f26, $f28 \n\t"
267  "punpckhwd $f4, $f26, $f28 \n\t"
268  "punpcklwd $f8, $f27, $f29 \n\t"
269  "punpckhwd $f12, $f27, $f29 \n\t"
270 
271  "or $f26, $f2, $f6 \n\t"
272  "or $f26, $f26, $f10 \n\t"
273  "or $f26, $f26, $f14 \n\t"
274  "dmfc1 $10, $f26 \n\t"
275  "bnez $10, 1f \n\t"
276  /* case1: In this case, row[1,3,5,7] are all zero */
277  /* col0: $f0: col[24,16,8,0]; $f2: col[56,48,40,32] */
278  IDCT_COL_CASE1($f0, $f0, $f2)
279  /* col1: $f4: col[25,17,9,1]; $f6: col[57,49,41,33] */
280  IDCT_COL_CASE1($f4, $f4, $f6)
281  /* col2: $f8: col[26,18,10,2]; $f10: col[58,50,42,34] */
282  IDCT_COL_CASE1($f8, $f8, $f10)
283  /* col3: $f12: col[27,19,11,3]; $f14: col[59,51,43,35] */
284  IDCT_COL_CASE1($f12, $f12, $f14)
285  "j 2f \n\t"
286 
287  "1: \n\t"
288  /* case2: row[1,3,5,7] are not all zero */
289  /* Transpose */
290  "punpcklhw $f26, $f2, $f6 \n\t"
291  "punpckhhw $f27, $f2, $f6 \n\t"
292  "punpcklhw $f28, $f10, $f14 \n\t"
293  "punpckhhw $f29, $f10, $f14 \n\t"
294  "punpcklwd $f2, $f26, $f28 \n\t"
295  "punpckhwd $f6, $f26, $f28 \n\t"
296  "punpcklwd $f10, $f27, $f29 \n\t"
297  "punpckhwd $f14, $f27, $f29 \n\t"
298 
299  /* col0: $f0: col[24,16,8,0]; $f2: col[56,48,40,32] */
300  IDCT_COL_CASE2($f0, $f2, $f0, $f2)
301  /* col1: $f4: col[25,17,9,1]; $f6: col[57,49,41,33] */
302  IDCT_COL_CASE2($f4, $f6, $f4, $f6)
303  /* col2: $f8: col[26,18,10,2]; $f10: col[58,50,42,34] */
304  IDCT_COL_CASE2($f8, $f10, $f8, $f10)
305  /* col3: $f12: col[27,19,11,3]; $f14: col[59,51,43,35] */
306  IDCT_COL_CASE2($f12, $f14, $f12, $f14)
307 
308  "2: \n\t"
309  /* Transpose */
310  "punpcklhw $f26, $f0, $f4 \n\t"
311  "punpckhhw $f27, $f0, $f4 \n\t"
312  "punpcklhw $f28, $f8, $f12 \n\t"
313  "punpckhhw $f29, $f8, $f12 \n\t"
314  "punpcklwd $f0, $f26, $f28 \n\t"
315  "punpckhwd $f4, $f26, $f28 \n\t"
316  "punpcklwd $f8, $f27, $f29 \n\t"
317  "punpckhwd $f12, $f27, $f29 \n\t"
318  /* Transpose */
319  "punpcklhw $f26, $f2, $f6 \n\t"
320  "punpckhhw $f27, $f2, $f6 \n\t"
321  "punpcklhw $f28, $f10, $f14 \n\t"
322  "punpckhhw $f29, $f10, $f14 \n\t"
323  "punpcklwd $f2, $f26, $f28 \n\t"
324  "punpckhwd $f6, $f26, $f28 \n\t"
325  "punpcklwd $f10, $f27, $f29 \n\t"
326  "punpckhwd $f14, $f27, $f29 \n\t"
327 
328  /* idctSparseCol col4~7 */
329 
330  "paddh $f1, $f1, $f17 \n\t"
331  /* Transpose */
332  "punpcklhw $f26, $f1, $f5 \n\t"
333  "punpckhhw $f27, $f1, $f5 \n\t"
334  "punpcklhw $f28, $f9, $f13 \n\t"
335  "punpckhhw $f29, $f9, $f13 \n\t"
336  "punpcklwd $f1, $f26, $f28 \n\t"
337  "punpckhwd $f5, $f26, $f28 \n\t"
338  "punpcklwd $f9, $f27, $f29 \n\t"
339  "punpckhwd $f13, $f27, $f29 \n\t"
340 
341  "or $f26, $f3, $f7 \n\t"
342  "or $f26, $f26, $f11 \n\t"
343  "or $f26, $f26, $f15 \n\t"
344  "dmfc1 $10, $f26 \n\t"
345  "bnez $10, 1f \n\t"
346  /* case1: In this case, row[1,3,5,7] are all zero */
347  /* col4: $f1: col[24,16,8,0]; $f3: col[56,48,40,32] */
348  IDCT_COL_CASE1($f1, $f1, $f3)
349  /* col5: $f5: col[25,17,9,1]; $f7: col[57,49,41,33] */
350  IDCT_COL_CASE1($f5, $f5, $f7)
351  /* col6: $f9: col[26,18,10,2]; $f11: col[58,50,42,34] */
352  IDCT_COL_CASE1($f9, $f9, $f11)
353  /* col7: $f13: col[27,19,11,3]; $f15: col[59,51,43,35] */
354  IDCT_COL_CASE1($f13, $f13, $f15)
355  "j 2f \n\t"
356 
357  "1: \n\t"
358  /* case2: row[1,3,5,7] are not all zero */
359  /* Transpose */
360  "punpcklhw $f26, $f3, $f7 \n\t"
361  "punpckhhw $f27, $f3, $f7 \n\t"
362  "punpcklhw $f28, $f11, $f15 \n\t"
363  "punpckhhw $f29, $f11, $f15 \n\t"
364  "punpcklwd $f3, $f26, $f28 \n\t"
365  "punpckhwd $f7, $f26, $f28 \n\t"
366  "punpcklwd $f11, $f27, $f29 \n\t"
367  "punpckhwd $f15, $f27, $f29 \n\t"
368 
369  /* col4: $f1: col[24,16,8,0]; $f3: col[56,48,40,32] */
370  IDCT_COL_CASE2($f1, $f3, $f1, $f3)
371  /* col5: $f5: col[25,17,9,1]; $f7: col[57,49,41,33] */
372  IDCT_COL_CASE2($f5, $f7, $f5, $f7)
373  /* col6: $f9: col[26,18,10,2]; $f11: col[58,50,42,34] */
374  IDCT_COL_CASE2($f9, $f11, $f9, $f11)
375  /* col7: $f13: col[27,19,11,3]; $f15: col[59,51,43,35] */
376  IDCT_COL_CASE2($f13, $f15, $f13, $f15)
377 
378  "2: \n\t"
379  /* Transpose */
380  "punpcklhw $f26, $f1, $f5 \n\t"
381  "punpckhhw $f27, $f1, $f5 \n\t"
382  "punpcklhw $f28, $f9, $f13 \n\t"
383  "punpckhhw $f29, $f9, $f13 \n\t"
384  "punpcklwd $f1, $f26, $f28 \n\t"
385  "punpckhwd $f5, $f26, $f28 \n\t"
386  "punpcklwd $f9, $f27, $f29 \n\t"
387  "punpckhwd $f13, $f27, $f29 \n\t"
388  /* Transpose */
389  "punpcklhw $f26, $f3, $f7 \n\t"
390  "punpckhhw $f27, $f3, $f7 \n\t"
391  "punpcklhw $f28, $f11, $f15 \n\t"
392  "punpckhhw $f29, $f11, $f15 \n\t"
393  "punpcklwd $f3, $f26, $f28 \n\t"
394  "punpckhwd $f7, $f26, $f28 \n\t"
395  "punpcklwd $f11, $f27, $f29 \n\t"
396  "punpckhwd $f15, $f27, $f29 \n\t"
397  /* Store */
398  "gssqc1 $f1, $f0, 0x00(%[block]) \n\t"
399  "gssqc1 $f5, $f4, 0x10(%[block]) \n\t"
400  "gssqc1 $f9, $f8, 0x20(%[block]) \n\t"
401  "gssqc1 $f13, $f12, 0x30(%[block]) \n\t"
402  "gssqc1 $f3, $f2, 0x40(%[block]) \n\t"
403  "gssqc1 $f7, $f6, 0x50(%[block]) \n\t"
404  "gssqc1 $f11, $f10, 0x60(%[block]) \n\t"
405  "gssqc1 $f15, $f14, 0x70(%[block]) \n\t"
406 
407  : [block]"+&r"(block)
408  : [w_arr]"r"(W_arr)
409  : "memory"
410  );
411 
413 }
414 
415 void ff_simple_idct_put_8_mmi(uint8_t *dest, ptrdiff_t line_size, int16_t *block)
416 {
418  ff_put_pixels_clamped_mmi(block, dest, line_size);
419 }
420 void ff_simple_idct_add_8_mmi(uint8_t *dest, ptrdiff_t line_size, int16_t *block)
421 {
423  ff_add_pixels_clamped_mmi(block, dest, line_size);
424 }
ff_simple_idct_8_mmi
void ff_simple_idct_8_mmi(int16_t *block)
Definition: simple_idct_mmi.c:57
mem_internal.h
ff_add_pixels_clamped_mmi
void ff_add_pixels_clamped_mmi(const int16_t *block, uint8_t *av_restrict pixels, ptrdiff_t line_size)
Definition: idctdsp_mmi.c:150
W4
#define W4
Definition: simple_idct_mmi.c:34
ff_simple_idct_put_8_mmi
void ff_simple_idct_put_8_mmi(uint8_t *dest, ptrdiff_t line_size, int16_t *block)
Definition: simple_idct_mmi.c:415
W1
#define W1
Definition: simple_idct_mmi.c:31
asmdefs.h
IDCT_COL_CASE1
#define IDCT_COL_CASE1(src, out1, out2)
constants.h
mmiutils.h
IDCT_COL_CASE2
#define IDCT_COL_CASE2(src1, src2, out1, out2)
W_arr
const int16_t W_arr[46]
Definition: simple_idct_mmi.c:43
W2
#define W2
Definition: simple_idct_mmi.c:32
RECOVER_REG
#define RECOVER_REG
recover register
Definition: mmiutils.h:234
W3
#define W3
Definition: simple_idct_mmi.c:33
W7
#define W7
Definition: simple_idct_mmi.c:37
ff_put_pixels_clamped_mmi
void ff_put_pixels_clamped_mmi(const int16_t *block, uint8_t *av_restrict pixels, ptrdiff_t line_size)
Definition: idctdsp_mmi.c:28
ff_simple_idct_add_8_mmi
void ff_simple_idct_add_8_mmi(uint8_t *dest, ptrdiff_t line_size, int16_t *block)
Definition: simple_idct_mmi.c:420
BACKUP_REG
#define BACKUP_REG
backup register
Definition: mmiutils.h:209
DECLARE_ALIGNED
#define DECLARE_ALIGNED(n, t, v)
Definition: mem.h:117
uint8_t
uint8_t
Definition: audio_convert.c:194
__asm__
__asm__(".macro parse_r var r\n\t" "\\var = -1\n\t" _IFC_REG(0) _IFC_REG(1) _IFC_REG(2) _IFC_REG(3) _IFC_REG(4) _IFC_REG(5) _IFC_REG(6) _IFC_REG(7) _IFC_REG(8) _IFC_REG(9) _IFC_REG(10) _IFC_REG(11) _IFC_REG(12) _IFC_REG(13) _IFC_REG(14) _IFC_REG(15) _IFC_REG(16) _IFC_REG(17) _IFC_REG(18) _IFC_REG(19) _IFC_REG(20) _IFC_REG(21) _IFC_REG(22) _IFC_REG(23) _IFC_REG(24) _IFC_REG(25) _IFC_REG(26) _IFC_REG(27) _IFC_REG(28) _IFC_REG(29) _IFC_REG(30) _IFC_REG(31) ".iflt \\var\n\t" ".error \"Unable to parse register name \\r\"\n\t" ".endif\n\t" ".endm")
idctdsp_mips.h
block
The exact code depends on how similar the blocks are and how related they are to the block
Definition: filter_design.txt:207
W6
#define W6
Definition: simple_idct_mmi.c:36
W5
#define W5
Definition: simple_idct_mmi.c:35
IDCT_ROW_COND_DC
#define IDCT_ROW_COND_DC(src1, src2)