Home | History | Annotate | Download | only in Tremolo

Lines Matching full:ogg_int64_t

104 static void _seek_helper(OggVorbis_File *vf,ogg_int64_t offset){
130 static ogg_int64_t _get_next_page(OggVorbis_File *vf,ogg_page *og,
131 ogg_int64_t boundary){
154 ogg_int64_t ret=vf->offset;
169 static ogg_int64_t _get_prev_page(OggVorbis_File *vf,ogg_page *og){
170 ogg_int64_t begin=vf->offset;
171 ogg_int64_t end=begin;
172 ogg_int64_t ret;
173 ogg_int64_t offset=-1;
206 ogg_int64_t begin,
207 ogg_int64_t searched,
208 ogg_int64_t end,
211 ogg_int64_t endsearched=end;
212 ogg_int64_t next=end;
214 ogg_int64_t ret;
219 ogg_int64_t bisect;
293 ogg_int64_t llret=_get_next_page(vf,&og,CHUNKSIZE);
361 ogg_int64_t pos=vf->offset;
379 static void _prefetch_all_offsets(OggVorbis_File *vf, ogg_int64_t dataoffset){
382 ogg_int64_t ret;
408 ogg_int64_t accumulated=0,pos;
457 ogg_int64_t end=vf->offsets[i+1];
506 ogg_int64_t dataoffset=vf->offset, end;
569 ogg_int64_t granulepos;
715 static int _fseek64_wrap(FILE *f,ogg_int64_t off,int whence){
820 (int (*)(void *, ogg_int64_t, int)) _fseek64_wrap,
842 (int (*)(void *, ogg_int64_t, int)) _fseek64_wrap,
879 ogg_int64_t bits=0;
940 ogg_int64_t ov_raw_total(OggVorbis_File *vf,int i){
944 ogg_int64_t acc=0;
959 ogg_int64_t ov_pcm_total(OggVorbis_File *vf,int i){
963 ogg_int64_t acc=0;
978 ogg_int64_t ov_time_total(OggVorbis_File *vf,int i){
982 ogg_int64_t acc=0;
988 return ((ogg_int64_t)vf->pcmlengths[i*2+1])*1000/vf->vi.rate;
999 int ov_raw_seek(OggVorbis_File *vf,ogg_int64_t pos){
1065 ogg_int64_t granulepos=op.granulepos-vf->pcmlengths[link*2];
1153 int ov_pcm_seek_page(OggVorbis_File *vf,ogg_int64_t pos){
1155 ogg_int64_t result=0;
1156 ogg_int64_t total=ov_pcm_total(vf,-1);
1188 ogg_int64_t end=vf->offsets[link+1];
1189 ogg_int64_t begin=vf->offsets[link];
1190 ogg_int64_t begintime = vf->pcmlengths[link*2];
1191 ogg_int64_t endtime = vf->pcmlengths[link*2+1]+begintime;
1192 ogg_int64_t target=pos-total+begintime;
1193 ogg_int64_t best=begin;
1196 ogg_int64_t bisect;
1223 ogg_int64_t granulepos=ogg_page_granulepos(&og);
1329 int ov_pcm_seek(OggVorbis_File *vf,ogg_int64_t pos){
1410 ogg_int64_t target=pos-vf->pcm_offset;
1429 int ov_time_seek(OggVorbis_File *vf,ogg_int64_t milliseconds){
1433 ogg_int64_t pcm_total=ov_pcm_total(vf,-1);
1434 ogg_int64_t time_total=ov_time_total(vf,-1);
1459 int ov_time_seek_page(OggVorbis_File *vf,ogg_int64_t milliseconds){
1463 ogg_int64_t pcm_total=ov_pcm_total(vf,-1);
1464 ogg_int64_t time_total=ov_time_total(vf,-1);
1489 ogg_int64_t ov_raw_tell(OggVorbis_File *vf){
1495 ogg_int64_t ov_pcm_tell(OggVorbis_File *vf){
1501 ogg_int64_t ov_time_tell(OggVorbis_File *vf){
1503 ogg_int64_t pcm_total=0;
1504 ogg_int64_t time_total=0;