summaryrefslogtreecommitdiff
path: root/apps/codecs/liba52/parse.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/liba52/parse.c')
-rw-r--r--apps/codecs/liba52/parse.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/codecs/liba52/parse.c b/apps/codecs/liba52/parse.c
index 9e7ed47d56..18fb901699 100644
--- a/apps/codecs/liba52/parse.c
+++ b/apps/codecs/liba52/parse.c
@@ -48,8 +48,8 @@ typedef struct {
48 int q4_ptr; 48 int q4_ptr;
49} quantizer_set_t; 49} quantizer_set_t;
50 50
51static a52_state_t istate IDATA_ATTR; 51static a52_state_t istate IBSS_ATTR;
52static sample_t isamples[256*12] IDATA_ATTR; 52static sample_t isamples[256*12] IBSS_ATTR;
53 53
54static uint8_t halfrate[12] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3}; 54static uint8_t halfrate[12] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3};
55 55