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
This commit is contained in:
Michael Giacomelli 2011-05-04 17:29:53 +00:00
parent d6accacc60
commit 37a9a200b2
2 changed files with 3 additions and 2 deletions

View file

@ -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 {

View file

@ -593,6 +593,7 @@ Leif Andersen
Sergiu Rotaru
Noé Lojkine
Ophir Lojkine
Stephan Grossklass
The libmad team
The wavpack team