diff dnxhddec.c @ 10093:beb616cf1885 libavcodec

Remove some unnecessary alignment specifiers None of these arrays are used in ways requiring extra alignment.
author mru
date Wed, 26 Aug 2009 12:12:40 +0000
parents 0dce4fe6e6f3
children 34a65026fa06
line wrap: on
line diff
--- a/dnxhddec.c	Wed Aug 26 11:31:37 2009 +0000
+++ b/dnxhddec.c	Wed Aug 26 12:12:40 2009 +0000
@@ -40,7 +40,7 @@
     int last_dc[3];
     DSPContext dsp;
     DECLARE_ALIGNED_16(DCTELEM, blocks[8][64]);
-    DECLARE_ALIGNED_8(ScanTable, scantable);
+    ScanTable scantable;
     const CIDEntry *cid_table;
 } DNXHDContext;