comparison imgresample.c @ 17:b69fe46fd708 libavcodec

Adding fastmemcpy stuff to speedup mplayer project
author nickols_k
date Thu, 02 Aug 2001 08:29:38 +0000
parents 2e2c46c87460
children 1d2077091e88
comparison
equal deleted inserted replaced
16:89bc3bf1a031 17:b69fe46fd708
20 #include <stdio.h> 20 #include <stdio.h>
21 #include <string.h> 21 #include <string.h>
22 #include <math.h> 22 #include <math.h>
23 #include "dsputil.h" 23 #include "dsputil.h"
24 #include "avcodec.h" 24 #include "avcodec.h"
25
26 /* Stuff below is useful only for mplayer project */
27 #ifdef HAVE_CONFIG_H
28 #include "../config.h"
29 #endif
30
31 #ifdef USE_FASTMEMCPY
32 #include "fastmemcpy.h"
33 #endif
34
25 35
26 #define NB_COMPONENTS 3 36 #define NB_COMPONENTS 3
27 37
28 #define PHASE_BITS 4 38 #define PHASE_BITS 4
29 #define NB_PHASES (1 << PHASE_BITS) 39 #define NB_PHASES (1 << PHASE_BITS)