Lines Matching refs:vi
50 vorbis_info vi; /* struct that stores all the static vorbis bitstream in main() local
115 vorbis_info_init(&vi); in main()
129 if(vorbis_synthesis_headerin(&vi,&vc,&op)<0){ in main()
166 result=vorbis_synthesis_headerin(&vi,&vc,&op); in main()
193 fprintf(stderr,"\nBitstream is %d channel, %ldHz\n",vi.channels,vi.rate); in main()
197 convsize=4096/vi.channels; in main()
201 if(vorbis_synthesis_init(&vd,&vi)==0){ /* central decode state */ in main()
246 for(i=0;i<vi.channels;i++){ in main()
265 ptr+=vi.channels; in main()
273 fwrite(convbuffer,2*vi.channels,bout,stdout); in main()
306 vorbis_info_clear(&vi); /* must be called last */ in main()