From 84dc2d8afa1fce31c6fe97149ef70ba966500f65 Mon Sep 17 00:00:00 2001 From: Måns Rullgård Date: Sat, 6 Mar 2010 14:24:59 +0000 Subject: Remove DECLARE_ALIGNED_{8,16} macros These macros are redundant. All uses are replaced with the generic DECLARE_ALIGNED macro instead. Originally committed as revision 22233 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/vp56.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/vp56.h') diff --git a/libavcodec/vp56.h b/libavcodec/vp56.h index fab9d1d9d1..7f7938b347 100644 --- a/libavcodec/vp56.h +++ b/libavcodec/vp56.h @@ -121,7 +121,7 @@ struct vp56_context { /* blocks / macroblock */ VP56mb mb_type; VP56Macroblock *macroblocks; - DECLARE_ALIGNED_16(DCTELEM, block_coeff)[6][64]; + DECLARE_ALIGNED(16, DCTELEM, block_coeff)[6][64]; /* motion vectors */ VP56mv mv[6]; /* vectors for each block in MB */ -- cgit v1.2.3