tagparser/vorbis/vorbiscommentids.h

163 lines
2.9 KiB
C
Raw Normal View History

#ifndef TAG_PARSER_VORBISCOMMENTIDS_H
#define TAG_PARSER_VORBISCOMMENTIDS_H
2015-04-22 19:22:01 +02:00
2016-08-29 15:43:05 +02:00
#include "../global.h"
2015-04-22 19:22:01 +02:00
namespace TagParser {
2015-04-22 19:22:01 +02:00
/*!
* \brief Encapsulates Vorbis comment IDs.
*/
namespace VorbisCommentIds {
2018-03-07 01:17:50 +01:00
inline TAG_PARSER_EXPORT const char *trackNumber()
{
2015-04-22 19:22:01 +02:00
return "TRACKNUMBER";
}
2018-03-07 01:17:50 +01:00
inline TAG_PARSER_EXPORT const char *diskNumber()
{
2015-04-22 19:22:01 +02:00
return "DISCNUMBER";
}
2018-03-07 01:17:50 +01:00
inline TAG_PARSER_EXPORT const char *part()
{
2015-04-22 19:22:01 +02:00
return "PART";
}
2018-03-07 01:17:50 +01:00
inline TAG_PARSER_EXPORT const char *partNumber()
{
2015-04-22 19:22:01 +02:00
return "PARTNUMBER";
}
2018-03-07 01:17:50 +01:00
inline TAG_PARSER_EXPORT const char *title()
{
2015-04-22 19:22:01 +02:00
return "TITLE";
}
2018-03-07 01:17:50 +01:00
inline TAG_PARSER_EXPORT const char *version()
{
2015-04-22 19:22:01 +02:00
return "VERSION";
}
2018-03-07 01:17:50 +01:00
inline TAG_PARSER_EXPORT const char *artist()
{
2015-04-22 19:22:01 +02:00
return "ARTIST";
}
2018-03-07 01:17:50 +01:00
inline TAG_PARSER_EXPORT const char *album()
{
2015-04-22 19:22:01 +02:00
return "ALBUM";
}
2018-03-07 01:17:50 +01:00
inline TAG_PARSER_EXPORT const char *label()
{
2015-04-22 19:22:01 +02:00
return "LABEL";
}
2018-03-07 01:17:50 +01:00
inline TAG_PARSER_EXPORT const char *labelNo()
{
2015-04-22 19:22:01 +02:00
return "LABELNO";
}
2018-03-07 01:17:50 +01:00
inline TAG_PARSER_EXPORT const char *language()
{
2016-01-17 19:32:58 +01:00
return "LANGUAGE";
}
2018-03-07 01:17:50 +01:00
inline TAG_PARSER_EXPORT const char *performer()
{
2015-04-22 19:22:01 +02:00
return "PERFORMER";
}
2018-03-07 01:17:50 +01:00
inline TAG_PARSER_EXPORT const char *composer()
{
2015-04-22 19:22:01 +02:00
return "COMPOSER";
}
2018-03-07 01:17:50 +01:00
inline TAG_PARSER_EXPORT const char *ensemble()
{
2015-04-22 19:22:01 +02:00
return "ENSEMBLE";
}
2018-03-07 01:17:50 +01:00
inline TAG_PARSER_EXPORT const char *arranger()
{
2015-04-22 19:22:01 +02:00
return "ARRANGER";
}
2018-03-07 01:17:50 +01:00
inline TAG_PARSER_EXPORT const char *lyricist()
{
2015-04-22 19:22:01 +02:00
return "LYRICIST";
}
2018-03-07 01:17:50 +01:00
inline TAG_PARSER_EXPORT const char *author()
{
2015-04-22 19:22:01 +02:00
return "AUTHOR";
}
2018-03-07 01:17:50 +01:00
inline TAG_PARSER_EXPORT const char *conductor()
{
2015-04-22 19:22:01 +02:00
return "CONDUCTOR";
}
2018-03-07 01:17:50 +01:00
inline TAG_PARSER_EXPORT const char *encoder()
{
2016-03-22 22:52:36 +01:00
return "ENCODER";
2015-04-22 19:22:01 +02:00
}
2018-03-07 01:17:50 +01:00
inline TAG_PARSER_EXPORT const char *publisher()
{
2015-04-22 19:22:01 +02:00
return "PUBLISHER";
}
2018-03-07 01:17:50 +01:00
inline TAG_PARSER_EXPORT const char *genre()
{
2015-04-22 19:22:01 +02:00
return "GENRE";
}
2018-03-07 01:17:50 +01:00
inline TAG_PARSER_EXPORT const char *originalMediaType()
{
return "ORIGINAL_TAG_PARSER_TYPE";
2015-04-22 19:22:01 +02:00
}
2018-03-07 01:17:50 +01:00
inline TAG_PARSER_EXPORT const char *contentType()
{
2015-04-22 19:22:01 +02:00
return "CONTENT_TYPE";
}
2018-03-07 01:17:50 +01:00
inline TAG_PARSER_EXPORT const char *subject()
{
2015-04-22 19:22:01 +02:00
return "SUBJECT";
}
2018-03-07 01:17:50 +01:00
inline TAG_PARSER_EXPORT const char *description()
{
2015-04-22 19:22:01 +02:00
return "DESCRIPTION";
}
2018-03-07 01:17:50 +01:00
inline TAG_PARSER_EXPORT const char *isrc()
{
2015-04-22 19:22:01 +02:00
return "ISRC";
}
2018-03-07 01:17:50 +01:00
inline TAG_PARSER_EXPORT const char *eanupn()
{
2015-04-22 19:22:01 +02:00
return "EAN/UPN";
}
2018-03-07 01:17:50 +01:00
inline TAG_PARSER_EXPORT const char *comment()
{
2015-04-22 19:22:01 +02:00
return "COMMENT";
}
2018-03-07 01:17:50 +01:00
inline TAG_PARSER_EXPORT const char *encoderSettings()
{
2015-04-22 19:22:01 +02:00
return "ENCODING";
}
2018-03-07 01:17:50 +01:00
inline TAG_PARSER_EXPORT const char *date()
{
2015-04-22 19:22:01 +02:00
return "DATE";
}
2018-03-07 01:17:50 +01:00
inline TAG_PARSER_EXPORT const char *location()
{
2015-04-22 19:22:01 +02:00
return "LOCATION";
}
2018-03-07 01:17:50 +01:00
inline TAG_PARSER_EXPORT const char *license()
{
2015-04-22 19:22:01 +02:00
return "LICENSE";
}
2018-03-07 01:17:50 +01:00
inline TAG_PARSER_EXPORT const char *copyright()
{
2015-04-22 19:22:01 +02:00
return "COPYRIGHT";
}
2018-03-07 01:17:50 +01:00
inline TAG_PARSER_EXPORT const char *opus()
{
2015-04-22 19:22:01 +02:00
return "OPUS";
}
2018-03-07 01:17:50 +01:00
inline TAG_PARSER_EXPORT const char *sourceMedia()
{
2015-04-22 19:22:01 +02:00
return "SOURCEMEDIA";
}
2018-03-07 01:17:50 +01:00
inline TAG_PARSER_EXPORT const char *cover()
{
2015-04-22 19:22:01 +02:00
return "METADATA_BLOCK_PICTURE";
}
2018-03-07 01:17:50 +01:00
} // namespace VorbisCommentIds
2015-04-22 19:22:01 +02:00
2018-03-07 01:17:50 +01:00
} // namespace TagParser
2015-04-22 19:22:01 +02:00
#endif // TAG_PARSER_VORBISCOMMENTIDS_H