comparison 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
comparison
equal deleted inserted replaced
10092:e85fbfe709d8 10093:beb616cf1885
38 int cur_field; ///< current interlaced field 38 int cur_field; ///< current interlaced field
39 VLC ac_vlc, dc_vlc, run_vlc; 39 VLC ac_vlc, dc_vlc, run_vlc;
40 int last_dc[3]; 40 int last_dc[3];
41 DSPContext dsp; 41 DSPContext dsp;
42 DECLARE_ALIGNED_16(DCTELEM, blocks[8][64]); 42 DECLARE_ALIGNED_16(DCTELEM, blocks[8][64]);
43 DECLARE_ALIGNED_8(ScanTable, scantable); 43 ScanTable scantable;
44 const CIDEntry *cid_table; 44 const CIDEntry *cid_table;
45 } DNXHDContext; 45 } DNXHDContext;
46 46
47 #define DNXHD_VLC_BITS 9 47 #define DNXHD_VLC_BITS 9
48 #define DNXHD_DC_VLC_BITS 7 48 #define DNXHD_DC_VLC_BITS 7