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:
parent
b98ac048df
commit
04c2df541b
1 changed files with 4 additions and 0 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue