We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
void sender_estimation_set_send_bitrate(sender_estimation_t* est, uint32_t send_bitrate) { razor_debug("sender_estimation_set_send_bitrate, bitrate = %u\n", send_bitrate); est->bwe_incoming = est->delay_base_bitrate = 0; //是否需要添加这个,否则est->cur_bitrate仍旧受旧bwe,delay速率影响 cap_bitrate_to_threshold(est, GET_SYS_MS(), send_bitrate);
/*清空历史最小记录*/ est->end_index = est->begin_index = 0;
}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
void sender_estimation_set_send_bitrate(sender_estimation_t* est, uint32_t send_bitrate)
{
razor_debug("sender_estimation_set_send_bitrate, bitrate = %u\n", send_bitrate);
est->bwe_incoming = est->delay_base_bitrate = 0; //是否需要添加这个,否则est->cur_bitrate仍旧受旧bwe,delay速率影响
cap_bitrate_to_threshold(est, GET_SYS_MS(), send_bitrate);
}
The text was updated successfully, but these errors were encountered: