summaryrefslogtreecommitdiff
path: root/libswscale
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2009-02-09 17:53:33 +0000
committerDiego Biurrun <diego@biurrun.de>2009-02-09 17:53:33 +0000
commit43175f501076cee26334b2516aae5ba6dc8c424b (patch)
tree0e09f2869e9f09088c29c284c2157e486c62f4a1 /libswscale
parent990058bdc7a63f7a488179367b859307e99adf34 (diff)
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')
-rw-r--r--libswscale/swscale_internal.h4
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;