comparison bink.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 e820a9d3f80c
children 4532987cd74b
comparison
equal deleted inserted replaced
11368:3d4f64b8fb10 11369:98970e51365a
679 int i, j, bx, by; 679 int i, j, bx, by;
680 uint8_t *dst, *prev, *ref, *ref_start, *ref_end; 680 uint8_t *dst, *prev, *ref, *ref_start, *ref_end;
681 int v, col[2]; 681 int v, col[2];
682 const uint8_t *scan; 682 const uint8_t *scan;
683 int xoff, yoff; 683 int xoff, yoff;
684 DECLARE_ALIGNED_16(DCTELEM, block[64]); 684 DECLARE_ALIGNED(16, DCTELEM, block[64]);
685 DECLARE_ALIGNED_16(uint8_t, ublock[64]); 685 DECLARE_ALIGNED(16, uint8_t, ublock[64]);
686 int coordmap[64]; 686 int coordmap[64];
687 687
688 const int stride = c->pic.linesize[plane_idx]; 688 const int stride = c->pic.linesize[plane_idx];
689 int bw = is_chroma ? (c->avctx->width + 15) >> 4 : (c->avctx->width + 7) >> 3; 689 int bw = is_chroma ? (c->avctx->width + 15) >> 4 : (c->avctx->width + 7) >> 3;
690 int bh = is_chroma ? (c->avctx->height + 15) >> 4 : (c->avctx->height + 7) >> 3; 690 int bh = is_chroma ? (c->avctx->height + 15) >> 4 : (c->avctx->height + 7) >> 3;