Fix Vorbis Comment mapping for encoderSettings()

* The "Encoder settings" field should correspond to `ENCODER_OPTIONS`
  rather than `ENCODING`
* See https://github.com/Martchus/tageditor/issues/62
* See https://exiftool.org/TagNames/Vorbis.html
This commit is contained in:
Martchus 2021-01-29 21:38:59 +01:00
parent fd4c538180
commit 047d739918
1 changed files with 4 additions and 4 deletions

View File

@ -99,6 +99,10 @@ constexpr TAG_PARSER_EXPORT const char *encoder()
{
return "ENCODER";
}
constexpr TAG_PARSER_EXPORT const char *encoderSettings()
{
return "ENCODER_OPTIONS";
}
constexpr TAG_PARSER_EXPORT const char *publisher()
{
return "PUBLISHER";
@ -135,10 +139,6 @@ constexpr TAG_PARSER_EXPORT const char *comment()
{
return "COMMENT";
}
constexpr TAG_PARSER_EXPORT const char *encoderSettings()
{
return "ENCODING";
}
constexpr TAG_PARSER_EXPORT const char *date()
{
return "DATE";