Mercurial > libavcodec.hg
diff dv.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 | ff2358195bc7 |
children | 38cfe222e1a4 |
line wrap: on
line diff
--- a/dv.c Wed Aug 26 11:31:37 2009 +0000 +++ b/dv.c Wed Aug 26 12:12:40 2009 +0000 @@ -527,8 +527,8 @@ GetBitContext gb; BlockInfo mb_data[5 * DV_MAX_BPM], *mb, *mb1; DECLARE_ALIGNED_16(DCTELEM, sblock[5*DV_MAX_BPM][64]); - DECLARE_ALIGNED_8(uint8_t, mb_bit_buffer[80 + 4]); /* allow some slack */ - DECLARE_ALIGNED_8(uint8_t, vs_bit_buffer[5 * 80 + 4]); /* allow some slack */ + uint8_t mb_bit_buffer[80 + 4]; /* allow some slack */ + uint8_t vs_bit_buffer[5 * 80 + 4]; /* allow some slack */ const int log2_blocksize = 3-s->avctx->lowres; int is_field_mode[5];