comparison dsputil.c @ 6:ec4642daa6fe libavcodec

added emms_c() macro which should can used in c code in both mmx/non mmx cases
author glantau
date Tue, 24 Jul 2001 20:42:03 +0000
parents 2e2c46c87460
children 82d4c9be9873
comparison
equal deleted inserted replaced
5:4479bcab253e 6:ec4642daa6fe
19 #include <stdlib.h> 19 #include <stdlib.h>
20 #include <stdio.h> 20 #include <stdio.h>
21 #include "avcodec.h" 21 #include "avcodec.h"
22 #include "dsputil.h" 22 #include "dsputil.h"
23 23
24 #ifdef HAVE_MMX
25 int mm_flags; /* multimedia extension flags */
26 #endif
27
28 void (*get_pixels)(DCTELEM *block, const UINT8 *pixels, int line_size); 24 void (*get_pixels)(DCTELEM *block, const UINT8 *pixels, int line_size);
29 void (*put_pixels_clamped)(const DCTELEM *block, UINT8 *pixels, int line_size); 25 void (*put_pixels_clamped)(const DCTELEM *block, UINT8 *pixels, int line_size);
30 void (*add_pixels_clamped)(const DCTELEM *block, UINT8 *pixels, int line_size); 26 void (*add_pixels_clamped)(const DCTELEM *block, UINT8 *pixels, int line_size);
31 27
32 op_pixels_abs_func pix_abs16x16; 28 op_pixels_abs_func pix_abs16x16;