From 4d34457cd0a1958ff271bb2d87bfdba1432b678e Mon Sep 17 00:00:00 2001 From: Steve Bavin Date: Tue, 2 Oct 2007 07:47:43 +0000 Subject: 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 --- apps/plugins/test_codec.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'apps/plugins/test_codec.c') diff --git a/apps/plugins/test_codec.c b/apps/plugins/test_codec.c index 4e67109..01166cc 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; -- cgit v1.1