diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-03-22 23:32:05 +0000 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-03-22 23:32:05 +0000 |
commit | 4d0e0a887efb69fcd9a21db83d169cf99de1892d (patch) | |
tree | f9b62f3db454f1f769569ee06b15aca25161e24b /src/libffmpeg/libavutil | |
parent | 47361c6f2681b09009a4ec07e36149047a99b3b9 (diff) | |
download | xine-lib-4d0e0a887efb69fcd9a21db83d169cf99de1892d.tar.gz xine-lib-4d0e0a887efb69fcd9a21db83d169cf99de1892d.tar.bz2 |
Instead of defining HAVE_ASMALIGN_POT during configure and then creating the macro ASMALIGN(ZEROBITS) in ffmpeg's code, define it directly at configure, this way it can be used for the planar postplugin, that will then build with Apple's AS.
CVS patchset: 8742
CVS date: 2007/03/22 23:32:05
Diffstat (limited to 'src/libffmpeg/libavutil')
-rw-r--r-- | src/libffmpeg/libavutil/common.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/libffmpeg/libavutil/common.h b/src/libffmpeg/libavutil/common.h index 0c77aa26a..0d4346048 100644 --- a/src/libffmpeg/libavutil/common.h +++ b/src/libffmpeg/libavutil/common.h @@ -357,13 +357,6 @@ void av_freep(void *ptr); # define always_inline #endif -/* xine: define ASMALIGN here since it's cleaner that generating it in the configure */ -#if HAVE_ASMALIGN_POT -# define ASMALIGN(ZEROBITS) ".align " #ZEROBITS "\n\t" -#else -# define ASMALIGN(ZEROBITS) ".align 1<<" #ZEROBITS "\n\t" -#endif - /* xine: another config.h with codecs to use */ #include "ffmpeg_config.h" |