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

@@ -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