summaryrefslogtreecommitdiff
path: root/apps/metadata
diff options
context:
space:
mode:
authorAndree Buschmann <AndreeBuschmann@t-online.de>2011-03-16 21:57:16 +0000
committerAndree Buschmann <AndreeBuschmann@t-online.de>2011-03-16 21:57:16 +0000
commit3706d6d0b5e672637dcc831aeb844dce4667ea65 (patch)
tree2d2a69f2ca09391ed067b5ceab78832f5670ab4a /apps/metadata
parentea61fb8023c13af4d882e750d38d23e5efb93169 (diff)
downloadrockbox-3706d6d0b5e672637dcc831aeb844dce4667ea65.tar.gz
rockbox-3706d6d0b5e672637dcc831aeb844dce4667ea65.zip
Hopefully fix red now and reduce binsize for HWCODEC targets. This change implements a local read_uint32be() function within the mp3data parser.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29606 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/metadata')
-rw-r--r--apps/metadata/metadata_common.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/apps/metadata/metadata_common.c b/apps/metadata/metadata_common.c
index bde48d423b..6c420d921f 100644
--- a/apps/metadata/metadata_common.c
+++ b/apps/metadata/metadata_common.c
@@ -213,7 +213,6 @@ unsigned long get_itunes_int32(char* value, int count)
213 return r; 213 return r;
214} 214}
215 215
216#if CONFIG_CODEC == SWCODEC
217/* Skip an ID3v2 tag if it can be found. We assume the tag is located at the 216/* Skip an ID3v2 tag if it can be found. We assume the tag is located at the
218 * start of the file, which should be true in all cases where we need to skip it. 217 * start of the file, which should be true in all cases where we need to skip it.
219 * Returns true if successfully skipped or not skipped, and false if 218 * Returns true if successfully skipped or not skipped, and false if
@@ -360,4 +359,3 @@ long parse_tag(const char* name, char* value, struct mp3entry* id3,
360 359
361 return len; 360 return len;
362} 361}
363#endif