diff options
author | Jens Arnold <amiconn@rockbox.org> | 2010-03-09 20:02:27 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2010-03-09 20:02:27 +0000 |
commit | 1dfa0e92dc2a2579e4372ada8c33e2af486c344a (patch) | |
tree | c978a0458b65457cc9a46a59aaee7ec3b2365262 /apps/plugins | |
parent | ec73e790c8b2fa574493dfd3a20bebd1e4101193 (diff) |
Get rid of unnecessary alignment of struct member which also caused arm-elf-eabi-gcc to mess up parameter passing to mpeg2_idct_add().
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25092 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
-rw-r--r-- | apps/plugins/mpegplayer/mpeg2_internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/mpegplayer/mpeg2_internal.h b/apps/plugins/mpegplayer/mpeg2_internal.h index f8c9891ea6..e04562e18d 100644 --- a/apps/plugins/mpegplayer/mpeg2_internal.h +++ b/apps/plugins/mpegplayer/mpeg2_internal.h @@ -102,7 +102,7 @@ struct mpeg2_decoder_s int16_t dc_dct_pred[MPEG2_COMPONENTS]; /* DCT coefficients */ - int16_t * ATTR_ALIGN(16) DCTblock; /* put buffer separately to have it in IRAM */ + int16_t * DCTblock; /* put buffer separately to have it in IRAM */ uint8_t * picture_dest[MPEG2_COMPONENTS]; void (* convert) (void * convert_id, uint8_t * const * src, |