diff options
author | Måns Rullgård <mans@mansr.com> | 2008-03-17 23:44:46 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2008-03-17 23:44:46 +0000 |
commit | 6fcc9af0123abb25b82c43ef631e12069853d725 (patch) | |
tree | 73b2d4949d1248340f4fb9156d8a58610c2079e9 /libpostproc | |
parent | b55aa9a90446c3f6a549b82e0313b221f0fc31ed (diff) | |
download | ffmpeg-6fcc9af0123abb25b82c43ef631e12069853d725.tar.gz |
simplify ALIGN_MASK definition
Originally committed as revision 12483 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libpostproc')
-rw-r--r-- | libpostproc/postprocess_template.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/libpostproc/postprocess_template.c b/libpostproc/postprocess_template.c index 3904d4d4ab..74d8a5fc24 100644 --- a/libpostproc/postprocess_template.c +++ b/libpostproc/postprocess_template.c @@ -25,12 +25,7 @@ #include "x86_cpu.h" -#ifdef ARCH_X86_64 -# define ALIGN_MASK "$0xFFFFFFFFFFFFFFF8" -#else -# define ALIGN_MASK "$0xFFFFFFF8" -#endif - +#define ALIGN_MASK "$-8" #undef PAVGB #undef PMINUB |