[FFmpeg-cvslog] r19286 - trunk/libavutil/common.h
cehoyos
subversion
Sun Jun 28 20:28:27 CEST 2009
Author: cehoyos
Date: Sun Jun 28 20:28:27 2009
New Revision: 19286
Log:
Icc does not support attribute flatten, do not try to use it.
Modified:
trunk/libavutil/common.h
Modified: trunk/libavutil/common.h
==============================================================================
--- trunk/libavutil/common.h Sat Jun 27 15:26:35 2009 (r19285)
+++ trunk/libavutil/common.h Sun Jun 28 20:28:27 2009 (r19286)
@@ -82,7 +82,7 @@
#endif
#ifndef av_flatten
-#if AV_GCC_VERSION_AT_LEAST(4,1)
+#if (!defined(__ICC) || __ICC > 1110) && AV_GCC_VERSION_AT_LEAST(4,1)
# define av_flatten __attribute__((flatten))
#else
# define av_flatten
More information about the ffmpeg-cvslog
mailing list