Lines Matching refs:readcount
52 sf_count_t frames, readcount, k ;
55 readcount = frames ;
62 { while (readcount > 0)
63 { readcount = sf_readf_double (infile, data, frames) ;
64 sf_writef_double (outfile, data, readcount) ;
70 while (readcount > 0)
71 { readcount = sf_readf_double (infile, data, frames) ;
72 for (k = 0 ; k < readcount * channels ; k++)
78 sf_writef_double (outfile, data, readcount) ;
88 int frames, readcount ;
91 readcount = frames ;
93 while (readcount > 0)
94 { readcount = (int) sf_readf_int (infile, data, frames) ;
95 sf_writef_int (outfile, data, readcount) ;