Lines Matching defs:thisblock
801 int thisblock, lastblock, nn ;
806 thisblock = vorbis_synthesis_pcmout (&vdata->vdsp, NULL) ;
807 if (thisblock > 0)
808 { if ((uint64_t) thisblock + vdata->gp >= target)
809 thisblock = SF_MIN (thisblock, (int) (target - vdata->gp)) ;
811 vorbis_synthesis_read (&vdata->vdsp, thisblock) ;
812 vdata->gp += thisblock ;
840 thisblock = vorbis_packet_blocksize (&vdata->vinfo, pkt) ;
841 if (thisblock < 0)
848 { vdata->gp += ((lastblock + thisblock) / 4) ;
852 if (vdata->gp + ((thisblock + blocksize) / 4) >= target)
859 lastblock = thisblock ;
971 int thisblock, lastblock, i ;
996 { thisblock = vorbis_packet_blocksize (&vdata->vinfo, &pkt [i]) ;
997 if (thisblock >= 0)
999 duration += (lastblock + thisblock) >> 2 ;
1000 lastblock = thisblock ;