summaryrefslogtreecommitdiff
path: root/lib/rbcodec/codecs
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rbcodec/codecs')
-rw-r--r--lib/rbcodec/codecs/mp3_enc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/rbcodec/codecs/mp3_enc.c b/lib/rbcodec/codecs/mp3_enc.c
index 45bc3892c5..030eda846e 100644
--- a/lib/rbcodec/codecs/mp3_enc.c
+++ b/lib/rbcodec/codecs/mp3_enc.c
@@ -96,7 +96,7 @@ typedef struct
96typedef struct 96typedef struct
97{ 97{
98 int bitpos; /* current bitpos for writing */ 98 int bitpos; /* current bitpos for writing */
99 uint32_t bbuf[263]; 99 uint32_t bbuf[362];
100} bf_data; 100} bf_data;
101 101
102struct huffcodetab 102struct huffcodetab
@@ -129,7 +129,7 @@ static int mdct_freq [576] IBSS_ATTR; /* 2304 Bytes */
129static char mdct_sign [576] IBSS_ATTR; /* 576 Bytes */ 129static char mdct_sign [576] IBSS_ATTR; /* 576 Bytes */
130static short enc_data [576] IBSS_ATTR; /* 1152 Bytes */ 130static short enc_data [576] IBSS_ATTR; /* 1152 Bytes */
131static uint32_t scalefac [22] IBSS_ATTR; /* 88 Bytes */ 131static uint32_t scalefac [22] IBSS_ATTR; /* 88 Bytes */
132static bf_data coded_data IBSS_ATTR; /* 1056 Bytes */ 132static bf_data coded_data IBSS_ATTR; /* 1448 Bytes */
133static uint8_t band_scale_f[22] IBSS_ATTR; /* 22 Bytes */ 133static uint8_t band_scale_f[22] IBSS_ATTR; /* 22 Bytes */
134 134
135#ifdef MP3_ENC_COP 135#ifdef MP3_ENC_COP