tagparser/vorbis/vorbiscommentids.h

127 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 {
2016-08-29 15:43:05 +02:00
inline TAG_PARSER_EXPORT const char *trackNumber() {
2015-04-22 19:22:01 +02:00
return "TRACKNUMBER";
}
2016-08-29 15:43:05 +02:00
inline TAG_PARSER_EXPORT const char *diskNumber() {
2015-04-22 19:22:01 +02:00
return "DISCNUMBER";
}
2016-08-29 15:43:05 +02:00
inline TAG_PARSER_EXPORT const char *part() {
2015-04-22 19:22:01 +02:00
return "PART";
}
2016-08-29 15:43:05 +02:00
inline TAG_PARSER_EXPORT const char *partNumber() {
2015-04-22 19:22:01 +02:00
return "PARTNUMBER";
}
2016-08-29 15:43:05 +02:00
inline TAG_PARSER_EXPORT const char *title() {
2015-04-22 19:22:01 +02:00
return "TITLE";
}
2016-08-29 15:43:05 +02:00
inline TAG_PARSER_EXPORT const char *version() {
2015-04-22 19:22:01 +02:00
return "VERSION";
}
2016-08-29 15:43:05 +02:00
inline TAG_PARSER_EXPORT const char *artist() {
2015-04-22 19:22:01 +02:00
return "ARTIST";
}
2016-08-29 15:43:05 +02:00
inline TAG_PARSER_EXPORT const char *album() {
2015-04-22 19:22:01 +02:00
return "ALBUM";
}
2016-08-29 15:43:05 +02:00
inline TAG_PARSER_EXPORT const char *label() {
2015-04-22 19:22:01 +02:00
return "LABEL";
}
2016-08-29 15:43:05 +02:00
inline TAG_PARSER_EXPORT const char *labelNo() {
2015-04-22 19:22:01 +02:00
return "LABELNO";
}
2016-08-29 15:43:05 +02:00
inline TAG_PARSER_EXPORT const char *language() {
2016-01-17 19:32:58 +01:00
return "LANGUAGE";
}
2016-08-29 15:43:05 +02:00
inline TAG_PARSER_EXPORT const char *performer() {
2015-04-22 19:22:01 +02:00
return "PERFORMER";
}
2016-08-29 15:43:05 +02:00
inline TAG_PARSER_EXPORT const char *composer() {
2015-04-22 19:22:01 +02:00
return "COMPOSER";
}
2016-08-29 15:43:05 +02:00
inline TAG_PARSER_EXPORT const char *ensemble() {
2015-04-22 19:22:01 +02:00
return "ENSEMBLE";
}
2016-08-29 15:43:05 +02:00
inline TAG_PARSER_EXPORT const char *arranger() {
2015-04-22 19:22:01 +02:00
return "ARRANGER";
}
2016-08-29 15:43:05 +02:00
inline TAG_PARSER_EXPORT const char *lyricist() {
2015-04-22 19:22:01 +02:00
return "LYRICIST";
}
2016-08-29 15:43:05 +02:00
inline TAG_PARSER_EXPORT const char *author() {
2015-04-22 19:22:01 +02:00
return "AUTHOR";
}
2016-08-29 15:43:05 +02:00
inline TAG_PARSER_EXPORT const char *conductor() {
2015-04-22 19:22:01 +02:00
return "CONDUCTOR";
}
2016-08-29 15:43:05 +02: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
}
2016-08-29 15:43:05 +02:00
inline TAG_PARSER_EXPORT const char *publisher() {
2015-04-22 19:22:01 +02:00
return "PUBLISHER";
}
2016-08-29 15:43:05 +02:00
inline TAG_PARSER_EXPORT const char *genre() {
2015-04-22 19:22:01 +02:00
return "GENRE";
}
2016-08-29 15:43:05 +02:00
inline TAG_PARSER_EXPORT const char *originalMediaType() {
return "ORIGINAL_TAG_PARSER_TYPE";
2015-04-22 19:22:01 +02:00
}
2016-08-29 15:43:05 +02:00
inline TAG_PARSER_EXPORT const char *contentType() {
2015-04-22 19:22:01 +02:00
return "CONTENT_TYPE";
}
2016-08-29 15:43:05 +02:00
inline TAG_PARSER_EXPORT const char *subject() {
2015-04-22 19:22:01 +02:00
return "SUBJECT";
}
2016-08-29 15:43:05 +02:00
inline TAG_PARSER_EXPORT const char *description() {
2015-04-22 19:22:01 +02:00
return "DESCRIPTION";
}
2016-08-29 15:43:05 +02:00
inline TAG_PARSER_EXPORT const char *isrc() {
2015-04-22 19:22:01 +02:00
return "ISRC";
}
2016-08-29 15:43:05 +02:00
inline TAG_PARSER_EXPORT const char *eanupn() {
2015-04-22 19:22:01 +02:00
return "EAN/UPN";
}
2016-08-29 15:43:05 +02:00
inline TAG_PARSER_EXPORT const char *comment() {
2015-04-22 19:22:01 +02:00
return "COMMENT";
}
2016-08-29 15:43:05 +02:00
inline TAG_PARSER_EXPORT const char *encoderSettings() {
2015-04-22 19:22:01 +02:00
return "ENCODING";
}
2016-08-29 15:43:05 +02:00
inline TAG_PARSER_EXPORT const char *date() {
2015-04-22 19:22:01 +02:00
return "DATE";
}
2016-08-29 15:43:05 +02:00
inline TAG_PARSER_EXPORT const char *location() {
2015-04-22 19:22:01 +02:00
return "LOCATION";
}
2016-08-29 15:43:05 +02:00
inline TAG_PARSER_EXPORT const char *license() {
2015-04-22 19:22:01 +02:00
return "LICENSE";
}
2016-08-29 15:43:05 +02:00
inline TAG_PARSER_EXPORT const char *copyright() {
2015-04-22 19:22:01 +02:00
return "COPYRIGHT";
}
2016-08-29 15:43:05 +02:00
inline TAG_PARSER_EXPORT const char *opus() {
2015-04-22 19:22:01 +02:00
return "OPUS";
}
2016-08-29 15:43:05 +02:00
inline TAG_PARSER_EXPORT const char *sourceMedia() {
2015-04-22 19:22:01 +02:00
return "SOURCEMEDIA";
}
2016-08-29 15:43:05 +02:00
inline TAG_PARSER_EXPORT const char *cover() {
2015-04-22 19:22:01 +02:00
return "METADATA_BLOCK_PICTURE";
}
}
}
#endif // TAG_PARSER_VORBISCOMMENTIDS_H