diff options
author | Måns Rullgård <mans@mansr.com> | 2009-08-26 12:12:40 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2009-08-26 12:12:40 +0000 |
commit | 20e7c8ae0a7f06c9d525a61ef1b7ac39756b1a44 (patch) | |
tree | b3d41f794961bef1b129cb9613dcebcd7059e6d0 /libavcodec/dnxhddec.c | |
parent | 4a3178b0127e649a507c2d3b45fa16865ad93580 (diff) | |
download | ffmpeg-20e7c8ae0a7f06c9d525a61ef1b7ac39756b1a44.tar.gz |
Remove some unnecessary alignment specifiers
None of these arrays are used in ways requiring extra alignment.
Originally committed as revision 19715 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dnxhddec.c')
-rw-r--r-- | libavcodec/dnxhddec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dnxhddec.c b/libavcodec/dnxhddec.c index ed349d2b64..25ccd13b10 100644 --- a/libavcodec/dnxhddec.c +++ b/libavcodec/dnxhddec.c @@ -40,7 +40,7 @@ typedef struct { 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; |