Support longer tags on targets with 'enough' memory (more than 2 MB RAM).

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20927 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Magnus Holmgren 2009-05-13 17:23:02 +00:00
parent b98ac048df
commit 04c2df541b

View file

@ -147,7 +147,11 @@ struct afmt_entry
/* database of labels and codecs. add formats per above enum */
extern const struct afmt_entry audio_formats[AFMT_NUM_CODECS];
#if MEMORYSIZE > 2
#define ID3V2_BUF_SIZE 900
#else
#define ID3V2_BUF_SIZE 300
#endif
enum {
ID3_VER_1_0 = 1,