summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2010-03-09 20:02:27 +0000
committerJens Arnold <amiconn@rockbox.org>2010-03-09 20:02:27 +0000
commit1dfa0e92dc2a2579e4372ada8c33e2af486c344a (patch)
treec978a0458b65457cc9a46a59aaee7ec3b2365262 /apps
parentec73e790c8b2fa574493dfd3a20bebd1e4101193 (diff)
downloadrockbox-1dfa0e92dc2a2579e4372ada8c33e2af486c344a.tar.gz
rockbox-1dfa0e92dc2a2579e4372ada8c33e2af486c344a.zip
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')
-rw-r--r--apps/plugins/mpegplayer/mpeg2_internal.h2
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
102 int16_t dc_dct_pred[MPEG2_COMPONENTS]; 102 int16_t dc_dct_pred[MPEG2_COMPONENTS];
103 103
104 /* DCT coefficients */ 104 /* DCT coefficients */
105 int16_t * ATTR_ALIGN(16) DCTblock; /* put buffer separately to have it in IRAM */ 105 int16_t * DCTblock; /* put buffer separately to have it in IRAM */
106 106
107 uint8_t * picture_dest[MPEG2_COMPONENTS]; 107 uint8_t * picture_dest[MPEG2_COMPONENTS];
108 void (* convert) (void * convert_id, uint8_t * const * src, 108 void (* convert) (void * convert_id, uint8_t * const * src,