comparison 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
comparison
equal deleted inserted replaced
10092:e85fbfe709d8 10093:beb616cf1885
525 const uint8_t *buf_ptr; 525 const uint8_t *buf_ptr;
526 PutBitContext pb, vs_pb; 526 PutBitContext pb, vs_pb;
527 GetBitContext gb; 527 GetBitContext gb;
528 BlockInfo mb_data[5 * DV_MAX_BPM], *mb, *mb1; 528 BlockInfo mb_data[5 * DV_MAX_BPM], *mb, *mb1;
529 DECLARE_ALIGNED_16(DCTELEM, sblock[5*DV_MAX_BPM][64]); 529 DECLARE_ALIGNED_16(DCTELEM, sblock[5*DV_MAX_BPM][64]);
530 DECLARE_ALIGNED_8(uint8_t, mb_bit_buffer[80 + 4]); /* allow some slack */ 530 uint8_t mb_bit_buffer[80 + 4]; /* allow some slack */
531 DECLARE_ALIGNED_8(uint8_t, vs_bit_buffer[5 * 80 + 4]); /* allow some slack */ 531 uint8_t vs_bit_buffer[5 * 80 + 4]; /* allow some slack */
532 const int log2_blocksize = 3-s->avctx->lowres; 532 const int log2_blocksize = 3-s->avctx->lowres;
533 int is_field_mode[5]; 533 int is_field_mode[5];
534 534
535 assert((((int)mb_bit_buffer) & 7) == 0); 535 assert((((int)mb_bit_buffer) & 7) == 0);
536 assert((((int)vs_bit_buffer) & 7) == 0); 536 assert((((int)vs_bit_buffer) & 7) == 0);