comparison dnxhddec.c @ 11369:98970e51365a libavcodec

Remove DECLARE_ALIGNED_{8,16} macros These macros are redundant. All uses are replaced with the generic DECLARE_ALIGNED macro instead.
author mru
date Sat, 06 Mar 2010 14:24:59 +0000
parents 34a65026fa06
children 02f402b73d62
comparison
equal deleted inserted replaced
11368:3d4f64b8fb10 11369:98970e51365a
37 uint32_t mb_scan_index[68]; /* max for 1080p */ 37 uint32_t mb_scan_index[68]; /* max for 1080p */
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 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