2 * The simplest mpeg encoder (well, it was the simplest!)
3 * Copyright (c) 2000,2001 Gerard Lantau.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 * Optimized for ia32 cpus by Nick Kurshev <nickols_k@mail.ru>
20 * h263 dequantizer by Michael Niedermayer <michaelni@gmx.at>
23 #include "../dsputil.h"
24 #include "../mpegvideo.h"
25 #include "../avcodec.h"
26 #include "../mangle.h"
28 extern UINT8 zigzag_end[64];
29 extern void (*draw_edges)(UINT8 *buf, int wrap, int width, int height, int w);
30 extern int (*dct_quantize)(MpegEncContext *s, DCTELEM *block, int n, int qscale);
32 extern UINT8 zigzag_direct_noperm[64];
33 extern UINT16 inv_zigzag_direct16[64];
34 extern UINT32 inverse[256];
38 /* XXX: GL: I don't understand why this function needs optimization
39 (it is called only once per frame!), so I disabled it */
41 void MPV_frame_start(MpegEncContext *s)
43 if (s->pict_type == B_TYPE) {
45 "movl (%1), %%eax\n\t"
46 "movl 4(%1), %%edx\n\t"
47 "movl 8(%1), %%ecx\n\t"
48 "movl %%eax, (%0)\n\t"
49 "movl %%edx, 4(%0)\n\t"
50 "movl %%ecx, 8(%0)\n\t"
52 :"r"(s->current_picture), "r"(s->aux_picture)
53 :"eax","edx","ecx","memory");
55 /* swap next and last */
57 "movl (%1), %%eax\n\t"
58 "movl 4(%1), %%edx\n\t"
59 "movl 8(%1), %%ecx\n\t"
60 "xchgl (%0), %%eax\n\t"
61 "xchgl 4(%0), %%edx\n\t"
62 "xchgl 8(%0), %%ecx\n\t"
63 "movl %%eax, (%1)\n\t"
64 "movl %%edx, 4(%1)\n\t"
65 "movl %%ecx, 8(%1)\n\t"
66 "movl %%eax, (%2)\n\t"
67 "movl %%edx, 4(%2)\n\t"
68 "movl %%ecx, 8(%2)\n\t"
70 :"r"(s->last_picture), "r"(s->next_picture), "r"(s->current_picture)
71 :"eax","edx","ecx","memory");
76 static const unsigned long long int mm_wabs __attribute__ ((aligned(8))) = 0xffffffffffffffffULL;
77 static const unsigned long long int mm_wone __attribute__ ((aligned(8))) = 0x0001000100010001ULL;
80 static void dct_unquantize_h263_mmx(MpegEncContext *s,
81 DCTELEM *block, int n, int qscale)
83 int i, level, qmul, qadd, nCoeffs;
85 qmul = s->qscale << 1;
86 if (s->h263_aic && s->mb_intra)
89 qadd = (s->qscale - 1) | 1;
93 block[0] = block[0] * s->y_dc_scale;
95 block[0] = block[0] * s->c_dc_scale;
101 level = level * qmul - qadd;
103 level = level * qmul + qadd;
111 nCoeffs= zigzag_end[ s->block_last_index[n] ];
113 //printf("%d %d ", qmul, qadd);
115 "movd %1, %%mm6 \n\t" //qmul
116 "packssdw %%mm6, %%mm6 \n\t"
117 "packssdw %%mm6, %%mm6 \n\t"
118 "movd %2, %%mm5 \n\t" //qadd
119 "pxor %%mm7, %%mm7 \n\t"
120 "packssdw %%mm5, %%mm5 \n\t"
121 "packssdw %%mm5, %%mm5 \n\t"
122 "psubw %%mm5, %%mm7 \n\t"
123 "pxor %%mm4, %%mm4 \n\t"
126 "movq (%0, %3), %%mm0 \n\t"
127 "movq 8(%0, %3), %%mm1 \n\t"
129 "pmullw %%mm6, %%mm0 \n\t"
130 "pmullw %%mm6, %%mm1 \n\t"
132 "movq (%0, %3), %%mm2 \n\t"
133 "movq 8(%0, %3), %%mm3 \n\t"
135 "pcmpgtw %%mm4, %%mm2 \n\t" // block[i] < 0 ? -1 : 0
136 "pcmpgtw %%mm4, %%mm3 \n\t" // block[i] < 0 ? -1 : 0
138 "pxor %%mm2, %%mm0 \n\t"
139 "pxor %%mm3, %%mm1 \n\t"
141 "paddw %%mm7, %%mm0 \n\t"
142 "paddw %%mm7, %%mm1 \n\t"
144 "pxor %%mm0, %%mm2 \n\t"
145 "pxor %%mm1, %%mm3 \n\t"
147 "pcmpeqw %%mm7, %%mm0 \n\t" // block[i] == 0 ? -1 : 0
148 "pcmpeqw %%mm7, %%mm1 \n\t" // block[i] == 0 ? -1 : 0
150 "pandn %%mm2, %%mm0 \n\t"
151 "pandn %%mm3, %%mm1 \n\t"
153 "movq %%mm0, (%0, %3) \n\t"
154 "movq %%mm1, 8(%0, %3) \n\t"
158 ::"r" (block+nCoeffs), "g"(qmul), "g" (qadd), "r" (2*(i-nCoeffs))
166 Note: looking at PARANOID:
167 "enable all paranoid tests for rounding, overflows, etc..."
170 if (level < -2048 || level > 2047)
171 fprintf(stderr, "unquant error %d %d\n", i, level);
173 We can suppose that result of two multiplications can't be greate of 0xFFFF
174 i.e. is 16-bit, so we use here only PMULLW instruction and can avoid
175 a complex multiplication.
176 =====================================================
177 Full formula for multiplication of 2 integer numbers
178 which are represent as high:low words:
179 input: value1 = high1:low1
181 output: value3 = value1*value2
182 value3=high3:low3 (on overflow: modulus 2^32 wrap-around)
183 this mean that for 0x123456 * 0x123456 correct result is 0x766cb0ce4
184 but this algorithm will compute only 0x66cb0ce4
185 this limited by 16-bit size of operands
186 ---------------------------------
189 tlow1 = tlow1 + tlow2
190 high3:low3 = low1*low2
193 static void dct_unquantize_mpeg1_mmx(MpegEncContext *s,
194 DCTELEM *block, int n, int qscale)
196 int i, level, nCoeffs;
197 const UINT16 *quant_matrix;
199 if(s->alternate_scan) nCoeffs= 64;
200 else nCoeffs= nCoeffs= zigzag_end[ s->block_last_index[n] ];
204 block[0] = block[0] * s->y_dc_scale;
206 block[0] = block[0] * s->c_dc_scale;
207 /* isnt used anymore (we have a h263 unquantizer since some time)
208 if (s->out_format == FMT_H263) {
212 /* XXX: only mpeg1 */
213 quant_matrix = s->intra_matrix;
215 /* Align on 4 elements boundary */
220 if (level < 0) level = -level;
221 level = (int)(level * qscale * quant_matrix[i]) >> 3;
222 level = (level - 1) | 1;
223 if (block[i] < 0) level = -level;
229 "movd %0, %%mm6\n\t" /* mm6 = qscale | 0 */
230 "punpckldq %%mm6, %%mm6\n\t" /* mm6 = qscale | qscale */
232 "movq %%mm6, %%mm7\n\t"
234 "packssdw %%mm6, %%mm7\n\t" /* mm7 = qscale | qscale | qscale | qscale */
235 "pxor %%mm6, %%mm6\n\t"
236 ::"g"(qscale),"m"(mm_wone),"m"(mm_wabs):"memory");
237 for(;i<nCoeffs;i+=4) {
240 "movq %%mm7, %%mm1\n\t"
241 "movq %%mm0, %%mm2\n\t"
242 "movq %%mm0, %%mm3\n\t"
243 "pcmpgtw %%mm6, %%mm2\n\t"
244 "pmullw %2, %%mm1\n\t"
245 "pandn %%mm4, %%mm2\n\t"
246 "por %%mm5, %%mm2\n\t"
247 "pmullw %%mm2, %%mm0\n\t" /* mm0 = abs(block[i]). */
249 "pcmpeqw %%mm6, %%mm3\n\t"
250 "pmullw %%mm0, %%mm1\n\t"
251 "psraw $3, %%mm1\n\t"
252 "psubw %%mm5, %%mm1\n\t" /* block[i] --; */
253 "pandn %%mm4, %%mm3\n\t" /* fake of pcmpneqw : mm0 != 0 then mm1 = -1 */
254 "por %%mm5, %%mm1\n\t" /* block[i] |= 1 */
255 "pmullw %%mm2, %%mm1\n\t" /* change signs again */
257 "pand %%mm3, %%mm1\n\t" /* nullify if was zero */
260 :"m"(block[i]), "m"(quant_matrix[i])
266 quant_matrix = s->non_intra_matrix;
267 /* Align on 4 elements boundary */
272 if (level < 0) level = -level;
273 level = (((level << 1) + 1) * qscale *
274 ((int) quant_matrix[i])) >> 4;
275 level = (level - 1) | 1;
276 if(block[i] < 0) level = -level;
282 "pcmpeqw %%mm7, %%mm7 \n\t"
283 "psrlw $15, %%mm7 \n\t"
284 "movd %2, %%mm6 \n\t"
285 "packssdw %%mm6, %%mm6 \n\t"
286 "packssdw %%mm6, %%mm6 \n\t"
289 "movq (%0, %3), %%mm0 \n\t"
290 "movq 8(%0, %3), %%mm1 \n\t"
291 "movq (%1, %3), %%mm4 \n\t"
292 "movq 8(%1, %3), %%mm5 \n\t"
293 "pmullw %%mm6, %%mm4 \n\t" // q=qscale*quant_matrix[i]
294 "pmullw %%mm6, %%mm5 \n\t" // q=qscale*quant_matrix[i]
295 "pxor %%mm2, %%mm2 \n\t"
296 "pxor %%mm3, %%mm3 \n\t"
297 "pcmpgtw %%mm0, %%mm2 \n\t" // block[i] < 0 ? -1 : 0
298 "pcmpgtw %%mm1, %%mm3 \n\t" // block[i] < 0 ? -1 : 0
299 "pxor %%mm2, %%mm0 \n\t"
300 "pxor %%mm3, %%mm1 \n\t"
301 "psubw %%mm2, %%mm0 \n\t" // abs(block[i])
302 "psubw %%mm3, %%mm1 \n\t" // abs(block[i])
303 "paddw %%mm0, %%mm0 \n\t" // abs(block[i])*2
304 "paddw %%mm1, %%mm1 \n\t" // abs(block[i])*2
305 "paddw %%mm7, %%mm0 \n\t" // abs(block[i])*2 + 1
306 "paddw %%mm7, %%mm1 \n\t" // abs(block[i])*2 + 1
307 "pmullw %%mm4, %%mm0 \n\t" // (abs(block[i])*2 + 1)*q
308 "pmullw %%mm5, %%mm1 \n\t" // (abs(block[i])*2 + 1)*q
309 "pxor %%mm4, %%mm4 \n\t"
310 "pxor %%mm5, %%mm5 \n\t" // FIXME slow
311 "pcmpeqw (%0, %3), %%mm4 \n\t" // block[i] == 0 ? -1 : 0
312 "pcmpeqw 8(%0, %3), %%mm5 \n\t" // block[i] == 0 ? -1 : 0
313 "psraw $4, %%mm0 \n\t"
314 "psraw $4, %%mm1 \n\t"
315 "psubw %%mm7, %%mm0 \n\t"
316 "psubw %%mm7, %%mm1 \n\t"
317 "por %%mm7, %%mm0 \n\t"
318 "por %%mm7, %%mm1 \n\t"
319 "pxor %%mm2, %%mm0 \n\t"
320 "pxor %%mm3, %%mm1 \n\t"
321 "psubw %%mm2, %%mm0 \n\t"
322 "psubw %%mm3, %%mm1 \n\t"
323 "pandn %%mm0, %%mm4 \n\t"
324 "pandn %%mm1, %%mm5 \n\t"
325 "movq %%mm4, (%0, %3) \n\t"
326 "movq %%mm5, 8(%0, %3) \n\t"
330 ::"r" (block+nCoeffs), "r"(quant_matrix+nCoeffs), "g" (qscale), "r" (2*(i-nCoeffs))
336 /* draw the edges of width 'w' of an image of size width, height
337 this mmx version can only handle w==8 || w==16 */
338 static void draw_edges_mmx(UINT8 *buf, int wrap, int width, int height, int w)
340 UINT8 *ptr, *last_line;
343 last_line = buf + (height - 1) * wrap;
350 "movd (%0), %%mm0 \n\t"
351 "punpcklbw %%mm0, %%mm0 \n\t"
352 "punpcklwd %%mm0, %%mm0 \n\t"
353 "punpckldq %%mm0, %%mm0 \n\t"
354 "movq %%mm0, -8(%0) \n\t"
355 "movq -8(%0, %2), %%mm1 \n\t"
356 "punpckhbw %%mm1, %%mm1 \n\t"
357 "punpckhwd %%mm1, %%mm1 \n\t"
358 "punpckhdq %%mm1, %%mm1 \n\t"
359 "movq %%mm1, (%0, %2) \n\t"
364 : "r" (wrap), "r" (width), "r" (ptr + wrap*height)
371 "movd (%0), %%mm0 \n\t"
372 "punpcklbw %%mm0, %%mm0 \n\t"
373 "punpcklwd %%mm0, %%mm0 \n\t"
374 "punpckldq %%mm0, %%mm0 \n\t"
375 "movq %%mm0, -8(%0) \n\t"
376 "movq %%mm0, -16(%0) \n\t"
377 "movq -8(%0, %2), %%mm1 \n\t"
378 "punpckhbw %%mm1, %%mm1 \n\t"
379 "punpckhwd %%mm1, %%mm1 \n\t"
380 "punpckhdq %%mm1, %%mm1 \n\t"
381 "movq %%mm1, (%0, %2) \n\t"
382 "movq %%mm1, 8(%0, %2) \n\t"
387 : "r" (wrap), "r" (width), "r" (ptr + wrap*height)
392 /* top and bottom (and hopefully also the corners) */
393 ptr= buf - (i + 1) * wrap - w;
396 "movq (%1, %0), %%mm0 \n\t"
397 "movq %%mm0, (%0) \n\t"
398 "movq %%mm0, (%0, %2) \n\t"
399 "movq %%mm0, (%0, %2, 2) \n\t"
400 "movq %%mm0, (%0, %3) \n\t"
405 : "r" ((int)buf - (int)ptr - w), "r" (-wrap), "r" (-wrap*3), "r" (ptr+width+2*w)
407 ptr= last_line + (i + 1) * wrap - w;
410 "movq (%1, %0), %%mm0 \n\t"
411 "movq %%mm0, (%0) \n\t"
412 "movq %%mm0, (%0, %2) \n\t"
413 "movq %%mm0, (%0, %2, 2) \n\t"
414 "movq %%mm0, (%0, %3) \n\t"
419 : "r" ((int)last_line - (int)ptr - w), "r" (wrap), "r" (wrap*3), "r" (ptr+width+2*w)
424 static volatile int esp_temp;
426 void unused_var_warning_killer(){
431 #define RENAME(a) a ## _MMX
432 #include "mpegvideo_mmx_template.c"
436 #define RENAME(a) a ## _MMX2
437 #include "mpegvideo_mmx_template.c"
439 void MPV_common_init_mmx(MpegEncContext *s)
441 if (mm_flags & MM_MMX) {
442 if (s->out_format == FMT_H263)
443 s->dct_unquantize = dct_unquantize_h263_mmx;
445 s->dct_unquantize = dct_unquantize_mpeg1_mmx;
447 draw_edges = draw_edges_mmx;
449 if(mm_flags & MM_MMXEXT){
450 dct_quantize= dct_quantize_MMX2;
452 dct_quantize= dct_quantize_MMX;