diff options
| author | Michael Giacomelli <giac2000@hotmail.com> | 2011-05-04 17:29:53 +0000 |
|---|---|---|
| committer | Michael Giacomelli <giac2000@hotmail.com> | 2011-05-04 17:29:53 +0000 |
| commit | 37a9a200b2ab93f02b8085e78aac91b8ff68419c (patch) | |
| tree | 42a73cc3e18ddff490135fa09063d3eed052e219 | |
| parent | d6accacc60342c8553d4f3cedb6bfa1729884c83 (diff) | |
| download | rockbox-37a9a200b2ab93f02b8085e78aac91b8ff68419c.zip rockbox-37a9a200b2ab93f02b8085e78aac91b8ff68419c.tar.gz rockbox-37a9a200b2ab93f02b8085e78aac91b8ff68419c.tar.bz2 rockbox-37a9a200b2ab93f02b8085e78aac91b8ff68419c.tar.xz | |
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.h | 4 | ||||
| -rw-r--r-- | docs/CREDITS | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/apps/metadata.h b/apps/metadata.h index b268a3d..3499e13 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 a7f9a37..c1a611e 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 |