summaryrefslogtreecommitdiff
path: root/apps/codecs/flac.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/flac.c')
-rw-r--r--apps/codecs/flac.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/codecs/flac.c b/apps/codecs/flac.c
index 14ddd3cb05..c23611a50b 100644
--- a/apps/codecs/flac.c
+++ b/apps/codecs/flac.c
@@ -25,8 +25,8 @@
25CODEC_HEADER 25CODEC_HEADER
26 26
27/* The output buffers containing the decoded samples (channels 0 and 1) */ 27/* The output buffers containing the decoded samples (channels 0 and 1) */
28int32_t decoded0[MAX_BLOCKSIZE] IBSS_ATTR_FLAC_DECODED0; 28static int32_t decoded0[MAX_BLOCKSIZE] IBSS_ATTR_FLAC_DECODED0;
29int32_t decoded1[MAX_BLOCKSIZE] IBSS_ATTR; 29static int32_t decoded1[MAX_BLOCKSIZE] IBSS_ATTR;
30 30
31#define MAX_SUPPORTED_SEEKTABLE_SIZE 5000 31#define MAX_SUPPORTED_SEEKTABLE_SIZE 5000
32 32
@@ -65,8 +65,8 @@ struct FLACseekpoints {
65 uint16_t blocksize; 65 uint16_t blocksize;
66}; 66};
67 67
68struct FLACseekpoints seekpoints[MAX_SUPPORTED_SEEKTABLE_SIZE]; 68static struct FLACseekpoints seekpoints[MAX_SUPPORTED_SEEKTABLE_SIZE];
69int nseekpoints; 69static int nseekpoints;
70 70
71static int8_t *bit_buffer; 71static int8_t *bit_buffer;
72static size_t buff_size; 72static size_t buff_size;