Lines Matching refs:samples
447 /* less than zero? This is a stream with samples trimmed off
592 int i,samples;
614 samples=vorbis_dsp_pcmout(vf->vd,NULL,0);
616 granulepos-=samples;
954 /* returns: total PCM length (samples) of content if i==-1 PCM length
955 (samples) of that logical bitstream for i==0 to n
1407 /* discard samples until we reach the desired position. Crossing a
1411 long samples=vorbis_dsp_pcmout(vf->vd,NULL,0);
1413 if(samples>target)samples=(long)target;
1414 vorbis_dsp_read(vf->vd,samples);
1415 vf->pcm_offset+=samples;
1417 if(samples<target)
1582 long samples;
1590 samples=vorbis_dsp_pcmout(vf->vd,buffer,(bytes_req>>1)/channels);
1591 if(samples){
1592 if(samples>0){
1593 vorbis_dsp_read(vf->vd,samples);
1594 vf->pcm_offset+=samples;
1596 return samples*2*channels;
1598 return samples;