diff options
author | Diego Pettenò <flameeyes@gmail.com> | 2008-01-08 22:03:30 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2008-01-08 22:03:30 +0000 |
commit | 9656df79948afa1a3beaff2ff1071442ea5d4a4f (patch) | |
tree | 4b3eea8155bf00861f2712806c190e93dc4c9c60 /libpostproc/postprocess_internal.h | |
parent | 59edca9ac10e007a6edb3e3a135dc399bd154209 (diff) | |
download | ffmpeg-9656df79948afa1a3beaff2ff1071442ea5d4a4f.tar.gz |
Remove clip_table as it is not used anymore.
Patch by Diego 'Flameeyes' Pettenò (flameeyes gmail com)
Originally committed as revision 11468 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libpostproc/postprocess_internal.h')
-rw-r--r-- | libpostproc/postprocess_internal.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/libpostproc/postprocess_internal.h b/libpostproc/postprocess_internal.h index 922dbd8117..33768ba79b 100644 --- a/libpostproc/postprocess_internal.h +++ b/libpostproc/postprocess_internal.h @@ -76,17 +76,10 @@ //filters on //#define COMPILE_TIME_MODE 0x77 -#if 1 static inline int CLIP(int a){ if(a&256) return ((a)>>31)^(-1); else return a; } -//#define CLIP(a) (((a)&256) ? ((a)>>31)^(-1) : (a)) -#elif 0 -#define CLIP(a) clip_tab[a] -#else -#define CLIP(a) (a) -#endif /** * Postprocessng filter. */ |