Lines Matching refs:cues
150 { /* 2500 is close to the largest number of cues possible because of block sizes (enforced in aiff.c, wav.c) */
897 SF_CUES cues ;
903 sf_command (sndfile, SFC_GET_CUE_COUNT, &cues.cue_count, sizeof (cues.cue_count)) != SF_TRUE,
908 cues.cue_count != 3,
909 "\nLine %d: Expected cue_count (%u) to be 3.\n\n", __LINE__, cues.cue_count
912 if (sf_command (sndfile, SFC_GET_CUE, &cues, sizeof (cues)) == SF_TRUE)
913 { cues.cue_points [1].sample_offset = 3 ;
915 if (sf_command (sndfile, SFC_SET_CUE, &cues, sizeof (cues)) == SF_TRUE)
991 /* calculate size of SF_CUES struct given number of cues */
1025 { printf ("\n\nLine %d : sf_command (SFC_SET_CUE) failed with %d cues, datasize %zu --> error: %s\n\n", __LINE__, count, cues_size, sf_strerror (file)) ;
1036 { printf ("\n\nLine %d : sf_command (SFC_GET_CUE) failed with %d cues, datasize %zu --> error: %s\n\n", __LINE__, count, cues_size, sf_strerror (file)) ;