summaryrefslogtreecommitdiff
path: root/apps/codecs/libatrac/atrac3.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/libatrac/atrac3.h')
-rw-r--r--apps/codecs/libatrac/atrac3.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/codecs/libatrac/atrac3.h b/apps/codecs/libatrac/atrac3.h
index afe582ab72..941bb6d2ad 100644
--- a/apps/codecs/libatrac/atrac3.h
+++ b/apps/codecs/libatrac/atrac3.h
@@ -61,13 +61,13 @@ typedef struct {
61 int32_t *spectrum; 61 int32_t *spectrum;
62 int32_t *IMDCT_buf; 62 int32_t *IMDCT_buf;
63 63
64 int32_t delayBuf1[46]; ///<qmf delay buffers 64 int32_t delayBuf1[46] MEM_ALIGN_ATTR; ///<qmf delay buffers
65 int32_t delayBuf2[46]; 65 int32_t delayBuf2[46] MEM_ALIGN_ATTR;
66 int32_t delayBuf3[46]; 66 int32_t delayBuf3[46] MEM_ALIGN_ATTR;
67} channel_unit; 67} channel_unit;
68 68
69typedef struct { 69typedef struct {
70 int32_t outSamples[2048]; 70 int32_t outSamples[2048] MEM_ALIGN_ATTR;
71 GetBitContext gb; 71 GetBitContext gb;
72 //@{ 72 //@{
73 /** stream data */ 73 /** stream data */
@@ -92,8 +92,8 @@ typedef struct {
92 //@} 92 //@}
93 //@{ 93 //@{
94 /** data buffers */ 94 /** data buffers */
95 uint8_t decoded_bytes_buffer[1024]; 95 uint8_t decoded_bytes_buffer[1024] MEM_ALIGN_ATTR;
96 int32_t tempBuf[1070]; 96 int32_t tempBuf[1070] MEM_ALIGN_ATTR;
97 //@} 97 //@}
98 //@{ 98 //@{
99 /** extradata */ 99 /** extradata */