Lines Matching defs:vi
29 vorbis_info vi; /**< vorbis_info used during init */
49 vorbis_info_init(&context->vi) ;
109 if(vorbis_synthesis_headerin(&context->vi, &context->vc, &context->op)<0){
118 avccontext->ch_layout.nb_channels = context->vi.channels;
119 avccontext->sample_rate = context->vi.rate;
123 vorbis_synthesis_init(&context->vd, &context->vi);
176 // av_log(avccontext, AV_LOG_DEBUG, "%d %d %d %"PRId64" %"PRId64" %d %d\n", op->bytes, op->b_o_s, op->e_o_s, op->granulepos, op->packetno, buf_size, context->vi.rate);
189 conv(samples, pcm, (char*)output + total_bytes, context->vi.channels) ;
190 total_bytes += samples * 2 * context->vi.channels ;
206 vorbis_info_clear(&context->vi) ;