Lines Matching refs:cuesheet
33 static FLAC__bool import_cs_from(const char *filename, FLAC__StreamMetadata **cuesheet, const char …
34 static FLAC__bool export_cs_to(const char *filename, const FLAC__StreamMetadata *cuesheet, const ch…
39 FLAC__StreamMetadata *cuesheet = 0; in do_shorthand_operation__cuesheet() local
63 cuesheet = block; in do_shorthand_operation__cuesheet()
74 if(0 != cuesheet) { in do_shorthand_operation__cuesheet()
79 …ok = import_cs_from(filename, &cuesheet, operation->argument.import_cuesheet_from.filename, needs_… in do_shorthand_operation__cuesheet()
84 if(!FLAC__metadata_iterator_insert_block_after(iterator, cuesheet)) { in do_shorthand_operation__cuesheet()
86 FLAC__metadata_object_delete(cuesheet); in do_shorthand_operation__cuesheet()
93 if(0 == cuesheet) { in do_shorthand_operation__cuesheet()
98 ok = export_cs_to(filename, cuesheet, operation->argument.filename.value); in do_shorthand_operation__cuesheet()
114 FLAC__bool import_cs_from(const char *filename, FLAC__StreamMetadata **cuesheet, const char *cs_fil… in import_cs_from() argument
135 …*cuesheet = grabbag__cuesheet_parse(f, &error_message, &last_line_read, sample_rate, is_cdda, lead… in import_cs_from()
140 if(0 == *cuesheet) { in import_cs_from()
145 …if(!FLAC__format_cuesheet_is_legal(&(*cuesheet)->data.cue_sheet, /*check_cd_da_subset=*/false, &er… in import_cs_from()
151 …if(is_cdda && !FLAC__format_cuesheet_is_legal(&(*cuesheet)->data.cue_sheet, /*check_cd_da_subset=*… in import_cs_from()
153 (*cuesheet)->data.cue_sheet.is_cd = false; in import_cs_from()
160 const FLAC__StreamMetadata_CueSheet *cs = &(*cuesheet)->data.cue_sheet; in import_cs_from()
176 FLAC__bool export_cs_to(const char *filename, const FLAC__StreamMetadata *cuesheet, const char *cs_… in export_cs_to() argument
206 grabbag__cuesheet_emit(f, cuesheet, ref); in export_cs_to()