Commit 43175f50 authored by Diego Biurrun's avatar Diego Biurrun

Drop DECLARE_ALIGNED from extern declarations. It creates trouble when

swscale_internal.h is #included without HAVE_AV_CONFIG_H defined.

Originally committed as revision 28498 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
parent 990058bd
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment