mpg123_text

Sub data structure for ID3v2, for storing various text fields (including comments). * This is for ID3v2 COMM, TXXX and all the other text fields. * Only COMM and TXXX have a description, only COMM and USLT have a language. * You should consult the ID3v2 specification for the use of the various text fields ("frames" in ID3v2 documentation, I use "fields" here to separate from MPEG frames).

extern (C)
struct mpg123_text {
char[3] lang;
}

Members

Variables

description
mpg123_string description;

< The ID3v2 text field id, like TALB, TPE2, ... (4 characters, no string termination).

id
char[4] id;

< Three-letter language code (not terminated).

text
mpg123_string text;

< Empty for the generic comment...

Meta