diff options
| author | Nicolas Pennequin <nicolas.pennequin@free.fr> | 2007-08-14 11:56:13 +0000 |
|---|---|---|
| committer | Nicolas Pennequin <nicolas.pennequin@free.fr> | 2007-08-14 11:56:13 +0000 |
| commit | 6a92e475acbc0b34e0fc302f5bb25799e990bc6f (patch) | |
| tree | 29c6198673bc11f3482f7c6261c57664af3418c1 /apps/plugins/test_codec.c | |
| parent | 7b055ab665a66ee2d5a2cd047cd4519daa35fae5 (diff) | |
| download | rockbox-6a92e475acbc0b34e0fc302f5bb25799e990bc6f.zip rockbox-6a92e475acbc0b34e0fc302f5bb25799e990bc6f.tar.gz rockbox-6a92e475acbc0b34e0fc302f5bb25799e990bc6f.tar.bz2 rockbox-6a92e475acbc0b34e0fc302f5bb25799e990bc6f.tar.xz | |
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/plugins/test_codec.c')
| -rw-r--r-- | apps/plugins/test_codec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/test_codec.c b/apps/plugins/test_codec.c index 0e388ce..c29094b 100644 --- a/apps/plugins/test_codec.c +++ b/apps/plugins/test_codec.c @@ -536,7 +536,7 @@ static enum plugin_status test_track(char* filename) /* Clear the id3 struct */ rb->memset(&track.id3, 0, sizeof(struct mp3entry)); - if (!rb->get_metadata(&track, fd, filename, + if (!rb->get_metadata(&(track.id3), fd, filename, rb->global_settings->id3_v1_first)) { log_text("Cannot read metadata",true); |