Lines Matching refs:milliseconds
973 /* returns: total milliseconds of content if i==-1
974 milliseconds in that logical bitstream for i==0 to n
1429 int ov_time_seek(OggVorbis_File *vf,ogg_int64_t milliseconds){
1438 if(milliseconds<0 || milliseconds>time_total)return OV_EINVAL;
1444 if(milliseconds>=time_total)break;
1452 ov_pcm_seek(vf,pcm_total+(milliseconds-time_total)*
1459 int ov_time_seek_page(OggVorbis_File *vf,ogg_int64_t milliseconds){
1468 if(milliseconds<0 || milliseconds>time_total)return OV_EINVAL;
1474 if(milliseconds>=time_total)break;
1482 ov_pcm_seek_page(vf,pcm_total+(milliseconds-time_total)*
1500 /* return time offset (milliseconds) of next PCM sample to be read */