changeset 28463:4f01aa9c448f

Drop DECLARE_ALIGNED from extern declarations. It creates trouble when swscale_internal.h is #included without HAVE_AV_CONFIG_H defined.
author diego
date Mon, 09 Feb 2009 17:53:33 +0000
parents f26f60223e72
children 2db0844df6f0
files libswscale/swscale_internal.h
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/libswscale/swscale_internal.h	Mon Feb 09 15:43:51 2009 +0000
+++ b/libswscale/swscale_internal.h	Mon Feb 09 17:53:33 2009 +0000
@@ -309,8 +309,8 @@
     }
 }
 
-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;