Home | History | Annotate | Download | only in test

Lines Matching defs:vd

40   vorbis_dsp_state vd;
62 vorbis_analysis_init (&vd,&vi);
63 vorbis_block_init (&vd,&vb);
72 vorbis_analysis_headerout (&vd,&vc,&header,&header_comm,&header_code);
90 float **buffer = vorbis_analysis_buffer (&vd,count);
97 vorbis_analysis_wrote (&vd,count);
98 vorbis_analysis_wrote (&vd,0);
101 while (vorbis_analysis_blockout (&vd,&vb) == 1) {
105 while (vorbis_bitrate_flushpacket (&vd,&op)) {
123 vorbis_dsp_clear (&vd);
142 vorbis_dsp_state vd;
234 vorbis_synthesis_init (&vd,&vi);
235 vorbis_block_init (&vd,&vb);
259 vorbis_synthesis_blockin(&vd,&vb);
260 while ((samples = vorbis_synthesis_pcmout (&vd,&pcm)) > 0 && read_total < count) {
266 vorbis_synthesis_read (&vd,bout);
287 vorbis_dsp_clear (&vd);