1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-12 18:06:18 +00:00

Drop DECLARE_ALIGNED from extern declarations. It creates trouble when

swscale_internal.h is #included without HAVE_AV_CONFIG_H defined.


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28498 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2009-02-09 17:53:33 +00:00
parent a93f56abeb
commit 60ae9c5895

View File

@ -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;