diff options
author | Janne Grunau <janne-libav@jannau.net> | 2012-02-09 20:27:12 +0100 |
---|---|---|
committer | Janne Grunau <janne-libav@jannau.net> | 2012-02-09 21:28:37 +0100 |
commit | 456d3e4fb5135c1a5e321cba7c538f9e7a6bdd36 (patch) | |
tree | a4ac23e2d194421a6fb9e97ec0f765bdee5f3667 /libavfilter | |
parent | 73e15e8e6b92a0b8cf3b34ae18220545c1a4e24a (diff) | |
download | ffmpeg-456d3e4fb5135c1a5e321cba7c538f9e7a6bdd36.tar.gz |
yadif: specify array size outside DECLARE_ALIGNED
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/x86/yadif_template.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavfilter/x86/yadif_template.c b/libavfilter/x86/yadif_template.c index e77de615cd..ffcc39eebc 100644 --- a/libavfilter/x86/yadif_template.c +++ b/libavfilter/x86/yadif_template.c @@ -107,10 +107,10 @@ void RENAME(ff_yadif_filter_line)(uint8_t *dst, uint8_t *prev, uint8_t *cur, uint8_t *next, int w, int prefs, int mrefs, int parity, int mode) { - DECLARE_ALIGNED(16, uint8_t, tmp0[16]); - DECLARE_ALIGNED(16, uint8_t, tmp1[16]); - DECLARE_ALIGNED(16, uint8_t, tmp2[16]); - DECLARE_ALIGNED(16, uint8_t, tmp3[16]); + DECLARE_ALIGNED(16, uint8_t, tmp0)[16]; + DECLARE_ALIGNED(16, uint8_t, tmp1)[16]; + DECLARE_ALIGNED(16, uint8_t, tmp2)[16]; + DECLARE_ALIGNED(16, uint8_t, tmp3)[16]; int x; #define FILTER\ |