Home
last modified time | relevance | path

Searched refs:VORBIS_TAG_LEN (Results 1 – 3 of 3) sorted by relevance

/dports/audio/flac123/flac123-0.0.12/
H A Dflac123.h33 #define VORBIS_TAG_LEN 30 macro
56 char title[VORBIS_TAG_LEN+1];
57 char artist[VORBIS_TAG_LEN+1];
58 char album[VORBIS_TAG_LEN+1]; /* +1 for \0 */
59 char genre[VORBIS_TAG_LEN+1];
60 char comment[VORBIS_TAG_LEN+1];
H A Dvorbiscomment.c74 local__vcentry_parse_value(&vc->comments[i], file_info.artist, VORBIS_TAG_LEN); in get_vorbis_comments()
79 local__vcentry_parse_value(&vc->comments[i], file_info.album, VORBIS_TAG_LEN); in get_vorbis_comments()
84 local__vcentry_parse_value(&vc->comments[i], file_info.title, VORBIS_TAG_LEN); in get_vorbis_comments()
89 local__vcentry_parse_value(&vc->comments[i], file_info.genre, VORBIS_TAG_LEN); in get_vorbis_comments()
94 local__vcentry_parse_value(&vc->comments[i], file_info.comment, VORBIS_TAG_LEN); in get_vorbis_comments()
H A Dflac123.c204 memset(file_info.title, ' ', VORBIS_TAG_LEN); in decoder_constructor()
205 file_info.title[VORBIS_TAG_LEN] = '\0'; in decoder_constructor()
206 memset(file_info.artist, ' ', VORBIS_TAG_LEN); in decoder_constructor()
207 file_info.artist[VORBIS_TAG_LEN] = '\0'; in decoder_constructor()
208 memset(file_info.album, ' ', VORBIS_TAG_LEN); in decoder_constructor()
209 file_info.album[VORBIS_TAG_LEN] = '\0'; in decoder_constructor()
210 memset(file_info.genre, ' ', VORBIS_TAG_LEN); in decoder_constructor()
211 file_info.genre[VORBIS_TAG_LEN] = '\0'; in decoder_constructor()
212 memset(file_info.comment, ' ', VORBIS_TAG_LEN); in decoder_constructor()
213 file_info.comment[VORBIS_TAG_LEN] = '\0'; in decoder_constructor()