TagFile: rename exported functions, use CamelCase

And specify whether generic tags are being scanned.
This commit is contained in:
Max Kellermann
2018-07-06 22:33:35 +02:00
parent 2c30e16371
commit 73c95d1fb2
5 changed files with 11 additions and 10 deletions

View File

@@ -85,7 +85,7 @@ Song::UpdateFile(Storage &storage) noexcept
if (!tag_stream_scan(absolute_uri.c_str(), tag_builder))
return false;
} else {
if (!tag_file_scan(path_fs, tag_builder))
if (!ScanFileTagsWithGeneric(path_fs, tag_builder))
return false;
}
@@ -149,7 +149,7 @@ DetachedSong::LoadFile(Path path) noexcept
return false;
TagBuilder tag_builder;
if (!tag_file_scan(path, tag_builder))
if (!ScanFileTagsWithGeneric(path, tag_builder))
return false;
mtime = fi.GetModificationTime();