diff options
author | Steve Bavin <pondlife@pondlife.me> | 2007-10-02 07:47:43 +0000 |
---|---|---|
committer | Steve Bavin <pondlife@pondlife.me> | 2007-10-02 07:47:43 +0000 |
commit | 4d34457cd0a1958ff271bb2d87bfdba1432b678e (patch) | |
tree | 74619bcbf25da3d5503e7d010776f92f75f5bbc7 /apps/plugins | |
parent | 227181deb0be5de2ddcf0d28f057f4175dc051b9 (diff) |
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
Diffstat (limited to 'apps/plugins')
-rw-r--r-- | apps/plugins/test_codec.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/apps/plugins/test_codec.c b/apps/plugins/test_codec.c index 4e671094c8..01166cc025 100644 --- a/apps/plugins/test_codec.c +++ b/apps/plugins/test_codec.c @@ -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; |