Commit ed5058a3 authored by Max Kellermann's avatar Max Kellermann

TagArchive: remove obsolete overload

parent a670ff6d
......@@ -48,18 +48,6 @@ tag_archive_scan(Path path, const TagHandler &handler, void *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)
{
......
......@@ -47,17 +47,6 @@ tag_archive_scan(Path path, const TagHandler &handler, void *handler_ctx);
* 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)
* 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(ArchiveFile &archive, const char *path_utf8,
TagBuilder &builder);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment