FS#7361 by Rhino Tanga: Move the id3 tag buffer size into a #define
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13730 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
3f95ea53b0
commit
7a1108227b
2 changed files with 4 additions and 1 deletions
|
@ -300,6 +300,7 @@ Gerhard Dirschl
|
|||
Ivan Zupan
|
||||
Alexander Papst
|
||||
Christoph Reiter
|
||||
Rhino Banga
|
||||
The libmad team
|
||||
The wavpack team
|
||||
The ffmpeg team
|
||||
|
|
|
@ -23,6 +23,8 @@
|
|||
#include "config.h"
|
||||
#include "file.h"
|
||||
|
||||
#define ID3V2_BUF_SIZE 300
|
||||
|
||||
/* Audio file types. */
|
||||
/* NOTE: The values of the AFMT_* items are used for the %fc tag in the WPS
|
||||
- so new entries MUST be added to the end to maintain compatibility.
|
||||
|
@ -185,7 +187,7 @@ struct mp3entry {
|
|||
unsigned char toc[100]; /* table of contents */
|
||||
|
||||
/* these following two fields are used for local buffering */
|
||||
char id3v2buf[300];
|
||||
char id3v2buf[ID3V2_BUF_SIZE];
|
||||
char id3v1buf[4][92];
|
||||
|
||||
/* resume related */
|
||||
|
|
Loading…
Reference in a new issue