# HG changeset patch # User diego # Date 1234202013 0 # Node ID 4f01aa9c448f625b705da189f5a002170f7e9e36 # Parent f26f60223e72a245abb825e199e18609bd087c87 Drop DECLARE_ALIGNED from extern declarations. It creates trouble when swscale_internal.h is #included without HAVE_AV_CONFIG_H defined. diff -r f26f60223e72 -r 4f01aa9c448f libswscale/swscale_internal.h --- 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;