[FFmpeg-cvslog] r28498 - trunk/libswscale/swscale_internal.h

diego subversion
Mon Feb 9 18:53:34 CET 2009


Author: diego
Date: Mon Feb  9 18:53:33 2009
New Revision: 28498

Log:
Drop DECLARE_ALIGNED from extern declarations.  It creates trouble when
swscale_internal.h is #included without HAVE_AV_CONFIG_H defined.

Modified:
   trunk/libswscale/swscale_internal.h

Modified: trunk/libswscale/swscale_internal.h
==============================================================================
--- trunk/libswscale/swscale_internal.h	Mon Feb  9 16:43:51 2009	(r28497)
+++ trunk/libswscale/swscale_internal.h	Mon Feb  9 18:53:33 2009	(r28498)
@@ -309,8 +309,8 @@ static inline int fmt_depth(int fmt)
     }
 }
 
-extern const DECLARE_ALIGNED(8, uint64_t, ff_dither4[2]);
-extern const DECLARE_ALIGNED(8, uint64_t, ff_dither8[2]);
+extern const uint64_t ff_dither4[2];
+extern const uint64_t ff_dither8[2];
 
 extern const AVClass sws_context_class;
 




More information about the ffmpeg-cvslog mailing list