diff dsputil.h @ 403:2c3e25f4c496 libavcodec

removed unused stuff - added dsputil_set_bit_exact() support for easier testing
author glantau
date Mon, 20 May 2002 16:37:58 +0000
parents 9c6f056f0e41
children 718a22dc121f
line wrap: on
line diff
--- a/dsputil.h	Mon May 20 16:25:09 2002 +0000
+++ b/dsputil.h	Mon May 20 16:37:58 2002 +0000
@@ -61,13 +61,6 @@
 extern qpel_mc_func qpel_mc_rnd_tab[16];
 extern qpel_mc_func qpel_mc_no_rnd_tab[16];
 
-
-/* sub pixel (encoding) */
-extern void (*sub_pixels_tab[4])(DCTELEM *block, const UINT8 *pixels, int line_size, int h);
-
-#define sub_pixels_2(block, pixels, line_size, dxy) \
-   sub_pixels_tab[dxy](block, pixels, line_size, 8)
-
 /* motion estimation */
 
 typedef int (*op_pixels_abs_func)(UINT8 *blk1, UINT8 *blk2, int line_size);
@@ -119,6 +112,7 @@
 #define __align8 __attribute__ ((aligned (8)))
 
 void dsputil_init_mmx(void);
+void dsputil_set_bit_exact_mmx(void);
 
 #elif defined(ARCH_ARMV4L)