1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Jens Arnold 2010-03-09 20:02:27 +00:00
parent ec73e790c8
commit 1dfa0e92dc

View file

@ -102,7 +102,7 @@ struct mpeg2_decoder_s
int16_t dc_dct_pred[MPEG2_COMPONENTS]; int16_t dc_dct_pred[MPEG2_COMPONENTS];
/* DCT coefficients */ /* 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]; uint8_t * picture_dest[MPEG2_COMPONENTS];
void (* convert) (void * convert_id, uint8_t * const * src, void (* convert) (void * convert_id, uint8_t * const * src,