Lines Matching refs:frame_count
306 SndfileHandle::seek (sf_count_t frame_count, int whence)
307 { return sf_seek (p->sf, frame_count, whence) ; }
371 SndfileHandle::readf (short *ptr, sf_count_t frame_count)
372 { return sf_readf_short (p->sf, ptr, frame_count) ; }
375 SndfileHandle::readf (int *ptr, sf_count_t frame_count)
376 { return sf_readf_int (p->sf, ptr, frame_count) ; }
379 SndfileHandle::readf (float *ptr, sf_count_t frame_count)
380 { return sf_readf_float (p->sf, ptr, frame_count) ; }
383 SndfileHandle::readf (double *ptr, sf_count_t frame_count)
384 { return sf_readf_double (p->sf, ptr, frame_count) ; }
387 SndfileHandle::writef (const short *ptr, sf_count_t frame_count)
388 { return sf_writef_short (p->sf, ptr, frame_count) ; }
391 SndfileHandle::writef (const int *ptr, sf_count_t frame_count)
392 { return sf_writef_int (p->sf, ptr, frame_count) ; }
395 SndfileHandle::writef (const float *ptr, sf_count_t frame_count)
396 { return sf_writef_float (p->sf, ptr, frame_count) ; }
399 SndfileHandle::writef (const double *ptr, sf_count_t frame_count)
400 { return sf_writef_double (p->sf, ptr, frame_count) ; }