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/mpegaudio.h | |
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/mpegaudio.h')
-rw-r--r-- | libavcodec/mpegaudio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpegaudio.h b/libavcodec/mpegaudio.h index 65a2283fba..cd10dbcfc0 100644 --- a/libavcodec/mpegaudio.h +++ b/libavcodec/mpegaudio.h @@ -108,7 +108,7 @@ typedef struct MPADecodeHeader { typedef struct MPADecodeContext { MPA_DECODE_HEADER - DECLARE_ALIGNED_8(uint8_t, last_buf[2*BACKSTEP_SIZE + EXTRABYTES]); + uint8_t last_buf[2*BACKSTEP_SIZE + EXTRABYTES]; int last_buf_size; /* next header (used in free format parsing) */ uint32_t free_format_next_header; |