summaryrefslogtreecommitdiffstats
path: root/libswscale
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-02-09 17:53:33 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-02-09 17:53:33 +0000
commit60ae9c589574c19a5cd59039f11845b6d62e74d3 (patch)
treec12ac69e452b5ffc96607e73ca751fa2cdac61e1 /libswscale
parenta93f56abeb087ac5543764e5ccd3348b10acb395 (diff)
downloadmpv-60ae9c589574c19a5cd59039f11845b6d62e74d3.tar.bz2
mpv-60ae9c589574c19a5cd59039f11845b6d62e74d3.tar.xz
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
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;