Lines Matching refs:bit_rate
116 int bit_rate = 0;
146 bit_rate = (buf[4]<<10) | (buf[5]<<2) | (buf[6]>>6);
174 bit_rate = (bit_rate&0x3FFFF) | (bit_rate_ext << 18);
229 if (avctx->codec_id == AV_CODEC_ID_MPEG2VIDEO && bit_rate) {
230 avctx->rc_max_rate = 400LL*bit_rate;
232 if (bit_rate &&
233 ((avctx->codec_id == AV_CODEC_ID_MPEG1VIDEO && bit_rate != 0x3FFFF) || vbv_delay != 0xFFFF)) {
234 avctx->bit_rate = 400LL*bit_rate;