summaryrefslogtreecommitdiffstats
path: root/apps/codecs
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs')
-rw-r--r--apps/codecs/cook.c2
-rw-r--r--apps/codecs/librm/rm.h2
-rw-r--r--apps/codecs/raac.c4
3 files changed, 4 insertions, 4 deletions
diff --git a/apps/codecs/cook.c b/apps/codecs/cook.c
index ec30b3e6bc..c9039a480c 100644
--- a/apps/codecs/cook.c
+++ b/apps/codecs/cook.c
@@ -24,8 +24,6 @@
#include "inttypes.h"
#include "libcook/cook.h"
-#define DATA_HEADER_SIZE 18 /* size of DATA chunk header in a rm file */
-
CODEC_HEADER
RMContext rmctx;
diff --git a/apps/codecs/librm/rm.h b/apps/codecs/librm/rm.h
index cd59cffc55..12e9b18fa3 100644
--- a/apps/codecs/librm/rm.h
+++ b/apps/codecs/librm/rm.h
@@ -25,6 +25,8 @@
#include <inttypes.h>
#define MAX_EXTRADATA_SIZE 16
+#define DATA_HEADER_SIZE 18
+#define PACKET_HEADER_SIZE 12
enum codecs{CODEC_COOK, CODEC_AAC};
typedef struct rm_packet
diff --git a/apps/codecs/raac.c b/apps/codecs/raac.c
index cfc5b4a460..db113b3494 100644
--- a/apps/codecs/raac.c
+++ b/apps/codecs/raac.c
@@ -5,7 +5,7 @@
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
* \/ \/ \/ \/ \/
- * $Id: aac.c 19743 2009-01-10 21:10:56Z zagor $
+ * $Id:$
*
* Copyright (C) 2009 Mohamed Tarek
*
@@ -27,7 +27,7 @@
#include "libfaad/output.h"
CODEC_HEADER
-#define DATA_HEADER_SIZE 18
+
static void init_rm(RMContext *rmctx)
{
memcpy(rmctx, (void*)(( (intptr_t)ci->id3->id3v2buf + 3 ) &~ 3), sizeof(RMContext));