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)
downloadrockbox-37a9a200b2ab93f02b8085e78aac91b8ff68419c.tar.gz
rockbox-37a9a200b2ab93f02b8085e78aac91b8ff68419c.zip
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];
176 176
177#if MEMORYSIZE > 2 177#if MEMORYSIZE > 2
178#define ID3V2_BUF_SIZE 900 178#define ID3V2_BUF_SIZE 900
179#define ID3V2_MAX_ITEM_SIZE 120 179#define ID3V2_MAX_ITEM_SIZE 240
180#else 180#else
181#define ID3V2_BUF_SIZE 300 181#define ID3V2_BUF_SIZE 300
182#define ID3V2_MAX_ITEM_SIZE 60 182#define ID3V2_MAX_ITEM_SIZE 90
183#endif 183#endif
184 184
185enum { 185enum {
diff --git a/docs/CREDITS b/docs/CREDITS
index a7f9a37676..c1a611e84c 100644
--- a/docs/CREDITS
+++ b/docs/CREDITS
@@ -593,6 +593,7 @@ Leif Andersen
593Sergiu Rotaru 593Sergiu Rotaru
594Noé Lojkine 594Noé Lojkine
595Ophir Lojkine 595Ophir Lojkine
596Stephan Grossklass
596 597
597The libmad team 598The libmad team
598The wavpack team 599The wavpack team