Prevent dividing by 0 when target-bitrate is 0.

Change-Id: I05b7fb378b6b0c5f263e7839f96ba6830ee34fd2
This commit is contained in:
Debargha Mukherjee 2015-06-08 16:18:14 -07:00
Родитель b19b16cfa1
Коммит c23a9e218c
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -88,6 +88,9 @@ void update_rate_histogram(struct rate_hist *hist,
if (now < cfg->rc_buf_initial_sz)
return;
if (!cfg->rc_target_bitrate)
return;
then = now;
/* Sum the size over the past rc_buf_sz ms */