summaryrefslogtreecommitdiff
path: root/apps/codecs/libm4a/m4a.h
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2007-12-01 01:01:35 +0000
committerDave Chapman <dave@dchapman.com>2007-12-01 01:01:35 +0000
commitaaacb7010fc247cfc9f16b2e3aee568f29089a22 (patch)
tree5270f80f3dbad56eba3a408bdc8b36ac7394722d /apps/codecs/libm4a/m4a.h
parent95c117cdb8b2db2e3b5520e9181443a7915463e7 (diff)
downloadrockbox-aaacb7010fc247cfc9f16b2e3aee568f29089a22.tar.gz
rockbox-aaacb7010fc247cfc9f16b2e3aee568f29089a22.zip
Remove the mallocs for the codecdata in the m4a parser and assume a maximum size of 64 bytes (see comments in source). Also clean up the alac_set_info() function a little and make it alignment-safe. We still need to remove the seektable related mallocs. Please report if any AAC or ALAC files stop playing in Rockbox after this commit - but it is not expected to cause problems.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15861 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libm4a/m4a.h')
-rw-r--r--apps/codecs/libm4a/m4a.h15
1 files changed, 14 insertions, 1 deletions
diff --git a/apps/codecs/libm4a/m4a.h b/apps/codecs/libm4a/m4a.h
index 401cff3b7a..a4d4dc0f79 100644
--- a/apps/codecs/libm4a/m4a.h
+++ b/apps/codecs/libm4a/m4a.h
@@ -23,6 +23,19 @@
23#include <codecs.h> 23#include <codecs.h>
24#include <inttypes.h> 24#include <inttypes.h>
25 25
26/* AAC codecdata appears to always be less than 8 bytes - see
27 AudioSpecificConfig2 in libfaad/mp4.c
28
29 ALAC codecdata appears to always be 44 bytes (see alac_set_info in
30 libalac/alac.c) but my test file contains 56 bytes.
31
32 So we go safe and round up to 64 bytes - if we find more than this,
33 we give an error (even though we could possibly continue), so we
34 can increase this buffer.
35*/
36
37#define MAX_CODECDATA_SIZE 64
38
26typedef struct { 39typedef struct {
27 struct codec_api* ci; 40 struct codec_api* ci;
28 int eof; 41 int eof;
@@ -57,7 +70,7 @@ typedef struct
57 uint32_t num_sample_byte_sizes; 70 uint32_t num_sample_byte_sizes;
58 71
59 uint32_t codecdata_len; 72 uint32_t codecdata_len;
60 void *codecdata; 73 uint8_t codecdata[MAX_CODECDATA_SIZE];
61 74
62 int mdat_offset; 75 int mdat_offset;
63 uint32_t mdat_len; 76 uint32_t mdat_len;