Lines Matching refs:bitrate
45 * For CBR mode, avctx->bit_rate can be used to set the constant bitrate.
47 * a constant bitrate based on quality.
129 av_log(avctx, AV_LOG_DEBUG, " bitrate: %"PRId64" bps\n", avctx->bit_rate);
132 av_log(avctx, AV_LOG_DEBUG, " bitrate: %"PRId64" bps\n", avctx->bit_rate);
191 s->header.bitrate = avctx->bit_rate;
193 /* CBR or ABR by bitrate */
196 &s->header.bitrate);
198 &s->header.bitrate);
201 &s->header.bitrate);
203 &s->header.bitrate);
210 &s->header.bitrate);
212 /* stereo side information adds about 800 bps to the base bitrate */
214 avctx->bit_rate = s->header.bitrate + (channels == 2 ? 800 : 0);