Originally committed as revision 21164 to svn://svn.ffmpeg.org/ffmpeg/trunk
| ... | ... |
@@ -533,8 +533,8 @@ static int dv_decode_video_segment(AVCodecContext *avctx, void *arg) |
| 533 | 533 |
GetBitContext gb; |
| 534 | 534 |
BlockInfo mb_data[5 * DV_MAX_BPM], *mb, *mb1; |
| 535 | 535 |
DECLARE_ALIGNED_16(DCTELEM, sblock[5*DV_MAX_BPM][64]); |
| 536 |
- uint8_t mb_bit_buffer[80 + 4]; /* allow some slack */ |
|
| 537 |
- uint8_t vs_bit_buffer[5 * 80 + 4]; /* allow some slack */ |
|
| 536 |
+ DECLARE_ALIGNED_16(uint8_t, mb_bit_buffer[80 + 4]); /* allow some slack */ |
|
| 537 |
+ DECLARE_ALIGNED_16(uint8_t, vs_bit_buffer[5 * 80 + 4]); /* allow some slack */ |
|
| 538 | 538 |
const int log2_blocksize = 3-s->avctx->lowres; |
| 539 | 539 |
int is_field_mode[5]; |
| 540 | 540 |
|