Lines Matching refs:comment
25 const char* comment; in write_comments() local
33 if ((comment = sox_find_comment(ft->oob.comments, "Title"))) in write_comments()
34 p->id3tag_set_title(p->gfp, comment); in write_comments()
35 if ((comment = sox_find_comment(ft->oob.comments, "Artist"))) in write_comments()
36 p->id3tag_set_artist(p->gfp, comment); in write_comments()
37 if ((comment = sox_find_comment(ft->oob.comments, "Album"))) in write_comments()
38 p->id3tag_set_album(p->gfp, comment); in write_comments()
39 if ((comment = sox_find_comment(ft->oob.comments, "Tracknumber"))) in write_comments()
40 p->id3tag_set_track(p->gfp, comment); in write_comments()
41 if ((comment = sox_find_comment(ft->oob.comments, "Year"))) in write_comments()
42 p->id3tag_set_year(p->gfp, comment); in write_comments()
43 if ((comment = sox_find_comment(ft->oob.comments, "Comment"))) in write_comments()
44 p->id3tag_set_comment(p->gfp, comment); in write_comments()
45 if ((comment = sox_find_comment(ft->oob.comments, "Genre"))) in write_comments()
47 if (p->id3tag_set_genre(p->gfp, comment)) in write_comments()
48 lsx_warn("\"%s\" is not a recognized ID3v1 genre.", comment); in write_comments()
51 if ((comment = sox_find_comment(ft->oob.comments, "Discnumber"))) in write_comments()
53 char* id3tag_buf = lsx_malloc(strlen(comment) + 6); in write_comments()
56 sprintf(id3tag_buf, "TPOS=%s", comment); in write_comments()