mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
Thanks to Nico_P, struct track_info can now be internal to playback.c
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14947 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
227181deb0
commit
4d34457cd0
3 changed files with 23 additions and 18 deletions
|
@ -94,7 +94,12 @@ static char str[MAX_PATH];
|
|||
/* Our local implementation of the codec API */
|
||||
static struct codec_api ci;
|
||||
|
||||
static struct track_info track;
|
||||
struct test_track_info {
|
||||
struct mp3entry id3; /* TAG metadata */
|
||||
size_t filesize; /* File total length */
|
||||
};
|
||||
|
||||
static struct test_track_info track;
|
||||
static bool taginfo_ready = true;
|
||||
|
||||
static volatile unsigned int elapsed;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue