diff options
author | Max Kellermann <max@musicpd.org> | 2018-07-06 22:33:35 +0200 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2018-07-06 22:33:35 +0200 |
commit | 73c95d1fb2fd239fd172dbd170123ab85a511ae0 (patch) | |
tree | d4bd8671e59fbbb0b9c05c61b34e0a0e34ae8bcf /src/TagFile.hxx | |
parent | 2c30e1637152713f1e5473c553c8befb20c110ef (diff) |
TagFile: rename exported functions, use CamelCase
And specify whether generic tags are being scanned.
Diffstat (limited to 'src/TagFile.hxx')
-rw-r--r-- | src/TagFile.hxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/TagFile.hxx b/src/TagFile.hxx index 427c29c28..7f10d31ed 100644 --- a/src/TagFile.hxx +++ b/src/TagFile.hxx @@ -28,13 +28,14 @@ class TagBuilder; /** * Scan the tags of a song file. Invokes matching decoder plugins, - * but does not invoke the special "APE" and "ID3" scanners. + * but does not fall 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_file_scan(Path path, TagHandler &handler) noexcept; +ScanFileTagsNoGeneric(Path path, TagHandler &handler) noexcept; /** * Scan the tags of a song file. Invokes matching decoder plugins, @@ -45,6 +46,6 @@ tag_file_scan(Path path, TagHandler &handler) noexcept; * found) */ bool -tag_file_scan(Path path, TagBuilder &builder) noexcept; +ScanFileTagsWithGeneric(Path path, TagBuilder &builder) noexcept; #endif |