Home
last modified time | relevance | path

Searched refs:pcm_current (Results 1 – 3 of 3) sorted by relevance

/external/libvorbis/lib/
Dblock.c267 v->pcm_current=v->centerW; in _vds_shared_init()
401 if(v->pcm_current+vals>=v->pcm_storage){ in vorbis_analysis_buffer()
402 v->pcm_storage=v->pcm_current+vals*2; in vorbis_analysis_buffer()
410 v->pcmret[i]=v->pcm[i]+v->pcm_current; in vorbis_analysis_buffer()
419 float *work=alloca(v->pcm_current*sizeof(*work)); in _preextrapolate_helper()
423 if(v->pcm_current-v->centerW>order*2){ /* safety */ in _preextrapolate_helper()
426 for(j=0;j<v->pcm_current;j++) in _preextrapolate_helper()
427 work[j]=v->pcm[i][v->pcm_current-j-1]; in _preextrapolate_helper()
430 vorbis_lpc_from_data(work,lpc,v->pcm_current-v->centerW,order); in _preextrapolate_helper()
435 _analysis_output("predataL",0,work,v->pcm_current-v->centerW,0,0,0); in _preextrapolate_helper()
[all …]
Denvelope.c224 int last=v->pcm_current/ve->searchstep-VE_WIN; in _ve_envelope_search()
282 float *marker=alloca(v->pcm_current*sizeof(*marker)); in _ve_envelope_search()
284 memset(marker,0,sizeof(*marker)*v->pcm_current); in _ve_envelope_search()
289 _analysis_output_always("pcmL",seq,v->pcm[0],v->pcm_current,0,0,totalshift); in _ve_envelope_search()
290 _analysis_output_always("pcmR",seq,v->pcm[1],v->pcm_current,0,0,totalshift); in _ve_envelope_search()
299 _analysis_output_always(buf,seq,marker,v->pcm_current,0,0,totalshift); in _ve_envelope_search()
306 _analysis_output_always(buf,seq,marker,v->pcm_current,0,0,totalshift); in _ve_envelope_search()
310 _analysis_output_always("mark",seq,marker,v->pcm_current,0,0,totalshift); in _ve_envelope_search()
/external/libvorbis/include/vorbis/
Dcodec.h66 int pcm_current; member