Home | History | Annotate | Download | only in examples

Lines Matching defs:pcm

18 /* Takes a vorbis bitstream from stdin and writes raw stereo PCM to
53 vorbis_dsp_state vd; /* central working state for the packet->PCM decoder */
54 vorbis_block vb; /* local working space for packet->PCM decode */
200 packet->PCM decoder. */
227 float **pcm;
234 **pcm is a multichannel float vector. In stereo, for
235 example, pcm[0] is left, and pcm[1] is right. samples is
237 (-1.<=range<=1.) to whatever PCM format and write it out */
239 while((samples=vorbis_synthesis_pcmout(&vd,&pcm))>0){
248 float *mono=pcm[i];