Lines Matching defs:rate
334 UInt32 rate = avctx->bit_rate;
340 UInt32 new_rate = rate;
352 if (rate >= range->mMinimum && rate <= range->mMaximum) {
353 new_rate = rate;
355 } else if (rate > range->mMaximum) {
362 if (new_rate != rate) {
364 "Bitrate %u not allowed; changing to %u\n", rate, new_rate);
365 rate = new_rate;
370 sizeof(rate), &rate);