summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Giacomelli <giac2000@hotmail.com>2011-05-04 17:29:53 +0000
committerMichael Giacomelli <giac2000@hotmail.com>2011-05-04 17:29:53 +0000
commit37a9a200b2ab93f02b8085e78aac91b8ff68419c (patch)
tree42a73cc3e18ddff490135fa09063d3eed052e219
parentd6accacc60342c8553d4f3cedb6bfa1729884c83 (diff)
Commit FS#12096 by Stephan Grossklass. Increases the maximum ID3v2 field length to 240 bytes on large memory targets, and 90 bytes on low memory targets. Total bytes for all tags combined remains unchanged.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29821 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/metadata.h4
-rw-r--r--docs/CREDITS1
2 files changed, 3 insertions, 2 deletions
diff --git a/apps/metadata.h b/apps/metadata.h
index b268a3d474..3499e13f47 100644
--- a/apps/metadata.h
+++ b/apps/metadata.h
@@ -176,10 +176,10 @@ extern const struct afmt_entry audio_formats[AFMT_NUM_CODECS];
#if MEMORYSIZE > 2
#define ID3V2_BUF_SIZE 900
-#define ID3V2_MAX_ITEM_SIZE 120
+#define ID3V2_MAX_ITEM_SIZE 240
#else
#define ID3V2_BUF_SIZE 300
-#define ID3V2_MAX_ITEM_SIZE 60
+#define ID3V2_MAX_ITEM_SIZE 90
#endif
enum {
diff --git a/docs/CREDITS b/docs/CREDITS
index a7f9a37676..c1a611e84c 100644
--- a/docs/CREDITS
+++ b/docs/CREDITS
@@ -593,6 +593,7 @@ Leif Andersen
Sergiu Rotaru
NoƩ Lojkine
Ophir Lojkine
+Stephan Grossklass
The libmad team
The wavpack team