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/asv1.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/asv1.c')
-rw-r--r-- | libavcodec/asv1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/asv1.c b/libavcodec/asv1.c index 10fbac24bc..c9a3d24944 100644 --- a/libavcodec/asv1.c +++ b/libavcodec/asv1.c @@ -49,8 +49,8 @@ typedef struct ASV1Context{ int mb_width2; int mb_height2; DECLARE_ALIGNED_16(DCTELEM, block[6][64]); - DECLARE_ALIGNED_8(uint16_t, intra_matrix[64]); - DECLARE_ALIGNED_8(int, q_intra_matrix[64]); + uint16_t intra_matrix[64]; + int q_intra_matrix[64]; uint8_t *bitstream_buffer; unsigned int bitstream_buffer_size; } ASV1Context; |