summaryrefslogtreecommitdiff
path: root/apps/plugin.h
diff options
context:
space:
mode:
authorNicolas Pennequin <nicolas.pennequin@free.fr>2007-08-14 11:56:13 +0000
committerNicolas Pennequin <nicolas.pennequin@free.fr>2007-08-14 11:56:13 +0000
commit6a92e475acbc0b34e0fc302f5bb25799e990bc6f (patch)
tree29c6198673bc11f3482f7c6261c57664af3418c1 /apps/plugin.h
parent7b055ab665a66ee2d5a2cd047cd4519daa35fae5 (diff)
Make get_metadata act on a struct mp3entry rather than a struct track_info.
This should make it easy to use a buffer handle to put the ID3 data in. The changes in get_metadata are mostly search and replace. The only thing it actually used to do on the struct track_info was set taginfo_ready to true. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14326 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.h')
-rw-r--r--apps/plugin.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugin.h b/apps/plugin.h
index b446f62421..3623be0b5a 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -620,7 +620,7 @@ struct plugin_api {
int (*codec_load_file)(const char* codec, struct codec_api *api);
const char *(*get_codec_filename)(int cod_spec);
- bool (*get_metadata)(struct track_info* track, int fd, const char* trackname,
+ bool (*get_metadata)(struct mp3entry* id3, int fd, const char* trackname,
bool v1first);
#endif
void (*led)(bool on);