Searched defs:total_bitRate (Results 1 - 1 of 1) sorted by relevance

/external/libopus/src/
H A Dopus_encoder.c1454 opus_int32 total_bitRate, celt_rate; local
1463 total_bitRate = 8 * bytes_target * frame_rate;
1470 st->silk_mode.bitRate += ( total_bitRate - st->silk_mode.bitRate ) * 2 / 3;
1473 st->silk_mode.bitRate += ( total_bitRate - st->silk_mode.bitRate ) * 3 / 5;
1476 if( st->silk_mode.bitRate > total_bitRate * 4/5 ) {
1477 st->silk_mode.bitRate = total_bitRate * 4/5;
1482 celt_rate = total_bitRate - st->silk_mode.bitRate;
1489 st->silk_mode.bitRate = total_bitRate;

Completed in 71 milliseconds