summaryrefslogtreecommitdiff
path: root/apps/codecs/libmad/frame.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/libmad/frame.h')
-rw-r--r--apps/codecs/libmad/frame.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/codecs/libmad/frame.h b/apps/codecs/libmad/frame.h
index f96a310089..a585b950d6 100644
--- a/apps/codecs/libmad/frame.h
+++ b/apps/codecs/libmad/frame.h
@@ -70,12 +70,12 @@ struct mad_frame {
struct mad_header header; /* MPEG audio header */
int options; /* decoding options (from stream) */
- mad_fixed_t (*sbsample)[2][36][32]; /* synthesis subband filter samples */
- mad_fixed_t (*sbsample_prev)[2][36][32]; /* synthesis subband filter samples
+ mad_fixed_t (*sbsample)[2][36][32] MEM_ALIGN_ATTR; /* synthesis subband filter samples */
+ mad_fixed_t (*sbsample_prev)[2][36][32] MEM_ALIGN_ATTR; /* synthesis subband filter samples
from previous frame only needed
when synthesis is on cop */
- mad_fixed_t (*overlap)[2][32][18]; /* Layer III block overlap data */
+ mad_fixed_t (*overlap)[2][32][18] MEM_ALIGN_ATTR; /* Layer III block overlap data */
};
# define MAD_NCHANNELS(header) ((header)->mode ? 2 : 1)