Lines Matching refs:comments

311   text = sox_find_comment(f->ft->oob.comments, "Comment");  in play_file_info()
313 text = sox_find_comment(f->ft->oob.comments, "Description"); in play_file_info()
315 text = sox_find_comment(f->ft->oob.comments, "Year"); in play_file_info()
322 text = sox_find_comment(f->ft->oob.comments, "Tracknumber"); in play_file_info()
325 text = sox_find_comment(f->ft->oob.comments, "Tracktotal"); in play_file_info()
333 text = sox_find_comment(f->ft->oob.comments, "Album"); in play_file_info()
344 text = sox_find_comment(f->ft->oob.comments, "Artist"); in play_file_info()
350 text = sox_find_comment(f->ft->oob.comments, "Title"); in play_file_info()
428 if (!(ft->handler.flags & SOX_FILE_DEVICE) && ft->oob.comments) { in display_file_info()
429 if (sox_num_comments(ft->oob.comments) > 1) { in display_file_info()
430 sox_comments_t p = ft->oob.comments; in display_file_info()
435 else fprintf(output, "Comment : '%s'\n", ft->oob.comments[0]); in display_file_info()
1467 sox_comments_t p = ofile->oob.comments; in open_output_file()
1475 oob.comments = sox_copy_comments(files[0]->ft->oob.comments); in open_output_file()
1477 if (!oob.comments && !p) in open_output_file()
1478 sox_append_comment(&oob.comments, "Processed by SoX"); in open_output_file()
1481 sox_delete_comments(&oob.comments); in open_output_file()
1485 sox_append_comment(&oob.comments, *p++); in open_output_file()
1503 sox_delete_comments(&oob.comments); in open_output_file()
2112 static void read_comment_file(sox_comments_t * comments, char const * const filename) in read_comment_file() argument
2137 sox_append_comment(comments, text); in read_comment_file()
2282 sox_append_comment(&f->oob.comments, optstate.arg); in parse_gopts_and_fopts()
2299 sox_append_comment(&f->oob.comments, ""); in parse_gopts_and_fopts()
2300 read_comment_file(&f->oob.comments, optstate.arg); in parse_gopts_and_fopts()
2304 sox_append_comment(&f->oob.comments, ""); in parse_gopts_and_fopts()
2306 sox_append_comment(&f->oob.comments, optstate.arg); in parse_gopts_and_fopts()
2697 case Annotation: if (ft->oob.comments) { in soxi1()
2698 sox_comments_t p = ft->oob.comments; in soxi1()
2792 static void set_replay_gain(sox_comments_t comments, file_t * f) in set_replay_gain() argument
2796 size_t i, n = sox_num_comments(comments); in set_replay_gain()
2802 if (strncasecmp(comments[i], target, strlen(target)) == 0) { in set_replay_gain()
2803 f->replay_gain = atof(comments[i] + strlen(target)); in set_replay_gain()
2893 if (files[i]->oob.comments != NULL) in main()
2939 sox_find_comment(files[0]->ft->oob.comments, "artist"), in main()
2940 sox_find_comment(files[1]->ft->oob.comments, "artist")) && in main()
2942 sox_find_comment(files[0]->ft->oob.comments, "album"), in main()
2943 sox_find_comment(files[1]->ft->oob.comments, "album"))? in main()
2947 set_replay_gain(files[i]->ft->oob.comments, files[i]); in main()