comparison libpostproc/postprocess.c @ 1069:8528d0b9e508 libavcodec

moving postprocess to ffmpeg/libavcodec
author michaelni
date Fri, 14 Feb 2003 21:27:25 +0000
parents 54aa0bb40e97
children 0a48dd404167
comparison
equal deleted inserted replaced
1068:a5be963709d1 1069:8528d0b9e508
73 //#undef HAVE_MMX2 73 //#undef HAVE_MMX2
74 //#define HAVE_3DNOW 74 //#define HAVE_3DNOW
75 //#undef HAVE_MMX 75 //#undef HAVE_MMX
76 //#undef ARCH_X86 76 //#undef ARCH_X86
77 //#define DEBUG_BRIGHTNESS 77 //#define DEBUG_BRIGHTNESS
78 #ifndef PIC 78 #ifdef USE_FASTMEMCPY
79 #include "../libvo/fastmemcpy.h" 79 #include "libvo/fastmemcpy.h"
80 #endif 80 #endif
81 #include "postprocess.h" 81 #include "postprocess.h"
82 #include "postprocess_internal.h" 82 #include "postprocess_internal.h"
83 #include "mangle.h" 83
84 #include "mangle.h" //FIXME should be supressed
84 85
85 #define MIN(a,b) ((a) > (b) ? (b) : (a)) 86 #define MIN(a,b) ((a) > (b) ? (b) : (a))
86 #define MAX(a,b) ((a) < (b) ? (b) : (a)) 87 #define MAX(a,b) ((a) < (b) ? (b) : (a))
87 #define ABS(a) ((a) > 0 ? (a) : (-(a))) 88 #define ABS(a) ((a) > 0 ? (a) : (-(a)))
88 #define SIGN(a) ((a) > 0 ? 1 : -1) 89 #define SIGN(a) ((a) > 0 ? 1 : -1)