tag_{ape,id3}: remove the _load() functions

Use _scan() instead, to have more control.
This commit is contained in:
Max Kellermann
2012-02-12 18:25:46 +01:00
parent ac3ad452c0
commit 4a23a4bfee
5 changed files with 6 additions and 84 deletions

View File

@@ -101,15 +101,3 @@ tag_ape_scan2(const char *path_fs,
return tag_ape_scan(path_fs, tag_ape_callback, &ctx);
}
struct tag *
tag_ape_load(const char *path_fs)
{
struct tag *tag = tag_new();
if (!tag_ape_scan2(path_fs, &add_tag_handler, tag)) {
tag_free(tag);
tag = NULL;
}
return tag;
}