TagArchive: remove obsolete overload

This commit is contained in:
Max Kellermann 2016-02-26 15:07:00 +01:00
parent a670ff6d3e
commit ed5058a363
2 changed files with 0 additions and 23 deletions

View File

@ -47,18 +47,6 @@ tag_archive_scan(Path path, const TagHandler &handler, void *handler_ctx)
return tag_stream_scan(*is, handler, handler_ctx);
}
bool
tag_archive_scan(Path path, TagBuilder &builder)
{
assert(!path.IsNull());
Mutex mutex;
Cond cond;
InputStreamPtr is(OpenArchiveInputStream(path, mutex, cond,
IgnoreError()));
return is && tag_stream_scan(*is, builder);
}
bool
tag_archive_scan(ArchiveFile &archive, const char *path_utf8,
TagBuilder &builder)

View File

@ -38,17 +38,6 @@ class TagBuilder;
bool
tag_archive_scan(Path path, const TagHandler &handler, void *handler_ctx);
/**
* Scan the tags of a song file inside an archive. Invokes matching
* decoder plugins, and falls back to generic scanners (APE and ID3)
* if no tags were found (but the file was recognized).
*
* @return true if the file was recognized (even if no metadata was
* found)
*/
bool
tag_archive_scan(Path path, TagBuilder &builder);
/**
* Scan the tags of a song file inside an archive. Invokes matching
* decoder plugins, and falls back to generic scanners (APE and ID3)