Mercurial > libavcodec.hg
diff dv.c @ 10961:34a65026fa06 libavcodec
Move array specifiers outside DECLARE_ALIGNED() invocations
| author | mru |
|---|---|
| date | Fri, 22 Jan 2010 03:25:11 +0000 |
| parents | d1ddb9a28c47 |
| children | d464f498e19f |
line wrap: on
line diff
--- a/dv.c Fri Jan 22 01:59:17 2010 +0000 +++ b/dv.c Fri Jan 22 03:25:11 2010 +0000 @@ -532,9 +532,9 @@ PutBitContext pb, vs_pb; GetBitContext gb; BlockInfo mb_data[5 * DV_MAX_BPM], *mb, *mb1; - DECLARE_ALIGNED_16(DCTELEM, sblock[5*DV_MAX_BPM][64]); - DECLARE_ALIGNED_16(uint8_t, mb_bit_buffer[80 + 4]); /* allow some slack */ - DECLARE_ALIGNED_16(uint8_t, vs_bit_buffer[5 * 80 + 4]); /* allow some slack */ + DECLARE_ALIGNED_16(DCTELEM, sblock)[5*DV_MAX_BPM][64]; + DECLARE_ALIGNED_16(uint8_t, mb_bit_buffer)[80 + 4]; /* allow some slack */ + DECLARE_ALIGNED_16(uint8_t, vs_bit_buffer)[5 * 80 + 4]; /* allow some slack */ const int log2_blocksize = 3-s->avctx->lowres; int is_field_mode[5]; @@ -833,7 +833,7 @@ { const int *weight; const uint8_t* zigzag_scan; - DECLARE_ALIGNED_16(DCTELEM, blk[64]); + DECLARE_ALIGNED_16(DCTELEM, blk)[64]; int i, area; /* We offer two different methods for class number assignment: the method suggested in SMPTE 314M Table 22, and an improved
