diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-04-16 11:51:17 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-04-16 12:01:46 +0200 |
commit | fa1b2c8e188d96ea9de0b9dbe7a8833f9b84d501 (patch) | |
tree | f0c116f4ec6ffb8eea54e7dc2122d9019c9f3325 /libavcodec/ffv1.c | |
parent | 8dfb13ea59f87365f407dfe4fc196b50e3fad92b (diff) | |
download | ffmpeg-fa1b2c8e188d96ea9de0b9dbe7a8833f9b84d501.tar.gz |
ffv1: attempt to workaround intel CC fate issue.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/ffv1.c')
-rw-r--r-- | libavcodec/ffv1.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/ffv1.c b/libavcodec/ffv1.c index 37169594fa..0a9147a0f4 100644 --- a/libavcodec/ffv1.c +++ b/libavcodec/ffv1.c @@ -36,6 +36,11 @@ #include "libavutil/pixdesc.h" #include "libavutil/avassert.h" +#ifdef __INTEL_COMPILER +#undef av_flatten +#define av_flatten +#endif + #define MAX_PLANES 4 #define CONTEXT_SIZE 32 |