Lines Matching refs:cue_sheet
408 FLAC_API FLAC__bool FLAC__format_cuesheet_is_legal(const FLAC__StreamMetadata_CueSheet *cue_sheet, … in FLAC__format_cuesheet_is_legal() argument
413 if(cue_sheet->lead_in < 2 * 44100) { in FLAC__format_cuesheet_is_legal()
417 if(cue_sheet->lead_in % 588 != 0) { in FLAC__format_cuesheet_is_legal()
423 if(cue_sheet->num_tracks == 0) { in FLAC__format_cuesheet_is_legal()
428 if(check_cd_da_subset && cue_sheet->tracks[cue_sheet->num_tracks-1].number != 170) { in FLAC__format_cuesheet_is_legal()
433 for(i = 0; i < cue_sheet->num_tracks; i++) { in FLAC__format_cuesheet_is_legal()
434 if(cue_sheet->tracks[i].number == 0) { in FLAC__format_cuesheet_is_legal()
440 …if(!((cue_sheet->tracks[i].number >= 1 && cue_sheet->tracks[i].number <= 99) || cue_sheet->tracks[… in FLAC__format_cuesheet_is_legal()
446 if(check_cd_da_subset && cue_sheet->tracks[i].offset % 588 != 0) { in FLAC__format_cuesheet_is_legal()
448 if(i == cue_sheet->num_tracks-1) /* the lead-out track... */ in FLAC__format_cuesheet_is_legal()
456 if(i < cue_sheet->num_tracks - 1) { in FLAC__format_cuesheet_is_legal()
457 if(cue_sheet->tracks[i].num_indices == 0) { in FLAC__format_cuesheet_is_legal()
462 if(cue_sheet->tracks[i].indices[0].number > 1) { in FLAC__format_cuesheet_is_legal()
468 for(j = 0; j < cue_sheet->tracks[i].num_indices; j++) { in FLAC__format_cuesheet_is_legal()
469 if(check_cd_da_subset && cue_sheet->tracks[i].indices[j].offset % 588 != 0) { in FLAC__format_cuesheet_is_legal()
475 if(cue_sheet->tracks[i].indices[j].number != cue_sheet->tracks[i].indices[j-1].number + 1) { in FLAC__format_cuesheet_is_legal()