diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-02-09 17:53:33 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-02-09 17:53:33 +0000 |
commit | 43175f501076cee26334b2516aae5ba6dc8c424b (patch) | |
tree | 0e09f2869e9f09088c29c284c2157e486c62f4a1 /libswscale/swscale_internal.h | |
parent | 990058bdc7a63f7a488179367b859307e99adf34 (diff) | |
download | ffmpeg-43175f501076cee26334b2516aae5ba6dc8c424b.tar.gz |
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
Diffstat (limited to 'libswscale/swscale_internal.h')
-rw-r--r-- | libswscale/swscale_internal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libswscale/swscale_internal.h b/libswscale/swscale_internal.h index ebd1fb5117..cf157428b3 100644 --- a/libswscale/swscale_internal.h +++ b/libswscale/swscale_internal.h @@ -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; |