diff options
author | Måns Rullgård <mans@mansr.com> | 2009-08-26 12:12:40 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2009-08-26 12:12:40 +0000 |
commit | 20e7c8ae0a7f06c9d525a61ef1b7ac39756b1a44 (patch) | |
tree | b3d41f794961bef1b129cb9613dcebcd7059e6d0 /libavcodec/dv.c | |
parent | 4a3178b0127e649a507c2d3b45fa16865ad93580 (diff) | |
download | ffmpeg-20e7c8ae0a7f06c9d525a61ef1b7ac39756b1a44.tar.gz |
Remove some unnecessary alignment specifiers
None of these arrays are used in ways requiring extra alignment.
Originally committed as revision 19715 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dv.c')
-rw-r--r-- | libavcodec/dv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/dv.c b/libavcodec/dv.c index 96d8c39489..95b2b798dc 100644 --- a/libavcodec/dv.c +++ b/libavcodec/dv.c @@ -527,8 +527,8 @@ static int dv_decode_video_segment(AVCodecContext *avctx, void *arg) 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]; |