summaryrefslogtreecommitdiff
path: root/apps/codecs/libatrac/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/libatrac/main.c')
-rw-r--r--apps/codecs/libatrac/main.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/codecs/libatrac/main.c b/apps/codecs/libatrac/main.c
index 826dacf819..e0a3f8507d 100644
--- a/apps/codecs/libatrac/main.c
+++ b/apps/codecs/libatrac/main.c
@@ -9,6 +9,8 @@
9#include "atrac3.h" 9#include "atrac3.h"
10#include "../librm/rm.h" 10#include "../librm/rm.h"
11 11
12ATRAC3Context q IBSS_ATTR;
13
12static unsigned char wav_header[44]={ 14static unsigned char wav_header[44]={
13 'R','I','F','F',// 0 - ChunkID 15 'R','I','F','F',// 0 - ChunkID
14 0,0,0,0, // 4 - ChunkSize (filesize-8) 16 0,0,0,0, // 4 - ChunkSize (filesize-8)
@@ -101,7 +103,6 @@ int main(int argc, char *argv[])
101 int16_t outbuf[2048]; 103 int16_t outbuf[2048];
102 uint16_t fs,sps,h; 104 uint16_t fs,sps,h;
103 uint32_t packet_count; 105 uint32_t packet_count;
104 ATRAC3Context q;
105 RMContext rmctx; 106 RMContext rmctx;
106 RMPacket pkt; 107 RMPacket pkt;
107 108