]> git.sesse.net Git - ffmpeg/commitdiff
Remove some unnecessary alignment specifiers
authorMåns Rullgård <mans@mansr.com>
Wed, 26 Aug 2009 12:12:40 +0000 (12:12 +0000)
committerMåns Rullgård <mans@mansr.com>
Wed, 26 Aug 2009 12:12:40 +0000 (12:12 +0000)
None of these arrays are used in ways requiring extra alignment.

Originally committed as revision 19715 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/asv1.c
libavcodec/dnxhddec.c
libavcodec/dv.c
libavcodec/mpegaudio.h

index 10fbac24bcafcb47aefed4fb226005facd0d0d94..c9a3d24944814e80e017e11bfd0bdb66fe5a7c64 100644 (file)
@@ -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;
index ed349d2b64a824ef10755ca1afaeca655416cc5a..25ccd13b107077adb8e7df9141ffc2e90033dc98 100644 (file)
@@ -40,7 +40,7 @@ typedef struct {
     int last_dc[3];
     DSPContext dsp;
     DECLARE_ALIGNED_16(DCTELEM, blocks[8][64]);
-    DECLARE_ALIGNED_8(ScanTable, scantable);
+    ScanTable scantable;
     const CIDEntry *cid_table;
 } DNXHDContext;
 
index 96d8c39489cc030d27c0c25156aae8d6f8f56784..95b2b798dc2b7b3c8ba4a773ede5d35dbe9ae5a1 100644 (file)
@@ -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];
 
index 65a2283fba76a5f2b630c16c577ad4086c845d38..cd10dbcfc077127bb32b0e6a00e98fedc09cf045 100644 (file)
@@ -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;