summaryrefslogtreecommitdiff
path: root/apps/plugins/mp3_encoder.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/mp3_encoder.c')
-rw-r--r--apps/plugins/mp3_encoder.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/mp3_encoder.c b/apps/plugins/mp3_encoder.c
index 9b5b8d70e9..da749b82c9 100644
--- a/apps/plugins/mp3_encoder.c
+++ b/apps/plugins/mp3_encoder.c
@@ -100,7 +100,7 @@ static short enc_data [SAMPL2] IBSS_ATTR; /* 1152 Bytes */
100static BF_Data CodedData IBSS_ATTR; /* 1056 Bytes */ 100static BF_Data CodedData IBSS_ATTR; /* 1056 Bytes */
101 101
102static const uint16_t sfBand[6][23] ICONST_ATTR; 102static const uint16_t sfBand[6][23] ICONST_ATTR;
103static const uint16_t const *scalefac ICONST_ATTR; 103static const uint16_t const *scalefac IBSS_ATTR;
104 104
105static const int16_t ca [8] ICONST_ATTR; /* 16 Bytes */ 105static const int16_t ca [8] ICONST_ATTR; /* 16 Bytes */
106static const uint16_t cs [8] ICONST_ATTR; /* 16 Bytes */ 106static const uint16_t cs [8] ICONST_ATTR; /* 16 Bytes */
@@ -360,7 +360,7 @@ static const uint8_t t8l[36] =
360static const uint8_t t9l[36] = 360static const uint8_t t9l[36] =
361{3,3,5,6,8,9,3,3,4,5,6,8,4,4,5,6,7,8,6,5,6,7,7,8,7,6,7,7,8,9,8,7,8,8,9,9}; 361{3,3,5,6,8,9,3,3,4,5,6,8,4,4,5,6,7,8,6,5,6,7,7,8,7,6,7,7,8,9,8,7,8,8,9,9};
362 362
363static const uint8_t t10[64] = 363static const uint8_t t10l[64] =
364{1,3,6,8,9,9,9,10,3,4,6,7,8,9,8,8,6,6,7,8,9,10,9,9,7,7,8,9,10,10,9,10,8,8,9,10, 364{1,3,6,8,9,9,9,10,3,4,6,7,8,9,8,8,6,6,7,8,9,10,9,9,7,7,8,9,10,10,9,10,8,8,9,10,
365 10,10,10,10,9,9,10,10,11,11,10,11,8,8,9,10,10,10,11,11,9,8,9,10,10,11,11,11}; 365 10,10,10,10,9,9,10,10,11,11,10,11,8,8,9,10,10,10,11,11,9,8,9,10,10,11,11,11};
366 366