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:
parent
ec73e790c8
commit
1dfa0e92dc
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue