Home | History | Annotate | Download | only in permute

Lines Matching refs:frames

75 /** Split the specified range of frames, using the allowed budget of segments.
202 switch (sfinfo_in.frames) {
205 fprintf(stderr, "%s: unsupported frames %d\n", path_in, (int) sfinfo_in.frames);
212 double durationSeconds = (double) sfinfo_in.frames / (double) sfinfo_in.samplerate;
224 used = split(&s, 0, sfinfo_in.frames, s.mSegmentMax);
241 void *ptr = malloc(sfinfo_in.frames * frameSizeRead);
244 count = sf_readf_short(sf_in, ptr, sfinfo_in.frames);
245 if (count != sfinfo_in.frames) {
246 fprintf(stderr, "%s: expected to read %d frames but actually read %d frames\n", path_in,
247 (int) sfinfo_in.frames, (int) count);
273 fprintf(stderr, "%s: expected to write %d frames but actually wrote %d frames\n",
279 assert(permutedStart == sfinfo_in.frames);